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