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