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