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