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