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