Merge "citrix" branch into "master.
[sliver-openvswitch.git] / vswitchd / bridge.c
1 /* Copyright (c) 2008, 2009 Nicira Networks
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <config.h>
17 #include "bridge.h"
18 #include <assert.h>
19 #include <errno.h>
20 #include <arpa/inet.h>
21 #include <ctype.h>
22 #include <inttypes.h>
23 #include <net/if.h>
24 #include <openflow/openflow.h>
25 #include <signal.h>
26 #include <stdlib.h>
27 #include <strings.h>
28 #include <sys/stat.h>
29 #include <sys/socket.h>
30 #include <sys/types.h>
31 #include <unistd.h>
32 #include "bitmap.h"
33 #include "cfg.h"
34 #include "coverage.h"
35 #include "dirs.h"
36 #include "dpif.h"
37 #include "dynamic-string.h"
38 #include "flow.h"
39 #include "hash.h"
40 #include "list.h"
41 #include "mac-learning.h"
42 #include "netdev.h"
43 #include "odp-util.h"
44 #include "ofp-print.h"
45 #include "ofpbuf.h"
46 #include "ofproto/ofproto.h"
47 #include "packets.h"
48 #include "poll-loop.h"
49 #include "port-array.h"
50 #include "proc-net-compat.h"
51 #include "process.h"
52 #include "socket-util.h"
53 #include "stp.h"
54 #include "svec.h"
55 #include "timeval.h"
56 #include "util.h"
57 #include "unixctl.h"
58 #include "vconn.h"
59 #include "vconn-ssl.h"
60 #include "xenserver.h"
61 #include "xtoxll.h"
62
63 #define THIS_MODULE VLM_bridge
64 #include "vlog.h"
65
66 struct dst {
67     uint16_t vlan;
68     uint16_t dp_ifidx;
69 };
70
71 extern uint64_t mgmt_id;
72
73 struct iface {
74     /* These members are always valid. */
75     struct port *port;          /* Containing port. */
76     size_t port_ifidx;          /* Index within containing port. */
77     char *name;                 /* Host network device name. */
78     tag_type tag;               /* Tag associated with this interface. */
79     long long delay_expires;    /* Time after which 'enabled' may change. */
80
81     /* These members are valid only after bridge_reconfigure() causes them to
82      * be initialized.*/
83     int dp_ifidx;               /* Index within kernel datapath. */
84     struct netdev *netdev;      /* Network device. */
85     bool enabled;               /* May be chosen for flows? */
86 };
87
88 #define BOND_MASK 0xff
89 struct bond_entry {
90     int iface_idx;              /* Index of assigned iface, or -1 if none. */
91     uint64_t tx_bytes;          /* Count of bytes recently transmitted. */
92     tag_type iface_tag;         /* Tag associated with iface_idx. */
93 };
94
95 #define MAX_MIRRORS 32
96 typedef uint32_t mirror_mask_t;
97 #define MIRROR_MASK_C(X) UINT32_C(X)
98 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
99 struct mirror {
100     struct bridge *bridge;
101     size_t idx;
102     char *name;
103
104     /* Selection criteria. */
105     struct svec src_ports;
106     struct svec dst_ports;
107     int *vlans;
108     size_t n_vlans;
109
110     /* Output. */
111     struct port *out_port;
112     int out_vlan;
113 };
114
115 #define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
116 struct port {
117     struct bridge *bridge;
118     size_t port_idx;
119     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
120     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1. */
121     char *name;
122
123     /* An ordinary bridge port has 1 interface.
124      * A bridge port for bonding has at least 2 interfaces. */
125     struct iface **ifaces;
126     size_t n_ifaces, allocated_ifaces;
127
128     /* Bonding info. */
129     struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
130     int active_iface;           /* Ifidx on which bcasts accepted, or -1. */
131     tag_type active_iface_tag;  /* Tag for bcast flows. */
132     tag_type no_ifaces_tag;     /* Tag for flows when all ifaces disabled. */
133     int updelay, downdelay;     /* Delay before iface goes up/down, in ms. */
134     bool bond_compat_is_stale;  /* Need to call port_update_bond_compat()? */
135
136     /* Port mirroring info. */
137     mirror_mask_t src_mirrors;  /* Mirrors triggered when packet received. */
138     mirror_mask_t dst_mirrors;  /* Mirrors triggered when packet sent. */
139     bool is_mirror_output_port; /* Does port mirroring send frames here? */
140
141     /* Spanning tree info. */
142     enum stp_state stp_state;   /* Always STP_FORWARDING if STP not in use. */
143     tag_type stp_state_tag;     /* Tag for STP state change. */
144 };
145
146 #define DP_MAX_PORTS 255
147 struct bridge {
148     struct list node;           /* Node in global list of bridges. */
149     char *name;                 /* User-specified arbitrary name. */
150     struct mac_learning *ml;    /* MAC learning table, or null not to learn. */
151     bool sent_config_request;   /* Successfully sent config request? */
152     uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
153
154     /* Support for remote controllers. */
155     char *controller;           /* NULL if there is no remote controller;
156                                  * "discover" to do controller discovery;
157                                  * otherwise a vconn name. */
158
159     /* OpenFlow switch processing. */
160     struct ofproto *ofproto;    /* OpenFlow switch. */
161
162     /* Kernel datapath information. */
163     struct dpif *dpif;          /* Datapath. */
164     struct port_array ifaces;   /* Indexed by kernel datapath port number. */
165
166     /* Bridge ports. */
167     struct port **ports;
168     size_t n_ports, allocated_ports;
169
170     /* Bonding. */
171     bool has_bonded_ports;
172     long long int bond_next_rebalance;
173
174     /* Flow tracking. */
175     bool flush;
176
177     /* Flow statistics gathering. */
178     time_t next_stats_request;
179
180     /* Port mirroring. */
181     struct mirror *mirrors[MAX_MIRRORS];
182
183     /* Spanning tree. */
184     struct stp *stp;
185     long long int stp_last_tick;
186 };
187
188 /* List of all bridges. */
189 static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
190
191 /* Maximum number of datapaths. */
192 enum { DP_MAX = 256 };
193
194 static struct bridge *bridge_create(const char *name);
195 static void bridge_destroy(struct bridge *);
196 static struct bridge *bridge_lookup(const char *name);
197 static void bridge_unixctl_dump_flows(struct unixctl_conn *, const char *);
198 static int bridge_run_one(struct bridge *);
199 static void bridge_reconfigure_one(struct bridge *);
200 static void bridge_reconfigure_controller(struct bridge *);
201 static void bridge_get_all_ifaces(const struct bridge *, struct svec *ifaces);
202 static void bridge_fetch_dp_ifaces(struct bridge *);
203 static void bridge_flush(struct bridge *);
204 static void bridge_pick_local_hw_addr(struct bridge *,
205                                       uint8_t ea[ETH_ADDR_LEN],
206                                       struct iface **hw_addr_iface);
207 static uint64_t bridge_pick_datapath_id(struct bridge *,
208                                         const uint8_t bridge_ea[ETH_ADDR_LEN],
209                                         struct iface *hw_addr_iface);
210 static struct iface *bridge_get_local_iface(struct bridge *);
211 static uint64_t dpid_from_hash(const void *, size_t nbytes);
212
213 static void bridge_unixctl_fdb_show(struct unixctl_conn *, const char *args);
214
215 static void bond_init(void);
216 static void bond_run(struct bridge *);
217 static void bond_wait(struct bridge *);
218 static void bond_rebalance_port(struct port *);
219 static void bond_send_learning_packets(struct port *);
220
221 static void port_create(struct bridge *, const char *name);
222 static void port_reconfigure(struct port *);
223 static void port_destroy(struct port *);
224 static struct port *port_lookup(const struct bridge *, const char *name);
225 static struct iface *port_lookup_iface(const struct port *, const char *name);
226 static struct port *port_from_dp_ifidx(const struct bridge *,
227                                        uint16_t dp_ifidx);
228 static void port_update_bond_compat(struct port *);
229 static void port_update_vlan_compat(struct port *);
230 static void port_update_bonding(struct port *);
231
232 static void mirror_create(struct bridge *, const char *name);
233 static void mirror_destroy(struct mirror *);
234 static void mirror_reconfigure(struct bridge *);
235 static void mirror_reconfigure_one(struct mirror *);
236 static bool vlan_is_mirrored(const struct mirror *, int vlan);
237
238 static void brstp_reconfigure(struct bridge *);
239 static void brstp_adjust_timers(struct bridge *);
240 static void brstp_run(struct bridge *);
241 static void brstp_wait(struct bridge *);
242
243 static void iface_create(struct port *, const char *name);
244 static void iface_destroy(struct iface *);
245 static struct iface *iface_lookup(const struct bridge *, const char *name);
246 static struct iface *iface_from_dp_ifidx(const struct bridge *,
247                                          uint16_t dp_ifidx);
248 static bool iface_is_internal(const struct bridge *, const char *name);
249 static void iface_set_mac(struct iface *);
250
251 /* Hooks into ofproto processing. */
252 static struct ofhooks bridge_ofhooks;
253 \f
254 /* Public functions. */
255
256 /* Adds the name of each interface used by a bridge, including local and
257  * internal ports, to 'svec'. */
258 void
259 bridge_get_ifaces(struct svec *svec) 
260 {
261     struct bridge *br, *next;
262     size_t i, j;
263
264     LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
265         for (i = 0; i < br->n_ports; i++) {
266             struct port *port = br->ports[i];
267
268             for (j = 0; j < port->n_ifaces; j++) {
269                 struct iface *iface = port->ifaces[j];
270                 if (iface->dp_ifidx < 0) {
271                     VLOG_ERR("%s interface not in datapath %s, ignoring",
272                              iface->name, dpif_name(br->dpif));
273                 } else {
274                     if (iface->dp_ifidx != ODPP_LOCAL) {
275                         svec_add(svec, iface->name);
276                     }
277                 }
278             }
279         }
280     }
281 }
282
283 /* The caller must already have called cfg_read(). */
284 void
285 bridge_init(void)
286 {
287     struct svec dpif_names;
288     size_t i;
289
290     unixctl_command_register("fdb/show", bridge_unixctl_fdb_show);
291
292     svec_init(&dpif_names);
293     dp_enumerate(&dpif_names);
294     for (i = 0; i < dpif_names.n; i++) {
295         const char *dpif_name = dpif_names.names[i];
296         struct dpif *dpif;
297         int retval;
298
299         retval = dpif_open(dpif_name, &dpif);
300         if (!retval) {
301             struct svec all_names;
302             size_t j;
303
304             svec_init(&all_names);
305             dpif_get_all_names(dpif, &all_names);
306             for (j = 0; j < all_names.n; j++) {
307                 if (cfg_has("bridge.%s.port", all_names.names[j])) {
308                     goto found;
309                 }
310             }
311             dpif_delete(dpif);
312         found:
313             svec_destroy(&all_names);
314             dpif_close(dpif);
315         }
316     }
317     svec_destroy(&dpif_names);
318
319     unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows);
320
321     bond_init();
322     bridge_reconfigure();
323 }
324
325 #ifdef HAVE_OPENSSL
326 static bool
327 config_string_change(const char *key, char **valuep)
328 {
329     const char *value = cfg_get_string(0, "%s", key);
330     if (value && (!*valuep || strcmp(value, *valuep))) {
331         free(*valuep);
332         *valuep = xstrdup(value);
333         return true;
334     } else {
335         return false;
336     }
337 }
338
339 static void
340 bridge_configure_ssl(void)
341 {
342     /* XXX SSL should be configurable on a per-bridge basis.
343      * XXX should be possible to de-configure SSL. */
344     static char *private_key_file;
345     static char *certificate_file;
346     static char *cacert_file;
347     struct stat s;
348
349     if (config_string_change("ssl.private-key", &private_key_file)) {
350         vconn_ssl_set_private_key_file(private_key_file);
351     }
352
353     if (config_string_change("ssl.certificate", &certificate_file)) {
354         vconn_ssl_set_certificate_file(certificate_file);
355     }
356
357     /* We assume that even if the filename hasn't changed, if the CA cert 
358      * file has been removed, that we want to move back into
359      * boot-strapping mode.  This opens a small security hole, because
360      * the old certificate will still be trusted until vSwitch is
361      * restarted.  We may want to address this in vconn's SSL library. */
362     if (config_string_change("ssl.ca-cert", &cacert_file)
363         || (cacert_file && stat(cacert_file, &s) && errno == ENOENT)) {
364         vconn_ssl_set_ca_cert_file(cacert_file,
365                                    cfg_get_bool(0, "ssl.bootstrap-ca-cert"));
366     }
367 }
368 #endif
369
370 /* iterate_and_prune_ifaces() callback function that opens the network device
371  * for 'iface', if it is not already open, and retrieves the interface's MAC
372  * address and carrier status. */
373 static bool
374 init_iface_netdev(struct bridge *br UNUSED, struct iface *iface,
375                   void *aux UNUSED)
376 {
377     if (iface->netdev) {
378         return true;
379     } else if (!netdev_open(iface->name, NETDEV_ETH_TYPE_NONE,
380                             &iface->netdev)) {
381         netdev_get_carrier(iface->netdev, &iface->enabled);
382         return true;
383     } else {
384         /* If the network device can't be opened, then we're not going to try
385          * to do anything with this interface. */
386         return false;
387     }
388 }
389
390 static bool
391 check_iface_dp_ifidx(struct bridge *br, struct iface *iface, void *aux UNUSED)
392 {
393     if (iface->dp_ifidx >= 0) {
394         VLOG_DBG("%s has interface %s on port %d",
395                  dpif_name(br->dpif),
396                  iface->name, iface->dp_ifidx);
397         return true;
398     } else {
399         VLOG_ERR("%s interface not in %s, dropping",
400                  iface->name, dpif_name(br->dpif));
401         return false;
402     }
403 }
404
405 static bool
406 set_iface_properties(struct bridge *br UNUSED, struct iface *iface,
407                    void *aux UNUSED)
408 {
409     int rate, burst;
410
411     /* Set policing attributes. */
412     rate = cfg_get_int(0, "port.%s.ingress.policing-rate", iface->name);
413     burst = cfg_get_int(0, "port.%s.ingress.policing-burst", iface->name);
414     netdev_set_policing(iface->netdev, rate, burst);
415
416     /* Set MAC address of internal interfaces other than the local
417      * interface. */
418     if (iface->dp_ifidx != ODPP_LOCAL
419         && iface_is_internal(br, iface->name)) {
420         iface_set_mac(iface);
421     }
422
423     return true;
424 }
425
426 /* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
427  * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
428  * deletes from 'br' any ports that no longer have any interfaces. */
429 static void
430 iterate_and_prune_ifaces(struct bridge *br,
431                          bool (*cb)(struct bridge *, struct iface *,
432                                     void *aux),
433                          void *aux)
434 {
435     size_t i, j;
436
437     for (i = 0; i < br->n_ports; ) {
438         struct port *port = br->ports[i];
439         for (j = 0; j < port->n_ifaces; ) {
440             struct iface *iface = port->ifaces[j];
441             if (cb(br, iface, aux)) {
442                 j++;
443             } else {
444                 iface_destroy(iface);
445             }
446         }
447
448         if (port->n_ifaces) {
449             i++;
450         } else  {
451             VLOG_ERR("%s port has no interfaces, dropping", port->name);
452             port_destroy(port);
453         }
454     }
455 }
456
457 void
458 bridge_reconfigure(void)
459 {
460     struct svec old_br, new_br;
461     struct bridge *br, *next;
462     size_t i;
463
464     COVERAGE_INC(bridge_reconfigure);
465
466     /* Collect old and new bridges. */
467     svec_init(&old_br);
468     svec_init(&new_br);
469     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
470         svec_add(&old_br, br->name);
471     }
472     cfg_get_subsections(&new_br, "bridge");
473
474     /* Get rid of deleted bridges and add new bridges. */
475     svec_sort(&old_br);
476     svec_sort(&new_br);
477     assert(svec_is_unique(&old_br));
478     assert(svec_is_unique(&new_br));
479     LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
480         if (!svec_contains(&new_br, br->name)) {
481             bridge_destroy(br);
482         }
483     }
484     for (i = 0; i < new_br.n; i++) {
485         const char *name = new_br.names[i];
486         if (!svec_contains(&old_br, name)) {
487             bridge_create(name);
488         }
489     }
490     svec_destroy(&old_br);
491     svec_destroy(&new_br);
492
493 #ifdef HAVE_OPENSSL
494     /* Configure SSL. */
495     bridge_configure_ssl();
496 #endif
497
498     /* Reconfigure all bridges. */
499     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
500         bridge_reconfigure_one(br);
501     }
502
503     /* Add and delete ports on all datapaths.
504      *
505      * The kernel will reject any attempt to add a given port to a datapath if
506      * that port already belongs to a different datapath, so we must do all
507      * port deletions before any port additions. */
508     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
509         struct odp_port *dpif_ports;
510         size_t n_dpif_ports;
511         struct svec want_ifaces;
512
513         dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
514         bridge_get_all_ifaces(br, &want_ifaces);
515         for (i = 0; i < n_dpif_ports; i++) {
516             const struct odp_port *p = &dpif_ports[i];
517             if (!svec_contains(&want_ifaces, p->devname)
518                 && strcmp(p->devname, br->name)) {
519                 int retval = dpif_port_del(br->dpif, p->port);
520                 if (retval) {
521                     VLOG_ERR("failed to remove %s interface from %s: %s",
522                              p->devname, dpif_name(br->dpif),
523                              strerror(retval));
524                 }
525             }
526         }
527         svec_destroy(&want_ifaces);
528         free(dpif_ports);
529     }
530     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
531         struct odp_port *dpif_ports;
532         size_t n_dpif_ports;
533         struct svec cur_ifaces, want_ifaces, add_ifaces;
534
535         dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
536         svec_init(&cur_ifaces);
537         for (i = 0; i < n_dpif_ports; i++) {
538             svec_add(&cur_ifaces, dpif_ports[i].devname);
539         }
540         free(dpif_ports);
541         svec_sort_unique(&cur_ifaces);
542         bridge_get_all_ifaces(br, &want_ifaces);
543         svec_diff(&want_ifaces, &cur_ifaces, &add_ifaces, NULL, NULL);
544
545         for (i = 0; i < add_ifaces.n; i++) {
546             const char *if_name = add_ifaces.names[i];
547             bool internal;
548             int error;
549
550             /* Add to datapath. */
551             internal = iface_is_internal(br, if_name);
552             error = dpif_port_add(br->dpif, if_name,
553                                   internal ? ODP_PORT_INTERNAL : 0, NULL);
554             if (error == EFBIG) {
555                 VLOG_ERR("ran out of valid port numbers on %s",
556                          dpif_name(br->dpif));
557                 break;
558             } else if (error) {
559                 VLOG_ERR("failed to add %s interface to %s: %s",
560                          if_name, dpif_name(br->dpif), strerror(error));
561             }
562         }
563         svec_destroy(&cur_ifaces);
564         svec_destroy(&want_ifaces);
565         svec_destroy(&add_ifaces);
566     }
567     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
568         uint8_t ea[8];
569         uint64_t dpid;
570         struct iface *local_iface;
571         struct iface *hw_addr_iface;
572         uint8_t engine_type, engine_id;
573         bool add_id_to_iface = false;
574         struct svec nf_hosts;
575
576         bridge_fetch_dp_ifaces(br);
577         iterate_and_prune_ifaces(br, init_iface_netdev, NULL);
578
579         iterate_and_prune_ifaces(br, check_iface_dp_ifidx, NULL);
580
581         /* Pick local port hardware address, datapath ID. */
582         bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
583         local_iface = bridge_get_local_iface(br);
584         if (local_iface) {
585             int error = netdev_set_etheraddr(local_iface->netdev, ea);
586             if (error) {
587                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
588                 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
589                             "Ethernet address: %s",
590                             br->name, strerror(error));
591             }
592         }
593
594         dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
595         ofproto_set_datapath_id(br->ofproto, dpid);
596
597         /* Set NetFlow configuration on this bridge. */
598         dpif_get_netflow_ids(br->dpif, &engine_type, &engine_id);
599         if (cfg_has("netflow.%s.engine-type", br->name)) {
600             engine_type = cfg_get_int(0, "netflow.%s.engine-type", 
601                     br->name);
602         }
603         if (cfg_has("netflow.%s.engine-id", br->name)) {
604             engine_id = cfg_get_int(0, "netflow.%s.engine-id", br->name);
605         }
606         if (cfg_has("netflow.%s.add-id-to-iface", br->name)) {
607             add_id_to_iface = cfg_get_bool(0, "netflow.%s.add-id-to-iface",
608                     br->name);
609         }
610         if (add_id_to_iface && engine_id > 0x7f) {
611             VLOG_WARN("bridge %s: netflow port mangling may conflict with "
612                     "another vswitch, choose an engine id less than 128", 
613                     br->name);
614         }
615         if (add_id_to_iface && br->n_ports > 0x1ff) {
616             VLOG_WARN("bridge %s: netflow port mangling will conflict with "
617                     "another port when 512 or more ports are used", 
618                     br->name);
619         }
620         svec_init(&nf_hosts);
621         cfg_get_all_keys(&nf_hosts, "netflow.%s.host", br->name);
622         if (ofproto_set_netflow(br->ofproto, &nf_hosts,  engine_type, 
623                     engine_id, add_id_to_iface)) {
624             VLOG_ERR("bridge %s: problem setting netflow collectors", 
625                     br->name);
626         }
627         svec_destroy(&nf_hosts);
628
629         /* Update the controller and related settings.  It would be more
630          * straightforward to call this from bridge_reconfigure_one(), but we
631          * can't do it there for two reasons.  First, and most importantly, at
632          * that point we don't know the dp_ifidx of any interfaces that have
633          * been added to the bridge (because we haven't actually added them to
634          * the datapath).  Second, at that point we haven't set the datapath ID
635          * yet; when a controller is configured, resetting the datapath ID will
636          * immediately disconnect from the controller, so it's better to set
637          * the datapath ID before the controller. */
638         bridge_reconfigure_controller(br);
639     }
640     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
641         for (i = 0; i < br->n_ports; i++) {
642             struct port *port = br->ports[i];
643
644             port_update_vlan_compat(port);
645             port_update_bonding(port);
646         }
647     }
648     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
649         brstp_reconfigure(br);
650         iterate_and_prune_ifaces(br, set_iface_properties, NULL);
651     }
652 }
653
654 static void
655 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
656                           struct iface **hw_addr_iface)
657 {
658     uint64_t requested_ea;
659     size_t i, j;
660     int error;
661
662     *hw_addr_iface = NULL;
663
664     /* Did the user request a particular MAC? */
665     requested_ea = cfg_get_mac(0, "bridge.%s.mac", br->name);
666     if (requested_ea) {
667         eth_addr_from_uint64(requested_ea, ea);
668         if (eth_addr_is_multicast(ea)) {
669             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
670                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
671         } else if (eth_addr_is_zero(ea)) {
672             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
673         } else {
674             return;
675         }
676     }
677
678     /* Otherwise choose the minimum MAC address among all of the interfaces.
679      * (Xen uses FE:FF:FF:FF:FF:FF for virtual interfaces so this will get the
680      * MAC of the physical interface in such an environment.) */
681     memset(ea, 0xff, sizeof ea);
682     for (i = 0; i < br->n_ports; i++) {
683         struct port *port = br->ports[i];
684         uint8_t iface_ea[ETH_ADDR_LEN];
685         uint64_t iface_ea_u64;
686         struct iface *iface;
687
688         /* Mirror output ports don't participate. */
689         if (port->is_mirror_output_port) {
690             continue;
691         }
692
693         /* Choose the MAC address to represent the port. */
694         iface_ea_u64 = cfg_get_mac(0, "port.%s.mac", port->name);
695         if (iface_ea_u64) {
696             /* User specified explicitly. */
697             eth_addr_from_uint64(iface_ea_u64, iface_ea);
698
699             /* Find the interface with this Ethernet address (if any) so that
700              * we can provide the correct devname to the caller. */
701             iface = NULL;
702             for (j = 0; j < port->n_ifaces; j++) {
703                 struct iface *candidate = port->ifaces[j];
704                 uint8_t candidate_ea[ETH_ADDR_LEN];
705                 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
706                     && eth_addr_equals(iface_ea, candidate_ea)) {
707                     iface = candidate;
708                 }
709             }
710         } else {
711             /* Choose the interface whose MAC address will represent the port.
712              * The Linux kernel bonding code always chooses the MAC address of
713              * the first slave added to a bond, and the Fedora networking
714              * scripts always add slaves to a bond in alphabetical order, so
715              * for compatibility we choose the interface with the name that is
716              * first in alphabetical order. */
717             iface = port->ifaces[0];
718             for (j = 1; j < port->n_ifaces; j++) {
719                 struct iface *candidate = port->ifaces[j];
720                 if (strcmp(candidate->name, iface->name) < 0) {
721                     iface = candidate;
722                 }
723             }
724
725             /* The local port doesn't count (since we're trying to choose its
726              * MAC address anyway).  Other internal ports don't count because
727              * we really want a physical MAC if we can get it, and internal
728              * ports typically have randomly generated MACs. */
729             if (iface->dp_ifidx == ODPP_LOCAL
730                 || cfg_get_bool(0, "iface.%s.internal", iface->name)) {
731                 continue;
732             }
733
734             /* Grab MAC. */
735             error = netdev_get_etheraddr(iface->netdev, iface_ea);
736             if (error) {
737                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
738                 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
739                             iface->name, strerror(error));
740                 continue;
741             }
742         }
743
744         /* Compare against our current choice. */
745         if (!eth_addr_is_multicast(iface_ea) &&
746             !eth_addr_is_reserved(iface_ea) &&
747             !eth_addr_is_zero(iface_ea) &&
748             memcmp(iface_ea, ea, ETH_ADDR_LEN) < 0)
749         {
750             memcpy(ea, iface_ea, ETH_ADDR_LEN);
751             *hw_addr_iface = iface;
752         }
753     }
754     if (eth_addr_is_multicast(ea) || eth_addr_is_vif(ea)) {
755         memcpy(ea, br->default_ea, ETH_ADDR_LEN);
756         *hw_addr_iface = NULL;
757         VLOG_WARN("bridge %s: using default bridge Ethernet "
758                   "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
759     } else {
760         VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
761                  br->name, ETH_ADDR_ARGS(ea));
762     }
763 }
764
765 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
766  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
767  * an interface on 'br', then that interface must be passed in as
768  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
769  * 'hw_addr_iface' must be passed in as a null pointer. */
770 static uint64_t
771 bridge_pick_datapath_id(struct bridge *br,
772                         const uint8_t bridge_ea[ETH_ADDR_LEN],
773                         struct iface *hw_addr_iface)
774 {
775     /*
776      * The procedure for choosing a bridge MAC address will, in the most
777      * ordinary case, also choose a unique MAC that we can use as a datapath
778      * ID.  In some special cases, though, multiple bridges will end up with
779      * the same MAC address.  This is OK for the bridges, but it will confuse
780      * the OpenFlow controller, because each datapath needs a unique datapath
781      * ID.
782      *
783      * Datapath IDs must be unique.  It is also very desirable that they be
784      * stable from one run to the next, so that policy set on a datapath
785      * "sticks".
786      */
787     uint64_t dpid;
788
789     dpid = cfg_get_dpid(0, "bridge.%s.datapath-id", br->name);
790     if (dpid) {
791         return dpid;
792     }
793
794     if (hw_addr_iface) {
795         int vlan;
796         if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
797             /*
798              * A bridge whose MAC address is taken from a VLAN network device
799              * (that is, a network device created with vconfig(8) or similar
800              * tool) will have the same MAC address as a bridge on the VLAN
801              * device's physical network device.
802              *
803              * Handle this case by hashing the physical network device MAC
804              * along with the VLAN identifier.
805              */
806             uint8_t buf[ETH_ADDR_LEN + 2];
807             memcpy(buf, bridge_ea, ETH_ADDR_LEN);
808             buf[ETH_ADDR_LEN] = vlan >> 8;
809             buf[ETH_ADDR_LEN + 1] = vlan;
810             return dpid_from_hash(buf, sizeof buf);
811         } else {
812             /*
813              * Assume that this bridge's MAC address is unique, since it
814              * doesn't fit any of the cases we handle specially.
815              */
816         }
817     } else {
818         /*
819          * A purely internal bridge, that is, one that has no non-virtual
820          * network devices on it at all, is more difficult because it has no
821          * natural unique identifier at all.
822          *
823          * When the host is a XenServer, we handle this case by hashing the
824          * host's UUID with the name of the bridge.  Names of bridges are
825          * persistent across XenServer reboots, although they can be reused if
826          * an internal network is destroyed and then a new one is later
827          * created, so this is fairly effective.
828          *
829          * When the host is not a XenServer, we punt by using a random MAC
830          * address on each run.
831          */
832         const char *host_uuid = xenserver_get_host_uuid();
833         if (host_uuid) {
834             char *combined = xasprintf("%s,%s", host_uuid, br->name);
835             dpid = dpid_from_hash(combined, strlen(combined));
836             free(combined);
837             return dpid;
838         }
839     }
840
841     return eth_addr_to_uint64(bridge_ea);
842 }
843
844 static uint64_t
845 dpid_from_hash(const void *data, size_t n)
846 {
847     uint8_t hash[SHA1_DIGEST_SIZE];
848
849     BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
850     sha1_bytes(data, n, hash);
851     eth_addr_mark_random(hash);
852     return eth_addr_to_uint64(hash);
853 }
854
855 int
856 bridge_run(void)
857 {
858     struct bridge *br, *next;
859     int retval;
860
861     retval = 0;
862     LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
863         int error = bridge_run_one(br);
864         if (error) {
865             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
866             VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
867                         "forcing reconfiguration", br->name);
868             if (!retval) {
869                 retval = error;
870             }
871         }
872     }
873     return retval;
874 }
875
876 void
877 bridge_wait(void)
878 {
879     struct bridge *br;
880
881     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
882         ofproto_wait(br->ofproto);
883         if (br->controller) {
884             continue;
885         }
886
887         if (br->ml) {
888             mac_learning_wait(br->ml);
889         }
890         bond_wait(br);
891         brstp_wait(br);
892     }
893 }
894
895 /* Forces 'br' to revalidate all of its flows.  This is appropriate when 'br''s
896  * configuration changes.  */
897 static void
898 bridge_flush(struct bridge *br)
899 {
900     COVERAGE_INC(bridge_flush);
901     br->flush = true;
902     if (br->ml) {
903         mac_learning_flush(br->ml);
904     }
905 }
906
907 /* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
908  * such interface. */
909 static struct iface *
910 bridge_get_local_iface(struct bridge *br)
911 {
912     size_t i, j;
913
914     for (i = 0; i < br->n_ports; i++) {
915         struct port *port = br->ports[i];
916         for (j = 0; j < port->n_ifaces; j++) {
917             struct iface *iface = port->ifaces[j];
918             if (iface->dp_ifidx == ODPP_LOCAL) {
919                 return iface;
920             }
921         }
922     }
923
924     return NULL;
925 }
926 \f
927 /* Bridge unixctl user interface functions. */
928 static void
929 bridge_unixctl_fdb_show(struct unixctl_conn *conn, const char *args)
930 {
931     struct ds ds = DS_EMPTY_INITIALIZER;
932     const struct bridge *br;
933
934     br = bridge_lookup(args);
935     if (!br) {
936         unixctl_command_reply(conn, 501, "no such bridge");
937         return;
938     }
939
940     ds_put_cstr(&ds, " port  VLAN  MAC                Age\n");
941     if (br->ml) {
942         const struct mac_entry *e;
943         LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
944             if (e->port < 0 || e->port >= br->n_ports) {
945                 continue;
946             }
947             ds_put_format(&ds, "%5d  %4d  "ETH_ADDR_FMT"  %3d\n",
948                           br->ports[e->port]->ifaces[0]->dp_ifidx,
949                           e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
950         }
951     }
952     unixctl_command_reply(conn, 200, ds_cstr(&ds));
953     ds_destroy(&ds);
954 }
955 \f
956 /* Bridge reconfiguration functions. */
957
958 static struct bridge *
959 bridge_create(const char *name)
960 {
961     struct bridge *br;
962     int error;
963
964     assert(!bridge_lookup(name));
965     br = xcalloc(1, sizeof *br);
966
967     error = dpif_create(name, &br->dpif);
968     if (error == EEXIST || error == EBUSY) {
969         error = dpif_open(name, &br->dpif);
970         if (error) {
971             VLOG_ERR("datapath %s already exists but cannot be opened: %s",
972                      name, strerror(error));
973             free(br);
974             return NULL;
975         }
976         dpif_flow_flush(br->dpif);
977     } else if (error) {
978         VLOG_ERR("failed to create datapath %s: %s", name, strerror(error));
979         free(br);
980         return NULL;
981     }
982
983     error = ofproto_create(name, &bridge_ofhooks, br, &br->ofproto);
984     if (error) {
985         VLOG_ERR("failed to create switch %s: %s", name, strerror(error));
986         dpif_delete(br->dpif);
987         dpif_close(br->dpif);
988         free(br);
989         return NULL;
990     }
991
992     br->name = xstrdup(name);
993     br->ml = mac_learning_create();
994     br->sent_config_request = false;
995     eth_addr_random(br->default_ea);
996
997     port_array_init(&br->ifaces);
998
999     br->flush = false;
1000     br->bond_next_rebalance = time_msec() + 10000;
1001
1002     list_push_back(&all_bridges, &br->node);
1003
1004     VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
1005
1006     return br;
1007 }
1008
1009 static void
1010 bridge_destroy(struct bridge *br)
1011 {
1012     if (br) {
1013         int error;
1014
1015         while (br->n_ports > 0) {
1016             port_destroy(br->ports[br->n_ports - 1]);
1017         }
1018         list_remove(&br->node);
1019         error = dpif_delete(br->dpif);
1020         if (error && error != ENOENT) {
1021             VLOG_ERR("failed to delete %s: %s",
1022                      dpif_name(br->dpif), strerror(error));
1023         }
1024         dpif_close(br->dpif);
1025         ofproto_destroy(br->ofproto);
1026         free(br->controller);
1027         mac_learning_destroy(br->ml);
1028         port_array_destroy(&br->ifaces);
1029         free(br->ports);
1030         free(br->name);
1031         free(br);
1032     }
1033 }
1034
1035 static struct bridge *
1036 bridge_lookup(const char *name)
1037 {
1038     struct bridge *br;
1039
1040     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1041         if (!strcmp(br->name, name)) {
1042             return br;
1043         }
1044     }
1045     return NULL;
1046 }
1047
1048 bool
1049 bridge_exists(const char *name)
1050 {
1051     return bridge_lookup(name) ? true : false;
1052 }
1053
1054 uint64_t
1055 bridge_get_datapathid(const char *name)
1056 {
1057     struct bridge *br = bridge_lookup(name);
1058     return br ? ofproto_get_datapath_id(br->ofproto) : 0;
1059 }
1060
1061 /* Handle requests for a listing of all flows known by the OpenFlow
1062  * stack, including those normally hidden. */
1063 static void
1064 bridge_unixctl_dump_flows(struct unixctl_conn *conn, const char *args)
1065 {
1066     struct bridge *br;
1067     struct ds results;
1068     
1069     br = bridge_lookup(args);
1070     if (!br) {
1071         unixctl_command_reply(conn, 501, "Unknown bridge");
1072         return;
1073     }
1074
1075     ds_init(&results);
1076     ofproto_get_all_flows(br->ofproto, &results);
1077
1078     unixctl_command_reply(conn, 200, ds_cstr(&results));
1079     ds_destroy(&results);
1080 }
1081
1082 static int
1083 bridge_run_one(struct bridge *br)
1084 {
1085     int error;
1086
1087     error = ofproto_run1(br->ofproto);
1088     if (error) {
1089         return error;
1090     }
1091
1092     if (br->ml) {
1093         mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
1094     }
1095     bond_run(br);
1096     brstp_run(br);
1097
1098     error = ofproto_run2(br->ofproto, br->flush);
1099     br->flush = false;
1100
1101     return error;
1102 }
1103
1104 static const char *
1105 bridge_get_controller(const struct bridge *br)
1106 {
1107     const char *controller;
1108
1109     controller = cfg_get_string(0, "bridge.%s.controller", br->name);
1110     if (!controller) {
1111         controller = cfg_get_string(0, "mgmt.controller");
1112     }
1113     return controller && controller[0] ? controller : NULL;
1114 }
1115
1116 static bool
1117 check_duplicate_ifaces(struct bridge *br, struct iface *iface, void *ifaces_)
1118 {
1119     struct svec *ifaces = ifaces_;
1120     if (!svec_contains(ifaces, iface->name)) {
1121         svec_add(ifaces, iface->name);
1122         svec_sort(ifaces);
1123         return true;
1124     } else {
1125         VLOG_ERR("bridge %s: %s interface is on multiple ports, "
1126                  "removing from %s",
1127                  br->name, iface->name, iface->port->name);
1128         return false;
1129     }
1130 }
1131
1132 static void
1133 bridge_reconfigure_one(struct bridge *br)
1134 {
1135     struct svec old_ports, new_ports, ifaces;
1136     struct svec listeners, old_listeners;
1137     struct svec snoops, old_snoops;
1138     size_t i;
1139
1140     /* Collect old ports. */
1141     svec_init(&old_ports);
1142     for (i = 0; i < br->n_ports; i++) {
1143         svec_add(&old_ports, br->ports[i]->name);
1144     }
1145     svec_sort(&old_ports);
1146     assert(svec_is_unique(&old_ports));
1147
1148     /* Collect new ports. */
1149     svec_init(&new_ports);
1150     cfg_get_all_keys(&new_ports, "bridge.%s.port", br->name);
1151     svec_sort(&new_ports);
1152     if (bridge_get_controller(br)) {
1153         char local_name[IF_NAMESIZE];
1154         int error;
1155
1156         error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1157                                    local_name, sizeof local_name);
1158         if (!error && !svec_contains(&new_ports, local_name)) {
1159             svec_add(&new_ports, local_name);
1160             svec_sort(&new_ports);
1161         }
1162     }
1163     if (!svec_is_unique(&new_ports)) {
1164         VLOG_WARN("bridge %s: %s specified twice as bridge port",
1165                   br->name, svec_get_duplicate(&new_ports));
1166         svec_unique(&new_ports);
1167     }
1168
1169     ofproto_set_mgmt_id(br->ofproto, mgmt_id);
1170
1171     /* Get rid of deleted ports and add new ports. */
1172     for (i = 0; i < br->n_ports; ) {
1173         struct port *port = br->ports[i];
1174         if (!svec_contains(&new_ports, port->name)) {
1175             port_destroy(port);
1176         } else {
1177             i++;
1178         }
1179     }
1180     for (i = 0; i < new_ports.n; i++) {
1181         const char *name = new_ports.names[i];
1182         if (!svec_contains(&old_ports, name)) {
1183             port_create(br, name);
1184         }
1185     }
1186     svec_destroy(&old_ports);
1187     svec_destroy(&new_ports);
1188
1189     /* Reconfigure all ports. */
1190     for (i = 0; i < br->n_ports; i++) {
1191         port_reconfigure(br->ports[i]);
1192     }
1193
1194     /* Check and delete duplicate interfaces. */
1195     svec_init(&ifaces);
1196     iterate_and_prune_ifaces(br, check_duplicate_ifaces, &ifaces);
1197     svec_destroy(&ifaces);
1198
1199     /* Delete all flows if we're switching from connected to standalone or vice
1200      * versa.  (XXX Should we delete all flows if we are switching from one
1201      * controller to another?) */
1202
1203     /* Configure OpenFlow management listeners. */
1204     svec_init(&listeners);
1205     cfg_get_all_strings(&listeners, "bridge.%s.openflow.listeners", br->name);
1206     if (!listeners.n) {
1207         svec_add_nocopy(&listeners, xasprintf("punix:%s/%s.mgmt",
1208                                               ovs_rundir, br->name));
1209     } else if (listeners.n == 1 && !strcmp(listeners.names[0], "none")) {
1210         svec_clear(&listeners);
1211     }
1212     svec_sort_unique(&listeners);
1213
1214     svec_init(&old_listeners);
1215     ofproto_get_listeners(br->ofproto, &old_listeners);
1216     svec_sort_unique(&old_listeners);
1217
1218     if (!svec_equal(&listeners, &old_listeners)) {
1219         ofproto_set_listeners(br->ofproto, &listeners);
1220     }
1221     svec_destroy(&listeners);
1222     svec_destroy(&old_listeners);
1223
1224     /* Configure OpenFlow controller connection snooping. */
1225     svec_init(&snoops);
1226     cfg_get_all_strings(&snoops, "bridge.%s.openflow.snoops", br->name);
1227     if (!snoops.n) {
1228         svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1229                                            ovs_rundir, br->name));
1230     } else if (snoops.n == 1 && !strcmp(snoops.names[0], "none")) {
1231         svec_clear(&snoops);
1232     }
1233     svec_sort_unique(&snoops);
1234
1235     svec_init(&old_snoops);
1236     ofproto_get_snoops(br->ofproto, &old_snoops);
1237     svec_sort_unique(&old_snoops);
1238
1239     if (!svec_equal(&snoops, &old_snoops)) {
1240         ofproto_set_snoops(br->ofproto, &snoops);
1241     }
1242     svec_destroy(&snoops);
1243     svec_destroy(&old_snoops);
1244
1245     mirror_reconfigure(br);
1246 }
1247
1248 static void
1249 bridge_reconfigure_controller(struct bridge *br)
1250 {
1251     char *pfx = xasprintf("bridge.%s.controller", br->name);
1252     const char *controller;
1253
1254     controller = bridge_get_controller(br);
1255     if ((br->controller != NULL) != (controller != NULL)) {
1256         ofproto_flush_flows(br->ofproto);
1257     }
1258     free(br->controller);
1259     br->controller = controller ? xstrdup(controller) : NULL;
1260
1261     if (controller) {
1262         const char *fail_mode;
1263         int max_backoff, probe;
1264         int rate_limit, burst_limit;
1265
1266         if (!strcmp(controller, "discover")) {
1267             bool update_resolv_conf = true;
1268
1269             if (cfg_has("%s.update-resolv.conf", pfx)) {
1270                 update_resolv_conf = cfg_get_bool(0, "%s.update-resolv.conf",
1271                         pfx);
1272             }
1273             ofproto_set_discovery(br->ofproto, true,
1274                                   cfg_get_string(0, "%s.accept-regex", pfx),
1275                                   update_resolv_conf);
1276         } else {
1277             struct iface *local_iface;
1278             bool in_band;
1279
1280             in_band = (!cfg_is_valid(CFG_BOOL | CFG_REQUIRED,
1281                                      "%s.in-band", pfx)
1282                        || cfg_get_bool(0, "%s.in-band", pfx));
1283             ofproto_set_discovery(br->ofproto, false, NULL, NULL);
1284             ofproto_set_in_band(br->ofproto, in_band);
1285
1286             local_iface = bridge_get_local_iface(br);
1287             if (local_iface
1288                 && cfg_is_valid(CFG_IP | CFG_REQUIRED, "%s.ip", pfx)) {
1289                 struct netdev *netdev = local_iface->netdev;
1290                 struct in_addr ip, mask, gateway;
1291                 ip.s_addr = cfg_get_ip(0, "%s.ip", pfx);
1292                 mask.s_addr = cfg_get_ip(0, "%s.netmask", pfx);
1293                 gateway.s_addr = cfg_get_ip(0, "%s.gateway", pfx);
1294
1295                 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1296                 if (!mask.s_addr) {
1297                     mask.s_addr = guess_netmask(ip.s_addr);
1298                 }
1299                 if (!netdev_set_in4(netdev, ip, mask)) {
1300                     VLOG_INFO("bridge %s: configured IP address "IP_FMT", "
1301                               "netmask "IP_FMT,
1302                               br->name, IP_ARGS(&ip.s_addr),
1303                               IP_ARGS(&mask.s_addr));
1304                 }
1305
1306                 if (gateway.s_addr) {
1307                     if (!netdev_add_router(netdev, gateway)) {
1308                         VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1309                                   br->name, IP_ARGS(&gateway.s_addr));
1310                     }
1311                 }
1312             }
1313         }
1314
1315         fail_mode = cfg_get_string(0, "%s.fail-mode", pfx);
1316         if (!fail_mode) {
1317             fail_mode = cfg_get_string(0, "mgmt.fail-mode");
1318         }
1319         ofproto_set_failure(br->ofproto,
1320                             (!fail_mode
1321                              || !strcmp(fail_mode, "standalone")
1322                              || !strcmp(fail_mode, "open")));
1323
1324         probe = cfg_get_int(0, "%s.inactivity-probe", pfx);
1325         if (probe < 5) {
1326             probe = cfg_get_int(0, "mgmt.inactivity-probe");
1327             if (probe < 5) {
1328                 probe = 5;
1329             }
1330         }
1331         ofproto_set_probe_interval(br->ofproto, probe);
1332
1333         max_backoff = cfg_get_int(0, "%s.max-backoff", pfx);
1334         if (!max_backoff) {
1335             max_backoff = cfg_get_int(0, "mgmt.max-backoff");
1336             if (!max_backoff) {
1337                 max_backoff = 8;
1338             }
1339         }
1340         ofproto_set_max_backoff(br->ofproto, max_backoff);
1341
1342         rate_limit = cfg_get_int(0, "%s.rate-limit", pfx);
1343         if (!rate_limit) {
1344             rate_limit = cfg_get_int(0, "mgmt.rate-limit");
1345         }
1346         burst_limit = cfg_get_int(0, "%s.burst-limit", pfx);
1347         if (!burst_limit) {
1348             burst_limit = cfg_get_int(0, "mgmt.burst-limit");
1349         }
1350         ofproto_set_rate_limit(br->ofproto, rate_limit, burst_limit);
1351
1352         ofproto_set_stp(br->ofproto, cfg_get_bool(0, "%s.stp", pfx));
1353
1354         if (cfg_has("%s.commands.acl", pfx)) {
1355             struct svec command_acls;
1356             char *command_acl;
1357
1358             svec_init(&command_acls);
1359             cfg_get_all_strings(&command_acls, "%s.commands.acl", pfx);
1360             command_acl = svec_join(&command_acls, ",", "");
1361
1362             ofproto_set_remote_execution(br->ofproto, command_acl,
1363                                          cfg_get_string(0, "%s.commands.dir",
1364                                                         pfx));
1365
1366             svec_destroy(&command_acls);
1367             free(command_acl);
1368         } else {
1369             ofproto_set_remote_execution(br->ofproto, NULL, NULL);
1370         }
1371     } else {
1372         union ofp_action action;
1373         flow_t flow;
1374
1375         /* Set up a flow that matches every packet and directs them to
1376          * OFPP_NORMAL (which goes to us). */
1377         memset(&action, 0, sizeof action);
1378         action.type = htons(OFPAT_OUTPUT);
1379         action.output.len = htons(sizeof action);
1380         action.output.port = htons(OFPP_NORMAL);
1381         memset(&flow, 0, sizeof flow);
1382         ofproto_add_flow(br->ofproto, &flow, OFPFW_ALL, 0,
1383                          &action, 1, 0);
1384
1385         ofproto_set_in_band(br->ofproto, false);
1386         ofproto_set_max_backoff(br->ofproto, 1);
1387         ofproto_set_probe_interval(br->ofproto, 5);
1388         ofproto_set_failure(br->ofproto, false);
1389         ofproto_set_stp(br->ofproto, false);
1390     }
1391     free(pfx);
1392
1393     ofproto_set_controller(br->ofproto, br->controller);
1394 }
1395
1396 static void
1397 bridge_get_all_ifaces(const struct bridge *br, struct svec *ifaces)
1398 {
1399     size_t i, j;
1400
1401     svec_init(ifaces);
1402     for (i = 0; i < br->n_ports; i++) {
1403         struct port *port = br->ports[i];
1404         for (j = 0; j < port->n_ifaces; j++) {
1405             struct iface *iface = port->ifaces[j];
1406             svec_add(ifaces, iface->name);
1407         }
1408         if (port->n_ifaces > 1
1409             && cfg_get_bool(0, "bonding.%s.fake-iface", port->name)) {
1410             svec_add(ifaces, port->name);
1411         }
1412     }
1413     svec_sort_unique(ifaces);
1414 }
1415
1416 /* For robustness, in case the administrator moves around datapath ports behind
1417  * our back, we re-check all the datapath port numbers here.
1418  *
1419  * This function will set the 'dp_ifidx' members of interfaces that have
1420  * disappeared to -1, so only call this function from a context where those
1421  * 'struct iface's will be removed from the bridge.  Otherwise, the -1
1422  * 'dp_ifidx'es will cause trouble later when we try to send them to the
1423  * datapath, which doesn't support UINT16_MAX+1 ports. */
1424 static void
1425 bridge_fetch_dp_ifaces(struct bridge *br)
1426 {
1427     struct odp_port *dpif_ports;
1428     size_t n_dpif_ports;
1429     size_t i, j;
1430
1431     /* Reset all interface numbers. */
1432     for (i = 0; i < br->n_ports; i++) {
1433         struct port *port = br->ports[i];
1434         for (j = 0; j < port->n_ifaces; j++) {
1435             struct iface *iface = port->ifaces[j];
1436             iface->dp_ifidx = -1;
1437         }
1438     }
1439     port_array_clear(&br->ifaces);
1440
1441     dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
1442     for (i = 0; i < n_dpif_ports; i++) {
1443         struct odp_port *p = &dpif_ports[i];
1444         struct iface *iface = iface_lookup(br, p->devname);
1445         if (iface) {
1446             if (iface->dp_ifidx >= 0) {
1447                 VLOG_WARN("%s reported interface %s twice",
1448                           dpif_name(br->dpif), p->devname);
1449             } else if (iface_from_dp_ifidx(br, p->port)) {
1450                 VLOG_WARN("%s reported interface %"PRIu16" twice",
1451                           dpif_name(br->dpif), p->port);
1452             } else {
1453                 port_array_set(&br->ifaces, p->port, iface);
1454                 iface->dp_ifidx = p->port;
1455             }
1456         }
1457     }
1458     free(dpif_ports);
1459 }
1460 \f
1461 /* Bridge packet processing functions. */
1462
1463 static int
1464 bond_hash(const uint8_t mac[ETH_ADDR_LEN])
1465 {
1466     return hash_bytes(mac, ETH_ADDR_LEN, 0) & BOND_MASK;
1467 }
1468
1469 static struct bond_entry *
1470 lookup_bond_entry(const struct port *port, const uint8_t mac[ETH_ADDR_LEN])
1471 {
1472     return &port->bond_hash[bond_hash(mac)];
1473 }
1474
1475 static int
1476 bond_choose_iface(const struct port *port)
1477 {
1478     size_t i;
1479     for (i = 0; i < port->n_ifaces; i++) {
1480         if (port->ifaces[i]->enabled) {
1481             return i;
1482         }
1483     }
1484     return -1;
1485 }
1486
1487 static bool
1488 choose_output_iface(const struct port *port, const uint8_t *dl_src,
1489                     uint16_t *dp_ifidx, tag_type *tags)
1490 {
1491     struct iface *iface;
1492
1493     assert(port->n_ifaces);
1494     if (port->n_ifaces == 1) {
1495         iface = port->ifaces[0];
1496     } else {
1497         struct bond_entry *e = lookup_bond_entry(port, dl_src);
1498         if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
1499             || !port->ifaces[e->iface_idx]->enabled) {
1500             /* XXX select interface properly.  The current interface selection
1501              * is only good for testing the rebalancing code. */
1502             e->iface_idx = bond_choose_iface(port);
1503             if (e->iface_idx < 0) {
1504                 *tags |= port->no_ifaces_tag;
1505                 return false;
1506             }
1507             e->iface_tag = tag_create_random();
1508             ((struct port *) port)->bond_compat_is_stale = true;
1509         }
1510         *tags |= e->iface_tag;
1511         iface = port->ifaces[e->iface_idx];
1512     }
1513     *dp_ifidx = iface->dp_ifidx;
1514     *tags |= iface->tag;        /* Currently only used for bonding. */
1515     return true;
1516 }
1517
1518 static void
1519 bond_link_status_update(struct iface *iface, bool carrier)
1520 {
1521     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1522     struct port *port = iface->port;
1523
1524     if ((carrier == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
1525         /* Nothing to do. */
1526         return;
1527     }
1528     VLOG_INFO_RL(&rl, "interface %s: carrier %s",
1529                  iface->name, carrier ? "detected" : "dropped");
1530     if (carrier == iface->enabled) {
1531         iface->delay_expires = LLONG_MAX;
1532         VLOG_INFO_RL(&rl, "interface %s: will not be %s",
1533                      iface->name, carrier ? "disabled" : "enabled");
1534     } else if (carrier && port->updelay && port->active_iface < 0) {
1535         iface->delay_expires = time_msec();
1536         VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
1537                      "other interface is up", iface->name, port->updelay);
1538     } else {
1539         int delay = carrier ? port->updelay : port->downdelay;
1540         iface->delay_expires = time_msec() + delay;
1541         if (delay) {
1542             VLOG_INFO_RL(&rl,
1543                          "interface %s: will be %s if it stays %s for %d ms",
1544                          iface->name,
1545                          carrier ? "enabled" : "disabled",
1546                          carrier ? "up" : "down",
1547                          delay);
1548         }
1549     }
1550 }
1551
1552 static void
1553 bond_choose_active_iface(struct port *port)
1554 {
1555     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1556
1557     port->active_iface = bond_choose_iface(port);
1558     port->active_iface_tag = tag_create_random();
1559     if (port->active_iface >= 0) {
1560         VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
1561                      port->name, port->ifaces[port->active_iface]->name);
1562     } else {
1563         VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
1564                      port->name);
1565     }
1566 }
1567
1568 static void
1569 bond_enable_slave(struct iface *iface, bool enable)
1570 {
1571     struct port *port = iface->port;
1572     struct bridge *br = port->bridge;
1573
1574     iface->delay_expires = LLONG_MAX;
1575     if (enable == iface->enabled) {
1576         return;
1577     }
1578
1579     iface->enabled = enable;
1580     if (!iface->enabled) {
1581         VLOG_WARN("interface %s: disabled", iface->name);
1582         ofproto_revalidate(br->ofproto, iface->tag);
1583         if (iface->port_ifidx == port->active_iface) {
1584             ofproto_revalidate(br->ofproto,
1585                                port->active_iface_tag);
1586             bond_choose_active_iface(port);
1587         }
1588         bond_send_learning_packets(port);
1589     } else {
1590         VLOG_WARN("interface %s: enabled", iface->name);
1591         if (port->active_iface < 0) {
1592             ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
1593             bond_choose_active_iface(port);
1594             bond_send_learning_packets(port);
1595         }
1596         iface->tag = tag_create_random();
1597     }
1598     port_update_bond_compat(port);
1599 }
1600
1601 static void
1602 bond_run(struct bridge *br)
1603 {
1604     size_t i, j;
1605
1606     for (i = 0; i < br->n_ports; i++) {
1607         struct port *port = br->ports[i];
1608
1609         if (port->bond_compat_is_stale) {
1610             port->bond_compat_is_stale = false;
1611             port_update_bond_compat(port);
1612         }
1613
1614         if (port->n_ifaces < 2) {
1615             continue;
1616         }
1617         for (j = 0; j < port->n_ifaces; j++) {
1618             struct iface *iface = port->ifaces[j];
1619             if (time_msec() >= iface->delay_expires) {
1620                 bond_enable_slave(iface, !iface->enabled);
1621             }
1622         }
1623     }
1624 }
1625
1626 static void
1627 bond_wait(struct bridge *br)
1628 {
1629     size_t i, j;
1630
1631     for (i = 0; i < br->n_ports; i++) {
1632         struct port *port = br->ports[i];
1633         if (port->n_ifaces < 2) {
1634             continue;
1635         }
1636         for (j = 0; j < port->n_ifaces; j++) {
1637             struct iface *iface = port->ifaces[j];
1638             if (iface->delay_expires != LLONG_MAX) {
1639                 poll_timer_wait(iface->delay_expires - time_msec());
1640             }
1641         }
1642     }
1643 }
1644
1645 static bool
1646 set_dst(struct dst *p, const flow_t *flow,
1647         const struct port *in_port, const struct port *out_port,
1648         tag_type *tags)
1649 {
1650     /* STP handling.
1651      *
1652      * XXX This uses too many tags: any broadcast flow will get one tag per
1653      * destination port, and thus a broadcast on a switch of any size is likely
1654      * to have all tag bits set.  We should figure out a way to be smarter.
1655      *
1656      * This is OK when STP is disabled, because stp_state_tag is 0 then. */
1657     *tags |= out_port->stp_state_tag;
1658     if (!(out_port->stp_state & (STP_DISABLED | STP_FORWARDING))) {
1659         return false;
1660     }
1661
1662     p->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
1663               : in_port->vlan >= 0 ? in_port->vlan
1664               : ntohs(flow->dl_vlan));
1665     return choose_output_iface(out_port, flow->dl_src, &p->dp_ifidx, tags);
1666 }
1667
1668 static void
1669 swap_dst(struct dst *p, struct dst *q)
1670 {
1671     struct dst tmp = *p;
1672     *p = *q;
1673     *q = tmp;
1674 }
1675
1676 /* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
1677  * 'dsts'.  (This may help performance by reducing the number of VLAN changes
1678  * that we push to the datapath.  We could in fact fully sort the array by
1679  * vlan, but in most cases there are at most two different vlan tags so that's
1680  * possibly overkill.) */
1681 static void
1682 partition_dsts(struct dst *dsts, size_t n_dsts, int vlan)
1683 {
1684     struct dst *first = dsts;
1685     struct dst *last = dsts + n_dsts;
1686
1687     while (first != last) {
1688         /* Invariants:
1689          *      - All dsts < first have vlan == 'vlan'.
1690          *      - All dsts >= last have vlan != 'vlan'.
1691          *      - first < last. */
1692         while (first->vlan == vlan) {
1693             if (++first == last) {
1694                 return;
1695             }
1696         }
1697
1698         /* Same invariants, plus one additional:
1699          *      - first->vlan != vlan.
1700          */
1701         while (last[-1].vlan != vlan) {
1702             if (--last == first) {
1703                 return;
1704             }
1705         }
1706
1707         /* Same invariants, plus one additional:
1708          *      - last[-1].vlan == vlan.*/
1709         swap_dst(first++, --last);
1710     }
1711 }
1712
1713 static int
1714 mirror_mask_ffs(mirror_mask_t mask)
1715 {
1716     BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
1717     return ffs(mask);
1718 }
1719
1720 static bool
1721 dst_is_duplicate(const struct dst *dsts, size_t n_dsts,
1722                  const struct dst *test)
1723 {
1724     size_t i;
1725     for (i = 0; i < n_dsts; i++) {
1726         if (dsts[i].vlan == test->vlan && dsts[i].dp_ifidx == test->dp_ifidx) {
1727             return true;
1728         }
1729     }
1730     return false;
1731 }
1732
1733 static bool
1734 port_trunks_vlan(const struct port *port, uint16_t vlan)
1735 {
1736     return port->vlan < 0 && bitmap_is_set(port->trunks, vlan);
1737 }
1738
1739 static bool
1740 port_includes_vlan(const struct port *port, uint16_t vlan)
1741 {
1742     return vlan == port->vlan || port_trunks_vlan(port, vlan);
1743 }
1744
1745 static size_t
1746 compose_dsts(const struct bridge *br, const flow_t *flow, uint16_t vlan,
1747              const struct port *in_port, const struct port *out_port,
1748              struct dst dsts[], tag_type *tags)
1749 {
1750     mirror_mask_t mirrors = in_port->src_mirrors;
1751     struct dst *dst = dsts;
1752     size_t i;
1753
1754     *tags |= in_port->stp_state_tag;
1755     if (out_port == FLOOD_PORT) {
1756         /* XXX use ODP_FLOOD if no vlans or bonding. */
1757         /* XXX even better, define each VLAN as a datapath port group */
1758         for (i = 0; i < br->n_ports; i++) {
1759             struct port *port = br->ports[i];
1760             if (port != in_port && port_includes_vlan(port, vlan)
1761                 && !port->is_mirror_output_port
1762                 && set_dst(dst, flow, in_port, port, tags)) {
1763                 mirrors |= port->dst_mirrors;
1764                 dst++;
1765             }
1766         }
1767     } else if (out_port && set_dst(dst, flow, in_port, out_port, tags)) {
1768         mirrors |= out_port->dst_mirrors;
1769         dst++;
1770     }
1771
1772     while (mirrors) {
1773         struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
1774         if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
1775             if (m->out_port) {
1776                 if (set_dst(dst, flow, in_port, m->out_port, tags)
1777                     && !dst_is_duplicate(dsts, dst - dsts, dst)) {
1778                     dst++;
1779                 }
1780             } else {
1781                 for (i = 0; i < br->n_ports; i++) {
1782                     struct port *port = br->ports[i];
1783                     if (port_includes_vlan(port, m->out_vlan)
1784                         && set_dst(dst, flow, in_port, port, tags))
1785                     {
1786                         if (port->vlan < 0) {
1787                             dst->vlan = m->out_vlan;
1788                         }
1789                         if (dst_is_duplicate(dsts, dst - dsts, dst)) {
1790                             continue;
1791                         }
1792                         if (dst->dp_ifidx == flow->in_port
1793                             && dst->vlan == vlan) {
1794                             /* Don't send out input port on same VLAN. */
1795                             continue;
1796                         }
1797                         dst++;
1798                     }
1799                 }
1800             }
1801         }
1802         mirrors &= mirrors - 1;
1803     }
1804
1805     partition_dsts(dsts, dst - dsts, ntohs(flow->dl_vlan));
1806     return dst - dsts;
1807 }
1808
1809 static void UNUSED
1810 print_dsts(const struct dst *dsts, size_t n)
1811 {
1812     for (; n--; dsts++) {
1813         printf(">p%"PRIu16, dsts->dp_ifidx);
1814         if (dsts->vlan != OFP_VLAN_NONE) {
1815             printf("v%"PRIu16, dsts->vlan);
1816         }
1817     }
1818 }
1819
1820 static void
1821 compose_actions(struct bridge *br, const flow_t *flow, uint16_t vlan,
1822                 const struct port *in_port, const struct port *out_port,
1823                 tag_type *tags, struct odp_actions *actions)
1824 {
1825     struct dst dsts[DP_MAX_PORTS * (MAX_MIRRORS + 1)];
1826     size_t n_dsts;
1827     const struct dst *p;
1828     uint16_t cur_vlan;
1829
1830     n_dsts = compose_dsts(br, flow, vlan, in_port, out_port, dsts, tags);
1831
1832     cur_vlan = ntohs(flow->dl_vlan);
1833     for (p = dsts; p < &dsts[n_dsts]; p++) {
1834         union odp_action *a;
1835         if (p->vlan != cur_vlan) {
1836             if (p->vlan == OFP_VLAN_NONE) {
1837                 odp_actions_add(actions, ODPAT_STRIP_VLAN);
1838             } else {
1839                 a = odp_actions_add(actions, ODPAT_SET_VLAN_VID);
1840                 a->vlan_vid.vlan_vid = htons(p->vlan);
1841             }
1842             cur_vlan = p->vlan;
1843         }
1844         a = odp_actions_add(actions, ODPAT_OUTPUT);
1845         a->output.port = p->dp_ifidx;
1846     }
1847 }
1848
1849 static bool
1850 is_bcast_arp_reply(const flow_t *flow, const struct ofpbuf *packet)
1851 {
1852     struct arp_eth_header *arp = (struct arp_eth_header *) packet->data;
1853     return (flow->dl_type == htons(ETH_TYPE_ARP)
1854             && eth_addr_is_broadcast(flow->dl_dst)
1855             && packet->size >= sizeof(struct arp_eth_header)
1856             && arp->ar_op == ARP_OP_REQUEST);
1857 }
1858
1859 /* If the composed actions may be applied to any packet in the given 'flow',
1860  * returns true.  Otherwise, the actions should only be applied to 'packet', or
1861  * not at all, if 'packet' was NULL. */
1862 static bool
1863 process_flow(struct bridge *br, const flow_t *flow,
1864              const struct ofpbuf *packet, struct odp_actions *actions,
1865              tag_type *tags)
1866 {
1867     struct iface *in_iface;
1868     struct port *in_port;
1869     struct port *out_port = NULL; /* By default, drop the packet/flow. */
1870     int vlan;
1871
1872     /* Find the interface and port structure for the received packet. */
1873     in_iface = iface_from_dp_ifidx(br, flow->in_port);
1874     if (!in_iface) {
1875         /* No interface?  Something fishy... */
1876         if (packet != NULL) {
1877             /* Odd.  A few possible reasons here:
1878              *
1879              * - We deleted an interface but there are still a few packets
1880              *   queued up from it.
1881              *
1882              * - Someone externally added an interface (e.g. with "ovs-dpctl
1883              *   add-if") that we don't know about.
1884              *
1885              * - Packet arrived on the local port but the local port is not
1886              *   one of our bridge ports.
1887              */
1888             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1889
1890             VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
1891                          "interface %"PRIu16, br->name, flow->in_port); 
1892         }
1893
1894         /* Return without adding any actions, to drop packets on this flow. */
1895         return true;
1896     }
1897     in_port = in_iface->port;
1898
1899     /* Figure out what VLAN this packet belongs to.
1900      *
1901      * Note that dl_vlan of 0 and of OFP_VLAN_NONE both mean that the packet
1902      * belongs to VLAN 0, so we should treat both cases identically.  (In the
1903      * former case, the packet has an 802.1Q header that specifies VLAN 0,
1904      * presumably to allow a priority to be specified.  In the latter case, the
1905      * packet does not have any 802.1Q header.) */
1906     vlan = ntohs(flow->dl_vlan);
1907     if (vlan == OFP_VLAN_NONE) {
1908         vlan = 0;
1909     }
1910     if (in_port->vlan >= 0) {
1911         if (vlan) {
1912             /* XXX support double tagging? */
1913             if (packet != NULL) {
1914                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1915                 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
1916                              "packet received on port %s configured with "
1917                              "implicit VLAN %"PRIu16,
1918                              br->name, ntohs(flow->dl_vlan),
1919                              in_port->name, in_port->vlan);
1920             }
1921             goto done;
1922         }
1923         vlan = in_port->vlan;
1924     } else {
1925         if (!port_includes_vlan(in_port, vlan)) {
1926             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1927             VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
1928                          "packet received on port %s not configured for "
1929                          "trunking VLAN %d",
1930                          br->name, vlan, in_port->name, vlan);
1931             goto done;
1932         }
1933     }
1934
1935     /* Drop frames for ports that STP wants entirely killed (both for
1936      * forwarding and for learning).  Later, after we do learning, we'll drop
1937      * the frames that STP wants to do learning but not forwarding on. */
1938     if (in_port->stp_state & (STP_LISTENING | STP_BLOCKING)) {
1939         goto done;
1940     }
1941
1942     /* Drop frames for reserved multicast addresses. */
1943     if (eth_addr_is_reserved(flow->dl_dst)) {
1944         goto done;
1945     }
1946
1947     /* Drop frames on ports reserved for mirroring. */
1948     if (in_port->is_mirror_output_port) {
1949         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1950         VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port %s, "
1951                      "which is reserved exclusively for mirroring",
1952                      br->name, in_port->name);
1953         goto done;
1954     }
1955
1956     /* Multicast (and broadcast) packets on bonds need special attention, to
1957      * avoid receiving duplicates. */
1958     if (in_port->n_ifaces > 1 && eth_addr_is_multicast(flow->dl_dst)) {
1959         *tags |= in_port->active_iface_tag;
1960         if (in_port->active_iface != in_iface->port_ifidx) {
1961             /* Drop all multicast packets on inactive slaves. */
1962             goto done;
1963         } else {
1964             /* Drop all multicast packets for which we have learned a different
1965              * input port, because we probably sent the packet on one slave
1966              * and got it back on the active slave.  Broadcast ARP replies are
1967              * an exception to this rule: the host has moved to another
1968              * switch. */
1969             int src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan);
1970             if (src_idx != -1 && src_idx != in_port->port_idx) {
1971                 if (packet) {
1972                     if (!is_bcast_arp_reply(flow, packet)) {
1973                         goto done;
1974                     }
1975                 } else {
1976                     /* No way to know whether it's an ARP reply, because the
1977                      * flow entry doesn't include enough information and we
1978                      * don't have a packet.  Punt. */
1979                     return false;
1980                 }
1981             }
1982         }
1983     }
1984
1985     /* MAC learning. */
1986     out_port = FLOOD_PORT;
1987     if (br->ml) {
1988         int out_port_idx;
1989
1990         /* Learn source MAC (but don't try to learn from revalidation). */
1991         if (packet) {
1992             tag_type rev_tag = mac_learning_learn(br->ml, flow->dl_src,
1993                                                   vlan, in_port->port_idx);
1994             if (rev_tag) {
1995                 /* The log messages here could actually be useful in debugging,
1996                  * so keep the rate limit relatively high. */
1997                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
1998                                                                         300);
1999                 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2000                             "on port %s in VLAN %d",
2001                             br->name, ETH_ADDR_ARGS(flow->dl_src),
2002                             in_port->name, vlan);
2003                 ofproto_revalidate(br->ofproto, rev_tag);
2004             }
2005         }
2006
2007         /* Determine output port. */
2008         out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan,
2009                                                tags);
2010         if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2011             out_port = br->ports[out_port_idx];
2012         }
2013     }
2014
2015     /* Don't send packets out their input ports.  Don't forward frames that STP
2016      * wants us to discard. */
2017     if (in_port == out_port || in_port->stp_state == STP_LEARNING) {
2018         out_port = NULL;
2019     }
2020
2021 done:
2022     compose_actions(br, flow, vlan, in_port, out_port, tags, actions);
2023
2024     /*
2025      * We send out only a single packet, instead of setting up a flow, if the
2026      * packet is an ARP directed to broadcast that arrived on a bonded
2027      * interface.  In such a situation ARP requests and replies must be handled
2028      * differently, but OpenFlow unfortunately can't distinguish them.
2029      */
2030     return (in_port->n_ifaces < 2
2031             || flow->dl_type != htons(ETH_TYPE_ARP)
2032             || !eth_addr_is_broadcast(flow->dl_dst));
2033 }
2034
2035 /* Careful: 'opp' is in host byte order and opp->port_no is an OFP port
2036  * number. */
2037 static void
2038 bridge_port_changed_ofhook_cb(enum ofp_port_reason reason,
2039                               const struct ofp_phy_port *opp,
2040                               void *br_)
2041 {
2042     struct bridge *br = br_;
2043     struct iface *iface;
2044     struct port *port;
2045
2046     iface = iface_from_dp_ifidx(br, ofp_port_to_odp_port(opp->port_no));
2047     if (!iface) {
2048         return;
2049     }
2050     port = iface->port;
2051
2052     if (reason == OFPPR_DELETE) {
2053         VLOG_WARN("bridge %s: interface %s deleted unexpectedly",
2054                   br->name, iface->name);
2055         iface_destroy(iface);
2056         if (!port->n_ifaces) {
2057             VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2058                       br->name, port->name);
2059             port_destroy(port);
2060         }
2061
2062         bridge_flush(br);
2063     } else {
2064         if (port->n_ifaces > 1) {
2065             bool up = !(opp->state & OFPPS_LINK_DOWN);
2066             bond_link_status_update(iface, up);
2067             port_update_bond_compat(port);
2068         }
2069     }
2070 }
2071
2072 static bool
2073 bridge_normal_ofhook_cb(const flow_t *flow, const struct ofpbuf *packet,
2074                         struct odp_actions *actions, tag_type *tags, void *br_)
2075 {
2076     struct bridge *br = br_;
2077
2078 #if 0
2079     if (flow->dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
2080         && eth_addr_equals(flow->dl_dst, stp_eth_addr)) {
2081         brstp_receive(br, flow, payload);
2082         return true;
2083     }
2084 #endif
2085
2086     COVERAGE_INC(bridge_process_flow);
2087     return process_flow(br, flow, packet, actions, tags);
2088 }
2089
2090 static void
2091 bridge_account_flow_ofhook_cb(const flow_t *flow,
2092                               const union odp_action *actions,
2093                               size_t n_actions, unsigned long long int n_bytes,
2094                               void *br_)
2095 {
2096     struct bridge *br = br_;
2097     const union odp_action *a;
2098
2099     if (!br->has_bonded_ports) {
2100         return;
2101     }
2102
2103     for (a = actions; a < &actions[n_actions]; a++) {
2104         if (a->type == ODPAT_OUTPUT) {
2105             struct port *port = port_from_dp_ifidx(br, a->output.port);
2106             if (port && port->n_ifaces >= 2) {
2107                 struct bond_entry *e = lookup_bond_entry(port, flow->dl_src);
2108                 e->tx_bytes += n_bytes;
2109             }
2110         }
2111     }
2112 }
2113
2114 static void
2115 bridge_account_checkpoint_ofhook_cb(void *br_)
2116 {
2117     struct bridge *br = br_;
2118     size_t i;
2119
2120     if (!br->has_bonded_ports) {
2121         return;
2122     }
2123
2124     /* The current ofproto implementation calls this callback at least once a
2125      * second, so this timer implementation is sufficient. */
2126     if (time_msec() < br->bond_next_rebalance) {
2127         return;
2128     }
2129     br->bond_next_rebalance = time_msec() + 10000;
2130
2131     for (i = 0; i < br->n_ports; i++) {
2132         struct port *port = br->ports[i];
2133         if (port->n_ifaces > 1) {
2134             bond_rebalance_port(port);
2135         }
2136     }
2137 }
2138
2139 static struct ofhooks bridge_ofhooks = {
2140     bridge_port_changed_ofhook_cb,
2141     bridge_normal_ofhook_cb,
2142     bridge_account_flow_ofhook_cb,
2143     bridge_account_checkpoint_ofhook_cb,
2144 };
2145 \f
2146 /* Bonding functions. */
2147
2148 /* Statistics for a single interface on a bonded port, used for load-based
2149  * bond rebalancing.  */
2150 struct slave_balance {
2151     struct iface *iface;        /* The interface. */
2152     uint64_t tx_bytes;          /* Sum of hashes[*]->tx_bytes. */
2153
2154     /* All the "bond_entry"s that are assigned to this interface, in order of
2155      * increasing tx_bytes. */
2156     struct bond_entry **hashes;
2157     size_t n_hashes;
2158 };
2159
2160 /* Sorts pointers to pointers to bond_entries in ascending order by the
2161  * interface to which they are assigned, and within a single interface in
2162  * ascending order of bytes transmitted. */
2163 static int
2164 compare_bond_entries(const void *a_, const void *b_)
2165 {
2166     const struct bond_entry *const *ap = a_;
2167     const struct bond_entry *const *bp = b_;
2168     const struct bond_entry *a = *ap;
2169     const struct bond_entry *b = *bp;
2170     if (a->iface_idx != b->iface_idx) {
2171         return a->iface_idx > b->iface_idx ? 1 : -1;
2172     } else if (a->tx_bytes != b->tx_bytes) {
2173         return a->tx_bytes > b->tx_bytes ? 1 : -1;
2174     } else {
2175         return 0;
2176     }
2177 }
2178
2179 /* Sorts slave_balances so that enabled ports come first, and otherwise in
2180  * *descending* order by number of bytes transmitted. */
2181 static int
2182 compare_slave_balance(const void *a_, const void *b_)
2183 {
2184     const struct slave_balance *a = a_;
2185     const struct slave_balance *b = b_;
2186     if (a->iface->enabled != b->iface->enabled) {
2187         return a->iface->enabled ? -1 : 1;
2188     } else if (a->tx_bytes != b->tx_bytes) {
2189         return a->tx_bytes > b->tx_bytes ? -1 : 1;
2190     } else {
2191         return 0;
2192     }
2193 }
2194
2195 static void
2196 swap_bals(struct slave_balance *a, struct slave_balance *b)
2197 {
2198     struct slave_balance tmp = *a;
2199     *a = *b;
2200     *b = tmp;
2201 }
2202
2203 /* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
2204  * given that 'p' (and only 'p') might be in the wrong location.
2205  *
2206  * This function invalidates 'p', since it might now be in a different memory
2207  * location. */
2208 static void
2209 resort_bals(struct slave_balance *p,
2210             struct slave_balance bals[], size_t n_bals)
2211 {
2212     if (n_bals > 1) {
2213         for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
2214             swap_bals(p, p - 1);
2215         }
2216         for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
2217             swap_bals(p, p + 1);
2218         }
2219     }
2220 }
2221
2222 static void
2223 log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
2224 {
2225     if (VLOG_IS_DBG_ENABLED()) {
2226         struct ds ds = DS_EMPTY_INITIALIZER;
2227         const struct slave_balance *b;
2228
2229         for (b = bals; b < bals + n_bals; b++) {
2230             size_t i;
2231
2232             if (b > bals) {
2233                 ds_put_char(&ds, ',');
2234             }
2235             ds_put_format(&ds, " %s %"PRIu64"kB",
2236                           b->iface->name, b->tx_bytes / 1024);
2237
2238             if (!b->iface->enabled) {
2239                 ds_put_cstr(&ds, " (disabled)");
2240             }
2241             if (b->n_hashes > 0) {
2242                 ds_put_cstr(&ds, " (");
2243                 for (i = 0; i < b->n_hashes; i++) {
2244                     const struct bond_entry *e = b->hashes[i];
2245                     if (i > 0) {
2246                         ds_put_cstr(&ds, " + ");
2247                     }
2248                     ds_put_format(&ds, "h%td: %"PRIu64"kB",
2249                                   e - port->bond_hash, e->tx_bytes / 1024);
2250                 }
2251                 ds_put_cstr(&ds, ")");
2252             }
2253         }
2254         VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
2255         ds_destroy(&ds);
2256     }
2257 }
2258
2259 /* Shifts 'hash' from 'from' to 'to' within 'port'. */
2260 static void
2261 bond_shift_load(struct slave_balance *from, struct slave_balance *to,
2262                 struct bond_entry *hash)
2263 {
2264     struct port *port = from->iface->port;
2265     uint64_t delta = hash->tx_bytes;
2266
2267     VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
2268               "from %s to %s (now carrying %"PRIu64"kB and "
2269               "%"PRIu64"kB load, respectively)",
2270               port->name, delta / 1024, hash - port->bond_hash,
2271               from->iface->name, to->iface->name,
2272               (from->tx_bytes - delta) / 1024,
2273               (to->tx_bytes + delta) / 1024);
2274
2275     /* Delete element from from->hashes.
2276      *
2277      * We don't bother to add the element to to->hashes because not only would
2278      * it require more work, the only purpose it would be to allow that hash to
2279      * be migrated to another slave in this rebalancing run, and there is no
2280      * point in doing that.  */
2281     if (from->hashes[0] == hash) {
2282         from->hashes++;
2283     } else {
2284         int i = hash - from->hashes[0];
2285         memmove(from->hashes + i, from->hashes + i + 1,
2286                 (from->n_hashes - (i + 1)) * sizeof *from->hashes);
2287     }
2288     from->n_hashes--;
2289
2290     /* Shift load away from 'from' to 'to'. */
2291     from->tx_bytes -= delta;
2292     to->tx_bytes += delta;
2293
2294     /* Arrange for flows to be revalidated. */
2295     ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
2296     hash->iface_idx = to->iface->port_ifidx;
2297     hash->iface_tag = tag_create_random();
2298 }
2299
2300 static void
2301 bond_rebalance_port(struct port *port)
2302 {
2303     struct slave_balance bals[DP_MAX_PORTS];
2304     size_t n_bals;
2305     struct bond_entry *hashes[BOND_MASK + 1];
2306     struct slave_balance *b, *from, *to;
2307     struct bond_entry *e;
2308     size_t i;
2309
2310     /* Sets up 'bals' to describe each of the port's interfaces, sorted in
2311      * descending order of tx_bytes, so that bals[0] represents the most
2312      * heavily loaded slave and bals[n_bals - 1] represents the least heavily
2313      * loaded slave.
2314      *
2315      * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
2316      * array for each slave_balance structure, we sort our local array of
2317      * hashes in order by slave, so that all of the hashes for a given slave
2318      * become contiguous in memory, and then we point each 'hashes' members of
2319      * a slave_balance structure to the start of a contiguous group. */
2320     n_bals = port->n_ifaces;
2321     for (b = bals; b < &bals[n_bals]; b++) {
2322         b->iface = port->ifaces[b - bals];
2323         b->tx_bytes = 0;
2324         b->hashes = NULL;
2325         b->n_hashes = 0;
2326     }
2327     for (i = 0; i <= BOND_MASK; i++) {
2328         hashes[i] = &port->bond_hash[i];
2329     }
2330     qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
2331     for (i = 0; i <= BOND_MASK; i++) {
2332         e = hashes[i];
2333         if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
2334             b = &bals[e->iface_idx];
2335             b->tx_bytes += e->tx_bytes;
2336             if (!b->hashes) {
2337                 b->hashes = &hashes[i];
2338             }
2339             b->n_hashes++;
2340         }
2341     }
2342     qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
2343     log_bals(bals, n_bals, port);
2344
2345     /* Discard slaves that aren't enabled (which were sorted to the back of the
2346      * array earlier). */
2347     while (!bals[n_bals - 1].iface->enabled) {
2348         n_bals--;
2349         if (!n_bals) {
2350             return;
2351         }
2352     }
2353
2354     /* Shift load from the most-loaded slaves to the least-loaded slaves. */
2355     to = &bals[n_bals - 1];
2356     for (from = bals; from < to; ) {
2357         uint64_t overload = from->tx_bytes - to->tx_bytes;
2358         if (overload < to->tx_bytes >> 5 || overload < 100000) {
2359             /* The extra load on 'from' (and all less-loaded slaves), compared
2360              * to that of 'to' (the least-loaded slave), is less than ~3%, or
2361              * it is less than ~1Mbps.  No point in rebalancing. */
2362             break;
2363         } else if (from->n_hashes == 1) {
2364             /* 'from' only carries a single MAC hash, so we can't shift any
2365              * load away from it, even though we want to. */
2366             from++;
2367         } else {
2368             /* 'from' is carrying significantly more load than 'to', and that
2369              * load is split across at least two different hashes.  Pick a hash
2370              * to migrate to 'to' (the least-loaded slave), given that doing so
2371              * must not cause 'to''s load to exceed 'from''s load.
2372              *
2373              * The sort order we use means that we prefer to shift away the
2374              * smallest hashes instead of the biggest ones.  There is little
2375              * reason behind this decision; we could use the opposite sort
2376              * order to shift away big hashes ahead of small ones. */
2377             size_t i;
2378
2379             for (i = 0; i < from->n_hashes; i++) {
2380                 uint64_t delta = from->hashes[i]->tx_bytes;
2381                 if (to->tx_bytes + delta < from->tx_bytes - delta) {
2382                     break;
2383                 }
2384             }
2385             if (i < from->n_hashes) {
2386                 bond_shift_load(from, to, from->hashes[i]);
2387
2388                 /* Re-sort 'bals'.  Note that this may make 'from' and 'to'
2389                  * point to different slave_balance structures.  It is only
2390                  * valid to do these two operations in a row at all because we
2391                  * know that 'from' will not move past 'to' and vice versa. */
2392                 resort_bals(from, bals, n_bals);
2393                 resort_bals(to, bals, n_bals);
2394             } else {
2395                 from++;
2396             }
2397             port->bond_compat_is_stale = true;
2398         }
2399     }
2400
2401     /* Implement exponentially weighted moving average.  A weight of 1/2 causes
2402      * historical data to decay to <1% in 7 rebalancing runs.  */
2403     for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
2404         e->tx_bytes /= 2;
2405     }
2406 }
2407
2408 static void
2409 bond_send_learning_packets(struct port *port)
2410 {
2411     struct bridge *br = port->bridge;
2412     struct mac_entry *e;
2413     struct ofpbuf packet;
2414     int error, n_packets, n_errors;
2415
2416     if (!port->n_ifaces || port->active_iface < 0 || !br->ml) {
2417         return;
2418     }
2419
2420     ofpbuf_init(&packet, 128);
2421     error = n_packets = n_errors = 0;
2422     LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
2423         union ofp_action actions[2], *a;
2424         uint16_t dp_ifidx;
2425         tag_type tags = 0;
2426         flow_t flow;
2427         int retval;
2428
2429         if (e->port == port->port_idx
2430             || !choose_output_iface(port, e->mac, &dp_ifidx, &tags)) {
2431             continue;
2432         }
2433
2434         /* Compose actions. */
2435         memset(actions, 0, sizeof actions);
2436         a = actions;
2437         if (e->vlan) {
2438             a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
2439             a->vlan_vid.len = htons(sizeof *a);
2440             a->vlan_vid.vlan_vid = htons(e->vlan);
2441             a++;
2442         }
2443         a->output.type = htons(OFPAT_OUTPUT);
2444         a->output.len = htons(sizeof *a);
2445         a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
2446         a++;
2447
2448         /* Send packet. */
2449         n_packets++;
2450         compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
2451                               e->mac);
2452         flow_extract(&packet, ODPP_NONE, &flow);
2453         retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
2454                                      &packet);
2455         if (retval) {
2456             error = retval;
2457             n_errors++;
2458         }
2459     }
2460     ofpbuf_uninit(&packet);
2461
2462     if (n_errors) {
2463         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2464         VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2465                      "packets, last error was: %s",
2466                      port->name, n_errors, n_packets, strerror(error));
2467     } else {
2468         VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2469                  port->name, n_packets);
2470     }
2471 }
2472 \f
2473 /* Bonding unixctl user interface functions. */
2474
2475 static void
2476 bond_unixctl_list(struct unixctl_conn *conn, const char *args UNUSED)
2477 {
2478     struct ds ds = DS_EMPTY_INITIALIZER;
2479     const struct bridge *br;
2480
2481     ds_put_cstr(&ds, "bridge\tbond\tslaves\n");
2482
2483     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2484         size_t i;
2485
2486         for (i = 0; i < br->n_ports; i++) {
2487             const struct port *port = br->ports[i];
2488             if (port->n_ifaces > 1) {
2489                 size_t j;
2490
2491                 ds_put_format(&ds, "%s\t%s\t", br->name, port->name);
2492                 for (j = 0; j < port->n_ifaces; j++) {
2493                     const struct iface *iface = port->ifaces[j];
2494                     if (j) {
2495                         ds_put_cstr(&ds, ", ");
2496                     }
2497                     ds_put_cstr(&ds, iface->name);
2498                 }
2499                 ds_put_char(&ds, '\n');
2500             }
2501         }
2502     }
2503     unixctl_command_reply(conn, 200, ds_cstr(&ds));
2504     ds_destroy(&ds);
2505 }
2506
2507 static struct port *
2508 bond_find(const char *name)
2509 {
2510     const struct bridge *br;
2511
2512     LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2513         size_t i;
2514
2515         for (i = 0; i < br->n_ports; i++) {
2516             struct port *port = br->ports[i];
2517             if (!strcmp(port->name, name) && port->n_ifaces > 1) {
2518                 return port;
2519             }
2520         }
2521     }
2522     return NULL;
2523 }
2524
2525 static void
2526 bond_unixctl_show(struct unixctl_conn *conn, const char *args)
2527 {
2528     struct ds ds = DS_EMPTY_INITIALIZER;
2529     const struct port *port;
2530     size_t j;
2531
2532     port = bond_find(args);
2533     if (!port) {
2534         unixctl_command_reply(conn, 501, "no such bond");
2535         return;
2536     }
2537
2538     ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
2539     ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
2540     ds_put_format(&ds, "next rebalance: %lld ms\n",
2541                   port->bridge->bond_next_rebalance - time_msec());
2542     for (j = 0; j < port->n_ifaces; j++) {
2543         const struct iface *iface = port->ifaces[j];
2544         struct bond_entry *be;
2545
2546         /* Basic info. */
2547         ds_put_format(&ds, "slave %s: %s\n",
2548                       iface->name, iface->enabled ? "enabled" : "disabled");
2549         if (j == port->active_iface) {
2550             ds_put_cstr(&ds, "\tactive slave\n");
2551         }
2552         if (iface->delay_expires != LLONG_MAX) {
2553             ds_put_format(&ds, "\t%s expires in %lld ms\n",
2554                           iface->enabled ? "downdelay" : "updelay",
2555                           iface->delay_expires - time_msec());
2556         }
2557
2558         /* Hashes. */
2559         for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
2560             int hash = be - port->bond_hash;
2561             struct mac_entry *me;
2562
2563             if (be->iface_idx != j) {
2564                 continue;
2565             }
2566
2567             ds_put_format(&ds, "\thash %d: %lld kB load\n",
2568                           hash, be->tx_bytes / 1024);
2569
2570             /* MACs. */
2571             if (!port->bridge->ml) {
2572                 break;
2573             }
2574
2575             LIST_FOR_EACH (me, struct mac_entry, lru_node,
2576                            &port->bridge->ml->lrus) {
2577                 uint16_t dp_ifidx;
2578                 tag_type tags = 0;
2579                 if (bond_hash(me->mac) == hash
2580                     && me->port != port->port_idx
2581                     && choose_output_iface(port, me->mac, &dp_ifidx, &tags)
2582                     && dp_ifidx == iface->dp_ifidx)
2583                 {
2584                     ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
2585                                   ETH_ADDR_ARGS(me->mac));
2586                 }
2587             }
2588         }
2589     }
2590     unixctl_command_reply(conn, 200, ds_cstr(&ds));
2591     ds_destroy(&ds);
2592 }
2593
2594 static void
2595 bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_)
2596 {
2597     char *args = (char *) args_;
2598     char *save_ptr = NULL;
2599     char *bond_s, *hash_s, *slave_s;
2600     uint8_t mac[ETH_ADDR_LEN];
2601     struct port *port;
2602     struct iface *iface;
2603     struct bond_entry *entry;
2604     int hash;
2605
2606     bond_s = strtok_r(args, " ", &save_ptr);
2607     hash_s = strtok_r(NULL, " ", &save_ptr);
2608     slave_s = strtok_r(NULL, " ", &save_ptr);
2609     if (!slave_s) {
2610         unixctl_command_reply(conn, 501,
2611                               "usage: bond/migrate BOND HASH SLAVE");
2612         return;
2613     }
2614
2615     port = bond_find(bond_s);
2616     if (!port) {
2617         unixctl_command_reply(conn, 501, "no such bond");
2618         return;
2619     }
2620
2621     if (sscanf(hash_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
2622         == ETH_ADDR_SCAN_COUNT) {
2623         hash = bond_hash(mac);
2624     } else if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
2625         hash = atoi(hash_s) & BOND_MASK;
2626     } else {
2627         unixctl_command_reply(conn, 501, "bad hash");
2628         return;
2629     }
2630
2631     iface = port_lookup_iface(port, slave_s);
2632     if (!iface) {
2633         unixctl_command_reply(conn, 501, "no such slave");
2634         return;
2635     }
2636
2637     if (!iface->enabled) {
2638         unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
2639         return;
2640     }
2641
2642     entry = &port->bond_hash[hash];
2643     ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
2644     entry->iface_idx = iface->port_ifidx;
2645     entry->iface_tag = tag_create_random();
2646     port->bond_compat_is_stale = true;
2647     unixctl_command_reply(conn, 200, "migrated");
2648 }
2649
2650 static void
2651 bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_)
2652 {
2653     char *args = (char *) args_;
2654     char *save_ptr = NULL;
2655     char *bond_s, *slave_s;
2656     struct port *port;
2657     struct iface *iface;
2658
2659     bond_s = strtok_r(args, " ", &save_ptr);
2660     slave_s = strtok_r(NULL, " ", &save_ptr);
2661     if (!slave_s) {
2662         unixctl_command_reply(conn, 501,
2663                               "usage: bond/set-active-slave BOND SLAVE");
2664         return;
2665     }
2666
2667     port = bond_find(bond_s);
2668     if (!port) {
2669         unixctl_command_reply(conn, 501, "no such bond");
2670         return;
2671     }
2672
2673     iface = port_lookup_iface(port, slave_s);
2674     if (!iface) {
2675         unixctl_command_reply(conn, 501, "no such slave");
2676         return;
2677     }
2678
2679     if (!iface->enabled) {
2680         unixctl_command_reply(conn, 501, "cannot make disabled slave active");
2681         return;
2682     }
2683
2684     if (port->active_iface != iface->port_ifidx) {
2685         ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
2686         port->active_iface = iface->port_ifidx;
2687         port->active_iface_tag = tag_create_random();
2688         VLOG_INFO("port %s: active interface is now %s",
2689                   port->name, iface->name);
2690         bond_send_learning_packets(port);
2691         unixctl_command_reply(conn, 200, "done");
2692     } else {
2693         unixctl_command_reply(conn, 200, "no change");
2694     }
2695 }
2696
2697 static void
2698 enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
2699 {
2700     char *args = (char *) args_;
2701     char *save_ptr = NULL;
2702     char *bond_s, *slave_s;
2703     struct port *port;
2704     struct iface *iface;
2705
2706     bond_s = strtok_r(args, " ", &save_ptr);
2707     slave_s = strtok_r(NULL, " ", &save_ptr);
2708     if (!slave_s) {
2709         unixctl_command_reply(conn, 501,
2710                               "usage: bond/enable/disable-slave BOND SLAVE");
2711         return;
2712     }
2713
2714     port = bond_find(bond_s);
2715     if (!port) {
2716         unixctl_command_reply(conn, 501, "no such bond");
2717         return;
2718     }
2719
2720     iface = port_lookup_iface(port, slave_s);
2721     if (!iface) {
2722         unixctl_command_reply(conn, 501, "no such slave");
2723         return;
2724     }
2725
2726     bond_enable_slave(iface, enable);
2727     unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
2728 }
2729
2730 static void
2731 bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args)
2732 {
2733     enable_slave(conn, args, true);
2734 }
2735
2736 static void
2737 bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args)
2738 {
2739     enable_slave(conn, args, false);
2740 }
2741
2742 static void
2743 bond_unixctl_hash(struct unixctl_conn *conn, const char *args)
2744 {
2745         uint8_t mac[ETH_ADDR_LEN];
2746         uint8_t hash;
2747         char *hash_cstr;
2748
2749         if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
2750             == ETH_ADDR_SCAN_COUNT) {
2751                 hash = bond_hash(mac);
2752
2753                 hash_cstr = xasprintf("%u", hash);
2754                 unixctl_command_reply(conn, 200, hash_cstr);
2755                 free(hash_cstr);
2756         } else {
2757                 unixctl_command_reply(conn, 501, "invalid mac");
2758         }
2759 }
2760
2761 static void
2762 bond_init(void)
2763 {
2764     unixctl_command_register("bond/list", bond_unixctl_list);
2765     unixctl_command_register("bond/show", bond_unixctl_show);
2766     unixctl_command_register("bond/migrate", bond_unixctl_migrate);
2767     unixctl_command_register("bond/set-active-slave",
2768                              bond_unixctl_set_active_slave);
2769     unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave);
2770     unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave);
2771     unixctl_command_register("bond/hash", bond_unixctl_hash);
2772 }
2773 \f
2774 /* Port functions. */
2775
2776 static void
2777 port_create(struct bridge *br, const char *name)
2778 {
2779     struct port *port;
2780
2781     port = xcalloc(1, sizeof *port);
2782     port->bridge = br;
2783     port->port_idx = br->n_ports;
2784     port->vlan = -1;
2785     port->trunks = NULL;
2786     port->name = xstrdup(name);
2787     port->active_iface = -1;
2788     port->stp_state = STP_DISABLED;
2789     port->stp_state_tag = 0;
2790
2791     if (br->n_ports >= br->allocated_ports) {
2792         br->ports = x2nrealloc(br->ports, &br->allocated_ports,
2793                                sizeof *br->ports);
2794     }
2795     br->ports[br->n_ports++] = port;
2796
2797     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2798     bridge_flush(br);
2799 }
2800
2801 static void
2802 port_reconfigure(struct port *port)
2803 {
2804     bool bonded = cfg_has_section("bonding.%s", port->name);
2805     struct svec old_ifaces, new_ifaces;
2806     unsigned long *trunks;
2807     int vlan;
2808     size_t i;
2809
2810     /* Collect old and new interfaces. */
2811     svec_init(&old_ifaces);
2812     svec_init(&new_ifaces);
2813     for (i = 0; i < port->n_ifaces; i++) {
2814         svec_add(&old_ifaces, port->ifaces[i]->name);
2815     }
2816     svec_sort(&old_ifaces);
2817     if (bonded) {
2818         cfg_get_all_keys(&new_ifaces, "bonding.%s.slave", port->name);
2819         if (!new_ifaces.n) {
2820             VLOG_ERR("port %s: no interfaces specified for bonded port",
2821                      port->name);
2822         } else if (new_ifaces.n == 1) {
2823             VLOG_WARN("port %s: only 1 interface specified for bonded port",
2824                       port->name);
2825         }
2826
2827         port->updelay = cfg_get_int(0, "bonding.%s.updelay", port->name);
2828         if (port->updelay < 0) {
2829             port->updelay = 0;
2830         }
2831         port->downdelay = cfg_get_int(0, "bonding.%s.downdelay", port->name);
2832         if (port->downdelay < 0) {
2833             port->downdelay = 0;
2834         }
2835     } else {
2836         svec_init(&new_ifaces);
2837         svec_add(&new_ifaces, port->name);
2838     }
2839
2840     /* Get rid of deleted interfaces and add new interfaces. */
2841     for (i = 0; i < port->n_ifaces; i++) {
2842         struct iface *iface = port->ifaces[i];
2843         if (!svec_contains(&new_ifaces, iface->name)) {
2844             iface_destroy(iface);
2845         } else {
2846             i++;
2847         }
2848     }
2849     for (i = 0; i < new_ifaces.n; i++) {
2850         const char *name = new_ifaces.names[i];
2851         if (!svec_contains(&old_ifaces, name)) {
2852             iface_create(port, name);
2853         }
2854     }
2855
2856     /* Get VLAN tag. */
2857     vlan = -1;
2858     if (cfg_has("vlan.%s.tag", port->name)) {
2859         if (!bonded) {
2860             vlan = cfg_get_vlan(0, "vlan.%s.tag", port->name);
2861             if (vlan >= 0 && vlan <= 4095) {
2862                 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
2863             }
2864         } else {
2865             /* It's possible that bonded, VLAN-tagged ports make sense.  Maybe
2866              * they even work as-is.  But they have not been tested. */
2867             VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
2868                       port->name);
2869         }
2870     }
2871     if (port->vlan != vlan) {
2872         port->vlan = vlan;
2873         bridge_flush(port->bridge);
2874     }
2875
2876     /* Get trunked VLANs. */
2877     trunks = NULL;
2878     if (vlan < 0) {
2879         size_t n_trunks, n_errors;
2880         size_t i;
2881
2882         trunks = bitmap_allocate(4096);
2883         n_trunks = cfg_count("vlan.%s.trunks", port->name);
2884         n_errors = 0;
2885         for (i = 0; i < n_trunks; i++) {
2886             int trunk = cfg_get_vlan(i, "vlan.%s.trunks", port->name);
2887             if (trunk >= 0) {
2888                 bitmap_set1(trunks, trunk);
2889             } else {
2890                 n_errors++;
2891             }
2892         }
2893         if (n_errors) {
2894             VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
2895                      port->name, n_trunks);
2896         }
2897         if (n_errors == n_trunks) {
2898             if (n_errors) {
2899                 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
2900                          port->name);
2901             }
2902             bitmap_set_multiple(trunks, 0, 4096, 1);
2903         }
2904     } else {
2905         if (cfg_has("vlan.%s.trunks", port->name)) {
2906             VLOG_ERR("ignoring vlan.%s.trunks in favor of vlan.%s.vlan",
2907                      port->name, port->name);
2908         }
2909     }
2910     if (trunks == NULL
2911         ? port->trunks != NULL
2912         : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
2913         bridge_flush(port->bridge);
2914     }
2915     bitmap_free(port->trunks);
2916     port->trunks = trunks;
2917
2918     svec_destroy(&old_ifaces);
2919     svec_destroy(&new_ifaces);
2920 }
2921
2922 static void
2923 port_destroy(struct port *port)
2924 {
2925     if (port) {
2926         struct bridge *br = port->bridge;
2927         struct port *del;
2928         size_t i;
2929
2930         proc_net_compat_update_vlan(port->name, NULL, 0);
2931         proc_net_compat_update_bond(port->name, NULL);
2932
2933         for (i = 0; i < MAX_MIRRORS; i++) {
2934             struct mirror *m = br->mirrors[i];
2935             if (m && m->out_port == port) {
2936                 mirror_destroy(m);
2937             }
2938         }
2939
2940         while (port->n_ifaces > 0) {
2941             iface_destroy(port->ifaces[port->n_ifaces - 1]);
2942         }
2943
2944         del = br->ports[port->port_idx] = br->ports[--br->n_ports];
2945         del->port_idx = port->port_idx;
2946
2947         free(port->ifaces);
2948         bitmap_free(port->trunks);
2949         free(port->name);
2950         free(port);
2951         bridge_flush(br);
2952     }
2953 }
2954
2955 static struct port *
2956 port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
2957 {
2958     struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
2959     return iface ? iface->port : NULL;
2960 }
2961
2962 static struct port *
2963 port_lookup(const struct bridge *br, const char *name)
2964 {
2965     size_t i;
2966
2967     for (i = 0; i < br->n_ports; i++) {
2968         struct port *port = br->ports[i];
2969         if (!strcmp(port->name, name)) {
2970             return port;
2971         }
2972     }
2973     return NULL;
2974 }
2975
2976 static struct iface *
2977 port_lookup_iface(const struct port *port, const char *name)
2978 {
2979     size_t j;
2980
2981     for (j = 0; j < port->n_ifaces; j++) {
2982         struct iface *iface = port->ifaces[j];
2983         if (!strcmp(iface->name, name)) {
2984             return iface;
2985         }
2986     }
2987     return NULL;
2988 }
2989
2990 static void
2991 port_update_bonding(struct port *port)
2992 {
2993     if (port->n_ifaces < 2) {
2994         /* Not a bonded port. */
2995         if (port->bond_hash) {
2996             free(port->bond_hash);
2997             port->bond_hash = NULL;
2998             port->bond_compat_is_stale = true;
2999         }
3000     } else {
3001         if (!port->bond_hash) {
3002             size_t i;
3003
3004             port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
3005             for (i = 0; i <= BOND_MASK; i++) {
3006                 struct bond_entry *e = &port->bond_hash[i];
3007                 e->iface_idx = -1;
3008                 e->tx_bytes = 0;
3009             }
3010             port->no_ifaces_tag = tag_create_random();
3011             bond_choose_active_iface(port);
3012         }
3013         port->bond_compat_is_stale = true;
3014     }
3015 }
3016
3017 static void
3018 port_update_bond_compat(struct port *port)
3019 {
3020     struct compat_bond_hash compat_hashes[BOND_MASK + 1];
3021     struct compat_bond bond;
3022     size_t i;
3023
3024     if (port->n_ifaces < 2) {
3025         proc_net_compat_update_bond(port->name, NULL);
3026         return;
3027     }
3028
3029     bond.up = false;
3030     bond.updelay = port->updelay;
3031     bond.downdelay = port->downdelay;
3032
3033     bond.n_hashes = 0;
3034     bond.hashes = compat_hashes;
3035     if (port->bond_hash) {
3036         const struct bond_entry *e;
3037         for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
3038             if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3039                 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
3040                 cbh->hash = e - port->bond_hash;
3041                 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
3042             }
3043         }
3044     }
3045
3046     bond.n_slaves = port->n_ifaces;
3047     bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
3048     for (i = 0; i < port->n_ifaces; i++) {
3049         struct iface *iface = port->ifaces[i];
3050         struct compat_bond_slave *slave = &bond.slaves[i];
3051         slave->name = iface->name;
3052
3053         /* We need to make the same determination as the Linux bonding
3054          * code to determine whether a slave should be consider "up".
3055          * The Linux function bond_miimon_inspect() supports four 
3056          * BOND_LINK_* states:
3057          *      
3058          *    - BOND_LINK_UP: carrier detected, updelay has passed.
3059          *    - BOND_LINK_FAIL: carrier lost, downdelay in progress.
3060          *    - BOND_LINK_DOWN: carrier lost, downdelay has passed.
3061          *    - BOND_LINK_BACK: carrier detected, updelay in progress.
3062          *
3063          * The function bond_info_show_slave() only considers BOND_LINK_UP 
3064          * to be "up" and anything else to be "down".
3065          */
3066         slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
3067         if (slave->up) {
3068             bond.up = true;
3069         }
3070         netdev_get_etheraddr(iface->netdev, slave->mac);
3071     }
3072
3073     proc_net_compat_update_bond(port->name, &bond);
3074     free(bond.slaves);
3075 }
3076
3077 static void
3078 port_update_vlan_compat(struct port *port)
3079 {
3080     struct bridge *br = port->bridge;
3081     char *vlandev_name = NULL;
3082
3083     if (port->vlan > 0) {
3084         /* Figure out the name that the VLAN device should actually have, if it
3085          * existed.  This takes some work because the VLAN device would not
3086          * have port->name in its name; rather, it would have the trunk port's
3087          * name, and 'port' would be attached to a bridge that also had the
3088          * VLAN device one of its ports.  So we need to find a trunk port that
3089          * includes port->vlan.
3090          *
3091          * There might be more than one candidate.  This doesn't happen on
3092          * XenServer, so if it happens we just pick the first choice in
3093          * alphabetical order instead of creating multiple VLAN devices. */
3094         size_t i;
3095         for (i = 0; i < br->n_ports; i++) {
3096             struct port *p = br->ports[i];
3097             if (port_trunks_vlan(p, port->vlan)
3098                 && p->n_ifaces
3099                 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
3100             {
3101                 uint8_t ea[ETH_ADDR_LEN];
3102                 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
3103                 if (!eth_addr_is_multicast(ea) &&
3104                     !eth_addr_is_reserved(ea) &&
3105                     !eth_addr_is_zero(ea)) {
3106                     vlandev_name = p->name;
3107                 }
3108             }
3109         }
3110     }
3111     proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
3112 }
3113 \f
3114 /* Interface functions. */
3115
3116 static void
3117 iface_create(struct port *port, const char *name)
3118 {
3119     struct iface *iface;
3120
3121     iface = xcalloc(1, sizeof *iface);
3122     iface->port = port;
3123     iface->port_ifidx = port->n_ifaces;
3124     iface->name = xstrdup(name);
3125     iface->dp_ifidx = -1;
3126     iface->tag = tag_create_random();
3127     iface->delay_expires = LLONG_MAX;
3128     iface->netdev = NULL;
3129
3130     if (port->n_ifaces >= port->allocated_ifaces) {
3131         port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
3132                                   sizeof *port->ifaces);
3133     }
3134     port->ifaces[port->n_ifaces++] = iface;
3135     if (port->n_ifaces > 1) {
3136         port->bridge->has_bonded_ports = true;
3137     }
3138
3139     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
3140
3141     bridge_flush(port->bridge);
3142 }
3143
3144 static void
3145 iface_destroy(struct iface *iface)
3146 {
3147     if (iface) {
3148         struct port *port = iface->port;
3149         struct bridge *br = port->bridge;
3150         bool del_active = port->active_iface == iface->port_ifidx;
3151         struct iface *del;
3152
3153         if (iface->dp_ifidx >= 0) {
3154             port_array_set(&br->ifaces, iface->dp_ifidx, NULL);
3155         }
3156
3157         del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
3158         del->port_ifidx = iface->port_ifidx;
3159
3160         netdev_close(iface->netdev);
3161         free(iface->name);
3162         free(iface);
3163
3164         if (del_active) {
3165             ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3166             bond_choose_active_iface(port);
3167             bond_send_learning_packets(port);
3168         }
3169
3170         bridge_flush(port->bridge);
3171     }
3172 }
3173
3174 static struct iface *
3175 iface_lookup(const struct bridge *br, const char *name)
3176 {
3177     size_t i, j;
3178
3179     for (i = 0; i < br->n_ports; i++) {
3180         struct port *port = br->ports[i];
3181         for (j = 0; j < port->n_ifaces; j++) {
3182             struct iface *iface = port->ifaces[j];
3183             if (!strcmp(iface->name, name)) {
3184                 return iface;
3185             }
3186         }
3187     }
3188     return NULL;
3189 }
3190
3191 static struct iface *
3192 iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3193 {
3194     return port_array_get(&br->ifaces, dp_ifidx);
3195 }
3196
3197 /* Returns true if 'iface' is the name of an "internal" interface on bridge
3198  * 'br', that is, an interface that is entirely simulated within the datapath.
3199  * The local port (ODPP_LOCAL) is always an internal interface.  Other local
3200  * interfaces are created by setting "iface.<iface>.internal = true".
3201  *
3202  * In addition, we have a kluge-y feature that creates an internal port with
3203  * the name of a bonded port if "bonding.<bondname>.fake-iface = true" is set.
3204  * This feature needs to go away in the long term.  Until then, this is one
3205  * reason why this function takes a name instead of a struct iface: the fake
3206  * interfaces created this way do not have a struct iface. */
3207 static bool
3208 iface_is_internal(const struct bridge *br, const char *iface)
3209 {
3210     if (!strcmp(iface, br->name)
3211         || cfg_get_bool(0, "iface.%s.internal", iface)) {
3212         return true;
3213     }
3214
3215     if (cfg_get_bool(0, "bonding.%s.fake-iface", iface)) {
3216         struct port *port = port_lookup(br, iface);
3217         if (port && port->n_ifaces > 1) {
3218             return true;
3219         }
3220     }
3221
3222     return false;
3223 }
3224
3225 /* Set Ethernet address of 'iface', if one is specified in the configuration
3226  * file. */
3227 static void
3228 iface_set_mac(struct iface *iface)
3229 {
3230     uint64_t mac = cfg_get_mac(0, "iface.%s.mac", iface->name);
3231     if (mac) {
3232         static uint8_t ea[ETH_ADDR_LEN];
3233
3234         eth_addr_from_uint64(mac, ea);
3235         if (eth_addr_is_multicast(ea)) {
3236             VLOG_ERR("interface %s: cannot set MAC to multicast address",
3237                      iface->name);
3238         } else if (iface->dp_ifidx == ODPP_LOCAL) {
3239             VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
3240                      iface->name, iface->name);
3241         } else {
3242             int error = netdev_set_etheraddr(iface->netdev, ea);
3243             if (error) {
3244                 VLOG_ERR("interface %s: setting MAC failed (%s)",
3245                          iface->name, strerror(error));
3246             }
3247         }
3248     }
3249 }
3250 \f
3251 /* Port mirroring. */
3252
3253 static void
3254 mirror_reconfigure(struct bridge *br)
3255 {
3256     struct svec old_mirrors, new_mirrors;
3257     size_t i;
3258
3259     /* Collect old and new mirrors. */
3260     svec_init(&old_mirrors);
3261     svec_init(&new_mirrors);
3262     cfg_get_subsections(&new_mirrors, "mirror.%s", br->name);
3263     for (i = 0; i < MAX_MIRRORS; i++) {
3264         if (br->mirrors[i]) {
3265             svec_add(&old_mirrors, br->mirrors[i]->name);
3266         }
3267     }
3268
3269     /* Get rid of deleted mirrors and add new mirrors. */
3270     svec_sort(&old_mirrors);
3271     assert(svec_is_unique(&old_mirrors));
3272     svec_sort(&new_mirrors);
3273     assert(svec_is_unique(&new_mirrors));
3274     for (i = 0; i < MAX_MIRRORS; i++) {
3275         struct mirror *m = br->mirrors[i];
3276         if (m && !svec_contains(&new_mirrors, m->name)) {
3277             mirror_destroy(m);
3278         }
3279     }
3280     for (i = 0; i < new_mirrors.n; i++) {
3281         const char *name = new_mirrors.names[i];
3282         if (!svec_contains(&old_mirrors, name)) {
3283             mirror_create(br, name);
3284         }
3285     }
3286     svec_destroy(&old_mirrors);
3287     svec_destroy(&new_mirrors);
3288
3289     /* Reconfigure all mirrors. */
3290     for (i = 0; i < MAX_MIRRORS; i++) {
3291         if (br->mirrors[i]) {
3292             mirror_reconfigure_one(br->mirrors[i]);
3293         }
3294     }
3295
3296     /* Update port reserved status. */
3297     for (i = 0; i < br->n_ports; i++) {
3298         br->ports[i]->is_mirror_output_port = false;
3299     }
3300     for (i = 0; i < MAX_MIRRORS; i++) {
3301         struct mirror *m = br->mirrors[i];
3302         if (m && m->out_port) {
3303             m->out_port->is_mirror_output_port = true;
3304         }
3305     }
3306 }
3307
3308 static void
3309 mirror_create(struct bridge *br, const char *name)
3310 {
3311     struct mirror *m;
3312     size_t i;
3313
3314     for (i = 0; ; i++) {
3315         if (i >= MAX_MIRRORS) {
3316             VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
3317                       "cannot create %s", br->name, MAX_MIRRORS, name);
3318             return;
3319         }
3320         if (!br->mirrors[i]) {
3321             break;
3322         }
3323     }
3324
3325     VLOG_INFO("created port mirror %s on bridge %s", name, br->name);
3326     bridge_flush(br);
3327
3328     br->mirrors[i] = m = xcalloc(1, sizeof *m);
3329     m->bridge = br;
3330     m->idx = i;
3331     m->name = xstrdup(name);
3332     svec_init(&m->src_ports);
3333     svec_init(&m->dst_ports);
3334     m->vlans = NULL;
3335     m->n_vlans = 0;
3336     m->out_vlan = -1;
3337     m->out_port = NULL;
3338 }
3339
3340 static void
3341 mirror_destroy(struct mirror *m)
3342 {
3343     if (m) {
3344         struct bridge *br = m->bridge;
3345         size_t i;
3346
3347         for (i = 0; i < br->n_ports; i++) {
3348             br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3349             br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3350         }
3351
3352         svec_destroy(&m->src_ports);
3353         svec_destroy(&m->dst_ports);
3354         free(m->vlans);
3355
3356         m->bridge->mirrors[m->idx] = NULL;
3357         free(m);
3358
3359         bridge_flush(br);
3360     }
3361 }
3362
3363 static void
3364 prune_ports(struct mirror *m, struct svec *ports)
3365 {
3366     struct svec tmp;
3367     size_t i;
3368
3369     svec_sort_unique(ports);
3370
3371     svec_init(&tmp);
3372     for (i = 0; i < ports->n; i++) {
3373         const char *name = ports->names[i];
3374         if (port_lookup(m->bridge, name)) {
3375             svec_add(&tmp, name);
3376         } else {
3377             VLOG_WARN("mirror.%s.%s: cannot match on nonexistent port %s",
3378                       m->bridge->name, m->name, name);
3379         }
3380     }
3381     svec_swap(ports, &tmp);
3382     svec_destroy(&tmp);
3383 }
3384
3385 static size_t
3386 prune_vlans(struct mirror *m, struct svec *vlan_strings, int **vlans)
3387 {
3388     size_t n_vlans, i;
3389
3390     /* This isn't perfect: it won't combine "0" and "00", and the textual sort
3391      * order won't give us numeric sort order.  But that's good enough for what
3392      * we need right now. */
3393     svec_sort_unique(vlan_strings);
3394
3395     *vlans = xmalloc(sizeof *vlans * vlan_strings->n);
3396     n_vlans = 0;
3397     for (i = 0; i < vlan_strings->n; i++) {
3398         const char *name = vlan_strings->names[i];
3399         int vlan;
3400         if (!str_to_int(name, 10, &vlan) || vlan < 0 || vlan > 4095) {
3401             VLOG_WARN("mirror.%s.%s.select.vlan: ignoring invalid VLAN %s",
3402                       m->bridge->name, m->name, name);
3403         } else {
3404             (*vlans)[n_vlans++] = vlan;
3405         }
3406     }
3407     return n_vlans;
3408 }
3409
3410 static bool
3411 vlan_is_mirrored(const struct mirror *m, int vlan)
3412 {
3413     size_t i;
3414
3415     for (i = 0; i < m->n_vlans; i++) {
3416         if (m->vlans[i] == vlan) {
3417             return true;
3418         }
3419     }
3420     return false;
3421 }
3422
3423 static bool
3424 port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
3425 {
3426     size_t i;
3427
3428     for (i = 0; i < m->n_vlans; i++) {
3429         if (port_trunks_vlan(p, m->vlans[i])) {
3430             return true;
3431         }
3432     }
3433     return false;
3434 }
3435
3436 static void
3437 mirror_reconfigure_one(struct mirror *m)
3438 {
3439     char *pfx = xasprintf("mirror.%s.%s", m->bridge->name, m->name);
3440     struct svec src_ports, dst_ports, ports;
3441     struct svec vlan_strings;
3442     mirror_mask_t mirror_bit;
3443     const char *out_port_name;
3444     struct port *out_port;
3445     int out_vlan;
3446     size_t n_vlans;
3447     int *vlans;
3448     size_t i;
3449     bool mirror_all_ports;
3450     bool any_ports_specified;
3451
3452     /* Get output port. */
3453     out_port_name = cfg_get_key(0, "mirror.%s.%s.output.port",
3454                                 m->bridge->name, m->name);
3455     if (out_port_name) {
3456         out_port = port_lookup(m->bridge, out_port_name);
3457         if (!out_port) {
3458             VLOG_ERR("%s.output.port: bridge %s does not have a port "
3459                       "named %s", pfx, m->bridge->name, out_port_name);
3460             mirror_destroy(m);
3461             free(pfx);
3462             return;
3463         }
3464         out_vlan = -1;
3465
3466         if (cfg_has("%s.output.vlan", pfx)) {
3467             VLOG_ERR("%s.output.port and %s.output.vlan both specified; "
3468                      "ignoring %s.output.vlan", pfx, pfx, pfx);
3469         }
3470     } else if (cfg_has("%s.output.vlan", pfx)) {
3471         out_port = NULL;
3472         out_vlan = cfg_get_vlan(0, "%s.output.vlan", pfx);
3473     } else {
3474         VLOG_ERR("%s: neither %s.output.port nor %s.output.vlan specified, "
3475                  "but exactly one is required; disabling port mirror %s",
3476                  pfx, pfx, pfx, pfx);
3477         mirror_destroy(m);
3478         free(pfx);
3479         return;
3480     }
3481
3482     /* Get all the ports, and drop duplicates and ports that don't exist. */
3483     svec_init(&src_ports);
3484     svec_init(&dst_ports);
3485     svec_init(&ports);
3486     cfg_get_all_keys(&src_ports, "%s.select.src-port", pfx);
3487     cfg_get_all_keys(&dst_ports, "%s.select.dst-port", pfx);
3488     cfg_get_all_keys(&ports, "%s.select.port", pfx);
3489     any_ports_specified = src_ports.n || dst_ports.n || ports.n;
3490     svec_append(&src_ports, &ports);
3491     svec_append(&dst_ports, &ports);
3492     svec_destroy(&ports);
3493     prune_ports(m, &src_ports);
3494     prune_ports(m, &dst_ports);
3495     if (any_ports_specified && !src_ports.n && !dst_ports.n) {
3496         VLOG_ERR("%s: none of the specified ports exist; "
3497                  "disabling port mirror %s", pfx, pfx);
3498         mirror_destroy(m);
3499         goto exit;
3500     }
3501
3502     /* Get all the vlans, and drop duplicate and invalid vlans. */
3503     svec_init(&vlan_strings);
3504     cfg_get_all_keys(&vlan_strings, "%s.select.vlan", pfx);
3505     n_vlans = prune_vlans(m, &vlan_strings, &vlans);
3506     svec_destroy(&vlan_strings);
3507
3508     /* Update mirror data. */
3509     if (!svec_equal(&m->src_ports, &src_ports)
3510         || !svec_equal(&m->dst_ports, &dst_ports)
3511         || m->n_vlans != n_vlans
3512         || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
3513         || m->out_port != out_port
3514         || m->out_vlan != out_vlan) {
3515         bridge_flush(m->bridge);
3516     }
3517     svec_swap(&m->src_ports, &src_ports);
3518     svec_swap(&m->dst_ports, &dst_ports);
3519     free(m->vlans);
3520     m->vlans = vlans;
3521     m->n_vlans = n_vlans;
3522     m->out_port = out_port;
3523     m->out_vlan = out_vlan;
3524
3525     /* If no selection criteria have been given, mirror for all ports. */
3526     mirror_all_ports = (!m->src_ports.n) && (!m->dst_ports.n) && (!m->n_vlans);
3527
3528     /* Update ports. */
3529     mirror_bit = MIRROR_MASK_C(1) << m->idx;
3530     for (i = 0; i < m->bridge->n_ports; i++) {
3531         struct port *port = m->bridge->ports[i];
3532
3533         if (mirror_all_ports
3534             || svec_contains(&m->src_ports, port->name)
3535             || (m->n_vlans
3536                 && (!port->vlan
3537                     ? port_trunks_any_mirrored_vlan(m, port)
3538                     : vlan_is_mirrored(m, port->vlan)))) {
3539             port->src_mirrors |= mirror_bit;
3540         } else {
3541             port->src_mirrors &= ~mirror_bit;
3542         }
3543
3544         if (mirror_all_ports || svec_contains(&m->dst_ports, port->name)) {
3545             port->dst_mirrors |= mirror_bit;
3546         } else {
3547             port->dst_mirrors &= ~mirror_bit;
3548         }
3549     }
3550
3551     /* Clean up. */
3552 exit:
3553     svec_destroy(&src_ports);
3554     svec_destroy(&dst_ports);
3555     free(pfx);
3556 }
3557 \f
3558 /* Spanning tree protocol. */
3559
3560 static void brstp_update_port_state(struct port *);
3561
3562 static void
3563 brstp_send_bpdu(struct ofpbuf *pkt, int port_no, void *br_)
3564 {
3565     struct bridge *br = br_;
3566     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3567     struct iface *iface = iface_from_dp_ifidx(br, port_no);
3568     if (!iface) {
3569         VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
3570                      br->name, port_no);
3571     } else {
3572         struct eth_header *eth = pkt->l2;
3573
3574         netdev_get_etheraddr(iface->netdev, eth->eth_src);
3575         if (eth_addr_is_zero(eth->eth_src)) {
3576             VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
3577                          "with unknown MAC", br->name, port_no);
3578         } else {
3579             union ofp_action action;
3580             flow_t flow;
3581
3582             memset(&action, 0, sizeof action);
3583             action.type = htons(OFPAT_OUTPUT);
3584             action.output.len = htons(sizeof action);
3585             action.output.port = htons(port_no);
3586
3587             flow_extract(pkt, ODPP_NONE, &flow);
3588             ofproto_send_packet(br->ofproto, &flow, &action, 1, pkt);
3589         }
3590     }
3591     ofpbuf_delete(pkt);
3592 }
3593
3594 static void
3595 brstp_reconfigure(struct bridge *br)
3596 {
3597     size_t i;
3598
3599     if (!cfg_get_bool(0, "stp.%s.enabled", br->name)) {
3600         if (br->stp) {
3601             stp_destroy(br->stp);
3602             br->stp = NULL;
3603
3604             bridge_flush(br);
3605         }
3606     } else {
3607         uint64_t bridge_address, bridge_id;
3608         int bridge_priority;
3609
3610         bridge_address = cfg_get_mac(0, "stp.%s.address", br->name);
3611         if (!bridge_address) {
3612             if (br->stp) {
3613                 bridge_address = (stp_get_bridge_id(br->stp)
3614                                   & ((UINT64_C(1) << 48) - 1));
3615             } else {
3616                 uint8_t mac[ETH_ADDR_LEN];
3617                 eth_addr_random(mac);
3618                 bridge_address = eth_addr_to_uint64(mac);
3619             }
3620         }
3621
3622         if (cfg_is_valid(CFG_INT | CFG_REQUIRED, "stp.%s.priority",
3623                          br->name)) {
3624             bridge_priority = cfg_get_int(0, "stp.%s.priority", br->name);
3625         } else {
3626             bridge_priority = STP_DEFAULT_BRIDGE_PRIORITY;
3627         }
3628
3629         bridge_id = bridge_address | ((uint64_t) bridge_priority << 48);
3630         if (!br->stp) {
3631             br->stp = stp_create(br->name, bridge_id, brstp_send_bpdu, br);
3632             br->stp_last_tick = time_msec();
3633             bridge_flush(br);
3634         } else {
3635             if (bridge_id != stp_get_bridge_id(br->stp)) {
3636                 stp_set_bridge_id(br->stp, bridge_id);
3637                 bridge_flush(br);
3638             }
3639         }
3640
3641         for (i = 0; i < br->n_ports; i++) {
3642             struct port *p = br->ports[i];
3643             int dp_ifidx;
3644             struct stp_port *sp;
3645             int path_cost, priority;
3646             bool enable;
3647
3648             if (!p->n_ifaces) {
3649                 continue;
3650             }
3651             dp_ifidx = p->ifaces[0]->dp_ifidx;
3652             if (dp_ifidx < 0 || dp_ifidx >= STP_MAX_PORTS) {
3653                 continue;
3654             }
3655
3656             sp = stp_get_port(br->stp, dp_ifidx);
3657             enable = (!cfg_is_valid(CFG_BOOL | CFG_REQUIRED,
3658                                     "stp.%s.port.%s.enabled",
3659                                     br->name, p->name)
3660                       || cfg_get_bool(0, "stp.%s.port.%s.enabled",
3661                                       br->name, p->name));
3662             if (p->is_mirror_output_port) {
3663                 enable = false;
3664             }
3665             if (enable != (stp_port_get_state(sp) != STP_DISABLED)) {
3666                 bridge_flush(br); /* Might not be necessary. */
3667                 if (enable) {
3668                     stp_port_enable(sp);
3669                 } else {
3670                     stp_port_disable(sp);
3671                 }
3672             }
3673
3674             path_cost = cfg_get_int(0, "stp.%s.port.%s.path-cost",
3675                                     br->name, p->name);
3676             stp_port_set_path_cost(sp, path_cost ? path_cost : 19 /* XXX */);
3677
3678             priority = (cfg_is_valid(CFG_INT | CFG_REQUIRED,
3679                                      "stp.%s.port.%s.priority",
3680                                      br->name, p->name)
3681                         ? cfg_get_int(0, "stp.%s.port.%s.priority",
3682                                       br->name, p->name)
3683                         : STP_DEFAULT_PORT_PRIORITY);
3684             stp_port_set_priority(sp, priority);
3685         }
3686
3687         brstp_adjust_timers(br);
3688     }
3689     for (i = 0; i < br->n_ports; i++) {
3690         brstp_update_port_state(br->ports[i]);
3691     }
3692 }
3693
3694 static void
3695 brstp_update_port_state(struct port *p)
3696 {
3697     struct bridge *br = p->bridge;
3698     enum stp_state state;
3699
3700     /* Figure out new state. */
3701     state = STP_DISABLED;
3702     if (br->stp && p->n_ifaces > 0) {
3703         int dp_ifidx = p->ifaces[0]->dp_ifidx;
3704         if (dp_ifidx >= 0 && dp_ifidx < STP_MAX_PORTS) {
3705             state = stp_port_get_state(stp_get_port(br->stp, dp_ifidx));
3706         }
3707     }
3708
3709     /* Update state. */
3710     if (p->stp_state != state) {
3711         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(10, 10);
3712         VLOG_INFO_RL(&rl, "port %s: STP state changed from %s to %s",
3713                      p->name, stp_state_name(p->stp_state),
3714                      stp_state_name(state));
3715         if (p->stp_state == STP_DISABLED) {
3716             bridge_flush(br);
3717         } else {
3718             ofproto_revalidate(p->bridge->ofproto, p->stp_state_tag);
3719         }
3720         p->stp_state = state;
3721         p->stp_state_tag = (p->stp_state == STP_DISABLED ? 0
3722                             : tag_create_random());
3723     }
3724 }
3725
3726 static void
3727 brstp_adjust_timers(struct bridge *br)
3728 {
3729     int hello_time = cfg_get_int(0, "stp.%s.hello-time", br->name);
3730     int max_age = cfg_get_int(0, "stp.%s.max-age", br->name);
3731     int forward_delay = cfg_get_int(0, "stp.%s.forward-delay", br->name);
3732
3733     stp_set_hello_time(br->stp, hello_time ? hello_time : 2000);
3734     stp_set_max_age(br->stp, max_age ? max_age : 20000);
3735     stp_set_forward_delay(br->stp, forward_delay ? forward_delay : 15000);
3736 }
3737
3738 static void
3739 brstp_run(struct bridge *br)
3740 {
3741     if (br->stp) {
3742         long long int now = time_msec();
3743         long long int elapsed = now - br->stp_last_tick;
3744         struct stp_port *sp;
3745
3746         if (elapsed > 0) {
3747             stp_tick(br->stp, MIN(INT_MAX, elapsed));
3748             br->stp_last_tick = now;
3749         }
3750         while (stp_get_changed_port(br->stp, &sp)) {
3751             struct port *p = port_from_dp_ifidx(br, stp_port_no(sp));
3752             if (p) {
3753                 brstp_update_port_state(p);
3754             }
3755         }
3756     }
3757 }
3758
3759 static void
3760 brstp_wait(struct bridge *br)
3761 {
3762     if (br->stp) {
3763         poll_timer_wait(1000);
3764     }
3765 }