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