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