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