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