2465cfb324dd2baaf293bb4ad0d7f10cd1df32dc
[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 COVERAGE_DEFINE(bridge_lacp_update);
80
81 struct dst {
82     uint16_t vlan;
83     uint16_t dp_ifidx;
84 };
85
86 struct dst_set {
87     struct dst builtin[32];
88     struct dst *dsts;
89     size_t n, allocated;
90 };
91
92 static void dst_set_init(struct dst_set *);
93 static void dst_set_add(struct dst_set *, const struct dst *);
94 static void dst_set_free(struct dst_set *);
95
96 enum lacp_status {
97     LACP_CURRENT   = 0x01, /* Current State. */
98     LACP_EXPIRED   = 0x02, /* Expired State. */
99     LACP_DEFAULTED = 0x04, /* Partner is defaulted. */
100     LACP_ATTACHED  = 0x08, /* Attached. Interface may be choosen for flows. */
101 };
102
103 struct iface {
104     /* These members are always valid. */
105     struct port *port;          /* Containing port. */
106     size_t port_ifidx;          /* Index within containing port. */
107     char *name;                 /* Host network device name. */
108     tag_type tag;               /* Tag associated with this interface. */
109     long long delay_expires;    /* Time after which 'enabled' may change. */
110
111     /* These members are valid only after bridge_reconfigure() causes them to
112      * be initialized. */
113     struct hmap_node dp_ifidx_node; /* In struct bridge's "ifaces" hmap. */
114     int dp_ifidx;               /* Index within kernel datapath. */
115     struct netdev *netdev;      /* Network device. */
116     bool enabled;               /* May be chosen for flows? */
117     bool up;                    /* Is the interface up? */
118     const char *type;           /* Usually same as cfg->type. */
119     struct cfm *cfm;            /* Connectivity Fault Management */
120     const struct ovsrec_interface *cfg;
121
122     /* LACP information. */
123     enum lacp_status lacp_status;  /* LACP status. */
124     uint16_t lacp_priority;        /* LACP port priority. */
125     struct lacp_info lacp_actor;   /* LACP actor information. */
126     struct lacp_info lacp_partner; /* LACP partner information. */
127     long long int lacp_tx;         /* Next LACP message transmission time. */
128     long long int lacp_rx;         /* Next LACP message receive time. */
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_status & 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_status & LACP_ATTACHED
2239             && (iface->lacp_partner.state & LACP_STATE_SYNC
2240                  || iface->lacp_status & LACP_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_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_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     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3133
3134     port->lacp_need_update = false;
3135     COVERAGE_INC(bridge_lacp_update);
3136
3137     if (!port->lacp) {
3138         return;
3139     }
3140
3141     VLOG_DBG_RL(&rl, "port %s: re-evaluating LACP link status", port->name);
3142
3143     lead = NULL;
3144     for (i = 0; i < port->n_ifaces; i++) {
3145         struct iface *iface = port->ifaces[i];
3146         struct lacp_info pri;
3147
3148         iface->lacp_status |= LACP_ATTACHED;
3149         ofproto_revalidate(port->bridge->ofproto, iface->tag);
3150
3151         /* Don't allow loopback interfaces to send traffic or lead. */
3152         if (eth_addr_equals(iface->lacp_partner.sysid,
3153                             iface->lacp_actor.sysid)) {
3154             VLOG_WARN_RL(&rl, "iface %s: Loopback detected. Interface is "
3155                          "connected to its own bridge", iface->name);
3156             iface->lacp_status &= ~LACP_ATTACHED;
3157             continue;
3158         }
3159
3160         if (iface->lacp_status & LACP_DEFAULTED) {
3161             continue;
3162         }
3163
3164         iface_get_lacp_priority(iface, &pri);
3165
3166         if (!lead || memcmp(&pri, &lead_pri, sizeof pri) < 0) {
3167             lead = iface;
3168             lead_pri = pri;
3169         }
3170     }
3171
3172     if (!lead) {
3173         port->lacp &= ~LACP_NEGOTIATED;
3174         return;
3175     }
3176
3177     port->lacp |= LACP_NEGOTIATED;
3178
3179     for (i = 0; i < port->n_ifaces; i++) {
3180         struct iface *iface = port->ifaces[i];
3181
3182         if (iface->lacp_status & LACP_DEFAULTED
3183             || lead->lacp_partner.key != iface->lacp_partner.key
3184             || !eth_addr_equals(lead->lacp_partner.sysid,
3185                                 iface->lacp_partner.sysid)) {
3186             iface->lacp_status &= ~LACP_ATTACHED;
3187         }
3188     }
3189 }
3190
3191 static bool
3192 lacp_iface_may_tx(const struct iface *iface)
3193 {
3194     return iface->port->lacp & LACP_ACTIVE
3195         || iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED);
3196 }
3197
3198 static void
3199 lacp_run(struct bridge *br)
3200 {
3201     size_t i, j;
3202     struct ofpbuf packet;
3203
3204     ofpbuf_init(&packet, ETH_HEADER_LEN + LACP_PDU_LEN);
3205
3206     for (i = 0; i < br->n_ports; i++) {
3207         struct port *port = br->ports[i];
3208
3209         if (!port->lacp) {
3210             continue;
3211         }
3212
3213         for (j = 0; j < port->n_ifaces; j++) {
3214             struct iface *iface = port->ifaces[j];
3215
3216             if (time_msec() > iface->lacp_rx) {
3217                 if (iface->lacp_status & LACP_CURRENT) {
3218                     iface_set_lacp_expired(iface);
3219                 } else if (iface->lacp_status & LACP_EXPIRED) {
3220                     iface_set_lacp_defaulted(iface);
3221                 }
3222             }
3223         }
3224
3225         if (port->lacp_need_update) {
3226             lacp_update_ifaces(port);
3227         }
3228
3229         for (j = 0; j < port->n_ifaces; j++) {
3230             struct iface *iface = port->ifaces[j];
3231             uint8_t ea[ETH_ADDR_LEN];
3232             int error;
3233
3234             if (time_msec() < iface->lacp_tx || !lacp_iface_may_tx(iface)) {
3235                 continue;
3236             }
3237
3238             error = netdev_get_etheraddr(iface->netdev, ea);
3239             if (!error) {
3240                 iface->lacp_actor.state = iface_get_lacp_state(iface);
3241                 compose_lacp_packet(&packet, &iface->lacp_actor,
3242                                     &iface->lacp_partner, ea);
3243                 iface_send_packet(iface, &packet);
3244             } else {
3245                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3246                 VLOG_ERR_RL(&rl, "iface %s: failed to obtain Ethernet address "
3247                             "(%s)", iface->name, strerror(error));
3248             }
3249
3250             iface->lacp_tx = time_msec() +
3251                 (iface->lacp_partner.state & LACP_STATE_TIME
3252                  ? LACP_FAST_TIME_TX
3253                  : LACP_SLOW_TIME_TX);
3254         }
3255     }
3256     ofpbuf_uninit(&packet);
3257 }
3258
3259 static void
3260 lacp_wait(struct bridge *br)
3261 {
3262     size_t i, j;
3263
3264     for (i = 0; i < br->n_ports; i++) {
3265         struct port *port = br->ports[i];
3266
3267         if (!port->lacp) {
3268             continue;
3269         }
3270
3271         for (j = 0; j < port->n_ifaces; j++) {
3272             struct iface *iface = port->ifaces[j];
3273
3274             if (lacp_iface_may_tx(iface)) {
3275                 poll_timer_wait_until(iface->lacp_tx);
3276             }
3277
3278             if (iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED)) {
3279                 poll_timer_wait_until(iface->lacp_rx);
3280             }
3281         }
3282     }
3283 }
3284 \f
3285 /* Bonding functions. */
3286
3287 /* Statistics for a single interface on a bonded port, used for load-based
3288  * bond rebalancing.  */
3289 struct slave_balance {
3290     struct iface *iface;        /* The interface. */
3291     uint64_t tx_bytes;          /* Sum of hashes[*]->tx_bytes. */
3292
3293     /* All the "bond_entry"s that are assigned to this interface, in order of
3294      * increasing tx_bytes. */
3295     struct bond_entry **hashes;
3296     size_t n_hashes;
3297 };
3298
3299 static const char *
3300 bond_mode_to_string(enum bond_mode bm) {
3301     static char *bm_slb = "balance-slb";
3302     static char *bm_ab  = "active-backup";
3303     static char *bm_tcp = "balance-tcp";
3304
3305     switch (bm) {
3306     case BM_SLB: return bm_slb;
3307     case BM_AB:  return bm_ab;
3308     case BM_TCP: return bm_tcp;
3309     }
3310
3311     NOT_REACHED();
3312     return NULL;
3313 }
3314
3315 /* Sorts pointers to pointers to bond_entries in ascending order by the
3316  * interface to which they are assigned, and within a single interface in
3317  * ascending order of bytes transmitted. */
3318 static int
3319 compare_bond_entries(const void *a_, const void *b_)
3320 {
3321     const struct bond_entry *const *ap = a_;
3322     const struct bond_entry *const *bp = b_;
3323     const struct bond_entry *a = *ap;
3324     const struct bond_entry *b = *bp;
3325     if (a->iface_idx != b->iface_idx) {
3326         return a->iface_idx > b->iface_idx ? 1 : -1;
3327     } else if (a->tx_bytes != b->tx_bytes) {
3328         return a->tx_bytes > b->tx_bytes ? 1 : -1;
3329     } else {
3330         return 0;
3331     }
3332 }
3333
3334 /* Sorts slave_balances so that enabled ports come first, and otherwise in
3335  * *descending* order by number of bytes transmitted. */
3336 static int
3337 compare_slave_balance(const void *a_, const void *b_)
3338 {
3339     const struct slave_balance *a = a_;
3340     const struct slave_balance *b = b_;
3341     if (a->iface->enabled != b->iface->enabled) {
3342         return a->iface->enabled ? -1 : 1;
3343     } else if (a->tx_bytes != b->tx_bytes) {
3344         return a->tx_bytes > b->tx_bytes ? -1 : 1;
3345     } else {
3346         return 0;
3347     }
3348 }
3349
3350 static void
3351 swap_bals(struct slave_balance *a, struct slave_balance *b)
3352 {
3353     struct slave_balance tmp = *a;
3354     *a = *b;
3355     *b = tmp;
3356 }
3357
3358 /* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
3359  * given that 'p' (and only 'p') might be in the wrong location.
3360  *
3361  * This function invalidates 'p', since it might now be in a different memory
3362  * location. */
3363 static void
3364 resort_bals(struct slave_balance *p,
3365             struct slave_balance bals[], size_t n_bals)
3366 {
3367     if (n_bals > 1) {
3368         for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
3369             swap_bals(p, p - 1);
3370         }
3371         for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
3372             swap_bals(p, p + 1);
3373         }
3374     }
3375 }
3376
3377 static void
3378 log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
3379 {
3380     if (VLOG_IS_DBG_ENABLED()) {
3381         struct ds ds = DS_EMPTY_INITIALIZER;
3382         const struct slave_balance *b;
3383
3384         for (b = bals; b < bals + n_bals; b++) {
3385             size_t i;
3386
3387             if (b > bals) {
3388                 ds_put_char(&ds, ',');
3389             }
3390             ds_put_format(&ds, " %s %"PRIu64"kB",
3391                           b->iface->name, b->tx_bytes / 1024);
3392
3393             if (!b->iface->enabled) {
3394                 ds_put_cstr(&ds, " (disabled)");
3395             }
3396             if (b->n_hashes > 0) {
3397                 ds_put_cstr(&ds, " (");
3398                 for (i = 0; i < b->n_hashes; i++) {
3399                     const struct bond_entry *e = b->hashes[i];
3400                     if (i > 0) {
3401                         ds_put_cstr(&ds, " + ");
3402                     }
3403                     ds_put_format(&ds, "h%td: %"PRIu64"kB",
3404                                   e - port->bond_hash, e->tx_bytes / 1024);
3405                 }
3406                 ds_put_cstr(&ds, ")");
3407             }
3408         }
3409         VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
3410         ds_destroy(&ds);
3411     }
3412 }
3413
3414 /* Shifts 'hash' from 'from' to 'to' within 'port'. */
3415 static void
3416 bond_shift_load(struct slave_balance *from, struct slave_balance *to,
3417                 int hash_idx)
3418 {
3419     struct bond_entry *hash = from->hashes[hash_idx];
3420     struct port *port = from->iface->port;
3421     uint64_t delta = hash->tx_bytes;
3422
3423     assert(port->bond_mode == BM_SLB);
3424
3425     VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
3426               "from %s to %s (now carrying %"PRIu64"kB and "
3427               "%"PRIu64"kB load, respectively)",
3428               port->name, delta / 1024, hash - port->bond_hash,
3429               from->iface->name, to->iface->name,
3430               (from->tx_bytes - delta) / 1024,
3431               (to->tx_bytes + delta) / 1024);
3432
3433     /* Delete element from from->hashes.
3434      *
3435      * We don't bother to add the element to to->hashes because not only would
3436      * it require more work, the only purpose it would be to allow that hash to
3437      * be migrated to another slave in this rebalancing run, and there is no
3438      * point in doing that.  */
3439     if (hash_idx == 0) {
3440         from->hashes++;
3441     } else {
3442         memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
3443                 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
3444     }
3445     from->n_hashes--;
3446
3447     /* Shift load away from 'from' to 'to'. */
3448     from->tx_bytes -= delta;
3449     to->tx_bytes += delta;
3450
3451     /* Arrange for flows to be revalidated. */
3452     ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
3453     hash->iface_idx = to->iface->port_ifidx;
3454     hash->iface_tag = tag_create_random();
3455 }
3456
3457 static void
3458 bond_rebalance_port(struct port *port)
3459 {
3460     struct slave_balance *bals;
3461     size_t n_bals;
3462     struct bond_entry *hashes[BOND_MASK + 1];
3463     struct slave_balance *b, *from, *to;
3464     struct bond_entry *e;
3465     size_t i;
3466
3467     assert(port->bond_mode != BM_AB);
3468
3469     /* Sets up 'bals' to describe each of the port's interfaces, sorted in
3470      * descending order of tx_bytes, so that bals[0] represents the most
3471      * heavily loaded slave and bals[n_bals - 1] represents the least heavily
3472      * loaded slave.
3473      *
3474      * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
3475      * array for each slave_balance structure, we sort our local array of
3476      * hashes in order by slave, so that all of the hashes for a given slave
3477      * become contiguous in memory, and then we point each 'hashes' members of
3478      * a slave_balance structure to the start of a contiguous group. */
3479     n_bals = port->n_ifaces;
3480     bals = xmalloc(n_bals * sizeof *bals);
3481     for (b = bals; b < &bals[n_bals]; b++) {
3482         b->iface = port->ifaces[b - bals];
3483         b->tx_bytes = 0;
3484         b->hashes = NULL;
3485         b->n_hashes = 0;
3486     }
3487     for (i = 0; i <= BOND_MASK; i++) {
3488         hashes[i] = &port->bond_hash[i];
3489     }
3490     qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
3491     for (i = 0; i <= BOND_MASK; i++) {
3492         e = hashes[i];
3493         if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3494             b = &bals[e->iface_idx];
3495             b->tx_bytes += e->tx_bytes;
3496             if (!b->hashes) {
3497                 b->hashes = &hashes[i];
3498             }
3499             b->n_hashes++;
3500         }
3501     }
3502     qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
3503     log_bals(bals, n_bals, port);
3504
3505     /* Discard slaves that aren't enabled (which were sorted to the back of the
3506      * array earlier). */
3507     while (!bals[n_bals - 1].iface->enabled) {
3508         n_bals--;
3509         if (!n_bals) {
3510             goto exit;
3511         }
3512     }
3513
3514     /* Shift load from the most-loaded slaves to the least-loaded slaves. */
3515     to = &bals[n_bals - 1];
3516     for (from = bals; from < to; ) {
3517         uint64_t overload = from->tx_bytes - to->tx_bytes;
3518         if (overload < to->tx_bytes >> 5 || overload < 100000) {
3519             /* The extra load on 'from' (and all less-loaded slaves), compared
3520              * to that of 'to' (the least-loaded slave), is less than ~3%, or
3521              * it is less than ~1Mbps.  No point in rebalancing. */
3522             break;
3523         } else if (from->n_hashes == 1) {
3524             /* 'from' only carries a single MAC hash, so we can't shift any
3525              * load away from it, even though we want to. */
3526             from++;
3527         } else {
3528             /* 'from' is carrying significantly more load than 'to', and that
3529              * load is split across at least two different hashes.  Pick a hash
3530              * to migrate to 'to' (the least-loaded slave), given that doing so
3531              * must decrease the ratio of the load on the two slaves by at
3532              * least 0.1.
3533              *
3534              * The sort order we use means that we prefer to shift away the
3535              * smallest hashes instead of the biggest ones.  There is little
3536              * reason behind this decision; we could use the opposite sort
3537              * order to shift away big hashes ahead of small ones. */
3538             bool order_swapped;
3539
3540             for (i = 0; i < from->n_hashes; i++) {
3541                 double old_ratio, new_ratio;
3542                 uint64_t delta = from->hashes[i]->tx_bytes;
3543
3544                 if (delta == 0 || from->tx_bytes - delta == 0) {
3545                     /* Pointless move. */
3546                     continue;
3547                 }
3548
3549                 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
3550
3551                 if (to->tx_bytes == 0) {
3552                     /* Nothing on the new slave, move it. */
3553                     break;
3554                 }
3555
3556                 old_ratio = (double)from->tx_bytes / to->tx_bytes;
3557                 new_ratio = (double)(from->tx_bytes - delta) /
3558                             (to->tx_bytes + delta);
3559
3560                 if (new_ratio == 0) {
3561                     /* Should already be covered but check to prevent division
3562                      * by zero. */
3563                     continue;
3564                 }
3565
3566                 if (new_ratio < 1) {
3567                     new_ratio = 1 / new_ratio;
3568                 }
3569
3570                 if (old_ratio - new_ratio > 0.1) {
3571                     /* Would decrease the ratio, move it. */
3572                     break;
3573                 }
3574             }
3575             if (i < from->n_hashes) {
3576                 bond_shift_load(from, to, i);
3577                 port->bond_compat_is_stale = true;
3578
3579                 /* If the result of the migration changed the relative order of
3580                  * 'from' and 'to' swap them back to maintain invariants. */
3581                 if (order_swapped) {
3582                     swap_bals(from, to);
3583                 }
3584
3585                 /* Re-sort 'bals'.  Note that this may make 'from' and 'to'
3586                  * point to different slave_balance structures.  It is only
3587                  * valid to do these two operations in a row at all because we
3588                  * know that 'from' will not move past 'to' and vice versa. */
3589                 resort_bals(from, bals, n_bals);
3590                 resort_bals(to, bals, n_bals);
3591             } else {
3592                 from++;
3593             }
3594         }
3595     }
3596
3597     /* Implement exponentially weighted moving average.  A weight of 1/2 causes
3598      * historical data to decay to <1% in 7 rebalancing runs.  */
3599     for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
3600         e->tx_bytes /= 2;
3601     }
3602
3603 exit:
3604     free(bals);
3605 }
3606
3607 static void
3608 bond_send_learning_packets(struct port *port)
3609 {
3610     struct bridge *br = port->bridge;
3611     struct mac_entry *e;
3612     struct ofpbuf packet;
3613     int error, n_packets, n_errors;
3614
3615     if (!port->n_ifaces || port->active_iface < 0 || bond_is_tcp_hash(port)) {
3616         return;
3617     }
3618
3619     ofpbuf_init(&packet, 128);
3620     error = n_packets = n_errors = 0;
3621     LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
3622         union ofp_action actions[2], *a;
3623         uint16_t dp_ifidx;
3624         tag_type tags = 0;
3625         struct flow flow;
3626         int retval;
3627
3628         if (e->port == port->port_idx) {
3629             continue;
3630         }
3631
3632         compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
3633                               e->mac);
3634         flow_extract(&packet, 0, ODPP_NONE, &flow);
3635
3636         if (!choose_output_iface(port, &flow, e->vlan, &dp_ifidx, &tags)) {
3637             continue;
3638         }
3639
3640         /* Compose actions. */
3641         memset(actions, 0, sizeof actions);
3642         a = actions;
3643         if (e->vlan) {
3644             a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
3645             a->vlan_vid.len = htons(sizeof *a);
3646             a->vlan_vid.vlan_vid = htons(e->vlan);
3647             a++;
3648         }
3649         a->output.type = htons(OFPAT_OUTPUT);
3650         a->output.len = htons(sizeof *a);
3651         a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
3652         a++;
3653
3654         /* Send packet. */
3655         n_packets++;
3656         retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
3657                                      &packet);
3658         if (retval) {
3659             error = retval;
3660             n_errors++;
3661         }
3662     }
3663     ofpbuf_uninit(&packet);
3664
3665     if (n_errors) {
3666         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3667         VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3668                      "packets, last error was: %s",
3669                      port->name, n_errors, n_packets, strerror(error));
3670     } else {
3671         VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3672                  port->name, n_packets);
3673     }
3674 }
3675 \f
3676 /* Bonding unixctl user interface functions. */
3677
3678 static void
3679 bond_unixctl_list(struct unixctl_conn *conn,
3680                   const char *args OVS_UNUSED, void *aux OVS_UNUSED)
3681 {
3682     struct ds ds = DS_EMPTY_INITIALIZER;
3683     const struct bridge *br;
3684
3685     ds_put_cstr(&ds, "bridge\tbond\ttype\tslaves\n");
3686
3687     LIST_FOR_EACH (br, node, &all_bridges) {
3688         size_t i;
3689
3690         for (i = 0; i < br->n_ports; i++) {
3691             const struct port *port = br->ports[i];
3692             if (port->n_ifaces > 1) {
3693                 size_t j;
3694
3695                 ds_put_format(&ds, "%s\t%s\t%s\t", br->name, port->name,
3696                               bond_mode_to_string(port->bond_mode));
3697                 for (j = 0; j < port->n_ifaces; j++) {
3698                     const struct iface *iface = port->ifaces[j];
3699                     if (j) {
3700                         ds_put_cstr(&ds, ", ");
3701                     }
3702                     ds_put_cstr(&ds, iface->name);
3703                 }
3704                 ds_put_char(&ds, '\n');
3705             }
3706         }
3707     }
3708     unixctl_command_reply(conn, 200, ds_cstr(&ds));
3709     ds_destroy(&ds);
3710 }
3711
3712 static struct port *
3713 bond_find(const char *name)
3714 {
3715     const struct bridge *br;
3716
3717     LIST_FOR_EACH (br, node, &all_bridges) {
3718         size_t i;
3719
3720         for (i = 0; i < br->n_ports; i++) {
3721             struct port *port = br->ports[i];
3722             if (!strcmp(port->name, name) && port->n_ifaces > 1) {
3723                 return port;
3724             }
3725         }
3726     }
3727     return NULL;
3728 }
3729
3730 static void
3731 ds_put_lacp_state(struct ds *ds, uint8_t state)
3732 {
3733     if (state & LACP_STATE_ACT) {
3734         ds_put_cstr(ds, "activity ");
3735     }
3736
3737     if (state & LACP_STATE_TIME) {
3738         ds_put_cstr(ds, "timeout ");
3739     }
3740
3741     if (state & LACP_STATE_AGG) {
3742         ds_put_cstr(ds, "aggregation ");
3743     }
3744
3745     if (state & LACP_STATE_SYNC) {
3746         ds_put_cstr(ds, "synchronized ");
3747     }
3748
3749     if (state & LACP_STATE_COL) {
3750         ds_put_cstr(ds, "collecting ");
3751     }
3752
3753     if (state & LACP_STATE_DIST) {
3754         ds_put_cstr(ds, "distributing ");
3755     }
3756
3757     if (state & LACP_STATE_DEF) {
3758         ds_put_cstr(ds, "defaulted ");
3759     }
3760
3761     if (state & LACP_STATE_EXP) {
3762         ds_put_cstr(ds, "expired ");
3763     }
3764 }
3765
3766 static void
3767 bond_unixctl_show(struct unixctl_conn *conn,
3768                   const char *args, void *aux OVS_UNUSED)
3769 {
3770     struct ds ds = DS_EMPTY_INITIALIZER;
3771     const struct port *port;
3772     size_t j;
3773
3774     port = bond_find(args);
3775     if (!port) {
3776         unixctl_command_reply(conn, 501, "no such bond");
3777         return;
3778     }
3779
3780     ds_put_format(&ds, "bond_mode: %s\n",
3781                   bond_mode_to_string(port->bond_mode));
3782
3783     if (port->lacp) {
3784         ds_put_format(&ds, "lacp: %s\n",
3785                       port->lacp & LACP_ACTIVE ? "active" : "passive");
3786     } else {
3787         ds_put_cstr(&ds, "lacp: off\n");
3788     }
3789
3790     if (port->bond_mode != BM_AB) {
3791         ds_put_format(&ds, "bond-hash-algorithm: %s\n",
3792                       bond_is_tcp_hash(port) ? "balance-tcp" : "balance-slb");
3793     }
3794
3795
3796     ds_put_format(&ds, "bond-detect-mode: %s\n",
3797                   port->miimon ? "miimon" : "carrier");
3798
3799     if (port->miimon) {
3800         ds_put_format(&ds, "bond-miimon-interval: %lld\n",
3801                       port->bond_miimon_interval);
3802     }
3803
3804     ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
3805     ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
3806
3807     if (port->bond_mode != BM_AB) {
3808         ds_put_format(&ds, "next rebalance: %lld ms\n",
3809                       port->bond_next_rebalance - time_msec());
3810     }
3811
3812     for (j = 0; j < port->n_ifaces; j++) {
3813         const struct iface *iface = port->ifaces[j];
3814         struct bond_entry *be;
3815         struct flow flow;
3816
3817         /* Basic info. */
3818         ds_put_format(&ds, "\nslave %s: %s\n",
3819                       iface->name, iface->enabled ? "enabled" : "disabled");
3820         if (j == port->active_iface) {
3821             ds_put_cstr(&ds, "\tactive slave\n");
3822         }
3823         if (iface->delay_expires != LLONG_MAX) {
3824             ds_put_format(&ds, "\t%s expires in %lld ms\n",
3825                           iface->enabled ? "downdelay" : "updelay",
3826                           iface->delay_expires - time_msec());
3827         }
3828
3829         if (port->lacp) {
3830             ds_put_cstr(&ds, "\tstatus: ");
3831
3832             if (iface->lacp_status & LACP_CURRENT) {
3833                 ds_put_cstr(&ds, "current ");
3834             }
3835
3836             if (iface->lacp_status & LACP_EXPIRED) {
3837                 ds_put_cstr(&ds, "expired ");
3838             }
3839
3840             if (iface->lacp_status & LACP_DEFAULTED) {
3841                 ds_put_cstr(&ds, "defaulted ");
3842             }
3843
3844             if (iface->lacp_status & LACP_ATTACHED) {
3845                 ds_put_cstr(&ds, "attached ");
3846             }
3847
3848             ds_put_cstr(&ds, "\n");
3849
3850             ds_put_cstr(&ds, "\n\tactor sysid: ");
3851             ds_put_format(&ds, ETH_ADDR_FMT,
3852                           ETH_ADDR_ARGS(iface->lacp_actor.sysid));
3853             ds_put_cstr(&ds, "\n");
3854
3855             ds_put_format(&ds, "\tactor sys_priority: %u\n",
3856                           ntohs(iface->lacp_actor.sys_priority));
3857
3858             ds_put_format(&ds, "\tactor portid: %u\n",
3859                           ntohs(iface->lacp_actor.portid));
3860
3861             ds_put_format(&ds, "\tactor port_priority: %u\n",
3862                           ntohs(iface->lacp_actor.port_priority));
3863
3864             ds_put_format(&ds, "\tactor key: %u\n",
3865                           ntohs(iface->lacp_actor.key));
3866
3867             ds_put_cstr(&ds, "\tactor state: ");
3868             ds_put_lacp_state(&ds, iface_get_lacp_state(iface));
3869             ds_put_cstr(&ds, "\n\n");
3870
3871             ds_put_cstr(&ds, "\tpartner sysid: ");
3872             ds_put_format(&ds, ETH_ADDR_FMT,
3873                           ETH_ADDR_ARGS(iface->lacp_partner.sysid));
3874             ds_put_cstr(&ds, "\n");
3875
3876             ds_put_format(&ds, "\tpartner sys_priority: %u\n",
3877                           ntohs(iface->lacp_partner.sys_priority));
3878
3879             ds_put_format(&ds, "\tpartner portid: %u\n",
3880                           ntohs(iface->lacp_partner.portid));
3881
3882             ds_put_format(&ds, "\tpartner port_priority: %u\n",
3883                           ntohs(iface->lacp_partner.port_priority));
3884
3885             ds_put_format(&ds, "\tpartner key: %u\n",
3886                           ntohs(iface->lacp_partner.key));
3887
3888             ds_put_cstr(&ds, "\tpartner state: ");
3889             ds_put_lacp_state(&ds, iface->lacp_partner.state);
3890             ds_put_cstr(&ds, "\n");
3891         }
3892
3893         if (port->bond_mode == BM_AB) {
3894             continue;
3895         }
3896
3897         /* Hashes. */
3898         memset(&flow, 0, sizeof flow);
3899         for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
3900             int hash = be - port->bond_hash;
3901             struct mac_entry *me;
3902
3903             if (be->iface_idx != j) {
3904                 continue;
3905             }
3906
3907             ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
3908                           hash, be->tx_bytes / 1024);
3909
3910             if (port->bond_mode != BM_SLB) {
3911                 continue;
3912             }
3913
3914             /* MACs. */
3915             LIST_FOR_EACH (me, lru_node, &port->bridge->ml->lrus) {
3916                 uint16_t dp_ifidx;
3917                 tag_type tags = 0;
3918
3919                 memcpy(flow.dl_src, me->mac, ETH_ADDR_LEN);
3920                 if (bond_hash_src(me->mac, me->vlan) == hash
3921                     && me->port != port->port_idx
3922                     && choose_output_iface(port, &flow, me->vlan,
3923                                            &dp_ifidx, &tags)
3924                     && dp_ifidx == iface->dp_ifidx)
3925                 {
3926                     ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3927                                   ETH_ADDR_ARGS(me->mac));
3928                 }
3929             }
3930         }
3931     }
3932     unixctl_command_reply(conn, 200, ds_cstr(&ds));
3933     ds_destroy(&ds);
3934 }
3935
3936 static void
3937 bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
3938                      void *aux OVS_UNUSED)
3939 {
3940     char *args = (char *) args_;
3941     char *save_ptr = NULL;
3942     char *bond_s, *hash_s, *slave_s;
3943     struct port *port;
3944     struct iface *iface;
3945     struct bond_entry *entry;
3946     int hash;
3947
3948     bond_s = strtok_r(args, " ", &save_ptr);
3949     hash_s = strtok_r(NULL, " ", &save_ptr);
3950     slave_s = strtok_r(NULL, " ", &save_ptr);
3951     if (!slave_s) {
3952         unixctl_command_reply(conn, 501,
3953                               "usage: bond/migrate BOND HASH SLAVE");
3954         return;
3955     }
3956
3957     port = bond_find(bond_s);
3958     if (!port) {
3959         unixctl_command_reply(conn, 501, "no such bond");
3960         return;
3961     }
3962
3963     if (port->bond_mode != BM_SLB) {
3964         unixctl_command_reply(conn, 501, "not an SLB bond");
3965         return;
3966     }
3967
3968     if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
3969         hash = atoi(hash_s) & BOND_MASK;
3970     } else {
3971         unixctl_command_reply(conn, 501, "bad hash");
3972         return;
3973     }
3974
3975     iface = port_lookup_iface(port, slave_s);
3976     if (!iface) {
3977         unixctl_command_reply(conn, 501, "no such slave");
3978         return;
3979     }
3980
3981     if (!iface->enabled) {
3982         unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3983         return;
3984     }
3985
3986     entry = &port->bond_hash[hash];
3987     ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3988     entry->iface_idx = iface->port_ifidx;
3989     entry->iface_tag = tag_create_random();
3990     port->bond_compat_is_stale = true;
3991     unixctl_command_reply(conn, 200, "migrated");
3992 }
3993
3994 static void
3995 bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
3996                               void *aux OVS_UNUSED)
3997 {
3998     char *args = (char *) args_;
3999     char *save_ptr = NULL;
4000     char *bond_s, *slave_s;
4001     struct port *port;
4002     struct iface *iface;
4003
4004     bond_s = strtok_r(args, " ", &save_ptr);
4005     slave_s = strtok_r(NULL, " ", &save_ptr);
4006     if (!slave_s) {
4007         unixctl_command_reply(conn, 501,
4008                               "usage: bond/set-active-slave BOND SLAVE");
4009         return;
4010     }
4011
4012     port = bond_find(bond_s);
4013     if (!port) {
4014         unixctl_command_reply(conn, 501, "no such bond");
4015         return;
4016     }
4017
4018     iface = port_lookup_iface(port, slave_s);
4019     if (!iface) {
4020         unixctl_command_reply(conn, 501, "no such slave");
4021         return;
4022     }
4023
4024     if (!iface->enabled) {
4025         unixctl_command_reply(conn, 501, "cannot make disabled slave active");
4026         return;
4027     }
4028
4029     if (port->active_iface != iface->port_ifidx) {
4030         ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4031         port->active_iface = iface->port_ifidx;
4032         port->active_iface_tag = tag_create_random();
4033         VLOG_INFO("port %s: active interface is now %s",
4034                   port->name, iface->name);
4035         bond_send_learning_packets(port);
4036         unixctl_command_reply(conn, 200, "done");
4037     } else {
4038         unixctl_command_reply(conn, 200, "no change");
4039     }
4040 }
4041
4042 static void
4043 enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
4044 {
4045     char *args = (char *) args_;
4046     char *save_ptr = NULL;
4047     char *bond_s, *slave_s;
4048     struct port *port;
4049     struct iface *iface;
4050
4051     bond_s = strtok_r(args, " ", &save_ptr);
4052     slave_s = strtok_r(NULL, " ", &save_ptr);
4053     if (!slave_s) {
4054         unixctl_command_reply(conn, 501,
4055                               "usage: bond/enable/disable-slave BOND SLAVE");
4056         return;
4057     }
4058
4059     port = bond_find(bond_s);
4060     if (!port) {
4061         unixctl_command_reply(conn, 501, "no such bond");
4062         return;
4063     }
4064
4065     iface = port_lookup_iface(port, slave_s);
4066     if (!iface) {
4067         unixctl_command_reply(conn, 501, "no such slave");
4068         return;
4069     }
4070
4071     bond_enable_slave(iface, enable);
4072     unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
4073 }
4074
4075 static void
4076 bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
4077                           void *aux OVS_UNUSED)
4078 {
4079     enable_slave(conn, args, true);
4080 }
4081
4082 static void
4083 bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
4084                            void *aux OVS_UNUSED)
4085 {
4086     enable_slave(conn, args, false);
4087 }
4088
4089 static void
4090 bond_unixctl_hash(struct unixctl_conn *conn, const char *args_,
4091                   void *aux OVS_UNUSED)
4092 {
4093     char *args = (char *) args_;
4094     uint8_t mac[ETH_ADDR_LEN];
4095     uint8_t hash;
4096     char *hash_cstr;
4097     unsigned int vlan;
4098     char *mac_s, *vlan_s;
4099     char *save_ptr = NULL;
4100
4101     mac_s  = strtok_r(args, " ", &save_ptr);
4102     vlan_s = strtok_r(NULL, " ", &save_ptr);
4103
4104     if (vlan_s) {
4105         if (sscanf(vlan_s, "%u", &vlan) != 1) {
4106             unixctl_command_reply(conn, 501, "invalid vlan");
4107             return;
4108         }
4109     } else {
4110         vlan = OFP_VLAN_NONE;
4111     }
4112
4113     if (sscanf(mac_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
4114         == ETH_ADDR_SCAN_COUNT) {
4115         hash = bond_hash_src(mac, vlan);
4116
4117         hash_cstr = xasprintf("%u", hash);
4118         unixctl_command_reply(conn, 200, hash_cstr);
4119         free(hash_cstr);
4120     } else {
4121         unixctl_command_reply(conn, 501, "invalid mac");
4122     }
4123 }
4124
4125 static void
4126 bond_init(void)
4127 {
4128     unixctl_command_register("bond/list", bond_unixctl_list, NULL);
4129     unixctl_command_register("bond/show", bond_unixctl_show, NULL);
4130     unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
4131     unixctl_command_register("bond/set-active-slave",
4132                              bond_unixctl_set_active_slave, NULL);
4133     unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
4134                              NULL);
4135     unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
4136                              NULL);
4137     unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
4138 }
4139 \f
4140 /* Port functions. */
4141
4142 static struct port *
4143 port_create(struct bridge *br, const char *name)
4144 {
4145     struct port *port;
4146
4147     port = xzalloc(sizeof *port);
4148     port->bridge = br;
4149     port->port_idx = br->n_ports;
4150     port->vlan = -1;
4151     port->trunks = NULL;
4152     port->name = xstrdup(name);
4153     port->active_iface = -1;
4154
4155     if (br->n_ports >= br->allocated_ports) {
4156         br->ports = x2nrealloc(br->ports, &br->allocated_ports,
4157                                sizeof *br->ports);
4158     }
4159     br->ports[br->n_ports++] = port;
4160     shash_add_assert(&br->port_by_name, port->name, port);
4161
4162     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
4163     bridge_flush(br);
4164
4165     return port;
4166 }
4167
4168 static const char *
4169 get_port_other_config(const struct ovsrec_port *port, const char *key,
4170                       const char *default_value)
4171 {
4172     const char *value;
4173
4174     value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
4175                                  key);
4176     return value ? value : default_value;
4177 }
4178
4179 static const char *
4180 get_interface_other_config(const struct ovsrec_interface *iface,
4181                            const char *key, const char *default_value)
4182 {
4183     const char *value;
4184
4185     value = get_ovsrec_key_value(&iface->header_,
4186                                  &ovsrec_interface_col_other_config, key);
4187     return value ? value : default_value;
4188 }
4189
4190 static void
4191 port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
4192 {
4193     struct shash new_ifaces;
4194     size_t i;
4195
4196     /* Collect list of new interfaces. */
4197     shash_init(&new_ifaces);
4198     for (i = 0; i < cfg->n_interfaces; i++) {
4199         const char *name = cfg->interfaces[i]->name;
4200         shash_add_once(&new_ifaces, name, NULL);
4201     }
4202
4203     /* Get rid of deleted interfaces. */
4204     for (i = 0; i < port->n_ifaces; ) {
4205         if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
4206             iface_destroy(port->ifaces[i]);
4207         } else {
4208             i++;
4209         }
4210     }
4211
4212     shash_destroy(&new_ifaces);
4213 }
4214
4215 static void
4216 port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
4217 {
4218     const char *detect_mode;
4219     struct shash new_ifaces;
4220     long long int next_rebalance, miimon_next_update, lacp_priority;
4221     unsigned long *trunks;
4222     int vlan;
4223     size_t i;
4224
4225     port->cfg = cfg;
4226
4227     /* Update settings. */
4228     port->updelay = cfg->bond_updelay;
4229     if (port->updelay < 0) {
4230         port->updelay = 0;
4231     }
4232     port->downdelay = cfg->bond_downdelay;
4233     if (port->downdelay < 0) {
4234         port->downdelay = 0;
4235     }
4236     port->bond_rebalance_interval = atoi(
4237         get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
4238     if (port->bond_rebalance_interval < 1000) {
4239         port->bond_rebalance_interval = 1000;
4240     }
4241     next_rebalance = time_msec() + port->bond_rebalance_interval;
4242     if (port->bond_next_rebalance > next_rebalance) {
4243         port->bond_next_rebalance = next_rebalance;
4244     }
4245
4246     detect_mode = get_port_other_config(cfg, "bond-detect-mode",
4247                                         "carrier");
4248
4249     if (!strcmp(detect_mode, "carrier")) {
4250         port->miimon = false;
4251     } else if (!strcmp(detect_mode, "miimon")) {
4252         port->miimon = true;
4253     } else {
4254         port->miimon = false;
4255         VLOG_WARN("port %s: unsupported bond-detect-mode %s, defaulting to "
4256                   "carrier", port->name, detect_mode);
4257     }
4258
4259     port->bond_miimon_interval = atoi(
4260         get_port_other_config(cfg, "bond-miimon-interval", "200"));
4261     if (port->bond_miimon_interval < 100) {
4262         port->bond_miimon_interval = 100;
4263     }
4264     miimon_next_update = time_msec() + port->bond_miimon_interval;
4265     if (port->bond_miimon_next_update > miimon_next_update) {
4266         port->bond_miimon_next_update = miimon_next_update;
4267     }
4268
4269     if (!port->cfg->bond_mode ||
4270         !strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_SLB))) {
4271         port->bond_mode = BM_SLB;
4272     } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_AB))) {
4273         port->bond_mode = BM_AB;
4274     } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_TCP))) {
4275         port->bond_mode = BM_TCP;
4276     } else {
4277         port->bond_mode = BM_SLB;
4278         VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
4279                   port->name, port->cfg->bond_mode,
4280                   bond_mode_to_string(port->bond_mode));
4281     }
4282
4283     /* Add new interfaces and update 'cfg' member of existing ones. */
4284     shash_init(&new_ifaces);
4285     for (i = 0; i < cfg->n_interfaces; i++) {
4286         const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
4287         struct iface *iface;
4288
4289         if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
4290             VLOG_WARN("port %s: %s specified twice as port interface",
4291                       port->name, if_cfg->name);
4292             iface_set_ofport(if_cfg, -1);
4293             continue;
4294         }
4295
4296         iface = iface_lookup(port->bridge, if_cfg->name);
4297         if (iface) {
4298             if (iface->port != port) {
4299                 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
4300                          "removing from %s",
4301                          port->bridge->name, if_cfg->name, iface->port->name);
4302                 continue;
4303             }
4304             iface->cfg = if_cfg;
4305         } else {
4306             iface = iface_create(port, if_cfg);
4307         }
4308
4309         /* Determine interface type.  The local port always has type
4310          * "internal".  Other ports take their type from the database and
4311          * default to "system" if none is specified. */
4312         iface->type = (!strcmp(if_cfg->name, port->bridge->name) ? "internal"
4313                        : if_cfg->type[0] ? if_cfg->type
4314                        : "system");
4315
4316         lacp_priority =
4317             atoi(get_interface_other_config(if_cfg, "lacp-port-priority",
4318                                             "0"));
4319
4320         if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4321             iface->lacp_priority = UINT16_MAX;
4322         } else {
4323             iface->lacp_priority = lacp_priority;
4324         }
4325     }
4326     shash_destroy(&new_ifaces);
4327
4328     lacp_priority =
4329         atoi(get_port_other_config(cfg, "lacp-system-priority", "0"));
4330
4331     if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4332         /* Prefer bondable links if unspecified. */
4333         port->lacp_priority = port->n_ifaces > 1 ? UINT16_MAX - 1 : UINT16_MAX;
4334     } else {
4335         port->lacp_priority = lacp_priority;
4336     }
4337
4338     if (!port->cfg->lacp) {
4339         /* XXX when LACP implementation has been sufficiently tested, enable by
4340          * default and make active on bonded ports. */
4341         port->lacp = 0;
4342     } else if (!strcmp(port->cfg->lacp, "off")) {
4343         port->lacp = 0;
4344     } else if (!strcmp(port->cfg->lacp, "active")) {
4345         port->lacp = LACP_ACTIVE;
4346     } else if (!strcmp(port->cfg->lacp, "passive")) {
4347         port->lacp = LACP_PASSIVE;
4348     } else {
4349         VLOG_WARN("port %s: unknown LACP mode %s",
4350                   port->name, port->cfg->lacp);
4351         port->lacp = 0;
4352     }
4353
4354     /* Get VLAN tag. */
4355     vlan = -1;
4356     if (cfg->tag) {
4357         if (port->n_ifaces < 2) {
4358             vlan = *cfg->tag;
4359             if (vlan >= 0 && vlan <= 4095) {
4360                 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
4361             } else {
4362                 vlan = -1;
4363             }
4364         } else {
4365             /* It's possible that bonded, VLAN-tagged ports make sense.  Maybe
4366              * they even work as-is.  But they have not been tested. */
4367             VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
4368                       port->name);
4369         }
4370     }
4371     if (port->vlan != vlan) {
4372         port->vlan = vlan;
4373         bridge_flush(port->bridge);
4374     }
4375
4376     /* Get trunked VLANs. */
4377     trunks = NULL;
4378     if (vlan < 0 && cfg->n_trunks) {
4379         size_t n_errors;
4380
4381         trunks = bitmap_allocate(4096);
4382         n_errors = 0;
4383         for (i = 0; i < cfg->n_trunks; i++) {
4384             int trunk = cfg->trunks[i];
4385             if (trunk >= 0) {
4386                 bitmap_set1(trunks, trunk);
4387             } else {
4388                 n_errors++;
4389             }
4390         }
4391         if (n_errors) {
4392             VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
4393                      port->name, cfg->n_trunks);
4394         }
4395         if (n_errors == cfg->n_trunks) {
4396             VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
4397                      port->name);
4398             bitmap_free(trunks);
4399             trunks = NULL;
4400         }
4401     } else if (vlan >= 0 && cfg->n_trunks) {
4402         VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
4403                  port->name);
4404     }
4405     if (trunks == NULL
4406         ? port->trunks != NULL
4407         : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
4408         bridge_flush(port->bridge);
4409     }
4410     bitmap_free(port->trunks);
4411     port->trunks = trunks;
4412 }
4413
4414 static void
4415 port_destroy(struct port *port)
4416 {
4417     if (port) {
4418         struct bridge *br = port->bridge;
4419         struct port *del;
4420         int i;
4421
4422         proc_net_compat_update_vlan(port->name, NULL, 0);
4423         proc_net_compat_update_bond(port->name, NULL);
4424
4425         for (i = 0; i < MAX_MIRRORS; i++) {
4426             struct mirror *m = br->mirrors[i];
4427             if (m && m->out_port == port) {
4428                 mirror_destroy(m);
4429             }
4430         }
4431
4432         while (port->n_ifaces > 0) {
4433             iface_destroy(port->ifaces[port->n_ifaces - 1]);
4434         }
4435
4436         shash_find_and_delete_assert(&br->port_by_name, port->name);
4437
4438         del = br->ports[port->port_idx] = br->ports[--br->n_ports];
4439         del->port_idx = port->port_idx;
4440
4441         VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
4442
4443         netdev_monitor_destroy(port->monitor);
4444         free(port->ifaces);
4445         bitmap_free(port->trunks);
4446         free(port->name);
4447         free(port);
4448         bridge_flush(br);
4449     }
4450 }
4451
4452 static struct port *
4453 port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4454 {
4455     struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
4456     return iface ? iface->port : NULL;
4457 }
4458
4459 static struct port *
4460 port_lookup(const struct bridge *br, const char *name)
4461 {
4462     return shash_find_data(&br->port_by_name, name);
4463 }
4464
4465 static struct iface *
4466 port_lookup_iface(const struct port *port, const char *name)
4467 {
4468     struct iface *iface = iface_lookup(port->bridge, name);
4469     return iface && iface->port == port ? iface : NULL;
4470 }
4471
4472 static void
4473 port_update_lacp(struct port *port)
4474 {
4475     size_t i;
4476     bool key_changed;
4477
4478     if (!port->lacp || port->n_ifaces < 1) {
4479         for (i = 0; i < port->n_ifaces; i++) {
4480             iface_set_lacp_defaulted(port->ifaces[i]);
4481         }
4482         return;
4483     }
4484
4485     key_changed = true;
4486     for (i = 0; i < port->n_ifaces; i++) {
4487         struct iface *iface = port->ifaces[i];
4488
4489         if (iface->dp_ifidx <= 0 || iface->dp_ifidx > UINT16_MAX) {
4490             port->lacp = 0;
4491             return;
4492         }
4493
4494         if (iface->dp_ifidx == port->lacp_key) {
4495             key_changed = false;
4496         }
4497     }
4498
4499     if (key_changed) {
4500         port->lacp_key = port->ifaces[0]->dp_ifidx;
4501     }
4502
4503     for (i = 0; i < port->n_ifaces; i++) {
4504         struct iface *iface = port->ifaces[i];
4505
4506         iface->lacp_actor.sys_priority = htons(port->lacp_priority);
4507         memcpy(&iface->lacp_actor.sysid, port->bridge->ea, ETH_ADDR_LEN);
4508
4509         iface->lacp_actor.port_priority = htons(iface->lacp_priority);
4510         iface->lacp_actor.portid = htons(iface->dp_ifidx);
4511         iface->lacp_actor.key = htons(port->lacp_key);
4512
4513         iface->lacp_tx = 0;
4514     }
4515     port->lacp_need_update = true;
4516 }
4517
4518 static void
4519 port_update_bonding(struct port *port)
4520 {
4521     if (port->monitor) {
4522         netdev_monitor_destroy(port->monitor);
4523         port->monitor = NULL;
4524     }
4525     if (port->n_ifaces < 2) {
4526         /* Not a bonded port. */
4527         if (port->bond_hash) {
4528             free(port->bond_hash);
4529             port->bond_hash = NULL;
4530             port->bond_compat_is_stale = true;
4531         }
4532
4533         port->bond_fake_iface = false;
4534     } else {
4535         size_t i;
4536
4537         if (port->bond_mode != BM_AB && !port->bond_hash) {
4538             port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
4539             for (i = 0; i <= BOND_MASK; i++) {
4540                 struct bond_entry *e = &port->bond_hash[i];
4541                 e->iface_idx = -1;
4542                 e->tx_bytes = 0;
4543             }
4544             port->no_ifaces_tag = tag_create_random();
4545             bond_choose_active_iface(port);
4546             port->bond_next_rebalance
4547                 = time_msec() + port->bond_rebalance_interval;
4548
4549             if (port->cfg->bond_fake_iface) {
4550                 port->bond_next_fake_iface_update = time_msec();
4551             }
4552         } else if (port->bond_mode == BM_AB) {
4553             free(port->bond_hash);
4554             port->bond_hash = NULL;
4555         }
4556         port->bond_compat_is_stale = true;
4557         port->bond_fake_iface = port->cfg->bond_fake_iface;
4558
4559         if (!port->miimon) {
4560             port->monitor = netdev_monitor_create();
4561             for (i = 0; i < port->n_ifaces; i++) {
4562                 netdev_monitor_add(port->monitor, port->ifaces[i]->netdev);
4563             }
4564         }
4565     }
4566 }
4567
4568 static void
4569 port_update_bond_compat(struct port *port)
4570 {
4571     struct compat_bond_hash compat_hashes[BOND_MASK + 1];
4572     struct compat_bond bond;
4573     size_t i;
4574
4575     if (port->n_ifaces < 2 || port->bond_mode != BM_SLB) {
4576         proc_net_compat_update_bond(port->name, NULL);
4577         return;
4578     }
4579
4580     bond.up = false;
4581     bond.updelay = port->updelay;
4582     bond.downdelay = port->downdelay;
4583
4584     bond.n_hashes = 0;
4585     bond.hashes = compat_hashes;
4586     if (port->bond_hash) {
4587         const struct bond_entry *e;
4588         for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
4589             if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
4590                 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
4591                 cbh->hash = e - port->bond_hash;
4592                 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
4593             }
4594         }
4595     }
4596
4597     bond.n_slaves = port->n_ifaces;
4598     bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
4599     for (i = 0; i < port->n_ifaces; i++) {
4600         struct iface *iface = port->ifaces[i];
4601         struct compat_bond_slave *slave = &bond.slaves[i];
4602         slave->name = iface->name;
4603
4604         /* We need to make the same determination as the Linux bonding
4605          * code to determine whether a slave should be consider "up".
4606          * The Linux function bond_miimon_inspect() supports four
4607          * BOND_LINK_* states:
4608          *
4609          *    - BOND_LINK_UP: carrier detected, updelay has passed.
4610          *    - BOND_LINK_FAIL: carrier lost, downdelay in progress.
4611          *    - BOND_LINK_DOWN: carrier lost, downdelay has passed.
4612          *    - BOND_LINK_BACK: carrier detected, updelay in progress.
4613          *
4614          * The function bond_info_show_slave() only considers BOND_LINK_UP
4615          * to be "up" and anything else to be "down".
4616          */
4617         slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
4618         if (slave->up) {
4619             bond.up = true;
4620         }
4621         netdev_get_etheraddr(iface->netdev, slave->mac);
4622     }
4623
4624     if (port->bond_fake_iface) {
4625         struct netdev *bond_netdev;
4626
4627         if (!netdev_open_default(port->name, &bond_netdev)) {
4628             if (bond.up) {
4629                 netdev_turn_flags_on(bond_netdev, NETDEV_UP, true);
4630             } else {
4631                 netdev_turn_flags_off(bond_netdev, NETDEV_UP, true);
4632             }
4633             netdev_close(bond_netdev);
4634         }
4635     }
4636
4637     proc_net_compat_update_bond(port->name, &bond);
4638     free(bond.slaves);
4639 }
4640
4641 static void
4642 port_update_vlan_compat(struct port *port)
4643 {
4644     struct bridge *br = port->bridge;
4645     char *vlandev_name = NULL;
4646
4647     if (port->vlan > 0) {
4648         /* Figure out the name that the VLAN device should actually have, if it
4649          * existed.  This takes some work because the VLAN device would not
4650          * have port->name in its name; rather, it would have the trunk port's
4651          * name, and 'port' would be attached to a bridge that also had the
4652          * VLAN device one of its ports.  So we need to find a trunk port that
4653          * includes port->vlan.
4654          *
4655          * There might be more than one candidate.  This doesn't happen on
4656          * XenServer, so if it happens we just pick the first choice in
4657          * alphabetical order instead of creating multiple VLAN devices. */
4658         size_t i;
4659         for (i = 0; i < br->n_ports; i++) {
4660             struct port *p = br->ports[i];
4661             if (port_trunks_vlan(p, port->vlan)
4662                 && p->n_ifaces
4663                 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
4664             {
4665                 uint8_t ea[ETH_ADDR_LEN];
4666                 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
4667                 if (!eth_addr_is_multicast(ea) &&
4668                     !eth_addr_is_reserved(ea) &&
4669                     !eth_addr_is_zero(ea)) {
4670                     vlandev_name = p->name;
4671                 }
4672             }
4673         }
4674     }
4675     proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
4676 }
4677 \f
4678 /* Interface functions. */
4679
4680 static void
4681 iface_set_lacp_defaulted(struct iface *iface)
4682 {
4683     memset(&iface->lacp_partner, 0, sizeof iface->lacp_partner);
4684
4685     iface->lacp_status = LACP_DEFAULTED;
4686     iface->lacp_tx = 0;
4687     iface->port->lacp_need_update = true;
4688 }
4689
4690 static void
4691 iface_set_lacp_expired(struct iface *iface)
4692 {
4693     iface->lacp_status &= ~LACP_CURRENT;
4694     iface->lacp_status |= LACP_EXPIRED;
4695     iface->lacp_partner.state |= LACP_STATE_TIME;
4696     iface->lacp_partner.state &= ~LACP_STATE_SYNC;
4697
4698     iface->lacp_rx = time_msec() + LACP_FAST_TIME_RX;
4699     iface->lacp_tx = 0;
4700 }
4701
4702 static uint8_t
4703 iface_get_lacp_state(const struct iface *iface)
4704 {
4705     uint8_t state = 0;
4706
4707     if (iface->port->lacp & LACP_ACTIVE) {
4708         state |= LACP_STATE_ACT;
4709     }
4710
4711     if (iface->lacp_status & LACP_ATTACHED) {
4712         state |= LACP_STATE_SYNC;
4713     }
4714
4715     if (iface->lacp_status & LACP_DEFAULTED) {
4716         state |= LACP_STATE_DEF;
4717     }
4718
4719     if (iface->lacp_status & LACP_EXPIRED) {
4720         state |= LACP_STATE_EXP;
4721     }
4722
4723     if (iface->port->n_ifaces > 1) {
4724         state |= LACP_STATE_AGG;
4725     }
4726
4727     if (iface->enabled) {
4728         state |= LACP_STATE_COL | LACP_STATE_DIST;
4729     }
4730
4731     return state;
4732 }
4733
4734 /* Given 'iface', populates 'priority' with data representing its LACP link
4735  * priority.  If two priority objects populated by this function are compared
4736  * using memcmp, the higher priority link will be less than the lower priority
4737  * link. */
4738 static void
4739 iface_get_lacp_priority(struct iface *iface, struct lacp_info *priority)
4740 {
4741     uint16_t partner_priority, actor_priority;
4742
4743     /* Choose the lacp_info of the higher priority system by comparing their
4744      * system priorities and mac addresses. */
4745     actor_priority   = ntohs(iface->lacp_actor.sys_priority);
4746     partner_priority = ntohs(iface->lacp_partner.sys_priority);
4747     if (actor_priority < partner_priority) {
4748         *priority = iface->lacp_actor;
4749     } else if (partner_priority < actor_priority) {
4750         *priority = iface->lacp_partner;
4751     } else if (eth_addr_compare_3way(iface->lacp_actor.sysid,
4752                                      iface->lacp_partner.sysid) < 0) {
4753         *priority = iface->lacp_actor;
4754     } else {
4755         *priority = iface->lacp_partner;
4756     }
4757
4758     /* Key and state are not used in priority comparisons. */
4759     priority->key = 0;
4760     priority->state = 0;
4761 }
4762
4763 static void
4764 iface_send_packet(struct iface *iface, struct ofpbuf *packet)
4765 {
4766     struct flow flow;
4767     union ofp_action action;
4768
4769     memset(&action, 0, sizeof action);
4770     action.output.type = htons(OFPAT_OUTPUT);
4771     action.output.len  = htons(sizeof action);
4772     action.output.port = htons(odp_port_to_ofp_port(iface->dp_ifidx));
4773
4774     flow_extract(packet, 0, ODPP_NONE, &flow);
4775
4776     if (ofproto_send_packet(iface->port->bridge->ofproto, &flow, &action, 1,
4777                             packet)) {
4778         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4779         VLOG_WARN_RL(&rl, "interface %s: Failed to send packet.", iface->name);
4780     }
4781 }
4782
4783 static struct iface *
4784 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
4785 {
4786     struct bridge *br = port->bridge;
4787     struct iface *iface;
4788     char *name = if_cfg->name;
4789
4790     iface = xzalloc(sizeof *iface);
4791     iface->port = port;
4792     iface->port_ifidx = port->n_ifaces;
4793     iface->name = xstrdup(name);
4794     iface->dp_ifidx = -1;
4795     iface->tag = tag_create_random();
4796     iface->delay_expires = LLONG_MAX;
4797     iface->netdev = NULL;
4798     iface->cfg = if_cfg;
4799     iface_set_lacp_defaulted(iface);
4800
4801     if (port->lacp & LACP_ACTIVE) {
4802         iface_set_lacp_expired(iface);
4803     }
4804
4805     shash_add_assert(&br->iface_by_name, iface->name, iface);
4806
4807     if (port->n_ifaces >= port->allocated_ifaces) {
4808         port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
4809                                   sizeof *port->ifaces);
4810     }
4811     port->ifaces[port->n_ifaces++] = iface;
4812     if (port->n_ifaces > 1) {
4813         br->has_bonded_ports = true;
4814     }
4815
4816     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
4817
4818     bridge_flush(br);
4819
4820     return iface;
4821 }
4822
4823 static void
4824 iface_destroy(struct iface *iface)
4825 {
4826     if (iface) {
4827         struct port *port = iface->port;
4828         struct bridge *br = port->bridge;
4829         bool del_active = port->active_iface == iface->port_ifidx;
4830         struct iface *del;
4831
4832         if (port->monitor) {
4833             netdev_monitor_remove(port->monitor, iface->netdev);
4834         }
4835
4836         shash_find_and_delete_assert(&br->iface_by_name, iface->name);
4837
4838         if (iface->dp_ifidx >= 0) {
4839             hmap_remove(&br->ifaces, &iface->dp_ifidx_node);
4840         }
4841
4842         del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
4843         del->port_ifidx = iface->port_ifidx;
4844
4845         netdev_close(iface->netdev);
4846
4847         if (del_active) {
4848             ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4849             bond_choose_active_iface(port);
4850             bond_send_learning_packets(port);
4851         }
4852
4853         cfm_destroy(iface->cfm);
4854
4855         free(iface->name);
4856         free(iface);
4857
4858         bridge_flush(port->bridge);
4859     }
4860 }
4861
4862 static struct iface *
4863 iface_lookup(const struct bridge *br, const char *name)
4864 {
4865     return shash_find_data(&br->iface_by_name, name);
4866 }
4867
4868 static struct iface *
4869 iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4870 {
4871     struct iface *iface;
4872
4873     HMAP_FOR_EACH_IN_BUCKET (iface, dp_ifidx_node,
4874                              hash_int(dp_ifidx, 0), &br->ifaces) {
4875         if (iface->dp_ifidx == dp_ifidx) {
4876             return iface;
4877         }
4878     }
4879     return NULL;
4880 }
4881
4882 /* Set Ethernet address of 'iface', if one is specified in the configuration
4883  * file. */
4884 static void
4885 iface_set_mac(struct iface *iface)
4886 {
4887     uint8_t ea[ETH_ADDR_LEN];
4888
4889     if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
4890         if (eth_addr_is_multicast(ea)) {
4891             VLOG_ERR("interface %s: cannot set MAC to multicast address",
4892                      iface->name);
4893         } else if (iface->dp_ifidx == ODPP_LOCAL) {
4894             VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
4895                      iface->name, iface->name);
4896         } else {
4897             int error = netdev_set_etheraddr(iface->netdev, ea);
4898             if (error) {
4899                 VLOG_ERR("interface %s: setting MAC failed (%s)",
4900                          iface->name, strerror(error));
4901             }
4902         }
4903     }
4904 }
4905
4906 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
4907 static void
4908 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
4909 {
4910     if (if_cfg) {
4911         ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
4912     }
4913 }
4914
4915 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
4916  *
4917  * The value strings in '*shash' are taken directly from values[], not copied,
4918  * so the caller should not modify or free them. */
4919 static void
4920 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
4921                        struct shash *shash)
4922 {
4923     size_t i;
4924
4925     shash_init(shash);
4926     for (i = 0; i < n; i++) {
4927         shash_add(shash, keys[i], values[i]);
4928     }
4929 }
4930
4931 /* Creates 'keys' and 'values' arrays from 'shash'.
4932  *
4933  * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
4934  * pairs in 'shash'.  The caller takes ownership of 'keys' and 'values'.  They
4935  * are populated with with strings taken directly from 'shash' and thus have
4936  * the same ownership of the key-value pairs in shash.
4937  */
4938 static void
4939 shash_to_ovs_idl_map(struct shash *shash,
4940                      char ***keys, char ***values, size_t *n)
4941 {
4942     size_t i, count;
4943     char **k, **v;
4944     struct shash_node *sn;
4945
4946     count = shash_count(shash);
4947
4948     k = xmalloc(count * sizeof *k);
4949     v = xmalloc(count * sizeof *v);
4950
4951     i = 0;
4952     SHASH_FOR_EACH(sn, shash) {
4953         k[i] = sn->name;
4954         v[i] = sn->data;
4955         i++;
4956     }
4957
4958     *n      = count;
4959     *keys   = k;
4960     *values = v;
4961 }
4962
4963 struct iface_delete_queues_cbdata {
4964     struct netdev *netdev;
4965     const struct ovsdb_datum *queues;
4966 };
4967
4968 static bool
4969 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
4970 {
4971     union ovsdb_atom atom;
4972
4973     atom.integer = target;
4974     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
4975 }
4976
4977 static void
4978 iface_delete_queues(unsigned int queue_id,
4979                     const struct shash *details OVS_UNUSED, void *cbdata_)
4980 {
4981     struct iface_delete_queues_cbdata *cbdata = cbdata_;
4982
4983     if (!queue_ids_include(cbdata->queues, queue_id)) {
4984         netdev_delete_queue(cbdata->netdev, queue_id);
4985     }
4986 }
4987
4988 static void
4989 iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
4990 {
4991     if (!qos || qos->type[0] == '\0') {
4992         netdev_set_qos(iface->netdev, NULL, NULL);
4993     } else {
4994         struct iface_delete_queues_cbdata cbdata;
4995         struct shash details;
4996         size_t i;
4997
4998         /* Configure top-level Qos for 'iface'. */
4999         shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
5000                                qos->n_other_config, &details);
5001         netdev_set_qos(iface->netdev, qos->type, &details);
5002         shash_destroy(&details);
5003
5004         /* Deconfigure queues that were deleted. */
5005         cbdata.netdev = iface->netdev;
5006         cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
5007                                               OVSDB_TYPE_UUID);
5008         netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
5009
5010         /* Configure queues for 'iface'. */
5011         for (i = 0; i < qos->n_queues; i++) {
5012             const struct ovsrec_queue *queue = qos->value_queues[i];
5013             unsigned int queue_id = qos->key_queues[i];
5014
5015             shash_from_ovs_idl_map(queue->key_other_config,
5016                                    queue->value_other_config,
5017                                    queue->n_other_config, &details);
5018             netdev_set_queue(iface->netdev, queue_id, &details);
5019             shash_destroy(&details);
5020         }
5021     }
5022 }
5023
5024 static void
5025 iface_update_cfm(struct iface *iface)
5026 {
5027     size_t i;
5028     struct cfm *cfm;
5029     uint16_t *remote_mps;
5030     struct ovsrec_monitor *mon;
5031     uint8_t ea[ETH_ADDR_LEN], maid[CCM_MAID_LEN];
5032
5033     mon = iface->cfg->monitor;
5034
5035     if (!mon) {
5036         cfm_destroy(iface->cfm);
5037         iface->cfm = NULL;
5038         return;
5039     }
5040
5041     if (netdev_get_etheraddr(iface->netdev, ea)) {
5042         VLOG_WARN("interface %s: Failed to get ethernet address. "
5043                   "Skipping Monitor.", iface->name);
5044         return;
5045     }
5046
5047     if (!cfm_generate_maid(mon->md_name, mon->ma_name, maid)) {
5048         VLOG_WARN("interface %s: Failed to generate MAID.", iface->name);
5049         return;
5050     }
5051
5052     if (!iface->cfm) {
5053         iface->cfm = cfm_create();
5054     }
5055
5056     cfm           = iface->cfm;
5057     cfm->mpid     = mon->mpid;
5058     cfm->interval = mon->interval ? *mon->interval : 1000;
5059
5060     memcpy(cfm->eth_src, ea, sizeof cfm->eth_src);
5061     memcpy(cfm->maid, maid, sizeof cfm->maid);
5062
5063     remote_mps = xzalloc(mon->n_remote_mps * sizeof *remote_mps);
5064     for(i = 0; i < mon->n_remote_mps; i++) {
5065         remote_mps[i] = mon->remote_mps[i]->mpid;
5066     }
5067     cfm_update_remote_mps(cfm, remote_mps, mon->n_remote_mps);
5068     free(remote_mps);
5069
5070     if (!cfm_configure(iface->cfm)) {
5071         cfm_destroy(iface->cfm);
5072         iface->cfm = NULL;
5073     }
5074 }
5075 \f
5076 /* Port mirroring. */
5077
5078 static struct mirror *
5079 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
5080 {
5081     int i;
5082
5083     for (i = 0; i < MAX_MIRRORS; i++) {
5084         struct mirror *m = br->mirrors[i];
5085         if (m && uuid_equals(uuid, &m->uuid)) {
5086             return m;
5087         }
5088     }
5089     return NULL;
5090 }
5091
5092 static void
5093 mirror_reconfigure(struct bridge *br)
5094 {
5095     unsigned long *rspan_vlans;
5096     int i;
5097
5098     /* Get rid of deleted mirrors. */
5099     for (i = 0; i < MAX_MIRRORS; i++) {
5100         struct mirror *m = br->mirrors[i];
5101         if (m) {
5102             const struct ovsdb_datum *mc;
5103             union ovsdb_atom atom;
5104
5105             mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
5106             atom.uuid = br->mirrors[i]->uuid;
5107             if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
5108                 mirror_destroy(m);
5109             }
5110         }
5111     }
5112
5113     /* Add new mirrors and reconfigure existing ones. */
5114     for (i = 0; i < br->cfg->n_mirrors; i++) {
5115         struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
5116         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
5117         if (m) {
5118             mirror_reconfigure_one(m, cfg);
5119         } else {
5120             mirror_create(br, cfg);
5121         }
5122     }
5123
5124     /* Update port reserved status. */
5125     for (i = 0; i < br->n_ports; i++) {
5126         br->ports[i]->is_mirror_output_port = false;
5127     }
5128     for (i = 0; i < MAX_MIRRORS; i++) {
5129         struct mirror *m = br->mirrors[i];
5130         if (m && m->out_port) {
5131             m->out_port->is_mirror_output_port = true;
5132         }
5133     }
5134
5135     /* Update flooded vlans (for RSPAN). */
5136     rspan_vlans = NULL;
5137     if (br->cfg->n_flood_vlans) {
5138         rspan_vlans = bitmap_allocate(4096);
5139
5140         for (i = 0; i < br->cfg->n_flood_vlans; i++) {
5141             int64_t vlan = br->cfg->flood_vlans[i];
5142             if (vlan >= 0 && vlan < 4096) {
5143                 bitmap_set1(rspan_vlans, vlan);
5144                 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
5145                           br->name, vlan);
5146             } else {
5147                 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
5148                          br->name, vlan);
5149             }
5150         }
5151     }
5152     if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
5153         bridge_flush(br);
5154     }
5155 }
5156
5157 static void
5158 mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
5159 {
5160     struct mirror *m;
5161     size_t i;
5162
5163     for (i = 0; ; i++) {
5164         if (i >= MAX_MIRRORS) {
5165             VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
5166                       "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
5167             return;
5168         }
5169         if (!br->mirrors[i]) {
5170             break;
5171         }
5172     }
5173
5174     VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
5175     bridge_flush(br);
5176
5177     br->mirrors[i] = m = xzalloc(sizeof *m);
5178     m->bridge = br;
5179     m->idx = i;
5180     m->name = xstrdup(cfg->name);
5181     shash_init(&m->src_ports);
5182     shash_init(&m->dst_ports);
5183     m->vlans = NULL;
5184     m->n_vlans = 0;
5185     m->out_vlan = -1;
5186     m->out_port = NULL;
5187
5188     mirror_reconfigure_one(m, cfg);
5189 }
5190
5191 static void
5192 mirror_destroy(struct mirror *m)
5193 {
5194     if (m) {
5195         struct bridge *br = m->bridge;
5196         size_t i;
5197
5198         for (i = 0; i < br->n_ports; i++) {
5199             br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5200             br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5201         }
5202
5203         shash_destroy(&m->src_ports);
5204         shash_destroy(&m->dst_ports);
5205         free(m->vlans);
5206
5207         m->bridge->mirrors[m->idx] = NULL;
5208         free(m->name);
5209         free(m);
5210
5211         bridge_flush(br);
5212     }
5213 }
5214
5215 static void
5216 mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
5217                      struct shash *names)
5218 {
5219     size_t i;
5220
5221     for (i = 0; i < n_ports; i++) {
5222         const char *name = ports[i]->name;
5223         if (port_lookup(m->bridge, name)) {
5224             shash_add_once(names, name, NULL);
5225         } else {
5226             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
5227                       "port %s", m->bridge->name, m->name, name);
5228         }
5229     }
5230 }
5231
5232 static size_t
5233 mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
5234                      int **vlans)
5235 {
5236     size_t n_vlans;
5237     size_t i;
5238
5239     *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
5240     n_vlans = 0;
5241     for (i = 0; i < cfg->n_select_vlan; i++) {
5242         int64_t vlan = cfg->select_vlan[i];
5243         if (vlan < 0 || vlan > 4095) {
5244             VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
5245                       m->bridge->name, m->name, vlan);
5246         } else {
5247             (*vlans)[n_vlans++] = vlan;
5248         }
5249     }
5250     return n_vlans;
5251 }
5252
5253 static bool
5254 vlan_is_mirrored(const struct mirror *m, int vlan)
5255 {
5256     size_t i;
5257
5258     for (i = 0; i < m->n_vlans; i++) {
5259         if (m->vlans[i] == vlan) {
5260             return true;
5261         }
5262     }
5263     return false;
5264 }
5265
5266 static bool
5267 port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
5268 {
5269     size_t i;
5270
5271     for (i = 0; i < m->n_vlans; i++) {
5272         if (port_trunks_vlan(p, m->vlans[i])) {
5273             return true;
5274         }
5275     }
5276     return false;
5277 }
5278
5279 static void
5280 mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
5281 {
5282     struct shash src_ports, dst_ports;
5283     mirror_mask_t mirror_bit;
5284     struct port *out_port;
5285     int out_vlan;
5286     size_t n_vlans;
5287     int *vlans;
5288     size_t i;
5289
5290     /* Set name. */
5291     if (strcmp(cfg->name, m->name)) {
5292         free(m->name);
5293         m->name = xstrdup(cfg->name);
5294     }
5295
5296     /* Get output port. */
5297     if (cfg->output_port) {
5298         out_port = port_lookup(m->bridge, cfg->output_port->name);
5299         if (!out_port) {
5300             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
5301                      m->bridge->name, m->name);
5302             mirror_destroy(m);
5303             return;
5304         }
5305         out_vlan = -1;
5306
5307         if (cfg->output_vlan) {
5308             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
5309                      "output vlan; ignoring output vlan",
5310                      m->bridge->name, m->name);
5311         }
5312     } else if (cfg->output_vlan) {
5313         out_port = NULL;
5314         out_vlan = *cfg->output_vlan;
5315     } else {
5316         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
5317                  m->bridge->name, m->name);
5318         mirror_destroy(m);
5319         return;
5320     }
5321
5322     shash_init(&src_ports);
5323     shash_init(&dst_ports);
5324     if (cfg->select_all) {
5325         for (i = 0; i < m->bridge->n_ports; i++) {
5326             const char *name = m->bridge->ports[i]->name;
5327             shash_add_once(&src_ports, name, NULL);
5328             shash_add_once(&dst_ports, name, NULL);
5329         }
5330         vlans = NULL;
5331         n_vlans = 0;
5332     } else {
5333         /* Get ports, and drop duplicates and ports that don't exist. */
5334         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
5335                              &src_ports);
5336         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
5337                              &dst_ports);
5338
5339         /* Get all the vlans, and drop duplicate and invalid vlans. */
5340         n_vlans = mirror_collect_vlans(m, cfg, &vlans);
5341     }
5342
5343     /* Update mirror data. */
5344     if (!shash_equal_keys(&m->src_ports, &src_ports)
5345         || !shash_equal_keys(&m->dst_ports, &dst_ports)
5346         || m->n_vlans != n_vlans
5347         || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
5348         || m->out_port != out_port
5349         || m->out_vlan != out_vlan) {
5350         bridge_flush(m->bridge);
5351     }
5352     shash_swap(&m->src_ports, &src_ports);
5353     shash_swap(&m->dst_ports, &dst_ports);
5354     free(m->vlans);
5355     m->vlans = vlans;
5356     m->n_vlans = n_vlans;
5357     m->out_port = out_port;
5358     m->out_vlan = out_vlan;
5359
5360     /* Update ports. */
5361     mirror_bit = MIRROR_MASK_C(1) << m->idx;
5362     for (i = 0; i < m->bridge->n_ports; i++) {
5363         struct port *port = m->bridge->ports[i];
5364
5365         if (shash_find(&m->src_ports, port->name)
5366             || (m->n_vlans
5367                 && (!port->vlan
5368                     ? port_trunks_any_mirrored_vlan(m, port)
5369                     : vlan_is_mirrored(m, port->vlan)))) {
5370             port->src_mirrors |= mirror_bit;
5371         } else {
5372             port->src_mirrors &= ~mirror_bit;
5373         }
5374
5375         if (shash_find(&m->dst_ports, port->name)) {
5376             port->dst_mirrors |= mirror_bit;
5377         } else {
5378             port->dst_mirrors &= ~mirror_bit;
5379         }
5380     }
5381
5382     /* Clean up. */
5383     shash_destroy(&src_ports);
5384     shash_destroy(&dst_ports);
5385 }