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