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