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