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