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