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