bridge: Fix incorrect comments.
[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 mostly an update to bridge data structures.  Very little is
377      * pushed 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(char **keys, char **values, size_t n, const char *key)
1188 {
1189     size_t i;
1190
1191     for (i = 0; i < n; i++) {
1192         if (!strcmp(keys[i], key)) {
1193             return values[i];
1194         }
1195     }
1196     return NULL;
1197 }
1198
1199 static const char *
1200 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
1201 {
1202     return get_ovsrec_key_value(br_cfg->key_other_config,
1203                                 br_cfg->value_other_config,
1204                                 br_cfg->n_other_config, key);
1205 }
1206
1207 /* Set Flow eviction threshold */
1208 static void
1209 bridge_configure_flow_eviction_threshold(struct bridge *br)
1210 {
1211     const char *threshold_str;
1212     unsigned threshold;
1213
1214     threshold_str = bridge_get_other_config(br->cfg, "flow-eviction-threshold");
1215     if (threshold_str) {
1216         threshold = strtoul(threshold_str, NULL, 10);
1217     } else {
1218         threshold = OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT;
1219     }
1220     ofproto_set_flow_eviction_threshold(br->ofproto, threshold);
1221 }
1222
1223 /* Set forward BPDU option. */
1224 static void
1225 bridge_configure_forward_bpdu(struct bridge *br)
1226 {
1227     const char *forward_bpdu_str;
1228     bool forward_bpdu = false;
1229
1230     forward_bpdu_str = bridge_get_other_config(br->cfg, "forward-bpdu");
1231     if (forward_bpdu_str && !strcmp(forward_bpdu_str, "true")) {
1232         forward_bpdu = true;
1233     }
1234     ofproto_set_forward_bpdu(br->ofproto, forward_bpdu);
1235 }
1236
1237 static void
1238 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
1239                           struct iface **hw_addr_iface)
1240 {
1241     const char *hwaddr;
1242     struct port *port;
1243     bool found_addr = false;
1244     int error;
1245
1246     *hw_addr_iface = NULL;
1247
1248     /* Did the user request a particular MAC? */
1249     hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
1250     if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
1251         if (eth_addr_is_multicast(ea)) {
1252             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
1253                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1254         } else if (eth_addr_is_zero(ea)) {
1255             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
1256         } else {
1257             return;
1258         }
1259     }
1260
1261     /* Otherwise choose the minimum non-local MAC address among all of the
1262      * interfaces. */
1263     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1264         uint8_t iface_ea[ETH_ADDR_LEN];
1265         struct iface *candidate;
1266         struct iface *iface;
1267
1268         /* Mirror output ports don't participate. */
1269         if (ofproto_is_mirror_output_bundle(br->ofproto, port)) {
1270             continue;
1271         }
1272
1273         /* Choose the MAC address to represent the port. */
1274         iface = NULL;
1275         if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
1276             /* Find the interface with this Ethernet address (if any) so that
1277              * we can provide the correct devname to the caller. */
1278             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1279                 uint8_t candidate_ea[ETH_ADDR_LEN];
1280                 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1281                     && eth_addr_equals(iface_ea, candidate_ea)) {
1282                     iface = candidate;
1283                 }
1284             }
1285         } else {
1286             /* Choose the interface whose MAC address will represent the port.
1287              * The Linux kernel bonding code always chooses the MAC address of
1288              * the first slave added to a bond, and the Fedora networking
1289              * scripts always add slaves to a bond in alphabetical order, so
1290              * for compatibility we choose the interface with the name that is
1291              * first in alphabetical order. */
1292             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1293                 if (!iface || strcmp(candidate->name, iface->name) < 0) {
1294                     iface = candidate;
1295                 }
1296             }
1297
1298             /* The local port doesn't count (since we're trying to choose its
1299              * MAC address anyway). */
1300             if (iface->ofp_port == OFPP_LOCAL) {
1301                 continue;
1302             }
1303
1304             /* Grab MAC. */
1305             error = netdev_get_etheraddr(iface->netdev, iface_ea);
1306             if (error) {
1307                 continue;
1308             }
1309         }
1310
1311         /* Compare against our current choice. */
1312         if (!eth_addr_is_multicast(iface_ea) &&
1313             !eth_addr_is_local(iface_ea) &&
1314             !eth_addr_is_reserved(iface_ea) &&
1315             !eth_addr_is_zero(iface_ea) &&
1316             (!found_addr || eth_addr_compare_3way(iface_ea, ea) < 0))
1317         {
1318             memcpy(ea, iface_ea, ETH_ADDR_LEN);
1319             *hw_addr_iface = iface;
1320             found_addr = true;
1321         }
1322     }
1323     if (found_addr) {
1324         VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1325                  br->name, ETH_ADDR_ARGS(ea));
1326     } else {
1327         memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1328         *hw_addr_iface = NULL;
1329         VLOG_WARN("bridge %s: using default bridge Ethernet "
1330                   "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1331     }
1332 }
1333
1334 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1335  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
1336  * an interface on 'br', then that interface must be passed in as
1337  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1338  * 'hw_addr_iface' must be passed in as a null pointer. */
1339 static uint64_t
1340 bridge_pick_datapath_id(struct bridge *br,
1341                         const uint8_t bridge_ea[ETH_ADDR_LEN],
1342                         struct iface *hw_addr_iface)
1343 {
1344     /*
1345      * The procedure for choosing a bridge MAC address will, in the most
1346      * ordinary case, also choose a unique MAC that we can use as a datapath
1347      * ID.  In some special cases, though, multiple bridges will end up with
1348      * the same MAC address.  This is OK for the bridges, but it will confuse
1349      * the OpenFlow controller, because each datapath needs a unique datapath
1350      * ID.
1351      *
1352      * Datapath IDs must be unique.  It is also very desirable that they be
1353      * stable from one run to the next, so that policy set on a datapath
1354      * "sticks".
1355      */
1356     const char *datapath_id;
1357     uint64_t dpid;
1358
1359     datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1360     if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1361         return dpid;
1362     }
1363
1364     if (hw_addr_iface) {
1365         int vlan;
1366         if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
1367             /*
1368              * A bridge whose MAC address is taken from a VLAN network device
1369              * (that is, a network device created with vconfig(8) or similar
1370              * tool) will have the same MAC address as a bridge on the VLAN
1371              * device's physical network device.
1372              *
1373              * Handle this case by hashing the physical network device MAC
1374              * along with the VLAN identifier.
1375              */
1376             uint8_t buf[ETH_ADDR_LEN + 2];
1377             memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1378             buf[ETH_ADDR_LEN] = vlan >> 8;
1379             buf[ETH_ADDR_LEN + 1] = vlan;
1380             return dpid_from_hash(buf, sizeof buf);
1381         } else {
1382             /*
1383              * Assume that this bridge's MAC address is unique, since it
1384              * doesn't fit any of the cases we handle specially.
1385              */
1386         }
1387     } else {
1388         /*
1389          * A purely internal bridge, that is, one that has no non-virtual
1390          * network devices on it at all, is more difficult because it has no
1391          * natural unique identifier at all.
1392          *
1393          * When the host is a XenServer, we handle this case by hashing the
1394          * host's UUID with the name of the bridge.  Names of bridges are
1395          * persistent across XenServer reboots, although they can be reused if
1396          * an internal network is destroyed and then a new one is later
1397          * created, so this is fairly effective.
1398          *
1399          * When the host is not a XenServer, we punt by using a random MAC
1400          * address on each run.
1401          */
1402         const char *host_uuid = xenserver_get_host_uuid();
1403         if (host_uuid) {
1404             char *combined = xasprintf("%s,%s", host_uuid, br->name);
1405             dpid = dpid_from_hash(combined, strlen(combined));
1406             free(combined);
1407             return dpid;
1408         }
1409     }
1410
1411     return eth_addr_to_uint64(bridge_ea);
1412 }
1413
1414 static uint64_t
1415 dpid_from_hash(const void *data, size_t n)
1416 {
1417     uint8_t hash[SHA1_DIGEST_SIZE];
1418
1419     BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1420     sha1_bytes(data, n, hash);
1421     eth_addr_mark_random(hash);
1422     return eth_addr_to_uint64(hash);
1423 }
1424
1425 static void
1426 iface_refresh_status(struct iface *iface)
1427 {
1428     struct shash sh;
1429
1430     enum netdev_flags flags;
1431     uint32_t current;
1432     int64_t bps;
1433     int mtu;
1434     int64_t mtu_64;
1435     int error;
1436
1437     if (iface_is_synthetic(iface)) {
1438         return;
1439     }
1440
1441     shash_init(&sh);
1442
1443     if (!netdev_get_status(iface->netdev, &sh)) {
1444         size_t n;
1445         char **keys, **values;
1446
1447         shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1448         ovsrec_interface_set_status(iface->cfg, keys, values, n);
1449
1450         free(keys);
1451         free(values);
1452     } else {
1453         ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1454     }
1455
1456     shash_destroy_free_data(&sh);
1457
1458     error = netdev_get_flags(iface->netdev, &flags);
1459     if (!error) {
1460         ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1461     }
1462     else {
1463         ovsrec_interface_set_admin_state(iface->cfg, NULL);
1464     }
1465
1466     error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1467     if (!error) {
1468         ovsrec_interface_set_duplex(iface->cfg,
1469                                     netdev_features_is_full_duplex(current)
1470                                     ? "full" : "half");
1471         /* warning: uint64_t -> int64_t conversion */
1472         bps = netdev_features_to_bps(current);
1473         ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1474     }
1475     else {
1476         ovsrec_interface_set_duplex(iface->cfg, NULL);
1477         ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1478     }
1479
1480     error = netdev_get_mtu(iface->netdev, &mtu);
1481     if (!error) {
1482         mtu_64 = mtu;
1483         ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1484     }
1485     else {
1486         ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1487     }
1488 }
1489
1490 /* Writes 'iface''s CFM statistics to the database. */
1491 static void
1492 iface_refresh_cfm_stats(struct iface *iface)
1493 {
1494     const struct ovsrec_interface *cfg = iface->cfg;
1495     int fault, error;
1496     const uint64_t *rmps;
1497     size_t n_rmps;
1498
1499     if (iface_is_synthetic(iface)) {
1500         return;
1501     }
1502
1503     fault = ofproto_port_get_cfm_fault(iface->port->bridge->ofproto,
1504                                        iface->ofp_port);
1505     if (fault >= 0) {
1506         bool fault_bool = fault;
1507         ovsrec_interface_set_cfm_fault(cfg, &fault_bool, 1);
1508     } else {
1509         ovsrec_interface_set_cfm_fault(cfg, NULL, 0);
1510     }
1511
1512     error = ofproto_port_get_cfm_remote_mpids(iface->port->bridge->ofproto,
1513                                               iface->ofp_port, &rmps, &n_rmps);
1514     if (error >= 0) {
1515         ovsrec_interface_set_cfm_remote_mpids(cfg, (const int64_t *)rmps,
1516                                               n_rmps);
1517     } else {
1518         ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0);
1519     }
1520 }
1521
1522 static void
1523 iface_refresh_stats(struct iface *iface)
1524 {
1525 #define IFACE_STATS                             \
1526     IFACE_STAT(rx_packets,      "rx_packets")   \
1527     IFACE_STAT(tx_packets,      "tx_packets")   \
1528     IFACE_STAT(rx_bytes,        "rx_bytes")     \
1529     IFACE_STAT(tx_bytes,        "tx_bytes")     \
1530     IFACE_STAT(rx_dropped,      "rx_dropped")   \
1531     IFACE_STAT(tx_dropped,      "tx_dropped")   \
1532     IFACE_STAT(rx_errors,       "rx_errors")    \
1533     IFACE_STAT(tx_errors,       "tx_errors")    \
1534     IFACE_STAT(rx_frame_errors, "rx_frame_err") \
1535     IFACE_STAT(rx_over_errors,  "rx_over_err")  \
1536     IFACE_STAT(rx_crc_errors,   "rx_crc_err")   \
1537     IFACE_STAT(collisions,      "collisions")
1538
1539 #define IFACE_STAT(MEMBER, NAME) NAME,
1540     static char *keys[] = { IFACE_STATS };
1541 #undef IFACE_STAT
1542     int64_t values[ARRAY_SIZE(keys)];
1543     int i;
1544
1545     struct netdev_stats stats;
1546
1547     if (iface_is_synthetic(iface)) {
1548         return;
1549     }
1550
1551     /* Intentionally ignore return value, since errors will set 'stats' to
1552      * all-1s, and we will deal with that correctly below. */
1553     netdev_get_stats(iface->netdev, &stats);
1554
1555     /* Copy statistics into values[] array. */
1556     i = 0;
1557 #define IFACE_STAT(MEMBER, NAME) values[i++] = stats.MEMBER;
1558     IFACE_STATS;
1559 #undef IFACE_STAT
1560     assert(i == ARRAY_SIZE(keys));
1561
1562     ovsrec_interface_set_statistics(iface->cfg, keys, values, ARRAY_SIZE(keys));
1563 #undef IFACE_STATS
1564 }
1565
1566 static void
1567 br_refresh_stp_status(struct bridge *br)
1568 {
1569     struct ofproto *ofproto = br->ofproto;
1570     struct ofproto_stp_status status;
1571     char *keys[3], *values[3];
1572     size_t i;
1573
1574     if (ofproto_get_stp_status(ofproto, &status)) {
1575         return;
1576     }
1577
1578     if (!status.enabled) {
1579         ovsrec_bridge_set_status(br->cfg, NULL, NULL, 0);
1580         return;
1581     }
1582
1583     keys[0] = "stp_bridge_id",
1584     values[0] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.bridge_id));
1585     keys[1] = "stp_designated_root",
1586     values[1] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.designated_root));
1587     keys[2] = "stp_root_path_cost",
1588     values[2] = xasprintf("%d", status.root_path_cost);
1589
1590     ovsrec_bridge_set_status(br->cfg, keys, values, ARRAY_SIZE(values));
1591
1592     for (i = 0; i < ARRAY_SIZE(values); i++) {
1593         free(values[i]);
1594     }
1595 }
1596
1597 static void
1598 port_refresh_stp_status(struct port *port)
1599 {
1600     struct ofproto *ofproto = port->bridge->ofproto;
1601     struct iface *iface;
1602     struct ofproto_port_stp_status status;
1603     char *keys[4];
1604     char *str_values[4];
1605     int64_t int_values[3];
1606     size_t i;
1607
1608     if (port_is_synthetic(port)) {
1609         return;
1610     }
1611
1612     /* STP doesn't currently support bonds. */
1613     if (!list_is_singleton(&port->ifaces)) {
1614         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1615         return;
1616     }
1617
1618     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1619
1620     if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) {
1621         return;
1622     }
1623
1624     if (!status.enabled) {
1625         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1626         ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0);
1627         return;
1628     }
1629
1630     /* Set Status column. */
1631     keys[0] = "stp_port_id";
1632     str_values[0] = xasprintf(STP_PORT_ID_FMT, status.port_id);
1633     keys[1] = "stp_state";
1634     str_values[1] = xstrdup(stp_state_name(status.state));
1635     keys[2] = "stp_sec_in_state";
1636     str_values[2] = xasprintf("%u", status.sec_in_state);
1637     keys[3] = "stp_role";
1638     str_values[3] = xstrdup(stp_role_name(status.role));
1639
1640     ovsrec_port_set_status(port->cfg, keys, str_values,
1641                            ARRAY_SIZE(str_values));
1642
1643     for (i = 0; i < ARRAY_SIZE(str_values); i++) {
1644         free(str_values[i]);
1645     }
1646
1647     /* Set Statistics column. */
1648     keys[0] = "stp_tx_count";
1649     int_values[0] = status.tx_count;
1650     keys[1] = "stp_rx_count";
1651     int_values[1] = status.rx_count;
1652     keys[2] = "stp_error_count";
1653     int_values[2] = status.error_count;
1654
1655     ovsrec_port_set_statistics(port->cfg, keys, int_values,
1656                                ARRAY_SIZE(int_values));
1657 }
1658
1659 static bool
1660 enable_system_stats(const struct ovsrec_open_vswitch *cfg)
1661 {
1662     const char *enable;
1663
1664     /* Use other-config:enable-system-stats by preference. */
1665     enable = get_ovsrec_key_value(cfg->key_other_config,
1666                                   cfg->value_other_config,
1667                                   cfg->n_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     HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
2194         port->cfg = shash_find_data(&new_ports, port->name);
2195         if (!port->cfg) {
2196             port_destroy(port);
2197         } else {
2198             port_del_ifaces(port);
2199         }
2200     }
2201
2202     /* Create new ports.
2203      * Add new interfaces to existing ports. */
2204     SHASH_FOR_EACH (node, &new_ports) {
2205         struct port *port = port_lookup(br, node->name);
2206         if (!port) {
2207             struct ovsrec_port *cfg = node->data;
2208             port = port_create(br, cfg);
2209         }
2210         port_add_ifaces(port);
2211         if (list_is_empty(&port->ifaces)) {
2212             VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2213                       br->name, port->name);
2214             port_destroy(port);
2215         }
2216     }
2217     shash_destroy(&new_ports);
2218 }
2219
2220 /* Initializes 'oc' appropriately as a management service controller for
2221  * 'br'.
2222  *
2223  * The caller must free oc->target when it is no longer needed. */
2224 static void
2225 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
2226                                    struct ofproto_controller *oc)
2227 {
2228     oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
2229     oc->max_backoff = 0;
2230     oc->probe_interval = 60;
2231     oc->band = OFPROTO_OUT_OF_BAND;
2232     oc->rate_limit = 0;
2233     oc->burst_limit = 0;
2234 }
2235
2236 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'.  */
2237 static void
2238 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
2239                                       struct ofproto_controller *oc)
2240 {
2241     oc->target = c->target;
2242     oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
2243     oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
2244     oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
2245                 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
2246     oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
2247     oc->burst_limit = (c->controller_burst_limit
2248                        ? *c->controller_burst_limit : 0);
2249 }
2250
2251 /* Configures the IP stack for 'br''s local interface properly according to the
2252  * configuration in 'c'.  */
2253 static void
2254 bridge_configure_local_iface_netdev(struct bridge *br,
2255                                     struct ovsrec_controller *c)
2256 {
2257     struct netdev *netdev;
2258     struct in_addr mask, gateway;
2259
2260     struct iface *local_iface;
2261     struct in_addr ip;
2262
2263     /* If there's no local interface or no IP address, give up. */
2264     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
2265     if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
2266         return;
2267     }
2268
2269     /* Bring up the local interface. */
2270     netdev = local_iface->netdev;
2271     netdev_turn_flags_on(netdev, NETDEV_UP, true);
2272
2273     /* Configure the IP address and netmask. */
2274     if (!c->local_netmask
2275         || !inet_aton(c->local_netmask, &mask)
2276         || !mask.s_addr) {
2277         mask.s_addr = guess_netmask(ip.s_addr);
2278     }
2279     if (!netdev_set_in4(netdev, ip, mask)) {
2280         VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
2281                   br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
2282     }
2283
2284     /* Configure the default gateway. */
2285     if (c->local_gateway
2286         && inet_aton(c->local_gateway, &gateway)
2287         && gateway.s_addr) {
2288         if (!netdev_add_router(netdev, gateway)) {
2289             VLOG_INFO("bridge %s: configured gateway "IP_FMT,
2290                       br->name, IP_ARGS(&gateway.s_addr));
2291         }
2292     }
2293 }
2294
2295 /* Returns true if 'a' and 'b' are the same except that any number of slashes
2296  * in either string are treated as equal to any number of slashes in the other,
2297  * e.g. "x///y" is equal to "x/y". */
2298 static bool
2299 equal_pathnames(const char *a, const char *b)
2300 {
2301     while (*a == *b) {
2302         if (*a == '/') {
2303             a += strspn(a, "/");
2304             b += strspn(b, "/");
2305         } else if (*a == '\0') {
2306             return true;
2307         } else {
2308             a++;
2309             b++;
2310         }
2311     }
2312     return false;
2313 }
2314
2315 static void
2316 bridge_configure_remotes(struct bridge *br,
2317                          const struct sockaddr_in *managers, size_t n_managers)
2318 {
2319     const char *disable_ib_str, *queue_id_str;
2320     bool disable_in_band = false;
2321     int queue_id;
2322
2323     struct ovsrec_controller **controllers;
2324     size_t n_controllers;
2325
2326     enum ofproto_fail_mode fail_mode;
2327
2328     struct ofproto_controller *ocs;
2329     size_t n_ocs;
2330     size_t i;
2331
2332     /* Check if we should disable in-band control on this bridge. */
2333     disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
2334     if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
2335         disable_in_band = true;
2336     }
2337
2338     /* Set OpenFlow queue ID for in-band control. */
2339     queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
2340     queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
2341     ofproto_set_in_band_queue(br->ofproto, queue_id);
2342
2343     if (disable_in_band) {
2344         ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
2345     } else {
2346         ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
2347     }
2348
2349     n_controllers = bridge_get_controllers(br, &controllers);
2350
2351     ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
2352     n_ocs = 0;
2353
2354     bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
2355     for (i = 0; i < n_controllers; i++) {
2356         struct ovsrec_controller *c = controllers[i];
2357
2358         if (!strncmp(c->target, "punix:", 6)
2359             || !strncmp(c->target, "unix:", 5)) {
2360             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2361             char *whitelist;
2362
2363             whitelist = xasprintf("unix:%s/%s.controller",
2364                                   ovs_rundir(), br->name);
2365             if (!equal_pathnames(c->target, whitelist)) {
2366                 /* Prevent remote ovsdb-server users from accessing arbitrary
2367                  * Unix domain sockets and overwriting arbitrary local
2368                  * files. */
2369                 VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket "
2370                             "controller \"%s\" due to possibility for remote "
2371                             "exploit.  Instead, specify whitelisted \"%s\" or "
2372                             "connect to \"unix:%s/%s.mgmt\" (which is always "
2373                             "available without special configuration).",
2374                             br->name, c->target, whitelist,
2375                             ovs_rundir(), br->name);
2376                 free(whitelist);
2377                 continue;
2378             }
2379
2380             free(whitelist);
2381         }
2382
2383         bridge_configure_local_iface_netdev(br, c);
2384         bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2385         if (disable_in_band) {
2386             ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2387         }
2388         n_ocs++;
2389     }
2390
2391     ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2392     free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2393     free(ocs);
2394
2395     /* Set the fail-mode. */
2396     fail_mode = !br->cfg->fail_mode
2397                 || !strcmp(br->cfg->fail_mode, "standalone")
2398                     ? OFPROTO_FAIL_STANDALONE
2399                     : OFPROTO_FAIL_SECURE;
2400     ofproto_set_fail_mode(br->ofproto, fail_mode);
2401
2402     /* Configure OpenFlow controller connection snooping. */
2403     if (!ofproto_has_snoops(br->ofproto)) {
2404         struct sset snoops;
2405
2406         sset_init(&snoops);
2407         sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
2408                                              ovs_rundir(), br->name));
2409         ofproto_set_snoops(br->ofproto, &snoops);
2410         sset_destroy(&snoops);
2411     }
2412 }
2413 \f
2414 /* Port functions. */
2415
2416 static struct port *
2417 port_create(struct bridge *br, const struct ovsrec_port *cfg)
2418 {
2419     struct port *port;
2420
2421     port = xzalloc(sizeof *port);
2422     port->bridge = br;
2423     port->name = xstrdup(cfg->name);
2424     port->cfg = cfg;
2425     list_init(&port->ifaces);
2426
2427     hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
2428
2429     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2430
2431     return port;
2432 }
2433
2434 static const char *
2435 get_port_other_config(const struct ovsrec_port *port, const char *key,
2436                       const char *default_value)
2437 {
2438     const char *value;
2439
2440     value = get_ovsrec_key_value(port->key_other_config,
2441                                  port->value_other_config,
2442                                  port->n_other_config, 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->key_other_config,
2453                                  iface->value_other_config,
2454                                  iface->n_other_config, key);
2455     return value ? value : default_value;
2456 }
2457
2458 /* Deletes interfaces from 'port' that are no longer configured for it. */
2459 static void
2460 port_del_ifaces(struct port *port)
2461 {
2462     struct iface *iface, *next;
2463     struct sset new_ifaces;
2464     size_t i;
2465
2466     /* Collect list of new interfaces. */
2467     sset_init(&new_ifaces);
2468     for (i = 0; i < port->cfg->n_interfaces; i++) {
2469         const char *name = port->cfg->interfaces[i]->name;
2470         const char *type = port->cfg->interfaces[i]->name;
2471         if (strcmp(type, "null")) {
2472             sset_add(&new_ifaces, name);
2473         }
2474     }
2475
2476     /* Get rid of deleted interfaces. */
2477     LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2478         if (!sset_contains(&new_ifaces, iface->name)) {
2479             iface_destroy(iface);
2480         }
2481     }
2482
2483     sset_destroy(&new_ifaces);
2484 }
2485
2486 /* Adds new interfaces to 'port' and updates 'type' and 'cfg' members of
2487  * existing ones. */
2488 static void
2489 port_add_ifaces(struct port *port)
2490 {
2491     struct shash new_ifaces;
2492     struct shash_node *node;
2493     size_t i;
2494
2495     /* Collect new ifaces. */
2496     shash_init(&new_ifaces);
2497     for (i = 0; i < port->cfg->n_interfaces; i++) {
2498         const struct ovsrec_interface *cfg = port->cfg->interfaces[i];
2499         if (strcmp(cfg->type, "null")
2500             && !shash_add_once(&new_ifaces, cfg->name, cfg)) {
2501             VLOG_WARN("port %s: %s specified twice as port interface",
2502                       port->name, cfg->name);
2503             iface_clear_db_record(cfg);
2504         }
2505     }
2506
2507     /* Create new interfaces.
2508      * Update interface types and 'cfg' members. */
2509     SHASH_FOR_EACH (node, &new_ifaces) {
2510         const struct ovsrec_interface *cfg = node->data;
2511         const char *iface_name = node->name;
2512         struct iface *iface;
2513
2514         iface = iface_lookup(port->bridge, iface_name);
2515         if (!iface) {
2516             iface = iface_create(port, cfg);
2517         } else {
2518             iface->cfg = cfg;
2519         }
2520
2521         /* Determine interface type.  The local port always has type
2522          * "internal".  Other ports take their type from the database and
2523          * default to "system" if none is specified. */
2524         iface->type = (!strcmp(iface_name, port->bridge->name) ? "internal"
2525                        : cfg->type[0] ? cfg->type
2526                        : "system");
2527     }
2528     shash_destroy(&new_ifaces);
2529 }
2530
2531 static void
2532 port_destroy(struct port *port)
2533 {
2534     if (port) {
2535         struct bridge *br = port->bridge;
2536         struct iface *iface, *next;
2537
2538         if (br->ofproto) {
2539             ofproto_bundle_unregister(br->ofproto, port);
2540         }
2541
2542         LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2543             iface_destroy(iface);
2544         }
2545
2546         hmap_remove(&br->ports, &port->hmap_node);
2547
2548         VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
2549
2550         free(port->name);
2551         free(port);
2552     }
2553 }
2554
2555 static struct port *
2556 port_lookup(const struct bridge *br, const char *name)
2557 {
2558     struct port *port;
2559
2560     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
2561                              &br->ports) {
2562         if (!strcmp(port->name, name)) {
2563             return port;
2564         }
2565     }
2566     return NULL;
2567 }
2568
2569 static bool
2570 enable_lacp(struct port *port, bool *activep)
2571 {
2572     if (!port->cfg->lacp) {
2573         /* XXX when LACP implementation has been sufficiently tested, enable by
2574          * default and make active on bonded ports. */
2575         return false;
2576     } else if (!strcmp(port->cfg->lacp, "off")) {
2577         return false;
2578     } else if (!strcmp(port->cfg->lacp, "active")) {
2579         *activep = true;
2580         return true;
2581     } else if (!strcmp(port->cfg->lacp, "passive")) {
2582         *activep = false;
2583         return true;
2584     } else {
2585         VLOG_WARN("port %s: unknown LACP mode %s",
2586                   port->name, port->cfg->lacp);
2587         return false;
2588     }
2589 }
2590
2591 static struct lacp_settings *
2592 port_configure_lacp(struct port *port, struct lacp_settings *s)
2593 {
2594     const char *lacp_time;
2595     long long int custom_time;
2596     int priority;
2597
2598     if (!enable_lacp(port, &s->active)) {
2599         return NULL;
2600     }
2601
2602     s->name = port->name;
2603     memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN);
2604
2605     /* Prefer bondable links if unspecified. */
2606     priority = atoi(get_port_other_config(port->cfg, "lacp-system-priority",
2607                                           "0"));
2608     s->priority = (priority > 0 && priority <= UINT16_MAX
2609                    ? priority
2610                    : UINT16_MAX - !list_is_short(&port->ifaces));
2611
2612     s->heartbeat = !strcmp(get_port_other_config(port->cfg,
2613                                                  "lacp-heartbeat",
2614                                                  "false"), "true");
2615
2616
2617     lacp_time = get_port_other_config(port->cfg, "lacp-time", "slow");
2618     custom_time = atoi(lacp_time);
2619     if (!strcmp(lacp_time, "fast")) {
2620         s->lacp_time = LACP_TIME_FAST;
2621     } else if (!strcmp(lacp_time, "slow")) {
2622         s->lacp_time = LACP_TIME_SLOW;
2623     } else if (custom_time > 0) {
2624         s->lacp_time = LACP_TIME_CUSTOM;
2625         s->custom_time = custom_time;
2626     } else {
2627         s->lacp_time = LACP_TIME_SLOW;
2628     }
2629
2630     return s;
2631 }
2632
2633 static void
2634 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
2635 {
2636     int priority, portid, key;
2637
2638     portid = atoi(get_interface_other_config(iface->cfg, "lacp-port-id", "0"));
2639     priority = atoi(get_interface_other_config(iface->cfg,
2640                                                "lacp-port-priority", "0"));
2641     key = atoi(get_interface_other_config(iface->cfg, "lacp-aggregation-key",
2642                                           "0"));
2643
2644     if (portid <= 0 || portid > UINT16_MAX) {
2645         portid = iface->ofp_port;
2646     }
2647
2648     if (priority <= 0 || priority > UINT16_MAX) {
2649         priority = UINT16_MAX;
2650     }
2651
2652     if (key < 0 || key > UINT16_MAX) {
2653         key = 0;
2654     }
2655
2656     s->name = iface->name;
2657     s->id = portid;
2658     s->priority = priority;
2659     s->key = key;
2660 }
2661
2662 static void
2663 port_configure_bond(struct port *port, struct bond_settings *s,
2664                     uint32_t *bond_stable_ids)
2665 {
2666     const char *detect_s;
2667     struct iface *iface;
2668     int miimon_interval;
2669     size_t i;
2670
2671     s->name = port->name;
2672     s->balance = BM_SLB;
2673     if (port->cfg->bond_mode
2674         && !bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
2675         VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
2676                   port->name, port->cfg->bond_mode,
2677                   bond_mode_to_string(s->balance));
2678     }
2679     if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) {
2680         VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, "
2681                   "please use another bond type or disable flood_vlans",
2682                   port->name);
2683     }
2684
2685     miimon_interval = atoi(get_port_other_config(port->cfg,
2686                                                  "bond-miimon-interval", "0"));
2687     if (miimon_interval <= 0) {
2688         miimon_interval = 200;
2689     }
2690
2691     detect_s = get_port_other_config(port->cfg, "bond-detect-mode", "carrier");
2692     if (!strcmp(detect_s, "carrier")) {
2693         miimon_interval = 0;
2694     } else if (strcmp(detect_s, "miimon")) {
2695         VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
2696                   "defaulting to carrier", port->name, detect_s);
2697         miimon_interval = 0;
2698     }
2699
2700     s->up_delay = MAX(0, port->cfg->bond_updelay);
2701     s->down_delay = MAX(0, port->cfg->bond_downdelay);
2702     s->basis = atoi(get_port_other_config(port->cfg, "bond-hash-basis", "0"));
2703     s->rebalance_interval = atoi(
2704         get_port_other_config(port->cfg, "bond-rebalance-interval", "10000"));
2705     if (s->rebalance_interval < 1000) {
2706         s->rebalance_interval = 1000;
2707     }
2708
2709     s->fake_iface = port->cfg->bond_fake_iface;
2710
2711     i = 0;
2712     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2713         long long stable_id;
2714
2715         stable_id = atoll(get_interface_other_config(iface->cfg,
2716                                                      "bond-stable-id", "0"));
2717         if (stable_id <= 0 || stable_id >= UINT32_MAX) {
2718             stable_id = iface->ofp_port;
2719         }
2720         bond_stable_ids[i++] = stable_id;
2721
2722         netdev_set_miimon_interval(iface->netdev, miimon_interval);
2723     }
2724 }
2725
2726 /* Returns true if 'port' is synthetic, that is, if we constructed it locally
2727  * instead of obtaining it from the database. */
2728 static bool
2729 port_is_synthetic(const struct port *port)
2730 {
2731     return ovsdb_idl_row_is_synthetic(&port->cfg->header_);
2732 }
2733 \f
2734 /* Interface functions. */
2735
2736 static struct iface *
2737 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
2738 {
2739     struct bridge *br = port->bridge;
2740     struct iface *iface;
2741     char *name = if_cfg->name;
2742
2743     iface = xzalloc(sizeof *iface);
2744     iface->port = port;
2745     iface->name = xstrdup(name);
2746     iface->ofp_port = -1;
2747     iface->tag = tag_create_random();
2748     iface->netdev = NULL;
2749     iface->cfg = if_cfg;
2750
2751     hmap_insert(&br->iface_by_name, &iface->name_node, hash_string(name, 0));
2752
2753     list_push_back(&port->ifaces, &iface->port_elem);
2754
2755     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
2756
2757     return iface;
2758 }
2759
2760 static void
2761 iface_destroy(struct iface *iface)
2762 {
2763     if (iface) {
2764         struct port *port = iface->port;
2765         struct bridge *br = port->bridge;
2766
2767         if (br->ofproto && iface->ofp_port >= 0) {
2768             ofproto_port_unregister(br->ofproto, iface->ofp_port);
2769         }
2770
2771         if (iface->ofp_port >= 0) {
2772             hmap_remove(&br->ifaces, &iface->ofp_port_node);
2773         }
2774
2775         list_remove(&iface->port_elem);
2776         hmap_remove(&br->iface_by_name, &iface->name_node);
2777
2778         netdev_close(iface->netdev);
2779
2780         free(iface->name);
2781         free(iface);
2782     }
2783 }
2784
2785 static struct iface *
2786 iface_lookup(const struct bridge *br, const char *name)
2787 {
2788     struct iface *iface;
2789
2790     HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
2791                              &br->iface_by_name) {
2792         if (!strcmp(iface->name, name)) {
2793             return iface;
2794         }
2795     }
2796
2797     return NULL;
2798 }
2799
2800 static struct iface *
2801 iface_find(const char *name)
2802 {
2803     const struct bridge *br;
2804
2805     HMAP_FOR_EACH (br, node, &all_bridges) {
2806         struct iface *iface = iface_lookup(br, name);
2807
2808         if (iface) {
2809             return iface;
2810         }
2811     }
2812     return NULL;
2813 }
2814
2815 static struct iface *
2816 iface_from_ofp_port(const struct bridge *br, uint16_t ofp_port)
2817 {
2818     struct iface *iface;
2819
2820     HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node,
2821                              hash_int(ofp_port, 0), &br->ifaces) {
2822         if (iface->ofp_port == ofp_port) {
2823             return iface;
2824         }
2825     }
2826     return NULL;
2827 }
2828
2829 /* Set Ethernet address of 'iface', if one is specified in the configuration
2830  * file. */
2831 static void
2832 iface_set_mac(struct iface *iface)
2833 {
2834     uint8_t ea[ETH_ADDR_LEN];
2835
2836     if (!strcmp(iface->type, "internal")
2837         && iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
2838         if (iface->ofp_port == OFPP_LOCAL) {
2839             VLOG_ERR("interface %s: ignoring mac in Interface record "
2840                      "(use Bridge record to set local port's mac)",
2841                      iface->name);
2842         } else if (eth_addr_is_multicast(ea)) {
2843             VLOG_ERR("interface %s: cannot set MAC to multicast address",
2844                      iface->name);
2845         } else {
2846             int error = netdev_set_etheraddr(iface->netdev, ea);
2847             if (error) {
2848                 VLOG_ERR("interface %s: setting MAC failed (%s)",
2849                          iface->name, strerror(error));
2850             }
2851         }
2852     }
2853 }
2854
2855 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
2856 static void
2857 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
2858 {
2859     if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2860         ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
2861     }
2862 }
2863
2864 /* Clears all of the fields in 'if_cfg' that indicate interface status, and
2865  * sets the "ofport" field to -1.
2866  *
2867  * This is appropriate when 'if_cfg''s interface cannot be created or is
2868  * otherwise invalid. */
2869 static void
2870 iface_clear_db_record(const struct ovsrec_interface *if_cfg)
2871 {
2872     if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2873         iface_set_ofport(if_cfg, -1);
2874         ovsrec_interface_set_status(if_cfg, NULL, NULL, 0);
2875         ovsrec_interface_set_admin_state(if_cfg, NULL);
2876         ovsrec_interface_set_duplex(if_cfg, NULL);
2877         ovsrec_interface_set_link_speed(if_cfg, NULL, 0);
2878         ovsrec_interface_set_link_state(if_cfg, NULL);
2879         ovsrec_interface_set_mtu(if_cfg, NULL, 0);
2880         ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0);
2881         ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0);
2882         ovsrec_interface_set_lacp_current(if_cfg, NULL, 0);
2883         ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0);
2884     }
2885 }
2886
2887 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
2888  *
2889  * The value strings in '*shash' are taken directly from values[], not copied,
2890  * so the caller should not modify or free them. */
2891 static void
2892 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
2893                        struct shash *shash)
2894 {
2895     size_t i;
2896
2897     shash_init(shash);
2898     for (i = 0; i < n; i++) {
2899         shash_add(shash, keys[i], values[i]);
2900     }
2901 }
2902
2903 /* Creates 'keys' and 'values' arrays from 'shash'.
2904  *
2905  * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
2906  * pairs in 'shash'.  The caller takes ownership of 'keys' and 'values'.  They
2907  * are populated with with strings taken directly from 'shash' and thus have
2908  * the same ownership of the key-value pairs in shash.
2909  */
2910 static void
2911 shash_to_ovs_idl_map(struct shash *shash,
2912                      char ***keys, char ***values, size_t *n)
2913 {
2914     size_t i, count;
2915     char **k, **v;
2916     struct shash_node *sn;
2917
2918     count = shash_count(shash);
2919
2920     k = xmalloc(count * sizeof *k);
2921     v = xmalloc(count * sizeof *v);
2922
2923     i = 0;
2924     SHASH_FOR_EACH(sn, shash) {
2925         k[i] = sn->name;
2926         v[i] = sn->data;
2927         i++;
2928     }
2929
2930     *n      = count;
2931     *keys   = k;
2932     *values = v;
2933 }
2934
2935 struct iface_delete_queues_cbdata {
2936     struct netdev *netdev;
2937     const struct ovsdb_datum *queues;
2938 };
2939
2940 static bool
2941 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
2942 {
2943     union ovsdb_atom atom;
2944
2945     atom.integer = target;
2946     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
2947 }
2948
2949 static void
2950 iface_delete_queues(unsigned int queue_id,
2951                     const struct shash *details OVS_UNUSED, void *cbdata_)
2952 {
2953     struct iface_delete_queues_cbdata *cbdata = cbdata_;
2954
2955     if (!queue_ids_include(cbdata->queues, queue_id)) {
2956         netdev_delete_queue(cbdata->netdev, queue_id);
2957     }
2958 }
2959
2960 static void
2961 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
2962 {
2963     struct ofpbuf queues_buf;
2964
2965     ofpbuf_init(&queues_buf, 0);
2966
2967     if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) {
2968         netdev_set_qos(iface->netdev, NULL, NULL);
2969     } else {
2970         struct iface_delete_queues_cbdata cbdata;
2971         struct shash details;
2972         bool queue_zero;
2973         size_t i;
2974
2975         /* Configure top-level Qos for 'iface'. */
2976         shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
2977                                qos->n_other_config, &details);
2978         netdev_set_qos(iface->netdev, qos->type, &details);
2979         shash_destroy(&details);
2980
2981         /* Deconfigure queues that were deleted. */
2982         cbdata.netdev = iface->netdev;
2983         cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
2984                                               OVSDB_TYPE_UUID);
2985         netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
2986
2987         /* Configure queues for 'iface'. */
2988         queue_zero = false;
2989         for (i = 0; i < qos->n_queues; i++) {
2990             const struct ovsrec_queue *queue = qos->value_queues[i];
2991             unsigned int queue_id = qos->key_queues[i];
2992
2993             if (queue_id == 0) {
2994                 queue_zero = true;
2995             }
2996
2997             if (queue->n_dscp == 1) {
2998                 struct ofproto_port_queue *port_queue;
2999
3000                 port_queue = ofpbuf_put_uninit(&queues_buf,
3001                                                sizeof *port_queue);
3002                 port_queue->queue = queue_id;
3003                 port_queue->dscp = queue->dscp[0];
3004             }
3005
3006             shash_from_ovs_idl_map(queue->key_other_config,
3007                                    queue->value_other_config,
3008                                    queue->n_other_config, &details);
3009             netdev_set_queue(iface->netdev, queue_id, &details);
3010             shash_destroy(&details);
3011         }
3012         if (!queue_zero) {
3013             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
3014             VLOG_WARN_RL(&rl, "interface %s: QoS configured without a default "
3015                          "queue (queue 0).  Packets not directed to a "
3016                          "correctly configured queue may be dropped.",
3017                          iface->name);
3018         }
3019     }
3020
3021     if (iface->ofp_port >= 0) {
3022         const struct ofproto_port_queue *port_queues = queues_buf.data;
3023         size_t n_queues = queues_buf.size / sizeof *port_queues;
3024
3025         ofproto_port_set_queues(iface->port->bridge->ofproto, iface->ofp_port,
3026                                 port_queues, n_queues);
3027     }
3028
3029     netdev_set_policing(iface->netdev,
3030                         iface->cfg->ingress_policing_rate,
3031                         iface->cfg->ingress_policing_burst);
3032
3033     ofpbuf_uninit(&queues_buf);
3034 }
3035
3036 static void
3037 iface_configure_cfm(struct iface *iface)
3038 {
3039     const struct ovsrec_interface *cfg = iface->cfg;
3040     const char *extended_str, *opstate_str;
3041     struct cfm_settings s;
3042
3043     if (!cfg->n_cfm_mpid) {
3044         ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
3045         return;
3046     }
3047
3048     s.mpid = *cfg->cfm_mpid;
3049     s.interval = atoi(get_interface_other_config(iface->cfg, "cfm_interval",
3050                                                  "0"));
3051     s.ccm_vlan = atoi(get_interface_other_config(iface->cfg, "cfm_ccm_vlan",
3052                                                  "0"));
3053     if (s.interval <= 0) {
3054         s.interval = 1000;
3055     }
3056
3057     extended_str = get_interface_other_config(iface->cfg, "cfm_extended",
3058                                               "false");
3059     s.extended = !strcasecmp("true", extended_str);
3060
3061     opstate_str = get_interface_other_config(iface->cfg, "cfm_opstate", "up");
3062     s.opup = !strcasecmp("up", opstate_str);
3063
3064     ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s);
3065 }
3066
3067 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
3068  * instead of obtaining it from the database. */
3069 static bool
3070 iface_is_synthetic(const struct iface *iface)
3071 {
3072     return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
3073 }
3074 \f
3075 /* Port mirroring. */
3076
3077 static struct mirror *
3078 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3079 {
3080     struct mirror *m;
3081
3082     HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
3083         if (uuid_equals(uuid, &m->uuid)) {
3084             return m;
3085         }
3086     }
3087     return NULL;
3088 }
3089
3090 static void
3091 bridge_configure_mirrors(struct bridge *br)
3092 {
3093     const struct ovsdb_datum *mc;
3094     unsigned long *flood_vlans;
3095     struct mirror *m, *next;
3096     size_t i;
3097
3098     /* Get rid of deleted mirrors. */
3099     mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3100     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
3101         union ovsdb_atom atom;
3102
3103         atom.uuid = m->uuid;
3104         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3105             mirror_destroy(m);
3106         }
3107     }
3108
3109     /* Add new mirrors and reconfigure existing ones. */
3110     for (i = 0; i < br->cfg->n_mirrors; i++) {
3111         const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
3112         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3113         if (!m) {
3114             m = mirror_create(br, cfg);
3115         }
3116         if (!mirror_configure(m, cfg)) {
3117             mirror_destroy(m);
3118         }
3119     }
3120
3121     /* Update flooded vlans (for RSPAN). */
3122     flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
3123                                          br->cfg->n_flood_vlans);
3124     ofproto_set_flood_vlans(br->ofproto, flood_vlans);
3125     bitmap_free(flood_vlans);
3126 }
3127
3128 static struct mirror *
3129 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
3130 {
3131     struct mirror *m;
3132
3133     m = xzalloc(sizeof *m);
3134     m->uuid = cfg->header_.uuid;
3135     hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
3136     m->bridge = br;
3137     m->name = xstrdup(cfg->name);
3138
3139     return m;
3140 }
3141
3142 static void
3143 mirror_destroy(struct mirror *m)
3144 {
3145     if (m) {
3146         struct bridge *br = m->bridge;
3147
3148         if (br->ofproto) {
3149             ofproto_mirror_unregister(br->ofproto, m);
3150         }
3151
3152         hmap_remove(&br->mirrors, &m->hmap_node);
3153         free(m->name);
3154         free(m);
3155     }
3156 }
3157
3158 static void
3159 mirror_collect_ports(struct mirror *m,
3160                      struct ovsrec_port **in_ports, int n_in_ports,
3161                      void ***out_portsp, size_t *n_out_portsp)
3162 {
3163     void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
3164     size_t n_out_ports = 0;
3165     size_t i;
3166
3167     for (i = 0; i < n_in_ports; i++) {
3168         const char *name = in_ports[i]->name;
3169         struct port *port = port_lookup(m->bridge, name);
3170         if (port) {
3171             out_ports[n_out_ports++] = port;
3172         } else {
3173             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
3174                       "port %s", m->bridge->name, m->name, name);
3175         }
3176     }
3177     *out_portsp = out_ports;
3178     *n_out_portsp = n_out_ports;
3179 }
3180
3181 static bool
3182 mirror_configure(struct mirror *m, const struct ovsrec_mirror *cfg)
3183 {
3184     struct ofproto_mirror_settings s;
3185
3186     /* Set name. */
3187     if (strcmp(cfg->name, m->name)) {
3188         free(m->name);
3189         m->name = xstrdup(cfg->name);
3190     }
3191     s.name = m->name;
3192
3193     /* Get output port or VLAN. */
3194     if (cfg->output_port) {
3195         s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
3196         if (!s.out_bundle) {
3197             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
3198                      m->bridge->name, m->name);
3199             return false;
3200         }
3201         s.out_vlan = UINT16_MAX;
3202
3203         if (cfg->output_vlan) {
3204             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
3205                      "output vlan; ignoring output vlan",
3206                      m->bridge->name, m->name);
3207         }
3208     } else if (cfg->output_vlan) {
3209         /* The database should prevent invalid VLAN values. */
3210         s.out_bundle = NULL;
3211         s.out_vlan = *cfg->output_vlan;
3212     } else {
3213         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
3214                  m->bridge->name, m->name);
3215         return false;
3216     }
3217
3218     /* Get port selection. */
3219     if (cfg->select_all) {
3220         size_t n_ports = hmap_count(&m->bridge->ports);
3221         void **ports = xmalloc(n_ports * sizeof *ports);
3222         struct port *port;
3223         size_t i;
3224
3225         i = 0;
3226         HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
3227             ports[i++] = port;
3228         }
3229
3230         s.srcs = ports;
3231         s.n_srcs = n_ports;
3232
3233         s.dsts = ports;
3234         s.n_dsts = n_ports;
3235     } else {
3236         /* Get ports, dropping ports that don't exist.
3237          * The IDL ensures that there are no duplicates. */
3238         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
3239                              &s.srcs, &s.n_srcs);
3240         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
3241                              &s.dsts, &s.n_dsts);
3242     }
3243
3244     /* Get VLAN selection. */
3245     s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
3246
3247     /* Configure. */
3248     ofproto_mirror_register(m->bridge->ofproto, m, &s);
3249
3250     /* Clean up. */
3251     if (s.srcs != s.dsts) {
3252         free(s.dsts);
3253     }
3254     free(s.srcs);
3255     free(s.src_vlans);
3256
3257     return true;
3258 }