]> git.proxmox.com Git - ovs.git/blame - vswitchd/bridge.c
bridge: Downgrade log level of some log messages that may indicate races.
[ovs.git] / vswitchd / bridge.c
CommitLineData
b0ec0f27 1/* Copyright (c) 2008, 2009, 2010, 2011 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"
10a24935 18#include "byte-order.h"
064af421
BP
19#include <assert.h>
20#include <errno.h>
21#include <arpa/inet.h>
22#include <ctype.h>
23#include <inttypes.h>
9d82ec47 24#include <sys/socket.h>
064af421
BP
25#include <net/if.h>
26#include <openflow/openflow.h>
27#include <signal.h>
28#include <stdlib.h>
29#include <strings.h>
30#include <sys/stat.h>
31#include <sys/socket.h>
7e40e21d 32#include <sys/types.h>
064af421
BP
33#include <unistd.h>
34#include "bitmap.h"
b31bcf60 35#include "cfm.h"
cf3fad8a 36#include "classifier.h"
064af421 37#include "coverage.h"
a7ff9bd7 38#include "daemon.h"
064af421
BP
39#include "dirs.h"
40#include "dpif.h"
41#include "dynamic-string.h"
42#include "flow.h"
43#include "hash.h"
d9a8717a 44#include "hmap.h"
cd11000b 45#include "jsonrpc.h"
064af421
BP
46#include "list.h"
47#include "mac-learning.h"
48#include "netdev.h"
cdee00fd 49#include "netlink.h"
064af421
BP
50#include "odp-util.h"
51#include "ofp-print.h"
52#include "ofpbuf.h"
d65349ea 53#include "ofproto/netflow.h"
8cd4882f 54#include "ofproto/ofproto.h"
dd0d105c 55#include "ovsdb-data.h"
da285df4 56#include "packets.h"
064af421 57#include "poll-loop.h"
064af421 58#include "process.h"
76343538 59#include "sha1.h"
6c88d577 60#include "shash.h"
064af421 61#include "socket-util.h"
fe55ad15 62#include "stream-ssl.h"
064af421 63#include "svec.h"
ce887677 64#include "system-stats.h"
064af421
BP
65#include "timeval.h"
66#include "util.h"
da285df4 67#include "unixctl.h"
064af421 68#include "vconn.h"
b36682d8 69#include "vswitchd/vswitch-idl.h"
064af421 70#include "xenserver.h"
5136ce49 71#include "vlog.h"
72b06300 72#include "sflow_api.h"
064af421 73
d98e6007 74VLOG_DEFINE_THIS_MODULE(bridge);
064af421 75
d76f09ea
BP
76COVERAGE_DEFINE(bridge_flush);
77COVERAGE_DEFINE(bridge_process_flow);
ebe482fd
EJ
78COVERAGE_DEFINE(bridge_process_cfm);
79COVERAGE_DEFINE(bridge_process_lacp);
d76f09ea 80COVERAGE_DEFINE(bridge_reconfigure);
750d79a5 81COVERAGE_DEFINE(bridge_lacp_update);
d76f09ea 82
064af421
BP
83struct dst {
84 uint16_t vlan;
85 uint16_t dp_ifidx;
86};
87
0c62a7ad
BP
88struct dst_set {
89 struct dst builtin[32];
90 struct dst *dsts;
91 size_t n, allocated;
92};
93
94static void dst_set_init(struct dst_set *);
95static void dst_set_add(struct dst_set *, const struct dst *);
96static void dst_set_free(struct dst_set *);
97
cd482758
EJ
98enum lacp_status {
99 LACP_CURRENT = 0x01, /* Current State. */
100 LACP_EXPIRED = 0x02, /* Expired State. */
101 LACP_DEFAULTED = 0x04, /* Partner is defaulted. */
102 LACP_ATTACHED = 0x08, /* Attached. Interface may be choosen for flows. */
103};
104
064af421 105struct iface {
0c6aea3f 106 /* These members are always valid. */
064af421
BP
107 struct port *port; /* Containing port. */
108 size_t port_ifidx; /* Index within containing port. */
064af421 109 char *name; /* Host network device name. */
064af421 110 tag_type tag; /* Tag associated with this interface. */
064af421 111 long long delay_expires; /* Time after which 'enabled' may change. */
064af421 112
0c6aea3f 113 /* These members are valid only after bridge_reconfigure() causes them to
1e0b752d 114 * be initialized. */
d9a8717a 115 struct hmap_node dp_ifidx_node; /* In struct bridge's "ifaces" hmap. */
0c6aea3f
BP
116 int dp_ifidx; /* Index within kernel datapath. */
117 struct netdev *netdev; /* Network device. */
064af421 118 bool enabled; /* May be chosen for flows? */
c835c3bf 119 bool up; /* Is the interface up? */
6cefe1da 120 const char *type; /* Usually same as cfg->type. */
b31bcf60 121 struct cfm *cfm; /* Connectivity Fault Management */
76343538 122 const struct ovsrec_interface *cfg;
c25c91fd
EJ
123
124 /* LACP information. */
cd482758 125 enum lacp_status lacp_status; /* LACP status. */
c25c91fd
EJ
126 uint16_t lacp_priority; /* LACP port priority. */
127 struct lacp_info lacp_actor; /* LACP actor information. */
128 struct lacp_info lacp_partner; /* LACP partner information. */
129 long long int lacp_tx; /* Next LACP message transmission time. */
130 long long int lacp_rx; /* Next LACP message receive time. */
064af421
BP
131};
132
133#define BOND_MASK 0xff
134struct bond_entry {
135 int iface_idx; /* Index of assigned iface, or -1 if none. */
136 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
137 tag_type iface_tag; /* Tag associated with iface_idx. */
138};
139
27dcaa1a 140enum bond_mode {
9f5073d8
EJ
141 BM_TCP, /* Transport Layer Load Balance. */
142 BM_SLB, /* Source Load Balance. */
27dcaa1a 143 BM_AB /* Active Backup. */
be02e7c3
EJ
144};
145
064af421
BP
146#define MAX_MIRRORS 32
147typedef uint32_t mirror_mask_t;
148#define MIRROR_MASK_C(X) UINT32_C(X)
149BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
150struct mirror {
151 struct bridge *bridge;
152 size_t idx;
153 char *name;
dd0d105c 154 struct uuid uuid; /* UUID of this "mirror" record in database. */
064af421
BP
155
156 /* Selection criteria. */
37e7f427
BP
157 struct shash src_ports; /* Name is port name; data is always NULL. */
158 struct shash dst_ports; /* Name is port name; data is always NULL. */
064af421
BP
159 int *vlans;
160 size_t n_vlans;
161
162 /* Output. */
163 struct port *out_port;
164 int out_vlan;
165};
166
c25c91fd
EJ
167/* Flags for a port's lacp member. */
168#define LACP_ACTIVE 0x01 /* LACP is in active mode. */
169#define LACP_PASSIVE 0x02 /* LACP is in passive mode. */
170#define LACP_NEGOTIATED 0x04 /* LACP has successfully negotiated. */
171
064af421
BP
172#define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
173struct port {
174 struct bridge *bridge;
175 size_t port_idx;
176 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
3e9c481c
BP
177 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
178 * NULL if all VLANs are trunked. */
1e0b752d 179 const struct ovsrec_port *cfg;
064af421
BP
180 char *name;
181
182 /* An ordinary bridge port has 1 interface.
183 * A bridge port for bonding has at least 2 interfaces. */
184 struct iface **ifaces;
185 size_t n_ifaces, allocated_ifaces;
186
187 /* Bonding info. */
27dcaa1a 188 enum bond_mode bond_mode; /* Type of the bond. BM_SLB is the default. */
064af421
BP
189 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
190 tag_type active_iface_tag; /* Tag for bcast flows. */
191 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
192 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
76343538 193 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
63331829
EJ
194 bool miimon; /* Use miimon instead of carrier? */
195 long long int bond_miimon_interval; /* Miimon status refresh interval. */
196 long long int bond_miimon_next_update; /* Time of next miimon update. */
e5ae7df8 197 long long int bond_next_fake_iface_update; /* Time of next update. */
be02e7c3
EJ
198 struct netdev_monitor *monitor; /* Tracks carrier up/down status. */
199
c25c91fd
EJ
200 /* LACP information. */
201 int lacp; /* LACP status flags. 0 if LACP is off. */
202 uint16_t lacp_key; /* LACP aggregation key. */
203 uint16_t lacp_priority; /* LACP system priority. */
204 bool lacp_need_update; /* Need to update attached interfaces? */
205
be02e7c3
EJ
206 /* SLB specific bonding info. */
207 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
c8143c88
BP
208 int bond_rebalance_interval; /* Interval between rebalances, in ms. */
209 long long int bond_next_rebalance; /* Next rebalancing time. */
064af421
BP
210
211 /* Port mirroring info. */
212 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
213 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
214 bool is_mirror_output_port; /* Does port mirroring send frames here? */
064af421
BP
215};
216
064af421
BP
217struct bridge {
218 struct list node; /* Node in global list of bridges. */
219 char *name; /* User-specified arbitrary name. */
93dfc067 220 struct mac_learning *ml; /* MAC learning table. */
abe457eb 221 uint8_t ea[ETH_ADDR_LEN]; /* Bridge Ethernet Address. */
064af421 222 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
1e0b752d 223 const struct ovsrec_bridge *cfg;
064af421 224
064af421
BP
225 /* OpenFlow switch processing. */
226 struct ofproto *ofproto; /* OpenFlow switch. */
227
228 /* Kernel datapath information. */
c228a364 229 struct dpif *dpif; /* Datapath. */
d9a8717a 230 struct hmap ifaces; /* Contains "struct iface"s. */
064af421
BP
231
232 /* Bridge ports. */
233 struct port **ports;
234 size_t n_ports, allocated_ports;
4a1ee6ae 235 struct shash iface_by_name; /* "struct iface"s indexed by name. */
836fad5e 236 struct shash port_by_name; /* "struct port"s indexed by name. */
064af421
BP
237
238 /* Bonding. */
239 bool has_bonded_ports;
064af421
BP
240
241 /* Flow tracking. */
242 bool flush;
243
064af421
BP
244 /* Port mirroring. */
245 struct mirror *mirrors[MAX_MIRRORS];
064af421
BP
246};
247
248/* List of all bridges. */
249static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
250
c5187f17
BP
251/* OVSDB IDL used to obtain configuration. */
252static struct ovsdb_idl *idl;
253
cd0cd65f
BP
254/* Each time this timer expires, the bridge fetches systems and interface
255 * statistics and pushes them into the database. */
256#define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
257static long long int stats_timer = LLONG_MIN;
018f1525 258
1a6f1e2a 259static struct bridge *bridge_create(const struct ovsrec_bridge *br_cfg);
064af421
BP
260static void bridge_destroy(struct bridge *);
261static struct bridge *bridge_lookup(const char *name);
8ca79daa 262static unixctl_cb_func bridge_unixctl_dump_flows;
fa05809b 263static unixctl_cb_func bridge_unixctl_reconnect;
064af421 264static int bridge_run_one(struct bridge *);
1a048029 265static size_t bridge_get_controllers(const struct bridge *br,
76ce9432 266 struct ovsrec_controller ***controllersp);
1a048029
JP
267static void bridge_reconfigure_one(struct bridge *);
268static void bridge_reconfigure_remotes(struct bridge *,
11bbff1b
BP
269 const struct sockaddr_in *managers,
270 size_t n_managers);
76343538 271static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
064af421
BP
272static void bridge_fetch_dp_ifaces(struct bridge *);
273static void bridge_flush(struct bridge *);
274static void bridge_pick_local_hw_addr(struct bridge *,
275 uint8_t ea[ETH_ADDR_LEN],
07c318f4 276 struct iface **hw_addr_iface);
064af421
BP
277static uint64_t bridge_pick_datapath_id(struct bridge *,
278 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4
BP
279 struct iface *hw_addr_iface);
280static struct iface *bridge_get_local_iface(struct bridge *);
064af421
BP
281static uint64_t dpid_from_hash(const void *, size_t nbytes);
282
8ca79daa 283static unixctl_cb_func bridge_unixctl_fdb_show;
8c4c1387 284
c25c91fd
EJ
285static void lacp_run(struct bridge *);
286static void lacp_wait(struct bridge *);
287static void lacp_process_packet(const struct ofpbuf *, struct iface *);
288
da285df4 289static void bond_init(void);
064af421
BP
290static void bond_run(struct bridge *);
291static void bond_wait(struct bridge *);
292static void bond_rebalance_port(struct port *);
2303f3b2 293static void bond_send_learning_packets(struct port *);
8b2a2f4a 294static void bond_enable_slave(struct iface *iface, bool enable);
064af421 295
76343538
BP
296static struct port *port_create(struct bridge *, const char *name);
297static void port_reconfigure(struct port *, const struct ovsrec_port *);
4a1ee6ae 298static void port_del_ifaces(struct port *, const struct ovsrec_port *);
064af421
BP
299static void port_destroy(struct port *);
300static struct port *port_lookup(const struct bridge *, const char *name);
da285df4 301static struct iface *port_lookup_iface(const struct port *, const char *name);
064af421
BP
302static struct port *port_from_dp_ifidx(const struct bridge *,
303 uint16_t dp_ifidx);
0c6aea3f 304static void port_update_bonding(struct port *);
c25c91fd 305static void port_update_lacp(struct port *);
064af421 306
dd0d105c 307static void mirror_create(struct bridge *, struct ovsrec_mirror *);
064af421
BP
308static void mirror_destroy(struct mirror *);
309static void mirror_reconfigure(struct bridge *);
37e7f427 310static void mirror_reconfigure_one(struct mirror *, struct ovsrec_mirror *);
064af421
BP
311static bool vlan_is_mirrored(const struct mirror *, int vlan);
312
d295e8e9 313static struct iface *iface_create(struct port *port,
a740f0de 314 const struct ovsrec_interface *if_cfg);
064af421
BP
315static void iface_destroy(struct iface *);
316static struct iface *iface_lookup(const struct bridge *, const char *name);
317static struct iface *iface_from_dp_ifidx(const struct bridge *,
318 uint16_t dp_ifidx);
52df17e7 319static void iface_set_mac(struct iface *);
bcd49a45 320static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
c1c9c9c4 321static void iface_update_qos(struct iface *, const struct ovsrec_qos *);
b31bcf60
EJ
322static void iface_update_cfm(struct iface *);
323static void iface_refresh_cfm_stats(struct iface *iface);
324static void iface_send_packet(struct iface *, struct ofpbuf *packet);
c25c91fd
EJ
325static uint8_t iface_get_lacp_state(const struct iface *);
326static void iface_get_lacp_priority(struct iface *, struct lacp_info *);
327static void iface_set_lacp_defaulted(struct iface *);
328static void iface_set_lacp_expired(struct iface *);
064af421 329
43776b8f
BP
330static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
331 struct shash *);
ea763e0e
EJ
332static void shash_to_ovs_idl_map(struct shash *,
333 char ***keys, char ***values, size_t *n);
334
43776b8f 335
064af421
BP
336/* Hooks into ofproto processing. */
337static struct ofhooks bridge_ofhooks;
338\f
339/* Public functions. */
340
c5187f17
BP
341/* Initializes the bridge module, configuring it to obtain its configuration
342 * from an OVSDB server accessed over 'remote', which should be a string in a
343 * form acceptable to ovsdb_idl_create(). */
064af421 344void
c5187f17
BP
345bridge_init(const char *remote)
346{
347 /* Create connection to database. */
ef73f86c 348 idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
c5187f17 349
ef73f86c
BP
350 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
351 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
e85bbd75
BP
352 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
353
354 ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
355
356 ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
357 ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
358
ef73f86c
BP
359 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
360 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
e85bbd75
BP
361 ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
362
c5187f17
BP
363 /* Register unixctl commands. */
364 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
365 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
366 NULL);
fa05809b
BP
367 unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
368 NULL);
c5187f17
BP
369 bond_init();
370}
371
ee45ad81
BP
372void
373bridge_exit(void)
374{
375 struct bridge *br, *next_br;
376
377 LIST_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
378 bridge_destroy(br);
379 }
380 ovsdb_idl_destroy(idl);
381}
382
c5187f17
BP
383/* Performs configuration that is only necessary once at ovs-vswitchd startup,
384 * but for which the ovs-vswitchd configuration 'cfg' is required. */
385static void
386bridge_configure_once(const struct ovsrec_open_vswitch *cfg)
064af421 387{
c5187f17 388 static bool already_configured_once;
76343538 389 struct svec bridge_names;
1a6f1e2a 390 struct svec dpif_names, dpif_types;
d3d22744 391 size_t i;
da285df4 392
c5187f17
BP
393 /* Only do this once per ovs-vswitchd run. */
394 if (already_configured_once) {
395 return;
396 }
397 already_configured_once = true;
8c4c1387 398
cd0cd65f 399 stats_timer = time_msec() + STATS_INTERVAL;
018f1525 400
c5187f17 401 /* Get all the configured bridges' names from 'cfg' into 'bridge_names'. */
76343538
BP
402 svec_init(&bridge_names);
403 for (i = 0; i < cfg->n_bridges; i++) {
404 svec_add(&bridge_names, cfg->bridges[i]->name);
405 }
406 svec_sort(&bridge_names);
407
c5187f17
BP
408 /* Iterate over all system dpifs and delete any of them that do not appear
409 * in 'cfg'. */
d2a34569 410 svec_init(&dpif_names);
1a6f1e2a
JG
411 svec_init(&dpif_types);
412 dp_enumerate_types(&dpif_types);
413 for (i = 0; i < dpif_types.n; i++) {
1a6f1e2a 414 size_t j;
064af421 415
1a6f1e2a 416 dp_enumerate_names(dpif_types.names[i], &dpif_names);
d3d22744 417
3d8c9535 418 /* Delete each dpif whose name is not in 'bridge_names'. */
1a6f1e2a 419 for (j = 0; j < dpif_names.n; j++) {
3d8c9535
BP
420 if (!svec_contains(&bridge_names, dpif_names.names[j])) {
421 struct dpif *dpif;
422 int retval;
423
424 retval = dpif_open(dpif_names.names[j], dpif_types.names[i],
425 &dpif);
426 if (!retval) {
427 dpif_delete(dpif);
428 dpif_close(dpif);
d3d22744 429 }
064af421 430 }
064af421
BP
431 }
432 }
7128cd6b 433 svec_destroy(&bridge_names);
d0c9d304 434 svec_destroy(&dpif_names);
1a6f1e2a 435 svec_destroy(&dpif_types);
064af421
BP
436}
437
64d64dd7 438/* Callback for iterate_and_prune_ifaces(). */
0c6aea3f 439static bool
64d64dd7 440check_iface(struct bridge *br, struct iface *iface, void *aux OVS_UNUSED)
0c6aea3f 441{
149f577a 442 if (!iface->netdev) {
64d64dd7
BP
443 /* We already reported a related error, don't bother duplicating it. */
444 return false;
0c6aea3f 445 }
149f577a 446
64d64dd7 447 if (iface->dp_ifidx < 0) {
6ae39834
BP
448 VLOG_ERR("%s interface not in %s, dropping",
449 iface->name, dpif_name(br->dpif));
450 return false;
451 }
64d64dd7
BP
452
453 VLOG_DBG("%s has interface %s on port %d", dpif_name(br->dpif),
454 iface->name, iface->dp_ifidx);
455 return true;
6ae39834
BP
456}
457
64d64dd7 458/* Callback for iterate_and_prune_ifaces(). */
795fe1fb 459static bool
67a4917b
BP
460set_iface_properties(struct bridge *br OVS_UNUSED, struct iface *iface,
461 void *aux OVS_UNUSED)
795fe1fb 462{
4d678233 463 /* Set policing attributes. */
76343538
BP
464 netdev_set_policing(iface->netdev,
465 iface->cfg->ingress_policing_rate,
466 iface->cfg->ingress_policing_burst);
4d678233
BP
467
468 /* Set MAC address of internal interfaces other than the local
469 * interface. */
6cefe1da 470 if (iface->dp_ifidx != ODPP_LOCAL && !strcmp(iface->type, "internal")) {
4d678233
BP
471 iface_set_mac(iface);
472 }
473
795fe1fb
BP
474 return true;
475}
476
6ae39834
BP
477/* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
478 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
479 * deletes from 'br' any ports that no longer have any interfaces. */
480static void
481iterate_and_prune_ifaces(struct bridge *br,
482 bool (*cb)(struct bridge *, struct iface *,
483 void *aux),
484 void *aux)
485{
486 size_t i, j;
487
488 for (i = 0; i < br->n_ports; ) {
489 struct port *port = br->ports[i];
490 for (j = 0; j < port->n_ifaces; ) {
491 struct iface *iface = port->ifaces[j];
492 if (cb(br, iface, aux)) {
493 j++;
494 } else {
bcd49a45 495 iface_set_ofport(iface->cfg, -1);
6ae39834
BP
496 iface_destroy(iface);
497 }
498 }
499
500 if (port->n_ifaces) {
501 i++;
502 } else {
cca46d33 503 VLOG_WARN("%s port has no interfaces, dropping", port->name);
6ae39834
BP
504 port_destroy(port);
505 }
506 }
507}
508
cd11000b
BP
509/* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
510 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
511 * responsible for freeing '*managersp' (with free()).
512 *
513 * You may be asking yourself "why does ovs-vswitchd care?", because
514 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
515 * should not be and in fact is not directly involved in that. But
516 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
517 * it has to tell in-band control where the managers are to enable that.
94db5407 518 * (Thus, only managers connected in-band are collected.)
cd11000b
BP
519 */
520static void
94db5407
BP
521collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
522 struct sockaddr_in **managersp, size_t *n_managersp)
cd11000b
BP
523{
524 struct sockaddr_in *managers = NULL;
525 size_t n_managers = 0;
94db5407
BP
526 struct shash targets;
527 size_t i;
528
289df16d
AE
529 /* Collect all of the potential targets from the "targets" columns of the
530 * rows pointed to by "manager_options", excluding any that are
531 * out-of-band. */
94db5407 532 shash_init(&targets);
94db5407
BP
533 for (i = 0; i < ovs_cfg->n_manager_options; i++) {
534 struct ovsrec_manager *m = ovs_cfg->manager_options[i];
535
536 if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
537 shash_find_and_delete(&targets, m->target);
538 } else {
539 shash_add_once(&targets, m->target, NULL);
540 }
541 }
cd11000b 542
94db5407
BP
543 /* Now extract the targets' IP addresses. */
544 if (!shash_is_empty(&targets)) {
545 struct shash_node *node;
cd11000b 546
94db5407
BP
547 managers = xmalloc(shash_count(&targets) * sizeof *managers);
548 SHASH_FOR_EACH (node, &targets) {
549 const char *target = node->name;
550 struct sockaddr_in *sin = &managers[n_managers];
cd11000b 551
94db5407
BP
552 if ((!strncmp(target, "tcp:", 4)
553 && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
554 (!strncmp(target, "ssl:", 4)
555 && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
cd11000b
BP
556 n_managers++;
557 }
558 }
559 }
94db5407 560 shash_destroy(&targets);
cd11000b
BP
561
562 *managersp = managers;
563 *n_managersp = n_managers;
564}
565
c5187f17 566static void
76343538 567bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
064af421 568{
76343538
BP
569 struct shash old_br, new_br;
570 struct shash_node *node;
064af421 571 struct bridge *br, *next;
cd11000b
BP
572 struct sockaddr_in *managers;
573 size_t n_managers;
6ae39834 574 size_t i;
72b06300 575 int sflow_bridge_number;
064af421
BP
576
577 COVERAGE_INC(bridge_reconfigure);
578
94db5407 579 collect_in_band_managers(ovs_cfg, &managers, &n_managers);
cd11000b 580
632d136c 581 /* Collect old and new bridges. */
76343538
BP
582 shash_init(&old_br);
583 shash_init(&new_br);
4e8e4213 584 LIST_FOR_EACH (br, node, &all_bridges) {
76343538
BP
585 shash_add(&old_br, br->name, br);
586 }
587 for (i = 0; i < ovs_cfg->n_bridges; i++) {
588 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
589 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
590 VLOG_WARN("more than one bridge named %s", br_cfg->name);
591 }
064af421 592 }
064af421
BP
593
594 /* Get rid of deleted bridges and add new bridges. */
4e8e4213 595 LIST_FOR_EACH_SAFE (br, next, node, &all_bridges) {
76343538
BP
596 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
597 if (br_cfg) {
598 br->cfg = br_cfg;
599 } else {
064af421
BP
600 bridge_destroy(br);
601 }
602 }
76343538
BP
603 SHASH_FOR_EACH (node, &new_br) {
604 const char *br_name = node->name;
605 const struct ovsrec_bridge *br_cfg = node->data;
1a6f1e2a
JG
606 br = shash_find_data(&old_br, br_name);
607 if (br) {
608 /* If the bridge datapath type has changed, we need to tear it
609 * down and recreate. */
610 if (strcmp(br->cfg->datapath_type, br_cfg->datapath_type)) {
611 bridge_destroy(br);
612 bridge_create(br_cfg);
fa33d64a 613 }
1a6f1e2a
JG
614 } else {
615 bridge_create(br_cfg);
064af421
BP
616 }
617 }
76343538
BP
618 shash_destroy(&old_br);
619 shash_destroy(&new_br);
064af421 620
064af421 621 /* Reconfigure all bridges. */
4e8e4213 622 LIST_FOR_EACH (br, node, &all_bridges) {
1a048029 623 bridge_reconfigure_one(br);
064af421
BP
624 }
625
626 /* Add and delete ports on all datapaths.
627 *
628 * The kernel will reject any attempt to add a given port to a datapath if
629 * that port already belongs to a different datapath, so we must do all
630 * port deletions before any port additions. */
4e8e4213 631 LIST_FOR_EACH (br, node, &all_bridges) {
b0ec0f27 632 struct dpif_port_dump dump;
76343538 633 struct shash want_ifaces;
4c738a8d 634 struct dpif_port dpif_port;
064af421 635
064af421 636 bridge_get_all_ifaces(br, &want_ifaces);
4c738a8d
BP
637 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
638 if (!shash_find(&want_ifaces, dpif_port.name)
639 && strcmp(dpif_port.name, br->name)) {
640 int retval = dpif_port_del(br->dpif, dpif_port.port_no);
064af421 641 if (retval) {
cca46d33
BP
642 VLOG_WARN("failed to remove %s interface from %s: %s",
643 dpif_port.name, dpif_name(br->dpif),
644 strerror(retval));
064af421
BP
645 }
646 }
647 }
76343538 648 shash_destroy(&want_ifaces);
064af421 649 }
4e8e4213 650 LIST_FOR_EACH (br, node, &all_bridges) {
76343538 651 struct shash cur_ifaces, want_ifaces;
b0ec0f27 652 struct dpif_port_dump dump;
4c738a8d 653 struct dpif_port dpif_port;
064af421 654
76343538 655 /* Get the set of interfaces currently in this datapath. */
76343538 656 shash_init(&cur_ifaces);
4c738a8d 657 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
b0ec0f27 658 struct dpif_port *port_info = xmalloc(sizeof *port_info);
4c738a8d
BP
659 dpif_port_clone(port_info, &dpif_port);
660 shash_add(&cur_ifaces, dpif_port.name, port_info);
064af421 661 }
064af421 662
76343538
BP
663 /* Get the set of interfaces we want on this datapath. */
664 bridge_get_all_ifaces(br, &want_ifaces);
6c88d577 665
3a6ccc8c 666 hmap_clear(&br->ifaces);
76343538
BP
667 SHASH_FOR_EACH (node, &want_ifaces) {
668 const char *if_name = node->name;
669 struct iface *iface = node->data;
b0ec0f27
BP
670 struct dpif_port *dpif_port;
671 const char *type;
3a6ccc8c
BP
672 int error;
673
b0ec0f27
BP
674 type = iface ? iface->type : "internal";
675 dpif_port = shash_find_data(&cur_ifaces, if_name);
676
3a6ccc8c
BP
677 /* If we have a port or a netdev already, and it's not the type we
678 * want, then delete the port (if any) and close the netdev (if
679 * any). */
c3827f61
BP
680 if ((dpif_port && strcmp(dpif_port->type, type))
681 || (iface && iface->netdev
682 && strcmp(type, netdev_get_type(iface->netdev)))) {
3a6ccc8c 683 if (dpif_port) {
b0ec0f27 684 error = ofproto_port_del(br->ofproto, dpif_port->port_no);
3a6ccc8c
BP
685 if (error) {
686 continue;
687 }
688 dpif_port = NULL;
76343538 689 }
3a6ccc8c
BP
690 if (iface) {
691 netdev_close(iface->netdev);
692 iface->netdev = NULL;
693 }
694 }
76343538 695
c3827f61
BP
696 /* If the port doesn't exist or we don't have the netdev open,
697 * we need to do more work. */
698 if (!dpif_port || (iface && !iface->netdev)) {
699 struct netdev_options options;
700 struct netdev *netdev;
701 struct shash args;
702
703 /* First open the network device. */
704 options.name = if_name;
705 options.type = type;
706 options.args = &args;
707 options.ethertype = NETDEV_ETH_TYPE_NONE;
708
709 shash_init(&args);
710 if (iface) {
6b4186af 711 shash_from_ovs_idl_map(iface->cfg->key_options,
fe4838bc
JP
712 iface->cfg->value_options,
713 iface->cfg->n_options, &args);
82057f51 714 }
c3827f61
BP
715 error = netdev_open(&options, &netdev);
716 shash_destroy(&args);
82057f51 717
c3827f61
BP
718 if (error) {
719 VLOG_WARN("could not open network device %s (%s)",
720 if_name, strerror(error));
3a6ccc8c 721 continue;
76343538 722 }
3a6ccc8c 723
c3827f61
BP
724 /* Then add the port if we haven't already. */
725 if (!dpif_port) {
726 error = dpif_port_add(br->dpif, netdev, NULL);
3a6ccc8c 727 if (error) {
c3827f61
BP
728 netdev_close(netdev);
729 if (error == EFBIG) {
730 VLOG_ERR("ran out of valid port numbers on %s",
731 dpif_name(br->dpif));
732 break;
733 } else {
cca46d33
BP
734 VLOG_WARN("failed to add %s interface to %s: %s",
735 if_name, dpif_name(br->dpif),
736 strerror(error));
c3827f61
BP
737 continue;
738 }
3a6ccc8c
BP
739 }
740 }
c3827f61
BP
741
742 /* Update 'iface'. */
743 if (iface) {
744 iface->netdev = netdev;
745 iface->enabled = netdev_get_carrier(iface->netdev);
c835c3bf 746 iface->up = iface->enabled;
c3827f61
BP
747 }
748 } else if (iface && iface->netdev) {
749 struct shash args;
750
751 shash_init(&args);
6b4186af 752 shash_from_ovs_idl_map(iface->cfg->key_options,
fe4838bc
JP
753 iface->cfg->value_options,
754 iface->cfg->n_options, &args);
6d9e6eb4 755 netdev_set_config(iface->netdev, &args);
c3827f61 756 shash_destroy(&args);
3a6ccc8c 757 }
064af421 758 }
76343538 759 shash_destroy(&want_ifaces);
b0ec0f27
BP
760
761 SHASH_FOR_EACH (node, &cur_ifaces) {
762 struct dpif_port *port_info = node->data;
4c738a8d 763 dpif_port_destroy(port_info);
b0ec0f27
BP
764 free(port_info);
765 }
766 shash_destroy(&cur_ifaces);
064af421 767 }
72b06300 768 sflow_bridge_number = 0;
4e8e4213 769 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
770 uint8_t ea[8];
771 uint64_t dpid;
07c318f4
BP
772 struct iface *local_iface;
773 struct iface *hw_addr_iface;
093e47f4 774 char *dpid_string;
064af421 775
064af421 776 bridge_fetch_dp_ifaces(br);
064af421 777
64d64dd7 778 iterate_and_prune_ifaces(br, check_iface, NULL);
064af421
BP
779
780 /* Pick local port hardware address, datapath ID. */
07c318f4
BP
781 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
782 local_iface = bridge_get_local_iface(br);
064af421 783 if (local_iface) {
07c318f4 784 int error = netdev_set_etheraddr(local_iface->netdev, ea);
064af421
BP
785 if (error) {
786 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
787 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
788 "Ethernet address: %s",
789 br->name, strerror(error));
790 }
791 }
abe457eb 792 memcpy(br->ea, ea, ETH_ADDR_LEN);
064af421 793
07c318f4 794 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
064af421
BP
795 ofproto_set_datapath_id(br->ofproto, dpid);
796
fc09119a 797 dpid_string = xasprintf("%016"PRIx64, dpid);
093e47f4
BP
798 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
799 free(dpid_string);
800
064af421 801 /* Set NetFlow configuration on this bridge. */
76343538
BP
802 if (br->cfg->netflow) {
803 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
804 struct netflow_options opts;
805
806 memset(&opts, 0, sizeof opts);
807
808 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
809 if (nf_cfg->engine_type) {
cd746526 810 opts.engine_type = *nf_cfg->engine_type;
76343538
BP
811 }
812 if (nf_cfg->engine_id) {
cd746526 813 opts.engine_id = *nf_cfg->engine_id;
76343538
BP
814 }
815
816 opts.active_timeout = nf_cfg->active_timeout;
817 if (!opts.active_timeout) {
818 opts.active_timeout = -1;
819 } else if (opts.active_timeout < 0) {
e9e2856e
JG
820 VLOG_WARN("bridge %s: active timeout interval set to negative "
821 "value, using default instead (%d seconds)", br->name,
822 NF_ACTIVE_TIMEOUT_DEFAULT);
823 opts.active_timeout = -1;
76343538
BP
824 }
825
826 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
827 if (opts.add_id_to_iface) {
828 if (opts.engine_id > 0x7f) {
829 VLOG_WARN("bridge %s: netflow port mangling may conflict "
830 "with another vswitch, choose an engine id less "
831 "than 128", br->name);
832 }
833 if (br->n_ports > 508) {
834 VLOG_WARN("bridge %s: netflow port mangling will conflict "
835 "with another port when more than 508 ports are "
836 "used", br->name);
837 }
838 }
839
840 opts.collectors.n = nf_cfg->n_targets;
841 opts.collectors.names = nf_cfg->targets;
842 if (ofproto_set_netflow(br->ofproto, &opts)) {
d295e8e9 843 VLOG_ERR("bridge %s: problem setting netflow collectors",
76343538
BP
844 br->name);
845 }
846 } else {
847 ofproto_set_netflow(br->ofproto, NULL);
848 }
064af421 849
a4af0040
JP
850 /* Set sFlow configuration on this bridge. */
851 if (br->cfg->sflow) {
d49d354b 852 const struct ovsrec_sflow *sflow_cfg = br->cfg->sflow;
76ce9432 853 struct ovsrec_controller **controllers;
72b06300 854 struct ofproto_sflow_options oso;
76ce9432 855 size_t n_controllers;
72b06300 856
a4af0040
JP
857 memset(&oso, 0, sizeof oso);
858
859 oso.targets.n = sflow_cfg->n_targets;
860 oso.targets.names = sflow_cfg->targets;
72b06300
BP
861
862 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
a4af0040
JP
863 if (sflow_cfg->sampling) {
864 oso.sampling_rate = *sflow_cfg->sampling;
72b06300
BP
865 }
866
867 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
a4af0040
JP
868 if (sflow_cfg->polling) {
869 oso.polling_interval = *sflow_cfg->polling;
72b06300
BP
870 }
871
872 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
a4af0040
JP
873 if (sflow_cfg->header) {
874 oso.header_len = *sflow_cfg->header;
72b06300
BP
875 }
876
877 oso.sub_id = sflow_bridge_number++;
a4af0040
JP
878 oso.agent_device = sflow_cfg->agent;
879
76ce9432 880 oso.control_ip = NULL;
1a048029 881 n_controllers = bridge_get_controllers(br, &controllers);
76ce9432
BP
882 for (i = 0; i < n_controllers; i++) {
883 if (controllers[i]->local_ip) {
884 oso.control_ip = controllers[i]->local_ip;
885 break;
886 }
887 }
72b06300
BP
888 ofproto_set_sflow(br->ofproto, &oso);
889
7b99db05 890 /* Do not destroy oso.targets because it is owned by sflow_cfg. */
72b06300
BP
891 } else {
892 ofproto_set_sflow(br->ofproto, NULL);
893 }
894
064af421
BP
895 /* Update the controller and related settings. It would be more
896 * straightforward to call this from bridge_reconfigure_one(), but we
897 * can't do it there for two reasons. First, and most importantly, at
898 * that point we don't know the dp_ifidx of any interfaces that have
899 * been added to the bridge (because we haven't actually added them to
900 * the datapath). Second, at that point we haven't set the datapath ID
901 * yet; when a controller is configured, resetting the datapath ID will
902 * immediately disconnect from the controller, so it's better to set
903 * the datapath ID before the controller. */
1a048029 904 bridge_reconfigure_remotes(br, managers, n_managers);
064af421 905 }
4e8e4213 906 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
907 for (i = 0; i < br->n_ports; i++) {
908 struct port *port = br->ports[i];
c1c9c9c4 909 int j;
52df17e7 910
0c6aea3f 911 port_update_bonding(port);
c25c91fd 912 port_update_lacp(port);
c1c9c9c4
BP
913
914 for (j = 0; j < port->n_ifaces; j++) {
915 iface_update_qos(port->ifaces[j], port->cfg->qos);
916 }
064af421
BP
917 }
918 }
4e8e4213 919 LIST_FOR_EACH (br, node, &all_bridges) {
4d678233 920 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
064af421 921 }
093e47f4 922
b31bcf60
EJ
923 LIST_FOR_EACH (br, node, &all_bridges) {
924 struct iface *iface;
925 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
926 iface_update_cfm(iface);
927 }
928 }
929
cd11000b 930 free(managers);
a7ff9bd7
BP
931
932 /* ovs-vswitchd has completed initialization, so allow the process that
933 * forked us to exit successfully. */
934 daemonize_complete();
093e47f4
BP
935}
936
937static const char *
af6278e1
BP
938get_ovsrec_key_value(const struct ovsdb_idl_row *row,
939 const struct ovsdb_idl_column *column,
940 const char *key)
093e47f4 941{
af6278e1
BP
942 const struct ovsdb_datum *datum;
943 union ovsdb_atom atom;
944 unsigned int idx;
093e47f4 945
af6278e1
BP
946 datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
947 atom.string = (char *) key;
948 idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
949 return idx == UINT_MAX ? NULL : datum->values[idx].string;
064af421
BP
950}
951
c8143c88
BP
952static const char *
953bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
954{
af6278e1
BP
955 return get_ovsrec_key_value(&br_cfg->header_,
956 &ovsrec_bridge_col_other_config, key);
c8143c88
BP
957}
958
064af421
BP
959static void
960bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
07c318f4 961 struct iface **hw_addr_iface)
064af421 962{
093e47f4 963 const char *hwaddr;
064af421
BP
964 size_t i, j;
965 int error;
966
07c318f4 967 *hw_addr_iface = NULL;
064af421
BP
968
969 /* Did the user request a particular MAC? */
093e47f4
BP
970 hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
971 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
064af421
BP
972 if (eth_addr_is_multicast(ea)) {
973 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
974 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
975 } else if (eth_addr_is_zero(ea)) {
976 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
977 } else {
978 return;
979 }
980 }
981
141f4942
BP
982 /* Otherwise choose the minimum non-local MAC address among all of the
983 * interfaces. */
0b420b10 984 memset(ea, 0xff, ETH_ADDR_LEN);
064af421
BP
985 for (i = 0; i < br->n_ports; i++) {
986 struct port *port = br->ports[i];
58b7527e 987 uint8_t iface_ea[ETH_ADDR_LEN];
58b7527e
BP
988 struct iface *iface;
989
990 /* Mirror output ports don't participate. */
064af421
BP
991 if (port->is_mirror_output_port) {
992 continue;
993 }
58b7527e
BP
994
995 /* Choose the MAC address to represent the port. */
76343538 996 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
ba09980a
BP
997 /* Find the interface with this Ethernet address (if any) so that
998 * we can provide the correct devname to the caller. */
999 iface = NULL;
1000 for (j = 0; j < port->n_ifaces; j++) {
1001 struct iface *candidate = port->ifaces[j];
1002 uint8_t candidate_ea[ETH_ADDR_LEN];
8fef8c71 1003 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
ba09980a
BP
1004 && eth_addr_equals(iface_ea, candidate_ea)) {
1005 iface = candidate;
1006 }
1007 }
58b7527e
BP
1008 } else {
1009 /* Choose the interface whose MAC address will represent the port.
1010 * The Linux kernel bonding code always chooses the MAC address of
1011 * the first slave added to a bond, and the Fedora networking
1012 * scripts always add slaves to a bond in alphabetical order, so
1013 * for compatibility we choose the interface with the name that is
1014 * first in alphabetical order. */
1015 iface = port->ifaces[0];
1016 for (j = 1; j < port->n_ifaces; j++) {
1017 struct iface *candidate = port->ifaces[j];
1018 if (strcmp(candidate->name, iface->name) < 0) {
1019 iface = candidate;
1020 }
1021 }
1022
1023 /* The local port doesn't count (since we're trying to choose its
141f4942
BP
1024 * MAC address anyway). */
1025 if (iface->dp_ifidx == ODPP_LOCAL) {
064af421
BP
1026 continue;
1027 }
58b7527e
BP
1028
1029 /* Grab MAC. */
07c318f4 1030 error = netdev_get_etheraddr(iface->netdev, iface_ea);
58b7527e 1031 if (error) {
064af421
BP
1032 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1033 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
1034 iface->name, strerror(error));
58b7527e 1035 continue;
064af421
BP
1036 }
1037 }
58b7527e
BP
1038
1039 /* Compare against our current choice. */
1040 if (!eth_addr_is_multicast(iface_ea) &&
141f4942 1041 !eth_addr_is_local(iface_ea) &&
58b7527e
BP
1042 !eth_addr_is_reserved(iface_ea) &&
1043 !eth_addr_is_zero(iface_ea) &&
130f6e5f 1044 eth_addr_compare_3way(iface_ea, ea) < 0)
58b7527e 1045 {
0babc06f 1046 memcpy(ea, iface_ea, ETH_ADDR_LEN);
8fef8c71 1047 *hw_addr_iface = iface;
58b7527e 1048 }
064af421 1049 }
141f4942 1050 if (eth_addr_is_multicast(ea)) {
064af421 1051 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
07c318f4 1052 *hw_addr_iface = NULL;
064af421
BP
1053 VLOG_WARN("bridge %s: using default bridge Ethernet "
1054 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1055 } else {
1056 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1057 br->name, ETH_ADDR_ARGS(ea));
1058 }
1059}
1060
1061/* Choose and returns the datapath ID for bridge 'br' given that the bridge
1062 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
07c318f4
BP
1063 * an interface on 'br', then that interface must be passed in as
1064 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1065 * 'hw_addr_iface' must be passed in as a null pointer. */
064af421
BP
1066static uint64_t
1067bridge_pick_datapath_id(struct bridge *br,
1068 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4 1069 struct iface *hw_addr_iface)
064af421
BP
1070{
1071 /*
1072 * The procedure for choosing a bridge MAC address will, in the most
1073 * ordinary case, also choose a unique MAC that we can use as a datapath
1074 * ID. In some special cases, though, multiple bridges will end up with
1075 * the same MAC address. This is OK for the bridges, but it will confuse
1076 * the OpenFlow controller, because each datapath needs a unique datapath
1077 * ID.
1078 *
1079 * Datapath IDs must be unique. It is also very desirable that they be
1080 * stable from one run to the next, so that policy set on a datapath
1081 * "sticks".
1082 */
093e47f4 1083 const char *datapath_id;
064af421
BP
1084 uint64_t dpid;
1085
093e47f4
BP
1086 datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1087 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
064af421
BP
1088 return dpid;
1089 }
1090
07c318f4 1091 if (hw_addr_iface) {
064af421 1092 int vlan;
b2f17b15 1093 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
064af421
BP
1094 /*
1095 * A bridge whose MAC address is taken from a VLAN network device
1096 * (that is, a network device created with vconfig(8) or similar
1097 * tool) will have the same MAC address as a bridge on the VLAN
1098 * device's physical network device.
1099 *
1100 * Handle this case by hashing the physical network device MAC
1101 * along with the VLAN identifier.
1102 */
1103 uint8_t buf[ETH_ADDR_LEN + 2];
1104 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1105 buf[ETH_ADDR_LEN] = vlan >> 8;
1106 buf[ETH_ADDR_LEN + 1] = vlan;
1107 return dpid_from_hash(buf, sizeof buf);
1108 } else {
1109 /*
1110 * Assume that this bridge's MAC address is unique, since it
1111 * doesn't fit any of the cases we handle specially.
1112 */
1113 }
1114 } else {
1115 /*
1116 * A purely internal bridge, that is, one that has no non-virtual
1117 * network devices on it at all, is more difficult because it has no
1118 * natural unique identifier at all.
1119 *
1120 * When the host is a XenServer, we handle this case by hashing the
1121 * host's UUID with the name of the bridge. Names of bridges are
1122 * persistent across XenServer reboots, although they can be reused if
1123 * an internal network is destroyed and then a new one is later
1124 * created, so this is fairly effective.
1125 *
1126 * When the host is not a XenServer, we punt by using a random MAC
1127 * address on each run.
1128 */
1129 const char *host_uuid = xenserver_get_host_uuid();
1130 if (host_uuid) {
1131 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1132 dpid = dpid_from_hash(combined, strlen(combined));
1133 free(combined);
1134 return dpid;
1135 }
1136 }
1137
1138 return eth_addr_to_uint64(bridge_ea);
1139}
1140
1141static uint64_t
1142dpid_from_hash(const void *data, size_t n)
1143{
5eccf359 1144 uint8_t hash[SHA1_DIGEST_SIZE];
064af421
BP
1145
1146 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
5eccf359 1147 sha1_bytes(data, n, hash);
064af421
BP
1148 eth_addr_mark_random(hash);
1149 return eth_addr_to_uint64(hash);
1150}
1151
ea83a2fc 1152static void
ea763e0e 1153iface_refresh_status(struct iface *iface)
ea83a2fc 1154{
ea763e0e
EJ
1155 struct shash sh;
1156
e210037e
AE
1157 enum netdev_flags flags;
1158 uint32_t current;
1159 int64_t bps;
1160 int mtu;
1161 int64_t mtu_64;
1162 int error;
1163
ea763e0e
EJ
1164 shash_init(&sh);
1165
1166 if (!netdev_get_status(iface->netdev, &sh)) {
1167 size_t n;
1168 char **keys, **values;
ea83a2fc 1169
ea763e0e
EJ
1170 shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1171 ovsrec_interface_set_status(iface->cfg, keys, values, n);
1172
1173 free(keys);
1174 free(values);
1175 } else {
1176 ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1177 }
1178
1179 shash_destroy_free_data(&sh);
e210037e
AE
1180
1181 error = netdev_get_flags(iface->netdev, &flags);
1182 if (!error) {
1183 ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1184 }
1185 else {
1186 ovsrec_interface_set_admin_state(iface->cfg, NULL);
1187 }
1188
1189 error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1190 if (!error) {
1191 ovsrec_interface_set_duplex(iface->cfg,
1192 netdev_features_is_full_duplex(current)
1193 ? "full" : "half");
1194 /* warning: uint64_t -> int64_t conversion */
1195 bps = netdev_features_to_bps(current);
1196 ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1197 }
1198 else {
1199 ovsrec_interface_set_duplex(iface->cfg, NULL);
1200 ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1201 }
1202
1203
1204 ovsrec_interface_set_link_state(iface->cfg,
1205 netdev_get_carrier(iface->netdev)
1206 ? "up" : "down");
1207
1208 error = netdev_get_mtu(iface->netdev, &mtu);
f915f1a8 1209 if (!error && mtu != INT_MAX) {
e210037e
AE
1210 mtu_64 = mtu;
1211 ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1212 }
1213 else {
1214 ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1215 }
ea83a2fc
EJ
1216}
1217
b31bcf60
EJ
1218static void
1219iface_refresh_cfm_stats(struct iface *iface)
1220{
1221 size_t i;
1222 struct cfm *cfm;
1223 const struct ovsrec_monitor *mon;
1224
1225 mon = iface->cfg->monitor;
1226 cfm = iface->cfm;
1227
1228 if (!cfm || !mon) {
1229 return;
1230 }
1231
1232 for (i = 0; i < mon->n_remote_mps; i++) {
1233 const struct ovsrec_maintenance_point *mp;
1234 const struct remote_mp *rmp;
1235
1236 mp = mon->remote_mps[i];
1237 rmp = cfm_get_remote_mp(cfm, mp->mpid);
1238
1239 ovsrec_maintenance_point_set_fault(mp, &rmp->fault, 1);
1240 }
1241
1242 if (hmap_is_empty(&cfm->x_remote_mps)) {
1243 ovsrec_monitor_set_unexpected_remote_mpids(mon, NULL, 0);
1244 } else {
1245 size_t length;
1246 struct remote_mp *rmp;
1247 int64_t *x_remote_mps;
1248
1249 length = hmap_count(&cfm->x_remote_mps);
1250 x_remote_mps = xzalloc(length * sizeof *x_remote_mps);
1251
1252 i = 0;
1253 HMAP_FOR_EACH (rmp, node, &cfm->x_remote_mps) {
1254 x_remote_mps[i++] = rmp->mpid;
1255 }
1256
1257 ovsrec_monitor_set_unexpected_remote_mpids(mon, x_remote_mps, length);
1258 free(x_remote_mps);
1259 }
1260
1261 if (hmap_is_empty(&cfm->x_remote_maids)) {
1262 ovsrec_monitor_set_unexpected_remote_maids(mon, NULL, 0);
1263 } else {
1264 size_t length;
1265 char **x_remote_maids;
1266 struct remote_maid *rmaid;
1267
1268 length = hmap_count(&cfm->x_remote_maids);
1269 x_remote_maids = xzalloc(length * sizeof *x_remote_maids);
1270
1271 i = 0;
1272 HMAP_FOR_EACH (rmaid, node, &cfm->x_remote_maids) {
1273 size_t j;
1274
1275 x_remote_maids[i] = xzalloc(CCM_MAID_LEN * 2 + 1);
1276
1277 for (j = 0; j < CCM_MAID_LEN; j++) {
1278 snprintf(&x_remote_maids[i][j * 2], 3, "%02hhx",
1279 rmaid->maid[j]);
1280 }
1281 i++;
1282 }
1283 ovsrec_monitor_set_unexpected_remote_maids(mon, x_remote_maids, length);
1284
1285 for (i = 0; i < length; i++) {
1286 free(x_remote_maids[i]);
1287 }
1288 free(x_remote_maids);
1289 }
1290
1291 ovsrec_monitor_set_fault(mon, &cfm->fault, 1);
1292}
1293
018f1525
BP
1294static void
1295iface_refresh_stats(struct iface *iface)
1296{
1297 struct iface_stat {
1298 char *name;
1299 int offset;
1300 };
1301 static const struct iface_stat iface_stats[] = {
1302 { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1303 { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1304 { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1305 { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1306 { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1307 { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1308 { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1309 { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1310 { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1311 { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1312 { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1313 { "collisions", offsetof(struct netdev_stats, collisions) },
1314 };
1315 enum { N_STATS = ARRAY_SIZE(iface_stats) };
1316 const struct iface_stat *s;
1317
1318 char *keys[N_STATS];
1319 int64_t values[N_STATS];
1320 int n;
1321
1322 struct netdev_stats stats;
1323
1324 /* Intentionally ignore return value, since errors will set 'stats' to
1325 * all-1s, and we will deal with that correctly below. */
1326 netdev_get_stats(iface->netdev, &stats);
1327
1328 n = 0;
1329 for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1330 uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1331 if (value != UINT64_MAX) {
1332 keys[n] = s->name;
1333 values[n] = value;
1334 n++;
1335 }
1336 }
1337
1338 ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1339}
1340
ce887677
BP
1341static void
1342refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1343{
1344 struct ovsdb_datum datum;
1345 struct shash stats;
1346
1347 shash_init(&stats);
1348 get_system_stats(&stats);
1349
1350 ovsdb_datum_from_shash(&datum, &stats);
1351 ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1352 &datum);
1353}
1354
bffc0589
AE
1355static inline const char *
1356nx_role_to_str(enum nx_role role)
1357{
1358 switch (role) {
1359 case NX_ROLE_OTHER:
1360 return "other";
1361 case NX_ROLE_MASTER:
1362 return "master";
1363 case NX_ROLE_SLAVE:
1364 return "slave";
1365 default:
1366 return "*** INVALID ROLE ***";
1367 }
1368}
1369
1370static void
1371bridge_refresh_controller_status(const struct bridge *br)
1372{
1373 struct shash info;
1374 const struct ovsrec_controller *cfg;
1375
1376 ofproto_get_ofproto_controller_info(br->ofproto, &info);
1377
1378 OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
eb9b8307
AE
1379 struct ofproto_controller_info *cinfo =
1380 shash_find_data(&info, cfg->target);
1381
1382 if (cinfo) {
1383 ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1384 ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1385 ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1386 (char **) cinfo->pairs.values,
1387 cinfo->pairs.n);
1388 } else {
1389 ovsrec_controller_set_is_connected(cfg, false);
1390 ovsrec_controller_set_role(cfg, NULL);
1391 ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1392 }
bffc0589
AE
1393 }
1394
1395 ofproto_free_ofproto_controller_info(&info);
1396}
1397
c5187f17 1398void
064af421
BP
1399bridge_run(void)
1400{
d54ff998
BP
1401 const struct ovsrec_open_vswitch *cfg;
1402
c5187f17 1403 bool datapath_destroyed;
d54ff998 1404 bool database_changed;
c5187f17 1405 struct bridge *br;
064af421 1406
c5187f17
BP
1407 /* Let each bridge do the work that it needs to do. */
1408 datapath_destroyed = false;
4e8e4213 1409 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
1410 int error = bridge_run_one(br);
1411 if (error) {
1412 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1413 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1414 "forcing reconfiguration", br->name);
c5187f17
BP
1415 datapath_destroyed = true;
1416 }
1417 }
1418
1419 /* (Re)configure if necessary. */
d54ff998
BP
1420 database_changed = ovsdb_idl_run(idl);
1421 cfg = ovsrec_open_vswitch_first(idl);
d6da96ce
BP
1422#ifdef HAVE_OPENSSL
1423 /* Re-configure SSL. We do this on every trip through the main loop,
1424 * instead of just when the database changes, because the contents of the
1425 * key and certificate files can change without the database changing.
1426 *
1427 * We do this before bridge_reconfigure() because that function might
1428 * initiate SSL connections and thus requires SSL to be configured. */
1429 if (cfg && cfg->ssl) {
1430 const struct ovsrec_ssl *ssl = cfg->ssl;
1431
1432 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1433 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1434 }
1435#endif
d54ff998 1436 if (database_changed || datapath_destroyed) {
c5187f17
BP
1437 if (cfg) {
1438 struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1439
1440 bridge_configure_once(cfg);
1441 bridge_reconfigure(cfg);
1442
1443 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1444 ovsdb_idl_txn_commit(txn);
1445 ovsdb_idl_txn_destroy(txn); /* XXX */
1e0b752d
BP
1446 } else {
1447 /* We still need to reconfigure to avoid dangling pointers to
1448 * now-destroyed ovsrec structures inside bridge data. */
1449 static const struct ovsrec_open_vswitch null_cfg;
1450
1451 bridge_reconfigure(&null_cfg);
064af421
BP
1452 }
1453 }
018f1525 1454
cd0cd65f
BP
1455 /* Refresh system and interface stats if necessary. */
1456 if (time_msec() >= stats_timer) {
ce887677
BP
1457 if (cfg) {
1458 struct ovsdb_idl_txn *txn;
018f1525 1459
ce887677 1460 txn = ovsdb_idl_txn_create(idl);
4e8e4213 1461 LIST_FOR_EACH (br, node, &all_bridges) {
ce887677 1462 size_t i;
018f1525 1463
ce887677
BP
1464 for (i = 0; i < br->n_ports; i++) {
1465 struct port *port = br->ports[i];
1466 size_t j;
018f1525 1467
ce887677
BP
1468 for (j = 0; j < port->n_ifaces; j++) {
1469 struct iface *iface = port->ifaces[j];
1470 iface_refresh_stats(iface);
b31bcf60 1471 iface_refresh_cfm_stats(iface);
ea763e0e 1472 iface_refresh_status(iface);
ce887677 1473 }
018f1525 1474 }
bffc0589 1475 bridge_refresh_controller_status(br);
018f1525 1476 }
ce887677
BP
1477 refresh_system_stats(cfg);
1478 ovsdb_idl_txn_commit(txn);
1479 ovsdb_idl_txn_destroy(txn); /* XXX */
018f1525 1480 }
018f1525 1481
cd0cd65f 1482 stats_timer = time_msec() + STATS_INTERVAL;
018f1525 1483 }
064af421
BP
1484}
1485
1486void
1487bridge_wait(void)
1488{
1489 struct bridge *br;
b31bcf60 1490 struct iface *iface;
064af421 1491
4e8e4213 1492 LIST_FOR_EACH (br, node, &all_bridges) {
064af421 1493 ofproto_wait(br->ofproto);
7d674866 1494 if (ofproto_has_primary_controller(br->ofproto)) {
064af421
BP
1495 continue;
1496 }
1497
93dfc067 1498 mac_learning_wait(br->ml);
c25c91fd 1499 lacp_wait(br);
064af421 1500 bond_wait(br);
b31bcf60
EJ
1501
1502 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1503 if (iface->cfm) {
1504 cfm_wait(iface->cfm);
1505 }
1506 }
064af421 1507 }
c5187f17 1508 ovsdb_idl_wait(idl);
cd0cd65f 1509 poll_timer_wait_until(stats_timer);
064af421
BP
1510}
1511
1512/* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
1513 * configuration changes. */
1514static void
1515bridge_flush(struct bridge *br)
1516{
1517 COVERAGE_INC(bridge_flush);
1518 br->flush = true;
93dfc067 1519 mac_learning_flush(br->ml);
064af421 1520}
07c318f4
BP
1521
1522/* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1523 * such interface. */
1524static struct iface *
1525bridge_get_local_iface(struct bridge *br)
1526{
1527 size_t i, j;
1528
1529 for (i = 0; i < br->n_ports; i++) {
1530 struct port *port = br->ports[i];
1531 for (j = 0; j < port->n_ifaces; j++) {
1532 struct iface *iface = port->ifaces[j];
1533 if (iface->dp_ifidx == ODPP_LOCAL) {
1534 return iface;
1535 }
1536 }
1537 }
1538
1539 return NULL;
1540}
064af421 1541\f
8c4c1387
BP
1542/* Bridge unixctl user interface functions. */
1543static void
8ca79daa 1544bridge_unixctl_fdb_show(struct unixctl_conn *conn,
c69ee87c 1545 const char *args, void *aux OVS_UNUSED)
8c4c1387
BP
1546{
1547 struct ds ds = DS_EMPTY_INITIALIZER;
1548 const struct bridge *br;
93dfc067 1549 const struct mac_entry *e;
8c4c1387
BP
1550
1551 br = bridge_lookup(args);
1552 if (!br) {
1553 unixctl_command_reply(conn, 501, "no such bridge");
1554 return;
1555 }
1556
1557 ds_put_cstr(&ds, " port VLAN MAC Age\n");
4e8e4213 1558 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
93dfc067
JG
1559 if (e->port < 0 || e->port >= br->n_ports) {
1560 continue;
8c4c1387 1561 }
93dfc067
JG
1562 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1563 br->ports[e->port]->ifaces[0]->dp_ifidx,
1564 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
8c4c1387
BP
1565 }
1566 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1567 ds_destroy(&ds);
1568}
1569\f
064af421 1570/* Bridge reconfiguration functions. */
064af421 1571static struct bridge *
1a6f1e2a 1572bridge_create(const struct ovsrec_bridge *br_cfg)
064af421
BP
1573{
1574 struct bridge *br;
1575 int error;
1576
1a6f1e2a 1577 assert(!bridge_lookup(br_cfg->name));
ec6fde61 1578 br = xzalloc(sizeof *br);
064af421 1579
1a6f1e2a
JG
1580 error = dpif_create_and_open(br_cfg->name, br_cfg->datapath_type,
1581 &br->dpif);
efacbce6 1582 if (error) {
064af421
BP
1583 free(br);
1584 return NULL;
1585 }
efacbce6 1586 dpif_flow_flush(br->dpif);
064af421 1587
1a6f1e2a
JG
1588 error = ofproto_create(br_cfg->name, br_cfg->datapath_type, &bridge_ofhooks,
1589 br, &br->ofproto);
064af421 1590 if (error) {
1a6f1e2a
JG
1591 VLOG_ERR("failed to create switch %s: %s", br_cfg->name,
1592 strerror(error));
c228a364
BP
1593 dpif_delete(br->dpif);
1594 dpif_close(br->dpif);
064af421
BP
1595 free(br);
1596 return NULL;
1597 }
1598
1a6f1e2a
JG
1599 br->name = xstrdup(br_cfg->name);
1600 br->cfg = br_cfg;
064af421 1601 br->ml = mac_learning_create();
70150daf 1602 eth_addr_nicira_random(br->default_ea);
064af421 1603
d9a8717a 1604 hmap_init(&br->ifaces);
064af421 1605
836fad5e 1606 shash_init(&br->port_by_name);
4a1ee6ae
BP
1607 shash_init(&br->iface_by_name);
1608
064af421 1609 br->flush = false;
064af421
BP
1610
1611 list_push_back(&all_bridges, &br->node);
1612
c228a364 1613 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
064af421
BP
1614
1615 return br;
1616}
1617
1618static void
1619bridge_destroy(struct bridge *br)
1620{
1621 if (br) {
1622 int error;
1623
1624 while (br->n_ports > 0) {
1625 port_destroy(br->ports[br->n_ports - 1]);
1626 }
1627 list_remove(&br->node);
c228a364 1628 error = dpif_delete(br->dpif);
064af421 1629 if (error && error != ENOENT) {
b29ba128 1630 VLOG_ERR("failed to delete %s: %s",
c228a364 1631 dpif_name(br->dpif), strerror(error));
064af421 1632 }
c228a364 1633 dpif_close(br->dpif);
064af421 1634 ofproto_destroy(br->ofproto);
064af421 1635 mac_learning_destroy(br->ml);
d9a8717a 1636 hmap_destroy(&br->ifaces);
836fad5e 1637 shash_destroy(&br->port_by_name);
4a1ee6ae 1638 shash_destroy(&br->iface_by_name);
064af421
BP
1639 free(br->ports);
1640 free(br->name);
1641 free(br);
1642 }
1643}
1644
1645static struct bridge *
1646bridge_lookup(const char *name)
1647{
1648 struct bridge *br;
1649
4e8e4213 1650 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
1651 if (!strcmp(br->name, name)) {
1652 return br;
1653 }
1654 }
1655 return NULL;
1656}
1657
4f2cad2c
JP
1658/* Handle requests for a listing of all flows known by the OpenFlow
1659 * stack, including those normally hidden. */
1660static void
8ca79daa 1661bridge_unixctl_dump_flows(struct unixctl_conn *conn,
c69ee87c 1662 const char *args, void *aux OVS_UNUSED)
4f2cad2c
JP
1663{
1664 struct bridge *br;
1665 struct ds results;
d295e8e9 1666
4f2cad2c
JP
1667 br = bridge_lookup(args);
1668 if (!br) {
1669 unixctl_command_reply(conn, 501, "Unknown bridge");
1670 return;
1671 }
1672
1673 ds_init(&results);
1674 ofproto_get_all_flows(br->ofproto, &results);
1675
1676 unixctl_command_reply(conn, 200, ds_cstr(&results));
1677 ds_destroy(&results);
1678}
1679
fa05809b
BP
1680/* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1681 * connections and reconnect. If BRIDGE is not specified, then all bridges
1682 * drop their controller connections and reconnect. */
1683static void
1684bridge_unixctl_reconnect(struct unixctl_conn *conn,
1685 const char *args, void *aux OVS_UNUSED)
1686{
1687 struct bridge *br;
1688 if (args[0] != '\0') {
1689 br = bridge_lookup(args);
1690 if (!br) {
1691 unixctl_command_reply(conn, 501, "Unknown bridge");
1692 return;
1693 }
1694 ofproto_reconnect_controllers(br->ofproto);
1695 } else {
4e8e4213 1696 LIST_FOR_EACH (br, node, &all_bridges) {
fa05809b
BP
1697 ofproto_reconnect_controllers(br->ofproto);
1698 }
1699 }
1700 unixctl_command_reply(conn, 200, NULL);
1701}
1702
064af421
BP
1703static int
1704bridge_run_one(struct bridge *br)
1705{
1706 int error;
b31bcf60 1707 struct iface *iface;
064af421
BP
1708
1709 error = ofproto_run1(br->ofproto);
1710 if (error) {
1711 return error;
1712 }
1713
93dfc067 1714 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
c25c91fd 1715 lacp_run(br);
064af421 1716 bond_run(br);
064af421
BP
1717
1718 error = ofproto_run2(br->ofproto, br->flush);
1719 br->flush = false;
1720
b31bcf60
EJ
1721 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1722 struct ofpbuf *packet;
1723
1724 if (!iface->cfm) {
1725 continue;
1726 }
1727
1728 packet = cfm_run(iface->cfm);
1729 if (packet) {
1730 iface_send_packet(iface, packet);
1731 ofpbuf_uninit(packet);
1732 free(packet);
1733 }
1734 }
1735
064af421
BP
1736 return error;
1737}
1738
76ce9432 1739static size_t
1a048029 1740bridge_get_controllers(const struct bridge *br,
76ce9432 1741 struct ovsrec_controller ***controllersp)
064af421 1742{
76ce9432
BP
1743 struct ovsrec_controller **controllers;
1744 size_t n_controllers;
064af421 1745
1a048029
JP
1746 controllers = br->cfg->controller;
1747 n_controllers = br->cfg->n_controller;
76343538 1748
76ce9432
BP
1749 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1750 controllers = NULL;
1751 n_controllers = 0;
064af421 1752 }
76343538 1753
76ce9432
BP
1754 if (controllersp) {
1755 *controllersp = controllers;
1756 }
1757 return n_controllers;
064af421
BP
1758}
1759
1760static void
1a048029 1761bridge_reconfigure_one(struct bridge *br)
064af421 1762{
76343538 1763 struct shash old_ports, new_ports;
064af421 1764 struct svec snoops, old_snoops;
76343538 1765 struct shash_node *node;
31681a5d 1766 enum ofproto_fail_mode fail_mode;
6ae39834 1767 size_t i;
064af421
BP
1768
1769 /* Collect old ports. */
76343538 1770 shash_init(&old_ports);
064af421 1771 for (i = 0; i < br->n_ports; i++) {
76343538 1772 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
064af421 1773 }
064af421
BP
1774
1775 /* Collect new ports. */
76343538
BP
1776 shash_init(&new_ports);
1777 for (i = 0; i < br->cfg->n_ports; i++) {
1778 const char *name = br->cfg->ports[i]->name;
1779 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1780 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1781 br->name, name);
1782 }
1783 }
e073f944
BP
1784
1785 /* If we have a controller, then we need a local port. Complain if the
1786 * user didn't specify one.
1787 *
1788 * XXX perhaps we should synthesize a port ourselves in this case. */
1a048029 1789 if (bridge_get_controllers(br, NULL)) {
72865317
BP
1790 char local_name[IF_NAMESIZE];
1791 int error;
1792
1793 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1794 local_name, sizeof local_name);
e073f944
BP
1795 if (!error && !shash_find(&new_ports, local_name)) {
1796 VLOG_WARN("bridge %s: controller specified but no local port "
1797 "(port named %s) defined",
1798 br->name, local_name);
72865317 1799 }
064af421 1800 }
064af421 1801
4a1ee6ae
BP
1802 /* Get rid of deleted ports.
1803 * Get rid of deleted interfaces on ports that still exist. */
76343538 1804 SHASH_FOR_EACH (node, &old_ports) {
4a1ee6ae
BP
1805 struct port *port = node->data;
1806 const struct ovsrec_port *port_cfg;
1807
1808 port_cfg = shash_find_data(&new_ports, node->name);
1809 if (!port_cfg) {
1810 port_destroy(port);
1811 } else {
1812 port_del_ifaces(port, port_cfg);
064af421
BP
1813 }
1814 }
4a1ee6ae
BP
1815
1816 /* Create new ports.
1817 * Add new interfaces to existing ports.
1818 * Reconfigure existing ports. */
76343538
BP
1819 SHASH_FOR_EACH (node, &new_ports) {
1820 struct port *port = shash_find_data(&old_ports, node->name);
1821 if (!port) {
1822 port = port_create(br, node->name);
064af421 1823 }
ceb4559f 1824
76343538 1825 port_reconfigure(port, node->data);
ceb4559f
JG
1826 if (!port->n_ifaces) {
1827 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1828 br->name, port->name);
1829 port_destroy(port);
1830 }
064af421 1831 }
76343538
BP
1832 shash_destroy(&old_ports);
1833 shash_destroy(&new_ports);
064af421 1834
31681a5d
JP
1835 /* Set the fail-mode */
1836 fail_mode = !br->cfg->fail_mode
1837 || !strcmp(br->cfg->fail_mode, "standalone")
1838 ? OFPROTO_FAIL_STANDALONE
1839 : OFPROTO_FAIL_SECURE;
7d674866
BP
1840 if (ofproto_get_fail_mode(br->ofproto) != fail_mode
1841 && !ofproto_has_primary_controller(br->ofproto)) {
abdfe474
JP
1842 ofproto_flush_flows(br->ofproto);
1843 }
31681a5d
JP
1844 ofproto_set_fail_mode(br->ofproto, fail_mode);
1845
064af421
BP
1846 /* Delete all flows if we're switching from connected to standalone or vice
1847 * versa. (XXX Should we delete all flows if we are switching from one
1848 * controller to another?) */
1849
5a243150 1850 /* Configure OpenFlow controller connection snooping. */
76343538
BP
1851 svec_init(&snoops);
1852 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
b43c6fe2 1853 ovs_rundir(), br->name));
76343538
BP
1854 svec_init(&old_snoops);
1855 ofproto_get_snoops(br->ofproto, &old_snoops);
1856 if (!svec_equal(&snoops, &old_snoops)) {
1857 ofproto_set_snoops(br->ofproto, &snoops);
1858 }
1859 svec_destroy(&snoops);
1860 svec_destroy(&old_snoops);
76343538 1861
064af421
BP
1862 mirror_reconfigure(br);
1863}
1864
7d674866
BP
1865/* Initializes 'oc' appropriately as a management service controller for
1866 * 'br'.
1867 *
1868 * The caller must free oc->target when it is no longer needed. */
1869static void
1870bridge_ofproto_controller_for_mgmt(const struct bridge *br,
1871 struct ofproto_controller *oc)
1872{
b43c6fe2 1873 oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
7d674866
BP
1874 oc->max_backoff = 0;
1875 oc->probe_interval = 60;
1876 oc->band = OFPROTO_OUT_OF_BAND;
1877 oc->accept_re = NULL;
1878 oc->update_resolv_conf = false;
1879 oc->rate_limit = 0;
1880 oc->burst_limit = 0;
1881}
1882
1883/* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */
1884static void
1885bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
1886 struct ofproto_controller *oc)
1887{
1888 oc->target = c->target;
1889 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1890 oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1891 oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
1892 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
1893 oc->accept_re = c->discover_accept_regex;
1894 oc->update_resolv_conf = c->discover_update_resolv_conf;
1895 oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1896 oc->burst_limit = (c->controller_burst_limit
1897 ? *c->controller_burst_limit : 0);
1898}
1899
1900/* Configures the IP stack for 'br''s local interface properly according to the
1901 * configuration in 'c'. */
1902static void
1903bridge_configure_local_iface_netdev(struct bridge *br,
1904 struct ovsrec_controller *c)
1905{
1906 struct netdev *netdev;
1907 struct in_addr mask, gateway;
1908
1909 struct iface *local_iface;
1910 struct in_addr ip;
1911
1912 /* Controller discovery does its own TCP/IP configuration later. */
1913 if (strcmp(c->target, "discover")) {
1914 return;
1915 }
1916
1917 /* If there's no local interface or no IP address, give up. */
1918 local_iface = bridge_get_local_iface(br);
1919 if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
1920 return;
1921 }
1922
1923 /* Bring up the local interface. */
1924 netdev = local_iface->netdev;
1925 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1926
1927 /* Configure the IP address and netmask. */
1928 if (!c->local_netmask
1929 || !inet_aton(c->local_netmask, &mask)
1930 || !mask.s_addr) {
1931 mask.s_addr = guess_netmask(ip.s_addr);
1932 }
1933 if (!netdev_set_in4(netdev, ip, mask)) {
1934 VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
1935 br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
1936 }
1937
1938 /* Configure the default gateway. */
1939 if (c->local_gateway
1940 && inet_aton(c->local_gateway, &gateway)
1941 && gateway.s_addr) {
1942 if (!netdev_add_router(netdev, gateway)) {
1943 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1944 br->name, IP_ARGS(&gateway.s_addr));
1945 }
1946 }
1947}
1948
064af421 1949static void
1a048029 1950bridge_reconfigure_remotes(struct bridge *br,
11bbff1b
BP
1951 const struct sockaddr_in *managers,
1952 size_t n_managers)
064af421 1953{
b1da6250
BP
1954 const char *disable_ib_str, *queue_id_str;
1955 bool disable_in_band = false;
1956 int queue_id;
1957
76ce9432
BP
1958 struct ovsrec_controller **controllers;
1959 size_t n_controllers;
7d674866
BP
1960 bool had_primary;
1961
1962 struct ofproto_controller *ocs;
1963 size_t n_ocs;
1964 size_t i;
064af421 1965
8731b2b6
JP
1966 /* Check if we should disable in-band control on this bridge. */
1967 disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
1968 if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
1969 disable_in_band = true;
1970 }
1971
b1da6250
BP
1972 /* Set OpenFlow queue ID for in-band control. */
1973 queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
1974 queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
1975 ofproto_set_in_band_queue(br->ofproto, queue_id);
1976
8731b2b6
JP
1977 if (disable_in_band) {
1978 ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
1979 } else {
1980 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
1981 }
7d674866 1982 had_primary = ofproto_has_primary_controller(br->ofproto);
cd11000b 1983
1a048029 1984 n_controllers = bridge_get_controllers(br, &controllers);
064af421 1985
7d674866
BP
1986 ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
1987 n_ocs = 0;
064af421 1988
7d674866
BP
1989 bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
1990 for (i = 0; i < n_controllers; i++) {
1991 struct ovsrec_controller *c = controllers[i];
76ce9432 1992
7d674866
BP
1993 if (!strncmp(c->target, "punix:", 6)
1994 || !strncmp(c->target, "unix:", 5)) {
1995 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
76ce9432 1996
7d674866
BP
1997 /* Prevent remote ovsdb-server users from accessing arbitrary Unix
1998 * domain sockets and overwriting arbitrary local files. */
1999 VLOG_ERR_RL(&rl, "%s: not adding Unix domain socket controller "
2000 "\"%s\" due to possibility for remote exploit",
2001 dpif_name(br->dpif), c->target);
2002 continue;
2003 }
76ce9432 2004
7d674866 2005 bridge_configure_local_iface_netdev(br, c);
8731b2b6
JP
2006 bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2007 if (disable_in_band) {
2008 ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2009 }
2010 n_ocs++;
7d674866 2011 }
76ce9432 2012
7d674866
BP
2013 ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2014 free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2015 free(ocs);
064af421 2016
7d674866
BP
2017 if (had_primary != ofproto_has_primary_controller(br->ofproto)) {
2018 ofproto_flush_flows(br->ofproto);
2019 }
76ce9432 2020
7d674866
BP
2021 /* If there are no controllers and the bridge is in standalone
2022 * mode, set up a flow that matches every packet and directs
2023 * them to OFPP_NORMAL (which goes to us). Otherwise, the
2024 * switch is in secure mode and we won't pass any traffic until
2025 * a controller has been defined and it tells us to do so. */
2026 if (!n_controllers
2027 && ofproto_get_fail_mode(br->ofproto) == OFPROTO_FAIL_STANDALONE) {
2028 union ofp_action action;
cf3fad8a 2029 struct cls_rule rule;
76ce9432 2030
7d674866
BP
2031 memset(&action, 0, sizeof action);
2032 action.type = htons(OFPAT_OUTPUT);
2033 action.output.len = htons(sizeof action);
2034 action.output.port = htons(OFPP_NORMAL);
cf3fad8a 2035 cls_rule_init_catchall(&rule, 0);
fa8b054f 2036 ofproto_add_flow(br->ofproto, &rule, &action, 1);
064af421 2037 }
064af421
BP
2038}
2039
2040static void
76343538 2041bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
064af421
BP
2042{
2043 size_t i, j;
2044
76343538 2045 shash_init(ifaces);
064af421
BP
2046 for (i = 0; i < br->n_ports; i++) {
2047 struct port *port = br->ports[i];
2048 for (j = 0; j < port->n_ifaces; j++) {
2049 struct iface *iface = port->ifaces[j];
76343538 2050 shash_add_once(ifaces, iface->name, iface);
064af421 2051 }
76343538
BP
2052 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
2053 shash_add_once(ifaces, port->name, NULL);
35c979bf 2054 }
064af421 2055 }
064af421
BP
2056}
2057
2058/* For robustness, in case the administrator moves around datapath ports behind
2059 * our back, we re-check all the datapath port numbers here.
2060 *
2061 * This function will set the 'dp_ifidx' members of interfaces that have
2062 * disappeared to -1, so only call this function from a context where those
2063 * 'struct iface's will be removed from the bridge. Otherwise, the -1
2064 * 'dp_ifidx'es will cause trouble later when we try to send them to the
2065 * datapath, which doesn't support UINT16_MAX+1 ports. */
2066static void
2067bridge_fetch_dp_ifaces(struct bridge *br)
2068{
b0ec0f27 2069 struct dpif_port_dump dump;
4c738a8d 2070 struct dpif_port dpif_port;
064af421
BP
2071 size_t i, j;
2072
2073 /* Reset all interface numbers. */
2074 for (i = 0; i < br->n_ports; i++) {
2075 struct port *port = br->ports[i];
2076 for (j = 0; j < port->n_ifaces; j++) {
2077 struct iface *iface = port->ifaces[j];
2078 iface->dp_ifidx = -1;
2079 }
2080 }
d9a8717a 2081 hmap_clear(&br->ifaces);
064af421 2082
4c738a8d
BP
2083 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
2084 struct iface *iface = iface_lookup(br, dpif_port.name);
064af421
BP
2085 if (iface) {
2086 if (iface->dp_ifidx >= 0) {
b29ba128 2087 VLOG_WARN("%s reported interface %s twice",
4c738a8d
BP
2088 dpif_name(br->dpif), dpif_port.name);
2089 } else if (iface_from_dp_ifidx(br, dpif_port.port_no)) {
b29ba128 2090 VLOG_WARN("%s reported interface %"PRIu16" twice",
4c738a8d 2091 dpif_name(br->dpif), dpif_port.port_no);
064af421 2092 } else {
4c738a8d 2093 iface->dp_ifidx = dpif_port.port_no;
d9a8717a
BP
2094 hmap_insert(&br->ifaces, &iface->dp_ifidx_node,
2095 hash_int(iface->dp_ifidx, 0));
064af421 2096 }
093e47f4 2097
bcd49a45
BP
2098 iface_set_ofport(iface->cfg,
2099 (iface->dp_ifidx >= 0
2100 ? odp_port_to_ofp_port(iface->dp_ifidx)
2101 : -1));
064af421
BP
2102 }
2103 }
064af421
BP
2104}
2105\f
2106/* Bridge packet processing functions. */
2107
9f5073d8
EJ
2108static bool
2109bond_is_tcp_hash(const struct port *port)
2110{
2111 return port->bond_mode == BM_TCP && port->lacp & LACP_NEGOTIATED;
2112}
2113
da285df4 2114static int
9f5073d8 2115bond_hash_src(const uint8_t mac[ETH_ADDR_LEN], uint16_t vlan)
da285df4 2116{
e58de0e3 2117 return hash_bytes(mac, ETH_ADDR_LEN, vlan) & BOND_MASK;
da285df4
BP
2118}
2119
9f5073d8
EJ
2120static int bond_hash_tcp(const struct flow *flow, uint16_t vlan)
2121{
2122 struct flow hash_flow;
2123
2124 memcpy(&hash_flow, flow, sizeof hash_flow);
2125 hash_flow.vlan_tci = 0;
2126
2127 /* The symmetric quality of this hash function is not required, but
2128 * flow_hash_symmetric_l4 already exists, and is sufficient for our
2129 * purposes, so we use it out of convenience. */
2130 return flow_hash_symmetric_l4(&hash_flow, vlan) & BOND_MASK;
2131}
2132
064af421 2133static struct bond_entry *
9f5073d8 2134lookup_bond_entry(const struct port *port, const struct flow *flow,
e58de0e3 2135 uint16_t vlan)
064af421 2136{
9f5073d8
EJ
2137 assert(port->bond_mode != BM_AB);
2138
2139 if (bond_is_tcp_hash(port)) {
2140 return &port->bond_hash[bond_hash_tcp(flow, vlan)];
2141 } else {
2142 return &port->bond_hash[bond_hash_src(flow->dl_src, vlan)];
2143 }
064af421
BP
2144}
2145
2146static int
2147bond_choose_iface(const struct port *port)
2148{
8b2a2f4a
JG
2149 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2150 size_t i, best_down_slave = -1;
2151 long long next_delay_expiration = LLONG_MAX;
2152
064af421 2153 for (i = 0; i < port->n_ifaces; i++) {
8b2a2f4a
JG
2154 struct iface *iface = port->ifaces[i];
2155
2156 if (iface->enabled) {
064af421 2157 return i;
c25c91fd 2158 } else if (iface->delay_expires < next_delay_expiration
cd482758 2159 && (iface->lacp_status & LACP_ATTACHED
c25c91fd 2160 || !(port->lacp & LACP_NEGOTIATED))) {
8b2a2f4a
JG
2161 best_down_slave = i;
2162 next_delay_expiration = iface->delay_expires;
064af421
BP
2163 }
2164 }
8b2a2f4a
JG
2165
2166 if (best_down_slave != -1) {
2167 struct iface *iface = port->ifaces[best_down_slave];
2168
2169 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
2170 "since no other interface is up", iface->name,
2171 iface->delay_expires - time_msec());
2172 bond_enable_slave(iface, true);
2173 }
2174
2175 return best_down_slave;
064af421
BP
2176}
2177
2178static bool
9f5073d8 2179choose_output_iface(const struct port *port, const struct flow *flow,
e58de0e3 2180 uint16_t vlan, uint16_t *dp_ifidx, tag_type *tags)
064af421
BP
2181{
2182 struct iface *iface;
2183
2184 assert(port->n_ifaces);
2185 if (port->n_ifaces == 1) {
2186 iface = port->ifaces[0];
27dcaa1a 2187 } else if (port->bond_mode == BM_AB) {
be02e7c3
EJ
2188 if (port->active_iface < 0) {
2189 *tags |= port->no_ifaces_tag;
2190 return false;
2191 }
2192 iface = port->ifaces[port->active_iface];
9f5073d8
EJ
2193 } else {
2194 struct bond_entry *e = lookup_bond_entry(port, flow, vlan);
064af421
BP
2195 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
2196 || !port->ifaces[e->iface_idx]->enabled) {
2197 /* XXX select interface properly. The current interface selection
2198 * is only good for testing the rebalancing code. */
2199 e->iface_idx = bond_choose_iface(port);
2200 if (e->iface_idx < 0) {
2201 *tags |= port->no_ifaces_tag;
2202 return false;
2203 }
2204 e->iface_tag = tag_create_random();
2205 }
2206 *tags |= e->iface_tag;
2207 iface = port->ifaces[e->iface_idx];
2208 }
2209 *dp_ifidx = iface->dp_ifidx;
2210 *tags |= iface->tag; /* Currently only used for bonding. */
2211 return true;
2212}
2213
2214static void
c835c3bf 2215bond_link_status_update(struct iface *iface)
064af421
BP
2216{
2217 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2218 struct port *port = iface->port;
c25c91fd
EJ
2219 bool up = iface->up;
2220 int updelay, downdelay;
2221
2222 updelay = port->updelay;
2223 downdelay = port->downdelay;
2224
2225 if (iface->port->lacp & LACP_NEGOTIATED) {
2226 downdelay = 0;
2227 updelay = 0;
2228 }
2229
2230 if (iface->port->lacp && up) {
2231 /* The interface is up if it's attached to an aggregator and its
2232 * partner is synchronized. The only exception is defaulted links.
2233 * They are not required to have synchronized partners because they
2234 * have no partners at all. However, they will only be attached if
2235 * negotiations failed on all interfaces in the bond. */
cd482758 2236 up = iface->lacp_status & LACP_ATTACHED
c25c91fd 2237 && (iface->lacp_partner.state & LACP_STATE_SYNC
cd482758 2238 || iface->lacp_status & LACP_DEFAULTED);
c25c91fd
EJ
2239 }
2240
064af421 2241
c25c91fd 2242 if ((up == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
064af421
BP
2243 /* Nothing to do. */
2244 return;
2245 }
63331829 2246 VLOG_INFO_RL(&rl, "interface %s: link state %s",
c25c91fd
EJ
2247 iface->name, up ? "up" : "down");
2248 if (up == iface->enabled) {
064af421
BP
2249 iface->delay_expires = LLONG_MAX;
2250 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
c25c91fd
EJ
2251 iface->name, up ? "disabled" : "enabled");
2252 } else if (up && port->active_iface < 0) {
8b2a2f4a 2253 bond_enable_slave(iface, true);
c25c91fd 2254 if (updelay) {
8b2a2f4a 2255 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
c25c91fd 2256 "other interface is up", iface->name, updelay);
8b2a2f4a 2257 }
064af421 2258 } else {
c25c91fd 2259 int delay = up ? updelay : downdelay;
064af421
BP
2260 iface->delay_expires = time_msec() + delay;
2261 if (delay) {
2262 VLOG_INFO_RL(&rl,
2263 "interface %s: will be %s if it stays %s for %d ms",
2264 iface->name,
c25c91fd
EJ
2265 up ? "enabled" : "disabled",
2266 up ? "up" : "down",
064af421
BP
2267 delay);
2268 }
2269 }
2270}
2271
2272static void
2273bond_choose_active_iface(struct port *port)
2274{
2275 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2276
2277 port->active_iface = bond_choose_iface(port);
2278 port->active_iface_tag = tag_create_random();
2279 if (port->active_iface >= 0) {
2280 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
2281 port->name, port->ifaces[port->active_iface]->name);
2282 } else {
2283 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
2284 port->name);
2285 }
2286}
2287
da285df4
BP
2288static void
2289bond_enable_slave(struct iface *iface, bool enable)
2290{
2291 struct port *port = iface->port;
2292 struct bridge *br = port->bridge;
2293
8b2a2f4a
JG
2294 /* This acts as a recursion check. If the act of disabling a slave
2295 * causes a different slave to be enabled, the flag will allow us to
2296 * skip redundant work when we reenter this function. It must be
2297 * cleared on exit to keep things safe with multiple bonds. */
2298 static bool moving_active_iface = false;
2299
da285df4
BP
2300 iface->delay_expires = LLONG_MAX;
2301 if (enable == iface->enabled) {
2302 return;
2303 }
2304
2305 iface->enabled = enable;
2306 if (!iface->enabled) {
17ea75b2 2307 VLOG_WARN("interface %s: disabled", iface->name);
da285df4
BP
2308 ofproto_revalidate(br->ofproto, iface->tag);
2309 if (iface->port_ifidx == port->active_iface) {
2310 ofproto_revalidate(br->ofproto,
2311 port->active_iface_tag);
8b2a2f4a
JG
2312
2313 /* Disabling a slave can lead to another slave being immediately
2314 * enabled if there will be no active slaves but one is waiting
2315 * on an updelay. In this case we do not need to run most of the
2316 * code for the newly enabled slave since there was no period
2317 * without an active slave and it is redundant with the disabling
2318 * path. */
2319 moving_active_iface = true;
da285df4
BP
2320 bond_choose_active_iface(port);
2321 }
2322 bond_send_learning_packets(port);
2323 } else {
17ea75b2 2324 VLOG_WARN("interface %s: enabled", iface->name);
8b2a2f4a 2325 if (port->active_iface < 0 && !moving_active_iface) {
da285df4
BP
2326 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
2327 bond_choose_active_iface(port);
2328 bond_send_learning_packets(port);
2329 }
2330 iface->tag = tag_create_random();
2331 }
8b2a2f4a
JG
2332
2333 moving_active_iface = false;
da285df4
BP
2334}
2335
8722022c
BP
2336/* Attempts to make the sum of the bond slaves' statistics appear on the fake
2337 * bond interface. */
2338static void
2339bond_update_fake_iface_stats(struct port *port)
2340{
2341 struct netdev_stats bond_stats;
2342 struct netdev *bond_dev;
2343 size_t i;
2344
2345 memset(&bond_stats, 0, sizeof bond_stats);
2346
2347 for (i = 0; i < port->n_ifaces; i++) {
2348 struct netdev_stats slave_stats;
2349
2350 if (!netdev_get_stats(port->ifaces[i]->netdev, &slave_stats)) {
f4b6076a
JG
2351 /* XXX: We swap the stats here because they are swapped back when
2352 * reported by the internal device. The reason for this is
2353 * internal devices normally represent packets going into the system
2354 * but when used as fake bond device they represent packets leaving
2355 * the system. We really should do this in the internal device
2356 * itself because changing it here reverses the counts from the
2357 * perspective of the switch. However, the internal device doesn't
2358 * know what type of device it represents so we have to do it here
2359 * for now. */
2360 bond_stats.tx_packets += slave_stats.rx_packets;
2361 bond_stats.tx_bytes += slave_stats.rx_bytes;
2362 bond_stats.rx_packets += slave_stats.tx_packets;
2363 bond_stats.rx_bytes += slave_stats.tx_bytes;
8722022c
BP
2364 }
2365 }
2366
2367 if (!netdev_open_default(port->name, &bond_dev)) {
2368 netdev_set_stats(bond_dev, &bond_stats);
2369 netdev_close(bond_dev);
2370 }
2371}
2372
c25c91fd
EJ
2373static void
2374bond_link_carrier_update(struct iface *iface, bool carrier)
2375{
2376 if (carrier == iface->up) {
2377 return;
2378 }
2379
cd482758 2380 if (iface->lacp_status & LACP_CURRENT) {
c25c91fd
EJ
2381 iface_set_lacp_expired(iface);
2382 }
2383
2384 iface->up = carrier;
2385 iface->lacp_tx = 0;
c25c91fd
EJ
2386}
2387
064af421
BP
2388static void
2389bond_run(struct bridge *br)
2390{
2391 size_t i, j;
2392
2393 for (i = 0; i < br->n_ports; i++) {
2394 struct port *port = br->ports[i];
85c74638 2395
8b2a2f4a 2396 if (port->n_ifaces >= 2) {
0bb5c3ec
BP
2397 char *devname;
2398
63331829
EJ
2399 if (port->monitor) {
2400 assert(!port->miimon);
0bb5c3ec 2401
63331829
EJ
2402 /* Track carrier going up and down on interfaces. */
2403 while (!netdev_monitor_poll(port->monitor, &devname)) {
2404 struct iface *iface;
2405
2406 iface = port_lookup_iface(port, devname);
2407 if (iface) {
2408 bool up = netdev_get_carrier(iface->netdev);
c25c91fd 2409 bond_link_carrier_update(iface, up);
63331829
EJ
2410 }
2411 free(devname);
2412 }
2413 } else {
2414 assert(port->miimon);
85da620e 2415
63331829
EJ
2416 if (time_msec() >= port->bond_miimon_next_update) {
2417 for (j = 0; j < port->n_ifaces; j++) {
2418 struct iface *iface = port->ifaces[j];
2419 bool up = netdev_get_miimon(iface->netdev);
c25c91fd 2420 bond_link_carrier_update(iface, up);
63331829
EJ
2421 }
2422 port->bond_miimon_next_update = time_msec() +
2423 port->bond_miimon_interval;
0bb5c3ec 2424 }
0bb5c3ec
BP
2425 }
2426
c835c3bf
EJ
2427 for (j = 0; j < port->n_ifaces; j++) {
2428 bond_link_status_update(port->ifaces[j]);
2429 }
2430
8b2a2f4a
JG
2431 for (j = 0; j < port->n_ifaces; j++) {
2432 struct iface *iface = port->ifaces[j];
2433 if (time_msec() >= iface->delay_expires) {
2434 bond_enable_slave(iface, !iface->enabled);
2435 }
2436 }
8722022c
BP
2437
2438 if (port->bond_fake_iface
2439 && time_msec() >= port->bond_next_fake_iface_update) {
2440 bond_update_fake_iface_stats(port);
2441 port->bond_next_fake_iface_update = time_msec() + 1000;
2442 }
8b2a2f4a 2443 }
064af421
BP
2444 }
2445}
2446
2447static void
2448bond_wait(struct bridge *br)
2449{
2450 size_t i, j;
2451
2452 for (i = 0; i < br->n_ports; i++) {
2453 struct port *port = br->ports[i];
2454 if (port->n_ifaces < 2) {
2455 continue;
2456 }
63331829
EJ
2457
2458 if (port->monitor) {
2459 netdev_monitor_poll_wait(port->monitor);
2460 }
2461
2462 if (port->miimon) {
2463 poll_timer_wait_until(port->bond_miimon_next_update);
2464 }
2465
064af421
BP
2466 for (j = 0; j < port->n_ifaces; j++) {
2467 struct iface *iface = port->ifaces[j];
2468 if (iface->delay_expires != LLONG_MAX) {
7cf8b266 2469 poll_timer_wait_until(iface->delay_expires);
064af421
BP
2470 }
2471 }
8722022c 2472 if (port->bond_fake_iface) {
7cf8b266 2473 poll_timer_wait_until(port->bond_next_fake_iface_update);
8722022c 2474 }
064af421
BP
2475 }
2476}
2477
2478static bool
0c62a7ad 2479set_dst(struct dst *dst, const struct flow *flow,
064af421
BP
2480 const struct port *in_port, const struct port *out_port,
2481 tag_type *tags)
2482{
0c62a7ad 2483 dst->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
064af421 2484 : in_port->vlan >= 0 ? in_port->vlan
66642cb4
BP
2485 : flow->vlan_tci == 0 ? OFP_VLAN_NONE
2486 : vlan_tci_to_vid(flow->vlan_tci));
9f5073d8 2487 return choose_output_iface(out_port, flow, dst->vlan,
0c62a7ad 2488 &dst->dp_ifidx, tags);
064af421
BP
2489}
2490
2491static void
2492swap_dst(struct dst *p, struct dst *q)
2493{
2494 struct dst tmp = *p;
2495 *p = *q;
2496 *q = tmp;
2497}
2498
2499/* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
2500 * 'dsts'. (This may help performance by reducing the number of VLAN changes
2501 * that we push to the datapath. We could in fact fully sort the array by
2502 * vlan, but in most cases there are at most two different vlan tags so that's
2503 * possibly overkill.) */
2504static void
0c62a7ad 2505partition_dsts(struct dst_set *set, int vlan)
064af421 2506{
0c62a7ad
BP
2507 struct dst *first = set->dsts;
2508 struct dst *last = set->dsts + set->n;
064af421
BP
2509
2510 while (first != last) {
2511 /* Invariants:
2512 * - All dsts < first have vlan == 'vlan'.
2513 * - All dsts >= last have vlan != 'vlan'.
2514 * - first < last. */
2515 while (first->vlan == vlan) {
2516 if (++first == last) {
2517 return;
2518 }
2519 }
2520
2521 /* Same invariants, plus one additional:
2522 * - first->vlan != vlan.
2523 */
2524 while (last[-1].vlan != vlan) {
2525 if (--last == first) {
2526 return;
2527 }
2528 }
2529
2530 /* Same invariants, plus one additional:
2531 * - last[-1].vlan == vlan.*/
2532 swap_dst(first++, --last);
2533 }
2534}
2535
2536static int
2537mirror_mask_ffs(mirror_mask_t mask)
2538{
2539 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
2540 return ffs(mask);
2541}
2542
0c62a7ad
BP
2543static void
2544dst_set_init(struct dst_set *set)
2545{
2546 set->dsts = set->builtin;
2547 set->n = 0;
2548 set->allocated = ARRAY_SIZE(set->builtin);
2549}
2550
2551static void
2552dst_set_add(struct dst_set *set, const struct dst *dst)
2553{
2554 if (set->n >= set->allocated) {
2555 size_t new_allocated;
2556 struct dst *new_dsts;
2557
2558 new_allocated = set->allocated * 2;
2559 new_dsts = xmalloc(new_allocated * sizeof *new_dsts);
2560 memcpy(new_dsts, set->dsts, set->n * sizeof *new_dsts);
2561
2562 dst_set_free(set);
2563
2564 set->dsts = new_dsts;
2565 set->allocated = new_allocated;
2566 }
2567 set->dsts[set->n++] = *dst;
2568}
2569
2570static void
2571dst_set_free(struct dst_set *set)
2572{
2573 if (set->dsts != set->builtin) {
2574 free(set->dsts);
2575 }
2576}
2577
064af421 2578static bool
0c62a7ad 2579dst_is_duplicate(const struct dst_set *set, const struct dst *test)
064af421
BP
2580{
2581 size_t i;
0c62a7ad
BP
2582 for (i = 0; i < set->n; i++) {
2583 if (set->dsts[i].vlan == test->vlan
2584 && set->dsts[i].dp_ifidx == test->dp_ifidx) {
064af421
BP
2585 return true;
2586 }
2587 }
2588 return false;
2589}
2590
2591static bool
2592port_trunks_vlan(const struct port *port, uint16_t vlan)
2593{
3e9c481c
BP
2594 return (port->vlan < 0
2595 && (!port->trunks || bitmap_is_set(port->trunks, vlan)));
064af421
BP
2596}
2597
2598static bool
2599port_includes_vlan(const struct port *port, uint16_t vlan)
2600{
2601 return vlan == port->vlan || port_trunks_vlan(port, vlan);
2602}
2603
a4e2e1f2
EJ
2604static bool
2605port_is_floodable(const struct port *port)
2606{
2607 int i;
2608
2609 for (i = 0; i < port->n_ifaces; i++) {
2610 if (!ofproto_port_is_floodable(port->bridge->ofproto,
2611 port->ifaces[i]->dp_ifidx)) {
2612 return false;
2613 }
2614 }
2615 return true;
2616}
2617
0c62a7ad 2618static void
ae412e7d 2619compose_dsts(const struct bridge *br, const struct flow *flow, uint16_t vlan,
064af421 2620 const struct port *in_port, const struct port *out_port,
0c62a7ad 2621 struct dst_set *set, tag_type *tags, uint16_t *nf_output_iface)
064af421
BP
2622{
2623 mirror_mask_t mirrors = in_port->src_mirrors;
0c62a7ad 2624 struct dst dst;
66642cb4 2625 int flow_vlan;
064af421
BP
2626 size_t i;
2627
66642cb4
BP
2628 flow_vlan = vlan_tci_to_vid(flow->vlan_tci);
2629 if (flow_vlan == 0) {
2630 flow_vlan = OFP_VLAN_NONE;
2631 }
2632
064af421 2633 if (out_port == FLOOD_PORT) {
064af421
BP
2634 for (i = 0; i < br->n_ports; i++) {
2635 struct port *port = br->ports[i];
a4e2e1f2
EJ
2636 if (port != in_port
2637 && port_is_floodable(port)
2638 && port_includes_vlan(port, vlan)
064af421 2639 && !port->is_mirror_output_port
0c62a7ad 2640 && set_dst(&dst, flow, in_port, port, tags)) {
064af421 2641 mirrors |= port->dst_mirrors;
0c62a7ad 2642 dst_set_add(set, &dst);
064af421
BP
2643 }
2644 }
6a07af36 2645 *nf_output_iface = NF_OUT_FLOOD;
0c62a7ad
BP
2646 } else if (out_port && set_dst(&dst, flow, in_port, out_port, tags)) {
2647 dst_set_add(set, &dst);
2648 *nf_output_iface = dst.dp_ifidx;
064af421 2649 mirrors |= out_port->dst_mirrors;
064af421
BP
2650 }
2651
2652 while (mirrors) {
2653 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
2654 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
2655 if (m->out_port) {
0c62a7ad
BP
2656 if (set_dst(&dst, flow, in_port, m->out_port, tags)
2657 && !dst_is_duplicate(set, &dst)) {
2658 dst_set_add(set, &dst);
064af421
BP
2659 }
2660 } else {
2661 for (i = 0; i < br->n_ports; i++) {
2662 struct port *port = br->ports[i];
2663 if (port_includes_vlan(port, m->out_vlan)
0c62a7ad 2664 && set_dst(&dst, flow, in_port, port, tags))
064af421
BP
2665 {
2666 if (port->vlan < 0) {
0c62a7ad 2667 dst.vlan = m->out_vlan;
064af421 2668 }
0c62a7ad 2669 if (dst_is_duplicate(set, &dst)) {
274de4d2
BP
2670 continue;
2671 }
43aa5f47
JG
2672
2673 /* Use the vlan tag on the original flow instead of
2674 * the one passed in the vlan parameter. This ensures
2675 * that we compare the vlan from before any implicit
2676 * tagging tags place. This is necessary because
2677 * dst->vlan is the final vlan, after removing implicit
2678 * tags. */
0c62a7ad 2679 if (port == in_port && dst.vlan == flow_vlan) {
064af421
BP
2680 /* Don't send out input port on same VLAN. */
2681 continue;
2682 }
0c62a7ad 2683 dst_set_add(set, &dst);
064af421
BP
2684 }
2685 }
2686 }
2687 }
2688 mirrors &= mirrors - 1;
2689 }
2690
0c62a7ad 2691 partition_dsts(set, flow_vlan);
064af421
BP
2692}
2693
67a4917b 2694static void OVS_UNUSED
0c62a7ad 2695print_dsts(const struct dst_set *set)
064af421 2696{
0c62a7ad
BP
2697 size_t i;
2698
2699 for (i = 0; i < set->n; i++) {
2700 const struct dst *dst = &set->dsts[i];
2701
2702 printf(">p%"PRIu16, dst->dp_ifidx);
2703 if (dst->vlan != OFP_VLAN_NONE) {
2704 printf("v%"PRIu16, dst->vlan);
064af421
BP
2705 }
2706 }
2707}
2708
2709static void
ae412e7d 2710compose_actions(struct bridge *br, const struct flow *flow, uint16_t vlan,
064af421 2711 const struct port *in_port, const struct port *out_port,
cdee00fd 2712 tag_type *tags, struct ofpbuf *actions,
6a07af36 2713 uint16_t *nf_output_iface)
064af421 2714{
0c62a7ad 2715 struct dst_set set;
064af421 2716 uint16_t cur_vlan;
0c62a7ad 2717 size_t i;
064af421 2718
0c62a7ad
BP
2719 dst_set_init(&set);
2720 compose_dsts(br, flow, vlan, in_port, out_port, &set, tags,
2721 nf_output_iface);
064af421 2722
66642cb4
BP
2723 cur_vlan = vlan_tci_to_vid(flow->vlan_tci);
2724 if (cur_vlan == 0) {
2725 cur_vlan = OFP_VLAN_NONE;
2726 }
0c62a7ad
BP
2727 for (i = 0; i < set.n; i++) {
2728 const struct dst *dst = &set.dsts[i];
2729 if (dst->vlan != cur_vlan) {
2730 if (dst->vlan == OFP_VLAN_NONE) {
7aec165d 2731 nl_msg_put_flag(actions, ODP_ACTION_ATTR_STRIP_VLAN);
064af421 2732 } else {
cdee00fd 2733 ovs_be16 tci;
0c62a7ad 2734 tci = htons(dst->vlan & VLAN_VID_MASK);
cdee00fd 2735 tci |= flow->vlan_tci & htons(VLAN_PCP_MASK);
7aec165d 2736 nl_msg_put_be16(actions, ODP_ACTION_ATTR_SET_DL_TCI, tci);
064af421 2737 }
0c62a7ad 2738 cur_vlan = dst->vlan;
064af421 2739 }
7aec165d 2740 nl_msg_put_u32(actions, ODP_ACTION_ATTR_OUTPUT, dst->dp_ifidx);
064af421 2741 }
0c62a7ad 2742 dst_set_free(&set);
064af421
BP
2743}
2744
e96a4d80
JG
2745/* Returns the effective vlan of a packet, taking into account both the
2746 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
2747 * the packet is untagged and -1 indicates it has an invalid header and
2748 * should be dropped. */
ae412e7d 2749static int flow_get_vlan(struct bridge *br, const struct flow *flow,
e96a4d80
JG
2750 struct port *in_port, bool have_packet)
2751{
66642cb4 2752 int vlan = vlan_tci_to_vid(flow->vlan_tci);
e96a4d80
JG
2753 if (in_port->vlan >= 0) {
2754 if (vlan) {
2755 /* XXX support double tagging? */
2756 if (have_packet) {
2757 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
66642cb4 2758 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
e96a4d80
JG
2759 "packet received on port %s configured with "
2760 "implicit VLAN %"PRIu16,
66642cb4 2761 br->name, vlan, in_port->name, in_port->vlan);
e96a4d80
JG
2762 }
2763 return -1;
2764 }
2765 vlan = in_port->vlan;
2766 } else {
2767 if (!port_includes_vlan(in_port, vlan)) {
2768 if (have_packet) {
2769 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2770 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2771 "packet received on port %s not configured for "
2772 "trunking VLAN %d",
2773 br->name, vlan, in_port->name, vlan);
2774 }
2775 return -1;
2776 }
2777 }
2778
2779 return vlan;
2780}
2781
7febb910
JG
2782/* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
2783 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
2784 * indicate this; newer upstream kernels use gratuitous ARP requests. */
2785static bool
ae412e7d 2786is_gratuitous_arp(const struct flow *flow)
7febb910
JG
2787{
2788 return (flow->dl_type == htons(ETH_TYPE_ARP)
2789 && eth_addr_is_broadcast(flow->dl_dst)
2790 && (flow->nw_proto == ARP_OP_REPLY
2791 || (flow->nw_proto == ARP_OP_REQUEST
2792 && flow->nw_src == flow->nw_dst)));
2793}
2794
e96a4d80 2795static void
ae412e7d 2796update_learning_table(struct bridge *br, const struct flow *flow, int vlan,
e96a4d80
JG
2797 struct port *in_port)
2798{
7febb910
JG
2799 enum grat_arp_lock_type lock_type;
2800 tag_type rev_tag;
2801
2802 /* We don't want to learn from gratuitous ARP packets that are reflected
2803 * back over bond slaves so we lock the learning table. */
2804 lock_type = !is_gratuitous_arp(flow) ? GRAT_ARP_LOCK_NONE :
2805 (in_port->n_ifaces == 1) ? GRAT_ARP_LOCK_SET :
2806 GRAT_ARP_LOCK_CHECK;
2807
2808 rev_tag = mac_learning_learn(br->ml, flow->dl_src, vlan, in_port->port_idx,
2809 lock_type);
e96a4d80
JG
2810 if (rev_tag) {
2811 /* The log messages here could actually be useful in debugging,
2812 * so keep the rate limit relatively high. */
2813 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2814 300);
2815 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2816 "on port %s in VLAN %d",
2817 br->name, ETH_ADDR_ARGS(flow->dl_src),
2818 in_port->name, vlan);
2819 ofproto_revalidate(br->ofproto, rev_tag);
2820 }
2821}
2822
14a34d00
BP
2823/* Determines whether packets in 'flow' within 'br' should be forwarded or
2824 * dropped. Returns true if they may be forwarded, false if they should be
2825 * dropped.
2826 *
2827 * If 'have_packet' is true, it indicates that the caller is processing a
2828 * received packet. If 'have_packet' is false, then the caller is just
2829 * revalidating an existing flow because configuration has changed. Either
2830 * way, 'have_packet' only affects logging (there is no point in logging errors
2831 * during revalidation).
2832 *
2833 * Sets '*in_portp' to the input port. This will be a null pointer if
2834 * flow->in_port does not designate a known input port (in which case
2835 * is_admissible() returns false).
2836 *
2837 * When returning true, sets '*vlanp' to the effective VLAN of the input
2838 * packet, as returned by flow_get_vlan().
2839 *
2840 * May also add tags to '*tags', although the current implementation only does
2841 * so in one special case.
2842 */
064af421 2843static bool
ae412e7d 2844is_admissible(struct bridge *br, const struct flow *flow, bool have_packet,
14a34d00 2845 tag_type *tags, int *vlanp, struct port **in_portp)
064af421
BP
2846{
2847 struct iface *in_iface;
2848 struct port *in_port;
064af421
BP
2849 int vlan;
2850
2851 /* Find the interface and port structure for the received packet. */
2852 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2853 if (!in_iface) {
2854 /* No interface? Something fishy... */
14a34d00 2855 if (have_packet) {
064af421
BP
2856 /* Odd. A few possible reasons here:
2857 *
2858 * - We deleted an interface but there are still a few packets
2859 * queued up from it.
2860 *
2861 * - Someone externally added an interface (e.g. with "ovs-dpctl
2862 * add-if") that we don't know about.
2863 *
2864 * - Packet arrived on the local port but the local port is not
2865 * one of our bridge ports.
2866 */
2867 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2868
2869 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
d295e8e9 2870 "interface %"PRIu16, br->name, flow->in_port);
064af421
BP
2871 }
2872
14a34d00
BP
2873 *in_portp = NULL;
2874 return false;
064af421 2875 }
14a34d00
BP
2876 *in_portp = in_port = in_iface->port;
2877 *vlanp = vlan = flow_get_vlan(br, flow, in_port, have_packet);
e96a4d80 2878 if (vlan < 0) {
14a34d00 2879 return false;
064af421
BP
2880 }
2881
064af421
BP
2882 /* Drop frames for reserved multicast addresses. */
2883 if (eth_addr_is_reserved(flow->dl_dst)) {
14a34d00 2884 return false;
064af421
BP
2885 }
2886
2887 /* Drop frames on ports reserved for mirroring. */
2888 if (in_port->is_mirror_output_port) {
14a34d00 2889 if (have_packet) {
f925807d
BP
2890 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2891 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2892 "%s, which is reserved exclusively for mirroring",
2893 br->name, in_port->name);
2894 }
14a34d00 2895 return false;
064af421
BP
2896 }
2897
c25c91fd
EJ
2898 /* When using LACP, do not accept packets from disabled interfaces. */
2899 if (in_port->lacp & LACP_NEGOTIATED && !in_iface->enabled) {
2900 return false;
2901 }
2902
2903 /* Packets received on non-LACP bonds need special attention to avoid
2904 * duplicates. */
2905 if (in_port->n_ifaces > 1 && !(in_port->lacp & LACP_NEGOTIATED)) {
3a55ef14 2906 int src_idx;
7febb910 2907 bool is_grat_arp_locked;
3a55ef14
JG
2908
2909 if (eth_addr_is_multicast(flow->dl_dst)) {
2910 *tags |= in_port->active_iface_tag;
2911 if (in_port->active_iface != in_iface->port_ifidx) {
2912 /* Drop all multicast packets on inactive slaves. */
14a34d00 2913 return false;
c93b1d6a 2914 }
064af421 2915 }
3a55ef14
JG
2916
2917 /* Drop all packets for which we have learned a different input
2918 * port, because we probably sent the packet on one slave and got
5d0ae138 2919 * it back on the other. Gratuitous ARP packets are an exception
7febb910
JG
2920 * to this rule: the host has moved to another switch. The exception
2921 * to the exception is if we locked the learning table to avoid
2922 * reflections on bond slaves. If this is the case, just drop the
2923 * packet now. */
2924 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan,
2925 &is_grat_arp_locked);
3a55ef14 2926 if (src_idx != -1 && src_idx != in_port->port_idx &&
7febb910 2927 (!is_gratuitous_arp(flow) || is_grat_arp_locked)) {
14a34d00 2928 return false;
3a55ef14 2929 }
064af421
BP
2930 }
2931
14a34d00
BP
2932 return true;
2933}
2934
2935/* If the composed actions may be applied to any packet in the given 'flow',
2936 * returns true. Otherwise, the actions should only be applied to 'packet', or
2937 * not at all, if 'packet' was NULL. */
2938static bool
ae412e7d 2939process_flow(struct bridge *br, const struct flow *flow,
cdee00fd 2940 const struct ofpbuf *packet, struct ofpbuf *actions,
14a34d00
BP
2941 tag_type *tags, uint16_t *nf_output_iface)
2942{
2943 struct port *in_port;
2944 struct port *out_port;
2945 int vlan;
2946 int out_port_idx;
2947
2948 /* Check whether we should drop packets in this flow. */
2949 if (!is_admissible(br, flow, packet != NULL, tags, &vlan, &in_port)) {
2950 out_port = NULL;
2951 goto done;
2952 }
2953
93dfc067
JG
2954 /* Learn source MAC (but don't try to learn from revalidation). */
2955 if (packet) {
e96a4d80 2956 update_learning_table(br, flow, vlan, in_port);
93dfc067
JG
2957 }
2958
2959 /* Determine output port. */
7febb910
JG
2960 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan, tags,
2961 NULL);
93dfc067
JG
2962 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2963 out_port = br->ports[out_port_idx];
e96a4d80 2964 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
93dfc067 2965 /* If we are revalidating but don't have a learning entry then
e96a4d80
JG
2966 * eject the flow. Installing a flow that floods packets opens
2967 * up a window of time where we could learn from a packet reflected
2968 * on a bond and blackhole packets before the learning table is
2969 * updated to reflect the correct port. */
93dfc067 2970 return false;
1609aa03
BP
2971 } else {
2972 out_port = FLOOD_PORT;
064af421
BP
2973 }
2974
ba54bf4f
BP
2975 /* Don't send packets out their input ports. */
2976 if (in_port == out_port) {
064af421
BP
2977 out_port = NULL;
2978 }
2979
2980done:
14a34d00
BP
2981 if (in_port) {
2982 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2983 nf_output_iface);
2984 }
064af421 2985
69d60f9f 2986 return true;
064af421
BP
2987}
2988
064af421 2989static bool
ae412e7d 2990bridge_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
cdee00fd 2991 struct ofpbuf *actions, tag_type *tags,
6a07af36 2992 uint16_t *nf_output_iface, void *br_)
064af421
BP
2993{
2994 struct bridge *br = br_;
2995
064af421 2996 COVERAGE_INC(bridge_process_flow);
ebe482fd
EJ
2997 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
2998}
2999
3000static bool
3001bridge_special_ofhook_cb(const struct flow *flow,
3002 const struct ofpbuf *packet, void *br_)
3003{
3004 struct iface *iface;
3005 struct bridge *br = br_;
26d79bf2 3006
b31bcf60
EJ
3007 iface = iface_from_dp_ifidx(br, flow->in_port);
3008
3009 if (cfm_should_process_flow(flow)) {
ebe482fd
EJ
3010
3011 if (iface && packet && iface->cfm) {
3012 COVERAGE_INC(bridge_process_cfm);
b31bcf60
EJ
3013 cfm_process_heartbeat(iface->cfm, packet);
3014 }
3015 return false;
c25c91fd 3016 } else if (flow->dl_type == htons(ETH_TYPE_LACP)) {
ebe482fd
EJ
3017
3018 if (iface && packet) {
3019 COVERAGE_INC(bridge_process_lacp);
c25c91fd
EJ
3020 lacp_process_packet(packet, iface);
3021 }
3022 return false;
b31bcf60
EJ
3023 }
3024
ebe482fd 3025 return true;
064af421
BP
3026}
3027
3028static void
ae412e7d 3029bridge_account_flow_ofhook_cb(const struct flow *flow, tag_type tags,
cdee00fd 3030 const struct nlattr *actions,
cf22f8cb 3031 size_t actions_len,
7006c033 3032 uint64_t n_bytes, void *br_)
064af421
BP
3033{
3034 struct bridge *br = br_;
cdee00fd 3035 const struct nlattr *a;
db0e2ad1 3036 struct port *in_port;
26d79bf2 3037 tag_type dummy = 0;
cdee00fd 3038 unsigned int left;
db0e2ad1 3039 int vlan;
064af421 3040
26d79bf2
BP
3041 /* Feed information from the active flows back into the learning table to
3042 * ensure that table is always in sync with what is actually flowing
3043 * through the datapath.
3044 *
3045 * We test that 'tags' is nonzero to ensure that only flows that include an
3046 * OFPP_NORMAL action are used for learning. This works because
3047 * bridge_normal_ofhook_cb() always sets a nonzero tag value. */
3048 if (tags && is_admissible(br, flow, false, &dummy, &vlan, &in_port)) {
db0e2ad1 3049 update_learning_table(br, flow, vlan, in_port);
e96a4d80
JG
3050 }
3051
26d79bf2 3052 /* Account for bond slave utilization. */
064af421
BP
3053 if (!br->has_bonded_ports) {
3054 return;
3055 }
cdee00fd 3056 NL_ATTR_FOR_EACH_UNSAFE (a, left, actions, actions_len) {
7aec165d 3057 if (nl_attr_type(a) == ODP_ACTION_ATTR_OUTPUT) {
cdee00fd 3058 struct port *out_port = port_from_dp_ifidx(br, nl_attr_get_u32(a));
be02e7c3 3059 if (out_port && out_port->n_ifaces >= 2 &&
f48f70b7 3060 out_port->bond_mode != BM_AB) {
e58de0e3
EJ
3061 uint16_t vlan = (flow->vlan_tci
3062 ? vlan_tci_to_vid(flow->vlan_tci)
3063 : OFP_VLAN_NONE);
9f5073d8 3064 struct bond_entry *e = lookup_bond_entry(out_port, flow, vlan);
064af421
BP
3065 e->tx_bytes += n_bytes;
3066 }
3067 }
3068 }
3069}
3070
3071static void
3072bridge_account_checkpoint_ofhook_cb(void *br_)
3073{
3074 struct bridge *br = br_;
c8143c88 3075 long long int now;
064af421
BP
3076 size_t i;
3077
3078 if (!br->has_bonded_ports) {
3079 return;
3080 }
3081
c8143c88 3082 now = time_msec();
064af421
BP
3083 for (i = 0; i < br->n_ports; i++) {
3084 struct port *port = br->ports[i];
f48f70b7 3085 if (port->n_ifaces > 1 && port->bond_mode != BM_AB
be02e7c3 3086 && now >= port->bond_next_rebalance) {
c8143c88 3087 port->bond_next_rebalance = now + port->bond_rebalance_interval;
064af421
BP
3088 bond_rebalance_port(port);
3089 }
3090 }
3091}
3092
3093static struct ofhooks bridge_ofhooks = {
064af421 3094 bridge_normal_ofhook_cb,
ebe482fd 3095 bridge_special_ofhook_cb,
064af421
BP
3096 bridge_account_flow_ofhook_cb,
3097 bridge_account_checkpoint_ofhook_cb,
3098};
3099\f
c25c91fd
EJ
3100/* LACP functions. */
3101
3102static void
3103lacp_process_packet(const struct ofpbuf *packet, struct iface *iface)
3104{
3105 const struct lacp_pdu *pdu;
3106
3107 if (!iface->port->lacp) {
3108 return;
3109 }
3110
3111 pdu = parse_lacp_packet(packet);
3112 if (!pdu) {
3113 return;
3114 }
3115
76ab2ea7 3116 iface->lacp_status |= LACP_CURRENT;
f4709d4d 3117 iface->lacp_status &= ~(LACP_EXPIRED | LACP_DEFAULTED);
c25c91fd
EJ
3118 iface->lacp_rx = time_msec() + LACP_SLOW_TIME_RX;
3119
3120 iface->lacp_actor.state = iface_get_lacp_state(iface);
3121 if (memcmp(&iface->lacp_actor, &pdu->partner, sizeof pdu->partner)) {
3122 iface->lacp_tx = 0;
3123 }
3124
3125 if (memcmp(&iface->lacp_partner, &pdu->actor, sizeof pdu->actor)) {
3126 iface->port->lacp_need_update = true;
3127 iface->lacp_partner = pdu->actor;
3128 }
3129}
3130
3131static void
3132lacp_update_ifaces(struct port *port)
3133{
3134 size_t i;
3135 struct iface *lead;
3136 struct lacp_info lead_pri;
750d79a5 3137 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
c25c91fd
EJ
3138
3139 port->lacp_need_update = false;
750d79a5 3140 COVERAGE_INC(bridge_lacp_update);
c25c91fd
EJ
3141
3142 if (!port->lacp) {
3143 return;
3144 }
3145
750d79a5
EJ
3146 VLOG_DBG_RL(&rl, "port %s: re-evaluating LACP link status", port->name);
3147
c25c91fd
EJ
3148 lead = NULL;
3149 for (i = 0; i < port->n_ifaces; i++) {
3150 struct iface *iface = port->ifaces[i];
3151 struct lacp_info pri;
3152
cd482758 3153 iface->lacp_status |= LACP_ATTACHED;
c25c91fd
EJ
3154 ofproto_revalidate(port->bridge->ofproto, iface->tag);
3155
3156 /* Don't allow loopback interfaces to send traffic or lead. */
3157 if (eth_addr_equals(iface->lacp_partner.sysid,
3158 iface->lacp_actor.sysid)) {
c25c91fd
EJ
3159 VLOG_WARN_RL(&rl, "iface %s: Loopback detected. Interface is "
3160 "connected to its own bridge", iface->name);
cd482758 3161 iface->lacp_status &= ~LACP_ATTACHED;
c25c91fd
EJ
3162 continue;
3163 }
3164
cd482758 3165 if (iface->lacp_status & LACP_DEFAULTED) {
c25c91fd
EJ
3166 continue;
3167 }
3168
3169 iface_get_lacp_priority(iface, &pri);
3170
3171 if (!lead || memcmp(&pri, &lead_pri, sizeof pri) < 0) {
3172 lead = iface;
3173 lead_pri = pri;
3174 }
3175 }
3176
3177 if (!lead) {
3178 port->lacp &= ~LACP_NEGOTIATED;
3179 return;
3180 }
3181
3182 port->lacp |= LACP_NEGOTIATED;
3183
3184 for (i = 0; i < port->n_ifaces; i++) {
3185 struct iface *iface = port->ifaces[i];
3186
cd482758 3187 if (iface->lacp_status & LACP_DEFAULTED
c25c91fd
EJ
3188 || lead->lacp_partner.key != iface->lacp_partner.key
3189 || !eth_addr_equals(lead->lacp_partner.sysid,
3190 iface->lacp_partner.sysid)) {
cd482758 3191 iface->lacp_status &= ~LACP_ATTACHED;
c25c91fd
EJ
3192 }
3193 }
3194}
3195
3196static bool
3197lacp_iface_may_tx(const struct iface *iface)
3198{
3199 return iface->port->lacp & LACP_ACTIVE
cd482758 3200 || iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED);
c25c91fd
EJ
3201}
3202
3203static void
3204lacp_run(struct bridge *br)
3205{
3206 size_t i, j;
3207 struct ofpbuf packet;
3208
3209 ofpbuf_init(&packet, ETH_HEADER_LEN + LACP_PDU_LEN);
3210
3211 for (i = 0; i < br->n_ports; i++) {
3212 struct port *port = br->ports[i];
3213
3214 if (!port->lacp) {
3215 continue;
3216 }
3217
3218 for (j = 0; j < port->n_ifaces; j++) {
3219 struct iface *iface = port->ifaces[j];
3220
3221 if (time_msec() > iface->lacp_rx) {
cd482758 3222 if (iface->lacp_status & LACP_CURRENT) {
c25c91fd 3223 iface_set_lacp_expired(iface);
cd482758 3224 } else if (iface->lacp_status & LACP_EXPIRED) {
c25c91fd
EJ
3225 iface_set_lacp_defaulted(iface);
3226 }
3227 }
3228 }
3229
3230 if (port->lacp_need_update) {
3231 lacp_update_ifaces(port);
3232 }
3233
3234 for (j = 0; j < port->n_ifaces; j++) {
3235 struct iface *iface = port->ifaces[j];
3236 uint8_t ea[ETH_ADDR_LEN];
3237 int error;
3238
3239 if (time_msec() < iface->lacp_tx || !lacp_iface_may_tx(iface)) {
3240 continue;
3241 }
3242
3243 error = netdev_get_etheraddr(iface->netdev, ea);
3244 if (!error) {
3245 iface->lacp_actor.state = iface_get_lacp_state(iface);
3246 compose_lacp_packet(&packet, &iface->lacp_actor,
3247 &iface->lacp_partner, ea);
3248 iface_send_packet(iface, &packet);
3249 } else {
3250 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3251 VLOG_ERR_RL(&rl, "iface %s: failed to obtain Ethernet address "
3252 "(%s)", iface->name, strerror(error));
3253 }
3254
3255 iface->lacp_tx = time_msec() +
3256 (iface->lacp_partner.state & LACP_STATE_TIME
3257 ? LACP_FAST_TIME_TX
3258 : LACP_SLOW_TIME_TX);
3259 }
3260 }
3261 ofpbuf_uninit(&packet);
3262}
3263
3264static void
3265lacp_wait(struct bridge *br)
3266{
3267 size_t i, j;
3268
3269 for (i = 0; i < br->n_ports; i++) {
3270 struct port *port = br->ports[i];
3271
3272 if (!port->lacp) {
3273 continue;
3274 }
3275
3276 for (j = 0; j < port->n_ifaces; j++) {
3277 struct iface *iface = port->ifaces[j];
3278
3279 if (lacp_iface_may_tx(iface)) {
3280 poll_timer_wait_until(iface->lacp_tx);
3281 }
3282
cd482758 3283 if (iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED)) {
c25c91fd
EJ
3284 poll_timer_wait_until(iface->lacp_rx);
3285 }
3286 }
3287 }
3288}
3289\f
2303f3b2
BP
3290/* Bonding functions. */
3291
064af421
BP
3292/* Statistics for a single interface on a bonded port, used for load-based
3293 * bond rebalancing. */
3294struct slave_balance {
3295 struct iface *iface; /* The interface. */
3296 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
3297
3298 /* All the "bond_entry"s that are assigned to this interface, in order of
3299 * increasing tx_bytes. */
3300 struct bond_entry **hashes;
3301 size_t n_hashes;
3302};
3303
be02e7c3 3304static const char *
27dcaa1a
EJ
3305bond_mode_to_string(enum bond_mode bm) {
3306 static char *bm_slb = "balance-slb";
3307 static char *bm_ab = "active-backup";
9f5073d8 3308 static char *bm_tcp = "balance-tcp";
be02e7c3 3309
27dcaa1a
EJ
3310 switch (bm) {
3311 case BM_SLB: return bm_slb;
3312 case BM_AB: return bm_ab;
9f5073d8 3313 case BM_TCP: return bm_tcp;
be02e7c3
EJ
3314 }
3315
3316 NOT_REACHED();
3317 return NULL;
3318}
3319
064af421
BP
3320/* Sorts pointers to pointers to bond_entries in ascending order by the
3321 * interface to which they are assigned, and within a single interface in
3322 * ascending order of bytes transmitted. */
3323static int
3324compare_bond_entries(const void *a_, const void *b_)
3325{
3326 const struct bond_entry *const *ap = a_;
3327 const struct bond_entry *const *bp = b_;
3328 const struct bond_entry *a = *ap;
3329 const struct bond_entry *b = *bp;
3330 if (a->iface_idx != b->iface_idx) {
3331 return a->iface_idx > b->iface_idx ? 1 : -1;
3332 } else if (a->tx_bytes != b->tx_bytes) {
3333 return a->tx_bytes > b->tx_bytes ? 1 : -1;
3334 } else {
3335 return 0;
3336 }
3337}
3338
3339/* Sorts slave_balances so that enabled ports come first, and otherwise in
3340 * *descending* order by number of bytes transmitted. */
3341static int
3342compare_slave_balance(const void *a_, const void *b_)
3343{
3344 const struct slave_balance *a = a_;
3345 const struct slave_balance *b = b_;
3346 if (a->iface->enabled != b->iface->enabled) {
3347 return a->iface->enabled ? -1 : 1;
3348 } else if (a->tx_bytes != b->tx_bytes) {
3349 return a->tx_bytes > b->tx_bytes ? -1 : 1;
3350 } else {
3351 return 0;
3352 }
3353}
3354
3355static void
3356swap_bals(struct slave_balance *a, struct slave_balance *b)
3357{
3358 struct slave_balance tmp = *a;
3359 *a = *b;
3360 *b = tmp;
3361}
3362
3363/* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
3364 * given that 'p' (and only 'p') might be in the wrong location.
3365 *
3366 * This function invalidates 'p', since it might now be in a different memory
3367 * location. */
3368static void
3369resort_bals(struct slave_balance *p,
3370 struct slave_balance bals[], size_t n_bals)
3371{
3372 if (n_bals > 1) {
3373 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
3374 swap_bals(p, p - 1);
3375 }
3376 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
3377 swap_bals(p, p + 1);
3378 }
3379 }
3380}
3381
3382static void
3383log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
3384{
3385 if (VLOG_IS_DBG_ENABLED()) {
3386 struct ds ds = DS_EMPTY_INITIALIZER;
3387 const struct slave_balance *b;
3388
3389 for (b = bals; b < bals + n_bals; b++) {
3390 size_t i;
3391
3392 if (b > bals) {
3393 ds_put_char(&ds, ',');
3394 }
3395 ds_put_format(&ds, " %s %"PRIu64"kB",
3396 b->iface->name, b->tx_bytes / 1024);
3397
3398 if (!b->iface->enabled) {
3399 ds_put_cstr(&ds, " (disabled)");
3400 }
3401 if (b->n_hashes > 0) {
3402 ds_put_cstr(&ds, " (");
3403 for (i = 0; i < b->n_hashes; i++) {
3404 const struct bond_entry *e = b->hashes[i];
3405 if (i > 0) {
3406 ds_put_cstr(&ds, " + ");
3407 }
3408 ds_put_format(&ds, "h%td: %"PRIu64"kB",
3409 e - port->bond_hash, e->tx_bytes / 1024);
3410 }
3411 ds_put_cstr(&ds, ")");
3412 }
3413 }
3414 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
3415 ds_destroy(&ds);
3416 }
3417}
3418
3419/* Shifts 'hash' from 'from' to 'to' within 'port'. */
3420static void
3421bond_shift_load(struct slave_balance *from, struct slave_balance *to,
5422a9e1 3422 int hash_idx)
064af421 3423{
5422a9e1 3424 struct bond_entry *hash = from->hashes[hash_idx];
064af421
BP
3425 struct port *port = from->iface->port;
3426 uint64_t delta = hash->tx_bytes;
3427
f48f70b7 3428 assert(port->bond_mode != BM_AB);
be02e7c3 3429
064af421
BP
3430 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
3431 "from %s to %s (now carrying %"PRIu64"kB and "
3432 "%"PRIu64"kB load, respectively)",
3433 port->name, delta / 1024, hash - port->bond_hash,
3434 from->iface->name, to->iface->name,
3435 (from->tx_bytes - delta) / 1024,
3436 (to->tx_bytes + delta) / 1024);
3437
3438 /* Delete element from from->hashes.
3439 *
3440 * We don't bother to add the element to to->hashes because not only would
3441 * it require more work, the only purpose it would be to allow that hash to
3442 * be migrated to another slave in this rebalancing run, and there is no
3443 * point in doing that. */
5422a9e1 3444 if (hash_idx == 0) {
064af421
BP
3445 from->hashes++;
3446 } else {
5422a9e1
JG
3447 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
3448 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
064af421
BP
3449 }
3450 from->n_hashes--;
3451
3452 /* Shift load away from 'from' to 'to'. */
3453 from->tx_bytes -= delta;
3454 to->tx_bytes += delta;
3455
3456 /* Arrange for flows to be revalidated. */
3457 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
3458 hash->iface_idx = to->iface->port_ifidx;
3459 hash->iface_tag = tag_create_random();
064af421
BP
3460}
3461
3462static void
3463bond_rebalance_port(struct port *port)
3464{
c47cd5f0 3465 struct slave_balance *bals;
064af421
BP
3466 size_t n_bals;
3467 struct bond_entry *hashes[BOND_MASK + 1];
3468 struct slave_balance *b, *from, *to;
3469 struct bond_entry *e;
3470 size_t i;
3471
9f5073d8 3472 assert(port->bond_mode != BM_AB);
be02e7c3 3473
064af421
BP
3474 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
3475 * descending order of tx_bytes, so that bals[0] represents the most
3476 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
3477 * loaded slave.
3478 *
3479 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
3480 * array for each slave_balance structure, we sort our local array of
3481 * hashes in order by slave, so that all of the hashes for a given slave
3482 * become contiguous in memory, and then we point each 'hashes' members of
3483 * a slave_balance structure to the start of a contiguous group. */
3484 n_bals = port->n_ifaces;
c47cd5f0 3485 bals = xmalloc(n_bals * sizeof *bals);
064af421
BP
3486 for (b = bals; b < &bals[n_bals]; b++) {
3487 b->iface = port->ifaces[b - bals];
3488 b->tx_bytes = 0;
3489 b->hashes = NULL;
3490 b->n_hashes = 0;
3491 }
3492 for (i = 0; i <= BOND_MASK; i++) {
3493 hashes[i] = &port->bond_hash[i];
3494 }
3495 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
3496 for (i = 0; i <= BOND_MASK; i++) {
3497 e = hashes[i];
3498 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3499 b = &bals[e->iface_idx];
3500 b->tx_bytes += e->tx_bytes;
3501 if (!b->hashes) {
3502 b->hashes = &hashes[i];
3503 }
3504 b->n_hashes++;
3505 }
3506 }
3507 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
3508 log_bals(bals, n_bals, port);
3509
3510 /* Discard slaves that aren't enabled (which were sorted to the back of the
3511 * array earlier). */
3512 while (!bals[n_bals - 1].iface->enabled) {
3513 n_bals--;
3514 if (!n_bals) {
c47cd5f0 3515 goto exit;
064af421
BP
3516 }
3517 }
3518
3519 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
3520 to = &bals[n_bals - 1];
3521 for (from = bals; from < to; ) {
3522 uint64_t overload = from->tx_bytes - to->tx_bytes;
3523 if (overload < to->tx_bytes >> 5 || overload < 100000) {
3524 /* The extra load on 'from' (and all less-loaded slaves), compared
3525 * to that of 'to' (the least-loaded slave), is less than ~3%, or
3526 * it is less than ~1Mbps. No point in rebalancing. */
3527 break;
3528 } else if (from->n_hashes == 1) {
3529 /* 'from' only carries a single MAC hash, so we can't shift any
3530 * load away from it, even though we want to. */
3531 from++;
3532 } else {
3533 /* 'from' is carrying significantly more load than 'to', and that
3534 * load is split across at least two different hashes. Pick a hash
3535 * to migrate to 'to' (the least-loaded slave), given that doing so
5422a9e1
JG
3536 * must decrease the ratio of the load on the two slaves by at
3537 * least 0.1.
064af421
BP
3538 *
3539 * The sort order we use means that we prefer to shift away the
3540 * smallest hashes instead of the biggest ones. There is little
3541 * reason behind this decision; we could use the opposite sort
3542 * order to shift away big hashes ahead of small ones. */
5422a9e1 3543 bool order_swapped;
064af421
BP
3544
3545 for (i = 0; i < from->n_hashes; i++) {
5422a9e1 3546 double old_ratio, new_ratio;
064af421 3547 uint64_t delta = from->hashes[i]->tx_bytes;
5422a9e1
JG
3548
3549 if (delta == 0 || from->tx_bytes - delta == 0) {
3550 /* Pointless move. */
3551 continue;
3552 }
3553
3554 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
3555
3556 if (to->tx_bytes == 0) {
3557 /* Nothing on the new slave, move it. */
3558 break;
3559 }
3560
3561 old_ratio = (double)from->tx_bytes / to->tx_bytes;
3562 new_ratio = (double)(from->tx_bytes - delta) /
3563 (to->tx_bytes + delta);
3564
3565 if (new_ratio == 0) {
3566 /* Should already be covered but check to prevent division
3567 * by zero. */
3568 continue;
3569 }
3570
3571 if (new_ratio < 1) {
3572 new_ratio = 1 / new_ratio;
3573 }
3574
3575 if (old_ratio - new_ratio > 0.1) {
3576 /* Would decrease the ratio, move it. */
064af421
BP
3577 break;
3578 }
3579 }
3580 if (i < from->n_hashes) {
5422a9e1 3581 bond_shift_load(from, to, i);
5422a9e1
JG
3582
3583 /* If the result of the migration changed the relative order of
3584 * 'from' and 'to' swap them back to maintain invariants. */
3585 if (order_swapped) {
3586 swap_bals(from, to);
3587 }
064af421
BP
3588
3589 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
3590 * point to different slave_balance structures. It is only
3591 * valid to do these two operations in a row at all because we
3592 * know that 'from' will not move past 'to' and vice versa. */
3593 resort_bals(from, bals, n_bals);
3594 resort_bals(to, bals, n_bals);
3595 } else {
3596 from++;
3597 }
3598 }
3599 }
3600
3601 /* Implement exponentially weighted moving average. A weight of 1/2 causes
3602 * historical data to decay to <1% in 7 rebalancing runs. */
3603 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
3604 e->tx_bytes /= 2;
3605 }
c47cd5f0
BP
3606
3607exit:
3608 free(bals);
064af421 3609}
2303f3b2
BP
3610
3611static void
3612bond_send_learning_packets(struct port *port)
3613{
3614 struct bridge *br = port->bridge;
3615 struct mac_entry *e;
3616 struct ofpbuf packet;
3617 int error, n_packets, n_errors;
3618
9f5073d8 3619 if (!port->n_ifaces || port->active_iface < 0 || bond_is_tcp_hash(port)) {
2303f3b2
BP
3620 return;
3621 }
3622
3623 ofpbuf_init(&packet, 128);
3624 error = n_packets = n_errors = 0;
4e8e4213 3625 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
2303f3b2 3626 union ofp_action actions[2], *a;
2303f3b2
BP
3627 uint16_t dp_ifidx;
3628 tag_type tags = 0;
ae412e7d 3629 struct flow flow;
2303f3b2
BP
3630 int retval;
3631
9f5073d8
EJ
3632 if (e->port == port->port_idx) {
3633 continue;
3634 }
3635
3636 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
3637 e->mac);
3638 flow_extract(&packet, 0, ODPP_NONE, &flow);
3639
3640 if (!choose_output_iface(port, &flow, e->vlan, &dp_ifidx, &tags)) {
2303f3b2
BP
3641 continue;
3642 }
3643
2303f3b2
BP
3644 /* Compose actions. */
3645 memset(actions, 0, sizeof actions);
3646 a = actions;
3647 if (e->vlan) {
3648 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
3649 a->vlan_vid.len = htons(sizeof *a);
3650 a->vlan_vid.vlan_vid = htons(e->vlan);
3651 a++;
3652 }
3653 a->output.type = htons(OFPAT_OUTPUT);
3654 a->output.len = htons(sizeof *a);
3655 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
3656 a++;
3657
3658 /* Send packet. */
3659 n_packets++;
2303f3b2
BP
3660 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
3661 &packet);
3662 if (retval) {
3663 error = retval;
3664 n_errors++;
3665 }
3666 }
3667 ofpbuf_uninit(&packet);
3668
3669 if (n_errors) {
3670 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3671 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3672 "packets, last error was: %s",
3673 port->name, n_errors, n_packets, strerror(error));
3674 } else {
3675 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3676 port->name, n_packets);
3677 }
3678}
064af421 3679\f
da285df4
BP
3680/* Bonding unixctl user interface functions. */
3681
3682static void
8ca79daa 3683bond_unixctl_list(struct unixctl_conn *conn,
c69ee87c 3684 const char *args OVS_UNUSED, void *aux OVS_UNUSED)
da285df4
BP
3685{
3686 struct ds ds = DS_EMPTY_INITIALIZER;
3687 const struct bridge *br;
3688
be02e7c3 3689 ds_put_cstr(&ds, "bridge\tbond\ttype\tslaves\n");
da285df4 3690
4e8e4213 3691 LIST_FOR_EACH (br, node, &all_bridges) {
da285df4
BP
3692 size_t i;
3693
3694 for (i = 0; i < br->n_ports; i++) {
3695 const struct port *port = br->ports[i];
3696 if (port->n_ifaces > 1) {
3697 size_t j;
3698
be02e7c3 3699 ds_put_format(&ds, "%s\t%s\t%s\t", br->name, port->name,
27dcaa1a 3700 bond_mode_to_string(port->bond_mode));
da285df4
BP
3701 for (j = 0; j < port->n_ifaces; j++) {
3702 const struct iface *iface = port->ifaces[j];
3703 if (j) {
3704 ds_put_cstr(&ds, ", ");
3705 }
3706 ds_put_cstr(&ds, iface->name);
3707 }
3708 ds_put_char(&ds, '\n');
3709 }
3710 }
3711 }
3712 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3713 ds_destroy(&ds);
3714}
3715
3716static struct port *
3717bond_find(const char *name)
3718{
3719 const struct bridge *br;
3720
4e8e4213 3721 LIST_FOR_EACH (br, node, &all_bridges) {
da285df4
BP
3722 size_t i;
3723
3724 for (i = 0; i < br->n_ports; i++) {
3725 struct port *port = br->ports[i];
3726 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
3727 return port;
3728 }
3729 }
3730 }
3731 return NULL;
3732}
3733
c25c91fd
EJ
3734static void
3735ds_put_lacp_state(struct ds *ds, uint8_t state)
3736{
3737 if (state & LACP_STATE_ACT) {
3738 ds_put_cstr(ds, "activity ");
3739 }
3740
3741 if (state & LACP_STATE_TIME) {
3742 ds_put_cstr(ds, "timeout ");
3743 }
3744
3745 if (state & LACP_STATE_AGG) {
3746 ds_put_cstr(ds, "aggregation ");
3747 }
3748
3749 if (state & LACP_STATE_SYNC) {
3750 ds_put_cstr(ds, "synchronized ");
3751 }
3752
3753 if (state & LACP_STATE_COL) {
3754 ds_put_cstr(ds, "collecting ");
3755 }
3756
3757 if (state & LACP_STATE_DIST) {
3758 ds_put_cstr(ds, "distributing ");
3759 }
3760
3761 if (state & LACP_STATE_DEF) {
3762 ds_put_cstr(ds, "defaulted ");
3763 }
3764
3765 if (state & LACP_STATE_EXP) {
3766 ds_put_cstr(ds, "expired ");
3767 }
3768}
3769
da285df4 3770static void
8ca79daa 3771bond_unixctl_show(struct unixctl_conn *conn,
c69ee87c 3772 const char *args, void *aux OVS_UNUSED)
da285df4
BP
3773{
3774 struct ds ds = DS_EMPTY_INITIALIZER;
3775 const struct port *port;
3776 size_t j;
3777
3778 port = bond_find(args);
3779 if (!port) {
3780 unixctl_command_reply(conn, 501, "no such bond");
3781 return;
3782 }
3783
27dcaa1a
EJ
3784 ds_put_format(&ds, "bond_mode: %s\n",
3785 bond_mode_to_string(port->bond_mode));
c25c91fd
EJ
3786
3787 if (port->lacp) {
846f1be5 3788 ds_put_format(&ds, "lacp: %s\n",
c25c91fd
EJ
3789 port->lacp & LACP_ACTIVE ? "active" : "passive");
3790 } else {
846f1be5 3791 ds_put_cstr(&ds, "lacp: off\n");
c25c91fd
EJ
3792 }
3793
9f5073d8
EJ
3794 if (port->bond_mode != BM_AB) {
3795 ds_put_format(&ds, "bond-hash-algorithm: %s\n",
3796 bond_is_tcp_hash(port) ? "balance-tcp" : "balance-slb");
3797 }
3798
3799
63331829
EJ
3800 ds_put_format(&ds, "bond-detect-mode: %s\n",
3801 port->miimon ? "miimon" : "carrier");
b42c5c24
EJ
3802
3803 if (port->miimon) {
3804 ds_put_format(&ds, "bond-miimon-interval: %lld\n",
3805 port->bond_miimon_interval);
3806 }
3807
da285df4
BP
3808 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
3809 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
be02e7c3 3810
9f5073d8 3811 if (port->bond_mode != BM_AB) {
be02e7c3
EJ
3812 ds_put_format(&ds, "next rebalance: %lld ms\n",
3813 port->bond_next_rebalance - time_msec());
3814 }
3815
da285df4
BP
3816 for (j = 0; j < port->n_ifaces; j++) {
3817 const struct iface *iface = port->ifaces[j];
3818 struct bond_entry *be;
9f5073d8 3819 struct flow flow;
da285df4
BP
3820
3821 /* Basic info. */
846f1be5 3822 ds_put_format(&ds, "\nslave %s: %s\n",
da285df4
BP
3823 iface->name, iface->enabled ? "enabled" : "disabled");
3824 if (j == port->active_iface) {
3825 ds_put_cstr(&ds, "\tactive slave\n");
3826 }
3827 if (iface->delay_expires != LLONG_MAX) {
3828 ds_put_format(&ds, "\t%s expires in %lld ms\n",
3829 iface->enabled ? "downdelay" : "updelay",
3830 iface->delay_expires - time_msec());
3831 }
3832
c25c91fd
EJ
3833 if (port->lacp) {
3834 ds_put_cstr(&ds, "\tstatus: ");
3835
cd482758 3836 if (iface->lacp_status & LACP_CURRENT) {
c25c91fd 3837 ds_put_cstr(&ds, "current ");
cd482758
EJ
3838 }
3839
3840 if (iface->lacp_status & LACP_EXPIRED) {
c25c91fd 3841 ds_put_cstr(&ds, "expired ");
cd482758
EJ
3842 }
3843
3844 if (iface->lacp_status & LACP_DEFAULTED) {
c25c91fd
EJ
3845 ds_put_cstr(&ds, "defaulted ");
3846 }
3847
cd482758 3848 if (iface->lacp_status & LACP_ATTACHED) {
c25c91fd
EJ
3849 ds_put_cstr(&ds, "attached ");
3850 }
3851
3852 ds_put_cstr(&ds, "\n");
3853
3854 ds_put_cstr(&ds, "\n\tactor sysid: ");
3855 ds_put_format(&ds, ETH_ADDR_FMT,
3856 ETH_ADDR_ARGS(iface->lacp_actor.sysid));
3857 ds_put_cstr(&ds, "\n");
3858
3859 ds_put_format(&ds, "\tactor sys_priority: %u\n",
3860 ntohs(iface->lacp_actor.sys_priority));
3861
3862 ds_put_format(&ds, "\tactor portid: %u\n",
3863 ntohs(iface->lacp_actor.portid));
3864
3865 ds_put_format(&ds, "\tactor port_priority: %u\n",
3866 ntohs(iface->lacp_actor.port_priority));
3867
3868 ds_put_format(&ds, "\tactor key: %u\n",
3869 ntohs(iface->lacp_actor.key));
3870
3871 ds_put_cstr(&ds, "\tactor state: ");
3872 ds_put_lacp_state(&ds, iface_get_lacp_state(iface));
3873 ds_put_cstr(&ds, "\n\n");
3874
3875 ds_put_cstr(&ds, "\tpartner sysid: ");
3876 ds_put_format(&ds, ETH_ADDR_FMT,
3877 ETH_ADDR_ARGS(iface->lacp_partner.sysid));
3878 ds_put_cstr(&ds, "\n");
3879
3880 ds_put_format(&ds, "\tpartner sys_priority: %u\n",
3881 ntohs(iface->lacp_partner.sys_priority));
3882
3883 ds_put_format(&ds, "\tpartner portid: %u\n",
3884 ntohs(iface->lacp_partner.portid));
3885
3886 ds_put_format(&ds, "\tpartner port_priority: %u\n",
3887 ntohs(iface->lacp_partner.port_priority));
3888
3889 ds_put_format(&ds, "\tpartner key: %u\n",
3890 ntohs(iface->lacp_partner.key));
3891
3892 ds_put_cstr(&ds, "\tpartner state: ");
3893 ds_put_lacp_state(&ds, iface->lacp_partner.state);
846f1be5 3894 ds_put_cstr(&ds, "\n");
c25c91fd
EJ
3895 }
3896
9f5073d8 3897 if (port->bond_mode == BM_AB) {
be02e7c3
EJ
3898 continue;
3899 }
3900
da285df4 3901 /* Hashes. */
9f5073d8 3902 memset(&flow, 0, sizeof flow);
da285df4
BP
3903 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
3904 int hash = be - port->bond_hash;
3905 struct mac_entry *me;
3906
3907 if (be->iface_idx != j) {
3908 continue;
3909 }
3910
2886875a 3911 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
da285df4
BP
3912 hash, be->tx_bytes / 1024);
3913
9f5073d8
EJ
3914 if (port->bond_mode != BM_SLB) {
3915 continue;
3916 }
3917
da285df4 3918 /* MACs. */
4e8e4213 3919 LIST_FOR_EACH (me, lru_node, &port->bridge->ml->lrus) {
da285df4
BP
3920 uint16_t dp_ifidx;
3921 tag_type tags = 0;
9f5073d8
EJ
3922
3923 memcpy(flow.dl_src, me->mac, ETH_ADDR_LEN);
3924 if (bond_hash_src(me->mac, me->vlan) == hash
da285df4 3925 && me->port != port->port_idx
9f5073d8 3926 && choose_output_iface(port, &flow, me->vlan,
e58de0e3 3927 &dp_ifidx, &tags)
da285df4
BP
3928 && dp_ifidx == iface->dp_ifidx)
3929 {
3930 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3931 ETH_ADDR_ARGS(me->mac));
3932 }
3933 }
3934 }
3935 }
3936 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3937 ds_destroy(&ds);
3938}
3939
3940static void
8ca79daa 3941bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
c69ee87c 3942 void *aux OVS_UNUSED)
da285df4
BP
3943{
3944 char *args = (char *) args_;
3945 char *save_ptr = NULL;
3946 char *bond_s, *hash_s, *slave_s;
da285df4
BP
3947 struct port *port;
3948 struct iface *iface;
3949 struct bond_entry *entry;
3950 int hash;
3951
3952 bond_s = strtok_r(args, " ", &save_ptr);
3953 hash_s = strtok_r(NULL, " ", &save_ptr);
3954 slave_s = strtok_r(NULL, " ", &save_ptr);
3955 if (!slave_s) {
3956 unixctl_command_reply(conn, 501,
3957 "usage: bond/migrate BOND HASH SLAVE");
3958 return;
3959 }
3960
3961 port = bond_find(bond_s);
3962 if (!port) {
3963 unixctl_command_reply(conn, 501, "no such bond");
3964 return;
3965 }
3966
27dcaa1a 3967 if (port->bond_mode != BM_SLB) {
be02e7c3
EJ
3968 unixctl_command_reply(conn, 501, "not an SLB bond");
3969 return;
3970 }
3971
557c178b 3972 if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
da285df4
BP
3973 hash = atoi(hash_s) & BOND_MASK;
3974 } else {
3975 unixctl_command_reply(conn, 501, "bad hash");
3976 return;
3977 }
3978
3979 iface = port_lookup_iface(port, slave_s);
3980 if (!iface) {
3981 unixctl_command_reply(conn, 501, "no such slave");
3982 return;
3983 }
3984
3985 if (!iface->enabled) {
3986 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3987 return;
3988 }
3989
3990 entry = &port->bond_hash[hash];
3991 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3992 entry->iface_idx = iface->port_ifidx;
3993 entry->iface_tag = tag_create_random();
3994 unixctl_command_reply(conn, 200, "migrated");
3995}
3996
3997static void
8ca79daa 3998bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
c69ee87c 3999 void *aux OVS_UNUSED)
da285df4
BP
4000{
4001 char *args = (char *) args_;
4002 char *save_ptr = NULL;
4003 char *bond_s, *slave_s;
4004 struct port *port;
4005 struct iface *iface;
4006
4007 bond_s = strtok_r(args, " ", &save_ptr);
4008 slave_s = strtok_r(NULL, " ", &save_ptr);
4009 if (!slave_s) {
4010 unixctl_command_reply(conn, 501,
4011 "usage: bond/set-active-slave BOND SLAVE");
4012 return;
4013 }
4014
4015 port = bond_find(bond_s);
4016 if (!port) {
4017 unixctl_command_reply(conn, 501, "no such bond");
4018 return;
4019 }
4020
4021 iface = port_lookup_iface(port, slave_s);
4022 if (!iface) {
4023 unixctl_command_reply(conn, 501, "no such slave");
4024 return;
4025 }
4026
4027 if (!iface->enabled) {
4028 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
4029 return;
4030 }
4031
4032 if (port->active_iface != iface->port_ifidx) {
4033 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4034 port->active_iface = iface->port_ifidx;
4035 port->active_iface_tag = tag_create_random();
4036 VLOG_INFO("port %s: active interface is now %s",
4037 port->name, iface->name);
4038 bond_send_learning_packets(port);
4039 unixctl_command_reply(conn, 200, "done");
4040 } else {
4041 unixctl_command_reply(conn, 200, "no change");
4042 }
4043}
4044
4045static void
4046enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
4047{
4048 char *args = (char *) args_;
4049 char *save_ptr = NULL;
4050 char *bond_s, *slave_s;
4051 struct port *port;
4052 struct iface *iface;
4053
4054 bond_s = strtok_r(args, " ", &save_ptr);
4055 slave_s = strtok_r(NULL, " ", &save_ptr);
4056 if (!slave_s) {
4057 unixctl_command_reply(conn, 501,
4058 "usage: bond/enable/disable-slave BOND SLAVE");
4059 return;
4060 }
4061
4062 port = bond_find(bond_s);
4063 if (!port) {
4064 unixctl_command_reply(conn, 501, "no such bond");
4065 return;
4066 }
4067
4068 iface = port_lookup_iface(port, slave_s);
4069 if (!iface) {
4070 unixctl_command_reply(conn, 501, "no such slave");
4071 return;
4072 }
4073
4074 bond_enable_slave(iface, enable);
4075 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
4076}
4077
4078static void
8ca79daa 4079bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 4080 void *aux OVS_UNUSED)
da285df4
BP
4081{
4082 enable_slave(conn, args, true);
4083}
4084
4085static void
8ca79daa 4086bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 4087 void *aux OVS_UNUSED)
da285df4
BP
4088{
4089 enable_slave(conn, args, false);
4090}
4091
e0644b61 4092static void
e58de0e3 4093bond_unixctl_hash(struct unixctl_conn *conn, const char *args_,
c69ee87c 4094 void *aux OVS_UNUSED)
e0644b61 4095{
e58de0e3 4096 char *args = (char *) args_;
a27598cd
EJ
4097 uint8_t mac[ETH_ADDR_LEN];
4098 uint8_t hash;
4099 char *hash_cstr;
e58de0e3
EJ
4100 unsigned int vlan;
4101 char *mac_s, *vlan_s;
4102 char *save_ptr = NULL;
4103
4104 mac_s = strtok_r(args, " ", &save_ptr);
4105 vlan_s = strtok_r(NULL, " ", &save_ptr);
4106
4107 if (vlan_s) {
4108 if (sscanf(vlan_s, "%u", &vlan) != 1) {
4109 unixctl_command_reply(conn, 501, "invalid vlan");
4110 return;
4111 }
4112 } else {
4113 vlan = OFP_VLAN_NONE;
4114 }
a27598cd 4115
e58de0e3 4116 if (sscanf(mac_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
a27598cd 4117 == ETH_ADDR_SCAN_COUNT) {
9f5073d8 4118 hash = bond_hash_src(mac, vlan);
a27598cd
EJ
4119
4120 hash_cstr = xasprintf("%u", hash);
4121 unixctl_command_reply(conn, 200, hash_cstr);
4122 free(hash_cstr);
4123 } else {
4124 unixctl_command_reply(conn, 501, "invalid mac");
4125 }
e0644b61
IC
4126}
4127
da285df4
BP
4128static void
4129bond_init(void)
4130{
8ca79daa
BP
4131 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
4132 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
4133 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
da285df4 4134 unixctl_command_register("bond/set-active-slave",
8ca79daa
BP
4135 bond_unixctl_set_active_slave, NULL);
4136 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
4137 NULL);
4138 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
4139 NULL);
4140 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
da285df4
BP
4141}
4142\f
064af421
BP
4143/* Port functions. */
4144
76343538 4145static struct port *
064af421
BP
4146port_create(struct bridge *br, const char *name)
4147{
4148 struct port *port;
4149
ec6fde61 4150 port = xzalloc(sizeof *port);
064af421
BP
4151 port->bridge = br;
4152 port->port_idx = br->n_ports;
4153 port->vlan = -1;
4154 port->trunks = NULL;
4155 port->name = xstrdup(name);
4156 port->active_iface = -1;
064af421
BP
4157
4158 if (br->n_ports >= br->allocated_ports) {
4159 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
4160 sizeof *br->ports);
4161 }
4162 br->ports[br->n_ports++] = port;
836fad5e 4163 shash_add_assert(&br->port_by_name, port->name, port);
064af421
BP
4164
4165 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
4166 bridge_flush(br);
76343538
BP
4167
4168 return port;
064af421
BP
4169}
4170
c8143c88
BP
4171static const char *
4172get_port_other_config(const struct ovsrec_port *port, const char *key,
4173 const char *default_value)
4174{
af6278e1
BP
4175 const char *value;
4176
4177 value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
4178 key);
c8143c88
BP
4179 return value ? value : default_value;
4180}
4181
c25c91fd
EJ
4182static const char *
4183get_interface_other_config(const struct ovsrec_interface *iface,
4184 const char *key, const char *default_value)
4185{
4186 const char *value;
4187
4188 value = get_ovsrec_key_value(&iface->header_,
4189 &ovsrec_interface_col_other_config, key);
4190 return value ? value : default_value;
4191}
4192
4a1ee6ae
BP
4193static void
4194port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
4195{
4196 struct shash new_ifaces;
4197 size_t i;
4198
4199 /* Collect list of new interfaces. */
4200 shash_init(&new_ifaces);
4201 for (i = 0; i < cfg->n_interfaces; i++) {
4202 const char *name = cfg->interfaces[i]->name;
4203 shash_add_once(&new_ifaces, name, NULL);
4204 }
4205
4206 /* Get rid of deleted interfaces. */
4207 for (i = 0; i < port->n_ifaces; ) {
4208 if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
4209 iface_destroy(port->ifaces[i]);
4210 } else {
4211 i++;
4212 }
4213 }
4214
4215 shash_destroy(&new_ifaces);
4216}
4217
064af421 4218static void
76343538 4219port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
064af421 4220{
63331829 4221 const char *detect_mode;
4a1ee6ae 4222 struct shash new_ifaces;
c25c91fd 4223 long long int next_rebalance, miimon_next_update, lacp_priority;
064af421
BP
4224 unsigned long *trunks;
4225 int vlan;
4226 size_t i;
4227
76343538
BP
4228 port->cfg = cfg;
4229
4a1ee6ae 4230 /* Update settings. */
76343538
BP
4231 port->updelay = cfg->bond_updelay;
4232 if (port->updelay < 0) {
4233 port->updelay = 0;
4234 }
7ef6b685 4235 port->downdelay = cfg->bond_downdelay;
76343538
BP
4236 if (port->downdelay < 0) {
4237 port->downdelay = 0;
064af421 4238 }
c8143c88
BP
4239 port->bond_rebalance_interval = atoi(
4240 get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
4241 if (port->bond_rebalance_interval < 1000) {
4242 port->bond_rebalance_interval = 1000;
4243 }
4244 next_rebalance = time_msec() + port->bond_rebalance_interval;
4245 if (port->bond_next_rebalance > next_rebalance) {
4246 port->bond_next_rebalance = next_rebalance;
4247 }
064af421 4248
63331829
EJ
4249 detect_mode = get_port_other_config(cfg, "bond-detect-mode",
4250 "carrier");
4251
4252 if (!strcmp(detect_mode, "carrier")) {
4253 port->miimon = false;
4254 } else if (!strcmp(detect_mode, "miimon")) {
4255 port->miimon = true;
4256 } else {
4257 port->miimon = false;
4258 VLOG_WARN("port %s: unsupported bond-detect-mode %s, defaulting to "
4259 "carrier", port->name, detect_mode);
4260 }
4261
4262 port->bond_miimon_interval = atoi(
4263 get_port_other_config(cfg, "bond-miimon-interval", "200"));
4264 if (port->bond_miimon_interval < 100) {
4265 port->bond_miimon_interval = 100;
4266 }
4267 miimon_next_update = time_msec() + port->bond_miimon_interval;
4268 if (port->bond_miimon_next_update > miimon_next_update) {
4269 port->bond_miimon_next_update = miimon_next_update;
4270 }
4271
27dcaa1a
EJ
4272 if (!port->cfg->bond_mode ||
4273 !strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_SLB))) {
4274 port->bond_mode = BM_SLB;
4275 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_AB))) {
4276 port->bond_mode = BM_AB;
9f5073d8
EJ
4277 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_TCP))) {
4278 port->bond_mode = BM_TCP;
be02e7c3 4279 } else {
27dcaa1a
EJ
4280 port->bond_mode = BM_SLB;
4281 VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
4282 port->name, port->cfg->bond_mode,
4283 bond_mode_to_string(port->bond_mode));
be02e7c3
EJ
4284 }
4285
4a1ee6ae
BP
4286 /* Add new interfaces and update 'cfg' member of existing ones. */
4287 shash_init(&new_ifaces);
4288 for (i = 0; i < cfg->n_interfaces; i++) {
4289 const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
76343538
BP
4290 struct iface *iface;
4291
4a1ee6ae
BP
4292 if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
4293 VLOG_WARN("port %s: %s specified twice as port interface",
4294 port->name, if_cfg->name);
bcd49a45 4295 iface_set_ofport(if_cfg, -1);
4a1ee6ae
BP
4296 continue;
4297 }
4298
4299 iface = iface_lookup(port->bridge, if_cfg->name);
4300 if (iface) {
4301 if (iface->port != port) {
4302 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
4303 "removing from %s",
4304 port->bridge->name, if_cfg->name, iface->port->name);
4305 continue;
4306 }
149f577a 4307 iface->cfg = if_cfg;
4a1ee6ae 4308 } else {
6cefe1da 4309 iface = iface_create(port, if_cfg);
064af421 4310 }
6cefe1da
BP
4311
4312 /* Determine interface type. The local port always has type
4313 * "internal". Other ports take their type from the database and
4314 * default to "system" if none is specified. */
4315 iface->type = (!strcmp(if_cfg->name, port->bridge->name) ? "internal"
4316 : if_cfg->type[0] ? if_cfg->type
4317 : "system");
c25c91fd
EJ
4318
4319 lacp_priority =
4320 atoi(get_interface_other_config(if_cfg, "lacp-port-priority",
4321 "0"));
4322
4323 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4324 iface->lacp_priority = UINT16_MAX;
4325 } else {
4326 iface->lacp_priority = lacp_priority;
4327 }
064af421 4328 }
4a1ee6ae 4329 shash_destroy(&new_ifaces);
064af421 4330
c25c91fd
EJ
4331 lacp_priority =
4332 atoi(get_port_other_config(cfg, "lacp-system-priority", "0"));
4333
4334 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4335 /* Prefer bondable links if unspecified. */
4336 port->lacp_priority = port->n_ifaces > 1 ? UINT16_MAX - 1 : UINT16_MAX;
4337 } else {
4338 port->lacp_priority = lacp_priority;
4339 }
4340
4341 if (!port->cfg->lacp) {
4342 /* XXX when LACP implementation has been sufficiently tested, enable by
4343 * default and make active on bonded ports. */
4344 port->lacp = 0;
4345 } else if (!strcmp(port->cfg->lacp, "off")) {
4346 port->lacp = 0;
4347 } else if (!strcmp(port->cfg->lacp, "active")) {
4348 port->lacp = LACP_ACTIVE;
4349 } else if (!strcmp(port->cfg->lacp, "passive")) {
4350 port->lacp = LACP_PASSIVE;
4351 } else {
4352 VLOG_WARN("port %s: unknown LACP mode %s",
4353 port->name, port->cfg->lacp);
4354 port->lacp = 0;
4355 }
4356
064af421
BP
4357 /* Get VLAN tag. */
4358 vlan = -1;
76343538
BP
4359 if (cfg->tag) {
4360 if (port->n_ifaces < 2) {
4361 vlan = *cfg->tag;
064af421
BP
4362 if (vlan >= 0 && vlan <= 4095) {
4363 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
76343538
BP
4364 } else {
4365 vlan = -1;
064af421
BP
4366 }
4367 } else {
4368 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
4369 * they even work as-is. But they have not been tested. */
4370 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
4371 port->name);
4372 }
4373 }
4374 if (port->vlan != vlan) {
4375 port->vlan = vlan;
4376 bridge_flush(port->bridge);
4377 }
4378
4379 /* Get trunked VLANs. */
4380 trunks = NULL;
3e9c481c 4381 if (vlan < 0 && cfg->n_trunks) {
76343538 4382 size_t n_errors;
064af421
BP
4383
4384 trunks = bitmap_allocate(4096);
064af421 4385 n_errors = 0;
76343538
BP
4386 for (i = 0; i < cfg->n_trunks; i++) {
4387 int trunk = cfg->trunks[i];
064af421
BP
4388 if (trunk >= 0) {
4389 bitmap_set1(trunks, trunk);
4390 } else {
4391 n_errors++;
4392 }
4393 }
4394 if (n_errors) {
4395 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
76343538 4396 port->name, cfg->n_trunks);
064af421 4397 }
76343538 4398 if (n_errors == cfg->n_trunks) {
3e9c481c 4399 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
76343538 4400 port->name);
3e9c481c
BP
4401 bitmap_free(trunks);
4402 trunks = NULL;
064af421 4403 }
3e9c481c
BP
4404 } else if (vlan >= 0 && cfg->n_trunks) {
4405 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
4406 port->name);
064af421
BP
4407 }
4408 if (trunks == NULL
4409 ? port->trunks != NULL
4410 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
4411 bridge_flush(port->bridge);
4412 }
4413 bitmap_free(port->trunks);
4414 port->trunks = trunks;
064af421
BP
4415}
4416
4417static void
4418port_destroy(struct port *port)
4419{
4420 if (port) {
4421 struct bridge *br = port->bridge;
4422 struct port *del;
37e7f427 4423 int i;
064af421 4424
064af421
BP
4425 for (i = 0; i < MAX_MIRRORS; i++) {
4426 struct mirror *m = br->mirrors[i];
4427 if (m && m->out_port == port) {
4428 mirror_destroy(m);
4429 }
4430 }
4431
4432 while (port->n_ifaces > 0) {
4433 iface_destroy(port->ifaces[port->n_ifaces - 1]);
4434 }
4435
836fad5e
BP
4436 shash_find_and_delete_assert(&br->port_by_name, port->name);
4437
064af421
BP
4438 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
4439 del->port_idx = port->port_idx;
4440
99707a7a
JP
4441 VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
4442
0bb5c3ec 4443 netdev_monitor_destroy(port->monitor);
064af421
BP
4444 free(port->ifaces);
4445 bitmap_free(port->trunks);
4446 free(port->name);
4447 free(port);
4448 bridge_flush(br);
4449 }
4450}
4451
4452static struct port *
4453port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4454{
4455 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
4456 return iface ? iface->port : NULL;
4457}
4458
4459static struct port *
4460port_lookup(const struct bridge *br, const char *name)
4461{
836fad5e 4462 return shash_find_data(&br->port_by_name, name);
064af421
BP
4463}
4464
da285df4
BP
4465static struct iface *
4466port_lookup_iface(const struct port *port, const char *name)
4467{
4a1ee6ae
BP
4468 struct iface *iface = iface_lookup(port->bridge, name);
4469 return iface && iface->port == port ? iface : NULL;
da285df4
BP
4470}
4471
c25c91fd
EJ
4472static void
4473port_update_lacp(struct port *port)
4474{
4475 size_t i;
4476 bool key_changed;
4477
4478 if (!port->lacp || port->n_ifaces < 1) {
edbad245
EJ
4479 for (i = 0; i < port->n_ifaces; i++) {
4480 iface_set_lacp_defaulted(port->ifaces[i]);
4481 }
c25c91fd
EJ
4482 return;
4483 }
4484
4485 key_changed = true;
4486 for (i = 0; i < port->n_ifaces; i++) {
4487 struct iface *iface = port->ifaces[i];
4488
4489 if (iface->dp_ifidx <= 0 || iface->dp_ifidx > UINT16_MAX) {
4490 port->lacp = 0;
4491 return;
4492 }
4493
4494 if (iface->dp_ifidx == port->lacp_key) {
4495 key_changed = false;
4496 }
4497 }
4498
4499 if (key_changed) {
4500 port->lacp_key = port->ifaces[0]->dp_ifidx;
4501 }
4502
4503 for (i = 0; i < port->n_ifaces; i++) {
4504 struct iface *iface = port->ifaces[i];
4505
4506 iface->lacp_actor.sys_priority = htons(port->lacp_priority);
4507 memcpy(&iface->lacp_actor.sysid, port->bridge->ea, ETH_ADDR_LEN);
4508
4509 iface->lacp_actor.port_priority = htons(iface->lacp_priority);
4510 iface->lacp_actor.portid = htons(iface->dp_ifidx);
4511 iface->lacp_actor.key = htons(port->lacp_key);
4512
4513 iface->lacp_tx = 0;
4514 }
4515 port->lacp_need_update = true;
4516}
4517
064af421
BP
4518static void
4519port_update_bonding(struct port *port)
4520{
0bb5c3ec
BP
4521 if (port->monitor) {
4522 netdev_monitor_destroy(port->monitor);
4523 port->monitor = NULL;
4524 }
064af421
BP
4525 if (port->n_ifaces < 2) {
4526 /* Not a bonded port. */
0b8b6f71
BP
4527 free(port->bond_hash);
4528 port->bond_hash = NULL;
be02e7c3 4529 port->bond_fake_iface = false;
55eccb86
EJ
4530 port->active_iface = -1;
4531 port->no_ifaces_tag = 0;
064af421 4532 } else {
0bb5c3ec 4533 size_t i;
064af421 4534
9f5073d8 4535 if (port->bond_mode != BM_AB && !port->bond_hash) {
064af421
BP
4536 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
4537 for (i = 0; i <= BOND_MASK; i++) {
4538 struct bond_entry *e = &port->bond_hash[i];
4539 e->iface_idx = -1;
4540 e->tx_bytes = 0;
4541 }
c8143c88
BP
4542 port->bond_next_rebalance
4543 = time_msec() + port->bond_rebalance_interval;
9f5073d8 4544 } else if (port->bond_mode == BM_AB) {
be02e7c3
EJ
4545 free(port->bond_hash);
4546 port->bond_hash = NULL;
064af421 4547 }
55eccb86
EJ
4548
4549 if (!port->no_ifaces_tag) {
4550 port->no_ifaces_tag = tag_create_random();
4551 }
4552
4553 if (port->active_iface < 0) {
4554 bond_choose_active_iface(port);
4555 }
4556
76343538 4557 port->bond_fake_iface = port->cfg->bond_fake_iface;
55eccb86
EJ
4558 if (port->bond_fake_iface) {
4559 port->bond_next_fake_iface_update = time_msec();
4560 }
0bb5c3ec 4561
63331829
EJ
4562 if (!port->miimon) {
4563 port->monitor = netdev_monitor_create();
4564 for (i = 0; i < port->n_ifaces; i++) {
4565 netdev_monitor_add(port->monitor, port->ifaces[i]->netdev);
4566 }
0bb5c3ec 4567 }
064af421
BP
4568 }
4569}
064af421
BP
4570\f
4571/* Interface functions. */
4572
c25c91fd
EJ
4573static void
4574iface_set_lacp_defaulted(struct iface *iface)
4575{
8834f25e 4576 memset(&iface->lacp_partner, 0, sizeof iface->lacp_partner);
c25c91fd 4577
76ab2ea7
EJ
4578 iface->lacp_status |= LACP_DEFAULTED;
4579 iface->lacp_status &= ~(LACP_CURRENT | LACP_EXPIRED);
c25c91fd
EJ
4580 iface->lacp_tx = 0;
4581 iface->port->lacp_need_update = true;
4582}
4583
4584static void
4585iface_set_lacp_expired(struct iface *iface)
4586{
cd482758
EJ
4587 iface->lacp_status &= ~LACP_CURRENT;
4588 iface->lacp_status |= LACP_EXPIRED;
c25c91fd
EJ
4589 iface->lacp_partner.state |= LACP_STATE_TIME;
4590 iface->lacp_partner.state &= ~LACP_STATE_SYNC;
4591
4592 iface->lacp_rx = time_msec() + LACP_FAST_TIME_RX;
4593 iface->lacp_tx = 0;
4594}
4595
4596static uint8_t
4597iface_get_lacp_state(const struct iface *iface)
4598{
4599 uint8_t state = 0;
4600
4601 if (iface->port->lacp & LACP_ACTIVE) {
4602 state |= LACP_STATE_ACT;
4603 }
4604
cd482758 4605 if (iface->lacp_status & LACP_ATTACHED) {
c25c91fd
EJ
4606 state |= LACP_STATE_SYNC;
4607 }
4608
cd482758
EJ
4609 if (iface->lacp_status & LACP_DEFAULTED) {
4610 state |= LACP_STATE_DEF;
4611 }
4612
4613 if (iface->lacp_status & LACP_EXPIRED) {
c25c91fd
EJ
4614 state |= LACP_STATE_EXP;
4615 }
4616
4617 if (iface->port->n_ifaces > 1) {
4618 state |= LACP_STATE_AGG;
4619 }
4620
4621 if (iface->enabled) {
4622 state |= LACP_STATE_COL | LACP_STATE_DIST;
4623 }
4624
4625 return state;
4626}
4627
4628/* Given 'iface', populates 'priority' with data representing its LACP link
4629 * priority. If two priority objects populated by this function are compared
4630 * using memcmp, the higher priority link will be less than the lower priority
4631 * link. */
4632static void
4633iface_get_lacp_priority(struct iface *iface, struct lacp_info *priority)
4634{
4635 uint16_t partner_priority, actor_priority;
4636
4637 /* Choose the lacp_info of the higher priority system by comparing their
4638 * system priorities and mac addresses. */
4639 actor_priority = ntohs(iface->lacp_actor.sys_priority);
4640 partner_priority = ntohs(iface->lacp_partner.sys_priority);
4641 if (actor_priority < partner_priority) {
4642 *priority = iface->lacp_actor;
4643 } else if (partner_priority < actor_priority) {
4644 *priority = iface->lacp_partner;
4645 } else if (eth_addr_compare_3way(iface->lacp_actor.sysid,
4646 iface->lacp_partner.sysid) < 0) {
4647 *priority = iface->lacp_actor;
4648 } else {
4649 *priority = iface->lacp_partner;
4650 }
4651
4652 /* Key and state are not used in priority comparisons. */
4653 priority->key = 0;
4654 priority->state = 0;
4655}
4656
b31bcf60
EJ
4657static void
4658iface_send_packet(struct iface *iface, struct ofpbuf *packet)
4659{
4660 struct flow flow;
4661 union ofp_action action;
4662
4663 memset(&action, 0, sizeof action);
4664 action.output.type = htons(OFPAT_OUTPUT);
4665 action.output.len = htons(sizeof action);
4666 action.output.port = htons(odp_port_to_ofp_port(iface->dp_ifidx));
4667
4668 flow_extract(packet, 0, ODPP_NONE, &flow);
4669
4670 if (ofproto_send_packet(iface->port->bridge->ofproto, &flow, &action, 1,
4671 packet)) {
4672 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4673 VLOG_WARN_RL(&rl, "interface %s: Failed to send packet.", iface->name);
4674 }
4675}
4676
76343538 4677static struct iface *
a740f0de 4678iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
064af421 4679{
4a1ee6ae 4680 struct bridge *br = port->bridge;
064af421 4681 struct iface *iface;
a740f0de 4682 char *name = if_cfg->name;
064af421 4683
ec6fde61 4684 iface = xzalloc(sizeof *iface);
064af421
BP
4685 iface->port = port;
4686 iface->port_ifidx = port->n_ifaces;
4687 iface->name = xstrdup(name);
4688 iface->dp_ifidx = -1;
4689 iface->tag = tag_create_random();
064af421 4690 iface->delay_expires = LLONG_MAX;
0c6aea3f 4691 iface->netdev = NULL;
149f577a 4692 iface->cfg = if_cfg;
c25c91fd
EJ
4693 iface_set_lacp_defaulted(iface);
4694
4695 if (port->lacp & LACP_ACTIVE) {
4696 iface_set_lacp_expired(iface);
4697 }
064af421 4698
2457b24f
JG
4699 shash_add_assert(&br->iface_by_name, iface->name, iface);
4700
064af421
BP
4701 if (port->n_ifaces >= port->allocated_ifaces) {
4702 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
4703 sizeof *port->ifaces);
4704 }
4705 port->ifaces[port->n_ifaces++] = iface;
4706 if (port->n_ifaces > 1) {
4a1ee6ae 4707 br->has_bonded_ports = true;
064af421
BP
4708 }
4709
4710 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
4711
4a1ee6ae 4712 bridge_flush(br);
76343538
BP
4713
4714 return iface;
064af421
BP
4715}
4716
4717static void
4718iface_destroy(struct iface *iface)
4719{
4720 if (iface) {
4721 struct port *port = iface->port;
4722 struct bridge *br = port->bridge;
4723 bool del_active = port->active_iface == iface->port_ifidx;
4724 struct iface *del;
4725
7ca5f243
EJ
4726 if (port->monitor) {
4727 netdev_monitor_remove(port->monitor, iface->netdev);
4728 }
4729
4a1ee6ae
BP
4730 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
4731
064af421 4732 if (iface->dp_ifidx >= 0) {
d9a8717a 4733 hmap_remove(&br->ifaces, &iface->dp_ifidx_node);
064af421
BP
4734 }
4735
4736 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
4737 del->port_ifidx = iface->port_ifidx;
4738
0c6aea3f 4739 netdev_close(iface->netdev);
064af421
BP
4740
4741 if (del_active) {
4742 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4743 bond_choose_active_iface(port);
2303f3b2 4744 bond_send_learning_packets(port);
064af421
BP
4745 }
4746
b31bcf60
EJ
4747 cfm_destroy(iface->cfm);
4748
a740f0de
JG
4749 free(iface->name);
4750 free(iface);
4751
064af421
BP
4752 bridge_flush(port->bridge);
4753 }
4754}
4755
4756static struct iface *
4757iface_lookup(const struct bridge *br, const char *name)
4758{
4a1ee6ae 4759 return shash_find_data(&br->iface_by_name, name);
064af421
BP
4760}
4761
4762static struct iface *
4763iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4764{
d9a8717a
BP
4765 struct iface *iface;
4766
4e8e4213 4767 HMAP_FOR_EACH_IN_BUCKET (iface, dp_ifidx_node,
d9a8717a
BP
4768 hash_int(dp_ifidx, 0), &br->ifaces) {
4769 if (iface->dp_ifidx == dp_ifidx) {
4770 return iface;
4771 }
4772 }
4773 return NULL;
064af421 4774}
557d8e6c 4775
52df17e7
BP
4776/* Set Ethernet address of 'iface', if one is specified in the configuration
4777 * file. */
4778static void
4779iface_set_mac(struct iface *iface)
4780{
76343538 4781 uint8_t ea[ETH_ADDR_LEN];
52df17e7 4782
76343538 4783 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
52df17e7
BP
4784 if (eth_addr_is_multicast(ea)) {
4785 VLOG_ERR("interface %s: cannot set MAC to multicast address",
4786 iface->name);
4787 } else if (iface->dp_ifidx == ODPP_LOCAL) {
4788 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
4789 iface->name, iface->name);
4790 } else {
4d678233 4791 int error = netdev_set_etheraddr(iface->netdev, ea);
52df17e7
BP
4792 if (error) {
4793 VLOG_ERR("interface %s: setting MAC failed (%s)",
4794 iface->name, strerror(error));
4795 }
4796 }
4797 }
4798}
c1c9c9c4 4799
bcd49a45
BP
4800/* Sets the ofport column of 'if_cfg' to 'ofport'. */
4801static void
4802iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
4803{
4804 if (if_cfg) {
4805 ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
4806 }
4807}
4808
43776b8f
BP
4809/* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
4810 *
4811 * The value strings in '*shash' are taken directly from values[], not copied,
4812 * so the caller should not modify or free them. */
c1c9c9c4
BP
4813static void
4814shash_from_ovs_idl_map(char **keys, char **values, size_t n,
4815 struct shash *shash)
4816{
4817 size_t i;
4818
4819 shash_init(shash);
4820 for (i = 0; i < n; i++) {
4821 shash_add(shash, keys[i], values[i]);
4822 }
4823}
4824
ea763e0e
EJ
4825/* Creates 'keys' and 'values' arrays from 'shash'.
4826 *
4827 * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
4828 * pairs in 'shash'. The caller takes ownership of 'keys' and 'values'. They
4829 * are populated with with strings taken directly from 'shash' and thus have
4830 * the same ownership of the key-value pairs in shash.
4831 */
4832static void
4833shash_to_ovs_idl_map(struct shash *shash,
4834 char ***keys, char ***values, size_t *n)
4835{
4836 size_t i, count;
4837 char **k, **v;
4838 struct shash_node *sn;
4839
4840 count = shash_count(shash);
4841
4842 k = xmalloc(count * sizeof *k);
4843 v = xmalloc(count * sizeof *v);
4844
4845 i = 0;
4846 SHASH_FOR_EACH(sn, shash) {
4847 k[i] = sn->name;
4848 v[i] = sn->data;
4849 i++;
4850 }
4851
4852 *n = count;
4853 *keys = k;
4854 *values = v;
4855}
4856
c1c9c9c4
BP
4857struct iface_delete_queues_cbdata {
4858 struct netdev *netdev;
44fca7f9 4859 const struct ovsdb_datum *queues;
c1c9c9c4
BP
4860};
4861
4862static bool
44fca7f9 4863queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
c1c9c9c4 4864{
44fca7f9 4865 union ovsdb_atom atom;
c1c9c9c4 4866
44fca7f9
BP
4867 atom.integer = target;
4868 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
c1c9c9c4
BP
4869}
4870
4871static void
4872iface_delete_queues(unsigned int queue_id,
4873 const struct shash *details OVS_UNUSED, void *cbdata_)
4874{
4875 struct iface_delete_queues_cbdata *cbdata = cbdata_;
4876
44fca7f9 4877 if (!queue_ids_include(cbdata->queues, queue_id)) {
c1c9c9c4
BP
4878 netdev_delete_queue(cbdata->netdev, queue_id);
4879 }
4880}
4881
4882static void
4883iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
4884{
4885 if (!qos || qos->type[0] == '\0') {
4886 netdev_set_qos(iface->netdev, NULL, NULL);
4887 } else {
4888 struct iface_delete_queues_cbdata cbdata;
4889 struct shash details;
4890 size_t i;
4891
4892 /* Configure top-level Qos for 'iface'. */
4893 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
4894 qos->n_other_config, &details);
4895 netdev_set_qos(iface->netdev, qos->type, &details);
4896 shash_destroy(&details);
4897
4898 /* Deconfigure queues that were deleted. */
4899 cbdata.netdev = iface->netdev;
44fca7f9
BP
4900 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
4901 OVSDB_TYPE_UUID);
c1c9c9c4
BP
4902 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
4903
4904 /* Configure queues for 'iface'. */
4905 for (i = 0; i < qos->n_queues; i++) {
4906 const struct ovsrec_queue *queue = qos->value_queues[i];
4907 unsigned int queue_id = qos->key_queues[i];
4908
4909 shash_from_ovs_idl_map(queue->key_other_config,
4910 queue->value_other_config,
4911 queue->n_other_config, &details);
4912 netdev_set_queue(iface->netdev, queue_id, &details);
4913 shash_destroy(&details);
4914 }
4915 }
4916}
b31bcf60
EJ
4917
4918static void
4919iface_update_cfm(struct iface *iface)
4920{
4921 size_t i;
4922 struct cfm *cfm;
4923 uint16_t *remote_mps;
4924 struct ovsrec_monitor *mon;
4925 uint8_t ea[ETH_ADDR_LEN], maid[CCM_MAID_LEN];
4926
4927 mon = iface->cfg->monitor;
4928
4929 if (!mon) {
4fadfb56
BP
4930 cfm_destroy(iface->cfm);
4931 iface->cfm = NULL;
b31bcf60
EJ
4932 return;
4933 }
4934
4935 if (netdev_get_etheraddr(iface->netdev, ea)) {
4936 VLOG_WARN("interface %s: Failed to get ethernet address. "
4937 "Skipping Monitor.", iface->name);
4938 return;
4939 }
4940
4941 if (!cfm_generate_maid(mon->md_name, mon->ma_name, maid)) {
4942 VLOG_WARN("interface %s: Failed to generate MAID.", iface->name);
4943 return;
4944 }
4945
4946 if (!iface->cfm) {
4947 iface->cfm = cfm_create();
4948 }
4949
4950 cfm = iface->cfm;
4951 cfm->mpid = mon->mpid;
4952 cfm->interval = mon->interval ? *mon->interval : 1000;
4953
4954 memcpy(cfm->eth_src, ea, sizeof cfm->eth_src);
4955 memcpy(cfm->maid, maid, sizeof cfm->maid);
4956
4957 remote_mps = xzalloc(mon->n_remote_mps * sizeof *remote_mps);
4958 for(i = 0; i < mon->n_remote_mps; i++) {
4959 remote_mps[i] = mon->remote_mps[i]->mpid;
4960 }
4961 cfm_update_remote_mps(cfm, remote_mps, mon->n_remote_mps);
4962 free(remote_mps);
4963
4964 if (!cfm_configure(iface->cfm)) {
4965 cfm_destroy(iface->cfm);
4966 iface->cfm = NULL;
4967 }
4968}
064af421
BP
4969\f
4970/* Port mirroring. */
4971
dd0d105c
BP
4972static struct mirror *
4973mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
4974{
4975 int i;
4976
4977 for (i = 0; i < MAX_MIRRORS; i++) {
4978 struct mirror *m = br->mirrors[i];
4979 if (m && uuid_equals(uuid, &m->uuid)) {
4980 return m;
4981 }
4982 }
4983 return NULL;
4984}
4985
064af421 4986static void
37e7f427 4987mirror_reconfigure(struct bridge *br)
064af421 4988{
f2d7fd66 4989 unsigned long *rspan_vlans;
37e7f427 4990 int i;
064af421 4991
dd0d105c 4992 /* Get rid of deleted mirrors. */
064af421 4993 for (i = 0; i < MAX_MIRRORS; i++) {
dd0d105c
BP
4994 struct mirror *m = br->mirrors[i];
4995 if (m) {
4996 const struct ovsdb_datum *mc;
4997 union ovsdb_atom atom;
4998
4999 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
5000 atom.uuid = br->mirrors[i]->uuid;
5001 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
5002 mirror_destroy(m);
5003 }
064af421
BP
5004 }
5005 }
5006
dd0d105c 5007 /* Add new mirrors and reconfigure existing ones. */
37e7f427
BP
5008 for (i = 0; i < br->cfg->n_mirrors; i++) {
5009 struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
dd0d105c
BP
5010 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
5011 if (m) {
5012 mirror_reconfigure_one(m, cfg);
5013 } else {
5014 mirror_create(br, cfg);
064af421
BP
5015 }
5016 }
5017
5018 /* Update port reserved status. */
5019 for (i = 0; i < br->n_ports; i++) {
5020 br->ports[i]->is_mirror_output_port = false;
5021 }
5022 for (i = 0; i < MAX_MIRRORS; i++) {
5023 struct mirror *m = br->mirrors[i];
5024 if (m && m->out_port) {
5025 m->out_port->is_mirror_output_port = true;
5026 }
5027 }
f2d7fd66 5028
8f30d09a 5029 /* Update flooded vlans (for RSPAN). */
f2d7fd66 5030 rspan_vlans = NULL;
37e7f427 5031 if (br->cfg->n_flood_vlans) {
f2d7fd66
JG
5032 rspan_vlans = bitmap_allocate(4096);
5033
37e7f427
BP
5034 for (i = 0; i < br->cfg->n_flood_vlans; i++) {
5035 int64_t vlan = br->cfg->flood_vlans[i];
5036 if (vlan >= 0 && vlan < 4096) {
f2d7fd66 5037 bitmap_set1(rspan_vlans, vlan);
37e7f427 5038 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
42061b2a 5039 br->name, vlan);
f2d7fd66 5040 } else {
37e7f427
BP
5041 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
5042 br->name, vlan);
f2d7fd66
JG
5043 }
5044 }
5045 }
8f30d09a 5046 if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
f2d7fd66
JG
5047 bridge_flush(br);
5048 }
064af421
BP
5049}
5050
dd0d105c
BP
5051static void
5052mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
064af421
BP
5053{
5054 struct mirror *m;
5055 size_t i;
5056
5057 for (i = 0; ; i++) {
5058 if (i >= MAX_MIRRORS) {
5059 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
dd0d105c
BP
5060 "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
5061 return;
064af421
BP
5062 }
5063 if (!br->mirrors[i]) {
5064 break;
5065 }
5066 }
5067
dd0d105c 5068 VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
064af421
BP
5069 bridge_flush(br);
5070
ec6fde61 5071 br->mirrors[i] = m = xzalloc(sizeof *m);
064af421
BP
5072 m->bridge = br;
5073 m->idx = i;
dd0d105c 5074 m->name = xstrdup(cfg->name);
37e7f427
BP
5075 shash_init(&m->src_ports);
5076 shash_init(&m->dst_ports);
064af421
BP
5077 m->vlans = NULL;
5078 m->n_vlans = 0;
5079 m->out_vlan = -1;
5080 m->out_port = NULL;
37e7f427 5081
dd0d105c 5082 mirror_reconfigure_one(m, cfg);
064af421
BP
5083}
5084
5085static void
5086mirror_destroy(struct mirror *m)
5087{
5088 if (m) {
5089 struct bridge *br = m->bridge;
5090 size_t i;
5091
5092 for (i = 0; i < br->n_ports; i++) {
5093 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5094 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5095 }
5096
37e7f427
BP
5097 shash_destroy(&m->src_ports);
5098 shash_destroy(&m->dst_ports);
064af421
BP
5099 free(m->vlans);
5100
5101 m->bridge->mirrors[m->idx] = NULL;
786880a5 5102 free(m->name);
064af421
BP
5103 free(m);
5104
5105 bridge_flush(br);
5106 }
5107}
5108
5109static void
37e7f427
BP
5110mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
5111 struct shash *names)
064af421 5112{
064af421
BP
5113 size_t i;
5114
37e7f427
BP
5115 for (i = 0; i < n_ports; i++) {
5116 const char *name = ports[i]->name;
064af421 5117 if (port_lookup(m->bridge, name)) {
37e7f427 5118 shash_add_once(names, name, NULL);
064af421 5119 } else {
37e7f427
BP
5120 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
5121 "port %s", m->bridge->name, m->name, name);
064af421
BP
5122 }
5123 }
064af421
BP
5124}
5125
5126static size_t
37e7f427
BP
5127mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
5128 int **vlans)
064af421 5129{
37e7f427
BP
5130 size_t n_vlans;
5131 size_t i;
064af421 5132
0b523ea7 5133 *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
064af421 5134 n_vlans = 0;
37e7f427
BP
5135 for (i = 0; i < cfg->n_select_vlan; i++) {
5136 int64_t vlan = cfg->select_vlan[i];
5137 if (vlan < 0 || vlan > 4095) {
5138 VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
5139 m->bridge->name, m->name, vlan);
064af421
BP
5140 } else {
5141 (*vlans)[n_vlans++] = vlan;
5142 }
5143 }
5144 return n_vlans;
5145}
5146
5147static bool
5148vlan_is_mirrored(const struct mirror *m, int vlan)
5149{
5150 size_t i;
5151
5152 for (i = 0; i < m->n_vlans; i++) {
5153 if (m->vlans[i] == vlan) {
5154 return true;
5155 }
5156 }
5157 return false;
5158}
5159
5160static bool
5161port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
5162{
5163 size_t i;
5164
5165 for (i = 0; i < m->n_vlans; i++) {
5166 if (port_trunks_vlan(p, m->vlans[i])) {
5167 return true;
5168 }
5169 }
5170 return false;
5171}
5172
5173static void
37e7f427 5174mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
064af421 5175{
37e7f427 5176 struct shash src_ports, dst_ports;
064af421 5177 mirror_mask_t mirror_bit;
064af421
BP
5178 struct port *out_port;
5179 int out_vlan;
5180 size_t n_vlans;
5181 int *vlans;
5182 size_t i;
064af421 5183
dd0d105c
BP
5184 /* Set name. */
5185 if (strcmp(cfg->name, m->name)) {
5186 free(m->name);
5187 m->name = xstrdup(cfg->name);
5188 }
5189
064af421 5190 /* Get output port. */
37e7f427
BP
5191 if (cfg->output_port) {
5192 out_port = port_lookup(m->bridge, cfg->output_port->name);
064af421 5193 if (!out_port) {
37e7f427
BP
5194 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
5195 m->bridge->name, m->name);
064af421 5196 mirror_destroy(m);
064af421
BP
5197 return;
5198 }
5199 out_vlan = -1;
5200
37e7f427
BP
5201 if (cfg->output_vlan) {
5202 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
5203 "output vlan; ignoring output vlan",
5204 m->bridge->name, m->name);
064af421 5205 }
37e7f427 5206 } else if (cfg->output_vlan) {
064af421 5207 out_port = NULL;
37e7f427 5208 out_vlan = *cfg->output_vlan;
064af421 5209 } else {
37e7f427
BP
5210 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
5211 m->bridge->name, m->name);
064af421 5212 mirror_destroy(m);
064af421
BP
5213 return;
5214 }
5215
37e7f427
BP
5216 shash_init(&src_ports);
5217 shash_init(&dst_ports);
939ff267
BP
5218 if (cfg->select_all) {
5219 for (i = 0; i < m->bridge->n_ports; i++) {
5220 const char *name = m->bridge->ports[i]->name;
5221 shash_add_once(&src_ports, name, NULL);
5222 shash_add_once(&dst_ports, name, NULL);
5223 }
5224 vlans = NULL;
5225 n_vlans = 0;
5226 } else {
5227 /* Get ports, and drop duplicates and ports that don't exist. */
5228 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
5229 &src_ports);
5230 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
5231 &dst_ports);
064af421 5232
939ff267
BP
5233 /* Get all the vlans, and drop duplicate and invalid vlans. */
5234 n_vlans = mirror_collect_vlans(m, cfg, &vlans);
37e7f427 5235 }
064af421
BP
5236
5237 /* Update mirror data. */
37e7f427
BP
5238 if (!shash_equal_keys(&m->src_ports, &src_ports)
5239 || !shash_equal_keys(&m->dst_ports, &dst_ports)
064af421
BP
5240 || m->n_vlans != n_vlans
5241 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
5242 || m->out_port != out_port
5243 || m->out_vlan != out_vlan) {
5244 bridge_flush(m->bridge);
5245 }
37e7f427
BP
5246 shash_swap(&m->src_ports, &src_ports);
5247 shash_swap(&m->dst_ports, &dst_ports);
064af421
BP
5248 free(m->vlans);
5249 m->vlans = vlans;
5250 m->n_vlans = n_vlans;
5251 m->out_port = out_port;
5252 m->out_vlan = out_vlan;
5253
064af421
BP
5254 /* Update ports. */
5255 mirror_bit = MIRROR_MASK_C(1) << m->idx;
5256 for (i = 0; i < m->bridge->n_ports; i++) {
5257 struct port *port = m->bridge->ports[i];
5258
939ff267 5259 if (shash_find(&m->src_ports, port->name)
064af421
BP
5260 || (m->n_vlans
5261 && (!port->vlan
5262 ? port_trunks_any_mirrored_vlan(m, port)
5263 : vlan_is_mirrored(m, port->vlan)))) {
5264 port->src_mirrors |= mirror_bit;
5265 } else {
5266 port->src_mirrors &= ~mirror_bit;
5267 }
5268
939ff267 5269 if (shash_find(&m->dst_ports, port->name)) {
064af421
BP
5270 port->dst_mirrors |= mirror_bit;
5271 } else {
5272 port->dst_mirrors &= ~mirror_bit;
5273 }
5274 }
5275
5276 /* Clean up. */
37e7f427
BP
5277 shash_destroy(&src_ports);
5278 shash_destroy(&dst_ports);
064af421 5279}