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