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