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