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