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