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