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