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