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