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