Implement a new port setting "other-config:priority-tags".
[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 <assert.h>
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <stdlib.h>
22 #include "bitmap.h"
23 #include "bond.h"
24 #include "cfm.h"
25 #include "coverage.h"
26 #include "daemon.h"
27 #include "dirs.h"
28 #include "dynamic-string.h"
29 #include "hash.h"
30 #include "hmap.h"
31 #include "jsonrpc.h"
32 #include "lacp.h"
33 #include "list.h"
34 #include "netdev.h"
35 #include "ofp-print.h"
36 #include "ofpbuf.h"
37 #include "ofproto/ofproto.h"
38 #include "poll-loop.h"
39 #include "sha1.h"
40 #include "shash.h"
41 #include "socket-util.h"
42 #include "stream-ssl.h"
43 #include "sset.h"
44 #include "system-stats.h"
45 #include "timeval.h"
46 #include "util.h"
47 #include "unixctl.h"
48 #include "vswitchd/vswitch-idl.h"
49 #include "xenserver.h"
50 #include "vlog.h"
51 #include "sflow_api.h"
52 #include "vlan-bitmap.h"
53
54 VLOG_DEFINE_THIS_MODULE(bridge);
55
56 COVERAGE_DEFINE(bridge_reconfigure);
57
58 struct iface {
59     /* These members are always valid. */
60     struct list port_elem;      /* Element in struct port's "ifaces" list. */
61     struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
62     struct port *port;          /* Containing port. */
63     char *name;                 /* Host network device name. */
64     tag_type tag;               /* Tag associated with this interface. */
65
66     /* These members are valid only after bridge_reconfigure() causes them to
67      * be initialized. */
68     struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */
69     int ofp_port;               /* OpenFlow port number, -1 if unknown. */
70     struct netdev *netdev;      /* Network device. */
71     const char *type;           /* Usually same as cfg->type. */
72     const struct ovsrec_interface *cfg;
73 };
74
75 struct mirror {
76     struct uuid uuid;           /* UUID of this "mirror" record in database. */
77     struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */
78     struct bridge *bridge;
79     char *name;
80 };
81
82 struct port {
83     struct bridge *bridge;
84     struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */
85     char *name;
86
87     const struct ovsrec_port *cfg;
88
89     /* An ordinary bridge port has 1 interface.
90      * A bridge port for bonding has at least 2 interfaces. */
91     struct list ifaces;         /* List of "struct iface"s. */
92 };
93
94 struct bridge {
95     struct hmap_node node;      /* In 'all_bridges'. */
96     char *name;                 /* User-specified arbitrary name. */
97     char *type;                 /* Datapath type. */
98     uint8_t ea[ETH_ADDR_LEN];   /* Bridge Ethernet Address. */
99     uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
100     const struct ovsrec_bridge *cfg;
101
102     /* OpenFlow switch processing. */
103     struct ofproto *ofproto;    /* OpenFlow switch. */
104
105     /* Bridge ports. */
106     struct hmap ports;          /* "struct port"s indexed by name. */
107     struct hmap ifaces;         /* "struct iface"s indexed by ofp_port. */
108     struct hmap iface_by_name;  /* "struct iface"s indexed by name. */
109
110     /* Port mirroring. */
111     struct hmap mirrors;        /* "struct mirror" indexed by UUID. */
112
113     /* Synthetic local port if necessary. */
114     struct ovsrec_port synth_local_port;
115     struct ovsrec_interface synth_local_iface;
116     struct ovsrec_interface *synth_local_ifacep;
117 };
118
119 /* All bridges, indexed by name. */
120 static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges);
121
122 /* OVSDB IDL used to obtain configuration. */
123 static struct ovsdb_idl *idl;
124
125 /* Each time this timer expires, the bridge fetches systems and interface
126  * statistics and pushes them into the database. */
127 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
128 static long long int stats_timer = LLONG_MIN;
129
130 /* Stores the time after which rate limited statistics may be written to the
131  * database.  Only updated when changes to the database require rate limiting.
132  */
133 #define DB_LIMIT_INTERVAL (1 * 1000) /* In milliseconds. */
134 static long long int db_limiter = LLONG_MIN;
135
136 static void add_del_bridges(const struct ovsrec_open_vswitch *);
137 static void bridge_del_ofprotos(void);
138 static bool bridge_add_ofprotos(struct bridge *);
139 static void bridge_create(const struct ovsrec_bridge *);
140 static void bridge_destroy(struct bridge *);
141 static struct bridge *bridge_lookup(const char *name);
142 static unixctl_cb_func bridge_unixctl_dump_flows;
143 static unixctl_cb_func bridge_unixctl_reconnect;
144 static size_t bridge_get_controllers(const struct bridge *br,
145                                      struct ovsrec_controller ***controllersp);
146 static void bridge_add_del_ports(struct bridge *);
147 static void bridge_add_ofproto_ports(struct bridge *);
148 static void bridge_del_ofproto_ports(struct bridge *);
149 static void bridge_refresh_ofp_port(struct bridge *);
150 static void bridge_configure_datapath_id(struct bridge *);
151 static void bridge_configure_flow_eviction_threshold(struct bridge *);
152 static void bridge_configure_netflow(struct bridge *);
153 static void bridge_configure_forward_bpdu(struct bridge *);
154 static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number);
155 static void bridge_configure_stp(struct bridge *);
156 static void bridge_configure_remotes(struct bridge *,
157                                      const struct sockaddr_in *managers,
158                                      size_t n_managers);
159 static void bridge_pick_local_hw_addr(struct bridge *,
160                                       uint8_t ea[ETH_ADDR_LEN],
161                                       struct iface **hw_addr_iface);
162 static uint64_t bridge_pick_datapath_id(struct bridge *,
163                                         const uint8_t bridge_ea[ETH_ADDR_LEN],
164                                         struct iface *hw_addr_iface);
165 static const char *bridge_get_other_config(const struct ovsrec_bridge *,
166                                             const char *key);
167 static const char *get_port_other_config(const struct ovsrec_port *,
168                                          const char *key,
169                                          const char *default_value);
170 static uint64_t dpid_from_hash(const void *, size_t nbytes);
171 static bool bridge_has_bond_fake_iface(const struct bridge *,
172                                        const char *name);
173 static bool port_is_bond_fake_iface(const struct port *);
174
175 static unixctl_cb_func qos_unixctl_show;
176
177 static struct port *port_create(struct bridge *, const struct ovsrec_port *);
178 static void port_add_ifaces(struct port *);
179 static void port_del_ifaces(struct port *);
180 static void port_destroy(struct port *);
181 static struct port *port_lookup(const struct bridge *, const char *name);
182 static void port_configure(struct port *);
183 static struct lacp_settings *port_configure_lacp(struct port *,
184                                                  struct lacp_settings *);
185 static void port_configure_bond(struct port *, struct bond_settings *,
186                                 uint32_t *bond_stable_ids);
187 static bool port_is_synthetic(const struct port *);
188
189 static void bridge_configure_mirrors(struct bridge *);
190 static struct mirror *mirror_create(struct bridge *,
191                                     const struct ovsrec_mirror *);
192 static void mirror_destroy(struct mirror *);
193 static bool mirror_configure(struct mirror *, const struct ovsrec_mirror *);
194
195 static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *);
196 static struct iface *iface_create(struct port *port,
197                                   const struct ovsrec_interface *if_cfg);
198 static void iface_destroy(struct iface *);
199 static struct iface *iface_lookup(const struct bridge *, const char *name);
200 static struct iface *iface_find(const char *name);
201 static struct iface *iface_from_ofp_port(const struct bridge *,
202                                          uint16_t ofp_port);
203 static void iface_set_mac(struct iface *);
204 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
205 static void iface_clear_db_record(const struct ovsrec_interface *if_cfg);
206 static void iface_configure_qos(struct iface *, const struct ovsrec_qos *);
207 static void iface_configure_cfm(struct iface *);
208 static void iface_refresh_cfm_stats(struct iface *);
209 static void iface_refresh_stats(struct iface *);
210 static void iface_refresh_status(struct iface *);
211 static bool iface_is_synthetic(const struct iface *);
212
213 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
214                                    struct shash *);
215 static void shash_to_ovs_idl_map(struct shash *,
216                                  char ***keys, char ***values, size_t *n);
217 \f
218 /* Public functions. */
219
220 /* Initializes the bridge module, configuring it to obtain its configuration
221  * from an OVSDB server accessed over 'remote', which should be a string in a
222  * form acceptable to ovsdb_idl_create(). */
223 void
224 bridge_init(const char *remote)
225 {
226     /* Create connection to database. */
227     idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
228     ovsdb_idl_set_lock(idl, "ovs_vswitchd");
229
230     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
231     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
232     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
233     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version);
234     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version);
235     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type);
236     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version);
237
238     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id);
239     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_status);
240     ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
241
242     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_status);
243     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_statistics);
244     ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
245     ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
246
247     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state);
248     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex);
249     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed);
250     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state);
251     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_resets);
252     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu);
253     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
254     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
255     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status);
256     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault);
257     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_mpids);
258     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_lacp_current);
259     ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
260
261     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected);
262     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role);
263     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status);
264     ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids);
265
266     ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids);
267
268     ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids);
269
270     ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids);
271
272     ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids);
273
274     ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids);
275
276     ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids);
277     ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe);
278     ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected);
279     ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff);
280     ovsdb_idl_omit(idl, &ovsrec_manager_col_status);
281
282     ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids);
283
284     /* Register unixctl commands. */
285     unixctl_command_register("qos/show", "interface", qos_unixctl_show, NULL);
286     unixctl_command_register("bridge/dump-flows", "bridge",
287                              bridge_unixctl_dump_flows, NULL);
288     unixctl_command_register("bridge/reconnect", "[bridge]",
289                              bridge_unixctl_reconnect, NULL);
290     lacp_init();
291     bond_init();
292     cfm_init();
293 }
294
295 void
296 bridge_exit(void)
297 {
298     struct bridge *br, *next_br;
299
300     HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
301         bridge_destroy(br);
302     }
303     ovsdb_idl_destroy(idl);
304 }
305
306 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
307  * addresses and ports into '*managersp' and '*n_managersp'.  The caller is
308  * responsible for freeing '*managersp' (with free()).
309  *
310  * You may be asking yourself "why does ovs-vswitchd care?", because
311  * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
312  * should not be and in fact is not directly involved in that.  But
313  * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
314  * it has to tell in-band control where the managers are to enable that.
315  * (Thus, only managers connected in-band are collected.)
316  */
317 static void
318 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
319                          struct sockaddr_in **managersp, size_t *n_managersp)
320 {
321     struct sockaddr_in *managers = NULL;
322     size_t n_managers = 0;
323     struct sset targets;
324     size_t i;
325
326     /* Collect all of the potential targets from the "targets" columns of the
327      * rows pointed to by "manager_options", excluding any that are
328      * out-of-band. */
329     sset_init(&targets);
330     for (i = 0; i < ovs_cfg->n_manager_options; i++) {
331         struct ovsrec_manager *m = ovs_cfg->manager_options[i];
332
333         if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
334             sset_find_and_delete(&targets, m->target);
335         } else {
336             sset_add(&targets, m->target);
337         }
338     }
339
340     /* Now extract the targets' IP addresses. */
341     if (!sset_is_empty(&targets)) {
342         const char *target;
343
344         managers = xmalloc(sset_count(&targets) * sizeof *managers);
345         SSET_FOR_EACH (target, &targets) {
346             struct sockaddr_in *sin = &managers[n_managers];
347
348             if ((!strncmp(target, "tcp:", 4)
349                  && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
350                 (!strncmp(target, "ssl:", 4)
351                  && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
352                 n_managers++;
353             }
354         }
355     }
356     sset_destroy(&targets);
357
358     *managersp = managers;
359     *n_managersp = n_managers;
360 }
361
362 static void
363 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
364 {
365     struct sockaddr_in *managers;
366     struct bridge *br, *next;
367     int sflow_bridge_number;
368     size_t n_managers;
369
370     COVERAGE_INC(bridge_reconfigure);
371
372     /* Create and destroy "struct bridge"s, "struct port"s, and "struct
373      * iface"s according to 'ovs_cfg', with only very minimal configuration
374      * otherwise.
375      *
376      * This is purely an update to bridge data structures.  Nothing is pushed
377      * down to ofproto or lower layers. */
378     add_del_bridges(ovs_cfg);
379     HMAP_FOR_EACH (br, node, &all_bridges) {
380         bridge_add_del_ports(br);
381     }
382
383     /* Delete all datapaths and datapath ports that are no longer configured.
384      *
385      * The kernel will reject any attempt to add a given port to a datapath if
386      * that port already belongs to a different datapath, so we must do all
387      * port deletions before any port additions.  A datapath always has a
388      * "local port" so we must delete not-configured datapaths too. */
389     bridge_del_ofprotos();
390     HMAP_FOR_EACH (br, node, &all_bridges) {
391         if (br->ofproto) {
392             bridge_del_ofproto_ports(br);
393         }
394     }
395
396     /* Create datapaths and datapath ports that are missing.
397      *
398      * After this is done, we have our final set of bridges, ports, and
399      * interfaces.  Every "struct bridge" has an ofproto, every "struct port"
400      * has at least one iface, every "struct iface" has a valid ofp_port and
401      * netdev. */
402     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
403         if (!br->ofproto && !bridge_add_ofprotos(br)) {
404             bridge_destroy(br);
405         }
406     }
407     HMAP_FOR_EACH (br, node, &all_bridges) {
408         bridge_refresh_ofp_port(br);
409         bridge_add_ofproto_ports(br);
410     }
411
412     /* Complete the configuration. */
413     sflow_bridge_number = 0;
414     collect_in_band_managers(ovs_cfg, &managers, &n_managers);
415     HMAP_FOR_EACH (br, node, &all_bridges) {
416         struct port *port;
417
418         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
419             struct iface *iface;
420
421             port_configure(port);
422
423             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
424                 iface_configure_cfm(iface);
425                 iface_configure_qos(iface, port->cfg->qos);
426                 iface_set_mac(iface);
427             }
428         }
429         bridge_configure_mirrors(br);
430         bridge_configure_datapath_id(br);
431         bridge_configure_flow_eviction_threshold(br);
432         bridge_configure_forward_bpdu(br);
433         bridge_configure_remotes(br, managers, n_managers);
434         bridge_configure_netflow(br);
435         bridge_configure_sflow(br, &sflow_bridge_number);
436         bridge_configure_stp(br);
437     }
438     free(managers);
439
440     /* ovs-vswitchd has completed initialization, so allow the process that
441      * forked us to exit successfully. */
442     daemonize_complete();
443 }
444
445 /* Iterate over all ofprotos and delete any of them that do not have a
446  * configured bridge or that are the wrong type. */
447 static void
448 bridge_del_ofprotos(void)
449 {
450     struct sset names;
451     struct sset types;
452     const char *type;
453
454     sset_init(&names);
455     sset_init(&types);
456     ofproto_enumerate_types(&types);
457     SSET_FOR_EACH (type, &types) {
458         const char *name;
459
460         ofproto_enumerate_names(type, &names);
461         SSET_FOR_EACH (name, &names) {
462             struct bridge *br = bridge_lookup(name);
463             if (!br || strcmp(type, br->type)) {
464                 ofproto_delete(name, type);
465             }
466         }
467     }
468     sset_destroy(&names);
469     sset_destroy(&types);
470 }
471
472 static bool
473 bridge_add_ofprotos(struct bridge *br)
474 {
475     int error = ofproto_create(br->name, br->type, &br->ofproto);
476     if (error) {
477         VLOG_ERR("failed to create bridge %s: %s", br->name, strerror(error));
478         return false;
479     }
480     return true;
481 }
482
483 static void
484 port_configure(struct port *port)
485 {
486     const struct ovsrec_port *cfg = port->cfg;
487     struct bond_settings bond_settings;
488     struct lacp_settings lacp_settings;
489     struct ofproto_bundle_settings s;
490     struct iface *iface;
491
492     /* Get name. */
493     s.name = port->name;
494
495     /* Get slaves. */
496     s.n_slaves = 0;
497     s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves);
498     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
499         s.slaves[s.n_slaves++] = iface->ofp_port;
500     }
501
502     /* Get VLAN tag. */
503     s.vlan = -1;
504     if (cfg->tag) {
505         if (list_is_short(&port->ifaces)) {
506             if (*cfg->tag >= 0 && *cfg->tag <= 4095) {
507                 s.vlan = *cfg->tag;
508             }
509         } else {
510             /* It's possible that bonded, VLAN-tagged ports make sense.  Maybe
511              * they even work as-is.  But they have not been tested. */
512             VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
513                       port->name);
514         }
515     }
516
517     /* Get VLAN trunks. */
518     s.trunks = NULL;
519     if (cfg->n_trunks) {
520         s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks);
521     }
522
523     /* Get VLAN mode. */
524     if (cfg->vlan_mode) {
525         if (!strcmp(cfg->vlan_mode, "access")) {
526             s.vlan_mode = PORT_VLAN_ACCESS;
527         } else if (!strcmp(cfg->vlan_mode, "trunk")) {
528             s.vlan_mode = PORT_VLAN_TRUNK;
529         } else if (!strcmp(cfg->vlan_mode, "native-tagged")) {
530             s.vlan_mode = PORT_VLAN_NATIVE_TAGGED;
531         } else if (!strcmp(cfg->vlan_mode, "native-untagged")) {
532             s.vlan_mode = PORT_VLAN_NATIVE_UNTAGGED;
533         } else {
534             /* This "can't happen" because ovsdb-server should prevent it. */
535             VLOG_ERR("unknown VLAN mode %s", cfg->vlan_mode);
536             s.vlan_mode = PORT_VLAN_TRUNK;
537         }
538     } else {
539         if (s.vlan >= 0) {
540             s.vlan_mode = PORT_VLAN_ACCESS;
541             if (cfg->n_trunks) {
542                 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
543                          port->name);
544             }
545         } else {
546             s.vlan_mode = PORT_VLAN_TRUNK;
547         }
548     }
549     s.use_priority_tags = !strcmp("true", get_port_other_config(
550                                       cfg, "priority-tags", ""));
551
552     /* Get LACP settings. */
553     s.lacp = port_configure_lacp(port, &lacp_settings);
554     if (s.lacp) {
555         size_t i = 0;
556
557         s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves);
558         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
559             iface_configure_lacp(iface, &s.lacp_slaves[i++]);
560         }
561     } else {
562         s.lacp_slaves = NULL;
563     }
564
565     /* Get bond settings. */
566     if (s.n_slaves > 1) {
567         s.bond = &bond_settings;
568         s.bond_stable_ids = xmalloc(s.n_slaves * sizeof *s.bond_stable_ids);
569         port_configure_bond(port, &bond_settings, s.bond_stable_ids);
570     } else {
571         s.bond = NULL;
572         s.bond_stable_ids = NULL;
573
574         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
575             netdev_set_miimon_interval(iface->netdev, 0);
576         }
577     }
578
579     /* Register. */
580     ofproto_bundle_register(port->bridge->ofproto, port, &s);
581
582     /* Clean up. */
583     free(s.slaves);
584     free(s.trunks);
585     free(s.lacp_slaves);
586     free(s.bond_stable_ids);
587 }
588
589 /* Pick local port hardware address and datapath ID for 'br'. */
590 static void
591 bridge_configure_datapath_id(struct bridge *br)
592 {
593     uint8_t ea[ETH_ADDR_LEN];
594     uint64_t dpid;
595     struct iface *local_iface;
596     struct iface *hw_addr_iface;
597     char *dpid_string;
598
599     bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
600     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
601     if (local_iface) {
602         int error = netdev_set_etheraddr(local_iface->netdev, ea);
603         if (error) {
604             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
605             VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
606                         "Ethernet address: %s",
607                         br->name, strerror(error));
608         }
609     }
610     memcpy(br->ea, ea, ETH_ADDR_LEN);
611
612     dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
613     ofproto_set_datapath_id(br->ofproto, dpid);
614
615     dpid_string = xasprintf("%016"PRIx64, dpid);
616     ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
617     free(dpid_string);
618 }
619
620 /* Set NetFlow configuration on 'br'. */
621 static void
622 bridge_configure_netflow(struct bridge *br)
623 {
624     struct ovsrec_netflow *cfg = br->cfg->netflow;
625     struct netflow_options opts;
626
627     if (!cfg) {
628         ofproto_set_netflow(br->ofproto, NULL);
629         return;
630     }
631
632     memset(&opts, 0, sizeof opts);
633
634     /* Get default NetFlow configuration from datapath.
635      * Apply overrides from 'cfg'. */
636     ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id);
637     if (cfg->engine_type) {
638         opts.engine_type = *cfg->engine_type;
639     }
640     if (cfg->engine_id) {
641         opts.engine_id = *cfg->engine_id;
642     }
643
644     /* Configure active timeout interval. */
645     opts.active_timeout = cfg->active_timeout;
646     if (!opts.active_timeout) {
647         opts.active_timeout = -1;
648     } else if (opts.active_timeout < 0) {
649         VLOG_WARN("bridge %s: active timeout interval set to negative "
650                   "value, using default instead (%d seconds)", br->name,
651                   NF_ACTIVE_TIMEOUT_DEFAULT);
652         opts.active_timeout = -1;
653     }
654
655     /* Add engine ID to interface number to disambiguate bridgs? */
656     opts.add_id_to_iface = cfg->add_id_to_interface;
657     if (opts.add_id_to_iface) {
658         if (opts.engine_id > 0x7f) {
659             VLOG_WARN("bridge %s: NetFlow port mangling may conflict with "
660                       "another vswitch, choose an engine id less than 128",
661                       br->name);
662         }
663         if (hmap_count(&br->ports) > 508) {
664             VLOG_WARN("bridge %s: NetFlow port mangling will conflict with "
665                       "another port when more than 508 ports are used",
666                       br->name);
667         }
668     }
669
670     /* Collectors. */
671     sset_init(&opts.collectors);
672     sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets);
673
674     /* Configure. */
675     if (ofproto_set_netflow(br->ofproto, &opts)) {
676         VLOG_ERR("bridge %s: problem setting netflow collectors", br->name);
677     }
678     sset_destroy(&opts.collectors);
679 }
680
681 /* Set sFlow configuration on 'br'. */
682 static void
683 bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number)
684 {
685     const struct ovsrec_sflow *cfg = br->cfg->sflow;
686     struct ovsrec_controller **controllers;
687     struct ofproto_sflow_options oso;
688     size_t n_controllers;
689     size_t i;
690
691     if (!cfg) {
692         ofproto_set_sflow(br->ofproto, NULL);
693         return;
694     }
695
696     memset(&oso, 0, sizeof oso);
697
698     sset_init(&oso.targets);
699     sset_add_array(&oso.targets, cfg->targets, cfg->n_targets);
700
701     oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
702     if (cfg->sampling) {
703         oso.sampling_rate = *cfg->sampling;
704     }
705
706     oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
707     if (cfg->polling) {
708         oso.polling_interval = *cfg->polling;
709     }
710
711     oso.header_len = SFL_DEFAULT_HEADER_SIZE;
712     if (cfg->header) {
713         oso.header_len = *cfg->header;
714     }
715
716     oso.sub_id = (*sflow_bridge_number)++;
717     oso.agent_device = cfg->agent;
718
719     oso.control_ip = NULL;
720     n_controllers = bridge_get_controllers(br, &controllers);
721     for (i = 0; i < n_controllers; i++) {
722         if (controllers[i]->local_ip) {
723             oso.control_ip = controllers[i]->local_ip;
724             break;
725         }
726     }
727     ofproto_set_sflow(br->ofproto, &oso);
728
729     sset_destroy(&oso.targets);
730 }
731
732 static void
733 port_configure_stp(const struct ofproto *ofproto, struct port *port,
734                    struct ofproto_port_stp_settings *port_s,
735                    int *port_num_counter, unsigned long *port_num_bitmap)
736 {
737     const char *config_str;
738     struct iface *iface;
739
740     config_str = get_port_other_config(port->cfg, "stp-enable", NULL);
741     if (config_str && !strcmp(config_str, "false")) {
742         port_s->enable = false;
743         return;
744     } else {
745         port_s->enable = true;
746     }
747
748     /* STP over bonds is not supported. */
749     if (!list_is_singleton(&port->ifaces)) {
750         VLOG_ERR("port %s: cannot enable STP on bonds, disabling",
751                  port->name);
752         port_s->enable = false;
753         return;
754     }
755
756     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
757
758     /* Internal ports shouldn't participate in spanning tree, so
759      * skip them. */
760     if (!strcmp(iface->type, "internal")) {
761         VLOG_DBG("port %s: disable STP on internal ports", port->name);
762         port_s->enable = false;
763         return;
764     }
765
766     /* STP on mirror output ports is not supported. */
767     if (ofproto_is_mirror_output_bundle(ofproto, port)) {
768         VLOG_DBG("port %s: disable STP on mirror ports", port->name);
769         port_s->enable = false;
770         return;
771     }
772
773     config_str = get_port_other_config(port->cfg, "stp-port-num", NULL);
774     if (config_str) {
775         unsigned long int port_num = strtoul(config_str, NULL, 0);
776         int port_idx = port_num - 1;
777
778         if (port_num < 1 || port_num > STP_MAX_PORTS) {
779             VLOG_ERR("port %s: invalid stp-port-num", port->name);
780             port_s->enable = false;
781             return;
782         }
783
784         if (bitmap_is_set(port_num_bitmap, port_idx)) {
785             VLOG_ERR("port %s: duplicate stp-port-num %lu, disabling",
786                     port->name, port_num);
787             port_s->enable = false;
788             return;
789         }
790         bitmap_set1(port_num_bitmap, port_idx);
791         port_s->port_num = port_idx;
792     } else {
793         if (*port_num_counter > STP_MAX_PORTS) {
794             VLOG_ERR("port %s: too many STP ports, disabling", port->name);
795             port_s->enable = false;
796             return;
797         }
798
799         port_s->port_num = (*port_num_counter)++;
800     }
801
802     config_str = get_port_other_config(port->cfg, "stp-path-cost", NULL);
803     if (config_str) {
804         port_s->path_cost = strtoul(config_str, NULL, 10);
805     } else {
806         uint32_t current;
807
808         if (netdev_get_features(iface->netdev, &current, NULL, NULL, NULL)) {
809             /* Couldn't get speed, so assume 100Mb/s. */
810             port_s->path_cost = 19;
811         } else {
812             unsigned int mbps;
813
814             mbps = netdev_features_to_bps(current) / 1000000;
815             port_s->path_cost = stp_convert_speed_to_cost(mbps);
816         }
817     }
818
819     config_str = get_port_other_config(port->cfg, "stp-port-priority", NULL);
820     if (config_str) {
821         port_s->priority = strtoul(config_str, NULL, 0);
822     } else {
823         port_s->priority = STP_DEFAULT_PORT_PRIORITY;
824     }
825 }
826
827 /* Set spanning tree configuration on 'br'. */
828 static void
829 bridge_configure_stp(struct bridge *br)
830 {
831     if (!br->cfg->stp_enable) {
832         ofproto_set_stp(br->ofproto, NULL);
833     } else {
834         struct ofproto_stp_settings br_s;
835         const char *config_str;
836         struct port *port;
837         int port_num_counter;
838         unsigned long *port_num_bitmap;
839
840         config_str = bridge_get_other_config(br->cfg, "stp-system-id");
841         if (config_str) {
842             uint8_t ea[ETH_ADDR_LEN];
843
844             if (eth_addr_from_string(config_str, ea)) {
845                 br_s.system_id = eth_addr_to_uint64(ea);
846             } else {
847                 br_s.system_id = eth_addr_to_uint64(br->ea);
848                 VLOG_ERR("bridge %s: invalid stp-system-id, defaulting "
849                          "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea));
850             }
851         } else {
852             br_s.system_id = eth_addr_to_uint64(br->ea);
853         }
854
855         config_str = bridge_get_other_config(br->cfg, "stp-priority");
856         if (config_str) {
857             br_s.priority = strtoul(config_str, NULL, 0);
858         } else {
859             br_s.priority = STP_DEFAULT_BRIDGE_PRIORITY;
860         }
861
862         config_str = bridge_get_other_config(br->cfg, "stp-hello-time");
863         if (config_str) {
864             br_s.hello_time = strtoul(config_str, NULL, 10) * 1000;
865         } else {
866             br_s.hello_time = STP_DEFAULT_HELLO_TIME;
867         }
868
869         config_str = bridge_get_other_config(br->cfg, "stp-max-age");
870         if (config_str) {
871             br_s.max_age = strtoul(config_str, NULL, 10) * 1000;
872         } else {
873             br_s.max_age = STP_DEFAULT_MAX_AGE;
874         }
875
876         config_str = bridge_get_other_config(br->cfg, "stp-forward-delay");
877         if (config_str) {
878             br_s.fwd_delay = strtoul(config_str, NULL, 10) * 1000;
879         } else {
880             br_s.fwd_delay = STP_DEFAULT_FWD_DELAY;
881         }
882
883         /* Configure STP on the bridge. */
884         if (ofproto_set_stp(br->ofproto, &br_s)) {
885             VLOG_ERR("bridge %s: could not enable STP", br->name);
886             return;
887         }
888
889         /* Users must either set the port number with the "stp-port-num"
890          * configuration on all ports or none.  If manual configuration
891          * is not done, then we allocate them sequentially. */
892         port_num_counter = 0;
893         port_num_bitmap = bitmap_allocate(STP_MAX_PORTS);
894         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
895             struct ofproto_port_stp_settings port_s;
896             struct iface *iface;
897
898             port_configure_stp(br->ofproto, port, &port_s,
899                                &port_num_counter, port_num_bitmap);
900
901             /* As bonds are not supported, just apply configuration to
902              * all interfaces. */
903             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
904                 if (ofproto_port_set_stp(br->ofproto, iface->ofp_port,
905                                          &port_s)) {
906                     VLOG_ERR("port %s: could not enable STP", port->name);
907                     continue;
908                 }
909             }
910         }
911
912         if (bitmap_scan(port_num_bitmap, 0, STP_MAX_PORTS) != STP_MAX_PORTS
913                     && port_num_counter) {
914             VLOG_ERR("bridge %s: must manually configure all STP port "
915                      "IDs or none, disabling", br->name);
916             ofproto_set_stp(br->ofproto, NULL);
917         }
918         bitmap_free(port_num_bitmap);
919     }
920 }
921
922 static bool
923 bridge_has_bond_fake_iface(const struct bridge *br, const char *name)
924 {
925     const struct port *port = port_lookup(br, name);
926     return port && port_is_bond_fake_iface(port);
927 }
928
929 static bool
930 port_is_bond_fake_iface(const struct port *port)
931 {
932     return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces);
933 }
934
935 static void
936 add_del_bridges(const struct ovsrec_open_vswitch *cfg)
937 {
938     struct bridge *br, *next;
939     struct shash new_br;
940     size_t i;
941
942     /* Collect new bridges' names and types. */
943     shash_init(&new_br);
944     for (i = 0; i < cfg->n_bridges; i++) {
945         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
946         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
947
948         if (strchr(br_cfg->name, '/')) {
949             /* Prevent remote ovsdb-server users from accessing arbitrary
950              * directories, e.g. consider a bridge named "../../../etc/". */
951             VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"",
952                          br_cfg->name);
953         } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
954             VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name);
955         }
956     }
957
958     /* Get rid of deleted bridges or those whose types have changed.
959      * Update 'cfg' of bridges that still exist. */
960     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
961         br->cfg = shash_find_data(&new_br, br->name);
962         if (!br->cfg || strcmp(br->type, ofproto_normalize_type(
963                                    br->cfg->datapath_type))) {
964             bridge_destroy(br);
965         }
966     }
967
968     /* Add new bridges. */
969     for (i = 0; i < cfg->n_bridges; i++) {
970         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
971         struct bridge *br = bridge_lookup(br_cfg->name);
972         if (!br) {
973             bridge_create(br_cfg);
974         }
975     }
976
977     shash_destroy(&new_br);
978 }
979
980 /* Delete each ofproto port on 'br' that doesn't have a corresponding "struct
981  * iface".
982  *
983  * The kernel will reject any attempt to add a given port to a datapath if that
984  * port already belongs to a different datapath, so we must do all port
985  * deletions before any port additions. */
986 static void
987 bridge_del_ofproto_ports(struct bridge *br)
988 {
989     struct ofproto_port_dump dump;
990     struct ofproto_port ofproto_port;
991
992     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
993         const char *name = ofproto_port.name;
994         struct iface *iface;
995         const char *type;
996         int error;
997
998         /* Ignore the local port.  We can't change it anyhow. */
999         if (!strcmp(name, br->name)) {
1000             continue;
1001         }
1002
1003         /* Get the type that 'ofproto_port' should have (ordinarily the
1004          * type of its corresponding iface) or NULL if it should be
1005          * deleted. */
1006         iface = iface_lookup(br, name);
1007         type = (iface ? iface->type
1008                 : bridge_has_bond_fake_iface(br, name) ? "internal"
1009                 : NULL);
1010
1011         /* If it's the wrong type then delete the ofproto port. */
1012         if (type
1013             && !strcmp(ofproto_port.type, type)
1014             && (!iface || !iface->netdev
1015                 || !strcmp(netdev_get_type(iface->netdev), type))) {
1016             continue;
1017         }
1018         error = ofproto_port_del(br->ofproto, ofproto_port.ofp_port);
1019         if (error) {
1020             VLOG_WARN("bridge %s: failed to remove %s interface (%s)",
1021                       br->name, name, strerror(error));
1022         }
1023         if (iface) {
1024             netdev_close(iface->netdev);
1025             iface->netdev = NULL;
1026         }
1027     }
1028 }
1029
1030 static void
1031 iface_set_ofp_port(struct iface *iface, int ofp_port)
1032 {
1033     struct bridge *br = iface->port->bridge;
1034
1035     assert(iface->ofp_port < 0 && ofp_port >= 0);
1036     iface->ofp_port = ofp_port;
1037     hmap_insert(&br->ifaces, &iface->ofp_port_node, hash_int(ofp_port, 0));
1038     iface_set_ofport(iface->cfg, ofp_port);
1039 }
1040
1041 static void
1042 bridge_refresh_ofp_port(struct bridge *br)
1043 {
1044     struct ofproto_port_dump dump;
1045     struct ofproto_port ofproto_port;
1046     struct port *port;
1047
1048     /* Clear all the "ofp_port"es. */
1049     hmap_clear(&br->ifaces);
1050     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1051         struct iface *iface;
1052
1053         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1054             iface->ofp_port = -1;
1055         }
1056     }
1057
1058     /* Obtain the correct "ofp_port"s from ofproto. */
1059     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
1060         struct iface *iface = iface_lookup(br, ofproto_port.name);
1061         if (iface) {
1062             if (iface->ofp_port >= 0) {
1063                 VLOG_WARN("bridge %s: interface %s reported twice",
1064                           br->name, ofproto_port.name);
1065             } else if (iface_from_ofp_port(br, ofproto_port.ofp_port)) {
1066                 VLOG_WARN("bridge %s: interface %"PRIu16" reported twice",
1067                           br->name, ofproto_port.ofp_port);
1068             } else {
1069                 iface_set_ofp_port(iface, ofproto_port.ofp_port);
1070             }
1071         }
1072     }
1073 }
1074
1075 /* Add an ofproto port for any "struct iface" that doesn't have one.
1076  * Delete any "struct iface" for which this fails.
1077  * Delete any "struct port" that thereby ends up with no ifaces. */
1078 static void
1079 bridge_add_ofproto_ports(struct bridge *br)
1080 {
1081     struct port *port, *next_port;
1082
1083     HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
1084         struct iface *iface, *next_iface;
1085         struct ofproto_port ofproto_port;
1086
1087         LIST_FOR_EACH_SAFE (iface, next_iface, port_elem, &port->ifaces) {
1088             int error;
1089
1090             /* Open the netdev. */
1091             if (!iface->netdev) {
1092                 error = netdev_open(iface->name, iface->type, &iface->netdev);
1093                 if (error) {
1094                     VLOG_WARN("could not open network device %s (%s)",
1095                               iface->name, strerror(error));
1096                 }
1097             } else {
1098                 error = 0;
1099             }
1100
1101             /* Configure the netdev. */
1102             if (iface->netdev) {
1103                 struct shash args;
1104
1105                 shash_init(&args);
1106                 shash_from_ovs_idl_map(iface->cfg->key_options,
1107                                        iface->cfg->value_options,
1108                                        iface->cfg->n_options, &args);
1109                 error = netdev_set_config(iface->netdev, &args);
1110                 shash_destroy(&args);
1111
1112                 if (error) {
1113                     VLOG_WARN("could not configure network device %s (%s)",
1114                               iface->name, strerror(error));
1115                     netdev_close(iface->netdev);
1116                     iface->netdev = NULL;
1117                 }
1118             }
1119
1120             /* Add the port, if necessary. */
1121             if (iface->netdev && iface->ofp_port < 0) {
1122                 uint16_t ofp_port;
1123                 int error;
1124
1125                 error = ofproto_port_add(br->ofproto, iface->netdev,
1126                                          &ofp_port);
1127                 if (!error) {
1128                     iface_set_ofp_port(iface, ofp_port);
1129                 } else {
1130                     netdev_close(iface->netdev);
1131                     iface->netdev = NULL;
1132                 }
1133             }
1134
1135             /* Populate stats columns in new Interface rows. */
1136             if (iface->netdev && !iface->cfg->mtu) {
1137                 iface_refresh_stats(iface);
1138                 iface_refresh_status(iface);
1139             }
1140
1141             /* Delete the iface if we failed. */
1142             if (iface->netdev && iface->ofp_port >= 0) {
1143                 VLOG_DBG("bridge %s: interface %s is on port %d",
1144                          br->name, iface->name, iface->ofp_port);
1145             } else {
1146                 if (iface->netdev) {
1147                     VLOG_ERR("bridge %s: missing %s interface, dropping",
1148                              br->name, iface->name);
1149                 } else {
1150                     /* We already reported a related error, don't bother
1151                      * duplicating it. */
1152                 }
1153                 iface_clear_db_record(iface->cfg);
1154                 iface_destroy(iface);
1155             }
1156         }
1157         if (list_is_empty(&port->ifaces)) {
1158             VLOG_WARN("%s port has no interfaces, dropping", port->name);
1159             port_destroy(port);
1160             continue;
1161         }
1162
1163         /* Add bond fake iface if necessary. */
1164         if (port_is_bond_fake_iface(port)) {
1165             if (ofproto_port_query_by_name(br->ofproto, port->name,
1166                                            &ofproto_port)) {
1167                 struct netdev *netdev;
1168                 int error;
1169
1170                 error = netdev_open(port->name, "internal", &netdev);
1171                 if (!error) {
1172                     ofproto_port_add(br->ofproto, netdev, NULL);
1173                     netdev_close(netdev);
1174                 } else {
1175                     VLOG_WARN("could not open network device %s (%s)",
1176                               port->name, strerror(error));
1177                 }
1178             } else {
1179                 /* Already exists, nothing to do. */
1180                 ofproto_port_destroy(&ofproto_port);
1181             }
1182         }
1183     }
1184 }
1185
1186 static const char *
1187 get_ovsrec_key_value(const struct ovsdb_idl_row *row,
1188                      const struct ovsdb_idl_column *column,
1189                      const char *key)
1190 {
1191     const struct ovsdb_datum *datum;
1192     union ovsdb_atom atom;
1193     unsigned int idx;
1194
1195     datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
1196     atom.string = (char *) key;
1197     idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
1198     return idx == UINT_MAX ? NULL : datum->values[idx].string;
1199 }
1200
1201 static const char *
1202 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
1203 {
1204     return get_ovsrec_key_value(&br_cfg->header_,
1205                                 &ovsrec_bridge_col_other_config, key);
1206 }
1207
1208 /* Set Flow eviction threshold */
1209 static void
1210 bridge_configure_flow_eviction_threshold(struct bridge *br)
1211 {
1212     const char *threshold_str;
1213     unsigned threshold;
1214
1215     threshold_str = bridge_get_other_config(br->cfg, "flow-eviction-threshold");
1216     if (threshold_str) {
1217         threshold = strtoul(threshold_str, NULL, 10);
1218     } else {
1219         threshold = OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT;
1220     }
1221     ofproto_set_flow_eviction_threshold(br->ofproto, threshold);
1222 }
1223
1224 /* Set forward BPDU option. */
1225 static void
1226 bridge_configure_forward_bpdu(struct bridge *br)
1227 {
1228     const char *forward_bpdu_str;
1229     bool forward_bpdu = false;
1230
1231     forward_bpdu_str = bridge_get_other_config(br->cfg, "forward-bpdu");
1232     if (forward_bpdu_str && !strcmp(forward_bpdu_str, "true")) {
1233         forward_bpdu = true;
1234     }
1235     ofproto_set_forward_bpdu(br->ofproto, forward_bpdu);
1236 }
1237
1238 static void
1239 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
1240                           struct iface **hw_addr_iface)
1241 {
1242     const char *hwaddr;
1243     struct port *port;
1244     bool found_addr = false;
1245     int error;
1246
1247     *hw_addr_iface = NULL;
1248
1249     /* Did the user request a particular MAC? */
1250     hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
1251     if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
1252         if (eth_addr_is_multicast(ea)) {
1253             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
1254                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1255         } else if (eth_addr_is_zero(ea)) {
1256             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
1257         } else {
1258             return;
1259         }
1260     }
1261
1262     /* Otherwise choose the minimum non-local MAC address among all of the
1263      * interfaces. */
1264     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1265         uint8_t iface_ea[ETH_ADDR_LEN];
1266         struct iface *candidate;
1267         struct iface *iface;
1268
1269         /* Mirror output ports don't participate. */
1270         if (ofproto_is_mirror_output_bundle(br->ofproto, port)) {
1271             continue;
1272         }
1273
1274         /* Choose the MAC address to represent the port. */
1275         iface = NULL;
1276         if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
1277             /* Find the interface with this Ethernet address (if any) so that
1278              * we can provide the correct devname to the caller. */
1279             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1280                 uint8_t candidate_ea[ETH_ADDR_LEN];
1281                 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1282                     && eth_addr_equals(iface_ea, candidate_ea)) {
1283                     iface = candidate;
1284                 }
1285             }
1286         } else {
1287             /* Choose the interface whose MAC address will represent the port.
1288              * The Linux kernel bonding code always chooses the MAC address of
1289              * the first slave added to a bond, and the Fedora networking
1290              * scripts always add slaves to a bond in alphabetical order, so
1291              * for compatibility we choose the interface with the name that is
1292              * first in alphabetical order. */
1293             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1294                 if (!iface || strcmp(candidate->name, iface->name) < 0) {
1295                     iface = candidate;
1296                 }
1297             }
1298
1299             /* The local port doesn't count (since we're trying to choose its
1300              * MAC address anyway). */
1301             if (iface->ofp_port == OFPP_LOCAL) {
1302                 continue;
1303             }
1304
1305             /* Grab MAC. */
1306             error = netdev_get_etheraddr(iface->netdev, iface_ea);
1307             if (error) {
1308                 continue;
1309             }
1310         }
1311
1312         /* Compare against our current choice. */
1313         if (!eth_addr_is_multicast(iface_ea) &&
1314             !eth_addr_is_local(iface_ea) &&
1315             !eth_addr_is_reserved(iface_ea) &&
1316             !eth_addr_is_zero(iface_ea) &&
1317             (!found_addr || eth_addr_compare_3way(iface_ea, ea) < 0))
1318         {
1319             memcpy(ea, iface_ea, ETH_ADDR_LEN);
1320             *hw_addr_iface = iface;
1321             found_addr = true;
1322         }
1323     }
1324     if (found_addr) {
1325         VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1326                  br->name, ETH_ADDR_ARGS(ea));
1327     } else {
1328         memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1329         *hw_addr_iface = NULL;
1330         VLOG_WARN("bridge %s: using default bridge Ethernet "
1331                   "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1332     }
1333 }
1334
1335 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1336  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
1337  * an interface on 'br', then that interface must be passed in as
1338  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1339  * 'hw_addr_iface' must be passed in as a null pointer. */
1340 static uint64_t
1341 bridge_pick_datapath_id(struct bridge *br,
1342                         const uint8_t bridge_ea[ETH_ADDR_LEN],
1343                         struct iface *hw_addr_iface)
1344 {
1345     /*
1346      * The procedure for choosing a bridge MAC address will, in the most
1347      * ordinary case, also choose a unique MAC that we can use as a datapath
1348      * ID.  In some special cases, though, multiple bridges will end up with
1349      * the same MAC address.  This is OK for the bridges, but it will confuse
1350      * the OpenFlow controller, because each datapath needs a unique datapath
1351      * ID.
1352      *
1353      * Datapath IDs must be unique.  It is also very desirable that they be
1354      * stable from one run to the next, so that policy set on a datapath
1355      * "sticks".
1356      */
1357     const char *datapath_id;
1358     uint64_t dpid;
1359
1360     datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1361     if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1362         return dpid;
1363     }
1364
1365     if (hw_addr_iface) {
1366         int vlan;
1367         if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
1368             /*
1369              * A bridge whose MAC address is taken from a VLAN network device
1370              * (that is, a network device created with vconfig(8) or similar
1371              * tool) will have the same MAC address as a bridge on the VLAN
1372              * device's physical network device.
1373              *
1374              * Handle this case by hashing the physical network device MAC
1375              * along with the VLAN identifier.
1376              */
1377             uint8_t buf[ETH_ADDR_LEN + 2];
1378             memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1379             buf[ETH_ADDR_LEN] = vlan >> 8;
1380             buf[ETH_ADDR_LEN + 1] = vlan;
1381             return dpid_from_hash(buf, sizeof buf);
1382         } else {
1383             /*
1384              * Assume that this bridge's MAC address is unique, since it
1385              * doesn't fit any of the cases we handle specially.
1386              */
1387         }
1388     } else {
1389         /*
1390          * A purely internal bridge, that is, one that has no non-virtual
1391          * network devices on it at all, is more difficult because it has no
1392          * natural unique identifier at all.
1393          *
1394          * When the host is a XenServer, we handle this case by hashing the
1395          * host's UUID with the name of the bridge.  Names of bridges are
1396          * persistent across XenServer reboots, although they can be reused if
1397          * an internal network is destroyed and then a new one is later
1398          * created, so this is fairly effective.
1399          *
1400          * When the host is not a XenServer, we punt by using a random MAC
1401          * address on each run.
1402          */
1403         const char *host_uuid = xenserver_get_host_uuid();
1404         if (host_uuid) {
1405             char *combined = xasprintf("%s,%s", host_uuid, br->name);
1406             dpid = dpid_from_hash(combined, strlen(combined));
1407             free(combined);
1408             return dpid;
1409         }
1410     }
1411
1412     return eth_addr_to_uint64(bridge_ea);
1413 }
1414
1415 static uint64_t
1416 dpid_from_hash(const void *data, size_t n)
1417 {
1418     uint8_t hash[SHA1_DIGEST_SIZE];
1419
1420     BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1421     sha1_bytes(data, n, hash);
1422     eth_addr_mark_random(hash);
1423     return eth_addr_to_uint64(hash);
1424 }
1425
1426 static void
1427 iface_refresh_status(struct iface *iface)
1428 {
1429     struct shash sh;
1430
1431     enum netdev_flags flags;
1432     uint32_t current;
1433     int64_t bps;
1434     int mtu;
1435     int64_t mtu_64;
1436     int error;
1437
1438     if (iface_is_synthetic(iface)) {
1439         return;
1440     }
1441
1442     shash_init(&sh);
1443
1444     if (!netdev_get_status(iface->netdev, &sh)) {
1445         size_t n;
1446         char **keys, **values;
1447
1448         shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1449         ovsrec_interface_set_status(iface->cfg, keys, values, n);
1450
1451         free(keys);
1452         free(values);
1453     } else {
1454         ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1455     }
1456
1457     shash_destroy_free_data(&sh);
1458
1459     error = netdev_get_flags(iface->netdev, &flags);
1460     if (!error) {
1461         ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1462     }
1463     else {
1464         ovsrec_interface_set_admin_state(iface->cfg, NULL);
1465     }
1466
1467     error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1468     if (!error) {
1469         ovsrec_interface_set_duplex(iface->cfg,
1470                                     netdev_features_is_full_duplex(current)
1471                                     ? "full" : "half");
1472         /* warning: uint64_t -> int64_t conversion */
1473         bps = netdev_features_to_bps(current);
1474         ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1475     }
1476     else {
1477         ovsrec_interface_set_duplex(iface->cfg, NULL);
1478         ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1479     }
1480
1481     error = netdev_get_mtu(iface->netdev, &mtu);
1482     if (!error) {
1483         mtu_64 = mtu;
1484         ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1485     }
1486     else {
1487         ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1488     }
1489 }
1490
1491 /* Writes 'iface''s CFM statistics to the database. */
1492 static void
1493 iface_refresh_cfm_stats(struct iface *iface)
1494 {
1495     const struct ovsrec_interface *cfg = iface->cfg;
1496     int fault, error;
1497     const uint64_t *rmps;
1498     size_t n_rmps;
1499
1500     if (iface_is_synthetic(iface)) {
1501         return;
1502     }
1503
1504     fault = ofproto_port_get_cfm_fault(iface->port->bridge->ofproto,
1505                                        iface->ofp_port);
1506     if (fault >= 0) {
1507         bool fault_bool = fault;
1508         ovsrec_interface_set_cfm_fault(cfg, &fault_bool, 1);
1509     } else {
1510         ovsrec_interface_set_cfm_fault(cfg, NULL, 0);
1511     }
1512
1513     error = ofproto_port_get_cfm_remote_mpids(iface->port->bridge->ofproto,
1514                                               iface->ofp_port, &rmps, &n_rmps);
1515     if (error >= 0) {
1516         ovsrec_interface_set_cfm_remote_mpids(cfg, (const int64_t *)rmps,
1517                                               n_rmps);
1518     } else {
1519         ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0);
1520     }
1521 }
1522
1523 static void
1524 iface_refresh_stats(struct iface *iface)
1525 {
1526 #define IFACE_STATS                             \
1527     IFACE_STAT(rx_packets,      "rx_packets")   \
1528     IFACE_STAT(tx_packets,      "tx_packets")   \
1529     IFACE_STAT(rx_bytes,        "rx_bytes")     \
1530     IFACE_STAT(tx_bytes,        "tx_bytes")     \
1531     IFACE_STAT(rx_dropped,      "rx_dropped")   \
1532     IFACE_STAT(tx_dropped,      "tx_dropped")   \
1533     IFACE_STAT(rx_errors,       "rx_errors")    \
1534     IFACE_STAT(tx_errors,       "tx_errors")    \
1535     IFACE_STAT(rx_frame_errors, "rx_frame_err") \
1536     IFACE_STAT(rx_over_errors,  "rx_over_err")  \
1537     IFACE_STAT(rx_crc_errors,   "rx_crc_err")   \
1538     IFACE_STAT(collisions,      "collisions")
1539
1540 #define IFACE_STAT(MEMBER, NAME) NAME,
1541     static char *keys[] = { IFACE_STATS };
1542 #undef IFACE_STAT
1543     int64_t values[ARRAY_SIZE(keys)];
1544     int i;
1545
1546     struct netdev_stats stats;
1547
1548     if (iface_is_synthetic(iface)) {
1549         return;
1550     }
1551
1552     /* Intentionally ignore return value, since errors will set 'stats' to
1553      * all-1s, and we will deal with that correctly below. */
1554     netdev_get_stats(iface->netdev, &stats);
1555
1556     /* Copy statistics into values[] array. */
1557     i = 0;
1558 #define IFACE_STAT(MEMBER, NAME) values[i++] = stats.MEMBER;
1559     IFACE_STATS;
1560 #undef IFACE_STAT
1561     assert(i == ARRAY_SIZE(keys));
1562
1563     ovsrec_interface_set_statistics(iface->cfg, keys, values, ARRAY_SIZE(keys));
1564 #undef IFACE_STATS
1565 }
1566
1567 static void
1568 br_refresh_stp_status(struct bridge *br)
1569 {
1570     struct ofproto *ofproto = br->ofproto;
1571     struct ofproto_stp_status status;
1572     char *keys[3], *values[3];
1573     size_t i;
1574
1575     if (ofproto_get_stp_status(ofproto, &status)) {
1576         return;
1577     }
1578
1579     if (!status.enabled) {
1580         ovsrec_bridge_set_status(br->cfg, NULL, NULL, 0);
1581         return;
1582     }
1583
1584     keys[0] = "stp_bridge_id",
1585     values[0] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.bridge_id));
1586     keys[1] = "stp_designated_root",
1587     values[1] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.designated_root));
1588     keys[2] = "stp_root_path_cost",
1589     values[2] = xasprintf("%d", status.root_path_cost);
1590
1591     ovsrec_bridge_set_status(br->cfg, keys, values, ARRAY_SIZE(values));
1592
1593     for (i = 0; i < ARRAY_SIZE(values); i++) {
1594         free(values[i]);
1595     }
1596 }
1597
1598 static void
1599 port_refresh_stp_status(struct port *port)
1600 {
1601     struct ofproto *ofproto = port->bridge->ofproto;
1602     struct iface *iface;
1603     struct ofproto_port_stp_status status;
1604     char *keys[4];
1605     char *str_values[4];
1606     int64_t int_values[3];
1607     size_t i;
1608
1609     if (port_is_synthetic(port)) {
1610         return;
1611     }
1612
1613     /* STP doesn't currently support bonds. */
1614     if (!list_is_singleton(&port->ifaces)) {
1615         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1616         return;
1617     }
1618
1619     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1620
1621     if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) {
1622         return;
1623     }
1624
1625     if (!status.enabled) {
1626         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1627         ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0);
1628         return;
1629     }
1630
1631     /* Set Status column. */
1632     keys[0] = "stp_port_id";
1633     str_values[0] = xasprintf(STP_PORT_ID_FMT, status.port_id);
1634     keys[1] = "stp_state";
1635     str_values[1] = xstrdup(stp_state_name(status.state));
1636     keys[2] = "stp_sec_in_state";
1637     str_values[2] = xasprintf("%u", status.sec_in_state);
1638     keys[3] = "stp_role";
1639     str_values[3] = xstrdup(stp_role_name(status.role));
1640
1641     ovsrec_port_set_status(port->cfg, keys, str_values,
1642                            ARRAY_SIZE(str_values));
1643
1644     for (i = 0; i < ARRAY_SIZE(str_values); i++) {
1645         free(str_values[i]);
1646     }
1647
1648     /* Set Statistics column. */
1649     keys[0] = "stp_tx_count";
1650     int_values[0] = status.tx_count;
1651     keys[1] = "stp_rx_count";
1652     int_values[1] = status.rx_count;
1653     keys[2] = "stp_error_count";
1654     int_values[2] = status.error_count;
1655
1656     ovsrec_port_set_statistics(port->cfg, keys, int_values,
1657                                ARRAY_SIZE(int_values));
1658 }
1659
1660 static bool
1661 enable_system_stats(const struct ovsrec_open_vswitch *cfg)
1662 {
1663     const char *enable;
1664
1665     /* Use other-config:enable-system-stats by preference. */
1666     enable = get_ovsrec_key_value(&cfg->header_,
1667                                   &ovsrec_open_vswitch_col_other_config,
1668                                   "enable-statistics");
1669     if (enable) {
1670         return !strcmp(enable, "true");
1671     }
1672
1673     /* Disable by default. */
1674     return false;
1675 }
1676
1677 static void
1678 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1679 {
1680     struct ovsdb_datum datum;
1681     struct shash stats;
1682
1683     shash_init(&stats);
1684     if (enable_system_stats(cfg)) {
1685         get_system_stats(&stats);
1686     }
1687
1688     ovsdb_datum_from_shash(&datum, &stats);
1689     ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1690                         &datum);
1691 }
1692
1693 static inline const char *
1694 nx_role_to_str(enum nx_role role)
1695 {
1696     switch (role) {
1697     case NX_ROLE_OTHER:
1698         return "other";
1699     case NX_ROLE_MASTER:
1700         return "master";
1701     case NX_ROLE_SLAVE:
1702         return "slave";
1703     default:
1704         return "*** INVALID ROLE ***";
1705     }
1706 }
1707
1708 static void
1709 refresh_controller_status(void)
1710 {
1711     struct bridge *br;
1712     struct shash info;
1713     const struct ovsrec_controller *cfg;
1714
1715     shash_init(&info);
1716
1717     /* Accumulate status for controllers on all bridges. */
1718     HMAP_FOR_EACH (br, node, &all_bridges) {
1719         ofproto_get_ofproto_controller_info(br->ofproto, &info);
1720     }
1721
1722     /* Update each controller in the database with current status. */
1723     OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1724         struct ofproto_controller_info *cinfo =
1725             shash_find_data(&info, cfg->target);
1726
1727         if (cinfo) {
1728             ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1729             ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1730             ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1731                                          (char **) cinfo->pairs.values,
1732                                          cinfo->pairs.n);
1733         } else {
1734             ovsrec_controller_set_is_connected(cfg, false);
1735             ovsrec_controller_set_role(cfg, NULL);
1736             ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1737         }
1738     }
1739
1740     ofproto_free_ofproto_controller_info(&info);
1741 }
1742
1743 static void
1744 refresh_cfm_stats(void)
1745 {
1746     static struct ovsdb_idl_txn *txn = NULL;
1747
1748     if (!txn) {
1749         struct bridge *br;
1750
1751         txn = ovsdb_idl_txn_create(idl);
1752
1753         HMAP_FOR_EACH (br, node, &all_bridges) {
1754             struct iface *iface;
1755
1756             HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1757                 iface_refresh_cfm_stats(iface);
1758             }
1759         }
1760     }
1761
1762     if (ovsdb_idl_txn_commit(txn) != TXN_INCOMPLETE) {
1763         ovsdb_idl_txn_destroy(txn);
1764         txn = NULL;
1765     }
1766 }
1767
1768 void
1769 bridge_run(void)
1770 {
1771     const struct ovsrec_open_vswitch *cfg;
1772
1773     bool datapath_destroyed;
1774     bool database_changed;
1775     struct bridge *br;
1776
1777     /* (Re)configure if necessary. */
1778     database_changed = ovsdb_idl_run(idl);
1779     if (ovsdb_idl_is_lock_contended(idl)) {
1780         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1781         struct bridge *br, *next_br;
1782
1783         VLOG_ERR_RL(&rl, "another ovs-vswitchd process is running, "
1784                     "disabling this process until it goes away");
1785
1786         HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
1787             bridge_destroy(br);
1788         }
1789         return;
1790     } else if (!ovsdb_idl_has_lock(idl)) {
1791         return;
1792     }
1793     cfg = ovsrec_open_vswitch_first(idl);
1794
1795     /* Let each bridge do the work that it needs to do. */
1796     datapath_destroyed = false;
1797     HMAP_FOR_EACH (br, node, &all_bridges) {
1798         int error = ofproto_run(br->ofproto);
1799         if (error) {
1800             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1801             VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1802                         "forcing reconfiguration", br->name);
1803             datapath_destroyed = true;
1804         }
1805     }
1806
1807     /* Re-configure SSL.  We do this on every trip through the main loop,
1808      * instead of just when the database changes, because the contents of the
1809      * key and certificate files can change without the database changing.
1810      *
1811      * We do this before bridge_reconfigure() because that function might
1812      * initiate SSL connections and thus requires SSL to be configured. */
1813     if (cfg && cfg->ssl) {
1814         const struct ovsrec_ssl *ssl = cfg->ssl;
1815
1816         stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1817         stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1818     }
1819
1820     if (database_changed || datapath_destroyed) {
1821         if (cfg) {
1822             struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1823
1824             bridge_reconfigure(cfg);
1825
1826             ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1827             ovsdb_idl_txn_commit(txn);
1828             ovsdb_idl_txn_destroy(txn); /* XXX */
1829         } else {
1830             /* We still need to reconfigure to avoid dangling pointers to
1831              * now-destroyed ovsrec structures inside bridge data. */
1832             static const struct ovsrec_open_vswitch null_cfg;
1833
1834             bridge_reconfigure(&null_cfg);
1835         }
1836     }
1837
1838     /* Refresh system and interface stats if necessary. */
1839     if (time_msec() >= stats_timer) {
1840         if (cfg) {
1841             struct ovsdb_idl_txn *txn;
1842
1843             txn = ovsdb_idl_txn_create(idl);
1844             HMAP_FOR_EACH (br, node, &all_bridges) {
1845                 struct port *port;
1846
1847                 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1848                     struct iface *iface;
1849
1850                     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1851                         iface_refresh_stats(iface);
1852                         iface_refresh_status(iface);
1853                     }
1854                 }
1855             }
1856             refresh_system_stats(cfg);
1857             refresh_controller_status();
1858             ovsdb_idl_txn_commit(txn);
1859             ovsdb_idl_txn_destroy(txn); /* XXX */
1860         }
1861
1862         stats_timer = time_msec() + STATS_INTERVAL;
1863     }
1864
1865     if (time_msec() >= db_limiter) {
1866         struct ovsdb_idl_txn *txn;
1867
1868         txn = ovsdb_idl_txn_create(idl);
1869         HMAP_FOR_EACH (br, node, &all_bridges) {
1870             struct iface *iface;
1871             struct port *port;
1872
1873             br_refresh_stp_status(br);
1874
1875             HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1876                 port_refresh_stp_status(port);
1877             }
1878
1879             HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1880                 const char *link_state;
1881                 int64_t link_resets;
1882                 int current;
1883
1884                 if (iface_is_synthetic(iface)) {
1885                     continue;
1886                 }
1887
1888                 current = ofproto_port_is_lacp_current(br->ofproto,
1889                                                        iface->ofp_port);
1890                 if (current >= 0) {
1891                     bool bl = current;
1892                     ovsrec_interface_set_lacp_current(iface->cfg, &bl, 1);
1893                 } else {
1894                     ovsrec_interface_set_lacp_current(iface->cfg, NULL, 0);
1895                 }
1896
1897                 link_state = netdev_get_carrier(iface->netdev) ? "up" : "down";
1898                 ovsrec_interface_set_link_state(iface->cfg, link_state);
1899
1900                 link_resets = netdev_get_carrier_resets(iface->netdev);
1901                 ovsrec_interface_set_link_resets(iface->cfg, &link_resets, 1);
1902             }
1903         }
1904
1905         if (ovsdb_idl_txn_commit(txn) != TXN_UNCHANGED) {
1906             db_limiter = time_msec() + DB_LIMIT_INTERVAL;
1907         }
1908         ovsdb_idl_txn_destroy(txn);
1909     }
1910
1911     refresh_cfm_stats();
1912 }
1913
1914 void
1915 bridge_wait(void)
1916 {
1917     ovsdb_idl_wait(idl);
1918     if (!hmap_is_empty(&all_bridges)) {
1919         struct bridge *br;
1920
1921         HMAP_FOR_EACH (br, node, &all_bridges) {
1922             ofproto_wait(br->ofproto);
1923         }
1924         poll_timer_wait_until(stats_timer);
1925
1926         if (db_limiter > time_msec()) {
1927             poll_timer_wait_until(db_limiter);
1928         }
1929     }
1930 }
1931 \f
1932 /* QoS unixctl user interface functions. */
1933
1934 struct qos_unixctl_show_cbdata {
1935     struct ds *ds;
1936     struct iface *iface;
1937 };
1938
1939 static void
1940 qos_unixctl_show_cb(unsigned int queue_id,
1941                     const struct shash *details,
1942                     void *aux)
1943 {
1944     struct qos_unixctl_show_cbdata *data = aux;
1945     struct ds *ds = data->ds;
1946     struct iface *iface = data->iface;
1947     struct netdev_queue_stats stats;
1948     struct shash_node *node;
1949     int error;
1950
1951     ds_put_cstr(ds, "\n");
1952     if (queue_id) {
1953         ds_put_format(ds, "Queue %u:\n", queue_id);
1954     } else {
1955         ds_put_cstr(ds, "Default:\n");
1956     }
1957
1958     SHASH_FOR_EACH (node, details) {
1959         ds_put_format(ds, "\t%s: %s\n", node->name, (char *)node->data);
1960     }
1961
1962     error = netdev_get_queue_stats(iface->netdev, queue_id, &stats);
1963     if (!error) {
1964         if (stats.tx_packets != UINT64_MAX) {
1965             ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets);
1966         }
1967
1968         if (stats.tx_bytes != UINT64_MAX) {
1969             ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes);
1970         }
1971
1972         if (stats.tx_errors != UINT64_MAX) {
1973             ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors);
1974         }
1975     } else {
1976         ds_put_format(ds, "\tFailed to get statistics for queue %u: %s",
1977                       queue_id, strerror(error));
1978     }
1979 }
1980
1981 static void
1982 qos_unixctl_show(struct unixctl_conn *conn,
1983                  const char *args, void *aux OVS_UNUSED)
1984 {
1985     struct ds ds = DS_EMPTY_INITIALIZER;
1986     struct shash sh = SHASH_INITIALIZER(&sh);
1987     struct iface *iface;
1988     const char *type;
1989     struct shash_node *node;
1990     struct qos_unixctl_show_cbdata data;
1991     int error;
1992
1993     iface = iface_find(args);
1994     if (!iface) {
1995         unixctl_command_reply(conn, 501, "no such interface");
1996         return;
1997     }
1998
1999     netdev_get_qos(iface->netdev, &type, &sh);
2000
2001     if (*type != '\0') {
2002         ds_put_format(&ds, "QoS: %s %s\n", iface->name, type);
2003
2004         SHASH_FOR_EACH (node, &sh) {
2005             ds_put_format(&ds, "%s: %s\n", node->name, (char *)node->data);
2006         }
2007
2008         data.ds = &ds;
2009         data.iface = iface;
2010         error = netdev_dump_queues(iface->netdev, qos_unixctl_show_cb, &data);
2011
2012         if (error) {
2013             ds_put_format(&ds, "failed to dump queues: %s", strerror(error));
2014         }
2015         unixctl_command_reply(conn, 200, ds_cstr(&ds));
2016     } else {
2017         ds_put_format(&ds, "QoS not configured on %s\n", iface->name);
2018         unixctl_command_reply(conn, 501, ds_cstr(&ds));
2019     }
2020
2021     shash_destroy_free_data(&sh);
2022     ds_destroy(&ds);
2023 }
2024 \f
2025 /* Bridge reconfiguration functions. */
2026 static void
2027 bridge_create(const struct ovsrec_bridge *br_cfg)
2028 {
2029     struct bridge *br;
2030
2031     assert(!bridge_lookup(br_cfg->name));
2032     br = xzalloc(sizeof *br);
2033
2034     br->name = xstrdup(br_cfg->name);
2035     br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type));
2036     br->cfg = br_cfg;
2037
2038     /* Derive the default Ethernet address from the bridge's UUID.  This should
2039      * be unique and it will be stable between ovs-vswitchd runs.  */
2040     memcpy(br->default_ea, &br_cfg->header_.uuid, ETH_ADDR_LEN);
2041     eth_addr_mark_random(br->default_ea);
2042
2043     hmap_init(&br->ports);
2044     hmap_init(&br->ifaces);
2045     hmap_init(&br->iface_by_name);
2046     hmap_init(&br->mirrors);
2047
2048     hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0));
2049 }
2050
2051 static void
2052 bridge_destroy(struct bridge *br)
2053 {
2054     if (br) {
2055         struct mirror *mirror, *next_mirror;
2056         struct port *port, *next_port;
2057
2058         HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
2059             port_destroy(port);
2060         }
2061         HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) {
2062             mirror_destroy(mirror);
2063         }
2064         hmap_remove(&all_bridges, &br->node);
2065         ofproto_destroy(br->ofproto);
2066         hmap_destroy(&br->ifaces);
2067         hmap_destroy(&br->ports);
2068         hmap_destroy(&br->iface_by_name);
2069         hmap_destroy(&br->mirrors);
2070         free(br->name);
2071         free(br->type);
2072         free(br);
2073     }
2074 }
2075
2076 static struct bridge *
2077 bridge_lookup(const char *name)
2078 {
2079     struct bridge *br;
2080
2081     HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) {
2082         if (!strcmp(br->name, name)) {
2083             return br;
2084         }
2085     }
2086     return NULL;
2087 }
2088
2089 /* Handle requests for a listing of all flows known by the OpenFlow
2090  * stack, including those normally hidden. */
2091 static void
2092 bridge_unixctl_dump_flows(struct unixctl_conn *conn,
2093                           const char *args, void *aux OVS_UNUSED)
2094 {
2095     struct bridge *br;
2096     struct ds results;
2097
2098     br = bridge_lookup(args);
2099     if (!br) {
2100         unixctl_command_reply(conn, 501, "Unknown bridge");
2101         return;
2102     }
2103
2104     ds_init(&results);
2105     ofproto_get_all_flows(br->ofproto, &results);
2106
2107     unixctl_command_reply(conn, 200, ds_cstr(&results));
2108     ds_destroy(&results);
2109 }
2110
2111 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
2112  * connections and reconnect.  If BRIDGE is not specified, then all bridges
2113  * drop their controller connections and reconnect. */
2114 static void
2115 bridge_unixctl_reconnect(struct unixctl_conn *conn,
2116                          const char *args, void *aux OVS_UNUSED)
2117 {
2118     struct bridge *br;
2119     if (args[0] != '\0') {
2120         br = bridge_lookup(args);
2121         if (!br) {
2122             unixctl_command_reply(conn, 501, "Unknown bridge");
2123             return;
2124         }
2125         ofproto_reconnect_controllers(br->ofproto);
2126     } else {
2127         HMAP_FOR_EACH (br, node, &all_bridges) {
2128             ofproto_reconnect_controllers(br->ofproto);
2129         }
2130     }
2131     unixctl_command_reply(conn, 200, NULL);
2132 }
2133
2134 static size_t
2135 bridge_get_controllers(const struct bridge *br,
2136                        struct ovsrec_controller ***controllersp)
2137 {
2138     struct ovsrec_controller **controllers;
2139     size_t n_controllers;
2140
2141     controllers = br->cfg->controller;
2142     n_controllers = br->cfg->n_controller;
2143
2144     if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
2145         controllers = NULL;
2146         n_controllers = 0;
2147     }
2148
2149     if (controllersp) {
2150         *controllersp = controllers;
2151     }
2152     return n_controllers;
2153 }
2154
2155 /* Adds and deletes "struct port"s and "struct iface"s under 'br' to match
2156  * those configured in 'br->cfg'. */
2157 static void
2158 bridge_add_del_ports(struct bridge *br)
2159 {
2160     struct port *port, *next;
2161     struct shash_node *node;
2162     struct shash new_ports;
2163     size_t i;
2164
2165     /* Collect new ports. */
2166     shash_init(&new_ports);
2167     for (i = 0; i < br->cfg->n_ports; i++) {
2168         const char *name = br->cfg->ports[i]->name;
2169         if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
2170             VLOG_WARN("bridge %s: %s specified twice as bridge port",
2171                       br->name, name);
2172         }
2173     }
2174     if (bridge_get_controllers(br, NULL)
2175         && !shash_find(&new_ports, br->name)) {
2176         VLOG_WARN("bridge %s: no port named %s, synthesizing one",
2177                   br->name, br->name);
2178
2179         br->synth_local_port.interfaces = &br->synth_local_ifacep;
2180         br->synth_local_port.n_interfaces = 1;
2181         br->synth_local_port.name = br->name;
2182
2183         br->synth_local_iface.name = br->name;
2184         br->synth_local_iface.type = "internal";
2185
2186         br->synth_local_ifacep = &br->synth_local_iface;
2187
2188         shash_add(&new_ports, br->name, &br->synth_local_port);
2189     }
2190
2191     /* Get rid of deleted ports.
2192      * Get rid of deleted interfaces on ports that still exist.
2193      * Update 'cfg' of ports that still exist. */
2194     HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
2195         port->cfg = shash_find_data(&new_ports, port->name);
2196         if (!port->cfg) {
2197             port_destroy(port);
2198         } else {
2199             port_del_ifaces(port);
2200         }
2201     }
2202
2203     /* Create new ports.
2204      * Add new interfaces to existing ports. */
2205     SHASH_FOR_EACH (node, &new_ports) {
2206         struct port *port = port_lookup(br, node->name);
2207         if (!port) {
2208             struct ovsrec_port *cfg = node->data;
2209             port = port_create(br, cfg);
2210         }
2211         port_add_ifaces(port);
2212         if (list_is_empty(&port->ifaces)) {
2213             VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2214                       br->name, port->name);
2215             port_destroy(port);
2216         }
2217     }
2218     shash_destroy(&new_ports);
2219 }
2220
2221 /* Initializes 'oc' appropriately as a management service controller for
2222  * 'br'.
2223  *
2224  * The caller must free oc->target when it is no longer needed. */
2225 static void
2226 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
2227                                    struct ofproto_controller *oc)
2228 {
2229     oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
2230     oc->max_backoff = 0;
2231     oc->probe_interval = 60;
2232     oc->band = OFPROTO_OUT_OF_BAND;
2233     oc->rate_limit = 0;
2234     oc->burst_limit = 0;
2235 }
2236
2237 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'.  */
2238 static void
2239 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
2240                                       struct ofproto_controller *oc)
2241 {
2242     oc->target = c->target;
2243     oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
2244     oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
2245     oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
2246                 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
2247     oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
2248     oc->burst_limit = (c->controller_burst_limit
2249                        ? *c->controller_burst_limit : 0);
2250 }
2251
2252 /* Configures the IP stack for 'br''s local interface properly according to the
2253  * configuration in 'c'.  */
2254 static void
2255 bridge_configure_local_iface_netdev(struct bridge *br,
2256                                     struct ovsrec_controller *c)
2257 {
2258     struct netdev *netdev;
2259     struct in_addr mask, gateway;
2260
2261     struct iface *local_iface;
2262     struct in_addr ip;
2263
2264     /* If there's no local interface or no IP address, give up. */
2265     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
2266     if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
2267         return;
2268     }
2269
2270     /* Bring up the local interface. */
2271     netdev = local_iface->netdev;
2272     netdev_turn_flags_on(netdev, NETDEV_UP, true);
2273
2274     /* Configure the IP address and netmask. */
2275     if (!c->local_netmask
2276         || !inet_aton(c->local_netmask, &mask)
2277         || !mask.s_addr) {
2278         mask.s_addr = guess_netmask(ip.s_addr);
2279     }
2280     if (!netdev_set_in4(netdev, ip, mask)) {
2281         VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
2282                   br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
2283     }
2284
2285     /* Configure the default gateway. */
2286     if (c->local_gateway
2287         && inet_aton(c->local_gateway, &gateway)
2288         && gateway.s_addr) {
2289         if (!netdev_add_router(netdev, gateway)) {
2290             VLOG_INFO("bridge %s: configured gateway "IP_FMT,
2291                       br->name, IP_ARGS(&gateway.s_addr));
2292         }
2293     }
2294 }
2295
2296 /* Returns true if 'a' and 'b' are the same except that any number of slashes
2297  * in either string are treated as equal to any number of slashes in the other,
2298  * e.g. "x///y" is equal to "x/y". */
2299 static bool
2300 equal_pathnames(const char *a, const char *b)
2301 {
2302     while (*a == *b) {
2303         if (*a == '/') {
2304             a += strspn(a, "/");
2305             b += strspn(b, "/");
2306         } else if (*a == '\0') {
2307             return true;
2308         } else {
2309             a++;
2310             b++;
2311         }
2312     }
2313     return false;
2314 }
2315
2316 static void
2317 bridge_configure_remotes(struct bridge *br,
2318                          const struct sockaddr_in *managers, size_t n_managers)
2319 {
2320     const char *disable_ib_str, *queue_id_str;
2321     bool disable_in_band = false;
2322     int queue_id;
2323
2324     struct ovsrec_controller **controllers;
2325     size_t n_controllers;
2326
2327     enum ofproto_fail_mode fail_mode;
2328
2329     struct ofproto_controller *ocs;
2330     size_t n_ocs;
2331     size_t i;
2332
2333     /* Check if we should disable in-band control on this bridge. */
2334     disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
2335     if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
2336         disable_in_band = true;
2337     }
2338
2339     /* Set OpenFlow queue ID for in-band control. */
2340     queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
2341     queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
2342     ofproto_set_in_band_queue(br->ofproto, queue_id);
2343
2344     if (disable_in_band) {
2345         ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
2346     } else {
2347         ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
2348     }
2349
2350     n_controllers = bridge_get_controllers(br, &controllers);
2351
2352     ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
2353     n_ocs = 0;
2354
2355     bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
2356     for (i = 0; i < n_controllers; i++) {
2357         struct ovsrec_controller *c = controllers[i];
2358
2359         if (!strncmp(c->target, "punix:", 6)
2360             || !strncmp(c->target, "unix:", 5)) {
2361             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2362             char *whitelist;
2363
2364             whitelist = xasprintf("unix:%s/%s.controller",
2365                                   ovs_rundir(), br->name);
2366             if (!equal_pathnames(c->target, whitelist)) {
2367                 /* Prevent remote ovsdb-server users from accessing arbitrary
2368                  * Unix domain sockets and overwriting arbitrary local
2369                  * files. */
2370                 VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket "
2371                             "controller \"%s\" due to possibility for remote "
2372                             "exploit.  Instead, specify whitelisted \"%s\" or "
2373                             "connect to \"unix:%s/%s.mgmt\" (which is always "
2374                             "available without special configuration).",
2375                             br->name, c->target, whitelist,
2376                             ovs_rundir(), br->name);
2377                 free(whitelist);
2378                 continue;
2379             }
2380
2381             free(whitelist);
2382         }
2383
2384         bridge_configure_local_iface_netdev(br, c);
2385         bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2386         if (disable_in_band) {
2387             ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2388         }
2389         n_ocs++;
2390     }
2391
2392     ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2393     free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2394     free(ocs);
2395
2396     /* Set the fail-mode. */
2397     fail_mode = !br->cfg->fail_mode
2398                 || !strcmp(br->cfg->fail_mode, "standalone")
2399                     ? OFPROTO_FAIL_STANDALONE
2400                     : OFPROTO_FAIL_SECURE;
2401     ofproto_set_fail_mode(br->ofproto, fail_mode);
2402
2403     /* Configure OpenFlow controller connection snooping. */
2404     if (!ofproto_has_snoops(br->ofproto)) {
2405         struct sset snoops;
2406
2407         sset_init(&snoops);
2408         sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
2409                                              ovs_rundir(), br->name));
2410         ofproto_set_snoops(br->ofproto, &snoops);
2411         sset_destroy(&snoops);
2412     }
2413 }
2414 \f
2415 /* Port functions. */
2416
2417 static struct port *
2418 port_create(struct bridge *br, const struct ovsrec_port *cfg)
2419 {
2420     struct port *port;
2421
2422     port = xzalloc(sizeof *port);
2423     port->bridge = br;
2424     port->name = xstrdup(cfg->name);
2425     port->cfg = cfg;
2426     list_init(&port->ifaces);
2427
2428     hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
2429
2430     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2431
2432     return port;
2433 }
2434
2435 static const char *
2436 get_port_other_config(const struct ovsrec_port *port, const char *key,
2437                       const char *default_value)
2438 {
2439     const char *value;
2440
2441     value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
2442                                  key);
2443     return value ? value : default_value;
2444 }
2445
2446 static const char *
2447 get_interface_other_config(const struct ovsrec_interface *iface,
2448                            const char *key, const char *default_value)
2449 {
2450     const char *value;
2451
2452     value = get_ovsrec_key_value(&iface->header_,
2453                                  &ovsrec_interface_col_other_config, key);
2454     return value ? value : default_value;
2455 }
2456
2457 /* Deletes interfaces from 'port' that are no longer configured for it. */
2458 static void
2459 port_del_ifaces(struct port *port)
2460 {
2461     struct iface *iface, *next;
2462     struct sset new_ifaces;
2463     size_t i;
2464
2465     /* Collect list of new interfaces. */
2466     sset_init(&new_ifaces);
2467     for (i = 0; i < port->cfg->n_interfaces; i++) {
2468         const char *name = port->cfg->interfaces[i]->name;
2469         const char *type = port->cfg->interfaces[i]->name;
2470         if (strcmp(type, "null")) {
2471             sset_add(&new_ifaces, name);
2472         }
2473     }
2474
2475     /* Get rid of deleted interfaces. */
2476     LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2477         if (!sset_contains(&new_ifaces, iface->name)) {
2478             iface_destroy(iface);
2479         }
2480     }
2481
2482     sset_destroy(&new_ifaces);
2483 }
2484
2485 /* Adds new interfaces to 'port' and updates 'type' and 'cfg' members of
2486  * existing ones. */
2487 static void
2488 port_add_ifaces(struct port *port)
2489 {
2490     struct shash new_ifaces;
2491     struct shash_node *node;
2492     size_t i;
2493
2494     /* Collect new ifaces. */
2495     shash_init(&new_ifaces);
2496     for (i = 0; i < port->cfg->n_interfaces; i++) {
2497         const struct ovsrec_interface *cfg = port->cfg->interfaces[i];
2498         if (strcmp(cfg->type, "null")
2499             && !shash_add_once(&new_ifaces, cfg->name, cfg)) {
2500             VLOG_WARN("port %s: %s specified twice as port interface",
2501                       port->name, cfg->name);
2502             iface_clear_db_record(cfg);
2503         }
2504     }
2505
2506     /* Create new interfaces.
2507      * Update interface types and 'cfg' members. */
2508     SHASH_FOR_EACH (node, &new_ifaces) {
2509         const struct ovsrec_interface *cfg = node->data;
2510         const char *iface_name = node->name;
2511         struct iface *iface;
2512
2513         iface = iface_lookup(port->bridge, iface_name);
2514         if (!iface) {
2515             iface = iface_create(port, cfg);
2516         } else {
2517             iface->cfg = cfg;
2518         }
2519
2520         /* Determine interface type.  The local port always has type
2521          * "internal".  Other ports take their type from the database and
2522          * default to "system" if none is specified. */
2523         iface->type = (!strcmp(iface_name, port->bridge->name) ? "internal"
2524                        : cfg->type[0] ? cfg->type
2525                        : "system");
2526     }
2527     shash_destroy(&new_ifaces);
2528 }
2529
2530 static void
2531 port_destroy(struct port *port)
2532 {
2533     if (port) {
2534         struct bridge *br = port->bridge;
2535         struct iface *iface, *next;
2536
2537         if (br->ofproto) {
2538             ofproto_bundle_unregister(br->ofproto, port);
2539         }
2540
2541         LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2542             iface_destroy(iface);
2543         }
2544
2545         hmap_remove(&br->ports, &port->hmap_node);
2546
2547         VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
2548
2549         free(port->name);
2550         free(port);
2551     }
2552 }
2553
2554 static struct port *
2555 port_lookup(const struct bridge *br, const char *name)
2556 {
2557     struct port *port;
2558
2559     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
2560                              &br->ports) {
2561         if (!strcmp(port->name, name)) {
2562             return port;
2563         }
2564     }
2565     return NULL;
2566 }
2567
2568 static bool
2569 enable_lacp(struct port *port, bool *activep)
2570 {
2571     if (!port->cfg->lacp) {
2572         /* XXX when LACP implementation has been sufficiently tested, enable by
2573          * default and make active on bonded ports. */
2574         return false;
2575     } else if (!strcmp(port->cfg->lacp, "off")) {
2576         return false;
2577     } else if (!strcmp(port->cfg->lacp, "active")) {
2578         *activep = true;
2579         return true;
2580     } else if (!strcmp(port->cfg->lacp, "passive")) {
2581         *activep = false;
2582         return true;
2583     } else {
2584         VLOG_WARN("port %s: unknown LACP mode %s",
2585                   port->name, port->cfg->lacp);
2586         return false;
2587     }
2588 }
2589
2590 static struct lacp_settings *
2591 port_configure_lacp(struct port *port, struct lacp_settings *s)
2592 {
2593     const char *lacp_time;
2594     long long int custom_time;
2595     int priority;
2596
2597     if (!enable_lacp(port, &s->active)) {
2598         return NULL;
2599     }
2600
2601     s->name = port->name;
2602     memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN);
2603
2604     /* Prefer bondable links if unspecified. */
2605     priority = atoi(get_port_other_config(port->cfg, "lacp-system-priority",
2606                                           "0"));
2607     s->priority = (priority > 0 && priority <= UINT16_MAX
2608                    ? priority
2609                    : UINT16_MAX - !list_is_short(&port->ifaces));
2610
2611     s->heartbeat = !strcmp(get_port_other_config(port->cfg,
2612                                                  "lacp-heartbeat",
2613                                                  "false"), "true");
2614
2615
2616     lacp_time = get_port_other_config(port->cfg, "lacp-time", "slow");
2617     custom_time = atoi(lacp_time);
2618     if (!strcmp(lacp_time, "fast")) {
2619         s->lacp_time = LACP_TIME_FAST;
2620     } else if (!strcmp(lacp_time, "slow")) {
2621         s->lacp_time = LACP_TIME_SLOW;
2622     } else if (custom_time > 0) {
2623         s->lacp_time = LACP_TIME_CUSTOM;
2624         s->custom_time = custom_time;
2625     } else {
2626         s->lacp_time = LACP_TIME_SLOW;
2627     }
2628
2629     return s;
2630 }
2631
2632 static void
2633 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
2634 {
2635     int priority, portid, key;
2636
2637     portid = atoi(get_interface_other_config(iface->cfg, "lacp-port-id", "0"));
2638     priority = atoi(get_interface_other_config(iface->cfg,
2639                                                "lacp-port-priority", "0"));
2640     key = atoi(get_interface_other_config(iface->cfg, "lacp-aggregation-key",
2641                                           "0"));
2642
2643     if (portid <= 0 || portid > UINT16_MAX) {
2644         portid = iface->ofp_port;
2645     }
2646
2647     if (priority <= 0 || priority > UINT16_MAX) {
2648         priority = UINT16_MAX;
2649     }
2650
2651     if (key < 0 || key > UINT16_MAX) {
2652         key = 0;
2653     }
2654
2655     s->name = iface->name;
2656     s->id = portid;
2657     s->priority = priority;
2658     s->key = key;
2659 }
2660
2661 static void
2662 port_configure_bond(struct port *port, struct bond_settings *s,
2663                     uint32_t *bond_stable_ids)
2664 {
2665     const char *detect_s;
2666     struct iface *iface;
2667     int miimon_interval;
2668     size_t i;
2669
2670     s->name = port->name;
2671     s->balance = BM_SLB;
2672     if (port->cfg->bond_mode
2673         && !bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
2674         VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
2675                   port->name, port->cfg->bond_mode,
2676                   bond_mode_to_string(s->balance));
2677     }
2678     if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) {
2679         VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, "
2680                   "please use another bond type or disable flood_vlans",
2681                   port->name);
2682     }
2683
2684     miimon_interval = atoi(get_port_other_config(port->cfg,
2685                                                  "bond-miimon-interval", "0"));
2686     if (miimon_interval <= 0) {
2687         miimon_interval = 200;
2688     }
2689
2690     detect_s = get_port_other_config(port->cfg, "bond-detect-mode", "carrier");
2691     if (!strcmp(detect_s, "carrier")) {
2692         miimon_interval = 0;
2693     } else if (strcmp(detect_s, "miimon")) {
2694         VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
2695                   "defaulting to carrier", port->name, detect_s);
2696         miimon_interval = 0;
2697     }
2698
2699     s->up_delay = MAX(0, port->cfg->bond_updelay);
2700     s->down_delay = MAX(0, port->cfg->bond_downdelay);
2701     s->basis = atoi(get_port_other_config(port->cfg, "bond-hash-basis", "0"));
2702     s->rebalance_interval = atoi(
2703         get_port_other_config(port->cfg, "bond-rebalance-interval", "10000"));
2704     if (s->rebalance_interval < 1000) {
2705         s->rebalance_interval = 1000;
2706     }
2707
2708     s->fake_iface = port->cfg->bond_fake_iface;
2709
2710     i = 0;
2711     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2712         long long stable_id;
2713
2714         stable_id = atoll(get_interface_other_config(iface->cfg,
2715                                                      "bond-stable-id", "0"));
2716         if (stable_id <= 0 || stable_id >= UINT32_MAX) {
2717             stable_id = iface->ofp_port;
2718         }
2719         bond_stable_ids[i++] = stable_id;
2720
2721         netdev_set_miimon_interval(iface->netdev, miimon_interval);
2722     }
2723 }
2724
2725 /* Returns true if 'port' is synthetic, that is, if we constructed it locally
2726  * instead of obtaining it from the database. */
2727 static bool
2728 port_is_synthetic(const struct port *port)
2729 {
2730     return ovsdb_idl_row_is_synthetic(&port->cfg->header_);
2731 }
2732 \f
2733 /* Interface functions. */
2734
2735 static struct iface *
2736 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
2737 {
2738     struct bridge *br = port->bridge;
2739     struct iface *iface;
2740     char *name = if_cfg->name;
2741
2742     iface = xzalloc(sizeof *iface);
2743     iface->port = port;
2744     iface->name = xstrdup(name);
2745     iface->ofp_port = -1;
2746     iface->tag = tag_create_random();
2747     iface->netdev = NULL;
2748     iface->cfg = if_cfg;
2749
2750     hmap_insert(&br->iface_by_name, &iface->name_node, hash_string(name, 0));
2751
2752     list_push_back(&port->ifaces, &iface->port_elem);
2753
2754     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
2755
2756     return iface;
2757 }
2758
2759 static void
2760 iface_destroy(struct iface *iface)
2761 {
2762     if (iface) {
2763         struct port *port = iface->port;
2764         struct bridge *br = port->bridge;
2765
2766         if (br->ofproto && iface->ofp_port >= 0) {
2767             ofproto_port_unregister(br->ofproto, iface->ofp_port);
2768         }
2769
2770         if (iface->ofp_port >= 0) {
2771             hmap_remove(&br->ifaces, &iface->ofp_port_node);
2772         }
2773
2774         list_remove(&iface->port_elem);
2775         hmap_remove(&br->iface_by_name, &iface->name_node);
2776
2777         netdev_close(iface->netdev);
2778
2779         free(iface->name);
2780         free(iface);
2781     }
2782 }
2783
2784 static struct iface *
2785 iface_lookup(const struct bridge *br, const char *name)
2786 {
2787     struct iface *iface;
2788
2789     HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
2790                              &br->iface_by_name) {
2791         if (!strcmp(iface->name, name)) {
2792             return iface;
2793         }
2794     }
2795
2796     return NULL;
2797 }
2798
2799 static struct iface *
2800 iface_find(const char *name)
2801 {
2802     const struct bridge *br;
2803
2804     HMAP_FOR_EACH (br, node, &all_bridges) {
2805         struct iface *iface = iface_lookup(br, name);
2806
2807         if (iface) {
2808             return iface;
2809         }
2810     }
2811     return NULL;
2812 }
2813
2814 static struct iface *
2815 iface_from_ofp_port(const struct bridge *br, uint16_t ofp_port)
2816 {
2817     struct iface *iface;
2818
2819     HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node,
2820                              hash_int(ofp_port, 0), &br->ifaces) {
2821         if (iface->ofp_port == ofp_port) {
2822             return iface;
2823         }
2824     }
2825     return NULL;
2826 }
2827
2828 /* Set Ethernet address of 'iface', if one is specified in the configuration
2829  * file. */
2830 static void
2831 iface_set_mac(struct iface *iface)
2832 {
2833     uint8_t ea[ETH_ADDR_LEN];
2834
2835     if (!strcmp(iface->type, "internal")
2836         && iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
2837         if (iface->ofp_port == OFPP_LOCAL) {
2838             VLOG_ERR("interface %s: ignoring mac in Interface record "
2839                      "(use Bridge record to set local port's mac)",
2840                      iface->name);
2841         } else if (eth_addr_is_multicast(ea)) {
2842             VLOG_ERR("interface %s: cannot set MAC to multicast address",
2843                      iface->name);
2844         } else {
2845             int error = netdev_set_etheraddr(iface->netdev, ea);
2846             if (error) {
2847                 VLOG_ERR("interface %s: setting MAC failed (%s)",
2848                          iface->name, strerror(error));
2849             }
2850         }
2851     }
2852 }
2853
2854 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
2855 static void
2856 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
2857 {
2858     if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2859         ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
2860     }
2861 }
2862
2863 /* Clears all of the fields in 'if_cfg' that indicate interface status, and
2864  * sets the "ofport" field to -1.
2865  *
2866  * This is appropriate when 'if_cfg''s interface cannot be created or is
2867  * otherwise invalid. */
2868 static void
2869 iface_clear_db_record(const struct ovsrec_interface *if_cfg)
2870 {
2871     if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2872         iface_set_ofport(if_cfg, -1);
2873         ovsrec_interface_set_status(if_cfg, NULL, NULL, 0);
2874         ovsrec_interface_set_admin_state(if_cfg, NULL);
2875         ovsrec_interface_set_duplex(if_cfg, NULL);
2876         ovsrec_interface_set_link_speed(if_cfg, NULL, 0);
2877         ovsrec_interface_set_link_state(if_cfg, NULL);
2878         ovsrec_interface_set_mtu(if_cfg, NULL, 0);
2879         ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0);
2880         ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0);
2881         ovsrec_interface_set_lacp_current(if_cfg, NULL, 0);
2882         ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0);
2883     }
2884 }
2885
2886 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
2887  *
2888  * The value strings in '*shash' are taken directly from values[], not copied,
2889  * so the caller should not modify or free them. */
2890 static void
2891 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
2892                        struct shash *shash)
2893 {
2894     size_t i;
2895
2896     shash_init(shash);
2897     for (i = 0; i < n; i++) {
2898         shash_add(shash, keys[i], values[i]);
2899     }
2900 }
2901
2902 /* Creates 'keys' and 'values' arrays from 'shash'.
2903  *
2904  * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
2905  * pairs in 'shash'.  The caller takes ownership of 'keys' and 'values'.  They
2906  * are populated with with strings taken directly from 'shash' and thus have
2907  * the same ownership of the key-value pairs in shash.
2908  */
2909 static void
2910 shash_to_ovs_idl_map(struct shash *shash,
2911                      char ***keys, char ***values, size_t *n)
2912 {
2913     size_t i, count;
2914     char **k, **v;
2915     struct shash_node *sn;
2916
2917     count = shash_count(shash);
2918
2919     k = xmalloc(count * sizeof *k);
2920     v = xmalloc(count * sizeof *v);
2921
2922     i = 0;
2923     SHASH_FOR_EACH(sn, shash) {
2924         k[i] = sn->name;
2925         v[i] = sn->data;
2926         i++;
2927     }
2928
2929     *n      = count;
2930     *keys   = k;
2931     *values = v;
2932 }
2933
2934 struct iface_delete_queues_cbdata {
2935     struct netdev *netdev;
2936     const struct ovsdb_datum *queues;
2937 };
2938
2939 static bool
2940 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
2941 {
2942     union ovsdb_atom atom;
2943
2944     atom.integer = target;
2945     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
2946 }
2947
2948 static void
2949 iface_delete_queues(unsigned int queue_id,
2950                     const struct shash *details OVS_UNUSED, void *cbdata_)
2951 {
2952     struct iface_delete_queues_cbdata *cbdata = cbdata_;
2953
2954     if (!queue_ids_include(cbdata->queues, queue_id)) {
2955         netdev_delete_queue(cbdata->netdev, queue_id);
2956     }
2957 }
2958
2959 static void
2960 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
2961 {
2962     if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) {
2963         netdev_set_qos(iface->netdev, NULL, NULL);
2964     } else {
2965         struct iface_delete_queues_cbdata cbdata;
2966         struct shash details;
2967         bool queue_zero;
2968         size_t i;
2969
2970         /* Configure top-level Qos for 'iface'. */
2971         shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
2972                                qos->n_other_config, &details);
2973         netdev_set_qos(iface->netdev, qos->type, &details);
2974         shash_destroy(&details);
2975
2976         /* Deconfigure queues that were deleted. */
2977         cbdata.netdev = iface->netdev;
2978         cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
2979                                               OVSDB_TYPE_UUID);
2980         netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
2981
2982         /* Configure queues for 'iface'. */
2983         queue_zero = false;
2984         for (i = 0; i < qos->n_queues; i++) {
2985             const struct ovsrec_queue *queue = qos->value_queues[i];
2986             unsigned int queue_id = qos->key_queues[i];
2987
2988             if (queue_id == 0) {
2989                 queue_zero = true;
2990             }
2991
2992             shash_from_ovs_idl_map(queue->key_other_config,
2993                                    queue->value_other_config,
2994                                    queue->n_other_config, &details);
2995             netdev_set_queue(iface->netdev, queue_id, &details);
2996             shash_destroy(&details);
2997         }
2998         if (!queue_zero) {
2999             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
3000             VLOG_WARN_RL(&rl, "interface %s: QoS configured without a default "
3001                          "queue (queue 0).  Packets not directed to a "
3002                          "correctly configured queue may be dropped.",
3003                          iface->name);
3004         }
3005     }
3006
3007     netdev_set_policing(iface->netdev,
3008                         iface->cfg->ingress_policing_rate,
3009                         iface->cfg->ingress_policing_burst);
3010 }
3011
3012 static void
3013 iface_configure_cfm(struct iface *iface)
3014 {
3015     const struct ovsrec_interface *cfg = iface->cfg;
3016     const char *extended_str, *opstate_str;
3017     struct cfm_settings s;
3018
3019     if (!cfg->n_cfm_mpid) {
3020         ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
3021         return;
3022     }
3023
3024     s.mpid = *cfg->cfm_mpid;
3025     s.interval = atoi(get_interface_other_config(iface->cfg, "cfm_interval",
3026                                                  "0"));
3027     s.ccm_vlan = atoi(get_interface_other_config(iface->cfg, "cfm_ccm_vlan",
3028                                                  "0"));
3029     if (s.interval <= 0) {
3030         s.interval = 1000;
3031     }
3032
3033     extended_str = get_interface_other_config(iface->cfg, "cfm_extended",
3034                                               "false");
3035     s.extended = !strcasecmp("true", extended_str);
3036
3037     opstate_str = get_interface_other_config(iface->cfg, "cfm_opstate", "up");
3038     s.opup = !strcasecmp("up", opstate_str);
3039
3040     ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s);
3041 }
3042
3043 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
3044  * instead of obtaining it from the database. */
3045 static bool
3046 iface_is_synthetic(const struct iface *iface)
3047 {
3048     return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
3049 }
3050 \f
3051 /* Port mirroring. */
3052
3053 static struct mirror *
3054 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3055 {
3056     struct mirror *m;
3057
3058     HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
3059         if (uuid_equals(uuid, &m->uuid)) {
3060             return m;
3061         }
3062     }
3063     return NULL;
3064 }
3065
3066 static void
3067 bridge_configure_mirrors(struct bridge *br)
3068 {
3069     const struct ovsdb_datum *mc;
3070     unsigned long *flood_vlans;
3071     struct mirror *m, *next;
3072     size_t i;
3073
3074     /* Get rid of deleted mirrors. */
3075     mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3076     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
3077         union ovsdb_atom atom;
3078
3079         atom.uuid = m->uuid;
3080         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3081             mirror_destroy(m);
3082         }
3083     }
3084
3085     /* Add new mirrors and reconfigure existing ones. */
3086     for (i = 0; i < br->cfg->n_mirrors; i++) {
3087         const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
3088         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3089         if (!m) {
3090             m = mirror_create(br, cfg);
3091         }
3092         if (!mirror_configure(m, cfg)) {
3093             mirror_destroy(m);
3094         }
3095     }
3096
3097     /* Update flooded vlans (for RSPAN). */
3098     flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
3099                                          br->cfg->n_flood_vlans);
3100     ofproto_set_flood_vlans(br->ofproto, flood_vlans);
3101     bitmap_free(flood_vlans);
3102 }
3103
3104 static struct mirror *
3105 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
3106 {
3107     struct mirror *m;
3108
3109     m = xzalloc(sizeof *m);
3110     m->uuid = cfg->header_.uuid;
3111     hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
3112     m->bridge = br;
3113     m->name = xstrdup(cfg->name);
3114
3115     return m;
3116 }
3117
3118 static void
3119 mirror_destroy(struct mirror *m)
3120 {
3121     if (m) {
3122         struct bridge *br = m->bridge;
3123
3124         if (br->ofproto) {
3125             ofproto_mirror_unregister(br->ofproto, m);
3126         }
3127
3128         hmap_remove(&br->mirrors, &m->hmap_node);
3129         free(m->name);
3130         free(m);
3131     }
3132 }
3133
3134 static void
3135 mirror_collect_ports(struct mirror *m,
3136                      struct ovsrec_port **in_ports, int n_in_ports,
3137                      void ***out_portsp, size_t *n_out_portsp)
3138 {
3139     void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
3140     size_t n_out_ports = 0;
3141     size_t i;
3142
3143     for (i = 0; i < n_in_ports; i++) {
3144         const char *name = in_ports[i]->name;
3145         struct port *port = port_lookup(m->bridge, name);
3146         if (port) {
3147             out_ports[n_out_ports++] = port;
3148         } else {
3149             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
3150                       "port %s", m->bridge->name, m->name, name);
3151         }
3152     }
3153     *out_portsp = out_ports;
3154     *n_out_portsp = n_out_ports;
3155 }
3156
3157 static bool
3158 mirror_configure(struct mirror *m, const struct ovsrec_mirror *cfg)
3159 {
3160     struct ofproto_mirror_settings s;
3161
3162     /* Set name. */
3163     if (strcmp(cfg->name, m->name)) {
3164         free(m->name);
3165         m->name = xstrdup(cfg->name);
3166     }
3167     s.name = m->name;
3168
3169     /* Get output port or VLAN. */
3170     if (cfg->output_port) {
3171         s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
3172         if (!s.out_bundle) {
3173             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
3174                      m->bridge->name, m->name);
3175             return false;
3176         }
3177         s.out_vlan = UINT16_MAX;
3178
3179         if (cfg->output_vlan) {
3180             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
3181                      "output vlan; ignoring output vlan",
3182                      m->bridge->name, m->name);
3183         }
3184     } else if (cfg->output_vlan) {
3185         /* The database should prevent invalid VLAN values. */
3186         s.out_bundle = NULL;
3187         s.out_vlan = *cfg->output_vlan;
3188     } else {
3189         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
3190                  m->bridge->name, m->name);
3191         return false;
3192     }
3193
3194     /* Get port selection. */
3195     if (cfg->select_all) {
3196         size_t n_ports = hmap_count(&m->bridge->ports);
3197         void **ports = xmalloc(n_ports * sizeof *ports);
3198         struct port *port;
3199         size_t i;
3200
3201         i = 0;
3202         HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
3203             ports[i++] = port;
3204         }
3205
3206         s.srcs = ports;
3207         s.n_srcs = n_ports;
3208
3209         s.dsts = ports;
3210         s.n_dsts = n_ports;
3211     } else {
3212         /* Get ports, dropping ports that don't exist.
3213          * The IDL ensures that there are no duplicates. */
3214         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
3215                              &s.srcs, &s.n_srcs);
3216         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
3217                              &s.dsts, &s.n_dsts);
3218     }
3219
3220     /* Get VLAN selection. */
3221     s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
3222
3223     /* Configure. */
3224     ofproto_mirror_register(m->bridge->ofproto, m, &s);
3225
3226     /* Clean up. */
3227     if (s.srcs != s.dsts) {
3228         free(s.dsts);
3229     }
3230     free(s.srcs);
3231     free(s.src_vlans);
3232
3233     return true;
3234 }