]> git.proxmox.com Git - ovs.git/blame - vswitchd/bridge.c
docs: Make it clear that ovs-openflowd is an alternative to ovs-vswitchd.
[ovs.git] / vswitchd / bridge.c
CommitLineData
2c30e5d1 1/* Copyright (c) 2008, 2009, 2010 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>
20#include <arpa/inet.h>
21#include <ctype.h>
22#include <inttypes.h>
9d82ec47 23#include <sys/socket.h>
064af421
BP
24#include <net/if.h>
25#include <openflow/openflow.h>
26#include <signal.h>
27#include <stdlib.h>
28#include <strings.h>
29#include <sys/stat.h>
30#include <sys/socket.h>
7e40e21d 31#include <sys/types.h>
064af421
BP
32#include <unistd.h>
33#include "bitmap.h"
064af421
BP
34#include "coverage.h"
35#include "dirs.h"
36#include "dpif.h"
37#include "dynamic-string.h"
38#include "flow.h"
39#include "hash.h"
d9a8717a 40#include "hmap.h"
cd11000b 41#include "jsonrpc.h"
064af421
BP
42#include "list.h"
43#include "mac-learning.h"
44#include "netdev.h"
45#include "odp-util.h"
46#include "ofp-print.h"
47#include "ofpbuf.h"
d65349ea 48#include "ofproto/netflow.h"
8cd4882f 49#include "ofproto/ofproto.h"
dd0d105c 50#include "ovsdb-data.h"
da285df4 51#include "packets.h"
064af421 52#include "poll-loop.h"
064af421
BP
53#include "proc-net-compat.h"
54#include "process.h"
76343538 55#include "sha1.h"
6c88d577 56#include "shash.h"
064af421 57#include "socket-util.h"
fe55ad15 58#include "stream-ssl.h"
064af421 59#include "svec.h"
ce887677 60#include "system-stats.h"
064af421
BP
61#include "timeval.h"
62#include "util.h"
da285df4 63#include "unixctl.h"
064af421 64#include "vconn.h"
b36682d8 65#include "vswitchd/vswitch-idl.h"
064af421 66#include "xenserver.h"
5136ce49 67#include "vlog.h"
064af421 68#include "xtoxll.h"
72b06300 69#include "sflow_api.h"
064af421 70
5136ce49 71VLOG_DEFINE_THIS_MODULE(bridge)
064af421
BP
72
73struct dst {
74 uint16_t vlan;
75 uint16_t dp_ifidx;
76};
77
064af421 78struct iface {
0c6aea3f 79 /* These members are always valid. */
064af421
BP
80 struct port *port; /* Containing port. */
81 size_t port_ifidx; /* Index within containing port. */
064af421 82 char *name; /* Host network device name. */
064af421 83 tag_type tag; /* Tag associated with this interface. */
064af421 84 long long delay_expires; /* Time after which 'enabled' may change. */
064af421 85
0c6aea3f 86 /* These members are valid only after bridge_reconfigure() causes them to
1e0b752d 87 * be initialized. */
d9a8717a 88 struct hmap_node dp_ifidx_node; /* In struct bridge's "ifaces" hmap. */
0c6aea3f
BP
89 int dp_ifidx; /* Index within kernel datapath. */
90 struct netdev *netdev; /* Network device. */
064af421 91 bool enabled; /* May be chosen for flows? */
6cefe1da 92 const char *type; /* Usually same as cfg->type. */
76343538 93 const struct ovsrec_interface *cfg;
064af421
BP
94};
95
96#define BOND_MASK 0xff
97struct bond_entry {
98 int iface_idx; /* Index of assigned iface, or -1 if none. */
99 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
100 tag_type iface_tag; /* Tag associated with iface_idx. */
101};
102
103#define MAX_MIRRORS 32
104typedef uint32_t mirror_mask_t;
105#define MIRROR_MASK_C(X) UINT32_C(X)
106BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
107struct mirror {
108 struct bridge *bridge;
109 size_t idx;
110 char *name;
dd0d105c 111 struct uuid uuid; /* UUID of this "mirror" record in database. */
064af421
BP
112
113 /* Selection criteria. */
37e7f427
BP
114 struct shash src_ports; /* Name is port name; data is always NULL. */
115 struct shash dst_ports; /* Name is port name; data is always NULL. */
064af421
BP
116 int *vlans;
117 size_t n_vlans;
118
119 /* Output. */
120 struct port *out_port;
121 int out_vlan;
122};
123
124#define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
125struct port {
126 struct bridge *bridge;
127 size_t port_idx;
128 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
3e9c481c
BP
129 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
130 * NULL if all VLANs are trunked. */
1e0b752d 131 const struct ovsrec_port *cfg;
064af421
BP
132 char *name;
133
134 /* An ordinary bridge port has 1 interface.
135 * A bridge port for bonding has at least 2 interfaces. */
136 struct iface **ifaces;
137 size_t n_ifaces, allocated_ifaces;
138
139 /* Bonding info. */
140 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
141 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
142 tag_type active_iface_tag; /* Tag for bcast flows. */
143 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
144 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
85c74638 145 bool bond_compat_is_stale; /* Need to call port_update_bond_compat()? */
76343538 146 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
e5ae7df8 147 long long int bond_next_fake_iface_update; /* Time of next update. */
c8143c88
BP
148 int bond_rebalance_interval; /* Interval between rebalances, in ms. */
149 long long int bond_next_rebalance; /* Next rebalancing time. */
0bb5c3ec 150 struct netdev_monitor *monitor; /* Tracks carrier up/down status. */
064af421
BP
151
152 /* Port mirroring info. */
153 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
154 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
155 bool is_mirror_output_port; /* Does port mirroring send frames here? */
064af421
BP
156};
157
158#define DP_MAX_PORTS 255
159struct bridge {
160 struct list node; /* Node in global list of bridges. */
161 char *name; /* User-specified arbitrary name. */
93dfc067 162 struct mac_learning *ml; /* MAC learning table. */
064af421 163 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
1e0b752d 164 const struct ovsrec_bridge *cfg;
064af421 165
064af421
BP
166 /* OpenFlow switch processing. */
167 struct ofproto *ofproto; /* OpenFlow switch. */
168
169 /* Kernel datapath information. */
c228a364 170 struct dpif *dpif; /* Datapath. */
d9a8717a 171 struct hmap ifaces; /* Contains "struct iface"s. */
064af421
BP
172
173 /* Bridge ports. */
174 struct port **ports;
175 size_t n_ports, allocated_ports;
4a1ee6ae 176 struct shash iface_by_name; /* "struct iface"s indexed by name. */
836fad5e 177 struct shash port_by_name; /* "struct port"s indexed by name. */
064af421
BP
178
179 /* Bonding. */
180 bool has_bonded_ports;
064af421
BP
181
182 /* Flow tracking. */
183 bool flush;
184
064af421
BP
185 /* Port mirroring. */
186 struct mirror *mirrors[MAX_MIRRORS];
064af421
BP
187};
188
189/* List of all bridges. */
190static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
191
c5187f17
BP
192/* OVSDB IDL used to obtain configuration. */
193static struct ovsdb_idl *idl;
194
cd0cd65f
BP
195/* Each time this timer expires, the bridge fetches systems and interface
196 * statistics and pushes them into the database. */
197#define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
198static long long int stats_timer = LLONG_MIN;
018f1525 199
1a6f1e2a 200static struct bridge *bridge_create(const struct ovsrec_bridge *br_cfg);
064af421
BP
201static void bridge_destroy(struct bridge *);
202static struct bridge *bridge_lookup(const char *name);
8ca79daa 203static unixctl_cb_func bridge_unixctl_dump_flows;
fa05809b 204static unixctl_cb_func bridge_unixctl_reconnect;
064af421 205static int bridge_run_one(struct bridge *);
1a048029 206static size_t bridge_get_controllers(const struct bridge *br,
76ce9432 207 struct ovsrec_controller ***controllersp);
1a048029
JP
208static void bridge_reconfigure_one(struct bridge *);
209static void bridge_reconfigure_remotes(struct bridge *,
11bbff1b
BP
210 const struct sockaddr_in *managers,
211 size_t n_managers);
76343538 212static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
064af421
BP
213static void bridge_fetch_dp_ifaces(struct bridge *);
214static void bridge_flush(struct bridge *);
215static void bridge_pick_local_hw_addr(struct bridge *,
216 uint8_t ea[ETH_ADDR_LEN],
07c318f4 217 struct iface **hw_addr_iface);
064af421
BP
218static uint64_t bridge_pick_datapath_id(struct bridge *,
219 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4
BP
220 struct iface *hw_addr_iface);
221static struct iface *bridge_get_local_iface(struct bridge *);
064af421
BP
222static uint64_t dpid_from_hash(const void *, size_t nbytes);
223
8ca79daa 224static unixctl_cb_func bridge_unixctl_fdb_show;
8c4c1387 225
da285df4 226static void bond_init(void);
064af421
BP
227static void bond_run(struct bridge *);
228static void bond_wait(struct bridge *);
229static void bond_rebalance_port(struct port *);
2303f3b2 230static void bond_send_learning_packets(struct port *);
8b2a2f4a 231static void bond_enable_slave(struct iface *iface, bool enable);
064af421 232
76343538
BP
233static struct port *port_create(struct bridge *, const char *name);
234static void port_reconfigure(struct port *, const struct ovsrec_port *);
4a1ee6ae 235static void port_del_ifaces(struct port *, const struct ovsrec_port *);
064af421
BP
236static void port_destroy(struct port *);
237static struct port *port_lookup(const struct bridge *, const char *name);
da285df4 238static struct iface *port_lookup_iface(const struct port *, const char *name);
064af421
BP
239static struct port *port_from_dp_ifidx(const struct bridge *,
240 uint16_t dp_ifidx);
241static void port_update_bond_compat(struct port *);
242static void port_update_vlan_compat(struct port *);
0c6aea3f 243static void port_update_bonding(struct port *);
064af421 244
dd0d105c 245static void mirror_create(struct bridge *, struct ovsrec_mirror *);
064af421
BP
246static void mirror_destroy(struct mirror *);
247static void mirror_reconfigure(struct bridge *);
37e7f427 248static void mirror_reconfigure_one(struct mirror *, struct ovsrec_mirror *);
064af421
BP
249static bool vlan_is_mirrored(const struct mirror *, int vlan);
250
d295e8e9 251static struct iface *iface_create(struct port *port,
a740f0de 252 const struct ovsrec_interface *if_cfg);
064af421
BP
253static void iface_destroy(struct iface *);
254static struct iface *iface_lookup(const struct bridge *, const char *name);
255static struct iface *iface_from_dp_ifidx(const struct bridge *,
256 uint16_t dp_ifidx);
52df17e7 257static void iface_set_mac(struct iface *);
c1c9c9c4 258static void iface_update_qos(struct iface *, const struct ovsrec_qos *);
064af421 259
43776b8f
BP
260static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
261 struct shash *);
262
064af421
BP
263/* Hooks into ofproto processing. */
264static struct ofhooks bridge_ofhooks;
265\f
266/* Public functions. */
267
c5187f17
BP
268/* Initializes the bridge module, configuring it to obtain its configuration
269 * from an OVSDB server accessed over 'remote', which should be a string in a
270 * form acceptable to ovsdb_idl_create(). */
064af421 271void
c5187f17
BP
272bridge_init(const char *remote)
273{
274 /* Create connection to database. */
275 idl = ovsdb_idl_create(remote, &ovsrec_idl_class);
276
e85bbd75
BP
277 ovsdb_idl_set_write_only(idl, &ovsrec_open_vswitch_col_cur_cfg);
278 ovsdb_idl_set_write_only(idl, &ovsrec_open_vswitch_col_statistics);
279 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
280
281 ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
282
283 ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
284 ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
285
286 ovsdb_idl_set_write_only(idl, &ovsrec_interface_col_ofport);
287 ovsdb_idl_set_write_only(idl, &ovsrec_interface_col_statistics);
288 ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
289
c5187f17
BP
290 /* Register unixctl commands. */
291 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
292 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
293 NULL);
fa05809b
BP
294 unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
295 NULL);
c5187f17
BP
296 bond_init();
297}
298
299/* Performs configuration that is only necessary once at ovs-vswitchd startup,
300 * but for which the ovs-vswitchd configuration 'cfg' is required. */
301static void
302bridge_configure_once(const struct ovsrec_open_vswitch *cfg)
064af421 303{
c5187f17 304 static bool already_configured_once;
76343538 305 struct svec bridge_names;
1a6f1e2a 306 struct svec dpif_names, dpif_types;
d3d22744 307 size_t i;
da285df4 308
c5187f17
BP
309 /* Only do this once per ovs-vswitchd run. */
310 if (already_configured_once) {
311 return;
312 }
313 already_configured_once = true;
8c4c1387 314
cd0cd65f 315 stats_timer = time_msec() + STATS_INTERVAL;
018f1525 316
c5187f17 317 /* Get all the configured bridges' names from 'cfg' into 'bridge_names'. */
76343538
BP
318 svec_init(&bridge_names);
319 for (i = 0; i < cfg->n_bridges; i++) {
320 svec_add(&bridge_names, cfg->bridges[i]->name);
321 }
322 svec_sort(&bridge_names);
323
c5187f17
BP
324 /* Iterate over all system dpifs and delete any of them that do not appear
325 * in 'cfg'. */
d2a34569 326 svec_init(&dpif_names);
1a6f1e2a
JG
327 svec_init(&dpif_types);
328 dp_enumerate_types(&dpif_types);
329 for (i = 0; i < dpif_types.n; i++) {
c228a364 330 struct dpif *dpif;
d3d22744 331 int retval;
1a6f1e2a 332 size_t j;
064af421 333
1a6f1e2a 334 dp_enumerate_names(dpif_types.names[i], &dpif_names);
d3d22744 335
c5187f17 336 /* For each dpif... */
1a6f1e2a
JG
337 for (j = 0; j < dpif_names.n; j++) {
338 retval = dpif_open(dpif_names.names[j], dpif_types.names[i], &dpif);
339 if (!retval) {
340 struct svec all_names;
341 size_t k;
342
c5187f17 343 /* ...check whether any of its names is in 'bridge_names'. */
1a6f1e2a
JG
344 svec_init(&all_names);
345 dpif_get_all_names(dpif, &all_names);
346 for (k = 0; k < all_names.n; k++) {
347 if (svec_contains(&bridge_names, all_names.names[k])) {
348 goto found;
349 }
d3d22744 350 }
c5187f17
BP
351
352 /* No. Delete the dpif. */
1a6f1e2a 353 dpif_delete(dpif);
c5187f17 354
1a6f1e2a
JG
355 found:
356 svec_destroy(&all_names);
357 dpif_close(dpif);
064af421 358 }
064af421
BP
359 }
360 }
7128cd6b 361 svec_destroy(&bridge_names);
d0c9d304 362 svec_destroy(&dpif_names);
1a6f1e2a 363 svec_destroy(&dpif_types);
064af421
BP
364}
365
43776b8f
BP
366/* Initializes 'options' and fills it with the options for 'if_cfg'. Merges
367 * keys from "options" and "other_config", preferring "options" keys over
368 * "other_config" keys.
369 *
370 * The value strings in '*options' are taken directly from if_cfg, not copied,
371 * so the caller should not modify or free them. */
372static void
373iface_get_options(const struct ovsrec_interface *if_cfg, struct shash *options)
374{
375 size_t i;
376
377 shash_from_ovs_idl_map(if_cfg->key_options, if_cfg->value_options,
378 if_cfg->n_options, options);
379
380 for (i = 0; i < if_cfg->n_other_config; i++) {
381 char *key = if_cfg->key_other_config[i];
382 char *value = if_cfg->value_other_config[i];
383
384 if (!shash_find_data(options, key)) {
385 shash_add(options, key, value);
386 } else {
387 VLOG_WARN("%s: ignoring \"other_config\" key %s that conflicts "
388 "with \"options\" key %s", if_cfg->name, key, key);
389 }
390 }
391}
392
6cefe1da
BP
393/* Returns the type of network device that 'iface' should have. (This is
394 * ordinarily the same type as the interface, but the network devices for
395 * "internal" ports have type "system".) */
396static const char *
397iface_get_netdev_type(const struct iface *iface)
398{
399 return !strcmp(iface->type, "internal") ? "system" : iface->type;
400}
401
43776b8f 402/* Attempt to create the network device for 'iface' through the netdev
6c88d577
JP
403 * library. */
404static int
43776b8f 405create_iface_netdev(struct iface *iface)
6c88d577 406{
43776b8f 407 struct netdev_options netdev_options;
76343538 408 struct shash options;
43776b8f 409 int error;
6c88d577 410
43776b8f
BP
411 memset(&netdev_options, 0, sizeof netdev_options);
412 netdev_options.name = iface->cfg->name;
6cefe1da 413 netdev_options.type = iface_get_netdev_type(iface);
43776b8f
BP
414 netdev_options.args = &options;
415 netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
6c88d577 416
43776b8f 417 iface_get_options(iface->cfg, &options);
d1984028 418
43776b8f 419 error = netdev_open(&netdev_options, &iface->netdev);
149f577a 420
43776b8f
BP
421 if (iface->netdev) {
422 netdev_get_carrier(iface->netdev, &iface->enabled);
423 }
149f577a 424
43776b8f 425 shash_destroy(&options);
149f577a 426
43776b8f
BP
427 return error;
428}
149f577a 429
43776b8f
BP
430static int
431reconfigure_iface_netdev(struct iface *iface)
432{
433 const char *netdev_type, *iface_type;
434 struct shash options;
435 int error;
d4c2000b 436
43776b8f
BP
437 /* Skip reconfiguration if the device has the wrong type. This shouldn't
438 * happen, but... */
6cefe1da 439 iface_type = iface_get_netdev_type(iface);
43776b8f
BP
440 netdev_type = netdev_get_type(iface->netdev);
441 if (iface_type && strcmp(netdev_type, iface_type)) {
442 VLOG_WARN("%s: attempting change device type from %s to %s",
443 iface->cfg->name, netdev_type, iface_type);
444 return EINVAL;
6c88d577 445 }
43776b8f
BP
446
447 /* Reconfigure device. */
448 iface_get_options(iface->cfg, &options);
449 error = netdev_reconfigure(iface->netdev, &options);
450 shash_destroy(&options);
6c88d577
JP
451
452 return error;
453}
454
64d64dd7 455/* Callback for iterate_and_prune_ifaces(). */
0c6aea3f 456static bool
64d64dd7 457check_iface(struct bridge *br, struct iface *iface, void *aux OVS_UNUSED)
0c6aea3f 458{
149f577a 459 if (!iface->netdev) {
64d64dd7
BP
460 /* We already reported a related error, don't bother duplicating it. */
461 return false;
0c6aea3f 462 }
149f577a 463
64d64dd7 464 if (iface->dp_ifidx < 0) {
6ae39834
BP
465 VLOG_ERR("%s interface not in %s, dropping",
466 iface->name, dpif_name(br->dpif));
467 return false;
468 }
64d64dd7
BP
469
470 VLOG_DBG("%s has interface %s on port %d", dpif_name(br->dpif),
471 iface->name, iface->dp_ifidx);
472 return true;
6ae39834
BP
473}
474
64d64dd7 475/* Callback for iterate_and_prune_ifaces(). */
795fe1fb 476static bool
67a4917b
BP
477set_iface_properties(struct bridge *br OVS_UNUSED, struct iface *iface,
478 void *aux OVS_UNUSED)
795fe1fb 479{
4d678233 480 /* Set policing attributes. */
76343538
BP
481 netdev_set_policing(iface->netdev,
482 iface->cfg->ingress_policing_rate,
483 iface->cfg->ingress_policing_burst);
4d678233
BP
484
485 /* Set MAC address of internal interfaces other than the local
486 * interface. */
6cefe1da 487 if (iface->dp_ifidx != ODPP_LOCAL && !strcmp(iface->type, "internal")) {
4d678233
BP
488 iface_set_mac(iface);
489 }
490
795fe1fb
BP
491 return true;
492}
493
6ae39834
BP
494/* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
495 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
496 * deletes from 'br' any ports that no longer have any interfaces. */
497static void
498iterate_and_prune_ifaces(struct bridge *br,
499 bool (*cb)(struct bridge *, struct iface *,
500 void *aux),
501 void *aux)
502{
503 size_t i, j;
504
505 for (i = 0; i < br->n_ports; ) {
506 struct port *port = br->ports[i];
507 for (j = 0; j < port->n_ifaces; ) {
508 struct iface *iface = port->ifaces[j];
509 if (cb(br, iface, aux)) {
510 j++;
511 } else {
512 iface_destroy(iface);
513 }
514 }
515
516 if (port->n_ifaces) {
517 i++;
518 } else {
519 VLOG_ERR("%s port has no interfaces, dropping", port->name);
520 port_destroy(port);
521 }
522 }
523}
524
cd11000b
BP
525/* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
526 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
527 * responsible for freeing '*managersp' (with free()).
528 *
529 * You may be asking yourself "why does ovs-vswitchd care?", because
530 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
531 * should not be and in fact is not directly involved in that. But
532 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
533 * it has to tell in-band control where the managers are to enable that.
534 */
535static void
536collect_managers(const struct ovsrec_open_vswitch *ovs_cfg,
537 struct sockaddr_in **managersp, size_t *n_managersp)
538{
539 struct sockaddr_in *managers = NULL;
540 size_t n_managers = 0;
541
542 if (ovs_cfg->n_managers > 0) {
543 size_t i;
544
545 managers = xmalloc(ovs_cfg->n_managers * sizeof *managers);
546 for (i = 0; i < ovs_cfg->n_managers; i++) {
547 const char *name = ovs_cfg->managers[i];
548 struct sockaddr_in *sin = &managers[i];
549
550 if ((!strncmp(name, "tcp:", 4)
551 && inet_parse_active(name + 4, JSONRPC_TCP_PORT, sin)) ||
552 (!strncmp(name, "ssl:", 4)
553 && inet_parse_active(name + 4, JSONRPC_SSL_PORT, sin))) {
554 n_managers++;
555 }
556 }
557 }
558
559 *managersp = managers;
560 *n_managersp = n_managers;
561}
562
c5187f17 563static void
76343538 564bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
064af421 565{
76343538
BP
566 struct shash old_br, new_br;
567 struct shash_node *node;
064af421 568 struct bridge *br, *next;
cd11000b
BP
569 struct sockaddr_in *managers;
570 size_t n_managers;
6ae39834 571 size_t i;
72b06300 572 int sflow_bridge_number;
064af421
BP
573
574 COVERAGE_INC(bridge_reconfigure);
575
cd11000b
BP
576 collect_managers(ovs_cfg, &managers, &n_managers);
577
632d136c 578 /* Collect old and new bridges. */
76343538
BP
579 shash_init(&old_br);
580 shash_init(&new_br);
4e8e4213 581 LIST_FOR_EACH (br, node, &all_bridges) {
76343538
BP
582 shash_add(&old_br, br->name, br);
583 }
584 for (i = 0; i < ovs_cfg->n_bridges; i++) {
585 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
586 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
587 VLOG_WARN("more than one bridge named %s", br_cfg->name);
588 }
064af421 589 }
064af421
BP
590
591 /* Get rid of deleted bridges and add new bridges. */
4e8e4213 592 LIST_FOR_EACH_SAFE (br, next, node, &all_bridges) {
76343538
BP
593 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
594 if (br_cfg) {
595 br->cfg = br_cfg;
596 } else {
064af421
BP
597 bridge_destroy(br);
598 }
599 }
76343538
BP
600 SHASH_FOR_EACH (node, &new_br) {
601 const char *br_name = node->name;
602 const struct ovsrec_bridge *br_cfg = node->data;
1a6f1e2a
JG
603 br = shash_find_data(&old_br, br_name);
604 if (br) {
605 /* If the bridge datapath type has changed, we need to tear it
606 * down and recreate. */
607 if (strcmp(br->cfg->datapath_type, br_cfg->datapath_type)) {
608 bridge_destroy(br);
609 bridge_create(br_cfg);
fa33d64a 610 }
1a6f1e2a
JG
611 } else {
612 bridge_create(br_cfg);
064af421
BP
613 }
614 }
76343538
BP
615 shash_destroy(&old_br);
616 shash_destroy(&new_br);
064af421 617
064af421 618 /* Reconfigure all bridges. */
4e8e4213 619 LIST_FOR_EACH (br, node, &all_bridges) {
1a048029 620 bridge_reconfigure_one(br);
064af421
BP
621 }
622
623 /* Add and delete ports on all datapaths.
624 *
625 * The kernel will reject any attempt to add a given port to a datapath if
626 * that port already belongs to a different datapath, so we must do all
627 * port deletions before any port additions. */
4e8e4213 628 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
629 struct odp_port *dpif_ports;
630 size_t n_dpif_ports;
76343538 631 struct shash want_ifaces;
064af421 632
c228a364 633 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
064af421
BP
634 bridge_get_all_ifaces(br, &want_ifaces);
635 for (i = 0; i < n_dpif_ports; i++) {
636 const struct odp_port *p = &dpif_ports[i];
76343538 637 if (!shash_find(&want_ifaces, p->devname)
064af421 638 && strcmp(p->devname, br->name)) {
c228a364 639 int retval = dpif_port_del(br->dpif, p->port);
064af421 640 if (retval) {
b29ba128 641 VLOG_ERR("failed to remove %s interface from %s: %s",
c228a364 642 p->devname, dpif_name(br->dpif),
b29ba128 643 strerror(retval));
064af421
BP
644 }
645 }
646 }
76343538 647 shash_destroy(&want_ifaces);
064af421
BP
648 free(dpif_ports);
649 }
4e8e4213 650 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
651 struct odp_port *dpif_ports;
652 size_t n_dpif_ports;
76343538 653 struct shash cur_ifaces, want_ifaces;
064af421 654
76343538 655 /* Get the set of interfaces currently in this datapath. */
c228a364 656 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
76343538 657 shash_init(&cur_ifaces);
064af421 658 for (i = 0; i < n_dpif_ports; i++) {
76343538 659 const char *name = dpif_ports[i].devname;
3a6ccc8c 660 shash_add_once(&cur_ifaces, name, &dpif_ports[i]);
064af421 661 }
064af421 662
76343538
BP
663 /* Get the set of interfaces we want on this datapath. */
664 bridge_get_all_ifaces(br, &want_ifaces);
6c88d577 665
3a6ccc8c 666 hmap_clear(&br->ifaces);
76343538
BP
667 SHASH_FOR_EACH (node, &want_ifaces) {
668 const char *if_name = node->name;
669 struct iface *iface = node->data;
3a6ccc8c
BP
670 bool internal = !iface || !strcmp(iface->type, "internal");
671 struct odp_port *dpif_port = shash_find_data(&cur_ifaces, if_name);
672 int error;
673
674 /* If we have a port or a netdev already, and it's not the type we
675 * want, then delete the port (if any) and close the netdev (if
676 * any). */
677 if (internal
678 ? dpif_port && !(dpif_port->flags & ODP_PORT_INTERNAL)
679 : (iface->netdev
680 && strcmp(iface->type, netdev_get_type(iface->netdev))))
681 {
682 if (dpif_port) {
683 error = ofproto_port_del(br->ofproto, dpif_port->port);
684 if (error) {
685 continue;
686 }
687 dpif_port = NULL;
76343538 688 }
3a6ccc8c
BP
689 if (iface) {
690 netdev_close(iface->netdev);
691 iface->netdev = NULL;
692 }
693 }
76343538 694
3a6ccc8c
BP
695 /* If it's not an internal port, open (possibly create) the
696 * netdev. */
697 if (!internal) {
698 if (!iface->netdev) {
82057f51
BP
699 error = create_iface_netdev(iface);
700 if (error) {
701 VLOG_WARN("could not create iface %s: %s", iface->name,
702 strerror(error));
3a6ccc8c 703 continue;
82057f51 704 }
3a6ccc8c
BP
705 } else {
706 reconfigure_iface_netdev(iface);
82057f51 707 }
3a6ccc8c 708 }
82057f51 709
3a6ccc8c
BP
710 /* If it's not part of the datapath, add it. */
711 if (!dpif_port) {
76343538
BP
712 error = dpif_port_add(br->dpif, if_name,
713 internal ? ODP_PORT_INTERNAL : 0, NULL);
714 if (error == EFBIG) {
715 VLOG_ERR("ran out of valid port numbers on %s",
716 dpif_name(br->dpif));
717 break;
718 } else if (error) {
719 VLOG_ERR("failed to add %s interface to %s: %s",
720 if_name, dpif_name(br->dpif), strerror(error));
3a6ccc8c 721 continue;
76343538 722 }
064af421 723 }
3a6ccc8c
BP
724
725 /* If it's an internal port, open the netdev. */
726 if (internal) {
727 if (iface && !iface->netdev) {
728 error = create_iface_netdev(iface);
729 if (error) {
730 VLOG_WARN("could not create iface %s: %s", iface->name,
731 strerror(error));
732 continue;
733 }
734 }
735 } else {
736 assert(iface->netdev != NULL);
737 }
064af421 738 }
3a6ccc8c 739 free(dpif_ports);
76343538
BP
740 shash_destroy(&cur_ifaces);
741 shash_destroy(&want_ifaces);
064af421 742 }
72b06300 743 sflow_bridge_number = 0;
4e8e4213 744 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
745 uint8_t ea[8];
746 uint64_t dpid;
07c318f4
BP
747 struct iface *local_iface;
748 struct iface *hw_addr_iface;
093e47f4 749 char *dpid_string;
064af421 750
064af421 751 bridge_fetch_dp_ifaces(br);
064af421 752
64d64dd7 753 iterate_and_prune_ifaces(br, check_iface, NULL);
064af421
BP
754
755 /* Pick local port hardware address, datapath ID. */
07c318f4
BP
756 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
757 local_iface = bridge_get_local_iface(br);
064af421 758 if (local_iface) {
07c318f4 759 int error = netdev_set_etheraddr(local_iface->netdev, ea);
064af421
BP
760 if (error) {
761 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
762 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
763 "Ethernet address: %s",
764 br->name, strerror(error));
765 }
766 }
767
07c318f4 768 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
064af421
BP
769 ofproto_set_datapath_id(br->ofproto, dpid);
770
fc09119a 771 dpid_string = xasprintf("%016"PRIx64, dpid);
093e47f4
BP
772 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
773 free(dpid_string);
774
064af421 775 /* Set NetFlow configuration on this bridge. */
76343538
BP
776 if (br->cfg->netflow) {
777 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
778 struct netflow_options opts;
779
780 memset(&opts, 0, sizeof opts);
781
782 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
783 if (nf_cfg->engine_type) {
cd746526 784 opts.engine_type = *nf_cfg->engine_type;
76343538
BP
785 }
786 if (nf_cfg->engine_id) {
cd746526 787 opts.engine_id = *nf_cfg->engine_id;
76343538
BP
788 }
789
790 opts.active_timeout = nf_cfg->active_timeout;
791 if (!opts.active_timeout) {
792 opts.active_timeout = -1;
793 } else if (opts.active_timeout < 0) {
e9e2856e
JG
794 VLOG_WARN("bridge %s: active timeout interval set to negative "
795 "value, using default instead (%d seconds)", br->name,
796 NF_ACTIVE_TIMEOUT_DEFAULT);
797 opts.active_timeout = -1;
76343538
BP
798 }
799
800 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
801 if (opts.add_id_to_iface) {
802 if (opts.engine_id > 0x7f) {
803 VLOG_WARN("bridge %s: netflow port mangling may conflict "
804 "with another vswitch, choose an engine id less "
805 "than 128", br->name);
806 }
807 if (br->n_ports > 508) {
808 VLOG_WARN("bridge %s: netflow port mangling will conflict "
809 "with another port when more than 508 ports are "
810 "used", br->name);
811 }
812 }
813
814 opts.collectors.n = nf_cfg->n_targets;
815 opts.collectors.names = nf_cfg->targets;
816 if (ofproto_set_netflow(br->ofproto, &opts)) {
d295e8e9 817 VLOG_ERR("bridge %s: problem setting netflow collectors",
76343538
BP
818 br->name);
819 }
820 } else {
821 ofproto_set_netflow(br->ofproto, NULL);
822 }
064af421 823
a4af0040
JP
824 /* Set sFlow configuration on this bridge. */
825 if (br->cfg->sflow) {
d49d354b 826 const struct ovsrec_sflow *sflow_cfg = br->cfg->sflow;
76ce9432 827 struct ovsrec_controller **controllers;
72b06300 828 struct ofproto_sflow_options oso;
76ce9432 829 size_t n_controllers;
72b06300 830
a4af0040
JP
831 memset(&oso, 0, sizeof oso);
832
833 oso.targets.n = sflow_cfg->n_targets;
834 oso.targets.names = sflow_cfg->targets;
72b06300
BP
835
836 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
a4af0040
JP
837 if (sflow_cfg->sampling) {
838 oso.sampling_rate = *sflow_cfg->sampling;
72b06300
BP
839 }
840
841 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
a4af0040
JP
842 if (sflow_cfg->polling) {
843 oso.polling_interval = *sflow_cfg->polling;
72b06300
BP
844 }
845
846 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
a4af0040
JP
847 if (sflow_cfg->header) {
848 oso.header_len = *sflow_cfg->header;
72b06300
BP
849 }
850
851 oso.sub_id = sflow_bridge_number++;
a4af0040
JP
852 oso.agent_device = sflow_cfg->agent;
853
76ce9432 854 oso.control_ip = NULL;
1a048029 855 n_controllers = bridge_get_controllers(br, &controllers);
76ce9432
BP
856 for (i = 0; i < n_controllers; i++) {
857 if (controllers[i]->local_ip) {
858 oso.control_ip = controllers[i]->local_ip;
859 break;
860 }
861 }
72b06300
BP
862 ofproto_set_sflow(br->ofproto, &oso);
863
7b99db05 864 /* Do not destroy oso.targets because it is owned by sflow_cfg. */
72b06300
BP
865 } else {
866 ofproto_set_sflow(br->ofproto, NULL);
867 }
868
064af421
BP
869 /* Update the controller and related settings. It would be more
870 * straightforward to call this from bridge_reconfigure_one(), but we
871 * can't do it there for two reasons. First, and most importantly, at
872 * that point we don't know the dp_ifidx of any interfaces that have
873 * been added to the bridge (because we haven't actually added them to
874 * the datapath). Second, at that point we haven't set the datapath ID
875 * yet; when a controller is configured, resetting the datapath ID will
876 * immediately disconnect from the controller, so it's better to set
877 * the datapath ID before the controller. */
1a048029 878 bridge_reconfigure_remotes(br, managers, n_managers);
064af421 879 }
4e8e4213 880 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
881 for (i = 0; i < br->n_ports; i++) {
882 struct port *port = br->ports[i];
c1c9c9c4 883 int j;
52df17e7 884
064af421 885 port_update_vlan_compat(port);
0c6aea3f 886 port_update_bonding(port);
c1c9c9c4
BP
887
888 for (j = 0; j < port->n_ifaces; j++) {
889 iface_update_qos(port->ifaces[j], port->cfg->qos);
890 }
064af421
BP
891 }
892 }
4e8e4213 893 LIST_FOR_EACH (br, node, &all_bridges) {
4d678233 894 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
064af421 895 }
093e47f4 896
cd11000b 897 free(managers);
093e47f4
BP
898}
899
900static const char *
af6278e1
BP
901get_ovsrec_key_value(const struct ovsdb_idl_row *row,
902 const struct ovsdb_idl_column *column,
903 const char *key)
093e47f4 904{
af6278e1
BP
905 const struct ovsdb_datum *datum;
906 union ovsdb_atom atom;
907 unsigned int idx;
093e47f4 908
af6278e1
BP
909 datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
910 atom.string = (char *) key;
911 idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
912 return idx == UINT_MAX ? NULL : datum->values[idx].string;
064af421
BP
913}
914
c8143c88
BP
915static const char *
916bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
917{
af6278e1
BP
918 return get_ovsrec_key_value(&br_cfg->header_,
919 &ovsrec_bridge_col_other_config, key);
c8143c88
BP
920}
921
064af421
BP
922static void
923bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
07c318f4 924 struct iface **hw_addr_iface)
064af421 925{
093e47f4 926 const char *hwaddr;
064af421
BP
927 size_t i, j;
928 int error;
929
07c318f4 930 *hw_addr_iface = NULL;
064af421
BP
931
932 /* Did the user request a particular MAC? */
093e47f4
BP
933 hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
934 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
064af421
BP
935 if (eth_addr_is_multicast(ea)) {
936 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
937 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
938 } else if (eth_addr_is_zero(ea)) {
939 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
940 } else {
941 return;
942 }
943 }
944
141f4942
BP
945 /* Otherwise choose the minimum non-local MAC address among all of the
946 * interfaces. */
064af421
BP
947 memset(ea, 0xff, sizeof ea);
948 for (i = 0; i < br->n_ports; i++) {
949 struct port *port = br->ports[i];
58b7527e 950 uint8_t iface_ea[ETH_ADDR_LEN];
58b7527e
BP
951 struct iface *iface;
952
953 /* Mirror output ports don't participate. */
064af421
BP
954 if (port->is_mirror_output_port) {
955 continue;
956 }
58b7527e
BP
957
958 /* Choose the MAC address to represent the port. */
76343538 959 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
ba09980a
BP
960 /* Find the interface with this Ethernet address (if any) so that
961 * we can provide the correct devname to the caller. */
962 iface = NULL;
963 for (j = 0; j < port->n_ifaces; j++) {
964 struct iface *candidate = port->ifaces[j];
965 uint8_t candidate_ea[ETH_ADDR_LEN];
8fef8c71 966 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
ba09980a
BP
967 && eth_addr_equals(iface_ea, candidate_ea)) {
968 iface = candidate;
969 }
970 }
58b7527e
BP
971 } else {
972 /* Choose the interface whose MAC address will represent the port.
973 * The Linux kernel bonding code always chooses the MAC address of
974 * the first slave added to a bond, and the Fedora networking
975 * scripts always add slaves to a bond in alphabetical order, so
976 * for compatibility we choose the interface with the name that is
977 * first in alphabetical order. */
978 iface = port->ifaces[0];
979 for (j = 1; j < port->n_ifaces; j++) {
980 struct iface *candidate = port->ifaces[j];
981 if (strcmp(candidate->name, iface->name) < 0) {
982 iface = candidate;
983 }
984 }
985
986 /* The local port doesn't count (since we're trying to choose its
141f4942
BP
987 * MAC address anyway). */
988 if (iface->dp_ifidx == ODPP_LOCAL) {
064af421
BP
989 continue;
990 }
58b7527e
BP
991
992 /* Grab MAC. */
07c318f4 993 error = netdev_get_etheraddr(iface->netdev, iface_ea);
58b7527e 994 if (error) {
064af421
BP
995 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
996 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
997 iface->name, strerror(error));
58b7527e 998 continue;
064af421
BP
999 }
1000 }
58b7527e
BP
1001
1002 /* Compare against our current choice. */
1003 if (!eth_addr_is_multicast(iface_ea) &&
141f4942 1004 !eth_addr_is_local(iface_ea) &&
58b7527e
BP
1005 !eth_addr_is_reserved(iface_ea) &&
1006 !eth_addr_is_zero(iface_ea) &&
1007 memcmp(iface_ea, ea, ETH_ADDR_LEN) < 0)
1008 {
0babc06f 1009 memcpy(ea, iface_ea, ETH_ADDR_LEN);
8fef8c71 1010 *hw_addr_iface = iface;
58b7527e 1011 }
064af421 1012 }
141f4942 1013 if (eth_addr_is_multicast(ea)) {
064af421 1014 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
07c318f4 1015 *hw_addr_iface = NULL;
064af421
BP
1016 VLOG_WARN("bridge %s: using default bridge Ethernet "
1017 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1018 } else {
1019 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1020 br->name, ETH_ADDR_ARGS(ea));
1021 }
1022}
1023
1024/* Choose and returns the datapath ID for bridge 'br' given that the bridge
1025 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
07c318f4
BP
1026 * an interface on 'br', then that interface must be passed in as
1027 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1028 * 'hw_addr_iface' must be passed in as a null pointer. */
064af421
BP
1029static uint64_t
1030bridge_pick_datapath_id(struct bridge *br,
1031 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4 1032 struct iface *hw_addr_iface)
064af421
BP
1033{
1034 /*
1035 * The procedure for choosing a bridge MAC address will, in the most
1036 * ordinary case, also choose a unique MAC that we can use as a datapath
1037 * ID. In some special cases, though, multiple bridges will end up with
1038 * the same MAC address. This is OK for the bridges, but it will confuse
1039 * the OpenFlow controller, because each datapath needs a unique datapath
1040 * ID.
1041 *
1042 * Datapath IDs must be unique. It is also very desirable that they be
1043 * stable from one run to the next, so that policy set on a datapath
1044 * "sticks".
1045 */
093e47f4 1046 const char *datapath_id;
064af421
BP
1047 uint64_t dpid;
1048
093e47f4
BP
1049 datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1050 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
064af421
BP
1051 return dpid;
1052 }
1053
07c318f4 1054 if (hw_addr_iface) {
064af421 1055 int vlan;
b2f17b15 1056 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
064af421
BP
1057 /*
1058 * A bridge whose MAC address is taken from a VLAN network device
1059 * (that is, a network device created with vconfig(8) or similar
1060 * tool) will have the same MAC address as a bridge on the VLAN
1061 * device's physical network device.
1062 *
1063 * Handle this case by hashing the physical network device MAC
1064 * along with the VLAN identifier.
1065 */
1066 uint8_t buf[ETH_ADDR_LEN + 2];
1067 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1068 buf[ETH_ADDR_LEN] = vlan >> 8;
1069 buf[ETH_ADDR_LEN + 1] = vlan;
1070 return dpid_from_hash(buf, sizeof buf);
1071 } else {
1072 /*
1073 * Assume that this bridge's MAC address is unique, since it
1074 * doesn't fit any of the cases we handle specially.
1075 */
1076 }
1077 } else {
1078 /*
1079 * A purely internal bridge, that is, one that has no non-virtual
1080 * network devices on it at all, is more difficult because it has no
1081 * natural unique identifier at all.
1082 *
1083 * When the host is a XenServer, we handle this case by hashing the
1084 * host's UUID with the name of the bridge. Names of bridges are
1085 * persistent across XenServer reboots, although they can be reused if
1086 * an internal network is destroyed and then a new one is later
1087 * created, so this is fairly effective.
1088 *
1089 * When the host is not a XenServer, we punt by using a random MAC
1090 * address on each run.
1091 */
1092 const char *host_uuid = xenserver_get_host_uuid();
1093 if (host_uuid) {
1094 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1095 dpid = dpid_from_hash(combined, strlen(combined));
1096 free(combined);
1097 return dpid;
1098 }
1099 }
1100
1101 return eth_addr_to_uint64(bridge_ea);
1102}
1103
1104static uint64_t
1105dpid_from_hash(const void *data, size_t n)
1106{
5eccf359 1107 uint8_t hash[SHA1_DIGEST_SIZE];
064af421
BP
1108
1109 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
5eccf359 1110 sha1_bytes(data, n, hash);
064af421
BP
1111 eth_addr_mark_random(hash);
1112 return eth_addr_to_uint64(hash);
1113}
1114
018f1525
BP
1115static void
1116iface_refresh_stats(struct iface *iface)
1117{
1118 struct iface_stat {
1119 char *name;
1120 int offset;
1121 };
1122 static const struct iface_stat iface_stats[] = {
1123 { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1124 { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1125 { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1126 { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1127 { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1128 { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1129 { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1130 { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1131 { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1132 { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1133 { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1134 { "collisions", offsetof(struct netdev_stats, collisions) },
1135 };
1136 enum { N_STATS = ARRAY_SIZE(iface_stats) };
1137 const struct iface_stat *s;
1138
1139 char *keys[N_STATS];
1140 int64_t values[N_STATS];
1141 int n;
1142
1143 struct netdev_stats stats;
1144
1145 /* Intentionally ignore return value, since errors will set 'stats' to
1146 * all-1s, and we will deal with that correctly below. */
1147 netdev_get_stats(iface->netdev, &stats);
1148
1149 n = 0;
1150 for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1151 uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1152 if (value != UINT64_MAX) {
1153 keys[n] = s->name;
1154 values[n] = value;
1155 n++;
1156 }
1157 }
1158
1159 ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1160}
1161
ce887677
BP
1162static void
1163refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1164{
1165 struct ovsdb_datum datum;
1166 struct shash stats;
1167
1168 shash_init(&stats);
1169 get_system_stats(&stats);
1170
1171 ovsdb_datum_from_shash(&datum, &stats);
1172 ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1173 &datum);
1174}
1175
c5187f17 1176void
064af421
BP
1177bridge_run(void)
1178{
d54ff998
BP
1179 const struct ovsrec_open_vswitch *cfg;
1180
c5187f17 1181 bool datapath_destroyed;
d54ff998 1182 bool database_changed;
c5187f17 1183 struct bridge *br;
064af421 1184
c5187f17
BP
1185 /* Let each bridge do the work that it needs to do. */
1186 datapath_destroyed = false;
4e8e4213 1187 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
1188 int error = bridge_run_one(br);
1189 if (error) {
1190 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1191 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1192 "forcing reconfiguration", br->name);
c5187f17
BP
1193 datapath_destroyed = true;
1194 }
1195 }
1196
1197 /* (Re)configure if necessary. */
d54ff998
BP
1198 database_changed = ovsdb_idl_run(idl);
1199 cfg = ovsrec_open_vswitch_first(idl);
1200 if (database_changed || datapath_destroyed) {
c5187f17
BP
1201 if (cfg) {
1202 struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1203
1204 bridge_configure_once(cfg);
1205 bridge_reconfigure(cfg);
1206
1207 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1208 ovsdb_idl_txn_commit(txn);
1209 ovsdb_idl_txn_destroy(txn); /* XXX */
1e0b752d
BP
1210 } else {
1211 /* We still need to reconfigure to avoid dangling pointers to
1212 * now-destroyed ovsrec structures inside bridge data. */
1213 static const struct ovsrec_open_vswitch null_cfg;
1214
1215 bridge_reconfigure(&null_cfg);
064af421
BP
1216 }
1217 }
018f1525 1218
d54ff998
BP
1219#ifdef HAVE_OPENSSL
1220 /* Re-configure SSL. We do this on every trip through the main loop,
1221 * instead of just when the database changes, because the contents of the
1222 * key and certificate files can change without the database changing. */
1223 if (cfg && cfg->ssl) {
1224 const struct ovsrec_ssl *ssl = cfg->ssl;
1225
1226 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1227 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1228 }
1229#endif
1230
cd0cd65f
BP
1231 /* Refresh system and interface stats if necessary. */
1232 if (time_msec() >= stats_timer) {
ce887677
BP
1233 if (cfg) {
1234 struct ovsdb_idl_txn *txn;
018f1525 1235
ce887677 1236 txn = ovsdb_idl_txn_create(idl);
4e8e4213 1237 LIST_FOR_EACH (br, node, &all_bridges) {
ce887677 1238 size_t i;
018f1525 1239
ce887677
BP
1240 for (i = 0; i < br->n_ports; i++) {
1241 struct port *port = br->ports[i];
1242 size_t j;
018f1525 1243
ce887677
BP
1244 for (j = 0; j < port->n_ifaces; j++) {
1245 struct iface *iface = port->ifaces[j];
1246 iface_refresh_stats(iface);
1247 }
018f1525
BP
1248 }
1249 }
ce887677
BP
1250 refresh_system_stats(cfg);
1251 ovsdb_idl_txn_commit(txn);
1252 ovsdb_idl_txn_destroy(txn); /* XXX */
018f1525 1253 }
018f1525 1254
cd0cd65f 1255 stats_timer = time_msec() + STATS_INTERVAL;
018f1525 1256 }
064af421
BP
1257}
1258
1259void
1260bridge_wait(void)
1261{
1262 struct bridge *br;
1263
4e8e4213 1264 LIST_FOR_EACH (br, node, &all_bridges) {
064af421 1265 ofproto_wait(br->ofproto);
7d674866 1266 if (ofproto_has_primary_controller(br->ofproto)) {
064af421
BP
1267 continue;
1268 }
1269
93dfc067 1270 mac_learning_wait(br->ml);
064af421 1271 bond_wait(br);
064af421 1272 }
c5187f17 1273 ovsdb_idl_wait(idl);
cd0cd65f 1274 poll_timer_wait_until(stats_timer);
064af421
BP
1275}
1276
1277/* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
1278 * configuration changes. */
1279static void
1280bridge_flush(struct bridge *br)
1281{
1282 COVERAGE_INC(bridge_flush);
1283 br->flush = true;
93dfc067 1284 mac_learning_flush(br->ml);
064af421 1285}
07c318f4
BP
1286
1287/* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1288 * such interface. */
1289static struct iface *
1290bridge_get_local_iface(struct bridge *br)
1291{
1292 size_t i, j;
1293
1294 for (i = 0; i < br->n_ports; i++) {
1295 struct port *port = br->ports[i];
1296 for (j = 0; j < port->n_ifaces; j++) {
1297 struct iface *iface = port->ifaces[j];
1298 if (iface->dp_ifidx == ODPP_LOCAL) {
1299 return iface;
1300 }
1301 }
1302 }
1303
1304 return NULL;
1305}
064af421 1306\f
8c4c1387
BP
1307/* Bridge unixctl user interface functions. */
1308static void
8ca79daa 1309bridge_unixctl_fdb_show(struct unixctl_conn *conn,
c69ee87c 1310 const char *args, void *aux OVS_UNUSED)
8c4c1387
BP
1311{
1312 struct ds ds = DS_EMPTY_INITIALIZER;
1313 const struct bridge *br;
93dfc067 1314 const struct mac_entry *e;
8c4c1387
BP
1315
1316 br = bridge_lookup(args);
1317 if (!br) {
1318 unixctl_command_reply(conn, 501, "no such bridge");
1319 return;
1320 }
1321
1322 ds_put_cstr(&ds, " port VLAN MAC Age\n");
4e8e4213 1323 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
93dfc067
JG
1324 if (e->port < 0 || e->port >= br->n_ports) {
1325 continue;
8c4c1387 1326 }
93dfc067
JG
1327 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1328 br->ports[e->port]->ifaces[0]->dp_ifidx,
1329 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
8c4c1387
BP
1330 }
1331 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1332 ds_destroy(&ds);
1333}
1334\f
064af421 1335/* Bridge reconfiguration functions. */
064af421 1336static struct bridge *
1a6f1e2a 1337bridge_create(const struct ovsrec_bridge *br_cfg)
064af421
BP
1338{
1339 struct bridge *br;
1340 int error;
1341
1a6f1e2a 1342 assert(!bridge_lookup(br_cfg->name));
ec6fde61 1343 br = xzalloc(sizeof *br);
064af421 1344
1a6f1e2a
JG
1345 error = dpif_create_and_open(br_cfg->name, br_cfg->datapath_type,
1346 &br->dpif);
efacbce6 1347 if (error) {
064af421
BP
1348 free(br);
1349 return NULL;
1350 }
efacbce6 1351 dpif_flow_flush(br->dpif);
064af421 1352
1a6f1e2a
JG
1353 error = ofproto_create(br_cfg->name, br_cfg->datapath_type, &bridge_ofhooks,
1354 br, &br->ofproto);
064af421 1355 if (error) {
1a6f1e2a
JG
1356 VLOG_ERR("failed to create switch %s: %s", br_cfg->name,
1357 strerror(error));
c228a364
BP
1358 dpif_delete(br->dpif);
1359 dpif_close(br->dpif);
064af421
BP
1360 free(br);
1361 return NULL;
1362 }
1363
1a6f1e2a
JG
1364 br->name = xstrdup(br_cfg->name);
1365 br->cfg = br_cfg;
064af421 1366 br->ml = mac_learning_create();
70150daf 1367 eth_addr_nicira_random(br->default_ea);
064af421 1368
d9a8717a 1369 hmap_init(&br->ifaces);
064af421 1370
836fad5e 1371 shash_init(&br->port_by_name);
4a1ee6ae
BP
1372 shash_init(&br->iface_by_name);
1373
064af421 1374 br->flush = false;
064af421
BP
1375
1376 list_push_back(&all_bridges, &br->node);
1377
c228a364 1378 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
064af421
BP
1379
1380 return br;
1381}
1382
1383static void
1384bridge_destroy(struct bridge *br)
1385{
1386 if (br) {
1387 int error;
1388
1389 while (br->n_ports > 0) {
1390 port_destroy(br->ports[br->n_ports - 1]);
1391 }
1392 list_remove(&br->node);
c228a364 1393 error = dpif_delete(br->dpif);
064af421 1394 if (error && error != ENOENT) {
b29ba128 1395 VLOG_ERR("failed to delete %s: %s",
c228a364 1396 dpif_name(br->dpif), strerror(error));
064af421 1397 }
c228a364 1398 dpif_close(br->dpif);
064af421 1399 ofproto_destroy(br->ofproto);
064af421 1400 mac_learning_destroy(br->ml);
d9a8717a 1401 hmap_destroy(&br->ifaces);
836fad5e 1402 shash_destroy(&br->port_by_name);
4a1ee6ae 1403 shash_destroy(&br->iface_by_name);
064af421
BP
1404 free(br->ports);
1405 free(br->name);
1406 free(br);
1407 }
1408}
1409
1410static struct bridge *
1411bridge_lookup(const char *name)
1412{
1413 struct bridge *br;
1414
4e8e4213 1415 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
1416 if (!strcmp(br->name, name)) {
1417 return br;
1418 }
1419 }
1420 return NULL;
1421}
1422
4f2cad2c
JP
1423/* Handle requests for a listing of all flows known by the OpenFlow
1424 * stack, including those normally hidden. */
1425static void
8ca79daa 1426bridge_unixctl_dump_flows(struct unixctl_conn *conn,
c69ee87c 1427 const char *args, void *aux OVS_UNUSED)
4f2cad2c
JP
1428{
1429 struct bridge *br;
1430 struct ds results;
d295e8e9 1431
4f2cad2c
JP
1432 br = bridge_lookup(args);
1433 if (!br) {
1434 unixctl_command_reply(conn, 501, "Unknown bridge");
1435 return;
1436 }
1437
1438 ds_init(&results);
1439 ofproto_get_all_flows(br->ofproto, &results);
1440
1441 unixctl_command_reply(conn, 200, ds_cstr(&results));
1442 ds_destroy(&results);
1443}
1444
fa05809b
BP
1445/* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1446 * connections and reconnect. If BRIDGE is not specified, then all bridges
1447 * drop their controller connections and reconnect. */
1448static void
1449bridge_unixctl_reconnect(struct unixctl_conn *conn,
1450 const char *args, void *aux OVS_UNUSED)
1451{
1452 struct bridge *br;
1453 if (args[0] != '\0') {
1454 br = bridge_lookup(args);
1455 if (!br) {
1456 unixctl_command_reply(conn, 501, "Unknown bridge");
1457 return;
1458 }
1459 ofproto_reconnect_controllers(br->ofproto);
1460 } else {
4e8e4213 1461 LIST_FOR_EACH (br, node, &all_bridges) {
fa05809b
BP
1462 ofproto_reconnect_controllers(br->ofproto);
1463 }
1464 }
1465 unixctl_command_reply(conn, 200, NULL);
1466}
1467
064af421
BP
1468static int
1469bridge_run_one(struct bridge *br)
1470{
1471 int error;
1472
1473 error = ofproto_run1(br->ofproto);
1474 if (error) {
1475 return error;
1476 }
1477
93dfc067 1478 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
064af421 1479 bond_run(br);
064af421
BP
1480
1481 error = ofproto_run2(br->ofproto, br->flush);
1482 br->flush = false;
1483
1484 return error;
1485}
1486
76ce9432 1487static size_t
1a048029 1488bridge_get_controllers(const struct bridge *br,
76ce9432 1489 struct ovsrec_controller ***controllersp)
064af421 1490{
76ce9432
BP
1491 struct ovsrec_controller **controllers;
1492 size_t n_controllers;
064af421 1493
1a048029
JP
1494 controllers = br->cfg->controller;
1495 n_controllers = br->cfg->n_controller;
76343538 1496
76ce9432
BP
1497 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1498 controllers = NULL;
1499 n_controllers = 0;
064af421 1500 }
76343538 1501
76ce9432
BP
1502 if (controllersp) {
1503 *controllersp = controllers;
1504 }
1505 return n_controllers;
064af421
BP
1506}
1507
1508static void
1a048029 1509bridge_reconfigure_one(struct bridge *br)
064af421 1510{
76343538 1511 struct shash old_ports, new_ports;
064af421 1512 struct svec snoops, old_snoops;
76343538 1513 struct shash_node *node;
31681a5d 1514 enum ofproto_fail_mode fail_mode;
6ae39834 1515 size_t i;
064af421
BP
1516
1517 /* Collect old ports. */
76343538 1518 shash_init(&old_ports);
064af421 1519 for (i = 0; i < br->n_ports; i++) {
76343538 1520 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
064af421 1521 }
064af421
BP
1522
1523 /* Collect new ports. */
76343538
BP
1524 shash_init(&new_ports);
1525 for (i = 0; i < br->cfg->n_ports; i++) {
1526 const char *name = br->cfg->ports[i]->name;
1527 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1528 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1529 br->name, name);
1530 }
1531 }
e073f944
BP
1532
1533 /* If we have a controller, then we need a local port. Complain if the
1534 * user didn't specify one.
1535 *
1536 * XXX perhaps we should synthesize a port ourselves in this case. */
1a048029 1537 if (bridge_get_controllers(br, NULL)) {
72865317
BP
1538 char local_name[IF_NAMESIZE];
1539 int error;
1540
1541 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1542 local_name, sizeof local_name);
e073f944
BP
1543 if (!error && !shash_find(&new_ports, local_name)) {
1544 VLOG_WARN("bridge %s: controller specified but no local port "
1545 "(port named %s) defined",
1546 br->name, local_name);
72865317 1547 }
064af421 1548 }
064af421 1549
4a1ee6ae
BP
1550 /* Get rid of deleted ports.
1551 * Get rid of deleted interfaces on ports that still exist. */
76343538 1552 SHASH_FOR_EACH (node, &old_ports) {
4a1ee6ae
BP
1553 struct port *port = node->data;
1554 const struct ovsrec_port *port_cfg;
1555
1556 port_cfg = shash_find_data(&new_ports, node->name);
1557 if (!port_cfg) {
1558 port_destroy(port);
1559 } else {
1560 port_del_ifaces(port, port_cfg);
064af421
BP
1561 }
1562 }
4a1ee6ae
BP
1563
1564 /* Create new ports.
1565 * Add new interfaces to existing ports.
1566 * Reconfigure existing ports. */
76343538
BP
1567 SHASH_FOR_EACH (node, &new_ports) {
1568 struct port *port = shash_find_data(&old_ports, node->name);
1569 if (!port) {
1570 port = port_create(br, node->name);
064af421 1571 }
ceb4559f 1572
76343538 1573 port_reconfigure(port, node->data);
ceb4559f
JG
1574 if (!port->n_ifaces) {
1575 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1576 br->name, port->name);
1577 port_destroy(port);
1578 }
064af421 1579 }
76343538
BP
1580 shash_destroy(&old_ports);
1581 shash_destroy(&new_ports);
064af421 1582
31681a5d
JP
1583 /* Set the fail-mode */
1584 fail_mode = !br->cfg->fail_mode
1585 || !strcmp(br->cfg->fail_mode, "standalone")
1586 ? OFPROTO_FAIL_STANDALONE
1587 : OFPROTO_FAIL_SECURE;
7d674866
BP
1588 if (ofproto_get_fail_mode(br->ofproto) != fail_mode
1589 && !ofproto_has_primary_controller(br->ofproto)) {
abdfe474
JP
1590 ofproto_flush_flows(br->ofproto);
1591 }
31681a5d
JP
1592 ofproto_set_fail_mode(br->ofproto, fail_mode);
1593
064af421
BP
1594 /* Delete all flows if we're switching from connected to standalone or vice
1595 * versa. (XXX Should we delete all flows if we are switching from one
1596 * controller to another?) */
1597
5a243150 1598 /* Configure OpenFlow controller connection snooping. */
76343538
BP
1599 svec_init(&snoops);
1600 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1601 ovs_rundir, br->name));
1602 svec_init(&old_snoops);
1603 ofproto_get_snoops(br->ofproto, &old_snoops);
1604 if (!svec_equal(&snoops, &old_snoops)) {
1605 ofproto_set_snoops(br->ofproto, &snoops);
1606 }
1607 svec_destroy(&snoops);
1608 svec_destroy(&old_snoops);
76343538 1609
064af421
BP
1610 mirror_reconfigure(br);
1611}
1612
7d674866
BP
1613/* Initializes 'oc' appropriately as a management service controller for
1614 * 'br'.
1615 *
1616 * The caller must free oc->target when it is no longer needed. */
1617static void
1618bridge_ofproto_controller_for_mgmt(const struct bridge *br,
1619 struct ofproto_controller *oc)
1620{
1621 oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir, br->name);
1622 oc->max_backoff = 0;
1623 oc->probe_interval = 60;
1624 oc->band = OFPROTO_OUT_OF_BAND;
1625 oc->accept_re = NULL;
1626 oc->update_resolv_conf = false;
1627 oc->rate_limit = 0;
1628 oc->burst_limit = 0;
1629}
1630
1631/* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */
1632static void
1633bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
1634 struct ofproto_controller *oc)
1635{
1636 oc->target = c->target;
1637 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1638 oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1639 oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
1640 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
1641 oc->accept_re = c->discover_accept_regex;
1642 oc->update_resolv_conf = c->discover_update_resolv_conf;
1643 oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1644 oc->burst_limit = (c->controller_burst_limit
1645 ? *c->controller_burst_limit : 0);
1646}
1647
1648/* Configures the IP stack for 'br''s local interface properly according to the
1649 * configuration in 'c'. */
1650static void
1651bridge_configure_local_iface_netdev(struct bridge *br,
1652 struct ovsrec_controller *c)
1653{
1654 struct netdev *netdev;
1655 struct in_addr mask, gateway;
1656
1657 struct iface *local_iface;
1658 struct in_addr ip;
1659
1660 /* Controller discovery does its own TCP/IP configuration later. */
1661 if (strcmp(c->target, "discover")) {
1662 return;
1663 }
1664
1665 /* If there's no local interface or no IP address, give up. */
1666 local_iface = bridge_get_local_iface(br);
1667 if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
1668 return;
1669 }
1670
1671 /* Bring up the local interface. */
1672 netdev = local_iface->netdev;
1673 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1674
1675 /* Configure the IP address and netmask. */
1676 if (!c->local_netmask
1677 || !inet_aton(c->local_netmask, &mask)
1678 || !mask.s_addr) {
1679 mask.s_addr = guess_netmask(ip.s_addr);
1680 }
1681 if (!netdev_set_in4(netdev, ip, mask)) {
1682 VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
1683 br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
1684 }
1685
1686 /* Configure the default gateway. */
1687 if (c->local_gateway
1688 && inet_aton(c->local_gateway, &gateway)
1689 && gateway.s_addr) {
1690 if (!netdev_add_router(netdev, gateway)) {
1691 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1692 br->name, IP_ARGS(&gateway.s_addr));
1693 }
1694 }
1695}
1696
064af421 1697static void
1a048029 1698bridge_reconfigure_remotes(struct bridge *br,
11bbff1b
BP
1699 const struct sockaddr_in *managers,
1700 size_t n_managers)
064af421 1701{
76ce9432
BP
1702 struct ovsrec_controller **controllers;
1703 size_t n_controllers;
7d674866
BP
1704 bool had_primary;
1705
1706 struct ofproto_controller *ocs;
1707 size_t n_ocs;
1708 size_t i;
064af421 1709
cd11000b 1710 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
7d674866 1711 had_primary = ofproto_has_primary_controller(br->ofproto);
cd11000b 1712
1a048029 1713 n_controllers = bridge_get_controllers(br, &controllers);
064af421 1714
7d674866
BP
1715 ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
1716 n_ocs = 0;
064af421 1717
7d674866
BP
1718 bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
1719 for (i = 0; i < n_controllers; i++) {
1720 struct ovsrec_controller *c = controllers[i];
76ce9432 1721
7d674866
BP
1722 if (!strncmp(c->target, "punix:", 6)
1723 || !strncmp(c->target, "unix:", 5)) {
1724 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
76ce9432 1725
7d674866
BP
1726 /* Prevent remote ovsdb-server users from accessing arbitrary Unix
1727 * domain sockets and overwriting arbitrary local files. */
1728 VLOG_ERR_RL(&rl, "%s: not adding Unix domain socket controller "
1729 "\"%s\" due to possibility for remote exploit",
1730 dpif_name(br->dpif), c->target);
1731 continue;
1732 }
76ce9432 1733
7d674866
BP
1734 bridge_configure_local_iface_netdev(br, c);
1735 bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs++]);
1736 }
76ce9432 1737
7d674866
BP
1738 ofproto_set_controllers(br->ofproto, ocs, n_ocs);
1739 free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
1740 free(ocs);
064af421 1741
7d674866
BP
1742 if (had_primary != ofproto_has_primary_controller(br->ofproto)) {
1743 ofproto_flush_flows(br->ofproto);
1744 }
76ce9432 1745
7d674866
BP
1746 /* If there are no controllers and the bridge is in standalone
1747 * mode, set up a flow that matches every packet and directs
1748 * them to OFPP_NORMAL (which goes to us). Otherwise, the
1749 * switch is in secure mode and we won't pass any traffic until
1750 * a controller has been defined and it tells us to do so. */
1751 if (!n_controllers
1752 && ofproto_get_fail_mode(br->ofproto) == OFPROTO_FAIL_STANDALONE) {
1753 union ofp_action action;
ae412e7d 1754 struct flow flow;
76ce9432 1755
7d674866
BP
1756 memset(&action, 0, sizeof action);
1757 action.type = htons(OFPAT_OUTPUT);
1758 action.output.len = htons(sizeof action);
1759 action.output.port = htons(OFPP_NORMAL);
1760 memset(&flow, 0, sizeof flow);
1761 ofproto_add_flow(br->ofproto, &flow, OVSFW_ALL, 0, &action, 1, 0);
064af421 1762 }
064af421
BP
1763}
1764
1765static void
76343538 1766bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
064af421
BP
1767{
1768 size_t i, j;
1769
76343538 1770 shash_init(ifaces);
064af421
BP
1771 for (i = 0; i < br->n_ports; i++) {
1772 struct port *port = br->ports[i];
1773 for (j = 0; j < port->n_ifaces; j++) {
1774 struct iface *iface = port->ifaces[j];
76343538 1775 shash_add_once(ifaces, iface->name, iface);
064af421 1776 }
76343538
BP
1777 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
1778 shash_add_once(ifaces, port->name, NULL);
35c979bf 1779 }
064af421 1780 }
064af421
BP
1781}
1782
1783/* For robustness, in case the administrator moves around datapath ports behind
1784 * our back, we re-check all the datapath port numbers here.
1785 *
1786 * This function will set the 'dp_ifidx' members of interfaces that have
1787 * disappeared to -1, so only call this function from a context where those
1788 * 'struct iface's will be removed from the bridge. Otherwise, the -1
1789 * 'dp_ifidx'es will cause trouble later when we try to send them to the
1790 * datapath, which doesn't support UINT16_MAX+1 ports. */
1791static void
1792bridge_fetch_dp_ifaces(struct bridge *br)
1793{
1794 struct odp_port *dpif_ports;
1795 size_t n_dpif_ports;
1796 size_t i, j;
1797
1798 /* Reset all interface numbers. */
1799 for (i = 0; i < br->n_ports; i++) {
1800 struct port *port = br->ports[i];
1801 for (j = 0; j < port->n_ifaces; j++) {
1802 struct iface *iface = port->ifaces[j];
1803 iface->dp_ifidx = -1;
1804 }
1805 }
d9a8717a 1806 hmap_clear(&br->ifaces);
064af421 1807
c228a364 1808 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
064af421
BP
1809 for (i = 0; i < n_dpif_ports; i++) {
1810 struct odp_port *p = &dpif_ports[i];
1811 struct iface *iface = iface_lookup(br, p->devname);
1812 if (iface) {
1813 if (iface->dp_ifidx >= 0) {
b29ba128 1814 VLOG_WARN("%s reported interface %s twice",
c228a364 1815 dpif_name(br->dpif), p->devname);
064af421 1816 } else if (iface_from_dp_ifidx(br, p->port)) {
b29ba128 1817 VLOG_WARN("%s reported interface %"PRIu16" twice",
c228a364 1818 dpif_name(br->dpif), p->port);
064af421 1819 } else {
064af421 1820 iface->dp_ifidx = p->port;
d9a8717a
BP
1821 hmap_insert(&br->ifaces, &iface->dp_ifidx_node,
1822 hash_int(iface->dp_ifidx, 0));
064af421 1823 }
093e47f4
BP
1824
1825 if (iface->cfg) {
1826 int64_t ofport = (iface->dp_ifidx >= 0
1827 ? odp_port_to_ofp_port(iface->dp_ifidx)
1828 : -1);
1829 ovsrec_interface_set_ofport(iface->cfg, &ofport, 1);
1830 }
064af421
BP
1831 }
1832 }
1833 free(dpif_ports);
1834}
1835\f
1836/* Bridge packet processing functions. */
1837
da285df4
BP
1838static int
1839bond_hash(const uint8_t mac[ETH_ADDR_LEN])
1840{
1841 return hash_bytes(mac, ETH_ADDR_LEN, 0) & BOND_MASK;
1842}
1843
064af421
BP
1844static struct bond_entry *
1845lookup_bond_entry(const struct port *port, const uint8_t mac[ETH_ADDR_LEN])
1846{
da285df4 1847 return &port->bond_hash[bond_hash(mac)];
064af421
BP
1848}
1849
1850static int
1851bond_choose_iface(const struct port *port)
1852{
8b2a2f4a
JG
1853 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1854 size_t i, best_down_slave = -1;
1855 long long next_delay_expiration = LLONG_MAX;
1856
064af421 1857 for (i = 0; i < port->n_ifaces; i++) {
8b2a2f4a
JG
1858 struct iface *iface = port->ifaces[i];
1859
1860 if (iface->enabled) {
064af421 1861 return i;
8b2a2f4a
JG
1862 } else if (iface->delay_expires < next_delay_expiration) {
1863 best_down_slave = i;
1864 next_delay_expiration = iface->delay_expires;
064af421
BP
1865 }
1866 }
8b2a2f4a
JG
1867
1868 if (best_down_slave != -1) {
1869 struct iface *iface = port->ifaces[best_down_slave];
1870
1871 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
1872 "since no other interface is up", iface->name,
1873 iface->delay_expires - time_msec());
1874 bond_enable_slave(iface, true);
1875 }
1876
1877 return best_down_slave;
064af421
BP
1878}
1879
1880static bool
2303f3b2 1881choose_output_iface(const struct port *port, const uint8_t *dl_src,
064af421
BP
1882 uint16_t *dp_ifidx, tag_type *tags)
1883{
1884 struct iface *iface;
1885
1886 assert(port->n_ifaces);
1887 if (port->n_ifaces == 1) {
1888 iface = port->ifaces[0];
1889 } else {
2303f3b2 1890 struct bond_entry *e = lookup_bond_entry(port, dl_src);
064af421
BP
1891 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
1892 || !port->ifaces[e->iface_idx]->enabled) {
1893 /* XXX select interface properly. The current interface selection
1894 * is only good for testing the rebalancing code. */
1895 e->iface_idx = bond_choose_iface(port);
1896 if (e->iface_idx < 0) {
1897 *tags |= port->no_ifaces_tag;
1898 return false;
1899 }
1900 e->iface_tag = tag_create_random();
85c74638 1901 ((struct port *) port)->bond_compat_is_stale = true;
064af421
BP
1902 }
1903 *tags |= e->iface_tag;
1904 iface = port->ifaces[e->iface_idx];
1905 }
1906 *dp_ifidx = iface->dp_ifidx;
1907 *tags |= iface->tag; /* Currently only used for bonding. */
1908 return true;
1909}
1910
1911static void
1912bond_link_status_update(struct iface *iface, bool carrier)
1913{
1914 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1915 struct port *port = iface->port;
1916
1917 if ((carrier == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
1918 /* Nothing to do. */
1919 return;
1920 }
1921 VLOG_INFO_RL(&rl, "interface %s: carrier %s",
1922 iface->name, carrier ? "detected" : "dropped");
1923 if (carrier == iface->enabled) {
1924 iface->delay_expires = LLONG_MAX;
1925 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
1926 iface->name, carrier ? "disabled" : "enabled");
8b2a2f4a
JG
1927 } else if (carrier && port->active_iface < 0) {
1928 bond_enable_slave(iface, true);
1929 if (port->updelay) {
1930 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
1931 "other interface is up", iface->name, port->updelay);
1932 }
064af421
BP
1933 } else {
1934 int delay = carrier ? port->updelay : port->downdelay;
1935 iface->delay_expires = time_msec() + delay;
1936 if (delay) {
1937 VLOG_INFO_RL(&rl,
1938 "interface %s: will be %s if it stays %s for %d ms",
1939 iface->name,
1940 carrier ? "enabled" : "disabled",
1941 carrier ? "up" : "down",
1942 delay);
1943 }
1944 }
1945}
1946
1947static void
1948bond_choose_active_iface(struct port *port)
1949{
1950 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1951
1952 port->active_iface = bond_choose_iface(port);
1953 port->active_iface_tag = tag_create_random();
1954 if (port->active_iface >= 0) {
1955 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
1956 port->name, port->ifaces[port->active_iface]->name);
1957 } else {
1958 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
1959 port->name);
1960 }
1961}
1962
da285df4
BP
1963static void
1964bond_enable_slave(struct iface *iface, bool enable)
1965{
1966 struct port *port = iface->port;
1967 struct bridge *br = port->bridge;
1968
8b2a2f4a
JG
1969 /* This acts as a recursion check. If the act of disabling a slave
1970 * causes a different slave to be enabled, the flag will allow us to
1971 * skip redundant work when we reenter this function. It must be
1972 * cleared on exit to keep things safe with multiple bonds. */
1973 static bool moving_active_iface = false;
1974
da285df4
BP
1975 iface->delay_expires = LLONG_MAX;
1976 if (enable == iface->enabled) {
1977 return;
1978 }
1979
1980 iface->enabled = enable;
1981 if (!iface->enabled) {
17ea75b2 1982 VLOG_WARN("interface %s: disabled", iface->name);
da285df4
BP
1983 ofproto_revalidate(br->ofproto, iface->tag);
1984 if (iface->port_ifidx == port->active_iface) {
1985 ofproto_revalidate(br->ofproto,
1986 port->active_iface_tag);
8b2a2f4a
JG
1987
1988 /* Disabling a slave can lead to another slave being immediately
1989 * enabled if there will be no active slaves but one is waiting
1990 * on an updelay. In this case we do not need to run most of the
1991 * code for the newly enabled slave since there was no period
1992 * without an active slave and it is redundant with the disabling
1993 * path. */
1994 moving_active_iface = true;
da285df4
BP
1995 bond_choose_active_iface(port);
1996 }
1997 bond_send_learning_packets(port);
1998 } else {
17ea75b2 1999 VLOG_WARN("interface %s: enabled", iface->name);
8b2a2f4a 2000 if (port->active_iface < 0 && !moving_active_iface) {
da285df4
BP
2001 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
2002 bond_choose_active_iface(port);
2003 bond_send_learning_packets(port);
2004 }
2005 iface->tag = tag_create_random();
2006 }
8b2a2f4a
JG
2007
2008 moving_active_iface = false;
2009 port->bond_compat_is_stale = true;
da285df4
BP
2010}
2011
8722022c
BP
2012/* Attempts to make the sum of the bond slaves' statistics appear on the fake
2013 * bond interface. */
2014static void
2015bond_update_fake_iface_stats(struct port *port)
2016{
2017 struct netdev_stats bond_stats;
2018 struct netdev *bond_dev;
2019 size_t i;
2020
2021 memset(&bond_stats, 0, sizeof bond_stats);
2022
2023 for (i = 0; i < port->n_ifaces; i++) {
2024 struct netdev_stats slave_stats;
2025
2026 if (!netdev_get_stats(port->ifaces[i]->netdev, &slave_stats)) {
f4b6076a
JG
2027 /* XXX: We swap the stats here because they are swapped back when
2028 * reported by the internal device. The reason for this is
2029 * internal devices normally represent packets going into the system
2030 * but when used as fake bond device they represent packets leaving
2031 * the system. We really should do this in the internal device
2032 * itself because changing it here reverses the counts from the
2033 * perspective of the switch. However, the internal device doesn't
2034 * know what type of device it represents so we have to do it here
2035 * for now. */
2036 bond_stats.tx_packets += slave_stats.rx_packets;
2037 bond_stats.tx_bytes += slave_stats.rx_bytes;
2038 bond_stats.rx_packets += slave_stats.tx_packets;
2039 bond_stats.rx_bytes += slave_stats.tx_bytes;
8722022c
BP
2040 }
2041 }
2042
2043 if (!netdev_open_default(port->name, &bond_dev)) {
2044 netdev_set_stats(bond_dev, &bond_stats);
2045 netdev_close(bond_dev);
2046 }
2047}
2048
064af421
BP
2049static void
2050bond_run(struct bridge *br)
2051{
2052 size_t i, j;
2053
2054 for (i = 0; i < br->n_ports; i++) {
2055 struct port *port = br->ports[i];
85c74638 2056
8b2a2f4a 2057 if (port->n_ifaces >= 2) {
0bb5c3ec
BP
2058 char *devname;
2059
2060 /* Track carrier going up and down on interfaces. */
2061 while (!netdev_monitor_poll(port->monitor, &devname)) {
2062 struct iface *iface;
2063 bool carrier;
2064
2065 iface = port_lookup_iface(port, devname);
2066 if (iface && !netdev_get_carrier(iface->netdev, &carrier)) {
2067 bond_link_status_update(iface, carrier);
2068 port_update_bond_compat(port);
2069 }
2070 free(devname);
2071 }
2072
8b2a2f4a
JG
2073 for (j = 0; j < port->n_ifaces; j++) {
2074 struct iface *iface = port->ifaces[j];
2075 if (time_msec() >= iface->delay_expires) {
2076 bond_enable_slave(iface, !iface->enabled);
2077 }
2078 }
8722022c
BP
2079
2080 if (port->bond_fake_iface
2081 && time_msec() >= port->bond_next_fake_iface_update) {
2082 bond_update_fake_iface_stats(port);
2083 port->bond_next_fake_iface_update = time_msec() + 1000;
2084 }
8b2a2f4a
JG
2085 }
2086
85c74638
BP
2087 if (port->bond_compat_is_stale) {
2088 port->bond_compat_is_stale = false;
2089 port_update_bond_compat(port);
2090 }
064af421
BP
2091 }
2092}
2093
2094static void
2095bond_wait(struct bridge *br)
2096{
2097 size_t i, j;
2098
2099 for (i = 0; i < br->n_ports; i++) {
2100 struct port *port = br->ports[i];
2101 if (port->n_ifaces < 2) {
2102 continue;
2103 }
0bb5c3ec 2104 netdev_monitor_poll_wait(port->monitor);
064af421
BP
2105 for (j = 0; j < port->n_ifaces; j++) {
2106 struct iface *iface = port->ifaces[j];
2107 if (iface->delay_expires != LLONG_MAX) {
7cf8b266 2108 poll_timer_wait_until(iface->delay_expires);
064af421
BP
2109 }
2110 }
8722022c 2111 if (port->bond_fake_iface) {
7cf8b266 2112 poll_timer_wait_until(port->bond_next_fake_iface_update);
8722022c 2113 }
064af421
BP
2114 }
2115}
2116
2117static bool
ae412e7d 2118set_dst(struct dst *p, const struct flow *flow,
064af421
BP
2119 const struct port *in_port, const struct port *out_port,
2120 tag_type *tags)
2121{
064af421
BP
2122 p->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
2123 : in_port->vlan >= 0 ? in_port->vlan
2124 : ntohs(flow->dl_vlan));
2303f3b2 2125 return choose_output_iface(out_port, flow->dl_src, &p->dp_ifidx, tags);
064af421
BP
2126}
2127
2128static void
2129swap_dst(struct dst *p, struct dst *q)
2130{
2131 struct dst tmp = *p;
2132 *p = *q;
2133 *q = tmp;
2134}
2135
2136/* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
2137 * 'dsts'. (This may help performance by reducing the number of VLAN changes
2138 * that we push to the datapath. We could in fact fully sort the array by
2139 * vlan, but in most cases there are at most two different vlan tags so that's
2140 * possibly overkill.) */
2141static void
2142partition_dsts(struct dst *dsts, size_t n_dsts, int vlan)
2143{
2144 struct dst *first = dsts;
2145 struct dst *last = dsts + n_dsts;
2146
2147 while (first != last) {
2148 /* Invariants:
2149 * - All dsts < first have vlan == 'vlan'.
2150 * - All dsts >= last have vlan != 'vlan'.
2151 * - first < last. */
2152 while (first->vlan == vlan) {
2153 if (++first == last) {
2154 return;
2155 }
2156 }
2157
2158 /* Same invariants, plus one additional:
2159 * - first->vlan != vlan.
2160 */
2161 while (last[-1].vlan != vlan) {
2162 if (--last == first) {
2163 return;
2164 }
2165 }
2166
2167 /* Same invariants, plus one additional:
2168 * - last[-1].vlan == vlan.*/
2169 swap_dst(first++, --last);
2170 }
2171}
2172
2173static int
2174mirror_mask_ffs(mirror_mask_t mask)
2175{
2176 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
2177 return ffs(mask);
2178}
2179
2180static bool
2181dst_is_duplicate(const struct dst *dsts, size_t n_dsts,
2182 const struct dst *test)
2183{
2184 size_t i;
2185 for (i = 0; i < n_dsts; i++) {
2186 if (dsts[i].vlan == test->vlan && dsts[i].dp_ifidx == test->dp_ifidx) {
2187 return true;
2188 }
2189 }
2190 return false;
2191}
2192
2193static bool
2194port_trunks_vlan(const struct port *port, uint16_t vlan)
2195{
3e9c481c
BP
2196 return (port->vlan < 0
2197 && (!port->trunks || bitmap_is_set(port->trunks, vlan)));
064af421
BP
2198}
2199
2200static bool
2201port_includes_vlan(const struct port *port, uint16_t vlan)
2202{
2203 return vlan == port->vlan || port_trunks_vlan(port, vlan);
2204}
2205
2206static size_t
ae412e7d 2207compose_dsts(const struct bridge *br, const struct flow *flow, uint16_t vlan,
064af421 2208 const struct port *in_port, const struct port *out_port,
6a07af36 2209 struct dst dsts[], tag_type *tags, uint16_t *nf_output_iface)
064af421
BP
2210{
2211 mirror_mask_t mirrors = in_port->src_mirrors;
2212 struct dst *dst = dsts;
2213 size_t i;
2214
064af421
BP
2215 if (out_port == FLOOD_PORT) {
2216 /* XXX use ODP_FLOOD if no vlans or bonding. */
2217 /* XXX even better, define each VLAN as a datapath port group */
2218 for (i = 0; i < br->n_ports; i++) {
2219 struct port *port = br->ports[i];
2220 if (port != in_port && port_includes_vlan(port, vlan)
2221 && !port->is_mirror_output_port
2222 && set_dst(dst, flow, in_port, port, tags)) {
2223 mirrors |= port->dst_mirrors;
2224 dst++;
2225 }
2226 }
6a07af36 2227 *nf_output_iface = NF_OUT_FLOOD;
064af421 2228 } else if (out_port && set_dst(dst, flow, in_port, out_port, tags)) {
6a07af36 2229 *nf_output_iface = dst->dp_ifidx;
064af421
BP
2230 mirrors |= out_port->dst_mirrors;
2231 dst++;
2232 }
2233
2234 while (mirrors) {
2235 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
2236 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
2237 if (m->out_port) {
2238 if (set_dst(dst, flow, in_port, m->out_port, tags)
2239 && !dst_is_duplicate(dsts, dst - dsts, dst)) {
2240 dst++;
2241 }
2242 } else {
2243 for (i = 0; i < br->n_ports; i++) {
2244 struct port *port = br->ports[i];
2245 if (port_includes_vlan(port, m->out_vlan)
274de4d2 2246 && set_dst(dst, flow, in_port, port, tags))
064af421 2247 {
43aa5f47
JG
2248 int flow_vlan;
2249
064af421
BP
2250 if (port->vlan < 0) {
2251 dst->vlan = m->out_vlan;
2252 }
274de4d2
BP
2253 if (dst_is_duplicate(dsts, dst - dsts, dst)) {
2254 continue;
2255 }
43aa5f47
JG
2256
2257 /* Use the vlan tag on the original flow instead of
2258 * the one passed in the vlan parameter. This ensures
2259 * that we compare the vlan from before any implicit
2260 * tagging tags place. This is necessary because
2261 * dst->vlan is the final vlan, after removing implicit
2262 * tags. */
2263 flow_vlan = ntohs(flow->dl_vlan);
2264 if (flow_vlan == 0) {
2265 flow_vlan = OFP_VLAN_NONE;
2266 }
2267 if (port == in_port && dst->vlan == flow_vlan) {
064af421
BP
2268 /* Don't send out input port on same VLAN. */
2269 continue;
2270 }
2271 dst++;
2272 }
2273 }
2274 }
2275 }
2276 mirrors &= mirrors - 1;
2277 }
2278
2279 partition_dsts(dsts, dst - dsts, ntohs(flow->dl_vlan));
2280 return dst - dsts;
2281}
2282
67a4917b 2283static void OVS_UNUSED
064af421
BP
2284print_dsts(const struct dst *dsts, size_t n)
2285{
2286 for (; n--; dsts++) {
2287 printf(">p%"PRIu16, dsts->dp_ifidx);
2288 if (dsts->vlan != OFP_VLAN_NONE) {
2289 printf("v%"PRIu16, dsts->vlan);
2290 }
2291 }
2292}
2293
2294static void
ae412e7d 2295compose_actions(struct bridge *br, const struct flow *flow, uint16_t vlan,
064af421 2296 const struct port *in_port, const struct port *out_port,
6a07af36
JG
2297 tag_type *tags, struct odp_actions *actions,
2298 uint16_t *nf_output_iface)
064af421
BP
2299{
2300 struct dst dsts[DP_MAX_PORTS * (MAX_MIRRORS + 1)];
2301 size_t n_dsts;
2302 const struct dst *p;
2303 uint16_t cur_vlan;
2304
6a07af36
JG
2305 n_dsts = compose_dsts(br, flow, vlan, in_port, out_port, dsts, tags,
2306 nf_output_iface);
064af421
BP
2307
2308 cur_vlan = ntohs(flow->dl_vlan);
2309 for (p = dsts; p < &dsts[n_dsts]; p++) {
2310 union odp_action *a;
2311 if (p->vlan != cur_vlan) {
2312 if (p->vlan == OFP_VLAN_NONE) {
2313 odp_actions_add(actions, ODPAT_STRIP_VLAN);
2314 } else {
26233bb4
BP
2315 a = odp_actions_add(actions, ODPAT_SET_DL_TCI);
2316 a->dl_tci.tci = htons(p->vlan & VLAN_VID_MASK);
2317 a->dl_tci.mask = htons(VLAN_VID_MASK);
064af421
BP
2318 }
2319 cur_vlan = p->vlan;
2320 }
2321 a = odp_actions_add(actions, ODPAT_OUTPUT);
2322 a->output.port = p->dp_ifidx;
2323 }
2324}
2325
e96a4d80
JG
2326/* Returns the effective vlan of a packet, taking into account both the
2327 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
2328 * the packet is untagged and -1 indicates it has an invalid header and
2329 * should be dropped. */
ae412e7d 2330static int flow_get_vlan(struct bridge *br, const struct flow *flow,
e96a4d80
JG
2331 struct port *in_port, bool have_packet)
2332{
2333 /* Note that dl_vlan of 0 and of OFP_VLAN_NONE both mean that the packet
2334 * belongs to VLAN 0, so we should treat both cases identically. (In the
2335 * former case, the packet has an 802.1Q header that specifies VLAN 0,
2336 * presumably to allow a priority to be specified. In the latter case, the
2337 * packet does not have any 802.1Q header.) */
2338 int vlan = ntohs(flow->dl_vlan);
2339 if (vlan == OFP_VLAN_NONE) {
2340 vlan = 0;
2341 }
2342 if (in_port->vlan >= 0) {
2343 if (vlan) {
2344 /* XXX support double tagging? */
2345 if (have_packet) {
2346 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2347 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
2348 "packet received on port %s configured with "
2349 "implicit VLAN %"PRIu16,
2350 br->name, ntohs(flow->dl_vlan),
2351 in_port->name, in_port->vlan);
2352 }
2353 return -1;
2354 }
2355 vlan = in_port->vlan;
2356 } else {
2357 if (!port_includes_vlan(in_port, vlan)) {
2358 if (have_packet) {
2359 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2360 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2361 "packet received on port %s not configured for "
2362 "trunking VLAN %d",
2363 br->name, vlan, in_port->name, vlan);
2364 }
2365 return -1;
2366 }
2367 }
2368
2369 return vlan;
2370}
2371
7febb910
JG
2372/* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
2373 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
2374 * indicate this; newer upstream kernels use gratuitous ARP requests. */
2375static bool
ae412e7d 2376is_gratuitous_arp(const struct flow *flow)
7febb910
JG
2377{
2378 return (flow->dl_type == htons(ETH_TYPE_ARP)
2379 && eth_addr_is_broadcast(flow->dl_dst)
2380 && (flow->nw_proto == ARP_OP_REPLY
2381 || (flow->nw_proto == ARP_OP_REQUEST
2382 && flow->nw_src == flow->nw_dst)));
2383}
2384
e96a4d80 2385static void
ae412e7d 2386update_learning_table(struct bridge *br, const struct flow *flow, int vlan,
e96a4d80
JG
2387 struct port *in_port)
2388{
7febb910
JG
2389 enum grat_arp_lock_type lock_type;
2390 tag_type rev_tag;
2391
2392 /* We don't want to learn from gratuitous ARP packets that are reflected
2393 * back over bond slaves so we lock the learning table. */
2394 lock_type = !is_gratuitous_arp(flow) ? GRAT_ARP_LOCK_NONE :
2395 (in_port->n_ifaces == 1) ? GRAT_ARP_LOCK_SET :
2396 GRAT_ARP_LOCK_CHECK;
2397
2398 rev_tag = mac_learning_learn(br->ml, flow->dl_src, vlan, in_port->port_idx,
2399 lock_type);
e96a4d80
JG
2400 if (rev_tag) {
2401 /* The log messages here could actually be useful in debugging,
2402 * so keep the rate limit relatively high. */
2403 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2404 300);
2405 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2406 "on port %s in VLAN %d",
2407 br->name, ETH_ADDR_ARGS(flow->dl_src),
2408 in_port->name, vlan);
2409 ofproto_revalidate(br->ofproto, rev_tag);
2410 }
2411}
2412
14a34d00
BP
2413/* Determines whether packets in 'flow' within 'br' should be forwarded or
2414 * dropped. Returns true if they may be forwarded, false if they should be
2415 * dropped.
2416 *
2417 * If 'have_packet' is true, it indicates that the caller is processing a
2418 * received packet. If 'have_packet' is false, then the caller is just
2419 * revalidating an existing flow because configuration has changed. Either
2420 * way, 'have_packet' only affects logging (there is no point in logging errors
2421 * during revalidation).
2422 *
2423 * Sets '*in_portp' to the input port. This will be a null pointer if
2424 * flow->in_port does not designate a known input port (in which case
2425 * is_admissible() returns false).
2426 *
2427 * When returning true, sets '*vlanp' to the effective VLAN of the input
2428 * packet, as returned by flow_get_vlan().
2429 *
2430 * May also add tags to '*tags', although the current implementation only does
2431 * so in one special case.
2432 */
064af421 2433static bool
ae412e7d 2434is_admissible(struct bridge *br, const struct flow *flow, bool have_packet,
14a34d00 2435 tag_type *tags, int *vlanp, struct port **in_portp)
064af421
BP
2436{
2437 struct iface *in_iface;
2438 struct port *in_port;
064af421
BP
2439 int vlan;
2440
2441 /* Find the interface and port structure for the received packet. */
2442 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2443 if (!in_iface) {
2444 /* No interface? Something fishy... */
14a34d00 2445 if (have_packet) {
064af421
BP
2446 /* Odd. A few possible reasons here:
2447 *
2448 * - We deleted an interface but there are still a few packets
2449 * queued up from it.
2450 *
2451 * - Someone externally added an interface (e.g. with "ovs-dpctl
2452 * add-if") that we don't know about.
2453 *
2454 * - Packet arrived on the local port but the local port is not
2455 * one of our bridge ports.
2456 */
2457 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2458
2459 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
d295e8e9 2460 "interface %"PRIu16, br->name, flow->in_port);
064af421
BP
2461 }
2462
14a34d00
BP
2463 *in_portp = NULL;
2464 return false;
064af421 2465 }
14a34d00
BP
2466 *in_portp = in_port = in_iface->port;
2467 *vlanp = vlan = flow_get_vlan(br, flow, in_port, have_packet);
e96a4d80 2468 if (vlan < 0) {
14a34d00 2469 return false;
064af421
BP
2470 }
2471
064af421
BP
2472 /* Drop frames for reserved multicast addresses. */
2473 if (eth_addr_is_reserved(flow->dl_dst)) {
14a34d00 2474 return false;
064af421
BP
2475 }
2476
2477 /* Drop frames on ports reserved for mirroring. */
2478 if (in_port->is_mirror_output_port) {
14a34d00 2479 if (have_packet) {
f925807d
BP
2480 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2481 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2482 "%s, which is reserved exclusively for mirroring",
2483 br->name, in_port->name);
2484 }
14a34d00 2485 return false;
064af421
BP
2486 }
2487
3a55ef14
JG
2488 /* Packets received on bonds need special attention to avoid duplicates. */
2489 if (in_port->n_ifaces > 1) {
2490 int src_idx;
7febb910 2491 bool is_grat_arp_locked;
3a55ef14
JG
2492
2493 if (eth_addr_is_multicast(flow->dl_dst)) {
2494 *tags |= in_port->active_iface_tag;
2495 if (in_port->active_iface != in_iface->port_ifidx) {
2496 /* Drop all multicast packets on inactive slaves. */
14a34d00 2497 return false;
c93b1d6a 2498 }
064af421 2499 }
3a55ef14
JG
2500
2501 /* Drop all packets for which we have learned a different input
2502 * port, because we probably sent the packet on one slave and got
5d0ae138 2503 * it back on the other. Gratuitous ARP packets are an exception
7febb910
JG
2504 * to this rule: the host has moved to another switch. The exception
2505 * to the exception is if we locked the learning table to avoid
2506 * reflections on bond slaves. If this is the case, just drop the
2507 * packet now. */
2508 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan,
2509 &is_grat_arp_locked);
3a55ef14 2510 if (src_idx != -1 && src_idx != in_port->port_idx &&
7febb910 2511 (!is_gratuitous_arp(flow) || is_grat_arp_locked)) {
14a34d00 2512 return false;
3a55ef14 2513 }
064af421
BP
2514 }
2515
14a34d00
BP
2516 return true;
2517}
2518
2519/* If the composed actions may be applied to any packet in the given 'flow',
2520 * returns true. Otherwise, the actions should only be applied to 'packet', or
2521 * not at all, if 'packet' was NULL. */
2522static bool
ae412e7d 2523process_flow(struct bridge *br, const struct flow *flow,
14a34d00
BP
2524 const struct ofpbuf *packet, struct odp_actions *actions,
2525 tag_type *tags, uint16_t *nf_output_iface)
2526{
2527 struct port *in_port;
2528 struct port *out_port;
2529 int vlan;
2530 int out_port_idx;
2531
2532 /* Check whether we should drop packets in this flow. */
2533 if (!is_admissible(br, flow, packet != NULL, tags, &vlan, &in_port)) {
2534 out_port = NULL;
2535 goto done;
2536 }
2537
93dfc067
JG
2538 /* Learn source MAC (but don't try to learn from revalidation). */
2539 if (packet) {
e96a4d80 2540 update_learning_table(br, flow, vlan, in_port);
93dfc067
JG
2541 }
2542
2543 /* Determine output port. */
7febb910
JG
2544 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan, tags,
2545 NULL);
93dfc067
JG
2546 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2547 out_port = br->ports[out_port_idx];
e96a4d80 2548 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
93dfc067 2549 /* If we are revalidating but don't have a learning entry then
e96a4d80
JG
2550 * eject the flow. Installing a flow that floods packets opens
2551 * up a window of time where we could learn from a packet reflected
2552 * on a bond and blackhole packets before the learning table is
2553 * updated to reflect the correct port. */
93dfc067 2554 return false;
1609aa03
BP
2555 } else {
2556 out_port = FLOOD_PORT;
064af421
BP
2557 }
2558
ba54bf4f
BP
2559 /* Don't send packets out their input ports. */
2560 if (in_port == out_port) {
064af421
BP
2561 out_port = NULL;
2562 }
2563
2564done:
14a34d00
BP
2565 if (in_port) {
2566 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2567 nf_output_iface);
2568 }
064af421 2569
69d60f9f 2570 return true;
064af421
BP
2571}
2572
064af421 2573static bool
ae412e7d 2574bridge_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
6a07af36
JG
2575 struct odp_actions *actions, tag_type *tags,
2576 uint16_t *nf_output_iface, void *br_)
064af421
BP
2577{
2578 struct bridge *br = br_;
2579
064af421 2580 COVERAGE_INC(bridge_process_flow);
26d79bf2 2581
6a07af36 2582 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
064af421
BP
2583}
2584
2585static void
ae412e7d 2586bridge_account_flow_ofhook_cb(const struct flow *flow, tag_type tags,
064af421
BP
2587 const union odp_action *actions,
2588 size_t n_actions, unsigned long long int n_bytes,
2589 void *br_)
2590{
2591 struct bridge *br = br_;
2592 const union odp_action *a;
db0e2ad1 2593 struct port *in_port;
26d79bf2 2594 tag_type dummy = 0;
db0e2ad1 2595 int vlan;
064af421 2596
26d79bf2
BP
2597 /* Feed information from the active flows back into the learning table to
2598 * ensure that table is always in sync with what is actually flowing
2599 * through the datapath.
2600 *
2601 * We test that 'tags' is nonzero to ensure that only flows that include an
2602 * OFPP_NORMAL action are used for learning. This works because
2603 * bridge_normal_ofhook_cb() always sets a nonzero tag value. */
2604 if (tags && is_admissible(br, flow, false, &dummy, &vlan, &in_port)) {
db0e2ad1 2605 update_learning_table(br, flow, vlan, in_port);
e96a4d80
JG
2606 }
2607
26d79bf2 2608 /* Account for bond slave utilization. */
064af421
BP
2609 if (!br->has_bonded_ports) {
2610 return;
2611 }
064af421
BP
2612 for (a = actions; a < &actions[n_actions]; a++) {
2613 if (a->type == ODPAT_OUTPUT) {
e96a4d80
JG
2614 struct port *out_port = port_from_dp_ifidx(br, a->output.port);
2615 if (out_port && out_port->n_ifaces >= 2) {
2616 struct bond_entry *e = lookup_bond_entry(out_port,
2617 flow->dl_src);
064af421
BP
2618 e->tx_bytes += n_bytes;
2619 }
2620 }
2621 }
2622}
2623
2624static void
2625bridge_account_checkpoint_ofhook_cb(void *br_)
2626{
2627 struct bridge *br = br_;
c8143c88 2628 long long int now;
064af421
BP
2629 size_t i;
2630
2631 if (!br->has_bonded_ports) {
2632 return;
2633 }
2634
c8143c88 2635 now = time_msec();
064af421
BP
2636 for (i = 0; i < br->n_ports; i++) {
2637 struct port *port = br->ports[i];
c8143c88
BP
2638 if (port->n_ifaces > 1 && now >= port->bond_next_rebalance) {
2639 port->bond_next_rebalance = now + port->bond_rebalance_interval;
064af421
BP
2640 bond_rebalance_port(port);
2641 }
2642 }
2643}
2644
2645static struct ofhooks bridge_ofhooks = {
064af421
BP
2646 bridge_normal_ofhook_cb,
2647 bridge_account_flow_ofhook_cb,
2648 bridge_account_checkpoint_ofhook_cb,
2649};
2650\f
2303f3b2
BP
2651/* Bonding functions. */
2652
064af421
BP
2653/* Statistics for a single interface on a bonded port, used for load-based
2654 * bond rebalancing. */
2655struct slave_balance {
2656 struct iface *iface; /* The interface. */
2657 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
2658
2659 /* All the "bond_entry"s that are assigned to this interface, in order of
2660 * increasing tx_bytes. */
2661 struct bond_entry **hashes;
2662 size_t n_hashes;
2663};
2664
2665/* Sorts pointers to pointers to bond_entries in ascending order by the
2666 * interface to which they are assigned, and within a single interface in
2667 * ascending order of bytes transmitted. */
2668static int
2669compare_bond_entries(const void *a_, const void *b_)
2670{
2671 const struct bond_entry *const *ap = a_;
2672 const struct bond_entry *const *bp = b_;
2673 const struct bond_entry *a = *ap;
2674 const struct bond_entry *b = *bp;
2675 if (a->iface_idx != b->iface_idx) {
2676 return a->iface_idx > b->iface_idx ? 1 : -1;
2677 } else if (a->tx_bytes != b->tx_bytes) {
2678 return a->tx_bytes > b->tx_bytes ? 1 : -1;
2679 } else {
2680 return 0;
2681 }
2682}
2683
2684/* Sorts slave_balances so that enabled ports come first, and otherwise in
2685 * *descending* order by number of bytes transmitted. */
2686static int
2687compare_slave_balance(const void *a_, const void *b_)
2688{
2689 const struct slave_balance *a = a_;
2690 const struct slave_balance *b = b_;
2691 if (a->iface->enabled != b->iface->enabled) {
2692 return a->iface->enabled ? -1 : 1;
2693 } else if (a->tx_bytes != b->tx_bytes) {
2694 return a->tx_bytes > b->tx_bytes ? -1 : 1;
2695 } else {
2696 return 0;
2697 }
2698}
2699
2700static void
2701swap_bals(struct slave_balance *a, struct slave_balance *b)
2702{
2703 struct slave_balance tmp = *a;
2704 *a = *b;
2705 *b = tmp;
2706}
2707
2708/* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
2709 * given that 'p' (and only 'p') might be in the wrong location.
2710 *
2711 * This function invalidates 'p', since it might now be in a different memory
2712 * location. */
2713static void
2714resort_bals(struct slave_balance *p,
2715 struct slave_balance bals[], size_t n_bals)
2716{
2717 if (n_bals > 1) {
2718 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
2719 swap_bals(p, p - 1);
2720 }
2721 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
2722 swap_bals(p, p + 1);
2723 }
2724 }
2725}
2726
2727static void
2728log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
2729{
2730 if (VLOG_IS_DBG_ENABLED()) {
2731 struct ds ds = DS_EMPTY_INITIALIZER;
2732 const struct slave_balance *b;
2733
2734 for (b = bals; b < bals + n_bals; b++) {
2735 size_t i;
2736
2737 if (b > bals) {
2738 ds_put_char(&ds, ',');
2739 }
2740 ds_put_format(&ds, " %s %"PRIu64"kB",
2741 b->iface->name, b->tx_bytes / 1024);
2742
2743 if (!b->iface->enabled) {
2744 ds_put_cstr(&ds, " (disabled)");
2745 }
2746 if (b->n_hashes > 0) {
2747 ds_put_cstr(&ds, " (");
2748 for (i = 0; i < b->n_hashes; i++) {
2749 const struct bond_entry *e = b->hashes[i];
2750 if (i > 0) {
2751 ds_put_cstr(&ds, " + ");
2752 }
2753 ds_put_format(&ds, "h%td: %"PRIu64"kB",
2754 e - port->bond_hash, e->tx_bytes / 1024);
2755 }
2756 ds_put_cstr(&ds, ")");
2757 }
2758 }
2759 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
2760 ds_destroy(&ds);
2761 }
2762}
2763
2764/* Shifts 'hash' from 'from' to 'to' within 'port'. */
2765static void
2766bond_shift_load(struct slave_balance *from, struct slave_balance *to,
5422a9e1 2767 int hash_idx)
064af421 2768{
5422a9e1 2769 struct bond_entry *hash = from->hashes[hash_idx];
064af421
BP
2770 struct port *port = from->iface->port;
2771 uint64_t delta = hash->tx_bytes;
2772
2773 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
2774 "from %s to %s (now carrying %"PRIu64"kB and "
2775 "%"PRIu64"kB load, respectively)",
2776 port->name, delta / 1024, hash - port->bond_hash,
2777 from->iface->name, to->iface->name,
2778 (from->tx_bytes - delta) / 1024,
2779 (to->tx_bytes + delta) / 1024);
2780
2781 /* Delete element from from->hashes.
2782 *
2783 * We don't bother to add the element to to->hashes because not only would
2784 * it require more work, the only purpose it would be to allow that hash to
2785 * be migrated to another slave in this rebalancing run, and there is no
2786 * point in doing that. */
5422a9e1 2787 if (hash_idx == 0) {
064af421
BP
2788 from->hashes++;
2789 } else {
5422a9e1
JG
2790 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
2791 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
064af421
BP
2792 }
2793 from->n_hashes--;
2794
2795 /* Shift load away from 'from' to 'to'. */
2796 from->tx_bytes -= delta;
2797 to->tx_bytes += delta;
2798
2799 /* Arrange for flows to be revalidated. */
2800 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
2801 hash->iface_idx = to->iface->port_ifidx;
2802 hash->iface_tag = tag_create_random();
064af421
BP
2803}
2804
2805static void
2806bond_rebalance_port(struct port *port)
2807{
2808 struct slave_balance bals[DP_MAX_PORTS];
2809 size_t n_bals;
2810 struct bond_entry *hashes[BOND_MASK + 1];
2811 struct slave_balance *b, *from, *to;
2812 struct bond_entry *e;
2813 size_t i;
2814
2815 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
2816 * descending order of tx_bytes, so that bals[0] represents the most
2817 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
2818 * loaded slave.
2819 *
2820 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
2821 * array for each slave_balance structure, we sort our local array of
2822 * hashes in order by slave, so that all of the hashes for a given slave
2823 * become contiguous in memory, and then we point each 'hashes' members of
2824 * a slave_balance structure to the start of a contiguous group. */
2825 n_bals = port->n_ifaces;
2826 for (b = bals; b < &bals[n_bals]; b++) {
2827 b->iface = port->ifaces[b - bals];
2828 b->tx_bytes = 0;
2829 b->hashes = NULL;
2830 b->n_hashes = 0;
2831 }
2832 for (i = 0; i <= BOND_MASK; i++) {
2833 hashes[i] = &port->bond_hash[i];
2834 }
2835 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
2836 for (i = 0; i <= BOND_MASK; i++) {
2837 e = hashes[i];
2838 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
2839 b = &bals[e->iface_idx];
2840 b->tx_bytes += e->tx_bytes;
2841 if (!b->hashes) {
2842 b->hashes = &hashes[i];
2843 }
2844 b->n_hashes++;
2845 }
2846 }
2847 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
2848 log_bals(bals, n_bals, port);
2849
2850 /* Discard slaves that aren't enabled (which were sorted to the back of the
2851 * array earlier). */
2852 while (!bals[n_bals - 1].iface->enabled) {
2853 n_bals--;
2854 if (!n_bals) {
2855 return;
2856 }
2857 }
2858
2859 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
2860 to = &bals[n_bals - 1];
2861 for (from = bals; from < to; ) {
2862 uint64_t overload = from->tx_bytes - to->tx_bytes;
2863 if (overload < to->tx_bytes >> 5 || overload < 100000) {
2864 /* The extra load on 'from' (and all less-loaded slaves), compared
2865 * to that of 'to' (the least-loaded slave), is less than ~3%, or
2866 * it is less than ~1Mbps. No point in rebalancing. */
2867 break;
2868 } else if (from->n_hashes == 1) {
2869 /* 'from' only carries a single MAC hash, so we can't shift any
2870 * load away from it, even though we want to. */
2871 from++;
2872 } else {
2873 /* 'from' is carrying significantly more load than 'to', and that
2874 * load is split across at least two different hashes. Pick a hash
2875 * to migrate to 'to' (the least-loaded slave), given that doing so
5422a9e1
JG
2876 * must decrease the ratio of the load on the two slaves by at
2877 * least 0.1.
064af421
BP
2878 *
2879 * The sort order we use means that we prefer to shift away the
2880 * smallest hashes instead of the biggest ones. There is little
2881 * reason behind this decision; we could use the opposite sort
2882 * order to shift away big hashes ahead of small ones. */
5422a9e1 2883 bool order_swapped;
064af421
BP
2884
2885 for (i = 0; i < from->n_hashes; i++) {
5422a9e1 2886 double old_ratio, new_ratio;
064af421 2887 uint64_t delta = from->hashes[i]->tx_bytes;
5422a9e1
JG
2888
2889 if (delta == 0 || from->tx_bytes - delta == 0) {
2890 /* Pointless move. */
2891 continue;
2892 }
2893
2894 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
2895
2896 if (to->tx_bytes == 0) {
2897 /* Nothing on the new slave, move it. */
2898 break;
2899 }
2900
2901 old_ratio = (double)from->tx_bytes / to->tx_bytes;
2902 new_ratio = (double)(from->tx_bytes - delta) /
2903 (to->tx_bytes + delta);
2904
2905 if (new_ratio == 0) {
2906 /* Should already be covered but check to prevent division
2907 * by zero. */
2908 continue;
2909 }
2910
2911 if (new_ratio < 1) {
2912 new_ratio = 1 / new_ratio;
2913 }
2914
2915 if (old_ratio - new_ratio > 0.1) {
2916 /* Would decrease the ratio, move it. */
064af421
BP
2917 break;
2918 }
2919 }
2920 if (i < from->n_hashes) {
5422a9e1
JG
2921 bond_shift_load(from, to, i);
2922 port->bond_compat_is_stale = true;
2923
2924 /* If the result of the migration changed the relative order of
2925 * 'from' and 'to' swap them back to maintain invariants. */
2926 if (order_swapped) {
2927 swap_bals(from, to);
2928 }
064af421
BP
2929
2930 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
2931 * point to different slave_balance structures. It is only
2932 * valid to do these two operations in a row at all because we
2933 * know that 'from' will not move past 'to' and vice versa. */
2934 resort_bals(from, bals, n_bals);
2935 resort_bals(to, bals, n_bals);
2936 } else {
2937 from++;
2938 }
2939 }
2940 }
2941
2942 /* Implement exponentially weighted moving average. A weight of 1/2 causes
2943 * historical data to decay to <1% in 7 rebalancing runs. */
2944 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
2945 e->tx_bytes /= 2;
2946 }
2947}
2303f3b2
BP
2948
2949static void
2950bond_send_learning_packets(struct port *port)
2951{
2952 struct bridge *br = port->bridge;
2953 struct mac_entry *e;
2954 struct ofpbuf packet;
2955 int error, n_packets, n_errors;
2956
93dfc067 2957 if (!port->n_ifaces || port->active_iface < 0) {
2303f3b2
BP
2958 return;
2959 }
2960
2961 ofpbuf_init(&packet, 128);
2962 error = n_packets = n_errors = 0;
4e8e4213 2963 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
2303f3b2 2964 union ofp_action actions[2], *a;
2303f3b2
BP
2965 uint16_t dp_ifidx;
2966 tag_type tags = 0;
ae412e7d 2967 struct flow flow;
2303f3b2
BP
2968 int retval;
2969
2970 if (e->port == port->port_idx
2971 || !choose_output_iface(port, e->mac, &dp_ifidx, &tags)) {
2972 continue;
2973 }
2974
2303f3b2
BP
2975 /* Compose actions. */
2976 memset(actions, 0, sizeof actions);
2977 a = actions;
2978 if (e->vlan) {
2979 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
2980 a->vlan_vid.len = htons(sizeof *a);
2981 a->vlan_vid.vlan_vid = htons(e->vlan);
2982 a++;
2983 }
2984 a->output.type = htons(OFPAT_OUTPUT);
2985 a->output.len = htons(sizeof *a);
2986 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
2987 a++;
2988
2989 /* Send packet. */
2990 n_packets++;
b9e8b45a
BP
2991 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
2992 e->mac);
659586ef 2993 flow_extract(&packet, 0, ODPP_NONE, &flow);
2303f3b2
BP
2994 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
2995 &packet);
2996 if (retval) {
2997 error = retval;
2998 n_errors++;
2999 }
3000 }
3001 ofpbuf_uninit(&packet);
3002
3003 if (n_errors) {
3004 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3005 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3006 "packets, last error was: %s",
3007 port->name, n_errors, n_packets, strerror(error));
3008 } else {
3009 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3010 port->name, n_packets);
3011 }
3012}
064af421 3013\f
da285df4
BP
3014/* Bonding unixctl user interface functions. */
3015
3016static void
8ca79daa 3017bond_unixctl_list(struct unixctl_conn *conn,
c69ee87c 3018 const char *args OVS_UNUSED, void *aux OVS_UNUSED)
da285df4
BP
3019{
3020 struct ds ds = DS_EMPTY_INITIALIZER;
3021 const struct bridge *br;
3022
3023 ds_put_cstr(&ds, "bridge\tbond\tslaves\n");
3024
4e8e4213 3025 LIST_FOR_EACH (br, node, &all_bridges) {
da285df4
BP
3026 size_t i;
3027
3028 for (i = 0; i < br->n_ports; i++) {
3029 const struct port *port = br->ports[i];
3030 if (port->n_ifaces > 1) {
3031 size_t j;
3032
3033 ds_put_format(&ds, "%s\t%s\t", br->name, port->name);
3034 for (j = 0; j < port->n_ifaces; j++) {
3035 const struct iface *iface = port->ifaces[j];
3036 if (j) {
3037 ds_put_cstr(&ds, ", ");
3038 }
3039 ds_put_cstr(&ds, iface->name);
3040 }
3041 ds_put_char(&ds, '\n');
3042 }
3043 }
3044 }
3045 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3046 ds_destroy(&ds);
3047}
3048
3049static struct port *
3050bond_find(const char *name)
3051{
3052 const struct bridge *br;
3053
4e8e4213 3054 LIST_FOR_EACH (br, node, &all_bridges) {
da285df4
BP
3055 size_t i;
3056
3057 for (i = 0; i < br->n_ports; i++) {
3058 struct port *port = br->ports[i];
3059 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
3060 return port;
3061 }
3062 }
3063 }
3064 return NULL;
3065}
3066
3067static void
8ca79daa 3068bond_unixctl_show(struct unixctl_conn *conn,
c69ee87c 3069 const char *args, void *aux OVS_UNUSED)
da285df4
BP
3070{
3071 struct ds ds = DS_EMPTY_INITIALIZER;
3072 const struct port *port;
3073 size_t j;
3074
3075 port = bond_find(args);
3076 if (!port) {
3077 unixctl_command_reply(conn, 501, "no such bond");
3078 return;
3079 }
3080
3081 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
3082 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
3083 ds_put_format(&ds, "next rebalance: %lld ms\n",
c8143c88 3084 port->bond_next_rebalance - time_msec());
da285df4
BP
3085 for (j = 0; j < port->n_ifaces; j++) {
3086 const struct iface *iface = port->ifaces[j];
3087 struct bond_entry *be;
3088
3089 /* Basic info. */
3090 ds_put_format(&ds, "slave %s: %s\n",
3091 iface->name, iface->enabled ? "enabled" : "disabled");
3092 if (j == port->active_iface) {
3093 ds_put_cstr(&ds, "\tactive slave\n");
3094 }
3095 if (iface->delay_expires != LLONG_MAX) {
3096 ds_put_format(&ds, "\t%s expires in %lld ms\n",
3097 iface->enabled ? "downdelay" : "updelay",
3098 iface->delay_expires - time_msec());
3099 }
3100
3101 /* Hashes. */
3102 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
3103 int hash = be - port->bond_hash;
3104 struct mac_entry *me;
3105
3106 if (be->iface_idx != j) {
3107 continue;
3108 }
3109
2886875a 3110 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
da285df4
BP
3111 hash, be->tx_bytes / 1024);
3112
3113 /* MACs. */
4e8e4213 3114 LIST_FOR_EACH (me, lru_node, &port->bridge->ml->lrus) {
da285df4
BP
3115 uint16_t dp_ifidx;
3116 tag_type tags = 0;
3117 if (bond_hash(me->mac) == hash
3118 && me->port != port->port_idx
3119 && choose_output_iface(port, me->mac, &dp_ifidx, &tags)
3120 && dp_ifidx == iface->dp_ifidx)
3121 {
3122 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3123 ETH_ADDR_ARGS(me->mac));
3124 }
3125 }
3126 }
3127 }
3128 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3129 ds_destroy(&ds);
3130}
3131
3132static void
8ca79daa 3133bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
c69ee87c 3134 void *aux OVS_UNUSED)
da285df4
BP
3135{
3136 char *args = (char *) args_;
3137 char *save_ptr = NULL;
3138 char *bond_s, *hash_s, *slave_s;
3139 uint8_t mac[ETH_ADDR_LEN];
3140 struct port *port;
3141 struct iface *iface;
3142 struct bond_entry *entry;
3143 int hash;
3144
3145 bond_s = strtok_r(args, " ", &save_ptr);
3146 hash_s = strtok_r(NULL, " ", &save_ptr);
3147 slave_s = strtok_r(NULL, " ", &save_ptr);
3148 if (!slave_s) {
3149 unixctl_command_reply(conn, 501,
3150 "usage: bond/migrate BOND HASH SLAVE");
3151 return;
3152 }
3153
3154 port = bond_find(bond_s);
3155 if (!port) {
3156 unixctl_command_reply(conn, 501, "no such bond");
3157 return;
3158 }
3159
eaa71334
BP
3160 if (sscanf(hash_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
3161 == ETH_ADDR_SCAN_COUNT) {
da285df4
BP
3162 hash = bond_hash(mac);
3163 } else if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
3164 hash = atoi(hash_s) & BOND_MASK;
3165 } else {
3166 unixctl_command_reply(conn, 501, "bad hash");
3167 return;
3168 }
3169
3170 iface = port_lookup_iface(port, slave_s);
3171 if (!iface) {
3172 unixctl_command_reply(conn, 501, "no such slave");
3173 return;
3174 }
3175
3176 if (!iface->enabled) {
3177 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3178 return;
3179 }
3180
3181 entry = &port->bond_hash[hash];
3182 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3183 entry->iface_idx = iface->port_ifidx;
3184 entry->iface_tag = tag_create_random();
85c74638 3185 port->bond_compat_is_stale = true;
da285df4
BP
3186 unixctl_command_reply(conn, 200, "migrated");
3187}
3188
3189static void
8ca79daa 3190bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
c69ee87c 3191 void *aux OVS_UNUSED)
da285df4
BP
3192{
3193 char *args = (char *) args_;
3194 char *save_ptr = NULL;
3195 char *bond_s, *slave_s;
3196 struct port *port;
3197 struct iface *iface;
3198
3199 bond_s = strtok_r(args, " ", &save_ptr);
3200 slave_s = strtok_r(NULL, " ", &save_ptr);
3201 if (!slave_s) {
3202 unixctl_command_reply(conn, 501,
3203 "usage: bond/set-active-slave BOND SLAVE");
3204 return;
3205 }
3206
3207 port = bond_find(bond_s);
3208 if (!port) {
3209 unixctl_command_reply(conn, 501, "no such bond");
3210 return;
3211 }
3212
3213 iface = port_lookup_iface(port, slave_s);
3214 if (!iface) {
3215 unixctl_command_reply(conn, 501, "no such slave");
3216 return;
3217 }
3218
3219 if (!iface->enabled) {
3220 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
3221 return;
3222 }
3223
3224 if (port->active_iface != iface->port_ifidx) {
3225 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3226 port->active_iface = iface->port_ifidx;
3227 port->active_iface_tag = tag_create_random();
3228 VLOG_INFO("port %s: active interface is now %s",
3229 port->name, iface->name);
3230 bond_send_learning_packets(port);
3231 unixctl_command_reply(conn, 200, "done");
3232 } else {
3233 unixctl_command_reply(conn, 200, "no change");
3234 }
3235}
3236
3237static void
3238enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
3239{
3240 char *args = (char *) args_;
3241 char *save_ptr = NULL;
3242 char *bond_s, *slave_s;
3243 struct port *port;
3244 struct iface *iface;
3245
3246 bond_s = strtok_r(args, " ", &save_ptr);
3247 slave_s = strtok_r(NULL, " ", &save_ptr);
3248 if (!slave_s) {
3249 unixctl_command_reply(conn, 501,
3250 "usage: bond/enable/disable-slave BOND SLAVE");
3251 return;
3252 }
3253
3254 port = bond_find(bond_s);
3255 if (!port) {
3256 unixctl_command_reply(conn, 501, "no such bond");
3257 return;
3258 }
3259
3260 iface = port_lookup_iface(port, slave_s);
3261 if (!iface) {
3262 unixctl_command_reply(conn, 501, "no such slave");
3263 return;
3264 }
3265
3266 bond_enable_slave(iface, enable);
3267 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
3268}
3269
3270static void
8ca79daa 3271bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 3272 void *aux OVS_UNUSED)
da285df4
BP
3273{
3274 enable_slave(conn, args, true);
3275}
3276
3277static void
8ca79daa 3278bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 3279 void *aux OVS_UNUSED)
da285df4
BP
3280{
3281 enable_slave(conn, args, false);
3282}
3283
e0644b61 3284static void
8ca79daa 3285bond_unixctl_hash(struct unixctl_conn *conn, const char *args,
c69ee87c 3286 void *aux OVS_UNUSED)
e0644b61
IC
3287{
3288 uint8_t mac[ETH_ADDR_LEN];
3289 uint8_t hash;
3290 char *hash_cstr;
3291
3292 if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
3293 == ETH_ADDR_SCAN_COUNT) {
3294 hash = bond_hash(mac);
3295
3296 hash_cstr = xasprintf("%u", hash);
3297 unixctl_command_reply(conn, 200, hash_cstr);
3298 free(hash_cstr);
3299 } else {
3300 unixctl_command_reply(conn, 501, "invalid mac");
3301 }
3302}
3303
da285df4
BP
3304static void
3305bond_init(void)
3306{
8ca79daa
BP
3307 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
3308 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
3309 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
da285df4 3310 unixctl_command_register("bond/set-active-slave",
8ca79daa
BP
3311 bond_unixctl_set_active_slave, NULL);
3312 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
3313 NULL);
3314 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
3315 NULL);
3316 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
da285df4
BP
3317}
3318\f
064af421
BP
3319/* Port functions. */
3320
76343538 3321static struct port *
064af421
BP
3322port_create(struct bridge *br, const char *name)
3323{
3324 struct port *port;
3325
ec6fde61 3326 port = xzalloc(sizeof *port);
064af421
BP
3327 port->bridge = br;
3328 port->port_idx = br->n_ports;
3329 port->vlan = -1;
3330 port->trunks = NULL;
3331 port->name = xstrdup(name);
3332 port->active_iface = -1;
064af421
BP
3333
3334 if (br->n_ports >= br->allocated_ports) {
3335 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
3336 sizeof *br->ports);
3337 }
3338 br->ports[br->n_ports++] = port;
836fad5e 3339 shash_add_assert(&br->port_by_name, port->name, port);
064af421
BP
3340
3341 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
3342 bridge_flush(br);
76343538
BP
3343
3344 return port;
064af421
BP
3345}
3346
c8143c88
BP
3347static const char *
3348get_port_other_config(const struct ovsrec_port *port, const char *key,
3349 const char *default_value)
3350{
af6278e1
BP
3351 const char *value;
3352
3353 value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
3354 key);
c8143c88
BP
3355 return value ? value : default_value;
3356}
3357
4a1ee6ae
BP
3358static void
3359port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
3360{
3361 struct shash new_ifaces;
3362 size_t i;
3363
3364 /* Collect list of new interfaces. */
3365 shash_init(&new_ifaces);
3366 for (i = 0; i < cfg->n_interfaces; i++) {
3367 const char *name = cfg->interfaces[i]->name;
3368 shash_add_once(&new_ifaces, name, NULL);
3369 }
3370
3371 /* Get rid of deleted interfaces. */
3372 for (i = 0; i < port->n_ifaces; ) {
3373 if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
3374 iface_destroy(port->ifaces[i]);
3375 } else {
3376 i++;
3377 }
3378 }
3379
3380 shash_destroy(&new_ifaces);
3381}
3382
064af421 3383static void
76343538 3384port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
064af421 3385{
4a1ee6ae 3386 struct shash new_ifaces;
c8143c88 3387 long long int next_rebalance;
064af421
BP
3388 unsigned long *trunks;
3389 int vlan;
3390 size_t i;
3391
76343538
BP
3392 port->cfg = cfg;
3393
4a1ee6ae 3394 /* Update settings. */
76343538
BP
3395 port->updelay = cfg->bond_updelay;
3396 if (port->updelay < 0) {
3397 port->updelay = 0;
3398 }
7ef6b685 3399 port->downdelay = cfg->bond_downdelay;
76343538
BP
3400 if (port->downdelay < 0) {
3401 port->downdelay = 0;
064af421 3402 }
c8143c88
BP
3403 port->bond_rebalance_interval = atoi(
3404 get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
3405 if (port->bond_rebalance_interval < 1000) {
3406 port->bond_rebalance_interval = 1000;
3407 }
3408 next_rebalance = time_msec() + port->bond_rebalance_interval;
3409 if (port->bond_next_rebalance > next_rebalance) {
3410 port->bond_next_rebalance = next_rebalance;
3411 }
064af421 3412
4a1ee6ae
BP
3413 /* Add new interfaces and update 'cfg' member of existing ones. */
3414 shash_init(&new_ifaces);
3415 for (i = 0; i < cfg->n_interfaces; i++) {
3416 const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
76343538
BP
3417 struct iface *iface;
3418
4a1ee6ae
BP
3419 if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
3420 VLOG_WARN("port %s: %s specified twice as port interface",
3421 port->name, if_cfg->name);
3422 continue;
3423 }
3424
3425 iface = iface_lookup(port->bridge, if_cfg->name);
3426 if (iface) {
3427 if (iface->port != port) {
3428 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
3429 "removing from %s",
3430 port->bridge->name, if_cfg->name, iface->port->name);
3431 continue;
3432 }
149f577a 3433 iface->cfg = if_cfg;
4a1ee6ae 3434 } else {
6cefe1da 3435 iface = iface_create(port, if_cfg);
064af421 3436 }
6cefe1da
BP
3437
3438 /* Determine interface type. The local port always has type
3439 * "internal". Other ports take their type from the database and
3440 * default to "system" if none is specified. */
3441 iface->type = (!strcmp(if_cfg->name, port->bridge->name) ? "internal"
3442 : if_cfg->type[0] ? if_cfg->type
3443 : "system");
064af421 3444 }
4a1ee6ae 3445 shash_destroy(&new_ifaces);
064af421
BP
3446
3447 /* Get VLAN tag. */
3448 vlan = -1;
76343538
BP
3449 if (cfg->tag) {
3450 if (port->n_ifaces < 2) {
3451 vlan = *cfg->tag;
064af421
BP
3452 if (vlan >= 0 && vlan <= 4095) {
3453 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
76343538
BP
3454 } else {
3455 vlan = -1;
064af421
BP
3456 }
3457 } else {
3458 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
3459 * they even work as-is. But they have not been tested. */
3460 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
3461 port->name);
3462 }
3463 }
3464 if (port->vlan != vlan) {
3465 port->vlan = vlan;
3466 bridge_flush(port->bridge);
3467 }
3468
3469 /* Get trunked VLANs. */
3470 trunks = NULL;
3e9c481c 3471 if (vlan < 0 && cfg->n_trunks) {
76343538 3472 size_t n_errors;
064af421
BP
3473
3474 trunks = bitmap_allocate(4096);
064af421 3475 n_errors = 0;
76343538
BP
3476 for (i = 0; i < cfg->n_trunks; i++) {
3477 int trunk = cfg->trunks[i];
064af421
BP
3478 if (trunk >= 0) {
3479 bitmap_set1(trunks, trunk);
3480 } else {
3481 n_errors++;
3482 }
3483 }
3484 if (n_errors) {
3485 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
76343538 3486 port->name, cfg->n_trunks);
064af421 3487 }
76343538 3488 if (n_errors == cfg->n_trunks) {
3e9c481c 3489 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
76343538 3490 port->name);
3e9c481c
BP
3491 bitmap_free(trunks);
3492 trunks = NULL;
064af421 3493 }
3e9c481c
BP
3494 } else if (vlan >= 0 && cfg->n_trunks) {
3495 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
3496 port->name);
064af421
BP
3497 }
3498 if (trunks == NULL
3499 ? port->trunks != NULL
3500 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
3501 bridge_flush(port->bridge);
3502 }
3503 bitmap_free(port->trunks);
3504 port->trunks = trunks;
064af421
BP
3505}
3506
3507static void
3508port_destroy(struct port *port)
3509{
3510 if (port) {
3511 struct bridge *br = port->bridge;
3512 struct port *del;
37e7f427 3513 int i;
064af421
BP
3514
3515 proc_net_compat_update_vlan(port->name, NULL, 0);
85c74638 3516 proc_net_compat_update_bond(port->name, NULL);
064af421
BP
3517
3518 for (i = 0; i < MAX_MIRRORS; i++) {
3519 struct mirror *m = br->mirrors[i];
3520 if (m && m->out_port == port) {
3521 mirror_destroy(m);
3522 }
3523 }
3524
3525 while (port->n_ifaces > 0) {
3526 iface_destroy(port->ifaces[port->n_ifaces - 1]);
3527 }
3528
836fad5e
BP
3529 shash_find_and_delete_assert(&br->port_by_name, port->name);
3530
064af421
BP
3531 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
3532 del->port_idx = port->port_idx;
3533
0bb5c3ec 3534 netdev_monitor_destroy(port->monitor);
064af421
BP
3535 free(port->ifaces);
3536 bitmap_free(port->trunks);
3537 free(port->name);
3538 free(port);
3539 bridge_flush(br);
3540 }
3541}
3542
3543static struct port *
3544port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3545{
3546 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
3547 return iface ? iface->port : NULL;
3548}
3549
3550static struct port *
3551port_lookup(const struct bridge *br, const char *name)
3552{
836fad5e 3553 return shash_find_data(&br->port_by_name, name);
064af421
BP
3554}
3555
da285df4
BP
3556static struct iface *
3557port_lookup_iface(const struct port *port, const char *name)
3558{
4a1ee6ae
BP
3559 struct iface *iface = iface_lookup(port->bridge, name);
3560 return iface && iface->port == port ? iface : NULL;
da285df4
BP
3561}
3562
064af421
BP
3563static void
3564port_update_bonding(struct port *port)
3565{
0bb5c3ec
BP
3566 if (port->monitor) {
3567 netdev_monitor_destroy(port->monitor);
3568 port->monitor = NULL;
3569 }
064af421
BP
3570 if (port->n_ifaces < 2) {
3571 /* Not a bonded port. */
3572 if (port->bond_hash) {
3573 free(port->bond_hash);
3574 port->bond_hash = NULL;
85c74638 3575 port->bond_compat_is_stale = true;
76343538 3576 port->bond_fake_iface = false;
064af421
BP
3577 }
3578 } else {
0bb5c3ec 3579 size_t i;
064af421 3580
0bb5c3ec 3581 if (!port->bond_hash) {
064af421
BP
3582 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
3583 for (i = 0; i <= BOND_MASK; i++) {
3584 struct bond_entry *e = &port->bond_hash[i];
3585 e->iface_idx = -1;
3586 e->tx_bytes = 0;
3587 }
3588 port->no_ifaces_tag = tag_create_random();
3589 bond_choose_active_iface(port);
c8143c88
BP
3590 port->bond_next_rebalance
3591 = time_msec() + port->bond_rebalance_interval;
8722022c
BP
3592
3593 if (port->cfg->bond_fake_iface) {
3594 port->bond_next_fake_iface_update = time_msec();
3595 }
064af421 3596 }
85c74638 3597 port->bond_compat_is_stale = true;
76343538 3598 port->bond_fake_iface = port->cfg->bond_fake_iface;
0bb5c3ec
BP
3599
3600 port->monitor = netdev_monitor_create();
3601 for (i = 0; i < port->n_ifaces; i++) {
3602 netdev_monitor_add(port->monitor, port->ifaces[i]->netdev);
3603 }
064af421
BP
3604 }
3605}
3606
3607static void
3608port_update_bond_compat(struct port *port)
3609{
2aebae83 3610 struct compat_bond_hash compat_hashes[BOND_MASK + 1];
064af421
BP
3611 struct compat_bond bond;
3612 size_t i;
3613
3614 if (port->n_ifaces < 2) {
85c74638 3615 proc_net_compat_update_bond(port->name, NULL);
064af421
BP
3616 return;
3617 }
3618
3619 bond.up = false;
3620 bond.updelay = port->updelay;
3621 bond.downdelay = port->downdelay;
2aebae83
BP
3622
3623 bond.n_hashes = 0;
3624 bond.hashes = compat_hashes;
3625 if (port->bond_hash) {
3626 const struct bond_entry *e;
3627 for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
3628 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3629 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
3630 cbh->hash = e - port->bond_hash;
3631 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
3632 }
3633 }
3634 }
3635
064af421
BP
3636 bond.n_slaves = port->n_ifaces;
3637 bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
3638 for (i = 0; i < port->n_ifaces; i++) {
3639 struct iface *iface = port->ifaces[i];
3640 struct compat_bond_slave *slave = &bond.slaves[i];
3641 slave->name = iface->name;
6643c03b
JP
3642
3643 /* We need to make the same determination as the Linux bonding
3644 * code to determine whether a slave should be consider "up".
d295e8e9 3645 * The Linux function bond_miimon_inspect() supports four
6643c03b 3646 * BOND_LINK_* states:
d295e8e9 3647 *
6643c03b
JP
3648 * - BOND_LINK_UP: carrier detected, updelay has passed.
3649 * - BOND_LINK_FAIL: carrier lost, downdelay in progress.
3650 * - BOND_LINK_DOWN: carrier lost, downdelay has passed.
3651 * - BOND_LINK_BACK: carrier detected, updelay in progress.
3652 *
d295e8e9 3653 * The function bond_info_show_slave() only considers BOND_LINK_UP
6643c03b
JP
3654 * to be "up" and anything else to be "down".
3655 */
3656 slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
064af421
BP
3657 if (slave->up) {
3658 bond.up = true;
3659 }
96b9b7a9 3660 netdev_get_etheraddr(iface->netdev, slave->mac);
064af421 3661 }
2aebae83 3662
76343538 3663 if (port->bond_fake_iface) {
c6303ea1
JG
3664 struct netdev *bond_netdev;
3665
149f577a 3666 if (!netdev_open_default(port->name, &bond_netdev)) {
c6303ea1
JG
3667 if (bond.up) {
3668 netdev_turn_flags_on(bond_netdev, NETDEV_UP, true);
3669 } else {
3670 netdev_turn_flags_off(bond_netdev, NETDEV_UP, true);
3671 }
3672 netdev_close(bond_netdev);
3673 }
3674 }
3675
064af421
BP
3676 proc_net_compat_update_bond(port->name, &bond);
3677 free(bond.slaves);
3678}
3679
3680static void
3681port_update_vlan_compat(struct port *port)
3682{
3683 struct bridge *br = port->bridge;
3684 char *vlandev_name = NULL;
3685
3686 if (port->vlan > 0) {
3687 /* Figure out the name that the VLAN device should actually have, if it
3688 * existed. This takes some work because the VLAN device would not
3689 * have port->name in its name; rather, it would have the trunk port's
3690 * name, and 'port' would be attached to a bridge that also had the
3691 * VLAN device one of its ports. So we need to find a trunk port that
3692 * includes port->vlan.
3693 *
3694 * There might be more than one candidate. This doesn't happen on
3695 * XenServer, so if it happens we just pick the first choice in
3696 * alphabetical order instead of creating multiple VLAN devices. */
3697 size_t i;
3698 for (i = 0; i < br->n_ports; i++) {
3699 struct port *p = br->ports[i];
3700 if (port_trunks_vlan(p, port->vlan)
3701 && p->n_ifaces
3702 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
3703 {
96b9b7a9
BP
3704 uint8_t ea[ETH_ADDR_LEN];
3705 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
064af421
BP
3706 if (!eth_addr_is_multicast(ea) &&
3707 !eth_addr_is_reserved(ea) &&
3708 !eth_addr_is_zero(ea)) {
3709 vlandev_name = p->name;
3710 }
3711 }
3712 }
3713 }
3714 proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
3715}
3716\f
3717/* Interface functions. */
3718
76343538 3719static struct iface *
a740f0de 3720iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
064af421 3721{
4a1ee6ae 3722 struct bridge *br = port->bridge;
064af421 3723 struct iface *iface;
a740f0de 3724 char *name = if_cfg->name;
064af421 3725
ec6fde61 3726 iface = xzalloc(sizeof *iface);
064af421
BP
3727 iface->port = port;
3728 iface->port_ifidx = port->n_ifaces;
3729 iface->name = xstrdup(name);
3730 iface->dp_ifidx = -1;
3731 iface->tag = tag_create_random();
064af421 3732 iface->delay_expires = LLONG_MAX;
0c6aea3f 3733 iface->netdev = NULL;
149f577a 3734 iface->cfg = if_cfg;
064af421 3735
2457b24f
JG
3736 shash_add_assert(&br->iface_by_name, iface->name, iface);
3737
064af421
BP
3738 if (port->n_ifaces >= port->allocated_ifaces) {
3739 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
3740 sizeof *port->ifaces);
3741 }
3742 port->ifaces[port->n_ifaces++] = iface;
3743 if (port->n_ifaces > 1) {
4a1ee6ae 3744 br->has_bonded_ports = true;
064af421
BP
3745 }
3746
3747 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
3748
4a1ee6ae 3749 bridge_flush(br);
76343538
BP
3750
3751 return iface;
064af421
BP
3752}
3753
3754static void
3755iface_destroy(struct iface *iface)
3756{
3757 if (iface) {
3758 struct port *port = iface->port;
3759 struct bridge *br = port->bridge;
3760 bool del_active = port->active_iface == iface->port_ifidx;
3761 struct iface *del;
3762
4a1ee6ae
BP
3763 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
3764
064af421 3765 if (iface->dp_ifidx >= 0) {
d9a8717a 3766 hmap_remove(&br->ifaces, &iface->dp_ifidx_node);
064af421
BP
3767 }
3768
3769 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
3770 del->port_ifidx = iface->port_ifidx;
3771
0c6aea3f 3772 netdev_close(iface->netdev);
064af421
BP
3773
3774 if (del_active) {
3775 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3776 bond_choose_active_iface(port);
2303f3b2 3777 bond_send_learning_packets(port);
064af421
BP
3778 }
3779
a740f0de
JG
3780 free(iface->name);
3781 free(iface);
3782
064af421
BP
3783 bridge_flush(port->bridge);
3784 }
3785}
3786
3787static struct iface *
3788iface_lookup(const struct bridge *br, const char *name)
3789{
4a1ee6ae 3790 return shash_find_data(&br->iface_by_name, name);
064af421
BP
3791}
3792
3793static struct iface *
3794iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3795{
d9a8717a
BP
3796 struct iface *iface;
3797
4e8e4213 3798 HMAP_FOR_EACH_IN_BUCKET (iface, dp_ifidx_node,
d9a8717a
BP
3799 hash_int(dp_ifidx, 0), &br->ifaces) {
3800 if (iface->dp_ifidx == dp_ifidx) {
3801 return iface;
3802 }
3803 }
3804 return NULL;
064af421 3805}
557d8e6c 3806
52df17e7
BP
3807/* Set Ethernet address of 'iface', if one is specified in the configuration
3808 * file. */
3809static void
3810iface_set_mac(struct iface *iface)
3811{
76343538 3812 uint8_t ea[ETH_ADDR_LEN];
52df17e7 3813
76343538 3814 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
52df17e7
BP
3815 if (eth_addr_is_multicast(ea)) {
3816 VLOG_ERR("interface %s: cannot set MAC to multicast address",
3817 iface->name);
3818 } else if (iface->dp_ifidx == ODPP_LOCAL) {
3819 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
3820 iface->name, iface->name);
3821 } else {
4d678233 3822 int error = netdev_set_etheraddr(iface->netdev, ea);
52df17e7
BP
3823 if (error) {
3824 VLOG_ERR("interface %s: setting MAC failed (%s)",
3825 iface->name, strerror(error));
3826 }
3827 }
3828 }
3829}
c1c9c9c4 3830
43776b8f
BP
3831/* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
3832 *
3833 * The value strings in '*shash' are taken directly from values[], not copied,
3834 * so the caller should not modify or free them. */
c1c9c9c4
BP
3835static void
3836shash_from_ovs_idl_map(char **keys, char **values, size_t n,
3837 struct shash *shash)
3838{
3839 size_t i;
3840
3841 shash_init(shash);
3842 for (i = 0; i < n; i++) {
3843 shash_add(shash, keys[i], values[i]);
3844 }
3845}
3846
3847struct iface_delete_queues_cbdata {
3848 struct netdev *netdev;
44fca7f9 3849 const struct ovsdb_datum *queues;
c1c9c9c4
BP
3850};
3851
3852static bool
44fca7f9 3853queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
c1c9c9c4 3854{
44fca7f9 3855 union ovsdb_atom atom;
c1c9c9c4 3856
44fca7f9
BP
3857 atom.integer = target;
3858 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
c1c9c9c4
BP
3859}
3860
3861static void
3862iface_delete_queues(unsigned int queue_id,
3863 const struct shash *details OVS_UNUSED, void *cbdata_)
3864{
3865 struct iface_delete_queues_cbdata *cbdata = cbdata_;
3866
44fca7f9 3867 if (!queue_ids_include(cbdata->queues, queue_id)) {
c1c9c9c4
BP
3868 netdev_delete_queue(cbdata->netdev, queue_id);
3869 }
3870}
3871
3872static void
3873iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
3874{
3875 if (!qos || qos->type[0] == '\0') {
3876 netdev_set_qos(iface->netdev, NULL, NULL);
3877 } else {
3878 struct iface_delete_queues_cbdata cbdata;
3879 struct shash details;
3880 size_t i;
3881
3882 /* Configure top-level Qos for 'iface'. */
3883 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
3884 qos->n_other_config, &details);
3885 netdev_set_qos(iface->netdev, qos->type, &details);
3886 shash_destroy(&details);
3887
3888 /* Deconfigure queues that were deleted. */
3889 cbdata.netdev = iface->netdev;
44fca7f9
BP
3890 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
3891 OVSDB_TYPE_UUID);
c1c9c9c4
BP
3892 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
3893
3894 /* Configure queues for 'iface'. */
3895 for (i = 0; i < qos->n_queues; i++) {
3896 const struct ovsrec_queue *queue = qos->value_queues[i];
3897 unsigned int queue_id = qos->key_queues[i];
3898
3899 shash_from_ovs_idl_map(queue->key_other_config,
3900 queue->value_other_config,
3901 queue->n_other_config, &details);
3902 netdev_set_queue(iface->netdev, queue_id, &details);
3903 shash_destroy(&details);
3904 }
3905 }
3906}
064af421
BP
3907\f
3908/* Port mirroring. */
3909
dd0d105c
BP
3910static struct mirror *
3911mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3912{
3913 int i;
3914
3915 for (i = 0; i < MAX_MIRRORS; i++) {
3916 struct mirror *m = br->mirrors[i];
3917 if (m && uuid_equals(uuid, &m->uuid)) {
3918 return m;
3919 }
3920 }
3921 return NULL;
3922}
3923
064af421 3924static void
37e7f427 3925mirror_reconfigure(struct bridge *br)
064af421 3926{
f2d7fd66 3927 unsigned long *rspan_vlans;
37e7f427 3928 int i;
064af421 3929
dd0d105c 3930 /* Get rid of deleted mirrors. */
064af421 3931 for (i = 0; i < MAX_MIRRORS; i++) {
dd0d105c
BP
3932 struct mirror *m = br->mirrors[i];
3933 if (m) {
3934 const struct ovsdb_datum *mc;
3935 union ovsdb_atom atom;
3936
3937 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3938 atom.uuid = br->mirrors[i]->uuid;
3939 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3940 mirror_destroy(m);
3941 }
064af421
BP
3942 }
3943 }
3944
dd0d105c 3945 /* Add new mirrors and reconfigure existing ones. */
37e7f427
BP
3946 for (i = 0; i < br->cfg->n_mirrors; i++) {
3947 struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
dd0d105c
BP
3948 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3949 if (m) {
3950 mirror_reconfigure_one(m, cfg);
3951 } else {
3952 mirror_create(br, cfg);
064af421
BP
3953 }
3954 }
3955
3956 /* Update port reserved status. */
3957 for (i = 0; i < br->n_ports; i++) {
3958 br->ports[i]->is_mirror_output_port = false;
3959 }
3960 for (i = 0; i < MAX_MIRRORS; i++) {
3961 struct mirror *m = br->mirrors[i];
3962 if (m && m->out_port) {
3963 m->out_port->is_mirror_output_port = true;
3964 }
3965 }
f2d7fd66 3966
8f30d09a 3967 /* Update flooded vlans (for RSPAN). */
f2d7fd66 3968 rspan_vlans = NULL;
37e7f427 3969 if (br->cfg->n_flood_vlans) {
f2d7fd66
JG
3970 rspan_vlans = bitmap_allocate(4096);
3971
37e7f427
BP
3972 for (i = 0; i < br->cfg->n_flood_vlans; i++) {
3973 int64_t vlan = br->cfg->flood_vlans[i];
3974 if (vlan >= 0 && vlan < 4096) {
f2d7fd66 3975 bitmap_set1(rspan_vlans, vlan);
37e7f427 3976 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
42061b2a 3977 br->name, vlan);
f2d7fd66 3978 } else {
37e7f427
BP
3979 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
3980 br->name, vlan);
f2d7fd66
JG
3981 }
3982 }
3983 }
8f30d09a 3984 if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
f2d7fd66
JG
3985 bridge_flush(br);
3986 }
064af421
BP
3987}
3988
dd0d105c
BP
3989static void
3990mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
064af421
BP
3991{
3992 struct mirror *m;
3993 size_t i;
3994
3995 for (i = 0; ; i++) {
3996 if (i >= MAX_MIRRORS) {
3997 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
dd0d105c
BP
3998 "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
3999 return;
064af421
BP
4000 }
4001 if (!br->mirrors[i]) {
4002 break;
4003 }
4004 }
4005
dd0d105c 4006 VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
064af421
BP
4007 bridge_flush(br);
4008
ec6fde61 4009 br->mirrors[i] = m = xzalloc(sizeof *m);
064af421
BP
4010 m->bridge = br;
4011 m->idx = i;
dd0d105c 4012 m->name = xstrdup(cfg->name);
37e7f427
BP
4013 shash_init(&m->src_ports);
4014 shash_init(&m->dst_ports);
064af421
BP
4015 m->vlans = NULL;
4016 m->n_vlans = 0;
4017 m->out_vlan = -1;
4018 m->out_port = NULL;
37e7f427 4019
dd0d105c 4020 mirror_reconfigure_one(m, cfg);
064af421
BP
4021}
4022
4023static void
4024mirror_destroy(struct mirror *m)
4025{
4026 if (m) {
4027 struct bridge *br = m->bridge;
4028 size_t i;
4029
4030 for (i = 0; i < br->n_ports; i++) {
4031 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
4032 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
4033 }
4034
37e7f427
BP
4035 shash_destroy(&m->src_ports);
4036 shash_destroy(&m->dst_ports);
064af421
BP
4037 free(m->vlans);
4038
4039 m->bridge->mirrors[m->idx] = NULL;
786880a5 4040 free(m->name);
064af421
BP
4041 free(m);
4042
4043 bridge_flush(br);
4044 }
4045}
4046
4047static void
37e7f427
BP
4048mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
4049 struct shash *names)
064af421 4050{
064af421
BP
4051 size_t i;
4052
37e7f427
BP
4053 for (i = 0; i < n_ports; i++) {
4054 const char *name = ports[i]->name;
064af421 4055 if (port_lookup(m->bridge, name)) {
37e7f427 4056 shash_add_once(names, name, NULL);
064af421 4057 } else {
37e7f427
BP
4058 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
4059 "port %s", m->bridge->name, m->name, name);
064af421
BP
4060 }
4061 }
064af421
BP
4062}
4063
4064static size_t
37e7f427
BP
4065mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
4066 int **vlans)
064af421 4067{
37e7f427
BP
4068 size_t n_vlans;
4069 size_t i;
064af421 4070
0b523ea7 4071 *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
064af421 4072 n_vlans = 0;
37e7f427
BP
4073 for (i = 0; i < cfg->n_select_vlan; i++) {
4074 int64_t vlan = cfg->select_vlan[i];
4075 if (vlan < 0 || vlan > 4095) {
4076 VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
4077 m->bridge->name, m->name, vlan);
064af421
BP
4078 } else {
4079 (*vlans)[n_vlans++] = vlan;
4080 }
4081 }
4082 return n_vlans;
4083}
4084
4085static bool
4086vlan_is_mirrored(const struct mirror *m, int vlan)
4087{
4088 size_t i;
4089
4090 for (i = 0; i < m->n_vlans; i++) {
4091 if (m->vlans[i] == vlan) {
4092 return true;
4093 }
4094 }
4095 return false;
4096}
4097
4098static bool
4099port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
4100{
4101 size_t i;
4102
4103 for (i = 0; i < m->n_vlans; i++) {
4104 if (port_trunks_vlan(p, m->vlans[i])) {
4105 return true;
4106 }
4107 }
4108 return false;
4109}
4110
4111static void
37e7f427 4112mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
064af421 4113{
37e7f427 4114 struct shash src_ports, dst_ports;
064af421 4115 mirror_mask_t mirror_bit;
064af421
BP
4116 struct port *out_port;
4117 int out_vlan;
4118 size_t n_vlans;
4119 int *vlans;
4120 size_t i;
064af421 4121
dd0d105c
BP
4122 /* Set name. */
4123 if (strcmp(cfg->name, m->name)) {
4124 free(m->name);
4125 m->name = xstrdup(cfg->name);
4126 }
4127
064af421 4128 /* Get output port. */
37e7f427
BP
4129 if (cfg->output_port) {
4130 out_port = port_lookup(m->bridge, cfg->output_port->name);
064af421 4131 if (!out_port) {
37e7f427
BP
4132 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
4133 m->bridge->name, m->name);
064af421 4134 mirror_destroy(m);
064af421
BP
4135 return;
4136 }
4137 out_vlan = -1;
4138
37e7f427
BP
4139 if (cfg->output_vlan) {
4140 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
4141 "output vlan; ignoring output vlan",
4142 m->bridge->name, m->name);
064af421 4143 }
37e7f427 4144 } else if (cfg->output_vlan) {
064af421 4145 out_port = NULL;
37e7f427 4146 out_vlan = *cfg->output_vlan;
064af421 4147 } else {
37e7f427
BP
4148 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
4149 m->bridge->name, m->name);
064af421 4150 mirror_destroy(m);
064af421
BP
4151 return;
4152 }
4153
37e7f427
BP
4154 shash_init(&src_ports);
4155 shash_init(&dst_ports);
939ff267
BP
4156 if (cfg->select_all) {
4157 for (i = 0; i < m->bridge->n_ports; i++) {
4158 const char *name = m->bridge->ports[i]->name;
4159 shash_add_once(&src_ports, name, NULL);
4160 shash_add_once(&dst_ports, name, NULL);
4161 }
4162 vlans = NULL;
4163 n_vlans = 0;
4164 } else {
4165 /* Get ports, and drop duplicates and ports that don't exist. */
4166 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
4167 &src_ports);
4168 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
4169 &dst_ports);
064af421 4170
939ff267
BP
4171 /* Get all the vlans, and drop duplicate and invalid vlans. */
4172 n_vlans = mirror_collect_vlans(m, cfg, &vlans);
37e7f427 4173 }
064af421
BP
4174
4175 /* Update mirror data. */
37e7f427
BP
4176 if (!shash_equal_keys(&m->src_ports, &src_ports)
4177 || !shash_equal_keys(&m->dst_ports, &dst_ports)
064af421
BP
4178 || m->n_vlans != n_vlans
4179 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
4180 || m->out_port != out_port
4181 || m->out_vlan != out_vlan) {
4182 bridge_flush(m->bridge);
4183 }
37e7f427
BP
4184 shash_swap(&m->src_ports, &src_ports);
4185 shash_swap(&m->dst_ports, &dst_ports);
064af421
BP
4186 free(m->vlans);
4187 m->vlans = vlans;
4188 m->n_vlans = n_vlans;
4189 m->out_port = out_port;
4190 m->out_vlan = out_vlan;
4191
064af421
BP
4192 /* Update ports. */
4193 mirror_bit = MIRROR_MASK_C(1) << m->idx;
4194 for (i = 0; i < m->bridge->n_ports; i++) {
4195 struct port *port = m->bridge->ports[i];
4196
939ff267 4197 if (shash_find(&m->src_ports, port->name)
064af421
BP
4198 || (m->n_vlans
4199 && (!port->vlan
4200 ? port_trunks_any_mirrored_vlan(m, port)
4201 : vlan_is_mirrored(m, port->vlan)))) {
4202 port->src_mirrors |= mirror_bit;
4203 } else {
4204 port->src_mirrors &= ~mirror_bit;
4205 }
4206
939ff267 4207 if (shash_find(&m->dst_ports, port->name)) {
064af421
BP
4208 port->dst_mirrors |= mirror_bit;
4209 } else {
4210 port->dst_mirrors &= ~mirror_bit;
4211 }
4212 }
4213
4214 /* Clean up. */
37e7f427
BP
4215 shash_destroy(&src_ports);
4216 shash_destroy(&dst_ports);
064af421 4217}