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