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