bridge: Also prohibit \ in bridge names.
[cascardo/ovs.git] / vswitchd / bridge.c
1 /* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 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
22 #include "async-append.h"
23 #include "bfd.h"
24 #include "bitmap.h"
25 #include "cfm.h"
26 #include "connectivity.h"
27 #include "coverage.h"
28 #include "daemon.h"
29 #include "dirs.h"
30 #include "dpif.h"
31 #include "dynamic-string.h"
32 #include "hash.h"
33 #include "hmap.h"
34 #include "hmapx.h"
35 #include "jsonrpc.h"
36 #include "lacp.h"
37 #include "list.h"
38 #include "ovs-lldp.h"
39 #include "mac-learning.h"
40 #include "mcast-snooping.h"
41 #include "meta-flow.h"
42 #include "netdev.h"
43 #include "nx-match.h"
44 #include "ofp-print.h"
45 #include "ofp-util.h"
46 #include "ofpbuf.h"
47 #include "ofproto/bond.h"
48 #include "ofproto/ofproto.h"
49 #include "ovs-numa.h"
50 #include "poll-loop.h"
51 #include "if-notifier.h"
52 #include "seq.h"
53 #include "sha1.h"
54 #include "shash.h"
55 #include "smap.h"
56 #include "socket-util.h"
57 #include "stream.h"
58 #include "stream-ssl.h"
59 #include "sset.h"
60 #include "system-stats.h"
61 #include "timeval.h"
62 #include "util.h"
63 #include "unixctl.h"
64 #include "vlandev.h"
65 #include "lib/vswitch-idl.h"
66 #include "xenserver.h"
67 #include "openvswitch/vlog.h"
68 #include "sflow_api.h"
69 #include "vlan-bitmap.h"
70 #include "packets.h"
71
72 VLOG_DEFINE_THIS_MODULE(bridge);
73
74 COVERAGE_DEFINE(bridge_reconfigure);
75
76 struct iface {
77     /* These members are always valid.
78      *
79      * They are immutable: they never change between iface_create() and
80      * iface_destroy(). */
81     struct ovs_list port_elem;  /* Element in struct port's "ifaces" list. */
82     struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
83     struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */
84     struct port *port;          /* Containing port. */
85     char *name;                 /* Host network device name. */
86     struct netdev *netdev;      /* Network device. */
87     ofp_port_t ofp_port;        /* OpenFlow port number. */
88     uint64_t change_seq;
89
90     /* These members are valid only within bridge_reconfigure(). */
91     const char *type;           /* Usually same as cfg->type. */
92     const struct ovsrec_interface *cfg;
93 };
94
95 struct mirror {
96     struct uuid uuid;           /* UUID of this "mirror" record in database. */
97     struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */
98     struct bridge *bridge;
99     char *name;
100     const struct ovsrec_mirror *cfg;
101 };
102
103 struct port {
104     struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */
105     struct bridge *bridge;
106     char *name;
107
108     const struct ovsrec_port *cfg;
109
110     /* An ordinary bridge port has 1 interface.
111      * A bridge port for bonding has at least 2 interfaces. */
112     struct ovs_list ifaces;    /* List of "struct iface"s. */
113 };
114
115 struct bridge {
116     struct hmap_node node;      /* In 'all_bridges'. */
117     char *name;                 /* User-specified arbitrary name. */
118     char *type;                 /* Datapath type. */
119     struct eth_addr ea;         /* Bridge Ethernet Address. */
120     struct eth_addr default_ea; /* Default MAC. */
121     const struct ovsrec_bridge *cfg;
122
123     /* OpenFlow switch processing. */
124     struct ofproto *ofproto;    /* OpenFlow switch. */
125
126     /* Bridge ports. */
127     struct hmap ports;          /* "struct port"s indexed by name. */
128     struct hmap ifaces;         /* "struct iface"s indexed by ofp_port. */
129     struct hmap iface_by_name;  /* "struct iface"s indexed by name. */
130
131     /* Port mirroring. */
132     struct hmap mirrors;        /* "struct mirror" indexed by UUID. */
133
134     /* Auto Attach */
135     struct hmap mappings;       /* "struct" indexed by UUID */
136
137     /* Used during reconfiguration. */
138     struct shash wanted_ports;
139
140     /* Synthetic local port if necessary. */
141     struct ovsrec_port synth_local_port;
142     struct ovsrec_interface synth_local_iface;
143     struct ovsrec_interface *synth_local_ifacep;
144 };
145
146 struct aa_mapping {
147     struct hmap_node hmap_node; /* In struct bridge's "mappings" hmap. */
148     struct bridge *bridge;
149     uint32_t isid;
150     uint16_t vlan;
151     char *br_name;
152 };
153
154 /* All bridges, indexed by name. */
155 static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges);
156
157 /* OVSDB IDL used to obtain configuration. */
158 static struct ovsdb_idl *idl;
159
160 /* We want to complete daemonization, fully detaching from our parent process,
161  * only after we have completed our initial configuration, committed our state
162  * to the database, and received confirmation back from the database server
163  * that it applied the commit.  This allows our parent process to know that,
164  * post-detach, ephemeral fields such as datapath-id and ofport are very likely
165  * to have already been filled in.  (It is only "very likely" rather than
166  * certain because there is always a slim possibility that the transaction will
167  * fail or that some other client has added new bridges, ports, etc. while
168  * ovs-vswitchd was configuring using an old configuration.)
169  *
170  * We only need to do this once for our initial configuration at startup, so
171  * 'initial_config_done' tracks whether we've already done it.  While we are
172  * waiting for a response to our commit, 'daemonize_txn' tracks the transaction
173  * itself and is otherwise NULL. */
174 static bool initial_config_done;
175 static struct ovsdb_idl_txn *daemonize_txn;
176
177 /* Most recently processed IDL sequence number. */
178 static unsigned int idl_seqno;
179
180 /* Track changes to port connectivity. */
181 static uint64_t connectivity_seqno = LLONG_MIN;
182
183 /* Status update to database.
184  *
185  * Some information in the database must be kept as up-to-date as possible to
186  * allow controllers to respond rapidly to network outages.  Those status are
187  * updated via the 'status_txn'.
188  *
189  * We use the global connectivity sequence number to detect the status change.
190  * Also, to prevent the status update from sending too much to the database,
191  * we check the return status of each update transaction and do not start new
192  * update if the previous transaction status is 'TXN_INCOMPLETE'.
193  *
194  * 'statux_txn' is NULL if there is no ongoing status update.
195  *
196  * If the previous database transaction was failed (is not 'TXN_SUCCESS',
197  * 'TXN_UNCHANGED' or 'TXN_INCOMPLETE'), 'status_txn_try_again' is set to true,
198  * which will cause the main thread wake up soon and retry the status update.
199  */
200 static struct ovsdb_idl_txn *status_txn;
201 static bool status_txn_try_again;
202
203 /* When the status update transaction returns 'TXN_INCOMPLETE', should register a
204  * timeout in 'STATUS_CHECK_AGAIN_MSEC' to check again. */
205 #define STATUS_CHECK_AGAIN_MSEC 100
206
207 /* Statistics update to database. */
208 static struct ovsdb_idl_txn *stats_txn;
209
210 /* Each time this timer expires, the bridge fetches interface and mirror
211  * statistics and pushes them into the database. */
212 static int stats_timer_interval;
213 static long long int stats_timer = LLONG_MIN;
214
215 /* Each time this timer expires, the bridge fetches the list of port/VLAN
216  * membership that has been modified by the AA.
217  */
218 #define AA_REFRESH_INTERVAL (1000) /* In milliseconds. */
219 static long long int aa_refresh_timer = LLONG_MIN;
220
221 /* Whenever system interfaces are added, removed or change state, the bridge
222  * will be reconfigured.
223  */
224 static struct if_notifier *ifnotifier;
225 static bool ifaces_changed = false;
226
227 static void add_del_bridges(const struct ovsrec_open_vswitch *);
228 static void bridge_run__(void);
229 static void bridge_create(const struct ovsrec_bridge *);
230 static void bridge_destroy(struct bridge *);
231 static struct bridge *bridge_lookup(const char *name);
232 static unixctl_cb_func bridge_unixctl_dump_flows;
233 static unixctl_cb_func bridge_unixctl_reconnect;
234 static size_t bridge_get_controllers(const struct bridge *br,
235                                      struct ovsrec_controller ***controllersp);
236 static void bridge_collect_wanted_ports(struct bridge *,
237                                         const unsigned long *splinter_vlans,
238                                         struct shash *wanted_ports);
239 static void bridge_delete_ofprotos(void);
240 static void bridge_delete_or_reconfigure_ports(struct bridge *);
241 static void bridge_del_ports(struct bridge *,
242                              const struct shash *wanted_ports);
243 static void bridge_add_ports(struct bridge *,
244                              const struct shash *wanted_ports);
245
246 static void bridge_configure_datapath_id(struct bridge *);
247 static void bridge_configure_netflow(struct bridge *);
248 static void bridge_configure_forward_bpdu(struct bridge *);
249 static void bridge_configure_mac_table(struct bridge *);
250 static void bridge_configure_mcast_snooping(struct bridge *);
251 static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number);
252 static void bridge_configure_ipfix(struct bridge *);
253 static void bridge_configure_spanning_tree(struct bridge *);
254 static void bridge_configure_tables(struct bridge *);
255 static void bridge_configure_dp_desc(struct bridge *);
256 static void bridge_configure_aa(struct bridge *);
257 static void bridge_aa_refresh_queued(struct bridge *);
258 static bool bridge_aa_need_refresh(struct bridge *);
259 static void bridge_configure_remotes(struct bridge *,
260                                      const struct sockaddr_in *managers,
261                                      size_t n_managers);
262 static void bridge_pick_local_hw_addr(struct bridge *, struct eth_addr *ea,
263                                       struct iface **hw_addr_iface);
264 static uint64_t bridge_pick_datapath_id(struct bridge *,
265                                         const struct eth_addr bridge_ea,
266                                         struct iface *hw_addr_iface);
267 static uint64_t dpid_from_hash(const void *, size_t nbytes);
268 static bool bridge_has_bond_fake_iface(const struct bridge *,
269                                        const char *name);
270 static bool port_is_bond_fake_iface(const struct port *);
271
272 static unixctl_cb_func qos_unixctl_show;
273
274 static struct port *port_create(struct bridge *, const struct ovsrec_port *);
275 static void port_del_ifaces(struct port *);
276 static void port_destroy(struct port *);
277 static struct port *port_lookup(const struct bridge *, const char *name);
278 static void port_configure(struct port *);
279 static struct lacp_settings *port_configure_lacp(struct port *,
280                                                  struct lacp_settings *);
281 static void port_configure_bond(struct port *, struct bond_settings *);
282 static bool port_is_synthetic(const struct port *);
283
284 static void reconfigure_system_stats(const struct ovsrec_open_vswitch *);
285 static void run_system_stats(void);
286
287 static void bridge_configure_mirrors(struct bridge *);
288 static struct mirror *mirror_create(struct bridge *,
289                                     const struct ovsrec_mirror *);
290 static void mirror_destroy(struct mirror *);
291 static bool mirror_configure(struct mirror *);
292 static void mirror_refresh_stats(struct mirror *);
293
294 static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *);
295 static bool iface_create(struct bridge *, const struct ovsrec_interface *,
296                          const struct ovsrec_port *);
297 static bool iface_is_internal(const struct ovsrec_interface *iface,
298                               const struct ovsrec_bridge *br);
299 static const char *iface_get_type(const struct ovsrec_interface *,
300                                   const struct ovsrec_bridge *);
301 static void iface_destroy(struct iface *);
302 static void iface_destroy__(struct iface *);
303 static struct iface *iface_lookup(const struct bridge *, const char *name);
304 static struct iface *iface_find(const char *name);
305 static struct iface *iface_from_ofp_port(const struct bridge *,
306                                          ofp_port_t ofp_port);
307 static void iface_set_mac(const struct bridge *, const struct port *, struct iface *);
308 static void iface_set_ofport(const struct ovsrec_interface *, ofp_port_t ofport);
309 static void iface_clear_db_record(const struct ovsrec_interface *if_cfg, char *errp);
310 static void iface_configure_qos(struct iface *, const struct ovsrec_qos *);
311 static void iface_configure_cfm(struct iface *);
312 static void iface_refresh_cfm_stats(struct iface *);
313 static void iface_refresh_stats(struct iface *);
314 static void iface_refresh_netdev_status(struct iface *);
315 static void iface_refresh_ofproto_status(struct iface *);
316 static bool iface_is_synthetic(const struct iface *);
317 static ofp_port_t iface_get_requested_ofp_port(
318     const struct ovsrec_interface *);
319 static ofp_port_t iface_pick_ofport(const struct ovsrec_interface *);
320
321
322 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
323  *
324  * This is deprecated.  It is only for compatibility with broken device drivers
325  * in old versions of Linux that do not properly support VLANs when VLAN
326  * devices are not used.  When broken device drivers are no longer in
327  * widespread use, we will delete these interfaces. */
328
329 /* True if VLAN splinters are enabled on any interface, false otherwise.*/
330 static bool vlan_splinters_enabled_anywhere;
331
332 static bool vlan_splinters_is_enabled(const struct ovsrec_interface *);
333 static unsigned long int *collect_splinter_vlans(
334     const struct ovsrec_open_vswitch *);
335 static void configure_splinter_port(struct port *);
336 static void add_vlan_splinter_ports(struct bridge *,
337                                     const unsigned long int *splinter_vlans,
338                                     struct shash *ports);
339
340 static void discover_types(const struct ovsrec_open_vswitch *cfg);
341
342 static void
343 bridge_init_ofproto(const struct ovsrec_open_vswitch *cfg)
344 {
345     struct shash iface_hints;
346     static bool initialized = false;
347     int i;
348
349     if (initialized) {
350         return;
351     }
352
353     shash_init(&iface_hints);
354
355     if (cfg) {
356         for (i = 0; i < cfg->n_bridges; i++) {
357             const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
358             int j;
359
360             for (j = 0; j < br_cfg->n_ports; j++) {
361                 struct ovsrec_port *port_cfg = br_cfg->ports[j];
362                 int k;
363
364                 for (k = 0; k < port_cfg->n_interfaces; k++) {
365                     struct ovsrec_interface *if_cfg = port_cfg->interfaces[k];
366                     struct iface_hint *iface_hint;
367
368                     iface_hint = xmalloc(sizeof *iface_hint);
369                     iface_hint->br_name = br_cfg->name;
370                     iface_hint->br_type = br_cfg->datapath_type;
371                     iface_hint->ofp_port = iface_pick_ofport(if_cfg);
372
373                     shash_add(&iface_hints, if_cfg->name, iface_hint);
374                 }
375             }
376         }
377     }
378
379     ofproto_init(&iface_hints);
380
381     shash_destroy_free_data(&iface_hints);
382     initialized = true;
383 }
384
385 static void
386 if_change_cb(void *aux OVS_UNUSED)
387 {
388     ifaces_changed = true;
389 }
390 \f
391 /* Public functions. */
392
393 /* Initializes the bridge module, configuring it to obtain its configuration
394  * from an OVSDB server accessed over 'remote', which should be a string in a
395  * form acceptable to ovsdb_idl_create(). */
396 void
397 bridge_init(const char *remote)
398 {
399     /* Create connection to database. */
400     idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true, true);
401     idl_seqno = ovsdb_idl_get_seqno(idl);
402     ovsdb_idl_set_lock(idl, "ovs_vswitchd");
403     ovsdb_idl_verify_write_only(idl);
404
405     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
406     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
407     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_datapath_types);
408     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_iface_types);
409     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
410     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version);
411     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version);
412     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type);
413     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version);
414
415     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id);
416     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_version);
417     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_status);
418     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_rstp_status);
419     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_stp_enable);
420     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_rstp_enable);
421     ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
422
423     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_status);
424     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_rstp_status);
425     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_rstp_statistics);
426     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_statistics);
427     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_bond_active_slave);
428     ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
429     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_trunks);
430     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_vlan_mode);
431     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state);
432     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex);
433     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed);
434     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state);
435     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_resets);
436     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mac_in_use);
437     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ifindex);
438     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu);
439     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
440     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
441     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status);
442     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault);
443     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault_status);
444     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_mpids);
445     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_flap_count);
446     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_health);
447     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_opstate);
448     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_bfd_status);
449     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_lacp_current);
450     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_error);
451     ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
452
453     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected);
454     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role);
455     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status);
456     ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids);
457
458     ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids);
459
460     ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids);
461
462     ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids);
463     ovsdb_idl_omit_alert(idl, &ovsrec_mirror_col_statistics);
464
465     ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids);
466     ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids);
467     ovsdb_idl_omit(idl, &ovsrec_ipfix_col_external_ids);
468     ovsdb_idl_omit(idl, &ovsrec_flow_sample_collector_set_col_external_ids);
469
470     ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids);
471     ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe);
472     ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected);
473     ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff);
474     ovsdb_idl_omit(idl, &ovsrec_manager_col_status);
475
476     ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids);
477
478     /* Register unixctl commands. */
479     unixctl_command_register("qos/show", "interface", 1, 1,
480                              qos_unixctl_show, NULL);
481     unixctl_command_register("bridge/dump-flows", "bridge", 1, 1,
482                              bridge_unixctl_dump_flows, NULL);
483     unixctl_command_register("bridge/reconnect", "[bridge]", 0, 1,
484                              bridge_unixctl_reconnect, NULL);
485     lacp_init();
486     bond_init();
487     cfm_init();
488     bfd_init();
489     ovs_numa_init();
490     stp_init();
491     lldp_init();
492     rstp_init();
493     ifnotifier = if_notifier_create(if_change_cb, NULL);
494 }
495
496 void
497 bridge_exit(void)
498 {
499     struct bridge *br, *next_br;
500
501     if_notifier_destroy(ifnotifier);
502     HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
503         bridge_destroy(br);
504     }
505     ovsdb_idl_destroy(idl);
506 }
507
508 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
509  * addresses and ports into '*managersp' and '*n_managersp'.  The caller is
510  * responsible for freeing '*managersp' (with free()).
511  *
512  * You may be asking yourself "why does ovs-vswitchd care?", because
513  * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
514  * should not be and in fact is not directly involved in that.  But
515  * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
516  * it has to tell in-band control where the managers are to enable that.
517  * (Thus, only managers connected in-band and with non-loopback addresses
518  * are collected.)
519  */
520 static void
521 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
522                          struct sockaddr_in **managersp, size_t *n_managersp)
523 {
524     struct sockaddr_in *managers = NULL;
525     size_t n_managers = 0;
526     struct sset targets;
527     size_t i;
528
529     /* Collect all of the potential targets from the "targets" columns of the
530      * rows pointed to by "manager_options", excluding any that are
531      * out-of-band. */
532     sset_init(&targets);
533     for (i = 0; i < ovs_cfg->n_manager_options; i++) {
534         struct ovsrec_manager *m = ovs_cfg->manager_options[i];
535
536         if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
537             sset_find_and_delete(&targets, m->target);
538         } else {
539             sset_add(&targets, m->target);
540         }
541     }
542
543     /* Now extract the targets' IP addresses. */
544     if (!sset_is_empty(&targets)) {
545         const char *target;
546
547         managers = xmalloc(sset_count(&targets) * sizeof *managers);
548         SSET_FOR_EACH (target, &targets) {
549             union {
550                 struct sockaddr_storage ss;
551                 struct sockaddr_in in;
552             } sa;
553
554             /* Ignore loopback. */
555             if (stream_parse_target_with_default_port(target, OVSDB_PORT,
556                                                       &sa.ss)
557                 && sa.ss.ss_family == AF_INET
558                 && sa.in.sin_addr.s_addr != htonl(INADDR_LOOPBACK)) {
559                 managers[n_managers++] = sa.in;
560             }
561         }
562     }
563     sset_destroy(&targets);
564
565     *managersp = managers;
566     *n_managersp = n_managers;
567 }
568
569 static void
570 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
571 {
572     unsigned long int *splinter_vlans;
573     struct sockaddr_in *managers;
574     struct bridge *br, *next;
575     int sflow_bridge_number;
576     size_t n_managers;
577
578     COVERAGE_INC(bridge_reconfigure);
579
580     ofproto_set_flow_limit(smap_get_int(&ovs_cfg->other_config, "flow-limit",
581                                         OFPROTO_FLOW_LIMIT_DEFAULT));
582     ofproto_set_max_idle(smap_get_int(&ovs_cfg->other_config, "max-idle",
583                                       OFPROTO_MAX_IDLE_DEFAULT));
584     ofproto_set_n_dpdk_rxqs(smap_get_int(&ovs_cfg->other_config,
585                                          "n-dpdk-rxqs", 0));
586     ofproto_set_cpu_mask(smap_get(&ovs_cfg->other_config, "pmd-cpu-mask"));
587
588     ofproto_set_threads(
589         smap_get_int(&ovs_cfg->other_config, "n-handler-threads", 0),
590         smap_get_int(&ovs_cfg->other_config, "n-revalidator-threads", 0));
591
592     /* Destroy "struct bridge"s, "struct port"s, and "struct iface"s according
593      * to 'ovs_cfg', with only very minimal configuration otherwise.
594      *
595      * This is mostly an update to bridge data structures. Nothing is pushed
596      * down to ofproto or lower layers. */
597     add_del_bridges(ovs_cfg);
598     splinter_vlans = collect_splinter_vlans(ovs_cfg);
599     HMAP_FOR_EACH (br, node, &all_bridges) {
600         bridge_collect_wanted_ports(br, splinter_vlans, &br->wanted_ports);
601         bridge_del_ports(br, &br->wanted_ports);
602     }
603     free(splinter_vlans);
604
605     /* Start pushing configuration changes down to the ofproto layer:
606      *
607      *   - Delete ofprotos that are no longer configured.
608      *
609      *   - Delete ports that are no longer configured.
610      *
611      *   - Reconfigure existing ports to their desired configurations, or
612      *     delete them if not possible.
613      *
614      * We have to do all the deletions before we can do any additions, because
615      * the ports to be added might require resources that will be freed up by
616      * deletions (they might especially overlap in name). */
617     bridge_delete_ofprotos();
618     HMAP_FOR_EACH (br, node, &all_bridges) {
619         if (br->ofproto) {
620             bridge_delete_or_reconfigure_ports(br);
621         }
622     }
623
624     /* Finish pushing configuration changes to the ofproto layer:
625      *
626      *     - Create ofprotos that are missing.
627      *
628      *     - Add ports that are missing. */
629     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
630         if (!br->ofproto) {
631             int error;
632
633             error = ofproto_create(br->name, br->type, &br->ofproto);
634             if (error) {
635                 VLOG_ERR("failed to create bridge %s: %s", br->name,
636                          ovs_strerror(error));
637                 shash_destroy(&br->wanted_ports);
638                 bridge_destroy(br);
639             } else {
640                 /* Trigger storing datapath version. */
641                 seq_change(connectivity_seq_get());
642             }
643         }
644     }
645     HMAP_FOR_EACH (br, node, &all_bridges) {
646         bridge_add_ports(br, &br->wanted_ports);
647         shash_destroy(&br->wanted_ports);
648     }
649
650     reconfigure_system_stats(ovs_cfg);
651
652     /* Complete the configuration. */
653     sflow_bridge_number = 0;
654     collect_in_band_managers(ovs_cfg, &managers, &n_managers);
655     HMAP_FOR_EACH (br, node, &all_bridges) {
656         struct port *port;
657
658         /* We need the datapath ID early to allow LACP ports to use it as the
659          * default system ID. */
660         bridge_configure_datapath_id(br);
661
662         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
663             struct iface *iface;
664
665             port_configure(port);
666
667             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
668                 iface_set_ofport(iface->cfg, iface->ofp_port);
669                 /* Clear eventual previous errors */
670                 ovsrec_interface_set_error(iface->cfg, NULL);
671                 iface_configure_cfm(iface);
672                 iface_configure_qos(iface, port->cfg->qos);
673                 iface_set_mac(br, port, iface);
674                 ofproto_port_set_bfd(br->ofproto, iface->ofp_port,
675                                      &iface->cfg->bfd);
676                 ofproto_port_set_lldp(br->ofproto, iface->ofp_port,
677                                       &iface->cfg->lldp);
678             }
679         }
680         bridge_configure_mirrors(br);
681         bridge_configure_forward_bpdu(br);
682         bridge_configure_mac_table(br);
683         bridge_configure_mcast_snooping(br);
684         bridge_configure_remotes(br, managers, n_managers);
685         bridge_configure_netflow(br);
686         bridge_configure_sflow(br, &sflow_bridge_number);
687         bridge_configure_ipfix(br);
688         bridge_configure_spanning_tree(br);
689         bridge_configure_tables(br);
690         bridge_configure_dp_desc(br);
691         bridge_configure_aa(br);
692     }
693     free(managers);
694
695     /* The ofproto-dpif provider does some final reconfiguration in its
696      * ->type_run() function.  We have to call it before notifying the database
697      * client that reconfiguration is complete, otherwise there is a very
698      * narrow race window in which e.g. ofproto/trace will not recognize the
699      * new configuration (sometimes this causes unit test failures). */
700     bridge_run__();
701 }
702
703 /* Delete ofprotos which aren't configured or have the wrong type.  Create
704  * ofprotos which don't exist but need to. */
705 static void
706 bridge_delete_ofprotos(void)
707 {
708     struct bridge *br;
709     struct sset names;
710     struct sset types;
711     const char *type;
712
713     /* Delete ofprotos with no bridge or with the wrong type. */
714     sset_init(&names);
715     sset_init(&types);
716     ofproto_enumerate_types(&types);
717     SSET_FOR_EACH (type, &types) {
718         const char *name;
719
720         ofproto_enumerate_names(type, &names);
721         SSET_FOR_EACH (name, &names) {
722             br = bridge_lookup(name);
723             if (!br || strcmp(type, br->type)) {
724                 ofproto_delete(name, type);
725             }
726         }
727     }
728     sset_destroy(&names);
729     sset_destroy(&types);
730 }
731
732 static ofp_port_t *
733 add_ofp_port(ofp_port_t port, ofp_port_t *ports, size_t *n, size_t *allocated)
734 {
735     if (*n >= *allocated) {
736         ports = x2nrealloc(ports, allocated, sizeof *ports);
737     }
738     ports[(*n)++] = port;
739     return ports;
740 }
741
742 static void
743 bridge_delete_or_reconfigure_ports(struct bridge *br)
744 {
745     struct ofproto_port ofproto_port;
746     struct ofproto_port_dump dump;
747
748     struct sset ofproto_ports;
749     struct port *port, *port_next;
750
751     /* List of "ofp_port"s to delete.  We make a list instead of deleting them
752      * right away because ofproto implementations aren't necessarily able to
753      * iterate through a changing list of ports in an entirely robust way. */
754     ofp_port_t *del;
755     size_t n, allocated;
756     size_t i;
757
758     del = NULL;
759     n = allocated = 0;
760     sset_init(&ofproto_ports);
761
762     /* Main task: Iterate over the ports in 'br->ofproto' and remove the ports
763      * that are not configured in the database.  (This commonly happens when
764      * ports have been deleted, e.g. with "ovs-vsctl del-port".)
765      *
766      * Side tasks: Reconfigure the ports that are still in 'br'.  Delete ports
767      * that have the wrong OpenFlow port number (and arrange to add them back
768      * with the correct OpenFlow port number). */
769     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
770         ofp_port_t requested_ofp_port;
771         struct iface *iface;
772
773         sset_add(&ofproto_ports, ofproto_port.name);
774
775         iface = iface_lookup(br, ofproto_port.name);
776         if (!iface) {
777             /* No such iface is configured, so we should delete this
778              * ofproto_port.
779              *
780              * As a corner case exception, keep the port if it's a bond fake
781              * interface. */
782             if (bridge_has_bond_fake_iface(br, ofproto_port.name)
783                 && !strcmp(ofproto_port.type, "internal")) {
784                 continue;
785             }
786             goto delete;
787         }
788
789         if (strcmp(ofproto_port.type, iface->type)
790             || netdev_set_config(iface->netdev, &iface->cfg->options, NULL)) {
791             /* The interface is the wrong type or can't be configured.
792              * Delete it. */
793             goto delete;
794         }
795
796         /* If the requested OpenFlow port for 'iface' changed, and it's not
797          * already the correct port, then we might want to temporarily delete
798          * this interface, so we can add it back again with the new OpenFlow
799          * port number. */
800         requested_ofp_port = iface_get_requested_ofp_port(iface->cfg);
801         if (iface->ofp_port != OFPP_LOCAL &&
802             requested_ofp_port != OFPP_NONE &&
803             requested_ofp_port != iface->ofp_port) {
804             ofp_port_t victim_request;
805             struct iface *victim;
806
807             /* Check for an existing OpenFlow port currently occupying
808              * 'iface''s requested port number.  If there isn't one, then
809              * delete this port.  Otherwise we need to consider further. */
810             victim = iface_from_ofp_port(br, requested_ofp_port);
811             if (!victim) {
812                 goto delete;
813             }
814
815             /* 'victim' is a port currently using 'iface''s requested port
816              * number.  Unless 'victim' specifically requested that port
817              * number, too, then we can delete both 'iface' and 'victim'
818              * temporarily.  (We'll add both of them back again later with new
819              * OpenFlow port numbers.)
820              *
821              * If 'victim' did request port number 'requested_ofp_port', just
822              * like 'iface', then that's a configuration inconsistency that we
823              * can't resolve.  We might as well let it keep its current port
824              * number. */
825             victim_request = iface_get_requested_ofp_port(victim->cfg);
826             if (victim_request != requested_ofp_port) {
827                 del = add_ofp_port(victim->ofp_port, del, &n, &allocated);
828                 iface_destroy(victim);
829                 goto delete;
830             }
831         }
832
833         /* Keep it. */
834         continue;
835
836     delete:
837         iface_destroy(iface);
838         del = add_ofp_port(ofproto_port.ofp_port, del, &n, &allocated);
839     }
840     for (i = 0; i < n; i++) {
841         ofproto_port_del(br->ofproto, del[i]);
842     }
843     free(del);
844
845     /* Iterate over this module's idea of interfaces in 'br'.  Remove any ports
846      * that we didn't see when we iterated through the datapath, i.e. ports
847      * that disappeared underneath use.  This is an unusual situation, but it
848      * can happen in some cases:
849      *
850      *     - An admin runs a command like "ovs-dpctl del-port" (which is a bad
851      *       idea but could happen).
852      *
853      *     - The port represented a device that disappeared, e.g. a tuntap
854      *       device destroyed via "tunctl -d", a physical Ethernet device
855      *       whose module was just unloaded via "rmmod", or a virtual NIC for a
856      *       VM whose VM was just terminated. */
857     HMAP_FOR_EACH_SAFE (port, port_next, hmap_node, &br->ports) {
858         struct iface *iface, *iface_next;
859
860         LIST_FOR_EACH_SAFE (iface, iface_next, port_elem, &port->ifaces) {
861             if (!sset_contains(&ofproto_ports, iface->name)) {
862                 iface_destroy__(iface);
863             }
864         }
865
866         if (list_is_empty(&port->ifaces)) {
867             port_destroy(port);
868         }
869     }
870     sset_destroy(&ofproto_ports);
871 }
872
873 static void
874 bridge_add_ports__(struct bridge *br, const struct shash *wanted_ports,
875                    bool with_requested_port)
876 {
877     struct shash_node *port_node;
878
879     SHASH_FOR_EACH (port_node, wanted_ports) {
880         const struct ovsrec_port *port_cfg = port_node->data;
881         size_t i;
882
883         for (i = 0; i < port_cfg->n_interfaces; i++) {
884             const struct ovsrec_interface *iface_cfg = port_cfg->interfaces[i];
885             ofp_port_t requested_ofp_port;
886
887             requested_ofp_port = iface_get_requested_ofp_port(iface_cfg);
888             if ((requested_ofp_port != OFPP_NONE) == with_requested_port) {
889                 struct iface *iface = iface_lookup(br, iface_cfg->name);
890
891                 if (!iface) {
892                     iface_create(br, iface_cfg, port_cfg);
893                 }
894             }
895         }
896     }
897 }
898
899 static void
900 bridge_add_ports(struct bridge *br, const struct shash *wanted_ports)
901 {
902     /* First add interfaces that request a particular port number. */
903     bridge_add_ports__(br, wanted_ports, true);
904
905     /* Then add interfaces that want automatic port number assignment.
906      * We add these afterward to avoid accidentally taking a specifically
907      * requested port number. */
908     bridge_add_ports__(br, wanted_ports, false);
909 }
910
911 static void
912 port_configure(struct port *port)
913 {
914     const struct ovsrec_port *cfg = port->cfg;
915     struct bond_settings bond_settings;
916     struct lacp_settings lacp_settings;
917     struct ofproto_bundle_settings s;
918     struct iface *iface;
919
920     if (cfg->vlan_mode && !strcmp(cfg->vlan_mode, "splinter")) {
921         configure_splinter_port(port);
922         return;
923     }
924
925     /* Get name. */
926     s.name = port->name;
927
928     /* Get slaves. */
929     s.n_slaves = 0;
930     s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves);
931     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
932         s.slaves[s.n_slaves++] = iface->ofp_port;
933     }
934
935     /* Get VLAN tag. */
936     s.vlan = -1;
937     if (cfg->tag && *cfg->tag >= 0 && *cfg->tag <= 4095) {
938         s.vlan = *cfg->tag;
939     }
940
941     /* Get VLAN trunks. */
942     s.trunks = NULL;
943     if (cfg->n_trunks) {
944         s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks);
945     }
946
947     /* Get VLAN mode. */
948     if (cfg->vlan_mode) {
949         if (!strcmp(cfg->vlan_mode, "access")) {
950             s.vlan_mode = PORT_VLAN_ACCESS;
951         } else if (!strcmp(cfg->vlan_mode, "trunk")) {
952             s.vlan_mode = PORT_VLAN_TRUNK;
953         } else if (!strcmp(cfg->vlan_mode, "native-tagged")) {
954             s.vlan_mode = PORT_VLAN_NATIVE_TAGGED;
955         } else if (!strcmp(cfg->vlan_mode, "native-untagged")) {
956             s.vlan_mode = PORT_VLAN_NATIVE_UNTAGGED;
957         } else {
958             /* This "can't happen" because ovsdb-server should prevent it. */
959             VLOG_WARN("port %s: unknown VLAN mode %s, falling "
960                       "back to trunk mode", port->name, cfg->vlan_mode);
961             s.vlan_mode = PORT_VLAN_TRUNK;
962         }
963     } else {
964         if (s.vlan >= 0) {
965             s.vlan_mode = PORT_VLAN_ACCESS;
966             if (cfg->n_trunks) {
967                 VLOG_WARN("port %s: ignoring trunks in favor of implicit vlan",
968                           port->name);
969             }
970         } else {
971             s.vlan_mode = PORT_VLAN_TRUNK;
972         }
973     }
974     s.use_priority_tags = smap_get_bool(&cfg->other_config, "priority-tags",
975                                         false);
976
977     /* Get LACP settings. */
978     s.lacp = port_configure_lacp(port, &lacp_settings);
979     if (s.lacp) {
980         size_t i = 0;
981
982         s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves);
983         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
984             iface_configure_lacp(iface, &s.lacp_slaves[i++]);
985         }
986     } else {
987         s.lacp_slaves = NULL;
988     }
989
990     /* Get bond settings. */
991     if (s.n_slaves > 1) {
992         s.bond = &bond_settings;
993         port_configure_bond(port, &bond_settings);
994     } else {
995         s.bond = NULL;
996         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
997             netdev_set_miimon_interval(iface->netdev, 0);
998         }
999     }
1000
1001     /* Register. */
1002     ofproto_bundle_register(port->bridge->ofproto, port, &s);
1003
1004     /* Clean up. */
1005     free(s.slaves);
1006     free(s.trunks);
1007     free(s.lacp_slaves);
1008 }
1009
1010 /* Pick local port hardware address and datapath ID for 'br'. */
1011 static void
1012 bridge_configure_datapath_id(struct bridge *br)
1013 {
1014     struct eth_addr ea;
1015     uint64_t dpid;
1016     struct iface *local_iface;
1017     struct iface *hw_addr_iface;
1018     char *dpid_string;
1019
1020     bridge_pick_local_hw_addr(br, &ea, &hw_addr_iface);
1021     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
1022     if (local_iface) {
1023         int error = netdev_set_etheraddr(local_iface->netdev, ea);
1024         if (error) {
1025             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1026             VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
1027                         "Ethernet address: %s",
1028                         br->name, ovs_strerror(error));
1029         }
1030     }
1031     br->ea = ea;
1032
1033     dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
1034     if (dpid != ofproto_get_datapath_id(br->ofproto)) {
1035         VLOG_INFO("bridge %s: using datapath ID %016"PRIx64, br->name, dpid);
1036         ofproto_set_datapath_id(br->ofproto, dpid);
1037     }
1038
1039     dpid_string = xasprintf("%016"PRIx64, dpid);
1040     ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
1041     free(dpid_string);
1042 }
1043
1044 /* Returns a bitmap of "enum ofputil_protocol"s that are allowed for use with
1045  * 'br'. */
1046 static uint32_t
1047 bridge_get_allowed_versions(struct bridge *br)
1048 {
1049     if (!br->cfg->n_protocols) {
1050         return 0;
1051     }
1052
1053     return ofputil_versions_from_strings(br->cfg->protocols,
1054                                          br->cfg->n_protocols);
1055 }
1056
1057 /* Set NetFlow configuration on 'br'. */
1058 static void
1059 bridge_configure_netflow(struct bridge *br)
1060 {
1061     struct ovsrec_netflow *cfg = br->cfg->netflow;
1062     struct netflow_options opts;
1063
1064     if (!cfg) {
1065         ofproto_set_netflow(br->ofproto, NULL);
1066         return;
1067     }
1068
1069     memset(&opts, 0, sizeof opts);
1070
1071     /* Get default NetFlow configuration from datapath.
1072      * Apply overrides from 'cfg'. */
1073     ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id);
1074     if (cfg->engine_type) {
1075         opts.engine_type = *cfg->engine_type;
1076     }
1077     if (cfg->engine_id) {
1078         opts.engine_id = *cfg->engine_id;
1079     }
1080
1081     /* Configure active timeout interval. */
1082     opts.active_timeout = cfg->active_timeout;
1083     if (!opts.active_timeout) {
1084         opts.active_timeout = -1;
1085     } else if (opts.active_timeout < 0) {
1086         VLOG_WARN("bridge %s: active timeout interval set to negative "
1087                   "value, using default instead (%d seconds)", br->name,
1088                   NF_ACTIVE_TIMEOUT_DEFAULT);
1089         opts.active_timeout = -1;
1090     }
1091
1092     /* Add engine ID to interface number to disambiguate bridgs? */
1093     opts.add_id_to_iface = cfg->add_id_to_interface;
1094     if (opts.add_id_to_iface) {
1095         if (opts.engine_id > 0x7f) {
1096             VLOG_WARN("bridge %s: NetFlow port mangling may conflict with "
1097                       "another vswitch, choose an engine id less than 128",
1098                       br->name);
1099         }
1100         if (hmap_count(&br->ports) > 508) {
1101             VLOG_WARN("bridge %s: NetFlow port mangling will conflict with "
1102                       "another port when more than 508 ports are used",
1103                       br->name);
1104         }
1105     }
1106
1107     /* Collectors. */
1108     sset_init(&opts.collectors);
1109     sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets);
1110
1111     /* Configure. */
1112     if (ofproto_set_netflow(br->ofproto, &opts)) {
1113         VLOG_ERR("bridge %s: problem setting netflow collectors", br->name);
1114     }
1115     sset_destroy(&opts.collectors);
1116 }
1117
1118 /* Set sFlow configuration on 'br'. */
1119 static void
1120 bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number)
1121 {
1122     const struct ovsrec_sflow *cfg = br->cfg->sflow;
1123     struct ovsrec_controller **controllers;
1124     struct ofproto_sflow_options oso;
1125     size_t n_controllers;
1126     size_t i;
1127
1128     if (!cfg) {
1129         ofproto_set_sflow(br->ofproto, NULL);
1130         return;
1131     }
1132
1133     memset(&oso, 0, sizeof oso);
1134
1135     sset_init(&oso.targets);
1136     sset_add_array(&oso.targets, cfg->targets, cfg->n_targets);
1137
1138     oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
1139     if (cfg->sampling) {
1140         oso.sampling_rate = *cfg->sampling;
1141     }
1142
1143     oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
1144     if (cfg->polling) {
1145         oso.polling_interval = *cfg->polling;
1146     }
1147
1148     oso.header_len = SFL_DEFAULT_HEADER_SIZE;
1149     if (cfg->header) {
1150         oso.header_len = *cfg->header;
1151     }
1152
1153     oso.sub_id = (*sflow_bridge_number)++;
1154     oso.agent_device = cfg->agent;
1155
1156     oso.control_ip = NULL;
1157     n_controllers = bridge_get_controllers(br, &controllers);
1158     for (i = 0; i < n_controllers; i++) {
1159         if (controllers[i]->local_ip) {
1160             oso.control_ip = controllers[i]->local_ip;
1161             break;
1162         }
1163     }
1164     ofproto_set_sflow(br->ofproto, &oso);
1165
1166     sset_destroy(&oso.targets);
1167 }
1168
1169 /* Returns whether a IPFIX row is valid. */
1170 static bool
1171 ovsrec_ipfix_is_valid(const struct ovsrec_ipfix *ipfix)
1172 {
1173     return ipfix && ipfix->n_targets > 0;
1174 }
1175
1176 /* Returns whether a Flow_Sample_Collector_Set row is valid. */
1177 static bool
1178 ovsrec_fscs_is_valid(const struct ovsrec_flow_sample_collector_set *fscs,
1179                      const struct bridge *br)
1180 {
1181     return ovsrec_ipfix_is_valid(fscs->ipfix) && fscs->bridge == br->cfg;
1182 }
1183
1184 /* Set IPFIX configuration on 'br'. */
1185 static void
1186 bridge_configure_ipfix(struct bridge *br)
1187 {
1188     const struct ovsrec_ipfix *be_cfg = br->cfg->ipfix;
1189     bool valid_be_cfg = ovsrec_ipfix_is_valid(be_cfg);
1190     const struct ovsrec_flow_sample_collector_set *fe_cfg;
1191     struct ofproto_ipfix_bridge_exporter_options be_opts;
1192     struct ofproto_ipfix_flow_exporter_options *fe_opts = NULL;
1193     size_t n_fe_opts = 0;
1194
1195     OVSREC_FLOW_SAMPLE_COLLECTOR_SET_FOR_EACH(fe_cfg, idl) {
1196         if (ovsrec_fscs_is_valid(fe_cfg, br)) {
1197             n_fe_opts++;
1198         }
1199     }
1200
1201     if (!valid_be_cfg && n_fe_opts == 0) {
1202         ofproto_set_ipfix(br->ofproto, NULL, NULL, 0);
1203         return;
1204     }
1205
1206     if (valid_be_cfg) {
1207         memset(&be_opts, 0, sizeof be_opts);
1208
1209         sset_init(&be_opts.targets);
1210         sset_add_array(&be_opts.targets, be_cfg->targets, be_cfg->n_targets);
1211
1212         if (be_cfg->sampling) {
1213             be_opts.sampling_rate = *be_cfg->sampling;
1214         } else {
1215             be_opts.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
1216         }
1217         if (be_cfg->obs_domain_id) {
1218             be_opts.obs_domain_id = *be_cfg->obs_domain_id;
1219         }
1220         if (be_cfg->obs_point_id) {
1221             be_opts.obs_point_id = *be_cfg->obs_point_id;
1222         }
1223         if (be_cfg->cache_active_timeout) {
1224             be_opts.cache_active_timeout = *be_cfg->cache_active_timeout;
1225         }
1226         if (be_cfg->cache_max_flows) {
1227             be_opts.cache_max_flows = *be_cfg->cache_max_flows;
1228         }
1229
1230         be_opts.enable_tunnel_sampling = smap_get_bool(&be_cfg->other_config,
1231                                              "enable-tunnel-sampling", true);
1232
1233         be_opts.enable_input_sampling = !smap_get_bool(&be_cfg->other_config,
1234                                               "enable-input-sampling", false);
1235
1236         be_opts.enable_output_sampling = !smap_get_bool(&be_cfg->other_config,
1237                                               "enable-output-sampling", false);
1238     }
1239
1240     if (n_fe_opts > 0) {
1241         struct ofproto_ipfix_flow_exporter_options *opts;
1242         fe_opts = xcalloc(n_fe_opts, sizeof *fe_opts);
1243         opts = fe_opts;
1244         OVSREC_FLOW_SAMPLE_COLLECTOR_SET_FOR_EACH(fe_cfg, idl) {
1245             if (ovsrec_fscs_is_valid(fe_cfg, br)) {
1246                 opts->collector_set_id = fe_cfg->id;
1247                 sset_init(&opts->targets);
1248                 sset_add_array(&opts->targets, fe_cfg->ipfix->targets,
1249                                fe_cfg->ipfix->n_targets);
1250                 opts->cache_active_timeout = fe_cfg->ipfix->cache_active_timeout
1251                     ? *fe_cfg->ipfix->cache_active_timeout : 0;
1252                 opts->cache_max_flows = fe_cfg->ipfix->cache_max_flows
1253                     ? *fe_cfg->ipfix->cache_max_flows : 0;
1254                 opts++;
1255             }
1256         }
1257     }
1258
1259     ofproto_set_ipfix(br->ofproto, valid_be_cfg ? &be_opts : NULL, fe_opts,
1260                       n_fe_opts);
1261
1262     if (valid_be_cfg) {
1263         sset_destroy(&be_opts.targets);
1264     }
1265
1266     if (n_fe_opts > 0) {
1267         struct ofproto_ipfix_flow_exporter_options *opts = fe_opts;
1268         size_t i;
1269         for (i = 0; i < n_fe_opts; i++) {
1270             sset_destroy(&opts->targets);
1271             opts++;
1272         }
1273         free(fe_opts);
1274     }
1275 }
1276
1277 static void
1278 port_configure_stp(const struct ofproto *ofproto, struct port *port,
1279                    struct ofproto_port_stp_settings *port_s,
1280                    int *port_num_counter, unsigned long *port_num_bitmap)
1281 {
1282     const char *config_str;
1283     struct iface *iface;
1284
1285     if (!smap_get_bool(&port->cfg->other_config, "stp-enable", true)) {
1286         port_s->enable = false;
1287         return;
1288     } else {
1289         port_s->enable = true;
1290     }
1291
1292     /* STP over bonds is not supported. */
1293     if (!list_is_singleton(&port->ifaces)) {
1294         VLOG_ERR("port %s: cannot enable STP on bonds, disabling",
1295                  port->name);
1296         port_s->enable = false;
1297         return;
1298     }
1299
1300     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1301
1302     /* Internal ports shouldn't participate in spanning tree, so
1303      * skip them. */
1304     if (!strcmp(iface->type, "internal")) {
1305         VLOG_DBG("port %s: disable STP on internal ports", port->name);
1306         port_s->enable = false;
1307         return;
1308     }
1309
1310     /* STP on mirror output ports is not supported. */
1311     if (ofproto_is_mirror_output_bundle(ofproto, port)) {
1312         VLOG_DBG("port %s: disable STP on mirror ports", port->name);
1313         port_s->enable = false;
1314         return;
1315     }
1316
1317     config_str = smap_get(&port->cfg->other_config, "stp-port-num");
1318     if (config_str) {
1319         unsigned long int port_num = strtoul(config_str, NULL, 0);
1320         int port_idx = port_num - 1;
1321
1322         if (port_num < 1 || port_num > STP_MAX_PORTS) {
1323             VLOG_ERR("port %s: invalid stp-port-num", port->name);
1324             port_s->enable = false;
1325             return;
1326         }
1327
1328         if (bitmap_is_set(port_num_bitmap, port_idx)) {
1329             VLOG_ERR("port %s: duplicate stp-port-num %lu, disabling",
1330                     port->name, port_num);
1331             port_s->enable = false;
1332             return;
1333         }
1334         bitmap_set1(port_num_bitmap, port_idx);
1335         port_s->port_num = port_idx;
1336     } else {
1337         if (*port_num_counter >= STP_MAX_PORTS) {
1338             VLOG_ERR("port %s: too many STP ports, disabling", port->name);
1339             port_s->enable = false;
1340             return;
1341         }
1342
1343         port_s->port_num = (*port_num_counter)++;
1344     }
1345
1346     config_str = smap_get(&port->cfg->other_config, "stp-path-cost");
1347     if (config_str) {
1348         port_s->path_cost = strtoul(config_str, NULL, 10);
1349     } else {
1350         enum netdev_features current;
1351         unsigned int mbps;
1352
1353         netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1354         mbps = netdev_features_to_bps(current, 100 * 1000 * 1000) / 1000000;
1355         port_s->path_cost = stp_convert_speed_to_cost(mbps);
1356     }
1357
1358     config_str = smap_get(&port->cfg->other_config, "stp-port-priority");
1359     if (config_str) {
1360         port_s->priority = strtoul(config_str, NULL, 0);
1361     } else {
1362         port_s->priority = STP_DEFAULT_PORT_PRIORITY;
1363     }
1364 }
1365
1366 static void
1367 port_configure_rstp(const struct ofproto *ofproto, struct port *port,
1368         struct ofproto_port_rstp_settings *port_s, int *port_num_counter)
1369 {
1370     const char *config_str;
1371     struct iface *iface;
1372
1373     if (!smap_get_bool(&port->cfg->other_config, "rstp-enable", true)) {
1374         port_s->enable = false;
1375         return;
1376     } else {
1377         port_s->enable = true;
1378     }
1379
1380     /* RSTP over bonds is not supported. */
1381     if (!list_is_singleton(&port->ifaces)) {
1382         VLOG_ERR("port %s: cannot enable RSTP on bonds, disabling",
1383                 port->name);
1384         port_s->enable = false;
1385         return;
1386     }
1387
1388     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1389
1390     /* Internal ports shouldn't participate in spanning tree, so
1391      * skip them. */
1392     if (!strcmp(iface->type, "internal")) {
1393         VLOG_DBG("port %s: disable RSTP on internal ports", port->name);
1394         port_s->enable = false;
1395         return;
1396     }
1397
1398     /* RSTP on mirror output ports is not supported. */
1399     if (ofproto_is_mirror_output_bundle(ofproto, port)) {
1400         VLOG_DBG("port %s: disable RSTP on mirror ports", port->name);
1401         port_s->enable = false;
1402         return;
1403     }
1404
1405     config_str = smap_get(&port->cfg->other_config, "rstp-port-num");
1406     if (config_str) {
1407         unsigned long int port_num = strtoul(config_str, NULL, 0);
1408         if (port_num < 1 || port_num > RSTP_MAX_PORTS) {
1409             VLOG_ERR("port %s: invalid rstp-port-num", port->name);
1410             port_s->enable = false;
1411             return;
1412         }
1413         port_s->port_num = port_num;
1414     } else {
1415         if (*port_num_counter >= RSTP_MAX_PORTS) {
1416             VLOG_ERR("port %s: too many RSTP ports, disabling", port->name);
1417             port_s->enable = false;
1418             return;
1419         }
1420         /* If rstp-port-num is not specified, use 0.
1421          * rstp_port_set_port_number() will look for the first free one. */
1422         port_s->port_num = 0;
1423     }
1424
1425     config_str = smap_get(&port->cfg->other_config, "rstp-path-cost");
1426     if (config_str) {
1427         port_s->path_cost = strtoul(config_str, NULL, 10);
1428     } else {
1429         enum netdev_features current;
1430         unsigned int mbps;
1431
1432         netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1433         mbps = netdev_features_to_bps(current, 100 * 1000 * 1000) / 1000000;
1434         port_s->path_cost = rstp_convert_speed_to_cost(mbps);
1435     }
1436
1437     config_str = smap_get(&port->cfg->other_config, "rstp-port-priority");
1438     if (config_str) {
1439         port_s->priority = strtoul(config_str, NULL, 0);
1440     } else {
1441         port_s->priority = RSTP_DEFAULT_PORT_PRIORITY;
1442     }
1443
1444     config_str = smap_get(&port->cfg->other_config, "rstp-admin-p2p-mac");
1445     if (config_str) {
1446         port_s->admin_p2p_mac_state = strtoul(config_str, NULL, 0);
1447     } else {
1448         port_s->admin_p2p_mac_state = RSTP_ADMIN_P2P_MAC_FORCE_TRUE;
1449     }
1450
1451     port_s->admin_port_state = smap_get_bool(&port->cfg->other_config,
1452                                              "rstp-admin-port-state", true);
1453
1454     port_s->admin_edge_port = smap_get_bool(&port->cfg->other_config,
1455                                             "rstp-port-admin-edge", false);
1456     port_s->auto_edge = smap_get_bool(&port->cfg->other_config,
1457                                       "rstp-port-auto-edge", true);
1458     port_s->mcheck = smap_get_bool(&port->cfg->other_config,
1459                                    "rstp-port-mcheck", false);
1460 }
1461
1462 /* Set spanning tree configuration on 'br'. */
1463 static void
1464 bridge_configure_stp(struct bridge *br, bool enable_stp)
1465 {
1466     if (!enable_stp) {
1467         ofproto_set_stp(br->ofproto, NULL);
1468     } else {
1469         struct ofproto_stp_settings br_s;
1470         const char *config_str;
1471         struct port *port;
1472         int port_num_counter;
1473         unsigned long *port_num_bitmap;
1474
1475         config_str = smap_get(&br->cfg->other_config, "stp-system-id");
1476         if (config_str) {
1477             struct eth_addr ea;
1478
1479             if (eth_addr_from_string(config_str, &ea)) {
1480                 br_s.system_id = eth_addr_to_uint64(ea);
1481             } else {
1482                 br_s.system_id = eth_addr_to_uint64(br->ea);
1483                 VLOG_ERR("bridge %s: invalid stp-system-id, defaulting "
1484                          "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea));
1485             }
1486         } else {
1487             br_s.system_id = eth_addr_to_uint64(br->ea);
1488         }
1489
1490         config_str = smap_get(&br->cfg->other_config, "stp-priority");
1491         if (config_str) {
1492             br_s.priority = strtoul(config_str, NULL, 0);
1493         } else {
1494             br_s.priority = STP_DEFAULT_BRIDGE_PRIORITY;
1495         }
1496
1497         config_str = smap_get(&br->cfg->other_config, "stp-hello-time");
1498         if (config_str) {
1499             br_s.hello_time = strtoul(config_str, NULL, 10) * 1000;
1500         } else {
1501             br_s.hello_time = STP_DEFAULT_HELLO_TIME;
1502         }
1503
1504         config_str = smap_get(&br->cfg->other_config, "stp-max-age");
1505         if (config_str) {
1506             br_s.max_age = strtoul(config_str, NULL, 10) * 1000;
1507         } else {
1508             br_s.max_age = STP_DEFAULT_MAX_AGE;
1509         }
1510
1511         config_str = smap_get(&br->cfg->other_config, "stp-forward-delay");
1512         if (config_str) {
1513             br_s.fwd_delay = strtoul(config_str, NULL, 10) * 1000;
1514         } else {
1515             br_s.fwd_delay = STP_DEFAULT_FWD_DELAY;
1516         }
1517
1518         /* Configure STP on the bridge. */
1519         if (ofproto_set_stp(br->ofproto, &br_s)) {
1520             VLOG_ERR("bridge %s: could not enable STP", br->name);
1521             return;
1522         }
1523
1524         /* Users must either set the port number with the "stp-port-num"
1525          * configuration on all ports or none.  If manual configuration
1526          * is not done, then we allocate them sequentially. */
1527         port_num_counter = 0;
1528         port_num_bitmap = bitmap_allocate(STP_MAX_PORTS);
1529         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1530             struct ofproto_port_stp_settings port_s;
1531             struct iface *iface;
1532
1533             port_configure_stp(br->ofproto, port, &port_s,
1534                                &port_num_counter, port_num_bitmap);
1535
1536             /* As bonds are not supported, just apply configuration to
1537              * all interfaces. */
1538             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1539                 if (ofproto_port_set_stp(br->ofproto, iface->ofp_port,
1540                                          &port_s)) {
1541                     VLOG_ERR("port %s: could not enable STP", port->name);
1542                     continue;
1543                 }
1544             }
1545         }
1546
1547         if (bitmap_scan(port_num_bitmap, 1, 0, STP_MAX_PORTS) != STP_MAX_PORTS
1548                     && port_num_counter) {
1549             VLOG_ERR("bridge %s: must manually configure all STP port "
1550                      "IDs or none, disabling", br->name);
1551             ofproto_set_stp(br->ofproto, NULL);
1552         }
1553         bitmap_free(port_num_bitmap);
1554     }
1555 }
1556
1557 static void
1558 bridge_configure_rstp(struct bridge *br, bool enable_rstp)
1559 {
1560     if (!enable_rstp) {
1561         ofproto_set_rstp(br->ofproto, NULL);
1562     } else {
1563         struct ofproto_rstp_settings br_s;
1564         const char *config_str;
1565         struct port *port;
1566         int port_num_counter;
1567
1568         config_str = smap_get(&br->cfg->other_config, "rstp-address");
1569         if (config_str) {
1570             struct eth_addr ea;
1571
1572             if (eth_addr_from_string(config_str, &ea)) {
1573                 br_s.address = eth_addr_to_uint64(ea);
1574             }
1575             else {
1576                 br_s.address = eth_addr_to_uint64(br->ea);
1577                 VLOG_ERR("bridge %s: invalid rstp-address, defaulting "
1578                         "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea));
1579             }
1580         }
1581         else {
1582             br_s.address = eth_addr_to_uint64(br->ea);
1583         }
1584
1585         config_str = smap_get(&br->cfg->other_config, "rstp-priority");
1586         if (config_str) {
1587             br_s.priority = strtoul(config_str, NULL, 0);
1588         } else {
1589             br_s.priority = RSTP_DEFAULT_PRIORITY;
1590         }
1591
1592         config_str = smap_get(&br->cfg->other_config, "rstp-ageing-time");
1593         if (config_str) {
1594             br_s.ageing_time = strtoul(config_str, NULL, 0);
1595         } else {
1596             br_s.ageing_time = RSTP_DEFAULT_AGEING_TIME;
1597         }
1598
1599         config_str = smap_get(&br->cfg->other_config,
1600                               "rstp-force-protocol-version");
1601         if (config_str) {
1602             br_s.force_protocol_version = strtoul(config_str, NULL, 0);
1603         } else {
1604             br_s.force_protocol_version = FPV_DEFAULT;
1605         }
1606
1607         config_str = smap_get(&br->cfg->other_config, "rstp-max-age");
1608         if (config_str) {
1609             br_s.bridge_max_age = strtoul(config_str, NULL, 10);
1610         } else {
1611             br_s.bridge_max_age = RSTP_DEFAULT_BRIDGE_MAX_AGE;
1612         }
1613
1614         config_str = smap_get(&br->cfg->other_config, "rstp-forward-delay");
1615         if (config_str) {
1616             br_s.bridge_forward_delay = strtoul(config_str, NULL, 10);
1617         } else {
1618             br_s.bridge_forward_delay = RSTP_DEFAULT_BRIDGE_FORWARD_DELAY;
1619         }
1620
1621         config_str = smap_get(&br->cfg->other_config,
1622                               "rstp-transmit-hold-count");
1623         if (config_str) {
1624             br_s.transmit_hold_count = strtoul(config_str, NULL, 10);
1625         } else {
1626             br_s.transmit_hold_count = RSTP_DEFAULT_TRANSMIT_HOLD_COUNT;
1627         }
1628
1629         /* Configure RSTP on the bridge. */
1630         if (ofproto_set_rstp(br->ofproto, &br_s)) {
1631             VLOG_ERR("bridge %s: could not enable RSTP", br->name);
1632             return;
1633         }
1634
1635         port_num_counter = 0;
1636         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1637             struct ofproto_port_rstp_settings port_s;
1638             struct iface *iface;
1639
1640             port_configure_rstp(br->ofproto, port, &port_s,
1641                     &port_num_counter);
1642
1643             /* As bonds are not supported, just apply configuration to
1644              * all interfaces. */
1645             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1646                 if (ofproto_port_set_rstp(br->ofproto, iface->ofp_port,
1647                             &port_s)) {
1648                     VLOG_ERR("port %s: could not enable RSTP", port->name);
1649                     continue;
1650                 }
1651             }
1652         }
1653     }
1654 }
1655
1656 static void
1657 bridge_configure_spanning_tree(struct bridge *br)
1658 {
1659     bool enable_rstp = br->cfg->rstp_enable;
1660     bool enable_stp = br->cfg->stp_enable;
1661
1662     if (enable_rstp && enable_stp) {
1663         VLOG_WARN("%s: RSTP and STP are mutually exclusive but both are "
1664                   "configured; enabling RSTP", br->name);
1665         enable_stp = false;
1666     }
1667
1668     bridge_configure_stp(br, enable_stp);
1669     bridge_configure_rstp(br, enable_rstp);
1670 }
1671
1672 static bool
1673 bridge_has_bond_fake_iface(const struct bridge *br, const char *name)
1674 {
1675     const struct port *port = port_lookup(br, name);
1676     return port && port_is_bond_fake_iface(port);
1677 }
1678
1679 static bool
1680 port_is_bond_fake_iface(const struct port *port)
1681 {
1682     return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces);
1683 }
1684
1685 static void
1686 add_del_bridges(const struct ovsrec_open_vswitch *cfg)
1687 {
1688     struct bridge *br, *next;
1689     struct shash new_br;
1690     size_t i;
1691
1692     /* Collect new bridges' names and types. */
1693     shash_init(&new_br);
1694     for (i = 0; i < cfg->n_bridges; i++) {
1695         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1696         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
1697
1698         if (strchr(br_cfg->name, '/') || strchr(br_cfg->name, '\\')) {
1699             /* Prevent remote ovsdb-server users from accessing arbitrary
1700              * directories, e.g. consider a bridge named "../../../etc/".
1701              *
1702              * Prohibiting "\" is only necessary on Windows but it's no great
1703              * loss elsewhere. */
1704             VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"",
1705                          br_cfg->name);
1706         } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
1707             VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name);
1708         }
1709     }
1710
1711     /* Get rid of deleted bridges or those whose types have changed.
1712      * Update 'cfg' of bridges that still exist. */
1713     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
1714         br->cfg = shash_find_data(&new_br, br->name);
1715         if (!br->cfg || strcmp(br->type, ofproto_normalize_type(
1716                                    br->cfg->datapath_type))) {
1717             bridge_destroy(br);
1718         }
1719     }
1720
1721     /* Add new bridges. */
1722     for (i = 0; i < cfg->n_bridges; i++) {
1723         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
1724         struct bridge *br = bridge_lookup(br_cfg->name);
1725         if (!br) {
1726             bridge_create(br_cfg);
1727         }
1728     }
1729
1730     shash_destroy(&new_br);
1731 }
1732
1733 /* Configures 'netdev' based on the "options" column in 'iface_cfg'.
1734  * Returns 0 if successful, otherwise a positive errno value. */
1735 static int
1736 iface_set_netdev_config(const struct ovsrec_interface *iface_cfg,
1737                         struct netdev *netdev, char **errp)
1738 {
1739     return netdev_set_config(netdev, &iface_cfg->options, errp);
1740 }
1741
1742 /* Opens a network device for 'if_cfg' and configures it.  Adds the network
1743  * device to br->ofproto and stores the OpenFlow port number in '*ofp_portp'.
1744  *
1745  * If successful, returns 0 and stores the network device in '*netdevp'.  On
1746  * failure, returns a positive errno value and stores NULL in '*netdevp'. */
1747 static int
1748 iface_do_create(const struct bridge *br,
1749                 const struct ovsrec_interface *iface_cfg,
1750                 const struct ovsrec_port *port_cfg,
1751                 ofp_port_t *ofp_portp, struct netdev **netdevp,
1752                 char **errp)
1753 {
1754     struct netdev *netdev = NULL;
1755     int error;
1756
1757     if (netdev_is_reserved_name(iface_cfg->name)) {
1758         VLOG_WARN("could not create interface %s, name is reserved",
1759                   iface_cfg->name);
1760         error = EINVAL;
1761         goto error;
1762     }
1763
1764     error = netdev_open(iface_cfg->name,
1765                         iface_get_type(iface_cfg, br->cfg), &netdev);
1766     if (error) {
1767         VLOG_WARN_BUF(errp, "could not open network device %s (%s)",
1768                       iface_cfg->name, ovs_strerror(error));
1769         goto error;
1770     }
1771
1772     error = iface_set_netdev_config(iface_cfg, netdev, errp);
1773     if (error) {
1774         goto error;
1775     }
1776
1777     *ofp_portp = iface_pick_ofport(iface_cfg);
1778     error = ofproto_port_add(br->ofproto, netdev, ofp_portp);
1779     if (error) {
1780         goto error;
1781     }
1782
1783     VLOG_INFO("bridge %s: added interface %s on port %d",
1784               br->name, iface_cfg->name, *ofp_portp);
1785
1786     if (port_cfg->vlan_mode && !strcmp(port_cfg->vlan_mode, "splinter")) {
1787         netdev_turn_flags_on(netdev, NETDEV_UP, NULL);
1788     }
1789
1790     *netdevp = netdev;
1791     return 0;
1792
1793 error:
1794     *netdevp = NULL;
1795     netdev_close(netdev);
1796     return error;
1797 }
1798
1799 /* Creates a new iface on 'br' based on 'if_cfg'.  The new iface has OpenFlow
1800  * port number 'ofp_port'.  If ofp_port is OFPP_NONE, an OpenFlow port is
1801  * automatically allocated for the iface.  Takes ownership of and
1802  * deallocates 'if_cfg'.
1803  *
1804  * Return true if an iface is successfully created, false otherwise. */
1805 static bool
1806 iface_create(struct bridge *br, const struct ovsrec_interface *iface_cfg,
1807              const struct ovsrec_port *port_cfg)
1808 {
1809     struct netdev *netdev;
1810     struct iface *iface;
1811     ofp_port_t ofp_port;
1812     struct port *port;
1813     char *errp = NULL;
1814     int error;
1815
1816     /* Do the bits that can fail up front. */
1817     ovs_assert(!iface_lookup(br, iface_cfg->name));
1818     error = iface_do_create(br, iface_cfg, port_cfg, &ofp_port, &netdev, &errp);
1819     if (error) {
1820         iface_clear_db_record(iface_cfg, errp);
1821         free(errp);
1822         return false;
1823     }
1824
1825     /* Get or create the port structure. */
1826     port = port_lookup(br, port_cfg->name);
1827     if (!port) {
1828         port = port_create(br, port_cfg);
1829     }
1830
1831     /* Create the iface structure. */
1832     iface = xzalloc(sizeof *iface);
1833     list_push_back(&port->ifaces, &iface->port_elem);
1834     hmap_insert(&br->iface_by_name, &iface->name_node,
1835                 hash_string(iface_cfg->name, 0));
1836     iface->port = port;
1837     iface->name = xstrdup(iface_cfg->name);
1838     iface->ofp_port = ofp_port;
1839     iface->netdev = netdev;
1840     iface->type = iface_get_type(iface_cfg, br->cfg);
1841     iface->cfg = iface_cfg;
1842     hmap_insert(&br->ifaces, &iface->ofp_port_node,
1843                 hash_ofp_port(ofp_port));
1844
1845     /* Populate initial status in database. */
1846     iface_refresh_stats(iface);
1847     iface_refresh_netdev_status(iface);
1848
1849     /* Add bond fake iface if necessary. */
1850     if (port_is_bond_fake_iface(port)) {
1851         struct ofproto_port ofproto_port;
1852
1853         if (ofproto_port_query_by_name(br->ofproto, port->name,
1854                                        &ofproto_port)) {
1855             struct netdev *netdev;
1856             int error;
1857
1858             error = netdev_open(port->name, "internal", &netdev);
1859             if (!error) {
1860                 ofp_port_t fake_ofp_port = OFPP_NONE;
1861                 ofproto_port_add(br->ofproto, netdev, &fake_ofp_port);
1862                 netdev_close(netdev);
1863             } else {
1864                 VLOG_WARN("could not open network device %s (%s)",
1865                           port->name, ovs_strerror(error));
1866             }
1867         } else {
1868             /* Already exists, nothing to do. */
1869             ofproto_port_destroy(&ofproto_port);
1870         }
1871     }
1872
1873     return true;
1874 }
1875
1876 /* Set forward BPDU option. */
1877 static void
1878 bridge_configure_forward_bpdu(struct bridge *br)
1879 {
1880     ofproto_set_forward_bpdu(br->ofproto,
1881                              smap_get_bool(&br->cfg->other_config,
1882                                            "forward-bpdu",
1883                                            false));
1884 }
1885
1886 /* Set MAC learning table configuration for 'br'. */
1887 static void
1888 bridge_configure_mac_table(struct bridge *br)
1889 {
1890     const char *idle_time_str;
1891     int idle_time;
1892
1893     const char *mac_table_size_str;
1894     int mac_table_size;
1895
1896     idle_time_str = smap_get(&br->cfg->other_config, "mac-aging-time");
1897     idle_time = (idle_time_str && atoi(idle_time_str)
1898                  ? atoi(idle_time_str)
1899                  : MAC_ENTRY_DEFAULT_IDLE_TIME);
1900
1901     mac_table_size_str = smap_get(&br->cfg->other_config, "mac-table-size");
1902     mac_table_size = (mac_table_size_str && atoi(mac_table_size_str)
1903                       ? atoi(mac_table_size_str)
1904                       : MAC_DEFAULT_MAX);
1905
1906     ofproto_set_mac_table_config(br->ofproto, idle_time, mac_table_size);
1907 }
1908
1909 /* Set multicast snooping table configuration for 'br'. */
1910 static void
1911 bridge_configure_mcast_snooping(struct bridge *br)
1912 {
1913     if (!br->cfg->mcast_snooping_enable) {
1914         ofproto_set_mcast_snooping(br->ofproto, NULL);
1915     } else {
1916         struct port *port;
1917         struct ofproto_mcast_snooping_settings br_s;
1918         const char *idle_time_str;
1919         const char *max_entries_str;
1920
1921         idle_time_str = smap_get(&br->cfg->other_config,
1922                                  "mcast-snooping-aging-time");
1923         br_s.idle_time = (idle_time_str && atoi(idle_time_str)
1924                           ? atoi(idle_time_str)
1925                           : MCAST_ENTRY_DEFAULT_IDLE_TIME);
1926
1927         max_entries_str = smap_get(&br->cfg->other_config,
1928                                    "mcast-snooping-table-size");
1929         br_s.max_entries = (max_entries_str && atoi(max_entries_str)
1930                             ? atoi(max_entries_str)
1931                             : MCAST_DEFAULT_MAX_ENTRIES);
1932
1933         br_s.flood_unreg = !smap_get_bool(&br->cfg->other_config,
1934                                     "mcast-snooping-disable-flood-unregistered",
1935                                     false);
1936
1937         /* Configure multicast snooping on the bridge */
1938         if (ofproto_set_mcast_snooping(br->ofproto, &br_s)) {
1939             VLOG_ERR("bridge %s: could not enable multicast snooping",
1940                      br->name);
1941             return;
1942         }
1943
1944         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1945             struct ofproto_mcast_snooping_port_settings port_s;
1946             port_s.flood = smap_get_bool(&port->cfg->other_config,
1947                                        "mcast-snooping-flood", false);
1948             port_s.flood_reports = smap_get_bool(&port->cfg->other_config,
1949                                        "mcast-snooping-flood-reports", false);
1950             if (ofproto_port_set_mcast_snooping(br->ofproto, port, &port_s)) {
1951                 VLOG_ERR("port %s: could not configure mcast snooping",
1952                          port->name);
1953             }
1954         }
1955     }
1956 }
1957
1958 static void
1959 find_local_hw_addr(const struct bridge *br, struct eth_addr *ea,
1960                    const struct port *fake_br, struct iface **hw_addr_iface)
1961 {
1962     struct hmapx mirror_output_ports;
1963     struct port *port;
1964     bool found_addr = false;
1965     int error;
1966     int i;
1967
1968     /* Mirror output ports don't participate in picking the local hardware
1969      * address.  ofproto can't help us find out whether a given port is a
1970      * mirror output because we haven't configured mirrors yet, so we need to
1971      * accumulate them ourselves. */
1972     hmapx_init(&mirror_output_ports);
1973     for (i = 0; i < br->cfg->n_mirrors; i++) {
1974         struct ovsrec_mirror *m = br->cfg->mirrors[i];
1975         if (m->output_port) {
1976             hmapx_add(&mirror_output_ports, m->output_port);
1977         }
1978     }
1979
1980     /* Otherwise choose the minimum non-local MAC address among all of the
1981      * interfaces. */
1982     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1983         struct eth_addr iface_ea;
1984         struct iface *candidate;
1985         struct iface *iface;
1986
1987         /* Mirror output ports don't participate. */
1988         if (hmapx_contains(&mirror_output_ports, port->cfg)) {
1989             continue;
1990         }
1991
1992         /* Choose the MAC address to represent the port. */
1993         iface = NULL;
1994         if (port->cfg->mac && eth_addr_from_string(port->cfg->mac,
1995                                                    &iface_ea)) {
1996             /* Find the interface with this Ethernet address (if any) so that
1997              * we can provide the correct devname to the caller. */
1998             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1999                 struct eth_addr candidate_ea;
2000                 if (!netdev_get_etheraddr(candidate->netdev, &candidate_ea)
2001                     && eth_addr_equals(iface_ea, candidate_ea)) {
2002                     iface = candidate;
2003                 }
2004             }
2005         } else {
2006             /* Choose the interface whose MAC address will represent the port.
2007              * The Linux kernel bonding code always chooses the MAC address of
2008              * the first slave added to a bond, and the Fedora networking
2009              * scripts always add slaves to a bond in alphabetical order, so
2010              * for compatibility we choose the interface with the name that is
2011              * first in alphabetical order. */
2012             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
2013                 if (!iface || strcmp(candidate->name, iface->name) < 0) {
2014                     iface = candidate;
2015                 }
2016             }
2017
2018             /* The local port doesn't count (since we're trying to choose its
2019              * MAC address anyway). */
2020             if (iface->ofp_port == OFPP_LOCAL) {
2021                 continue;
2022             }
2023
2024             /* For fake bridges we only choose from ports with the same tag */
2025             if (fake_br && fake_br->cfg && fake_br->cfg->tag) {
2026                 if (!port->cfg->tag) {
2027                     continue;
2028                 }
2029                 if (*port->cfg->tag != *fake_br->cfg->tag) {
2030                     continue;
2031                 }
2032             }
2033
2034             /* Grab MAC. */
2035             error = netdev_get_etheraddr(iface->netdev, &iface_ea);
2036             if (error) {
2037                 continue;
2038             }
2039         }
2040
2041         /* Compare against our current choice. */
2042         if (!eth_addr_is_multicast(iface_ea) &&
2043             !eth_addr_is_local(iface_ea) &&
2044             !eth_addr_is_reserved(iface_ea) &&
2045             !eth_addr_is_zero(iface_ea) &&
2046             (!found_addr || eth_addr_compare_3way(iface_ea, *ea) < 0))
2047         {
2048             *ea = iface_ea;
2049             *hw_addr_iface = iface;
2050             found_addr = true;
2051         }
2052     }
2053
2054     if (!found_addr) {
2055         *ea = br->default_ea;
2056         *hw_addr_iface = NULL;
2057     }
2058
2059     hmapx_destroy(&mirror_output_ports);
2060 }
2061
2062 static void
2063 bridge_pick_local_hw_addr(struct bridge *br, struct eth_addr *ea,
2064                           struct iface **hw_addr_iface)
2065 {
2066     const char *hwaddr;
2067     *hw_addr_iface = NULL;
2068
2069     /* Did the user request a particular MAC? */
2070     hwaddr = smap_get(&br->cfg->other_config, "hwaddr");
2071     if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
2072         if (eth_addr_is_multicast(*ea)) {
2073             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
2074                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(*ea));
2075         } else if (eth_addr_is_zero(*ea)) {
2076             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
2077         } else {
2078             return;
2079         }
2080     }
2081
2082     /* Find a local hw address */
2083     find_local_hw_addr(br, ea, NULL, hw_addr_iface);
2084 }
2085
2086 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
2087  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
2088  * an interface on 'br', then that interface must be passed in as
2089  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
2090  * 'hw_addr_iface' must be passed in as a null pointer. */
2091 static uint64_t
2092 bridge_pick_datapath_id(struct bridge *br,
2093                         const struct eth_addr bridge_ea,
2094                         struct iface *hw_addr_iface)
2095 {
2096     /*
2097      * The procedure for choosing a bridge MAC address will, in the most
2098      * ordinary case, also choose a unique MAC that we can use as a datapath
2099      * ID.  In some special cases, though, multiple bridges will end up with
2100      * the same MAC address.  This is OK for the bridges, but it will confuse
2101      * the OpenFlow controller, because each datapath needs a unique datapath
2102      * ID.
2103      *
2104      * Datapath IDs must be unique.  It is also very desirable that they be
2105      * stable from one run to the next, so that policy set on a datapath
2106      * "sticks".
2107      */
2108     const char *datapath_id;
2109     uint64_t dpid;
2110
2111     datapath_id = smap_get(&br->cfg->other_config, "datapath-id");
2112     if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
2113         return dpid;
2114     }
2115
2116     if (!hw_addr_iface) {
2117         /*
2118          * A purely internal bridge, that is, one that has no non-virtual
2119          * network devices on it at all, is difficult because it has no
2120          * natural unique identifier at all.
2121          *
2122          * When the host is a XenServer, we handle this case by hashing the
2123          * host's UUID with the name of the bridge.  Names of bridges are
2124          * persistent across XenServer reboots, although they can be reused if
2125          * an internal network is destroyed and then a new one is later
2126          * created, so this is fairly effective.
2127          *
2128          * When the host is not a XenServer, we punt by using a random MAC
2129          * address on each run.
2130          */
2131         const char *host_uuid = xenserver_get_host_uuid();
2132         if (host_uuid) {
2133             char *combined = xasprintf("%s,%s", host_uuid, br->name);
2134             dpid = dpid_from_hash(combined, strlen(combined));
2135             free(combined);
2136             return dpid;
2137         }
2138     }
2139
2140     return eth_addr_to_uint64(bridge_ea);
2141 }
2142
2143 static uint64_t
2144 dpid_from_hash(const void *data, size_t n)
2145 {
2146     union {
2147         uint8_t bytes[SHA1_DIGEST_SIZE];
2148         struct eth_addr ea;
2149     } hash;
2150
2151     sha1_bytes(data, n, hash.bytes);
2152     eth_addr_mark_random(&hash.ea);
2153     return eth_addr_to_uint64(hash.ea);
2154 }
2155
2156 static void
2157 iface_refresh_netdev_status(struct iface *iface)
2158 {
2159     struct smap smap;
2160
2161     enum netdev_features current;
2162     enum netdev_flags flags;
2163     const char *link_state;
2164     struct eth_addr mac;
2165     int64_t bps, mtu_64, ifindex64, link_resets;
2166     int mtu, error;
2167
2168     if (iface_is_synthetic(iface)) {
2169         return;
2170     }
2171
2172     if (iface->change_seq == netdev_get_change_seq(iface->netdev)
2173         && !status_txn_try_again) {
2174         return;
2175     }
2176
2177     iface->change_seq = netdev_get_change_seq(iface->netdev);
2178
2179     smap_init(&smap);
2180
2181     if (!netdev_get_status(iface->netdev, &smap)) {
2182         ovsrec_interface_set_status(iface->cfg, &smap);
2183     } else {
2184         ovsrec_interface_set_status(iface->cfg, NULL);
2185     }
2186
2187     smap_destroy(&smap);
2188
2189     error = netdev_get_flags(iface->netdev, &flags);
2190     if (!error) {
2191         const char *state = flags & NETDEV_UP ? "up" : "down";
2192
2193         ovsrec_interface_set_admin_state(iface->cfg, state);
2194     } else {
2195         ovsrec_interface_set_admin_state(iface->cfg, NULL);
2196     }
2197
2198     link_state = netdev_get_carrier(iface->netdev) ? "up" : "down";
2199     ovsrec_interface_set_link_state(iface->cfg, link_state);
2200
2201     link_resets = netdev_get_carrier_resets(iface->netdev);
2202     ovsrec_interface_set_link_resets(iface->cfg, &link_resets, 1);
2203
2204     error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
2205     bps = !error ? netdev_features_to_bps(current, 0) : 0;
2206     if (bps) {
2207         ovsrec_interface_set_duplex(iface->cfg,
2208                                     netdev_features_is_full_duplex(current)
2209                                     ? "full" : "half");
2210         ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
2211     } else {
2212         ovsrec_interface_set_duplex(iface->cfg, NULL);
2213         ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
2214     }
2215
2216     error = netdev_get_mtu(iface->netdev, &mtu);
2217     if (!error) {
2218         mtu_64 = mtu;
2219         ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
2220     } else {
2221         ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
2222     }
2223
2224     error = netdev_get_etheraddr(iface->netdev, &mac);
2225     if (!error) {
2226         char mac_string[ETH_ADDR_STRLEN + 1];
2227
2228         snprintf(mac_string, sizeof mac_string,
2229                  ETH_ADDR_FMT, ETH_ADDR_ARGS(mac));
2230         ovsrec_interface_set_mac_in_use(iface->cfg, mac_string);
2231     } else {
2232         ovsrec_interface_set_mac_in_use(iface->cfg, NULL);
2233     }
2234
2235     /* The netdev may return a negative number (such as -EOPNOTSUPP)
2236      * if there is no valid ifindex number. */
2237     ifindex64 = netdev_get_ifindex(iface->netdev);
2238     if (ifindex64 < 0) {
2239         ifindex64 = 0;
2240     }
2241     ovsrec_interface_set_ifindex(iface->cfg, &ifindex64, 1);
2242 }
2243
2244 static void
2245 iface_refresh_ofproto_status(struct iface *iface)
2246 {
2247     int current;
2248
2249     if (iface_is_synthetic(iface)) {
2250         return;
2251     }
2252
2253     current = ofproto_port_is_lacp_current(iface->port->bridge->ofproto,
2254                                            iface->ofp_port);
2255     if (current >= 0) {
2256         bool bl = current;
2257         ovsrec_interface_set_lacp_current(iface->cfg, &bl, 1);
2258     } else {
2259         ovsrec_interface_set_lacp_current(iface->cfg, NULL, 0);
2260     }
2261
2262     if (ofproto_port_cfm_status_changed(iface->port->bridge->ofproto,
2263                                         iface->ofp_port)
2264         || status_txn_try_again) {
2265         iface_refresh_cfm_stats(iface);
2266     }
2267
2268     if (ofproto_port_bfd_status_changed(iface->port->bridge->ofproto,
2269                                         iface->ofp_port)
2270         || status_txn_try_again) {
2271         struct smap smap;
2272
2273         smap_init(&smap);
2274         ofproto_port_get_bfd_status(iface->port->bridge->ofproto,
2275                                     iface->ofp_port, &smap);
2276         ovsrec_interface_set_bfd_status(iface->cfg, &smap);
2277         smap_destroy(&smap);
2278     }
2279 }
2280
2281 /* Writes 'iface''s CFM statistics to the database. 'iface' must not be
2282  * synthetic. */
2283 static void
2284 iface_refresh_cfm_stats(struct iface *iface)
2285 {
2286     const struct ovsrec_interface *cfg = iface->cfg;
2287     struct cfm_status status;
2288     int error;
2289
2290     error = ofproto_port_get_cfm_status(iface->port->bridge->ofproto,
2291                                         iface->ofp_port, &status);
2292     if (error > 0) {
2293         ovsrec_interface_set_cfm_fault(cfg, NULL, 0);
2294         ovsrec_interface_set_cfm_fault_status(cfg, NULL, 0);
2295         ovsrec_interface_set_cfm_remote_opstate(cfg, NULL);
2296         ovsrec_interface_set_cfm_flap_count(cfg, NULL, 0);
2297         ovsrec_interface_set_cfm_health(cfg, NULL, 0);
2298         ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0);
2299     } else {
2300         const char *reasons[CFM_FAULT_N_REASONS];
2301         int64_t cfm_health = status.health;
2302         int64_t cfm_flap_count = status.flap_count;
2303         bool faulted = status.faults != 0;
2304         size_t i, j;
2305
2306         ovsrec_interface_set_cfm_fault(cfg, &faulted, 1);
2307
2308         j = 0;
2309         for (i = 0; i < CFM_FAULT_N_REASONS; i++) {
2310             int reason = 1 << i;
2311             if (status.faults & reason) {
2312                 reasons[j++] = cfm_fault_reason_to_str(reason);
2313             }
2314         }
2315         ovsrec_interface_set_cfm_fault_status(cfg, reasons, j);
2316
2317         ovsrec_interface_set_cfm_flap_count(cfg, &cfm_flap_count, 1);
2318
2319         if (status.remote_opstate >= 0) {
2320             const char *remote_opstate = status.remote_opstate ? "up" : "down";
2321             ovsrec_interface_set_cfm_remote_opstate(cfg, remote_opstate);
2322         } else {
2323             ovsrec_interface_set_cfm_remote_opstate(cfg, NULL);
2324         }
2325
2326         ovsrec_interface_set_cfm_remote_mpids(cfg,
2327                                               (const int64_t *)status.rmps,
2328                                               status.n_rmps);
2329         if (cfm_health >= 0) {
2330             ovsrec_interface_set_cfm_health(cfg, &cfm_health, 1);
2331         } else {
2332             ovsrec_interface_set_cfm_health(cfg, NULL, 0);
2333         }
2334
2335         free(status.rmps);
2336     }
2337 }
2338
2339 static void
2340 iface_refresh_stats(struct iface *iface)
2341 {
2342 #define IFACE_STATS                             \
2343     IFACE_STAT(rx_packets,      "rx_packets")   \
2344     IFACE_STAT(tx_packets,      "tx_packets")   \
2345     IFACE_STAT(rx_bytes,        "rx_bytes")     \
2346     IFACE_STAT(tx_bytes,        "tx_bytes")     \
2347     IFACE_STAT(rx_dropped,      "rx_dropped")   \
2348     IFACE_STAT(tx_dropped,      "tx_dropped")   \
2349     IFACE_STAT(rx_errors,       "rx_errors")    \
2350     IFACE_STAT(tx_errors,       "tx_errors")    \
2351     IFACE_STAT(rx_frame_errors, "rx_frame_err") \
2352     IFACE_STAT(rx_over_errors,  "rx_over_err")  \
2353     IFACE_STAT(rx_crc_errors,   "rx_crc_err")   \
2354     IFACE_STAT(collisions,      "collisions")
2355
2356 #define IFACE_STAT(MEMBER, NAME) + 1
2357     enum { N_IFACE_STATS = IFACE_STATS };
2358 #undef IFACE_STAT
2359     int64_t values[N_IFACE_STATS];
2360     const char *keys[N_IFACE_STATS];
2361     int n;
2362
2363     struct netdev_stats stats;
2364
2365     if (iface_is_synthetic(iface)) {
2366         return;
2367     }
2368
2369     /* Intentionally ignore return value, since errors will set 'stats' to
2370      * all-1s, and we will deal with that correctly below. */
2371     netdev_get_stats(iface->netdev, &stats);
2372
2373     /* Copy statistics into keys[] and values[]. */
2374     n = 0;
2375 #define IFACE_STAT(MEMBER, NAME)                \
2376     if (stats.MEMBER != UINT64_MAX) {           \
2377         keys[n] = NAME;                         \
2378         values[n] = stats.MEMBER;               \
2379         n++;                                    \
2380     }
2381     IFACE_STATS;
2382 #undef IFACE_STAT
2383     ovs_assert(n <= N_IFACE_STATS);
2384
2385     ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
2386 #undef IFACE_STATS
2387 }
2388
2389 static void
2390 br_refresh_datapath_info(struct bridge *br)
2391 {
2392     const char *version;
2393
2394     version = (br->ofproto && br->ofproto->ofproto_class->get_datapath_version
2395                ? br->ofproto->ofproto_class->get_datapath_version(br->ofproto)
2396                : NULL);
2397
2398     ovsrec_bridge_set_datapath_version(br->cfg,
2399                                        version ? version : "<unknown>");
2400 }
2401
2402 static void
2403 br_refresh_stp_status(struct bridge *br)
2404 {
2405     struct smap smap = SMAP_INITIALIZER(&smap);
2406     struct ofproto *ofproto = br->ofproto;
2407     struct ofproto_stp_status status;
2408
2409     if (ofproto_get_stp_status(ofproto, &status)) {
2410         return;
2411     }
2412
2413     if (!status.enabled) {
2414         ovsrec_bridge_set_status(br->cfg, NULL);
2415         return;
2416     }
2417
2418     smap_add_format(&smap, "stp_bridge_id", STP_ID_FMT,
2419                     STP_ID_ARGS(status.bridge_id));
2420     smap_add_format(&smap, "stp_designated_root", STP_ID_FMT,
2421                     STP_ID_ARGS(status.designated_root));
2422     smap_add_format(&smap, "stp_root_path_cost", "%d", status.root_path_cost);
2423
2424     ovsrec_bridge_set_status(br->cfg, &smap);
2425     smap_destroy(&smap);
2426 }
2427
2428 static void
2429 port_refresh_stp_status(struct port *port)
2430 {
2431     struct ofproto *ofproto = port->bridge->ofproto;
2432     struct iface *iface;
2433     struct ofproto_port_stp_status status;
2434     struct smap smap;
2435
2436     if (port_is_synthetic(port)) {
2437         return;
2438     }
2439
2440     /* STP doesn't currently support bonds. */
2441     if (!list_is_singleton(&port->ifaces)) {
2442         ovsrec_port_set_status(port->cfg, NULL);
2443         return;
2444     }
2445
2446     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
2447     if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) {
2448         return;
2449     }
2450
2451     if (!status.enabled) {
2452         ovsrec_port_set_status(port->cfg, NULL);
2453         return;
2454     }
2455
2456     /* Set Status column. */
2457     smap_init(&smap);
2458     smap_add_format(&smap, "stp_port_id", STP_PORT_ID_FMT, status.port_id);
2459     smap_add(&smap, "stp_state", stp_state_name(status.state));
2460     smap_add_format(&smap, "stp_sec_in_state", "%u", status.sec_in_state);
2461     smap_add(&smap, "stp_role", stp_role_name(status.role));
2462     ovsrec_port_set_status(port->cfg, &smap);
2463     smap_destroy(&smap);
2464 }
2465
2466 static void
2467 port_refresh_stp_stats(struct port *port)
2468 {
2469     struct ofproto *ofproto = port->bridge->ofproto;
2470     struct iface *iface;
2471     struct ofproto_port_stp_stats stats;
2472     const char *keys[3];
2473     int64_t int_values[3];
2474
2475     if (port_is_synthetic(port)) {
2476         return;
2477     }
2478
2479     /* STP doesn't currently support bonds. */
2480     if (!list_is_singleton(&port->ifaces)) {
2481         return;
2482     }
2483
2484     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
2485     if (ofproto_port_get_stp_stats(ofproto, iface->ofp_port, &stats)) {
2486         return;
2487     }
2488
2489     if (!stats.enabled) {
2490         ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0);
2491         return;
2492     }
2493
2494     /* Set Statistics column. */
2495     keys[0] = "stp_tx_count";
2496     int_values[0] = stats.tx_count;
2497     keys[1] = "stp_rx_count";
2498     int_values[1] = stats.rx_count;
2499     keys[2] = "stp_error_count";
2500     int_values[2] = stats.error_count;
2501
2502     ovsrec_port_set_statistics(port->cfg, keys, int_values,
2503                                ARRAY_SIZE(int_values));
2504 }
2505
2506 static void
2507 br_refresh_rstp_status(struct bridge *br)
2508 {
2509     struct smap smap = SMAP_INITIALIZER(&smap);
2510     struct ofproto *ofproto = br->ofproto;
2511     struct ofproto_rstp_status status;
2512
2513     if (ofproto_get_rstp_status(ofproto, &status)) {
2514         return;
2515     }
2516     if (!status.enabled) {
2517         ovsrec_bridge_set_rstp_status(br->cfg, NULL);
2518         return;
2519     }
2520     smap_add_format(&smap, "rstp_bridge_id", RSTP_ID_FMT,
2521                     RSTP_ID_ARGS(status.bridge_id));
2522     smap_add_format(&smap, "rstp_root_path_cost", "%"PRIu32,
2523                     status.root_path_cost);
2524     smap_add_format(&smap, "rstp_root_id", RSTP_ID_FMT,
2525                     RSTP_ID_ARGS(status.root_id));
2526     smap_add_format(&smap, "rstp_designated_id", RSTP_ID_FMT,
2527                     RSTP_ID_ARGS(status.designated_id));
2528     smap_add_format(&smap, "rstp_designated_port_id", RSTP_PORT_ID_FMT,
2529                     status.designated_port_id);
2530     smap_add_format(&smap, "rstp_bridge_port_id", RSTP_PORT_ID_FMT,
2531                     status.bridge_port_id);
2532     ovsrec_bridge_set_rstp_status(br->cfg, &smap);
2533     smap_destroy(&smap);
2534 }
2535
2536 static void
2537 port_refresh_rstp_status(struct port *port)
2538 {
2539     struct ofproto *ofproto = port->bridge->ofproto;
2540     struct iface *iface;
2541     struct ofproto_port_rstp_status status;
2542     const char *keys[4];
2543     int64_t int_values[4];
2544     struct smap smap;
2545
2546     if (port_is_synthetic(port)) {
2547         return;
2548     }
2549
2550     /* RSTP doesn't currently support bonds. */
2551     if (!list_is_singleton(&port->ifaces)) {
2552         ovsrec_port_set_rstp_status(port->cfg, NULL);
2553         return;
2554     }
2555
2556     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
2557     if (ofproto_port_get_rstp_status(ofproto, iface->ofp_port, &status)) {
2558         return;
2559     }
2560
2561     if (!status.enabled) {
2562         ovsrec_port_set_rstp_status(port->cfg, NULL);
2563         ovsrec_port_set_rstp_statistics(port->cfg, NULL, NULL, 0);
2564         return;
2565     }
2566     /* Set Status column. */
2567     smap_init(&smap);
2568
2569     smap_add_format(&smap, "rstp_port_id", RSTP_PORT_ID_FMT,
2570                     status.port_id);
2571     smap_add_format(&smap, "rstp_port_role", "%s",
2572                     rstp_port_role_name(status.role));
2573     smap_add_format(&smap, "rstp_port_state", "%s",
2574                     rstp_state_name(status.state));
2575     smap_add_format(&smap, "rstp_designated_bridge_id", RSTP_ID_FMT,
2576                     RSTP_ID_ARGS(status.designated_bridge_id));
2577     smap_add_format(&smap, "rstp_designated_port_id", RSTP_PORT_ID_FMT,
2578                     status.designated_port_id);
2579     smap_add_format(&smap, "rstp_designated_path_cost", "%"PRIu32,
2580                     status.designated_path_cost);
2581
2582     ovsrec_port_set_rstp_status(port->cfg, &smap);
2583     smap_destroy(&smap);
2584
2585     /* Set Statistics column. */
2586     keys[0] = "rstp_tx_count";
2587     int_values[0] = status.tx_count;
2588     keys[1] = "rstp_rx_count";
2589     int_values[1] = status.rx_count;
2590     keys[2] = "rstp_uptime";
2591     int_values[2] = status.uptime;
2592     keys[3] = "rstp_error_count";
2593     int_values[3] = status.error_count;
2594     ovsrec_port_set_rstp_statistics(port->cfg, keys, int_values,
2595             ARRAY_SIZE(int_values));
2596 }
2597
2598 static void
2599 port_refresh_bond_status(struct port *port, bool force_update)
2600 {
2601     struct eth_addr mac;
2602
2603     /* Return if port is not a bond */
2604     if (list_is_singleton(&port->ifaces)) {
2605         return;
2606     }
2607
2608     if (bond_get_changed_active_slave(port->name, &mac, force_update)) {
2609         struct ds mac_s;
2610
2611         ds_init(&mac_s);
2612         ds_put_format(&mac_s, ETH_ADDR_FMT, ETH_ADDR_ARGS(mac));
2613         ovsrec_port_set_bond_active_slave(port->cfg, ds_cstr(&mac_s));
2614         ds_destroy(&mac_s);
2615     }
2616 }
2617
2618 static bool
2619 enable_system_stats(const struct ovsrec_open_vswitch *cfg)
2620 {
2621     return smap_get_bool(&cfg->other_config, "enable-statistics", false);
2622 }
2623
2624 static void
2625 reconfigure_system_stats(const struct ovsrec_open_vswitch *cfg)
2626 {
2627     bool enable = enable_system_stats(cfg);
2628
2629     system_stats_enable(enable);
2630     if (!enable) {
2631         ovsrec_open_vswitch_set_statistics(cfg, NULL);
2632     }
2633 }
2634
2635 static void
2636 run_system_stats(void)
2637 {
2638     const struct ovsrec_open_vswitch *cfg = ovsrec_open_vswitch_first(idl);
2639     struct smap *stats;
2640
2641     stats = system_stats_run();
2642     if (stats && cfg) {
2643         struct ovsdb_idl_txn *txn;
2644         struct ovsdb_datum datum;
2645
2646         txn = ovsdb_idl_txn_create(idl);
2647         ovsdb_datum_from_smap(&datum, stats);
2648         ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
2649                             &datum);
2650         ovsdb_idl_txn_commit(txn);
2651         ovsdb_idl_txn_destroy(txn);
2652
2653         free(stats);
2654     }
2655 }
2656
2657 static const char *
2658 ofp12_controller_role_to_str(enum ofp12_controller_role role)
2659 {
2660     switch (role) {
2661     case OFPCR12_ROLE_EQUAL:
2662         return "other";
2663     case OFPCR12_ROLE_MASTER:
2664         return "master";
2665     case OFPCR12_ROLE_SLAVE:
2666         return "slave";
2667     case OFPCR12_ROLE_NOCHANGE:
2668     default:
2669         return "*** INVALID ROLE ***";
2670     }
2671 }
2672
2673 static void
2674 refresh_controller_status(void)
2675 {
2676     struct bridge *br;
2677     struct shash info;
2678     const struct ovsrec_controller *cfg;
2679
2680     shash_init(&info);
2681
2682     /* Accumulate status for controllers on all bridges. */
2683     HMAP_FOR_EACH (br, node, &all_bridges) {
2684         ofproto_get_ofproto_controller_info(br->ofproto, &info);
2685     }
2686
2687     /* Update each controller in the database with current status. */
2688     OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
2689         struct ofproto_controller_info *cinfo =
2690             shash_find_data(&info, cfg->target);
2691
2692         if (cinfo) {
2693             ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
2694             ovsrec_controller_set_role(cfg, ofp12_controller_role_to_str(
2695                                            cinfo->role));
2696             ovsrec_controller_set_status(cfg, &cinfo->pairs);
2697         } else {
2698             ovsrec_controller_set_is_connected(cfg, false);
2699             ovsrec_controller_set_role(cfg, NULL);
2700             ovsrec_controller_set_status(cfg, NULL);
2701         }
2702     }
2703
2704     ofproto_free_ofproto_controller_info(&info);
2705 }
2706 \f
2707 /* Update interface and mirror statistics if necessary. */
2708 static void
2709 run_stats_update(void)
2710 {
2711     const struct ovsrec_open_vswitch *cfg = ovsrec_open_vswitch_first(idl);
2712     int stats_interval;
2713
2714     if (!cfg) {
2715         return;
2716     }
2717
2718     /* Statistics update interval should always be greater than or equal to
2719      * 5000 ms. */
2720     stats_interval = MAX(smap_get_int(&cfg->other_config,
2721                                       "stats-update-interval",
2722                                       5000), 5000);
2723     if (stats_timer_interval != stats_interval) {
2724         stats_timer_interval = stats_interval;
2725         stats_timer = LLONG_MIN;
2726     }
2727
2728     if (time_msec() >= stats_timer) {
2729         enum ovsdb_idl_txn_status status;
2730
2731         /* Rate limit the update.  Do not start a new update if the
2732          * previous one is not done. */
2733         if (!stats_txn) {
2734             struct bridge *br;
2735
2736             stats_txn = ovsdb_idl_txn_create(idl);
2737             HMAP_FOR_EACH (br, node, &all_bridges) {
2738                 struct port *port;
2739                 struct mirror *m;
2740
2741                 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
2742                     struct iface *iface;
2743
2744                     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2745                         iface_refresh_stats(iface);
2746                     }
2747                     port_refresh_stp_stats(port);
2748                 }
2749                 HMAP_FOR_EACH (m, hmap_node, &br->mirrors) {
2750                     mirror_refresh_stats(m);
2751                 }
2752             }
2753             refresh_controller_status();
2754         }
2755
2756         status = ovsdb_idl_txn_commit(stats_txn);
2757         if (status != TXN_INCOMPLETE) {
2758             stats_timer = time_msec() + stats_timer_interval;
2759             ovsdb_idl_txn_destroy(stats_txn);
2760             stats_txn = NULL;
2761         }
2762     }
2763 }
2764
2765 static void
2766 stats_update_wait(void)
2767 {
2768     /* If the 'stats_txn' is non-null (transaction incomplete), waits for the
2769      * transaction to complete.  Otherwise, waits for the 'stats_timer'. */
2770     if (stats_txn) {
2771         ovsdb_idl_txn_wait(stats_txn);
2772     } else {
2773         poll_timer_wait_until(stats_timer);
2774     }
2775 }
2776
2777 /* Update bridge/port/interface status if necessary. */
2778 static void
2779 run_status_update(void)
2780 {
2781     if (!status_txn) {
2782         uint64_t seq;
2783
2784         /* Rate limit the update.  Do not start a new update if the
2785          * previous one is not done. */
2786         seq = seq_read(connectivity_seq_get());
2787         if (seq != connectivity_seqno || status_txn_try_again) {
2788             struct bridge *br;
2789
2790             connectivity_seqno = seq;
2791             status_txn = ovsdb_idl_txn_create(idl);
2792             HMAP_FOR_EACH (br, node, &all_bridges) {
2793                 struct port *port;
2794
2795                 br_refresh_stp_status(br);
2796                 br_refresh_rstp_status(br);
2797                 br_refresh_datapath_info(br);
2798                 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
2799                     struct iface *iface;
2800
2801                     port_refresh_stp_status(port);
2802                     port_refresh_rstp_status(port);
2803                     port_refresh_bond_status(port, status_txn_try_again);
2804                     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2805                         iface_refresh_netdev_status(iface);
2806                         iface_refresh_ofproto_status(iface);
2807                     }
2808                 }
2809             }
2810         }
2811     }
2812
2813     /* Commit the transaction and get the status. If the transaction finishes,
2814      * then destroy the transaction. Otherwise, keep it so that we can check
2815      * progress the next time that this function is called. */
2816     if (status_txn) {
2817         enum ovsdb_idl_txn_status status;
2818
2819         status = ovsdb_idl_txn_commit(status_txn);
2820         if (status != TXN_INCOMPLETE) {
2821             ovsdb_idl_txn_destroy(status_txn);
2822             status_txn = NULL;
2823
2824             /* Sets the 'status_txn_try_again' if the transaction fails. */
2825             if (status == TXN_SUCCESS || status == TXN_UNCHANGED) {
2826                 status_txn_try_again = false;
2827             } else {
2828                 status_txn_try_again = true;
2829             }
2830         }
2831     }
2832
2833     /* Refresh AA port status if necessary. */
2834     if (time_msec() >= aa_refresh_timer) {
2835         struct bridge *br;
2836
2837         HMAP_FOR_EACH (br, node, &all_bridges) {
2838             if (bridge_aa_need_refresh(br)) {
2839                 struct ovsdb_idl_txn *txn;
2840
2841                 txn = ovsdb_idl_txn_create(idl);
2842                 bridge_aa_refresh_queued(br);
2843                 ovsdb_idl_txn_commit(txn);
2844                 ovsdb_idl_txn_destroy(txn);
2845             }
2846         }
2847
2848         aa_refresh_timer = time_msec() + AA_REFRESH_INTERVAL;
2849     }
2850 }
2851
2852 static void
2853 status_update_wait(void)
2854 {
2855     /* If the 'status_txn' is non-null (transaction incomplete), waits for the
2856      * transaction to complete.  If the status update to database needs to be
2857      * run again (transaction fails), registers a timeout in
2858      * 'STATUS_CHECK_AGAIN_MSEC'.  Otherwise, waits on the global connectivity
2859      * sequence number. */
2860     if (status_txn) {
2861         ovsdb_idl_txn_wait(status_txn);
2862     } else if (status_txn_try_again) {
2863         poll_timer_wait_until(time_msec() + STATUS_CHECK_AGAIN_MSEC);
2864     } else {
2865         seq_wait(connectivity_seq_get(), connectivity_seqno);
2866     }
2867 }
2868
2869 static void
2870 bridge_run__(void)
2871 {
2872     struct bridge *br;
2873     struct sset types;
2874     const char *type;
2875
2876     /* Let each datapath type do the work that it needs to do. */
2877     sset_init(&types);
2878     ofproto_enumerate_types(&types);
2879     SSET_FOR_EACH (type, &types) {
2880         ofproto_type_run(type);
2881     }
2882     sset_destroy(&types);
2883
2884     /* Let each bridge do the work that it needs to do. */
2885     HMAP_FOR_EACH (br, node, &all_bridges) {
2886         ofproto_run(br->ofproto);
2887     }
2888 }
2889
2890 void
2891 bridge_run(void)
2892 {
2893     static struct ovsrec_open_vswitch null_cfg;
2894     const struct ovsrec_open_vswitch *cfg;
2895
2896     bool vlan_splinters_changed;
2897
2898     ovsrec_open_vswitch_init(&null_cfg);
2899
2900     ovsdb_idl_run(idl);
2901
2902     if_notifier_run();
2903
2904     if (ovsdb_idl_is_lock_contended(idl)) {
2905         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
2906         struct bridge *br, *next_br;
2907
2908         VLOG_ERR_RL(&rl, "another ovs-vswitchd process is running, "
2909                     "disabling this process (pid %ld) until it goes away",
2910                     (long int) getpid());
2911
2912         HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
2913             bridge_destroy(br);
2914         }
2915         /* Since we will not be running system_stats_run() in this process
2916          * with the current situation of multiple ovs-vswitchd daemons,
2917          * disable system stats collection. */
2918         system_stats_enable(false);
2919         return;
2920     } else if (!ovsdb_idl_has_lock(idl)
2921                || !ovsdb_idl_has_ever_connected(idl)) {
2922         /* Returns if not holding the lock or not done retrieving db
2923          * contents. */
2924         return;
2925     }
2926     cfg = ovsrec_open_vswitch_first(idl);
2927
2928     /* Initialize the ofproto library.  This only needs to run once, but
2929      * it must be done after the configuration is set.  If the
2930      * initialization has already occurred, bridge_init_ofproto()
2931      * returns immediately. */
2932     bridge_init_ofproto(cfg);
2933
2934     /* Once the value of flow-restore-wait is false, we no longer should
2935      * check its value from the database. */
2936     if (cfg && ofproto_get_flow_restore_wait()) {
2937         ofproto_set_flow_restore_wait(smap_get_bool(&cfg->other_config,
2938                                         "flow-restore-wait", false));
2939     }
2940
2941     bridge_run__();
2942
2943     /* Re-configure SSL.  We do this on every trip through the main loop,
2944      * instead of just when the database changes, because the contents of the
2945      * key and certificate files can change without the database changing.
2946      *
2947      * We do this before bridge_reconfigure() because that function might
2948      * initiate SSL connections and thus requires SSL to be configured. */
2949     if (cfg && cfg->ssl) {
2950         const struct ovsrec_ssl *ssl = cfg->ssl;
2951
2952         stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
2953         stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
2954     }
2955
2956     /* If VLAN splinters are in use, then we need to reconfigure if VLAN
2957      * usage has changed. */
2958     vlan_splinters_changed = false;
2959     if (vlan_splinters_enabled_anywhere) {
2960         struct bridge *br;
2961
2962         HMAP_FOR_EACH (br, node, &all_bridges) {
2963             if (ofproto_has_vlan_usage_changed(br->ofproto)) {
2964                 vlan_splinters_changed = true;
2965                 break;
2966             }
2967         }
2968     }
2969
2970     if (ovsdb_idl_get_seqno(idl) != idl_seqno || vlan_splinters_changed
2971         || ifaces_changed) {
2972         struct ovsdb_idl_txn *txn;
2973
2974         ifaces_changed = false;
2975
2976         idl_seqno = ovsdb_idl_get_seqno(idl);
2977         txn = ovsdb_idl_txn_create(idl);
2978         bridge_reconfigure(cfg ? cfg : &null_cfg);
2979
2980         if (cfg) {
2981             ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
2982             discover_types(cfg);
2983         }
2984
2985         /* If we are completing our initial configuration for this run
2986          * of ovs-vswitchd, then keep the transaction around to monitor
2987          * it for completion. */
2988         if (initial_config_done) {
2989             /* Always sets the 'status_txn_try_again' to check again,
2990              * in case that this transaction fails. */
2991             status_txn_try_again = true;
2992             ovsdb_idl_txn_commit(txn);
2993             ovsdb_idl_txn_destroy(txn);
2994         } else {
2995             initial_config_done = true;
2996             daemonize_txn = txn;
2997         }
2998     }
2999
3000     if (daemonize_txn) {
3001         enum ovsdb_idl_txn_status status = ovsdb_idl_txn_commit(daemonize_txn);
3002         if (status != TXN_INCOMPLETE) {
3003             ovsdb_idl_txn_destroy(daemonize_txn);
3004             daemonize_txn = NULL;
3005
3006             /* ovs-vswitchd has completed initialization, so allow the
3007              * process that forked us to exit successfully. */
3008             daemonize_complete();
3009
3010             vlog_enable_async();
3011
3012             VLOG_INFO_ONCE("%s (Open vSwitch) %s", program_name, VERSION);
3013         }
3014     }
3015
3016     run_stats_update();
3017     run_status_update();
3018     run_system_stats();
3019 }
3020
3021 void
3022 bridge_wait(void)
3023 {
3024     struct sset types;
3025     const char *type;
3026
3027     ovsdb_idl_wait(idl);
3028     if (daemonize_txn) {
3029         ovsdb_idl_txn_wait(daemonize_txn);
3030     }
3031
3032     if_notifier_wait();
3033     if (ifaces_changed) {
3034         poll_immediate_wake();
3035     }
3036
3037     sset_init(&types);
3038     ofproto_enumerate_types(&types);
3039     SSET_FOR_EACH (type, &types) {
3040         ofproto_type_wait(type);
3041     }
3042     sset_destroy(&types);
3043
3044     if (!hmap_is_empty(&all_bridges)) {
3045         struct bridge *br;
3046
3047         HMAP_FOR_EACH (br, node, &all_bridges) {
3048             ofproto_wait(br->ofproto);
3049         }
3050         stats_update_wait();
3051         status_update_wait();
3052     }
3053
3054     system_stats_wait();
3055 }
3056
3057 /* Adds some memory usage statistics for bridges into 'usage', for use with
3058  * memory_report(). */
3059 void
3060 bridge_get_memory_usage(struct simap *usage)
3061 {
3062     struct bridge *br;
3063     struct sset types;
3064     const char *type;
3065
3066     sset_init(&types);
3067     ofproto_enumerate_types(&types);
3068     SSET_FOR_EACH (type, &types) {
3069         ofproto_type_get_memory_usage(type, usage);
3070     }
3071     sset_destroy(&types);
3072
3073     HMAP_FOR_EACH (br, node, &all_bridges) {
3074         ofproto_get_memory_usage(br->ofproto, usage);
3075     }
3076 }
3077 \f
3078 /* QoS unixctl user interface functions. */
3079
3080 struct qos_unixctl_show_cbdata {
3081     struct ds *ds;
3082     struct iface *iface;
3083 };
3084
3085 static void
3086 qos_unixctl_show_queue(unsigned int queue_id,
3087                        const struct smap *details,
3088                        struct iface *iface,
3089                        struct ds *ds)
3090 {
3091     struct netdev_queue_stats stats;
3092     struct smap_node *node;
3093     int error;
3094
3095     ds_put_cstr(ds, "\n");
3096     if (queue_id) {
3097         ds_put_format(ds, "Queue %u:\n", queue_id);
3098     } else {
3099         ds_put_cstr(ds, "Default:\n");
3100     }
3101
3102     SMAP_FOR_EACH (node, details) {
3103         ds_put_format(ds, "\t%s: %s\n", node->key, node->value);
3104     }
3105
3106     error = netdev_get_queue_stats(iface->netdev, queue_id, &stats);
3107     if (!error) {
3108         if (stats.tx_packets != UINT64_MAX) {
3109             ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets);
3110         }
3111
3112         if (stats.tx_bytes != UINT64_MAX) {
3113             ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes);
3114         }
3115
3116         if (stats.tx_errors != UINT64_MAX) {
3117             ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors);
3118         }
3119     } else {
3120         ds_put_format(ds, "\tFailed to get statistics for queue %u: %s",
3121                       queue_id, ovs_strerror(error));
3122     }
3123 }
3124
3125 static void
3126 qos_unixctl_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
3127                  const char *argv[], void *aux OVS_UNUSED)
3128 {
3129     struct ds ds = DS_EMPTY_INITIALIZER;
3130     struct smap smap = SMAP_INITIALIZER(&smap);
3131     struct iface *iface;
3132     const char *type;
3133     struct smap_node *node;
3134
3135     iface = iface_find(argv[1]);
3136     if (!iface) {
3137         unixctl_command_reply_error(conn, "no such interface");
3138         return;
3139     }
3140
3141     netdev_get_qos(iface->netdev, &type, &smap);
3142
3143     if (*type != '\0') {
3144         struct netdev_queue_dump dump;
3145         struct smap details;
3146         unsigned int queue_id;
3147
3148         ds_put_format(&ds, "QoS: %s %s\n", iface->name, type);
3149
3150         SMAP_FOR_EACH (node, &smap) {
3151             ds_put_format(&ds, "%s: %s\n", node->key, node->value);
3152         }
3153
3154         smap_init(&details);
3155         NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &dump, iface->netdev) {
3156             qos_unixctl_show_queue(queue_id, &details, iface, &ds);
3157         }
3158         smap_destroy(&details);
3159
3160         unixctl_command_reply(conn, ds_cstr(&ds));
3161     } else {
3162         ds_put_format(&ds, "QoS not configured on %s\n", iface->name);
3163         unixctl_command_reply_error(conn, ds_cstr(&ds));
3164     }
3165
3166     smap_destroy(&smap);
3167     ds_destroy(&ds);
3168 }
3169 \f
3170 /* Bridge reconfiguration functions. */
3171 static void
3172 bridge_create(const struct ovsrec_bridge *br_cfg)
3173 {
3174     struct bridge *br;
3175
3176     ovs_assert(!bridge_lookup(br_cfg->name));
3177     br = xzalloc(sizeof *br);
3178
3179     br->name = xstrdup(br_cfg->name);
3180     br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type));
3181     br->cfg = br_cfg;
3182
3183     /* Derive the default Ethernet address from the bridge's UUID.  This should
3184      * be unique and it will be stable between ovs-vswitchd runs.  */
3185     memcpy(&br->default_ea, &br_cfg->header_.uuid, ETH_ADDR_LEN);
3186     eth_addr_mark_random(&br->default_ea);
3187
3188     hmap_init(&br->ports);
3189     hmap_init(&br->ifaces);
3190     hmap_init(&br->iface_by_name);
3191     hmap_init(&br->mirrors);
3192
3193     hmap_init(&br->mappings);
3194     hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0));
3195 }
3196
3197 static void
3198 bridge_destroy(struct bridge *br)
3199 {
3200     if (br) {
3201         struct mirror *mirror, *next_mirror;
3202         struct port *port, *next_port;
3203
3204         HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
3205             port_destroy(port);
3206         }
3207         HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) {
3208             mirror_destroy(mirror);
3209         }
3210
3211         hmap_remove(&all_bridges, &br->node);
3212         ofproto_destroy(br->ofproto);
3213         hmap_destroy(&br->ifaces);
3214         hmap_destroy(&br->ports);
3215         hmap_destroy(&br->iface_by_name);
3216         hmap_destroy(&br->mirrors);
3217         hmap_destroy(&br->mappings);
3218         free(br->name);
3219         free(br->type);
3220         free(br);
3221     }
3222 }
3223
3224 static struct bridge *
3225 bridge_lookup(const char *name)
3226 {
3227     struct bridge *br;
3228
3229     HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) {
3230         if (!strcmp(br->name, name)) {
3231             return br;
3232         }
3233     }
3234     return NULL;
3235 }
3236
3237 /* Handle requests for a listing of all flows known by the OpenFlow
3238  * stack, including those normally hidden. */
3239 static void
3240 bridge_unixctl_dump_flows(struct unixctl_conn *conn, int argc OVS_UNUSED,
3241                           const char *argv[], void *aux OVS_UNUSED)
3242 {
3243     struct bridge *br;
3244     struct ds results;
3245
3246     br = bridge_lookup(argv[1]);
3247     if (!br) {
3248         unixctl_command_reply_error(conn, "Unknown bridge");
3249         return;
3250     }
3251
3252     ds_init(&results);
3253     ofproto_get_all_flows(br->ofproto, &results);
3254
3255     unixctl_command_reply(conn, ds_cstr(&results));
3256     ds_destroy(&results);
3257 }
3258
3259 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
3260  * connections and reconnect.  If BRIDGE is not specified, then all bridges
3261  * drop their controller connections and reconnect. */
3262 static void
3263 bridge_unixctl_reconnect(struct unixctl_conn *conn, int argc,
3264                          const char *argv[], void *aux OVS_UNUSED)
3265 {
3266     struct bridge *br;
3267     if (argc > 1) {
3268         br = bridge_lookup(argv[1]);
3269         if (!br) {
3270             unixctl_command_reply_error(conn,  "Unknown bridge");
3271             return;
3272         }
3273         ofproto_reconnect_controllers(br->ofproto);
3274     } else {
3275         HMAP_FOR_EACH (br, node, &all_bridges) {
3276             ofproto_reconnect_controllers(br->ofproto);
3277         }
3278     }
3279     unixctl_command_reply(conn, NULL);
3280 }
3281
3282 static size_t
3283 bridge_get_controllers(const struct bridge *br,
3284                        struct ovsrec_controller ***controllersp)
3285 {
3286     struct ovsrec_controller **controllers;
3287     size_t n_controllers;
3288
3289     controllers = br->cfg->controller;
3290     n_controllers = br->cfg->n_controller;
3291
3292     if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
3293         controllers = NULL;
3294         n_controllers = 0;
3295     }
3296
3297     if (controllersp) {
3298         *controllersp = controllers;
3299     }
3300     return n_controllers;
3301 }
3302
3303 static void
3304 bridge_collect_wanted_ports(struct bridge *br,
3305                             const unsigned long int *splinter_vlans,
3306                             struct shash *wanted_ports)
3307 {
3308     size_t i;
3309
3310     shash_init(wanted_ports);
3311
3312     for (i = 0; i < br->cfg->n_ports; i++) {
3313         const char *name = br->cfg->ports[i]->name;
3314         if (!shash_add_once(wanted_ports, name, br->cfg->ports[i])) {
3315             VLOG_WARN("bridge %s: %s specified twice as bridge port",
3316                       br->name, name);
3317         }
3318     }
3319     if (bridge_get_controllers(br, NULL)
3320         && !shash_find(wanted_ports, br->name)) {
3321         VLOG_WARN("bridge %s: no port named %s, synthesizing one",
3322                   br->name, br->name);
3323
3324         ovsrec_interface_init(&br->synth_local_iface);
3325         ovsrec_port_init(&br->synth_local_port);
3326
3327         br->synth_local_port.interfaces = &br->synth_local_ifacep;
3328         br->synth_local_port.n_interfaces = 1;
3329         br->synth_local_port.name = br->name;
3330
3331         br->synth_local_iface.name = br->name;
3332         br->synth_local_iface.type = "internal";
3333
3334         br->synth_local_ifacep = &br->synth_local_iface;
3335
3336         shash_add(wanted_ports, br->name, &br->synth_local_port);
3337     }
3338
3339     if (splinter_vlans) {
3340         add_vlan_splinter_ports(br, splinter_vlans, wanted_ports);
3341     }
3342 }
3343
3344 /* Deletes "struct port"s and "struct iface"s under 'br' which aren't
3345  * consistent with 'br->cfg'.  Updates 'br->if_cfg_queue' with interfaces which
3346  * 'br' needs to complete its configuration. */
3347 static void
3348 bridge_del_ports(struct bridge *br, const struct shash *wanted_ports)
3349 {
3350     struct shash_node *port_node;
3351     struct port *port, *next;
3352
3353     /* Get rid of deleted ports.
3354      * Get rid of deleted interfaces on ports that still exist. */
3355     HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
3356         port->cfg = shash_find_data(wanted_ports, port->name);
3357         if (!port->cfg) {
3358             port_destroy(port);
3359         } else {
3360             port_del_ifaces(port);
3361         }
3362     }
3363
3364     /* Update iface->cfg and iface->type in interfaces that still exist. */
3365     SHASH_FOR_EACH (port_node, wanted_ports) {
3366         const struct ovsrec_port *port = port_node->data;
3367         size_t i;
3368
3369         for (i = 0; i < port->n_interfaces; i++) {
3370             const struct ovsrec_interface *cfg = port->interfaces[i];
3371             struct iface *iface = iface_lookup(br, cfg->name);
3372             const char *type = iface_get_type(cfg, br->cfg);
3373
3374             if (iface) {
3375                 iface->cfg = cfg;
3376                 iface->type = type;
3377             } else if (!strcmp(type, "null")) {
3378                 VLOG_WARN_ONCE("%s: The null interface type is deprecated and"
3379                                " may be removed in February 2013. Please email"
3380                                " dev@openvswitch.org with concerns.",
3381                                cfg->name);
3382             } else {
3383                 /* We will add new interfaces later. */
3384             }
3385         }
3386     }
3387 }
3388
3389 /* Initializes 'oc' appropriately as a management service controller for
3390  * 'br'.
3391  *
3392  * The caller must free oc->target when it is no longer needed. */
3393 static void
3394 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
3395                                    struct ofproto_controller *oc)
3396 {
3397     oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
3398     oc->max_backoff = 0;
3399     oc->probe_interval = 60;
3400     oc->band = OFPROTO_OUT_OF_BAND;
3401     oc->rate_limit = 0;
3402     oc->burst_limit = 0;
3403     oc->enable_async_msgs = true;
3404     oc->dscp = 0;
3405 }
3406
3407 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'.  */
3408 static void
3409 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
3410                                       struct ofproto_controller *oc)
3411 {
3412     int dscp;
3413
3414     oc->target = c->target;
3415     oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
3416     oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
3417     oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
3418                 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
3419     oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
3420     oc->burst_limit = (c->controller_burst_limit
3421                        ? *c->controller_burst_limit : 0);
3422     oc->enable_async_msgs = (!c->enable_async_messages
3423                              || *c->enable_async_messages);
3424     dscp = smap_get_int(&c->other_config, "dscp", DSCP_DEFAULT);
3425     if (dscp < 0 || dscp > 63) {
3426         dscp = DSCP_DEFAULT;
3427     }
3428     oc->dscp = dscp;
3429 }
3430
3431 /* Configures the IP stack for 'br''s local interface properly according to the
3432  * configuration in 'c'.  */
3433 static void
3434 bridge_configure_local_iface_netdev(struct bridge *br,
3435                                     struct ovsrec_controller *c)
3436 {
3437     struct netdev *netdev;
3438     struct in_addr mask, gateway;
3439
3440     struct iface *local_iface;
3441     struct in_addr ip;
3442
3443     /* If there's no local interface or no IP address, give up. */
3444     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
3445     if (!local_iface || !c->local_ip || !ip_parse(c->local_ip, &ip.s_addr)) {
3446         return;
3447     }
3448
3449     /* Bring up the local interface. */
3450     netdev = local_iface->netdev;
3451     netdev_turn_flags_on(netdev, NETDEV_UP, NULL);
3452
3453     /* Configure the IP address and netmask. */
3454     if (!c->local_netmask
3455         || !ip_parse(c->local_netmask, &mask.s_addr)
3456         || !mask.s_addr) {
3457         mask.s_addr = guess_netmask(ip.s_addr);
3458     }
3459     if (!netdev_set_in4(netdev, ip, mask)) {
3460         VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
3461                   br->name, IP_ARGS(ip.s_addr), IP_ARGS(mask.s_addr));
3462     }
3463
3464     /* Configure the default gateway. */
3465     if (c->local_gateway
3466         && ip_parse(c->local_gateway, &gateway.s_addr)
3467         && gateway.s_addr) {
3468         if (!netdev_add_router(netdev, gateway)) {
3469             VLOG_INFO("bridge %s: configured gateway "IP_FMT,
3470                       br->name, IP_ARGS(gateway.s_addr));
3471         }
3472     }
3473 }
3474
3475 /* Returns true if 'a' and 'b' are the same except that any number of slashes
3476  * in either string are treated as equal to any number of slashes in the other,
3477  * e.g. "x///y" is equal to "x/y".
3478  *
3479  * Also, if 'b_stoplen' bytes from 'b' are found to be equal to corresponding
3480  * bytes from 'a', the function considers this success.  Specify 'b_stoplen' as
3481  * SIZE_MAX to compare all of 'a' to all of 'b' rather than just a prefix of
3482  * 'b' against a prefix of 'a'.
3483  */
3484 static bool
3485 equal_pathnames(const char *a, const char *b, size_t b_stoplen)
3486 {
3487     const char *b_start = b;
3488     for (;;) {
3489         if (b - b_start >= b_stoplen) {
3490             return true;
3491         } else if (*a != *b) {
3492             return false;
3493         } else if (*a == '/') {
3494             a += strspn(a, "/");
3495             b += strspn(b, "/");
3496         } else if (*a == '\0') {
3497             return true;
3498         } else {
3499             a++;
3500             b++;
3501         }
3502     }
3503 }
3504
3505 static void
3506 bridge_configure_remotes(struct bridge *br,
3507                          const struct sockaddr_in *managers, size_t n_managers)
3508 {
3509     bool disable_in_band;
3510
3511     struct ovsrec_controller **controllers;
3512     size_t n_controllers;
3513
3514     enum ofproto_fail_mode fail_mode;
3515
3516     struct ofproto_controller *ocs;
3517     size_t n_ocs;
3518     size_t i;
3519
3520     /* Check if we should disable in-band control on this bridge. */
3521     disable_in_band = smap_get_bool(&br->cfg->other_config, "disable-in-band",
3522                                     false);
3523
3524     /* Set OpenFlow queue ID for in-band control. */
3525     ofproto_set_in_band_queue(br->ofproto,
3526                               smap_get_int(&br->cfg->other_config,
3527                                            "in-band-queue", -1));
3528
3529     if (disable_in_band) {
3530         ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
3531     } else {
3532         ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
3533     }
3534
3535     n_controllers = bridge_get_controllers(br, &controllers);
3536
3537     ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
3538     n_ocs = 0;
3539
3540     bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
3541     for (i = 0; i < n_controllers; i++) {
3542         struct ovsrec_controller *c = controllers[i];
3543
3544         if (!strncmp(c->target, "punix:", 6)
3545             || !strncmp(c->target, "unix:", 5)) {
3546             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3547             char *whitelist;
3548
3549             if (!strncmp(c->target, "unix:", 5)) {
3550                 /* Connect to a listening socket */
3551                 whitelist = xasprintf("unix:%s/", ovs_rundir());
3552                 if (strchr(c->target, '/') &&
3553                    !equal_pathnames(c->target, whitelist,
3554                      strlen(whitelist))) {
3555                     /* Absolute path specified, but not in ovs_rundir */
3556                     VLOG_ERR_RL(&rl, "bridge %s: Not connecting to socket "
3557                                   "controller \"%s\" due to possibility for "
3558                                   "remote exploit.  Instead, specify socket "
3559                                   "in whitelisted \"%s\" or connect to "
3560                                   "\"unix:%s/%s.mgmt\" (which is always "
3561                                   "available without special configuration).",
3562                                   br->name, c->target, whitelist,
3563                                   ovs_rundir(), br->name);
3564                     free(whitelist);
3565                     continue;
3566                 }
3567             } else {
3568                whitelist = xasprintf("punix:%s/%s.",
3569                                      ovs_rundir(), br->name);
3570                if (!equal_pathnames(c->target, whitelist, strlen(whitelist))
3571                    || strchr(c->target + strlen(whitelist), '/')) {
3572                    /* Prevent remote ovsdb-server users from accessing
3573                     * arbitrary Unix domain sockets and overwriting arbitrary
3574                     * local files. */
3575                    VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket "
3576                                   "controller \"%s\" due to possibility of "
3577                                   "overwriting local files. Instead, specify "
3578                                   "path in whitelisted format \"%s*\" or "
3579                                   "connect to \"unix:%s/%s.mgmt\" (which is "
3580                                   "always available without special "
3581                                   "configuration).",
3582                                   br->name, c->target, whitelist,
3583                                   ovs_rundir(), br->name);
3584                    free(whitelist);
3585                    continue;
3586                }
3587             }
3588
3589             free(whitelist);
3590         }
3591
3592         bridge_configure_local_iface_netdev(br, c);
3593         bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
3594         if (disable_in_band) {
3595             ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
3596         }
3597         n_ocs++;
3598     }
3599
3600     ofproto_set_controllers(br->ofproto, ocs, n_ocs,
3601                             bridge_get_allowed_versions(br));
3602     free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
3603     free(ocs);
3604
3605     /* Set the fail-mode. */
3606     fail_mode = !br->cfg->fail_mode
3607                 || !strcmp(br->cfg->fail_mode, "standalone")
3608                     ? OFPROTO_FAIL_STANDALONE
3609                     : OFPROTO_FAIL_SECURE;
3610     ofproto_set_fail_mode(br->ofproto, fail_mode);
3611
3612     /* Configure OpenFlow controller connection snooping. */
3613     if (!ofproto_has_snoops(br->ofproto)) {
3614         struct sset snoops;
3615
3616         sset_init(&snoops);
3617         sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
3618                                              ovs_rundir(), br->name));
3619         ofproto_set_snoops(br->ofproto, &snoops);
3620         sset_destroy(&snoops);
3621     }
3622 }
3623
3624 static void
3625 bridge_configure_tables(struct bridge *br)
3626 {
3627     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3628     int n_tables;
3629     int i, j, k;
3630
3631     n_tables = ofproto_get_n_tables(br->ofproto);
3632     j = 0;
3633     for (i = 0; i < n_tables; i++) {
3634         struct ofproto_table_settings s;
3635         bool use_default_prefixes = true;
3636
3637         s.name = NULL;
3638         s.max_flows = UINT_MAX;
3639         s.groups = NULL;
3640         s.enable_eviction = false;
3641         s.n_groups = 0;
3642         s.n_prefix_fields = 0;
3643         memset(s.prefix_fields, ~0, sizeof(s.prefix_fields));
3644
3645         if (j < br->cfg->n_flow_tables && i == br->cfg->key_flow_tables[j]) {
3646             struct ovsrec_flow_table *cfg = br->cfg->value_flow_tables[j++];
3647
3648             s.name = cfg->name;
3649             if (cfg->n_flow_limit && *cfg->flow_limit < UINT_MAX) {
3650                 s.max_flows = *cfg->flow_limit;
3651             }
3652
3653             s.enable_eviction = (cfg->overflow_policy
3654                                  && !strcmp(cfg->overflow_policy, "evict"));
3655             if (cfg->n_groups) {
3656                 s.groups = xmalloc(cfg->n_groups * sizeof *s.groups);
3657                 for (k = 0; k < cfg->n_groups; k++) {
3658                     const char *string = cfg->groups[k];
3659                     char *msg;
3660
3661                     msg = mf_parse_subfield__(&s.groups[k], &string);
3662                     if (msg) {
3663                         VLOG_WARN_RL(&rl, "bridge %s table %d: error parsing "
3664                                      "'groups' (%s)", br->name, i, msg);
3665                         free(msg);
3666                     } else if (*string) {
3667                         VLOG_WARN_RL(&rl, "bridge %s table %d: 'groups' "
3668                                      "element '%s' contains trailing garbage",
3669                                      br->name, i, cfg->groups[k]);
3670                     } else {
3671                         s.n_groups++;
3672                     }
3673                 }
3674             }
3675
3676             /* Prefix lookup fields. */
3677             s.n_prefix_fields = 0;
3678             for (k = 0; k < cfg->n_prefixes; k++) {
3679                 const char *name = cfg->prefixes[k];
3680                 const struct mf_field *mf;
3681
3682                 if (strcmp(name, "none") == 0) {
3683                     use_default_prefixes = false;
3684                     s.n_prefix_fields = 0;
3685                     break;
3686                 }
3687                 mf = mf_from_name(name);
3688                 if (!mf) {
3689                     VLOG_WARN("bridge %s: 'prefixes' with unknown field: %s",
3690                               br->name, name);
3691                     continue;
3692                 }
3693                 if (mf->flow_be32ofs < 0 || mf->n_bits % 32) {
3694                     VLOG_WARN("bridge %s: 'prefixes' with incompatible field: "
3695                               "%s", br->name, name);
3696                     continue;
3697                 }
3698                 if (s.n_prefix_fields >= ARRAY_SIZE(s.prefix_fields)) {
3699                     VLOG_WARN("bridge %s: 'prefixes' with too many fields, "
3700                               "field not used: %s", br->name, name);
3701                     continue;
3702                 }
3703                 use_default_prefixes = false;
3704                 s.prefix_fields[s.n_prefix_fields++] = mf->id;
3705             }
3706         }
3707         if (use_default_prefixes) {
3708             /* Use default values. */
3709             s.n_prefix_fields = ARRAY_SIZE(default_prefix_fields);
3710             memcpy(s.prefix_fields, default_prefix_fields,
3711                    sizeof default_prefix_fields);
3712         } else {
3713             int k;
3714             struct ds ds = DS_EMPTY_INITIALIZER;
3715             for (k = 0; k < s.n_prefix_fields; k++) {
3716                 if (k) {
3717                     ds_put_char(&ds, ',');
3718                 }
3719                 ds_put_cstr(&ds, mf_from_id(s.prefix_fields[k])->name);
3720             }
3721             if (s.n_prefix_fields == 0) {
3722                 ds_put_cstr(&ds, "none");
3723             }
3724             VLOG_INFO("bridge %s table %d: Prefix lookup with: %s.",
3725                       br->name, i, ds_cstr(&ds));
3726             ds_destroy(&ds);
3727         }
3728
3729         ofproto_configure_table(br->ofproto, i, &s);
3730
3731         free(s.groups);
3732     }
3733     for (; j < br->cfg->n_flow_tables; j++) {
3734         VLOG_WARN_RL(&rl, "bridge %s: ignoring configuration for flow table "
3735                      "%"PRId64" not supported by this datapath", br->name,
3736                      br->cfg->key_flow_tables[j]);
3737     }
3738 }
3739
3740 static void
3741 bridge_configure_dp_desc(struct bridge *br)
3742 {
3743     ofproto_set_dp_desc(br->ofproto,
3744                         smap_get(&br->cfg->other_config, "dp-desc"));
3745 }
3746
3747 static struct aa_mapping *
3748 bridge_aa_mapping_find(struct bridge *br, const int64_t isid)
3749 {
3750     struct aa_mapping *m;
3751
3752     HMAP_FOR_EACH_IN_BUCKET (m,
3753                              hmap_node,
3754                              hash_bytes(&isid, sizeof isid, 0),
3755                              &br->mappings) {
3756         if (isid == m->isid) {
3757             return m;
3758         }
3759     }
3760     return NULL;
3761 }
3762
3763 static struct aa_mapping *
3764 bridge_aa_mapping_create(struct bridge *br,
3765                          const int64_t isid,
3766                          const int64_t vlan)
3767 {
3768     struct aa_mapping *m;
3769
3770     m = xzalloc(sizeof *m);
3771     m->bridge = br;
3772     m->isid = isid;
3773     m->vlan = vlan;
3774     m->br_name = xstrdup(br->name);
3775     hmap_insert(&br->mappings,
3776                 &m->hmap_node,
3777                 hash_bytes(&isid, sizeof isid, 0));
3778
3779     return m;
3780 }
3781
3782 static void
3783 bridge_aa_mapping_destroy(struct aa_mapping *m)
3784 {
3785     if (m) {
3786         struct bridge *br = m->bridge;
3787
3788         if (br->ofproto) {
3789             ofproto_aa_mapping_unregister(br->ofproto, m);
3790         }
3791
3792         hmap_remove(&br->mappings, &m->hmap_node);
3793         if (m->br_name) {
3794             free(m->br_name);
3795         }
3796         free(m);
3797     }
3798 }
3799
3800 static bool
3801 bridge_aa_mapping_configure(struct aa_mapping *m)
3802 {
3803     struct aa_mapping_settings s;
3804
3805     s.isid = m->isid;
3806     s.vlan = m->vlan;
3807
3808     /* Configure. */
3809     ofproto_aa_mapping_register(m->bridge->ofproto, m, &s);
3810
3811     return true;
3812 }
3813
3814 static void
3815 bridge_configure_aa(struct bridge *br)
3816 {
3817     const struct ovsdb_datum *mc;
3818     struct ovsrec_autoattach *auto_attach = br->cfg->auto_attach;
3819     struct aa_settings aa_s;
3820     struct aa_mapping *m, *next;
3821     size_t i;
3822
3823     if (!auto_attach) {
3824         ofproto_set_aa(br->ofproto, NULL, NULL);
3825         return;
3826     }
3827
3828     memset(&aa_s, 0, sizeof aa_s);
3829     aa_s.system_description = auto_attach->system_description;
3830     aa_s.system_name = auto_attach->system_name;
3831     ofproto_set_aa(br->ofproto, NULL, &aa_s);
3832
3833     mc = ovsrec_autoattach_get_mappings(auto_attach,
3834                                         OVSDB_TYPE_INTEGER,
3835                                         OVSDB_TYPE_INTEGER);
3836     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mappings) {
3837         union ovsdb_atom atom;
3838
3839         atom.integer = m->isid;
3840         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3841             VLOG_INFO("Deleting isid=%"PRIu32", vlan=%"PRIu16,
3842                       m->isid, m->vlan);
3843             bridge_aa_mapping_destroy(m);
3844         }
3845     }
3846
3847     /* Add new mappings and reconfigure existing ones. */
3848     for (i = 0; i < auto_attach->n_mappings; ++i) {
3849         struct aa_mapping *m =
3850             bridge_aa_mapping_find(br, auto_attach->key_mappings[i]);
3851
3852         if (!m) {
3853             VLOG_INFO("Adding isid=%"PRId64", vlan=%"PRId64,
3854                       auto_attach->key_mappings[i],
3855                       auto_attach->value_mappings[i]);
3856             m = bridge_aa_mapping_create(br,
3857                                          auto_attach->key_mappings[i],
3858                                          auto_attach->value_mappings[i]);
3859
3860             if (!bridge_aa_mapping_configure(m)) {
3861                 bridge_aa_mapping_destroy(m);
3862             }
3863         }
3864     }
3865 }
3866
3867 static bool
3868 bridge_aa_need_refresh(struct bridge *br)
3869 {
3870     return ofproto_aa_vlan_get_queue_size(br->ofproto) > 0;
3871 }
3872
3873 static void
3874 bridge_aa_update_trunks(struct port *port, struct bridge_aa_vlan *m)
3875 {
3876     int64_t *trunks = NULL;
3877     unsigned int i = 0;
3878     bool found = false, reconfigure = false;
3879
3880     for (i = 0; i < port->cfg->n_trunks; i++) {
3881         if (port->cfg->trunks[i] == m->vlan) {
3882             found = true;
3883             break;
3884         }
3885     }
3886
3887     switch (m->oper) {
3888         case BRIDGE_AA_VLAN_OPER_ADD:
3889             if (!found) {
3890                 trunks = xmalloc(sizeof *trunks * (port->cfg->n_trunks + 1));
3891
3892                 for (i = 0; i < port->cfg->n_trunks; i++) {
3893                     trunks[i] = port->cfg->trunks[i];
3894                 }
3895                 trunks[i++] = m->vlan;
3896                 reconfigure = true;
3897             }
3898
3899             break;
3900
3901         case BRIDGE_AA_VLAN_OPER_REMOVE:
3902             if (found) {
3903                 unsigned int j = 0;
3904
3905                 trunks = xmalloc(sizeof *trunks * (port->cfg->n_trunks - 1));
3906
3907                 for (i = 0; i < port->cfg->n_trunks; i++) {
3908                     if (port->cfg->trunks[i] != m->vlan) {
3909                         trunks[j++] = port->cfg->trunks[i];
3910                     }
3911                 }
3912                 i = j;
3913                 reconfigure = true;
3914             }
3915
3916             break;
3917
3918         case BRIDGE_AA_VLAN_OPER_UNDEF:
3919         default:
3920             VLOG_WARN("unrecognized operation %u", m->oper);
3921             break;
3922     }
3923
3924     if (reconfigure) {
3925         /* VLAN switching under trunk mode cause the trunk port to switch all
3926          * VLANs, see ovs-vswitchd.conf.db
3927          */
3928         if (i == 0)  {
3929             static char *vlan_mode_access = "access";
3930             ovsrec_port_set_vlan_mode(port->cfg, vlan_mode_access);
3931         }
3932
3933         if (i == 1) {
3934             static char *vlan_mode_trunk = "trunk";
3935             ovsrec_port_set_vlan_mode(port->cfg, vlan_mode_trunk);
3936         }
3937
3938         ovsrec_port_set_trunks(port->cfg, trunks, i);
3939
3940         /* Force reconfigure of the port. */
3941         port_configure(port);
3942     }
3943 }
3944
3945 static void
3946 bridge_aa_refresh_queued(struct bridge *br)
3947 {
3948     struct ovs_list *list = xmalloc(sizeof *list);
3949     struct bridge_aa_vlan *node, *next;
3950
3951     list_init(list);
3952     ofproto_aa_vlan_get_queued(br->ofproto, list);
3953
3954     LIST_FOR_EACH_SAFE (node, next, list_node, list) {
3955         struct port *port;
3956
3957         VLOG_INFO("ifname=%s, vlan=%u, oper=%u", node->port_name, node->vlan,
3958                   node->oper);
3959
3960         port = port_lookup(br, node->port_name);
3961         if (port) {
3962             bridge_aa_update_trunks(port, node);
3963         }
3964
3965         list_remove(&node->list_node);
3966         free(node->port_name);
3967         free(node);
3968     }
3969
3970     free(list);
3971 }
3972
3973 \f
3974 /* Port functions. */
3975
3976 static struct port *
3977 port_create(struct bridge *br, const struct ovsrec_port *cfg)
3978 {
3979     struct port *port;
3980
3981     port = xzalloc(sizeof *port);
3982     port->bridge = br;
3983     port->name = xstrdup(cfg->name);
3984     port->cfg = cfg;
3985     list_init(&port->ifaces);
3986
3987     hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
3988     return port;
3989 }
3990
3991 /* Deletes interfaces from 'port' that are no longer configured for it. */
3992 static void
3993 port_del_ifaces(struct port *port)
3994 {
3995     struct iface *iface, *next;
3996     struct sset new_ifaces;
3997     size_t i;
3998
3999     /* Collect list of new interfaces. */
4000     sset_init(&new_ifaces);
4001     for (i = 0; i < port->cfg->n_interfaces; i++) {
4002         const char *name = port->cfg->interfaces[i]->name;
4003         const char *type = port->cfg->interfaces[i]->type;
4004         if (strcmp(type, "null")) {
4005             sset_add(&new_ifaces, name);
4006         }
4007     }
4008
4009     /* Get rid of deleted interfaces. */
4010     LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
4011         if (!sset_contains(&new_ifaces, iface->name)) {
4012             iface_destroy(iface);
4013         }
4014     }
4015
4016     sset_destroy(&new_ifaces);
4017 }
4018
4019 static void
4020 port_destroy(struct port *port)
4021 {
4022     if (port) {
4023         struct bridge *br = port->bridge;
4024         struct iface *iface, *next;
4025
4026         if (br->ofproto) {
4027             ofproto_bundle_unregister(br->ofproto, port);
4028         }
4029
4030         LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
4031             iface_destroy__(iface);
4032         }
4033
4034         hmap_remove(&br->ports, &port->hmap_node);
4035         free(port->name);
4036         free(port);
4037     }
4038 }
4039
4040 static struct port *
4041 port_lookup(const struct bridge *br, const char *name)
4042 {
4043     struct port *port;
4044
4045     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
4046                              &br->ports) {
4047         if (!strcmp(port->name, name)) {
4048             return port;
4049         }
4050     }
4051     return NULL;
4052 }
4053
4054 static bool
4055 enable_lacp(struct port *port, bool *activep)
4056 {
4057     if (!port->cfg->lacp) {
4058         /* XXX when LACP implementation has been sufficiently tested, enable by
4059          * default and make active on bonded ports. */
4060         return false;
4061     } else if (!strcmp(port->cfg->lacp, "off")) {
4062         return false;
4063     } else if (!strcmp(port->cfg->lacp, "active")) {
4064         *activep = true;
4065         return true;
4066     } else if (!strcmp(port->cfg->lacp, "passive")) {
4067         *activep = false;
4068         return true;
4069     } else {
4070         VLOG_WARN("port %s: unknown LACP mode %s",
4071                   port->name, port->cfg->lacp);
4072         return false;
4073     }
4074 }
4075
4076 static struct lacp_settings *
4077 port_configure_lacp(struct port *port, struct lacp_settings *s)
4078 {
4079     const char *lacp_time, *system_id;
4080     int priority;
4081
4082     if (!enable_lacp(port, &s->active)) {
4083         return NULL;
4084     }
4085
4086     s->name = port->name;
4087
4088     system_id = smap_get(&port->cfg->other_config, "lacp-system-id");
4089     if (system_id) {
4090         if (!ovs_scan(system_id, ETH_ADDR_SCAN_FMT,
4091                       ETH_ADDR_SCAN_ARGS(s->id))) {
4092             VLOG_WARN("port %s: LACP system ID (%s) must be an Ethernet"
4093                       " address.", port->name, system_id);
4094             return NULL;
4095         }
4096     } else {
4097         s->id = port->bridge->ea;
4098     }
4099
4100     if (eth_addr_is_zero(s->id)) {
4101         VLOG_WARN("port %s: Invalid zero LACP system ID.", port->name);
4102         return NULL;
4103     }
4104
4105     /* Prefer bondable links if unspecified. */
4106     priority = smap_get_int(&port->cfg->other_config, "lacp-system-priority",
4107                             0);
4108     s->priority = (priority > 0 && priority <= UINT16_MAX
4109                    ? priority
4110                    : UINT16_MAX - !list_is_short(&port->ifaces));
4111
4112     lacp_time = smap_get(&port->cfg->other_config, "lacp-time");
4113     s->fast = lacp_time && !strcasecmp(lacp_time, "fast");
4114
4115     s->fallback_ab_cfg = smap_get_bool(&port->cfg->other_config,
4116                                        "lacp-fallback-ab", false);
4117
4118     return s;
4119 }
4120
4121 static void
4122 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
4123 {
4124     int priority, portid, key;
4125
4126     portid = smap_get_int(&iface->cfg->other_config, "lacp-port-id", 0);
4127     priority = smap_get_int(&iface->cfg->other_config, "lacp-port-priority",
4128                             0);
4129     key = smap_get_int(&iface->cfg->other_config, "lacp-aggregation-key", 0);
4130
4131     if (portid <= 0 || portid > UINT16_MAX) {
4132         portid = ofp_to_u16(iface->ofp_port);
4133     }
4134
4135     if (priority <= 0 || priority > UINT16_MAX) {
4136         priority = UINT16_MAX;
4137     }
4138
4139     if (key < 0 || key > UINT16_MAX) {
4140         key = 0;
4141     }
4142
4143     s->name = iface->name;
4144     s->id = portid;
4145     s->priority = priority;
4146     s->key = key;
4147 }
4148
4149 static void
4150 port_configure_bond(struct port *port, struct bond_settings *s)
4151 {
4152     const char *detect_s;
4153     struct iface *iface;
4154     const char *mac_s;
4155     int miimon_interval;
4156
4157     s->name = port->name;
4158     s->balance = BM_AB;
4159     if (port->cfg->bond_mode) {
4160         if (!bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
4161             VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
4162                       port->name, port->cfg->bond_mode,
4163                       bond_mode_to_string(s->balance));
4164         }
4165     } else {
4166         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
4167
4168         /* XXX: Post version 1.5.*, the default bond_mode changed from SLB to
4169          * active-backup. At some point we should remove this warning. */
4170         VLOG_WARN_RL(&rl, "port %s: Using the default bond_mode %s. Note that"
4171                      " in previous versions, the default bond_mode was"
4172                      " balance-slb", port->name,
4173                      bond_mode_to_string(s->balance));
4174     }
4175     if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) {
4176         VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, "
4177                   "please use another bond type or disable flood_vlans",
4178                   port->name);
4179     }
4180
4181     miimon_interval = smap_get_int(&port->cfg->other_config,
4182                                    "bond-miimon-interval", 0);
4183     if (miimon_interval <= 0) {
4184         miimon_interval = 200;
4185     }
4186
4187     detect_s = smap_get(&port->cfg->other_config, "bond-detect-mode");
4188     if (!detect_s || !strcmp(detect_s, "carrier")) {
4189         miimon_interval = 0;
4190     } else if (strcmp(detect_s, "miimon")) {
4191         VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
4192                   "defaulting to carrier", port->name, detect_s);
4193         miimon_interval = 0;
4194     }
4195
4196     s->up_delay = MAX(0, port->cfg->bond_updelay);
4197     s->down_delay = MAX(0, port->cfg->bond_downdelay);
4198     s->basis = smap_get_int(&port->cfg->other_config, "bond-hash-basis", 0);
4199     s->rebalance_interval = smap_get_int(&port->cfg->other_config,
4200                                            "bond-rebalance-interval", 10000);
4201     if (s->rebalance_interval && s->rebalance_interval < 1000) {
4202         s->rebalance_interval = 1000;
4203     }
4204
4205     s->lacp_fallback_ab_cfg = smap_get_bool(&port->cfg->other_config,
4206                                        "lacp-fallback-ab", false);
4207
4208     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
4209         netdev_set_miimon_interval(iface->netdev, miimon_interval);
4210     }
4211
4212     mac_s = port->cfg->bond_active_slave;
4213     if (!mac_s || !ovs_scan(mac_s, ETH_ADDR_SCAN_FMT,
4214                             ETH_ADDR_SCAN_ARGS(s->active_slave_mac))) {
4215         /* OVSDB did not store the last active interface */
4216         s->active_slave_mac = eth_addr_zero;
4217     }
4218 }
4219
4220 /* Returns true if 'port' is synthetic, that is, if we constructed it locally
4221  * instead of obtaining it from the database. */
4222 static bool
4223 port_is_synthetic(const struct port *port)
4224 {
4225     return ovsdb_idl_row_is_synthetic(&port->cfg->header_);
4226 }
4227 \f
4228 /* Interface functions. */
4229
4230 static bool
4231 iface_is_internal(const struct ovsrec_interface *iface,
4232                   const struct ovsrec_bridge *br)
4233 {
4234     /* The local port and "internal" ports are always "internal". */
4235     return !strcmp(iface->type, "internal") || !strcmp(iface->name, br->name);
4236 }
4237
4238 /* Returns the correct network device type for interface 'iface' in bridge
4239  * 'br'. */
4240 static const char *
4241 iface_get_type(const struct ovsrec_interface *iface,
4242                const struct ovsrec_bridge *br)
4243 {
4244     const char *type;
4245
4246     /* The local port always has type "internal".  Other ports take
4247      * their type from the database and default to "system" if none is
4248      * specified. */
4249     if (iface_is_internal(iface, br)) {
4250         type = "internal";
4251     } else {
4252         type = iface->type[0] ? iface->type : "system";
4253     }
4254
4255     return ofproto_port_open_type(br->datapath_type, type);
4256 }
4257
4258 static void
4259 iface_destroy__(struct iface *iface)
4260 {
4261     if (iface) {
4262         struct port *port = iface->port;
4263         struct bridge *br = port->bridge;
4264
4265         if (br->ofproto && iface->ofp_port != OFPP_NONE) {
4266             ofproto_port_unregister(br->ofproto, iface->ofp_port);
4267         }
4268
4269         if (iface->ofp_port != OFPP_NONE) {
4270             hmap_remove(&br->ifaces, &iface->ofp_port_node);
4271         }
4272
4273         list_remove(&iface->port_elem);
4274         hmap_remove(&br->iface_by_name, &iface->name_node);
4275
4276         /* The user is changing configuration here, so netdev_remove needs to be
4277          * used as opposed to netdev_close */
4278         netdev_remove(iface->netdev);
4279
4280         free(iface->name);
4281         free(iface);
4282     }
4283 }
4284
4285 static void
4286 iface_destroy(struct iface *iface)
4287 {
4288     if (iface) {
4289         struct port *port = iface->port;
4290
4291         iface_destroy__(iface);
4292         if (list_is_empty(&port->ifaces)) {
4293             port_destroy(port);
4294         }
4295     }
4296 }
4297
4298 static struct iface *
4299 iface_lookup(const struct bridge *br, const char *name)
4300 {
4301     struct iface *iface;
4302
4303     HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
4304                              &br->iface_by_name) {
4305         if (!strcmp(iface->name, name)) {
4306             return iface;
4307         }
4308     }
4309
4310     return NULL;
4311 }
4312
4313 static struct iface *
4314 iface_find(const char *name)
4315 {
4316     const struct bridge *br;
4317
4318     HMAP_FOR_EACH (br, node, &all_bridges) {
4319         struct iface *iface = iface_lookup(br, name);
4320
4321         if (iface) {
4322             return iface;
4323         }
4324     }
4325     return NULL;
4326 }
4327
4328 static struct iface *
4329 iface_from_ofp_port(const struct bridge *br, ofp_port_t ofp_port)
4330 {
4331     struct iface *iface;
4332
4333     HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node, hash_ofp_port(ofp_port),
4334                              &br->ifaces) {
4335         if (iface->ofp_port == ofp_port) {
4336             return iface;
4337         }
4338     }
4339     return NULL;
4340 }
4341
4342 /* Set Ethernet address of 'iface', if one is specified in the configuration
4343  * file. */
4344 static void
4345 iface_set_mac(const struct bridge *br, const struct port *port, struct iface *iface)
4346 {
4347     struct eth_addr ea, *mac = NULL;
4348     struct iface *hw_addr_iface;
4349
4350     if (strcmp(iface->type, "internal")) {
4351         return;
4352     }
4353
4354     if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, &ea)) {
4355         mac = &ea;
4356     } else if (port->cfg->fake_bridge) {
4357         /* Fake bridge and no MAC set in the configuration. Pick a local one. */
4358         find_local_hw_addr(br, &ea, port, &hw_addr_iface);
4359         mac = &ea;
4360     }
4361
4362     if (mac) {
4363         if (iface->ofp_port == OFPP_LOCAL) {
4364             VLOG_ERR("interface %s: ignoring mac in Interface record "
4365                      "(use Bridge record to set local port's mac)",
4366                      iface->name);
4367         } else if (eth_addr_is_multicast(*mac)) {
4368             VLOG_ERR("interface %s: cannot set MAC to multicast address",
4369                      iface->name);
4370         } else {
4371             int error = netdev_set_etheraddr(iface->netdev, *mac);
4372             if (error) {
4373                 VLOG_ERR("interface %s: setting MAC failed (%s)",
4374                          iface->name, ovs_strerror(error));
4375             }
4376         }
4377     }
4378 }
4379
4380 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
4381 static void
4382 iface_set_ofport(const struct ovsrec_interface *if_cfg, ofp_port_t ofport)
4383 {
4384     if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
4385         int64_t port = ofport == OFPP_NONE ? -1 : ofp_to_u16(ofport);
4386         ovsrec_interface_set_ofport(if_cfg, &port, 1);
4387     }
4388 }
4389
4390 /* Clears all of the fields in 'if_cfg' that indicate interface status, and
4391  * sets the "ofport" field to -1.
4392  *
4393  * This is appropriate when 'if_cfg''s interface cannot be created or is
4394  * otherwise invalid. */
4395 static void
4396 iface_clear_db_record(const struct ovsrec_interface *if_cfg, char *errp)
4397 {
4398     if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
4399         iface_set_ofport(if_cfg, OFPP_NONE);
4400         ovsrec_interface_set_error(if_cfg, errp);
4401         ovsrec_interface_set_status(if_cfg, NULL);
4402         ovsrec_interface_set_admin_state(if_cfg, NULL);
4403         ovsrec_interface_set_duplex(if_cfg, NULL);
4404         ovsrec_interface_set_link_speed(if_cfg, NULL, 0);
4405         ovsrec_interface_set_link_state(if_cfg, NULL);
4406         ovsrec_interface_set_mac_in_use(if_cfg, NULL);
4407         ovsrec_interface_set_mtu(if_cfg, NULL, 0);
4408         ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0);
4409         ovsrec_interface_set_cfm_fault_status(if_cfg, NULL, 0);
4410         ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0);
4411         ovsrec_interface_set_lacp_current(if_cfg, NULL, 0);
4412         ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0);
4413         ovsrec_interface_set_ifindex(if_cfg, NULL, 0);
4414     }
4415 }
4416
4417 static bool
4418 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
4419 {
4420     union ovsdb_atom atom;
4421
4422     atom.integer = target;
4423     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
4424 }
4425
4426 static void
4427 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
4428 {
4429     struct ofpbuf queues_buf;
4430
4431     ofpbuf_init(&queues_buf, 0);
4432
4433     if (!qos || qos->type[0] == '\0') {
4434         netdev_set_qos(iface->netdev, NULL, NULL);
4435     } else {
4436         const struct ovsdb_datum *queues;
4437         struct netdev_queue_dump dump;
4438         unsigned int queue_id;
4439         struct smap details;
4440         bool queue_zero;
4441         size_t i;
4442
4443         /* Configure top-level Qos for 'iface'. */
4444         netdev_set_qos(iface->netdev, qos->type, &qos->other_config);
4445
4446         /* Deconfigure queues that were deleted. */
4447         queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
4448                                        OVSDB_TYPE_UUID);
4449         smap_init(&details);
4450         NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &dump, iface->netdev) {
4451             if (!queue_ids_include(queues, queue_id)) {
4452                 netdev_delete_queue(iface->netdev, queue_id);
4453             }
4454         }
4455         smap_destroy(&details);
4456
4457         /* Configure queues for 'iface'. */
4458         queue_zero = false;
4459         for (i = 0; i < qos->n_queues; i++) {
4460             const struct ovsrec_queue *queue = qos->value_queues[i];
4461             unsigned int queue_id = qos->key_queues[i];
4462
4463             if (queue_id == 0) {
4464                 queue_zero = true;
4465             }
4466
4467             if (queue->n_dscp == 1) {
4468                 struct ofproto_port_queue *port_queue;
4469
4470                 port_queue = ofpbuf_put_uninit(&queues_buf,
4471                                                sizeof *port_queue);
4472                 port_queue->queue = queue_id;
4473                 port_queue->dscp = queue->dscp[0];
4474             }
4475
4476             netdev_set_queue(iface->netdev, queue_id, &queue->other_config);
4477         }
4478         if (!queue_zero) {
4479             struct smap details;
4480
4481             smap_init(&details);
4482             netdev_set_queue(iface->netdev, 0, &details);
4483             smap_destroy(&details);
4484         }
4485     }
4486
4487     if (iface->ofp_port != OFPP_NONE) {
4488         const struct ofproto_port_queue *port_queues = queues_buf.data;
4489         size_t n_queues = queues_buf.size / sizeof *port_queues;
4490
4491         ofproto_port_set_queues(iface->port->bridge->ofproto, iface->ofp_port,
4492                                 port_queues, n_queues);
4493     }
4494
4495     netdev_set_policing(iface->netdev,
4496                         MIN(UINT32_MAX, iface->cfg->ingress_policing_rate),
4497                         MIN(UINT32_MAX, iface->cfg->ingress_policing_burst));
4498
4499     ofpbuf_uninit(&queues_buf);
4500 }
4501
4502 static void
4503 iface_configure_cfm(struct iface *iface)
4504 {
4505     const struct ovsrec_interface *cfg = iface->cfg;
4506     const char *opstate_str;
4507     const char *cfm_ccm_vlan;
4508     struct cfm_settings s;
4509     struct smap netdev_args;
4510
4511     if (!cfg->n_cfm_mpid) {
4512         ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
4513         return;
4514     }
4515
4516     s.check_tnl_key = false;
4517     smap_init(&netdev_args);
4518     if (!netdev_get_config(iface->netdev, &netdev_args)) {
4519         const char *key = smap_get(&netdev_args, "key");
4520         const char *in_key = smap_get(&netdev_args, "in_key");
4521
4522         s.check_tnl_key = (key && !strcmp(key, "flow"))
4523                            || (in_key && !strcmp(in_key, "flow"));
4524     }
4525     smap_destroy(&netdev_args);
4526
4527     s.mpid = *cfg->cfm_mpid;
4528     s.interval = smap_get_int(&iface->cfg->other_config, "cfm_interval", 0);
4529     cfm_ccm_vlan = smap_get(&iface->cfg->other_config, "cfm_ccm_vlan");
4530     s.ccm_pcp = smap_get_int(&iface->cfg->other_config, "cfm_ccm_pcp", 0);
4531
4532     if (s.interval <= 0) {
4533         s.interval = 1000;
4534     }
4535
4536     if (!cfm_ccm_vlan) {
4537         s.ccm_vlan = 0;
4538     } else if (!strcasecmp("random", cfm_ccm_vlan)) {
4539         s.ccm_vlan = CFM_RANDOM_VLAN;
4540     } else {
4541         s.ccm_vlan = atoi(cfm_ccm_vlan);
4542         if (s.ccm_vlan == CFM_RANDOM_VLAN) {
4543             s.ccm_vlan = 0;
4544         }
4545     }
4546
4547     s.extended = smap_get_bool(&iface->cfg->other_config, "cfm_extended",
4548                                false);
4549     s.demand = smap_get_bool(&iface->cfg->other_config, "cfm_demand", false);
4550
4551     opstate_str = smap_get(&iface->cfg->other_config, "cfm_opstate");
4552     s.opup = !opstate_str || !strcasecmp("up", opstate_str);
4553
4554     ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s);
4555 }
4556
4557 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
4558  * instead of obtaining it from the database. */
4559 static bool
4560 iface_is_synthetic(const struct iface *iface)
4561 {
4562     return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
4563 }
4564
4565 static ofp_port_t
4566 iface_validate_ofport__(size_t n, int64_t *ofport)
4567 {
4568     return (n && *ofport >= 1 && *ofport < ofp_to_u16(OFPP_MAX)
4569             ? u16_to_ofp(*ofport)
4570             : OFPP_NONE);
4571 }
4572
4573 static ofp_port_t
4574 iface_get_requested_ofp_port(const struct ovsrec_interface *cfg)
4575 {
4576     return iface_validate_ofport__(cfg->n_ofport_request, cfg->ofport_request);
4577 }
4578
4579 static ofp_port_t
4580 iface_pick_ofport(const struct ovsrec_interface *cfg)
4581 {
4582     ofp_port_t requested_ofport = iface_get_requested_ofp_port(cfg);
4583     return (requested_ofport != OFPP_NONE
4584             ? requested_ofport
4585             : iface_validate_ofport__(cfg->n_ofport, cfg->ofport));
4586 }
4587 \f
4588 /* Port mirroring. */
4589
4590 static struct mirror *
4591 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
4592 {
4593     struct mirror *m;
4594
4595     HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
4596         if (uuid_equals(uuid, &m->uuid)) {
4597             return m;
4598         }
4599     }
4600     return NULL;
4601 }
4602
4603 static void
4604 bridge_configure_mirrors(struct bridge *br)
4605 {
4606     const struct ovsdb_datum *mc;
4607     unsigned long *flood_vlans;
4608     struct mirror *m, *next;
4609     size_t i;
4610
4611     /* Get rid of deleted mirrors. */
4612     mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
4613     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
4614         union ovsdb_atom atom;
4615
4616         atom.uuid = m->uuid;
4617         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
4618             mirror_destroy(m);
4619         }
4620     }
4621
4622     /* Add new mirrors and reconfigure existing ones. */
4623     for (i = 0; i < br->cfg->n_mirrors; i++) {
4624         const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
4625         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
4626         if (!m) {
4627             m = mirror_create(br, cfg);
4628         }
4629         m->cfg = cfg;
4630         if (!mirror_configure(m)) {
4631             mirror_destroy(m);
4632         }
4633     }
4634
4635     /* Update flooded vlans (for RSPAN). */
4636     flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
4637                                          br->cfg->n_flood_vlans);
4638     ofproto_set_flood_vlans(br->ofproto, flood_vlans);
4639     bitmap_free(flood_vlans);
4640 }
4641
4642 static struct mirror *
4643 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
4644 {
4645     struct mirror *m;
4646
4647     m = xzalloc(sizeof *m);
4648     m->uuid = cfg->header_.uuid;
4649     hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
4650     m->bridge = br;
4651     m->name = xstrdup(cfg->name);
4652
4653     return m;
4654 }
4655
4656 static void
4657 mirror_destroy(struct mirror *m)
4658 {
4659     if (m) {
4660         struct bridge *br = m->bridge;
4661
4662         if (br->ofproto) {
4663             ofproto_mirror_unregister(br->ofproto, m);
4664         }
4665
4666         hmap_remove(&br->mirrors, &m->hmap_node);
4667         free(m->name);
4668         free(m);
4669     }
4670 }
4671
4672 static void
4673 mirror_collect_ports(struct mirror *m,
4674                      struct ovsrec_port **in_ports, int n_in_ports,
4675                      void ***out_portsp, size_t *n_out_portsp)
4676 {
4677     void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
4678     size_t n_out_ports = 0;
4679     size_t i;
4680
4681     for (i = 0; i < n_in_ports; i++) {
4682         const char *name = in_ports[i]->name;
4683         struct port *port = port_lookup(m->bridge, name);
4684         if (port) {
4685             out_ports[n_out_ports++] = port;
4686         } else {
4687             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
4688                       "port %s", m->bridge->name, m->name, name);
4689         }
4690     }
4691     *out_portsp = out_ports;
4692     *n_out_portsp = n_out_ports;
4693 }
4694
4695 static bool
4696 mirror_configure(struct mirror *m)
4697 {
4698     const struct ovsrec_mirror *cfg = m->cfg;
4699     struct ofproto_mirror_settings s;
4700
4701     /* Set name. */
4702     if (strcmp(cfg->name, m->name)) {
4703         free(m->name);
4704         m->name = xstrdup(cfg->name);
4705     }
4706     s.name = m->name;
4707
4708     /* Get output port or VLAN. */
4709     if (cfg->output_port) {
4710         s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
4711         if (!s.out_bundle) {
4712             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
4713                      m->bridge->name, m->name);
4714             return false;
4715         }
4716         s.out_vlan = UINT16_MAX;
4717
4718         if (cfg->output_vlan) {
4719             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
4720                      "output vlan; ignoring output vlan",
4721                      m->bridge->name, m->name);
4722         }
4723     } else if (cfg->output_vlan) {
4724         /* The database should prevent invalid VLAN values. */
4725         s.out_bundle = NULL;
4726         s.out_vlan = *cfg->output_vlan;
4727     } else {
4728         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
4729                  m->bridge->name, m->name);
4730         return false;
4731     }
4732
4733     /* Get port selection. */
4734     if (cfg->select_all) {
4735         size_t n_ports = hmap_count(&m->bridge->ports);
4736         void **ports = xmalloc(n_ports * sizeof *ports);
4737         struct port *port;
4738         size_t i;
4739
4740         i = 0;
4741         HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
4742             ports[i++] = port;
4743         }
4744
4745         s.srcs = ports;
4746         s.n_srcs = n_ports;
4747
4748         s.dsts = ports;
4749         s.n_dsts = n_ports;
4750     } else {
4751         /* Get ports, dropping ports that don't exist.
4752          * The IDL ensures that there are no duplicates. */
4753         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
4754                              &s.srcs, &s.n_srcs);
4755         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
4756                              &s.dsts, &s.n_dsts);
4757     }
4758
4759     /* Get VLAN selection. */
4760     s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
4761
4762     /* Configure. */
4763     ofproto_mirror_register(m->bridge->ofproto, m, &s);
4764
4765     /* Clean up. */
4766     if (s.srcs != s.dsts) {
4767         free(s.dsts);
4768     }
4769     free(s.srcs);
4770     free(s.src_vlans);
4771
4772     return true;
4773 }
4774 \f
4775 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
4776  *
4777  * This is deprecated.  It is only for compatibility with broken device drivers
4778  * in old versions of Linux that do not properly support VLANs when VLAN
4779  * devices are not used.  When broken device drivers are no longer in
4780  * widespread use, we will delete these interfaces. */
4781
4782 static struct ovsrec_port **recs;
4783 static size_t n_recs, allocated_recs;
4784
4785 /* Adds 'rec' to a list of recs that have to be destroyed when the VLAN
4786  * splinters are reconfigured. */
4787 static void
4788 register_rec(struct ovsrec_port *rec)
4789 {
4790     if (n_recs >= allocated_recs) {
4791         recs = x2nrealloc(recs, &allocated_recs, sizeof *recs);
4792     }
4793     recs[n_recs++] = rec;
4794 }
4795
4796 /* Frees all of the ports registered with register_reg(). */
4797 static void
4798 free_registered_recs(void)
4799 {
4800     size_t i;
4801
4802     for (i = 0; i < n_recs; i++) {
4803         struct ovsrec_port *port = recs[i];
4804         size_t j;
4805
4806         for (j = 0; j < port->n_interfaces; j++) {
4807             struct ovsrec_interface *iface = port->interfaces[j];
4808             free(iface->name);
4809             free(iface);
4810         }
4811
4812         smap_destroy(&port->other_config);
4813         free(port->interfaces);
4814         free(port->name);
4815         free(port->tag);
4816         free(port);
4817     }
4818     n_recs = 0;
4819 }
4820
4821 /* Returns true if VLAN splinters are enabled on 'iface_cfg', false
4822  * otherwise. */
4823 static bool
4824 vlan_splinters_is_enabled(const struct ovsrec_interface *iface_cfg)
4825 {
4826     return smap_get_bool(&iface_cfg->other_config, "enable-vlan-splinters",
4827                          false);
4828 }
4829
4830 /* Figures out the set of VLANs that are in use for the purpose of VLAN
4831  * splinters.
4832  *
4833  * If VLAN splinters are enabled on at least one interface and any VLANs are in
4834  * use, returns a 4096-bit bitmap with a 1-bit for each in-use VLAN (bits 0 and
4835  * 4095 will not be set).  The caller is responsible for freeing the bitmap,
4836  * with free().
4837  *
4838  * If VLANs splinters are not enabled on any interface or if no VLANs are in
4839  * use, returns NULL.
4840  *
4841  * Updates 'vlan_splinters_enabled_anywhere'. */
4842 static unsigned long int *
4843 collect_splinter_vlans(const struct ovsrec_open_vswitch *ovs_cfg)
4844 {
4845     unsigned long int *splinter_vlans;
4846     struct sset splinter_ifaces;
4847     const char *real_dev_name;
4848     struct shash *real_devs;
4849     struct shash_node *node;
4850     struct bridge *br;
4851     size_t i;
4852
4853     /* Free space allocated for synthesized ports and interfaces, since we're
4854      * in the process of reconstructing all of them. */
4855     free_registered_recs();
4856
4857     splinter_vlans = bitmap_allocate(4096);
4858     sset_init(&splinter_ifaces);
4859     vlan_splinters_enabled_anywhere = false;
4860     for (i = 0; i < ovs_cfg->n_bridges; i++) {
4861         struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
4862         size_t j;
4863
4864         for (j = 0; j < br_cfg->n_ports; j++) {
4865             struct ovsrec_port *port_cfg = br_cfg->ports[j];
4866             int k;
4867
4868             for (k = 0; k < port_cfg->n_interfaces; k++) {
4869                 struct ovsrec_interface *iface_cfg = port_cfg->interfaces[k];
4870
4871                 if (vlan_splinters_is_enabled(iface_cfg)) {
4872                     vlan_splinters_enabled_anywhere = true;
4873                     sset_add(&splinter_ifaces, iface_cfg->name);
4874                     vlan_bitmap_from_array__(port_cfg->trunks,
4875                                              port_cfg->n_trunks,
4876                                              splinter_vlans);
4877                 }
4878             }
4879
4880             if (port_cfg->tag && *port_cfg->tag > 0 && *port_cfg->tag < 4095) {
4881                 bitmap_set1(splinter_vlans, *port_cfg->tag);
4882             }
4883         }
4884     }
4885
4886     if (!vlan_splinters_enabled_anywhere) {
4887         free(splinter_vlans);
4888         sset_destroy(&splinter_ifaces);
4889         return NULL;
4890     }
4891
4892     HMAP_FOR_EACH (br, node, &all_bridges) {
4893         if (br->ofproto) {
4894             ofproto_get_vlan_usage(br->ofproto, splinter_vlans);
4895         }
4896     }
4897
4898     /* Don't allow VLANs 0 or 4095 to be splintered.  VLAN 0 should appear on
4899      * the real device.  VLAN 4095 is reserved and Linux doesn't allow a VLAN
4900      * device to be created for it. */
4901     bitmap_set0(splinter_vlans, 0);
4902     bitmap_set0(splinter_vlans, 4095);
4903
4904     /* Delete all VLAN devices that we don't need. */
4905     vlandev_refresh();
4906     real_devs = vlandev_get_real_devs();
4907     SHASH_FOR_EACH (node, real_devs) {
4908         const struct vlan_real_dev *real_dev = node->data;
4909         const struct vlan_dev *vlan_dev;
4910         bool real_dev_has_splinters;
4911
4912         real_dev_has_splinters = sset_contains(&splinter_ifaces,
4913                                                real_dev->name);
4914         HMAP_FOR_EACH (vlan_dev, hmap_node, &real_dev->vlan_devs) {
4915             if (!real_dev_has_splinters
4916                 || !bitmap_is_set(splinter_vlans, vlan_dev->vid)) {
4917                 struct netdev *netdev;
4918
4919                 if (!netdev_open(vlan_dev->name, "system", &netdev)) {
4920                     if (!netdev_get_in4(netdev, NULL, NULL) ||
4921                         !netdev_get_in6(netdev, NULL)) {
4922                         /* It has an IP address configured, so we don't own
4923                          * it.  Don't delete it. */
4924                     } else {
4925                         vlandev_del(vlan_dev->name);
4926                     }
4927                     netdev_close(netdev);
4928                 }
4929             }
4930
4931         }
4932     }
4933
4934     /* Add all VLAN devices that we need. */
4935     SSET_FOR_EACH (real_dev_name, &splinter_ifaces) {
4936         int vid;
4937
4938         BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) {
4939             if (!vlandev_get_name(real_dev_name, vid)) {
4940                 vlandev_add(real_dev_name, vid);
4941             }
4942         }
4943     }
4944
4945     vlandev_refresh();
4946
4947     sset_destroy(&splinter_ifaces);
4948
4949     if (bitmap_scan(splinter_vlans, 1, 0, 4096) >= 4096) {
4950         free(splinter_vlans);
4951         return NULL;
4952     }
4953     return splinter_vlans;
4954 }
4955
4956 /* Pushes the configure of VLAN splinter port 'port' (e.g. eth0.9) down to
4957  * ofproto.  */
4958 static void
4959 configure_splinter_port(struct port *port)
4960 {
4961     struct ofproto *ofproto = port->bridge->ofproto;
4962     ofp_port_t realdev_ofp_port;
4963     const char *realdev_name;
4964     struct iface *vlandev, *realdev;
4965
4966     ofproto_bundle_unregister(port->bridge->ofproto, port);
4967
4968     vlandev = CONTAINER_OF(list_front(&port->ifaces), struct iface,
4969                            port_elem);
4970
4971     realdev_name = smap_get(&port->cfg->other_config, "realdev");
4972     realdev = iface_lookup(port->bridge, realdev_name);
4973     realdev_ofp_port = realdev ? realdev->ofp_port : 0;
4974
4975     ofproto_port_set_realdev(ofproto, vlandev->ofp_port, realdev_ofp_port,
4976                              *port->cfg->tag);
4977 }
4978
4979 static struct ovsrec_port *
4980 synthesize_splinter_port(const char *real_dev_name,
4981                          const char *vlan_dev_name, int vid)
4982 {
4983     struct ovsrec_interface *iface;
4984     struct ovsrec_port *port;
4985
4986     iface = xmalloc(sizeof *iface);
4987     ovsrec_interface_init(iface);
4988     iface->name = xstrdup(vlan_dev_name);
4989     iface->type = "system";
4990
4991     port = xmalloc(sizeof *port);
4992     ovsrec_port_init(port);
4993     port->interfaces = xmemdup(&iface, sizeof iface);
4994     port->n_interfaces = 1;
4995     port->name = xstrdup(vlan_dev_name);
4996     port->vlan_mode = "splinter";
4997     port->tag = xmalloc(sizeof *port->tag);
4998     *port->tag = vid;
4999
5000     smap_add(&port->other_config, "realdev", real_dev_name);
5001
5002     register_rec(port);
5003     return port;
5004 }
5005
5006 /* For each interface with 'br' that has VLAN splinters enabled, adds a
5007  * corresponding ovsrec_port to 'ports' for each splinter VLAN marked with a
5008  * 1-bit in the 'splinter_vlans' bitmap. */
5009 static void
5010 add_vlan_splinter_ports(struct bridge *br,
5011                         const unsigned long int *splinter_vlans,
5012                         struct shash *ports)
5013 {
5014     size_t i;
5015
5016     /* We iterate through 'br->cfg->ports' instead of 'ports' here because
5017      * we're modifying 'ports'. */
5018     for (i = 0; i < br->cfg->n_ports; i++) {
5019         const char *name = br->cfg->ports[i]->name;
5020         struct ovsrec_port *port_cfg = shash_find_data(ports, name);
5021         size_t j;
5022
5023         for (j = 0; j < port_cfg->n_interfaces; j++) {
5024             struct ovsrec_interface *iface_cfg = port_cfg->interfaces[j];
5025
5026             if (vlan_splinters_is_enabled(iface_cfg)) {
5027                 const char *real_dev_name;
5028                 uint16_t vid;
5029
5030                 real_dev_name = iface_cfg->name;
5031                 BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) {
5032                     const char *vlan_dev_name;
5033
5034                     vlan_dev_name = vlandev_get_name(real_dev_name, vid);
5035                     if (vlan_dev_name
5036                         && !shash_find(ports, vlan_dev_name)) {
5037                         shash_add(ports, vlan_dev_name,
5038                                   synthesize_splinter_port(
5039                                       real_dev_name, vlan_dev_name, vid));
5040                     }
5041                 }
5042             }
5043         }
5044     }
5045 }
5046
5047 static void
5048 mirror_refresh_stats(struct mirror *m)
5049 {
5050     struct ofproto *ofproto = m->bridge->ofproto;
5051     uint64_t tx_packets, tx_bytes;
5052     const char *keys[2];
5053     int64_t values[2];
5054     size_t stat_cnt = 0;
5055
5056     if (ofproto_mirror_get_stats(ofproto, m, &tx_packets, &tx_bytes)) {
5057         ovsrec_mirror_set_statistics(m->cfg, NULL, NULL, 0);
5058         return;
5059     }
5060
5061     if (tx_packets != UINT64_MAX) {
5062         keys[stat_cnt] = "tx_packets";
5063         values[stat_cnt] = tx_packets;
5064         stat_cnt++;
5065     }
5066     if (tx_bytes != UINT64_MAX) {
5067         keys[stat_cnt] = "tx_bytes";
5068         values[stat_cnt] = tx_bytes;
5069         stat_cnt++;
5070     }
5071
5072     ovsrec_mirror_set_statistics(m->cfg, keys, values, stat_cnt);
5073 }
5074
5075 /*
5076  * Add registered netdev and dpif types to ovsdb to allow external
5077  * applications to query the capabilities of the Open vSwitch instance
5078  * running on the node.
5079  */
5080 static void
5081 discover_types(const struct ovsrec_open_vswitch *cfg)
5082 {
5083     struct sset types;
5084
5085     /* Datapath types. */
5086     sset_init(&types);
5087     dp_enumerate_types(&types);
5088     const char **datapath_types = sset_array(&types);
5089     ovsrec_open_vswitch_set_datapath_types(cfg, datapath_types,
5090                                            sset_count(&types));
5091     free(datapath_types);
5092     sset_destroy(&types);
5093
5094     /* Port types. */
5095     sset_init(&types);
5096     netdev_enumerate_types(&types);
5097     const char **iface_types = sset_array(&types);
5098     ovsrec_open_vswitch_set_iface_types(cfg, iface_types, sset_count(&types));
5099     free(iface_types);
5100     sset_destroy(&types);
5101 }