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