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