]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/bonding/bond_main.c
rps: Fixed build with CONFIG_SMP not enabled.
[net-next-2.6.git] / drivers / net / bonding / bond_main.c
CommitLineData
1da177e4
LT
1/*
2 * originally based on the dummy device.
3 *
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
6 *
7 * bonding.c: an Ethernet Bonding driver
8 *
9 * This is useful to talk to a Cisco EtherChannel compatible equipment:
10 * Cisco 5500
11 * Sun Trunking (Solaris)
12 * Alteon AceDirector Trunks
13 * Linux Bonding
14 * and probably many L2 switches ...
15 *
16 * How it works:
17 * ifconfig bond0 ipaddress netmask up
18 * will setup a network device, with an ip address. No mac address
19 * will be assigned at this time. The hw mac address will come from
20 * the first slave bonded to the channel. All slaves will then use
21 * this hw mac address.
22 *
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
25 *
26 * ifenslave bond0 eth0
27 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
28 * a: be used as initial mac address
29 * b: if a hw mac address already is there, eth0's hw mac address
30 * will then be set from bond0.
31 *
1da177e4
LT
32 */
33
a4aee5c8
JP
34#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
1da177e4
LT
36#include <linux/kernel.h>
37#include <linux/module.h>
1da177e4
LT
38#include <linux/types.h>
39#include <linux/fcntl.h>
40#include <linux/interrupt.h>
41#include <linux/ptrace.h>
42#include <linux/ioport.h>
43#include <linux/in.h>
169a3e66 44#include <net/ip.h>
1da177e4 45#include <linux/ip.h>
169a3e66
JV
46#include <linux/tcp.h>
47#include <linux/udp.h>
1da177e4
LT
48#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
3d632c3f 56#include <linux/io.h>
1da177e4 57#include <asm/system.h>
1da177e4 58#include <asm/dma.h>
3d632c3f 59#include <linux/uaccess.h>
1da177e4
LT
60#include <linux/errno.h>
61#include <linux/netdevice.h>
62#include <linux/inetdevice.h>
a816c7c7 63#include <linux/igmp.h>
1da177e4
LT
64#include <linux/etherdevice.h>
65#include <linux/skbuff.h>
66#include <net/sock.h>
67#include <linux/rtnetlink.h>
68#include <linux/proc_fs.h>
69#include <linux/seq_file.h>
70#include <linux/smp.h>
71#include <linux/if_ether.h>
72#include <net/arp.h>
73#include <linux/mii.h>
74#include <linux/ethtool.h>
75#include <linux/if_vlan.h>
76#include <linux/if_bonding.h>
b63bb739 77#include <linux/jiffies.h>
c3ade5ca 78#include <net/route.h>
457c4cbc 79#include <net/net_namespace.h>
ec87fd3b 80#include <net/netns/generic.h>
1da177e4
LT
81#include "bonding.h"
82#include "bond_3ad.h"
83#include "bond_alb.h"
84
85/*---------------------------- Module parameters ----------------------------*/
86
87/* monitor all links that often (in milliseconds). <=0 disables monitoring */
88#define BOND_LINK_MON_INTERV 0
89#define BOND_LINK_ARP_INTERV 0
90
91static int max_bonds = BOND_DEFAULT_MAX_BONDS;
7893b249 92static int num_grat_arp = 1;
305d552a 93static int num_unsol_na = 1;
1da177e4 94static int miimon = BOND_LINK_MON_INTERV;
3d632c3f
SH
95static int updelay;
96static int downdelay;
1da177e4 97static int use_carrier = 1;
3d632c3f
SH
98static char *mode;
99static char *primary;
a549952a 100static char *primary_reselect;
3d632c3f
SH
101static char *lacp_rate;
102static char *ad_select;
103static char *xmit_hash_policy;
1da177e4 104static int arp_interval = BOND_LINK_ARP_INTERV;
3d632c3f
SH
105static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
106static char *arp_validate;
107static char *fail_over_mac;
d2991f75 108static struct bond_params bonding_defaults;
1da177e4
LT
109
110module_param(max_bonds, int, 0);
111MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
7893b249
MS
112module_param(num_grat_arp, int, 0644);
113MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
305d552a
BH
114module_param(num_unsol_na, int, 0644);
115MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
1da177e4
LT
116module_param(miimon, int, 0);
117MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
118module_param(updelay, int, 0);
119MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
120module_param(downdelay, int, 0);
2ac47660
MW
121MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
122 "in milliseconds");
1da177e4 123module_param(use_carrier, int, 0);
2ac47660
MW
124MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
125 "0 for off, 1 for on (default)");
1da177e4 126module_param(mode, charp, 0);
2ac47660
MW
127MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
128 "1 for active-backup, 2 for balance-xor, "
129 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
130 "6 for balance-alb");
1da177e4
LT
131module_param(primary, charp, 0);
132MODULE_PARM_DESC(primary, "Primary network device to use");
a549952a
JP
133module_param(primary_reselect, charp, 0);
134MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
135 "once it comes up; "
136 "0 for always (default), "
137 "1 for only if speed of primary is "
138 "better, "
139 "2 for only on active slave "
140 "failure");
1da177e4 141module_param(lacp_rate, charp, 0);
2ac47660
MW
142MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
143 "(slow/fast)");
fd989c83
JV
144module_param(ad_select, charp, 0);
145MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
169a3e66 146module_param(xmit_hash_policy, charp, 0);
2ac47660
MW
147MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
148 ", 1 for layer 3+4");
1da177e4
LT
149module_param(arp_interval, int, 0);
150MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
151module_param_array(arp_ip_target, charp, NULL, 0);
152MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
f5b2b966
JV
153module_param(arp_validate, charp, 0);
154MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
3915c1e8
JV
155module_param(fail_over_mac, charp, 0);
156MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
1da177e4
LT
157
158/*----------------------------- Global variables ----------------------------*/
159
f71e1309 160static const char * const version =
1da177e4
LT
161 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
162
f99189b1 163int bond_net_id __read_mostly;
1da177e4 164
3d632c3f
SH
165static __be32 arp_target[BOND_MAX_ARP_TARGETS];
166static int arp_ip_count;
1da177e4 167static int bond_mode = BOND_MODE_ROUNDROBIN;
3d632c3f
SH
168static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
169static int lacp_fast;
217df670 170
1da177e4 171
e97fd7c6 172const struct bond_parm_tbl bond_lacp_tbl[] = {
1da177e4
LT
173{ "slow", AD_LACP_SLOW},
174{ "fast", AD_LACP_FAST},
175{ NULL, -1},
176};
177
e97fd7c6 178const struct bond_parm_tbl bond_mode_tbl[] = {
1da177e4
LT
179{ "balance-rr", BOND_MODE_ROUNDROBIN},
180{ "active-backup", BOND_MODE_ACTIVEBACKUP},
181{ "balance-xor", BOND_MODE_XOR},
182{ "broadcast", BOND_MODE_BROADCAST},
183{ "802.3ad", BOND_MODE_8023AD},
184{ "balance-tlb", BOND_MODE_TLB},
185{ "balance-alb", BOND_MODE_ALB},
186{ NULL, -1},
187};
188
e97fd7c6 189const struct bond_parm_tbl xmit_hashtype_tbl[] = {
169a3e66
JV
190{ "layer2", BOND_XMIT_POLICY_LAYER2},
191{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
6f6652be 192{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
169a3e66
JV
193{ NULL, -1},
194};
195
e97fd7c6 196const struct bond_parm_tbl arp_validate_tbl[] = {
f5b2b966
JV
197{ "none", BOND_ARP_VALIDATE_NONE},
198{ "active", BOND_ARP_VALIDATE_ACTIVE},
199{ "backup", BOND_ARP_VALIDATE_BACKUP},
200{ "all", BOND_ARP_VALIDATE_ALL},
201{ NULL, -1},
202};
203
e97fd7c6 204const struct bond_parm_tbl fail_over_mac_tbl[] = {
3915c1e8
JV
205{ "none", BOND_FOM_NONE},
206{ "active", BOND_FOM_ACTIVE},
207{ "follow", BOND_FOM_FOLLOW},
208{ NULL, -1},
209};
210
a549952a
JP
211const struct bond_parm_tbl pri_reselect_tbl[] = {
212{ "always", BOND_PRI_RESELECT_ALWAYS},
213{ "better", BOND_PRI_RESELECT_BETTER},
214{ "failure", BOND_PRI_RESELECT_FAILURE},
215{ NULL, -1},
216};
217
fd989c83
JV
218struct bond_parm_tbl ad_select_tbl[] = {
219{ "stable", BOND_AD_STABLE},
220{ "bandwidth", BOND_AD_BANDWIDTH},
221{ "count", BOND_AD_COUNT},
222{ NULL, -1},
223};
224
1da177e4
LT
225/*-------------------------- Forward declarations ---------------------------*/
226
c3ade5ca 227static void bond_send_gratuitous_arp(struct bonding *bond);
181470fc 228static int bond_init(struct net_device *bond_dev);
c67dfb29 229static void bond_uninit(struct net_device *bond_dev);
1da177e4
LT
230
231/*---------------------------- General routines -----------------------------*/
232
4ad072c9 233static const char *bond_mode_name(int mode)
1da177e4 234{
77afc92b
HE
235 static const char *names[] = {
236 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
237 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
238 [BOND_MODE_XOR] = "load balancing (xor)",
239 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
3d632c3f 240 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
77afc92b
HE
241 [BOND_MODE_TLB] = "transmit load balancing",
242 [BOND_MODE_ALB] = "adaptive load balancing",
243 };
244
245 if (mode < 0 || mode > BOND_MODE_ALB)
1da177e4 246 return "unknown";
77afc92b
HE
247
248 return names[mode];
1da177e4
LT
249}
250
251/*---------------------------------- VLAN -----------------------------------*/
252
253/**
254 * bond_add_vlan - add a new vlan id on bond
255 * @bond: bond that got the notification
256 * @vlan_id: the vlan id to add
257 *
258 * Returns -ENOMEM if allocation failed.
259 */
260static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
261{
262 struct vlan_entry *vlan;
263
5a03cdb7 264 pr_debug("bond: %s, vlan id %d\n",
a4aee5c8 265 (bond ? bond->dev->name : "None"), vlan_id);
1da177e4 266
305d552a 267 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
3d632c3f 268 if (!vlan)
1da177e4 269 return -ENOMEM;
1da177e4
LT
270
271 INIT_LIST_HEAD(&vlan->vlan_list);
272 vlan->vlan_id = vlan_id;
273
274 write_lock_bh(&bond->lock);
275
276 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
277
278 write_unlock_bh(&bond->lock);
279
5a03cdb7 280 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
1da177e4
LT
281
282 return 0;
283}
284
285/**
286 * bond_del_vlan - delete a vlan id from bond
287 * @bond: bond that got the notification
288 * @vlan_id: the vlan id to delete
289 *
290 * returns -ENODEV if @vlan_id was not found in @bond.
291 */
292static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
293{
0883beca 294 struct vlan_entry *vlan;
1da177e4
LT
295 int res = -ENODEV;
296
5a03cdb7 297 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
1da177e4
LT
298
299 write_lock_bh(&bond->lock);
300
0883beca 301 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
1da177e4
LT
302 if (vlan->vlan_id == vlan_id) {
303 list_del(&vlan->vlan_list);
304
58402054 305 if (bond_is_lb(bond))
1da177e4 306 bond_alb_clear_vlan(bond, vlan_id);
1da177e4 307
a4aee5c8
JP
308 pr_debug("removed VLAN ID %d from bond %s\n",
309 vlan_id, bond->dev->name);
1da177e4
LT
310
311 kfree(vlan);
312
313 if (list_empty(&bond->vlan_list) &&
314 (bond->slave_cnt == 0)) {
315 /* Last VLAN removed and no slaves, so
316 * restore block on adding VLANs. This will
317 * be removed once new slaves that are not
318 * VLAN challenged will be added.
319 */
320 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
321 }
322
323 res = 0;
324 goto out;
325 }
326 }
327
a4aee5c8
JP
328 pr_debug("couldn't find VLAN ID %d in bond %s\n",
329 vlan_id, bond->dev->name);
1da177e4
LT
330
331out:
332 write_unlock_bh(&bond->lock);
333 return res;
334}
335
336/**
337 * bond_has_challenged_slaves
338 * @bond: the bond we're working on
339 *
340 * Searches the slave list. Returns 1 if a vlan challenged slave
341 * was found, 0 otherwise.
342 *
343 * Assumes bond->lock is held.
344 */
345static int bond_has_challenged_slaves(struct bonding *bond)
346{
347 struct slave *slave;
348 int i;
349
350 bond_for_each_slave(bond, slave, i) {
351 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
5a03cdb7 352 pr_debug("found VLAN challenged slave - %s\n",
a4aee5c8 353 slave->dev->name);
1da177e4
LT
354 return 1;
355 }
356 }
357
5a03cdb7 358 pr_debug("no VLAN challenged slaves found\n");
1da177e4
LT
359 return 0;
360}
361
362/**
363 * bond_next_vlan - safely skip to the next item in the vlans list.
364 * @bond: the bond we're working on
365 * @curr: item we're advancing from
366 *
367 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
368 * or @curr->next otherwise (even if it is @curr itself again).
3d632c3f 369 *
1da177e4
LT
370 * Caller must hold bond->lock
371 */
372struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
373{
374 struct vlan_entry *next, *last;
375
3d632c3f 376 if (list_empty(&bond->vlan_list))
1da177e4 377 return NULL;
1da177e4
LT
378
379 if (!curr) {
380 next = list_entry(bond->vlan_list.next,
381 struct vlan_entry, vlan_list);
382 } else {
383 last = list_entry(bond->vlan_list.prev,
384 struct vlan_entry, vlan_list);
385 if (last == curr) {
386 next = list_entry(bond->vlan_list.next,
387 struct vlan_entry, vlan_list);
388 } else {
389 next = list_entry(curr->vlan_list.next,
390 struct vlan_entry, vlan_list);
391 }
392 }
393
394 return next;
395}
396
397/**
398 * bond_dev_queue_xmit - Prepare skb for xmit.
3d632c3f 399 *
1da177e4
LT
400 * @bond: bond device that got this skb for tx.
401 * @skb: hw accel VLAN tagged skb to transmit
402 * @slave_dev: slave that is supposed to xmit this skbuff
3d632c3f 403 *
1da177e4
LT
404 * When the bond gets an skb to transmit that is
405 * already hardware accelerated VLAN tagged, and it
406 * needs to relay this skb to a slave that is not
407 * hw accel capable, the skb needs to be "unaccelerated",
408 * i.e. strip the hwaccel tag and re-insert it as part
409 * of the payload.
410 */
3d632c3f
SH
411int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
412 struct net_device *slave_dev)
1da177e4 413{
966bc6f4 414 unsigned short uninitialized_var(vlan_id);
1da177e4
LT
415
416 if (!list_empty(&bond->vlan_list) &&
417 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
418 vlan_get_tag(skb, &vlan_id) == 0) {
419 skb->dev = slave_dev;
420 skb = vlan_put_tag(skb, vlan_id);
421 if (!skb) {
422 /* vlan_put_tag() frees the skb in case of error,
423 * so return success here so the calling functions
424 * won't attempt to free is again.
425 */
426 return 0;
427 }
428 } else {
429 skb->dev = slave_dev;
430 }
431
432 skb->priority = 1;
433 dev_queue_xmit(skb);
434
435 return 0;
436}
437
438/*
439 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
440 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
441 * lock because:
442 * a. This operation is performed in IOCTL context,
443 * b. The operation is protected by the RTNL semaphore in the 8021q code,
444 * c. Holding a lock with BH disabled while directly calling a base driver
445 * entry point is generally a BAD idea.
3d632c3f 446 *
1da177e4
LT
447 * The design of synchronization/protection for this operation in the 8021q
448 * module is good for one or more VLAN devices over a single physical device
449 * and cannot be extended for a teaming solution like bonding, so there is a
450 * potential race condition here where a net device from the vlan group might
451 * be referenced (either by a base driver or the 8021q code) while it is being
452 * removed from the system. However, it turns out we're not making matters
453 * worse, and if it works for regular VLAN usage it will work here too.
454*/
455
456/**
457 * bond_vlan_rx_register - Propagates registration to slaves
458 * @bond_dev: bonding net device that got called
459 * @grp: vlan group being registered
460 */
3d632c3f
SH
461static void bond_vlan_rx_register(struct net_device *bond_dev,
462 struct vlan_group *grp)
1da177e4 463{
454d7c9b 464 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
465 struct slave *slave;
466 int i;
467
468 bond->vlgrp = grp;
469
470 bond_for_each_slave(bond, slave, i) {
471 struct net_device *slave_dev = slave->dev;
eb7cc59a 472 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1da177e4
LT
473
474 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
eb7cc59a
SH
475 slave_ops->ndo_vlan_rx_register) {
476 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
1da177e4
LT
477 }
478 }
479}
480
481/**
482 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
483 * @bond_dev: bonding net device that got called
484 * @vid: vlan id being added
485 */
486static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
487{
454d7c9b 488 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
489 struct slave *slave;
490 int i, res;
491
492 bond_for_each_slave(bond, slave, i) {
493 struct net_device *slave_dev = slave->dev;
eb7cc59a 494 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1da177e4
LT
495
496 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
eb7cc59a
SH
497 slave_ops->ndo_vlan_rx_add_vid) {
498 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
1da177e4
LT
499 }
500 }
501
502 res = bond_add_vlan(bond, vid);
503 if (res) {
a4aee5c8 504 pr_err("%s: Error: Failed to add vlan id %d\n",
1da177e4
LT
505 bond_dev->name, vid);
506 }
507}
508
509/**
510 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
511 * @bond_dev: bonding net device that got called
512 * @vid: vlan id being removed
513 */
514static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
515{
454d7c9b 516 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
517 struct slave *slave;
518 struct net_device *vlan_dev;
519 int i, res;
520
521 bond_for_each_slave(bond, slave, i) {
522 struct net_device *slave_dev = slave->dev;
eb7cc59a 523 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1da177e4
LT
524
525 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
eb7cc59a 526 slave_ops->ndo_vlan_rx_kill_vid) {
1da177e4
LT
527 /* Save and then restore vlan_dev in the grp array,
528 * since the slave's driver might clear it.
529 */
5c15bdec 530 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
eb7cc59a 531 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
5c15bdec 532 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
1da177e4
LT
533 }
534 }
535
536 res = bond_del_vlan(bond, vid);
537 if (res) {
a4aee5c8 538 pr_err("%s: Error: Failed to remove vlan id %d\n",
1da177e4
LT
539 bond_dev->name, vid);
540 }
541}
542
543static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
544{
545 struct vlan_entry *vlan;
eb7cc59a 546 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1da177e4
LT
547
548 write_lock_bh(&bond->lock);
549
eb7cc59a 550 if (list_empty(&bond->vlan_list))
1da177e4 551 goto out;
1da177e4
LT
552
553 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
eb7cc59a
SH
554 slave_ops->ndo_vlan_rx_register)
555 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
1da177e4
LT
556
557 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
eb7cc59a 558 !(slave_ops->ndo_vlan_rx_add_vid))
1da177e4 559 goto out;
1da177e4 560
eb7cc59a
SH
561 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
562 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
1da177e4
LT
563
564out:
565 write_unlock_bh(&bond->lock);
566}
567
3d632c3f
SH
568static void bond_del_vlans_from_slave(struct bonding *bond,
569 struct net_device *slave_dev)
1da177e4 570{
eb7cc59a 571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1da177e4
LT
572 struct vlan_entry *vlan;
573 struct net_device *vlan_dev;
574
575 write_lock_bh(&bond->lock);
576
eb7cc59a 577 if (list_empty(&bond->vlan_list))
1da177e4 578 goto out;
1da177e4
LT
579
580 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
eb7cc59a 581 !(slave_ops->ndo_vlan_rx_kill_vid))
1da177e4 582 goto unreg;
1da177e4
LT
583
584 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
585 /* Save and then restore vlan_dev in the grp array,
586 * since the slave's driver might clear it.
587 */
5c15bdec 588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
eb7cc59a 589 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
5c15bdec 590 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
1da177e4
LT
591 }
592
593unreg:
594 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
eb7cc59a
SH
595 slave_ops->ndo_vlan_rx_register)
596 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
1da177e4
LT
597
598out:
599 write_unlock_bh(&bond->lock);
600}
601
602/*------------------------------- Link status -------------------------------*/
603
ff59c456
JV
604/*
605 * Set the carrier state for the master according to the state of its
606 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
607 * do special 802.3ad magic.
608 *
609 * Returns zero if carrier state does not change, nonzero if it does.
610 */
611static int bond_set_carrier(struct bonding *bond)
612{
613 struct slave *slave;
614 int i;
615
616 if (bond->slave_cnt == 0)
617 goto down;
618
619 if (bond->params.mode == BOND_MODE_8023AD)
620 return bond_3ad_set_carrier(bond);
621
622 bond_for_each_slave(bond, slave, i) {
623 if (slave->link == BOND_LINK_UP) {
624 if (!netif_carrier_ok(bond->dev)) {
625 netif_carrier_on(bond->dev);
626 return 1;
627 }
628 return 0;
629 }
630 }
631
632down:
633 if (netif_carrier_ok(bond->dev)) {
634 netif_carrier_off(bond->dev);
635 return 1;
636 }
637 return 0;
638}
639
1da177e4
LT
640/*
641 * Get link speed and duplex from the slave's base driver
642 * using ethtool. If for some reason the call fails or the
643 * values are invalid, fake speed and duplex to 100/Full
644 * and return error.
645 */
646static int bond_update_speed_duplex(struct slave *slave)
647{
648 struct net_device *slave_dev = slave->dev;
1da177e4 649 struct ethtool_cmd etool;
61a44b9c 650 int res;
1da177e4
LT
651
652 /* Fake speed and duplex */
653 slave->speed = SPEED_100;
654 slave->duplex = DUPLEX_FULL;
655
61a44b9c
MW
656 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
657 return -1;
1da177e4 658
61a44b9c
MW
659 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
660 if (res < 0)
1da177e4 661 return -1;
1da177e4 662
1da177e4
LT
663 switch (etool.speed) {
664 case SPEED_10:
665 case SPEED_100:
666 case SPEED_1000:
94dbffd5 667 case SPEED_10000:
1da177e4
LT
668 break;
669 default:
670 return -1;
671 }
672
673 switch (etool.duplex) {
674 case DUPLEX_FULL:
675 case DUPLEX_HALF:
676 break;
677 default:
678 return -1;
679 }
680
681 slave->speed = etool.speed;
682 slave->duplex = etool.duplex;
683
684 return 0;
685}
686
687/*
688 * if <dev> supports MII link status reporting, check its link status.
689 *
690 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
3d632c3f 691 * depending upon the setting of the use_carrier parameter.
1da177e4
LT
692 *
693 * Return either BMSR_LSTATUS, meaning that the link is up (or we
694 * can't tell and just pretend it is), or 0, meaning that the link is
695 * down.
696 *
697 * If reporting is non-zero, instead of faking link up, return -1 if
698 * both ETHTOOL and MII ioctls fail (meaning the device does not
699 * support them). If use_carrier is set, return whatever it says.
700 * It'd be nice if there was a good way to tell if a driver supports
701 * netif_carrier, but there really isn't.
702 */
3d632c3f
SH
703static int bond_check_dev_link(struct bonding *bond,
704 struct net_device *slave_dev, int reporting)
1da177e4 705{
eb7cc59a 706 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
d9d52832 707 int (*ioctl)(struct net_device *, struct ifreq *, int);
1da177e4
LT
708 struct ifreq ifr;
709 struct mii_ioctl_data *mii;
1da177e4 710
6c988853
PG
711 if (!reporting && !netif_running(slave_dev))
712 return 0;
713
eb7cc59a 714 if (bond->params.use_carrier)
1da177e4 715 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
1da177e4 716
29112f4e
JP
717 /* Try to get link status using Ethtool first. */
718 if (slave_dev->ethtool_ops) {
719 if (slave_dev->ethtool_ops->get_link) {
720 u32 link;
721
722 link = slave_dev->ethtool_ops->get_link(slave_dev);
723
724 return link ? BMSR_LSTATUS : 0;
725 }
726 }
727
3d632c3f 728 /* Ethtool can't be used, fallback to MII ioctls. */
eb7cc59a 729 ioctl = slave_ops->ndo_do_ioctl;
1da177e4
LT
730 if (ioctl) {
731 /* TODO: set pointer to correct ioctl on a per team member */
732 /* bases to make this more efficient. that is, once */
733 /* we determine the correct ioctl, we will always */
734 /* call it and not the others for that team */
735 /* member. */
736
737 /*
738 * We cannot assume that SIOCGMIIPHY will also read a
739 * register; not all network drivers (e.g., e100)
740 * support that.
741 */
742
743 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
744 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
745 mii = if_mii(&ifr);
746 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
747 mii->reg_num = MII_BMSR;
3d632c3f
SH
748 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
749 return mii->val_out & BMSR_LSTATUS;
1da177e4
LT
750 }
751 }
752
1da177e4
LT
753 /*
754 * If reporting, report that either there's no dev->do_ioctl,
61a44b9c 755 * or both SIOCGMIIREG and get_link failed (meaning that we
1da177e4
LT
756 * cannot report link status). If not reporting, pretend
757 * we're ok.
758 */
3d632c3f 759 return reporting ? -1 : BMSR_LSTATUS;
1da177e4
LT
760}
761
762/*----------------------------- Multicast list ------------------------------*/
763
764/*
765 * Returns 0 if dmi1 and dmi2 are the same, non-0 otherwise
766 */
3d632c3f
SH
767static inline int bond_is_dmi_same(const struct dev_mc_list *dmi1,
768 const struct dev_mc_list *dmi2)
1da177e4
LT
769{
770 return memcmp(dmi1->dmi_addr, dmi2->dmi_addr, dmi1->dmi_addrlen) == 0 &&
771 dmi1->dmi_addrlen == dmi2->dmi_addrlen;
772}
773
774/*
775 * returns dmi entry if found, NULL otherwise
776 */
3d632c3f
SH
777static struct dev_mc_list *bond_mc_list_find_dmi(struct dev_mc_list *dmi,
778 struct dev_mc_list *mc_list)
1da177e4
LT
779{
780 struct dev_mc_list *idmi;
781
782 for (idmi = mc_list; idmi; idmi = idmi->next) {
3d632c3f 783 if (bond_is_dmi_same(dmi, idmi))
1da177e4 784 return idmi;
1da177e4
LT
785 }
786
787 return NULL;
788}
789
790/*
791 * Push the promiscuity flag down to appropriate slaves
792 */
7e1a1ac1 793static int bond_set_promiscuity(struct bonding *bond, int inc)
1da177e4 794{
7e1a1ac1 795 int err = 0;
1da177e4
LT
796 if (USES_PRIMARY(bond->params.mode)) {
797 /* write lock already acquired */
798 if (bond->curr_active_slave) {
7e1a1ac1
WC
799 err = dev_set_promiscuity(bond->curr_active_slave->dev,
800 inc);
1da177e4
LT
801 }
802 } else {
803 struct slave *slave;
804 int i;
805 bond_for_each_slave(bond, slave, i) {
7e1a1ac1
WC
806 err = dev_set_promiscuity(slave->dev, inc);
807 if (err)
808 return err;
1da177e4
LT
809 }
810 }
7e1a1ac1 811 return err;
1da177e4
LT
812}
813
814/*
815 * Push the allmulti flag down to all slaves
816 */
7e1a1ac1 817static int bond_set_allmulti(struct bonding *bond, int inc)
1da177e4 818{
7e1a1ac1 819 int err = 0;
1da177e4
LT
820 if (USES_PRIMARY(bond->params.mode)) {
821 /* write lock already acquired */
822 if (bond->curr_active_slave) {
7e1a1ac1
WC
823 err = dev_set_allmulti(bond->curr_active_slave->dev,
824 inc);
1da177e4
LT
825 }
826 } else {
827 struct slave *slave;
828 int i;
829 bond_for_each_slave(bond, slave, i) {
7e1a1ac1
WC
830 err = dev_set_allmulti(slave->dev, inc);
831 if (err)
832 return err;
1da177e4
LT
833 }
834 }
7e1a1ac1 835 return err;
1da177e4
LT
836}
837
838/*
839 * Add a Multicast address to slaves
840 * according to mode
841 */
842static void bond_mc_add(struct bonding *bond, void *addr, int alen)
843{
844 if (USES_PRIMARY(bond->params.mode)) {
845 /* write lock already acquired */
3d632c3f 846 if (bond->curr_active_slave)
1da177e4 847 dev_mc_add(bond->curr_active_slave->dev, addr, alen, 0);
1da177e4
LT
848 } else {
849 struct slave *slave;
850 int i;
3d632c3f
SH
851
852 bond_for_each_slave(bond, slave, i)
1da177e4 853 dev_mc_add(slave->dev, addr, alen, 0);
1da177e4
LT
854 }
855}
856
857/*
858 * Remove a multicast address from slave
859 * according to mode
860 */
861static void bond_mc_delete(struct bonding *bond, void *addr, int alen)
862{
863 if (USES_PRIMARY(bond->params.mode)) {
864 /* write lock already acquired */
3d632c3f
SH
865 if (bond->curr_active_slave)
866 dev_mc_delete(bond->curr_active_slave->dev, addr,
867 alen, 0);
1da177e4
LT
868 } else {
869 struct slave *slave;
870 int i;
871 bond_for_each_slave(bond, slave, i) {
872 dev_mc_delete(slave->dev, addr, alen, 0);
873 }
874 }
875}
876
a816c7c7
JV
877
878/*
879 * Retrieve the list of registered multicast addresses for the bonding
880 * device and retransmit an IGMP JOIN request to the current active
881 * slave.
882 */
883static void bond_resend_igmp_join_requests(struct bonding *bond)
884{
885 struct in_device *in_dev;
886 struct ip_mc_list *im;
887
888 rcu_read_lock();
889 in_dev = __in_dev_get_rcu(bond->dev);
890 if (in_dev) {
3d632c3f 891 for (im = in_dev->mc_list; im; im = im->next)
a816c7c7 892 ip_mc_rejoin_group(im);
a816c7c7
JV
893 }
894
895 rcu_read_unlock();
896}
897
1da177e4
LT
898/*
899 * Totally destroys the mc_list in bond
900 */
901static void bond_mc_list_destroy(struct bonding *bond)
902{
903 struct dev_mc_list *dmi;
904
905 dmi = bond->mc_list;
906 while (dmi) {
907 bond->mc_list = dmi->next;
908 kfree(dmi);
909 dmi = bond->mc_list;
910 }
3d632c3f
SH
911
912 bond->mc_list = NULL;
1da177e4
LT
913}
914
915/*
916 * Copy all the Multicast addresses from src to the bonding device dst
917 */
de54f390 918static int bond_mc_list_copy(struct dev_mc_list *mc_list, struct bonding *bond,
dd0fc66f 919 gfp_t gfp_flag)
1da177e4
LT
920{
921 struct dev_mc_list *dmi, *new_dmi;
922
923 for (dmi = mc_list; dmi; dmi = dmi->next) {
de54f390 924 new_dmi = kmalloc(sizeof(struct dev_mc_list), gfp_flag);
1da177e4
LT
925
926 if (!new_dmi) {
927 /* FIXME: Potential memory leak !!! */
928 return -ENOMEM;
929 }
930
931 new_dmi->next = bond->mc_list;
932 bond->mc_list = new_dmi;
933 new_dmi->dmi_addrlen = dmi->dmi_addrlen;
934 memcpy(new_dmi->dmi_addr, dmi->dmi_addr, dmi->dmi_addrlen);
935 new_dmi->dmi_users = dmi->dmi_users;
936 new_dmi->dmi_gusers = dmi->dmi_gusers;
937 }
938
939 return 0;
940}
941
942/*
943 * flush all members of flush->mc_list from device dev->mc_list
944 */
3d632c3f
SH
945static void bond_mc_list_flush(struct net_device *bond_dev,
946 struct net_device *slave_dev)
1da177e4 947{
454d7c9b 948 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
949 struct dev_mc_list *dmi;
950
3d632c3f 951 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
1da177e4 952 dev_mc_delete(slave_dev, dmi->dmi_addr, dmi->dmi_addrlen, 0);
1da177e4
LT
953
954 if (bond->params.mode == BOND_MODE_8023AD) {
955 /* del lacpdu mc addr from mc list */
956 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
957
958 dev_mc_delete(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
959 }
960}
961
962/*--------------------------- Active slave change ---------------------------*/
963
964/*
965 * Update the mc list and multicast-related flags for the new and
966 * old active slaves (if any) according to the multicast mode, and
967 * promiscuous flags unconditionally.
968 */
3d632c3f
SH
969static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
970 struct slave *old_active)
1da177e4
LT
971{
972 struct dev_mc_list *dmi;
973
3d632c3f 974 if (!USES_PRIMARY(bond->params.mode))
1da177e4
LT
975 /* nothing to do - mc list is already up-to-date on
976 * all slaves
977 */
978 return;
1da177e4
LT
979
980 if (old_active) {
3d632c3f 981 if (bond->dev->flags & IFF_PROMISC)
1da177e4 982 dev_set_promiscuity(old_active->dev, -1);
1da177e4 983
3d632c3f 984 if (bond->dev->flags & IFF_ALLMULTI)
1da177e4 985 dev_set_allmulti(old_active->dev, -1);
1da177e4 986
3d632c3f
SH
987 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
988 dev_mc_delete(old_active->dev, dmi->dmi_addr,
989 dmi->dmi_addrlen, 0);
1da177e4
LT
990 }
991
992 if (new_active) {
7e1a1ac1 993 /* FIXME: Signal errors upstream. */
3d632c3f 994 if (bond->dev->flags & IFF_PROMISC)
1da177e4 995 dev_set_promiscuity(new_active->dev, 1);
1da177e4 996
3d632c3f 997 if (bond->dev->flags & IFF_ALLMULTI)
1da177e4 998 dev_set_allmulti(new_active->dev, 1);
1da177e4 999
3d632c3f
SH
1000 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
1001 dev_mc_add(new_active->dev, dmi->dmi_addr,
1002 dmi->dmi_addrlen, 0);
a816c7c7 1003 bond_resend_igmp_join_requests(bond);
1da177e4
LT
1004 }
1005}
1006
3915c1e8
JV
1007/*
1008 * bond_do_fail_over_mac
1009 *
1010 * Perform special MAC address swapping for fail_over_mac settings
1011 *
1012 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
1013 */
1014static void bond_do_fail_over_mac(struct bonding *bond,
1015 struct slave *new_active,
1016 struct slave *old_active)
1f78d9f9
HE
1017 __releases(&bond->curr_slave_lock)
1018 __releases(&bond->lock)
1019 __acquires(&bond->lock)
1020 __acquires(&bond->curr_slave_lock)
3915c1e8
JV
1021{
1022 u8 tmp_mac[ETH_ALEN];
1023 struct sockaddr saddr;
1024 int rv;
1025
1026 switch (bond->params.fail_over_mac) {
1027 case BOND_FOM_ACTIVE:
1028 if (new_active)
1029 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1030 new_active->dev->addr_len);
1031 break;
1032 case BOND_FOM_FOLLOW:
1033 /*
1034 * if new_active && old_active, swap them
1035 * if just old_active, do nothing (going to no active slave)
1036 * if just new_active, set new_active to bond's MAC
1037 */
1038 if (!new_active)
1039 return;
1040
1041 write_unlock_bh(&bond->curr_slave_lock);
1042 read_unlock(&bond->lock);
1043
1044 if (old_active) {
1045 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1046 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1047 ETH_ALEN);
1048 saddr.sa_family = new_active->dev->type;
1049 } else {
1050 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1051 saddr.sa_family = bond->dev->type;
1052 }
1053
1054 rv = dev_set_mac_address(new_active->dev, &saddr);
1055 if (rv) {
a4aee5c8 1056 pr_err("%s: Error %d setting MAC of slave %s\n",
3915c1e8
JV
1057 bond->dev->name, -rv, new_active->dev->name);
1058 goto out;
1059 }
1060
1061 if (!old_active)
1062 goto out;
1063
1064 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1065 saddr.sa_family = old_active->dev->type;
1066
1067 rv = dev_set_mac_address(old_active->dev, &saddr);
1068 if (rv)
a4aee5c8 1069 pr_err("%s: Error %d setting MAC of slave %s\n",
3915c1e8
JV
1070 bond->dev->name, -rv, new_active->dev->name);
1071out:
1072 read_lock(&bond->lock);
1073 write_lock_bh(&bond->curr_slave_lock);
1074 break;
1075 default:
a4aee5c8 1076 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
3915c1e8
JV
1077 bond->dev->name, bond->params.fail_over_mac);
1078 break;
1079 }
1080
1081}
1082
a549952a
JP
1083static bool bond_should_change_active(struct bonding *bond)
1084{
1085 struct slave *prim = bond->primary_slave;
1086 struct slave *curr = bond->curr_active_slave;
1087
1088 if (!prim || !curr || curr->link != BOND_LINK_UP)
1089 return true;
1090 if (bond->force_primary) {
1091 bond->force_primary = false;
1092 return true;
1093 }
1094 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1095 (prim->speed < curr->speed ||
1096 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1097 return false;
1098 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1099 return false;
1100 return true;
1101}
3915c1e8 1102
1da177e4
LT
1103/**
1104 * find_best_interface - select the best available slave to be the active one
1105 * @bond: our bonding struct
1106 *
1107 * Warning: Caller must hold curr_slave_lock for writing.
1108 */
1109static struct slave *bond_find_best_slave(struct bonding *bond)
1110{
1111 struct slave *new_active, *old_active;
1112 struct slave *bestslave = NULL;
1113 int mintime = bond->params.updelay;
1114 int i;
1115
49b4ad92 1116 new_active = bond->curr_active_slave;
1da177e4
LT
1117
1118 if (!new_active) { /* there were no active slaves left */
3d632c3f 1119 if (bond->slave_cnt > 0) /* found one slave */
1da177e4 1120 new_active = bond->first_slave;
3d632c3f 1121 else
1da177e4 1122 return NULL; /* still no slave, return NULL */
1da177e4
LT
1123 }
1124
1da177e4 1125 if ((bond->primary_slave) &&
a549952a
JP
1126 bond->primary_slave->link == BOND_LINK_UP &&
1127 bond_should_change_active(bond)) {
1da177e4
LT
1128 new_active = bond->primary_slave;
1129 }
1130
1131 /* remember where to stop iterating over the slaves */
1132 old_active = new_active;
1133
1134 bond_for_each_slave_from(bond, new_active, i, old_active) {
b9f60253
JP
1135 if (new_active->link == BOND_LINK_UP) {
1136 return new_active;
1137 } else if (new_active->link == BOND_LINK_BACK &&
1138 IS_UP(new_active->dev)) {
1139 /* link up, but waiting for stabilization */
1140 if (new_active->delay < mintime) {
1141 mintime = new_active->delay;
1142 bestslave = new_active;
1da177e4
LT
1143 }
1144 }
1145 }
1146
1147 return bestslave;
1148}
1149
1150/**
1151 * change_active_interface - change the active slave into the specified one
1152 * @bond: our bonding struct
1153 * @new: the new slave to make the active one
1154 *
1155 * Set the new slave to the bond's settings and unset them on the old
1156 * curr_active_slave.
1157 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1158 *
1159 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1160 * because it is apparently the best available slave we have, even though its
1161 * updelay hasn't timed out yet.
1162 *
3915c1e8
JV
1163 * If new_active is not NULL, caller must hold bond->lock for read and
1164 * curr_slave_lock for write_bh.
1da177e4 1165 */
a77b5325 1166void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
1da177e4
LT
1167{
1168 struct slave *old_active = bond->curr_active_slave;
1169
3d632c3f 1170 if (old_active == new_active)
1da177e4 1171 return;
1da177e4
LT
1172
1173 if (new_active) {
b2220cad
JV
1174 new_active->jiffies = jiffies;
1175
1da177e4
LT
1176 if (new_active->link == BOND_LINK_BACK) {
1177 if (USES_PRIMARY(bond->params.mode)) {
a4aee5c8
JP
1178 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1179 bond->dev->name, new_active->dev->name,
1180 (bond->params.updelay - new_active->delay) * bond->params.miimon);
1da177e4
LT
1181 }
1182
1183 new_active->delay = 0;
1184 new_active->link = BOND_LINK_UP;
1da177e4 1185
3d632c3f 1186 if (bond->params.mode == BOND_MODE_8023AD)
1da177e4 1187 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
1da177e4 1188
58402054 1189 if (bond_is_lb(bond))
1da177e4 1190 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
1da177e4
LT
1191 } else {
1192 if (USES_PRIMARY(bond->params.mode)) {
a4aee5c8
JP
1193 pr_info("%s: making interface %s the new active one.\n",
1194 bond->dev->name, new_active->dev->name);
1da177e4
LT
1195 }
1196 }
1197 }
1198
3d632c3f 1199 if (USES_PRIMARY(bond->params.mode))
1da177e4 1200 bond_mc_swap(bond, new_active, old_active);
1da177e4 1201
58402054 1202 if (bond_is_lb(bond)) {
1da177e4 1203 bond_alb_handle_active_change(bond, new_active);
8f903c70
JV
1204 if (old_active)
1205 bond_set_slave_inactive_flags(old_active);
1206 if (new_active)
1207 bond_set_slave_active_flags(new_active);
1da177e4
LT
1208 } else {
1209 bond->curr_active_slave = new_active;
1210 }
c3ade5ca
JV
1211
1212 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
3d632c3f 1213 if (old_active)
c3ade5ca 1214 bond_set_slave_inactive_flags(old_active);
c3ade5ca
JV
1215
1216 if (new_active) {
1217 bond_set_slave_active_flags(new_active);
2ab82852 1218
709f8a45
OG
1219 if (bond->params.fail_over_mac)
1220 bond_do_fail_over_mac(bond, new_active,
1221 old_active);
3915c1e8 1222
709f8a45 1223 bond->send_grat_arp = bond->params.num_grat_arp;
b59f9f74 1224 bond_send_gratuitous_arp(bond);
01f3109d 1225
305d552a
BH
1226 bond->send_unsol_na = bond->params.num_unsol_na;
1227 bond_send_unsolicited_na(bond);
1228
01f3109d
OG
1229 write_unlock_bh(&bond->curr_slave_lock);
1230 read_unlock(&bond->lock);
1231
75c78500 1232 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
01f3109d
OG
1233
1234 read_lock(&bond->lock);
1235 write_lock_bh(&bond->curr_slave_lock);
7893b249 1236 }
c3ade5ca 1237 }
1da177e4
LT
1238}
1239
1240/**
1241 * bond_select_active_slave - select a new active slave, if needed
1242 * @bond: our bonding struct
1243 *
3d632c3f 1244 * This functions should be called when one of the following occurs:
1da177e4
LT
1245 * - The old curr_active_slave has been released or lost its link.
1246 * - The primary_slave has got its link back.
1247 * - A slave has got its link back and there's no old curr_active_slave.
1248 *
3915c1e8 1249 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
1da177e4 1250 */
a77b5325 1251void bond_select_active_slave(struct bonding *bond)
1da177e4
LT
1252{
1253 struct slave *best_slave;
ff59c456 1254 int rv;
1da177e4
LT
1255
1256 best_slave = bond_find_best_slave(bond);
1257 if (best_slave != bond->curr_active_slave) {
1258 bond_change_active_slave(bond, best_slave);
ff59c456
JV
1259 rv = bond_set_carrier(bond);
1260 if (!rv)
1261 return;
1262
1263 if (netif_carrier_ok(bond->dev)) {
a4aee5c8
JP
1264 pr_info("%s: first active interface up!\n",
1265 bond->dev->name);
ff59c456 1266 } else {
a4aee5c8
JP
1267 pr_info("%s: now running without any active interface !\n",
1268 bond->dev->name);
ff59c456 1269 }
1da177e4
LT
1270 }
1271}
1272
1273/*--------------------------- slave list handling ---------------------------*/
1274
1275/*
1276 * This function attaches the slave to the end of list.
1277 *
1278 * bond->lock held for writing by caller.
1279 */
1280static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1281{
1282 if (bond->first_slave == NULL) { /* attaching the first slave */
1283 new_slave->next = new_slave;
1284 new_slave->prev = new_slave;
1285 bond->first_slave = new_slave;
1286 } else {
1287 new_slave->next = bond->first_slave;
1288 new_slave->prev = bond->first_slave->prev;
1289 new_slave->next->prev = new_slave;
1290 new_slave->prev->next = new_slave;
1291 }
1292
1293 bond->slave_cnt++;
1294}
1295
1296/*
1297 * This function detaches the slave from the list.
1298 * WARNING: no check is made to verify if the slave effectively
1299 * belongs to <bond>.
1300 * Nothing is freed on return, structures are just unchained.
1301 * If any slave pointer in bond was pointing to <slave>,
1302 * it should be changed by the calling function.
1303 *
1304 * bond->lock held for writing by caller.
1305 */
1306static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1307{
3d632c3f 1308 if (slave->next)
1da177e4 1309 slave->next->prev = slave->prev;
1da177e4 1310
3d632c3f 1311 if (slave->prev)
1da177e4 1312 slave->prev->next = slave->next;
1da177e4
LT
1313
1314 if (bond->first_slave == slave) { /* slave is the first slave */
1315 if (bond->slave_cnt > 1) { /* there are more slave */
1316 bond->first_slave = slave->next;
1317 } else {
1318 bond->first_slave = NULL; /* slave was the last one */
1319 }
1320 }
1321
1322 slave->next = NULL;
1323 slave->prev = NULL;
1324 bond->slave_cnt--;
1325}
1326
1327/*---------------------------------- IOCTL ----------------------------------*/
1328
4ad072c9
AB
1329static int bond_sethwaddr(struct net_device *bond_dev,
1330 struct net_device *slave_dev)
1da177e4 1331{
5a03cdb7
HE
1332 pr_debug("bond_dev=%p\n", bond_dev);
1333 pr_debug("slave_dev=%p\n", slave_dev);
1334 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
1da177e4
LT
1335 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1336 return 0;
1337}
1338
7f353bf2
HX
1339#define BOND_VLAN_FEATURES \
1340 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1341 NETIF_F_HW_VLAN_FILTER)
8531c5ff 1342
3d632c3f 1343/*
8e3babcd 1344 * Compute the common dev->feature set available to all slaves. Some
7f353bf2
HX
1345 * feature bits are managed elsewhere, so preserve those feature bits
1346 * on the master device.
8531c5ff
AK
1347 */
1348static int bond_compute_features(struct bonding *bond)
1349{
8531c5ff
AK
1350 struct slave *slave;
1351 struct net_device *bond_dev = bond->dev;
7f353bf2 1352 unsigned long features = bond_dev->features;
278339a4 1353 unsigned long vlan_features = 0;
3158bf7d
MS
1354 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1355 bond_dev->hard_header_len);
8e3babcd 1356 int i;
8531c5ff 1357
7f353bf2 1358 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
b63365a2
HX
1359 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1360
1361 if (!bond->first_slave)
1362 goto done;
1363
1364 features &= ~NETIF_F_ONE_FOR_ALL;
7f353bf2 1365
278339a4 1366 vlan_features = bond->first_slave->dev->vlan_features;
54ef3137 1367 bond_for_each_slave(bond, slave, i) {
b63365a2
HX
1368 features = netdev_increment_features(features,
1369 slave->dev->features,
1370 NETIF_F_ONE_FOR_ALL);
278339a4
JV
1371 vlan_features = netdev_increment_features(vlan_features,
1372 slave->dev->vlan_features,
1373 NETIF_F_ONE_FOR_ALL);
54ef3137
JV
1374 if (slave->dev->hard_header_len > max_hard_header_len)
1375 max_hard_header_len = slave->dev->hard_header_len;
1376 }
8531c5ff 1377
b63365a2 1378done:
7f353bf2 1379 features |= (bond_dev->features & BOND_VLAN_FEATURES);
b63365a2 1380 bond_dev->features = netdev_fix_features(features, NULL);
278339a4 1381 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
54ef3137 1382 bond_dev->hard_header_len = max_hard_header_len;
8531c5ff
AK
1383
1384 return 0;
1385}
1386
872254dd
MS
1387static void bond_setup_by_slave(struct net_device *bond_dev,
1388 struct net_device *slave_dev)
1389{
454d7c9b 1390 struct bonding *bond = netdev_priv(bond_dev);
d90a162a 1391
00829823 1392 bond_dev->header_ops = slave_dev->header_ops;
872254dd
MS
1393
1394 bond_dev->type = slave_dev->type;
1395 bond_dev->hard_header_len = slave_dev->hard_header_len;
1396 bond_dev->addr_len = slave_dev->addr_len;
1397
1398 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1399 slave_dev->addr_len);
d90a162a 1400 bond->setup_by_slave = 1;
872254dd
MS
1401}
1402
1da177e4 1403/* enslave device <slave> to bond device <master> */
a77b5325 1404int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
1da177e4 1405{
454d7c9b 1406 struct bonding *bond = netdev_priv(bond_dev);
eb7cc59a 1407 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1da177e4
LT
1408 struct slave *new_slave = NULL;
1409 struct dev_mc_list *dmi;
1410 struct sockaddr addr;
1411 int link_reporting;
1412 int old_features = bond_dev->features;
1413 int res = 0;
1414
552709d5 1415 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
eb7cc59a 1416 slave_ops->ndo_do_ioctl == NULL) {
a4aee5c8
JP
1417 pr_warning("%s: Warning: no link monitoring support for %s\n",
1418 bond_dev->name, slave_dev->name);
1da177e4
LT
1419 }
1420
1421 /* bond must be initialized by bond_open() before enslaving */
1422 if (!(bond_dev->flags & IFF_UP)) {
a4aee5c8
JP
1423 pr_warning("%s: master_dev is not up in bond_enslave\n",
1424 bond_dev->name);
1da177e4
LT
1425 }
1426
1427 /* already enslaved */
1428 if (slave_dev->flags & IFF_SLAVE) {
5a03cdb7 1429 pr_debug("Error, Device was already enslaved\n");
1da177e4
LT
1430 return -EBUSY;
1431 }
1432
1433 /* vlan challenged mutual exclusion */
1434 /* no need to lock since we're protected by rtnl_lock */
1435 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
5a03cdb7 1436 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
1da177e4 1437 if (!list_empty(&bond->vlan_list)) {
a4aee5c8
JP
1438 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1439 bond_dev->name, slave_dev->name, bond_dev->name);
1da177e4
LT
1440 return -EPERM;
1441 } else {
a4aee5c8
JP
1442 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1443 bond_dev->name, slave_dev->name,
1444 slave_dev->name, bond_dev->name);
1da177e4
LT
1445 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1446 }
1447 } else {
5a03cdb7 1448 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
1da177e4
LT
1449 if (bond->slave_cnt == 0) {
1450 /* First slave, and it is not VLAN challenged,
1451 * so remove the block of adding VLANs over the bond.
1452 */
1453 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1454 }
1455 }
1456
217df670
JV
1457 /*
1458 * Old ifenslave binaries are no longer supported. These can
3d632c3f 1459 * be identified with moderate accuracy by the state of the slave:
217df670
JV
1460 * the current ifenslave will set the interface down prior to
1461 * enslaving it; the old ifenslave will not.
1462 */
1463 if ((slave_dev->flags & IFF_UP)) {
a4aee5c8 1464 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
217df670
JV
1465 slave_dev->name);
1466 res = -EPERM;
1467 goto err_undo_flags;
1468 }
1da177e4 1469
872254dd
MS
1470 /* set bonding device ether type by slave - bonding netdevices are
1471 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1472 * there is a need to override some of the type dependent attribs/funcs.
1473 *
1474 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1475 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1476 */
1477 if (bond->slave_cnt == 0) {
e36b9d16 1478 if (bond_dev->type != slave_dev->type) {
e36b9d16 1479 pr_debug("%s: change device type from %d to %d\n",
a4aee5c8
JP
1480 bond_dev->name,
1481 bond_dev->type, slave_dev->type);
75c78500
MS
1482
1483 netdev_bonding_change(bond_dev, NETDEV_BONDING_OLDTYPE);
1484
e36b9d16
MS
1485 if (slave_dev->type != ARPHRD_ETHER)
1486 bond_setup_by_slave(bond_dev, slave_dev);
1487 else
1488 ether_setup(bond_dev);
75c78500
MS
1489
1490 netdev_bonding_change(bond_dev, NETDEV_BONDING_NEWTYPE);
e36b9d16 1491 }
872254dd 1492 } else if (bond_dev->type != slave_dev->type) {
a4aee5c8
JP
1493 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1494 slave_dev->name,
1495 slave_dev->type, bond_dev->type);
1496 res = -EINVAL;
1497 goto err_undo_flags;
872254dd
MS
1498 }
1499
eb7cc59a 1500 if (slave_ops->ndo_set_mac_address == NULL) {
2ab82852 1501 if (bond->slave_cnt == 0) {
a4aee5c8
JP
1502 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1503 bond_dev->name);
3915c1e8
JV
1504 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1505 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
a4aee5c8
JP
1506 pr_err("%s: Error: The slave device specified does not support setting the MAC address, but fail_over_mac is not set to active.\n",
1507 bond_dev->name);
2ab82852
MS
1508 res = -EOPNOTSUPP;
1509 goto err_undo_flags;
1510 }
1da177e4
LT
1511 }
1512
243cb4e5 1513 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
1da177e4
LT
1514 if (!new_slave) {
1515 res = -ENOMEM;
1516 goto err_undo_flags;
1517 }
1518
1da177e4
LT
1519 /* save slave's original flags before calling
1520 * netdev_set_master and dev_open
1521 */
1522 new_slave->original_flags = slave_dev->flags;
1523
217df670
JV
1524 /*
1525 * Save slave's original ("permanent") mac address for modes
1526 * that need it, and for restoring it upon release, and then
1527 * set it to the master's address
1528 */
1529 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
1da177e4 1530
dd957c57 1531 if (!bond->params.fail_over_mac) {
2ab82852
MS
1532 /*
1533 * Set slave to master's mac address. The application already
1534 * set the master's mac address to that of the first slave
1535 */
1536 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1537 addr.sa_family = slave_dev->type;
1538 res = dev_set_mac_address(slave_dev, &addr);
1539 if (res) {
5a03cdb7 1540 pr_debug("Error %d calling set_mac_address\n", res);
2ab82852
MS
1541 goto err_free;
1542 }
217df670 1543 }
1da177e4 1544
c2edacf8
JV
1545 res = netdev_set_master(slave_dev, bond_dev);
1546 if (res) {
5a03cdb7 1547 pr_debug("Error %d calling netdev_set_master\n", res);
569f0c4d 1548 goto err_restore_mac;
c2edacf8 1549 }
217df670
JV
1550 /* open the slave since the application closed it */
1551 res = dev_open(slave_dev);
1552 if (res) {
3d632c3f 1553 pr_debug("Opening slave %s failed\n", slave_dev->name);
569f0c4d 1554 goto err_unset_master;
1da177e4
LT
1555 }
1556
1da177e4 1557 new_slave->dev = slave_dev;
0b680e75 1558 slave_dev->priv_flags |= IFF_BONDING;
1da177e4 1559
58402054 1560 if (bond_is_lb(bond)) {
1da177e4
LT
1561 /* bond_alb_init_slave() must be called before all other stages since
1562 * it might fail and we do not want to have to undo everything
1563 */
1564 res = bond_alb_init_slave(bond, new_slave);
3d632c3f 1565 if (res)
569f0c4d 1566 goto err_close;
1da177e4
LT
1567 }
1568
1569 /* If the mode USES_PRIMARY, then the new slave gets the
1570 * master's promisc (and mc) settings only if it becomes the
1571 * curr_active_slave, and that is taken care of later when calling
1572 * bond_change_active()
1573 */
1574 if (!USES_PRIMARY(bond->params.mode)) {
1575 /* set promiscuity level to new slave */
1576 if (bond_dev->flags & IFF_PROMISC) {
7e1a1ac1
WC
1577 res = dev_set_promiscuity(slave_dev, 1);
1578 if (res)
1579 goto err_close;
1da177e4
LT
1580 }
1581
1582 /* set allmulti level to new slave */
1583 if (bond_dev->flags & IFF_ALLMULTI) {
7e1a1ac1
WC
1584 res = dev_set_allmulti(slave_dev, 1);
1585 if (res)
1586 goto err_close;
1da177e4
LT
1587 }
1588
b9e40857 1589 netif_addr_lock_bh(bond_dev);
1da177e4 1590 /* upload master's mc_list to new slave */
3d632c3f
SH
1591 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
1592 dev_mc_add(slave_dev, dmi->dmi_addr,
1593 dmi->dmi_addrlen, 0);
b9e40857 1594 netif_addr_unlock_bh(bond_dev);
1da177e4
LT
1595 }
1596
1597 if (bond->params.mode == BOND_MODE_8023AD) {
1598 /* add lacpdu mc addr to mc list */
1599 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1600
1601 dev_mc_add(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
1602 }
1603
1604 bond_add_vlans_on_slave(bond, slave_dev);
1605
1606 write_lock_bh(&bond->lock);
1607
1608 bond_attach_slave(bond, new_slave);
1609
1610 new_slave->delay = 0;
1611 new_slave->link_failure_count = 0;
1612
8531c5ff
AK
1613 bond_compute_features(bond);
1614
3915c1e8
JV
1615 write_unlock_bh(&bond->lock);
1616
1617 read_lock(&bond->lock);
1618
f5b2b966
JV
1619 new_slave->last_arp_rx = jiffies;
1620
1da177e4
LT
1621 if (bond->params.miimon && !bond->params.use_carrier) {
1622 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1623
1624 if ((link_reporting == -1) && !bond->params.arp_interval) {
1625 /*
1626 * miimon is set but a bonded network driver
1627 * does not support ETHTOOL/MII and
1628 * arp_interval is not set. Note: if
1629 * use_carrier is enabled, we will never go
1630 * here (because netif_carrier is always
1631 * supported); thus, we don't need to change
1632 * the messages for netif_carrier.
1633 */
a4aee5c8 1634 pr_warning("%s: Warning: MII and ETHTOOL support not available for interface %s, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details.\n",
4e0952c7 1635 bond_dev->name, slave_dev->name);
1da177e4
LT
1636 } else if (link_reporting == -1) {
1637 /* unable get link status using mii/ethtool */
a4aee5c8
JP
1638 pr_warning("%s: Warning: can't get link status from interface %s; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface.\n",
1639 bond_dev->name, slave_dev->name);
1da177e4
LT
1640 }
1641 }
1642
1643 /* check for initial state */
1644 if (!bond->params.miimon ||
1645 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1646 if (bond->params.updelay) {
a4aee5c8 1647 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
1da177e4
LT
1648 new_slave->link = BOND_LINK_BACK;
1649 new_slave->delay = bond->params.updelay;
1650 } else {
a4aee5c8 1651 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
1da177e4
LT
1652 new_slave->link = BOND_LINK_UP;
1653 }
1654 new_slave->jiffies = jiffies;
1655 } else {
a4aee5c8 1656 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
1da177e4
LT
1657 new_slave->link = BOND_LINK_DOWN;
1658 }
1659
1660 if (bond_update_speed_duplex(new_slave) &&
1661 (new_slave->link != BOND_LINK_DOWN)) {
a4aee5c8
JP
1662 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1663 bond_dev->name, new_slave->dev->name);
1da177e4
LT
1664
1665 if (bond->params.mode == BOND_MODE_8023AD) {
a4aee5c8
JP
1666 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1667 bond_dev->name);
1da177e4
LT
1668 }
1669 }
1670
1671 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1672 /* if there is a primary slave, remember it */
a549952a 1673 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
1da177e4 1674 bond->primary_slave = new_slave;
a549952a
JP
1675 bond->force_primary = true;
1676 }
1da177e4
LT
1677 }
1678
3915c1e8
JV
1679 write_lock_bh(&bond->curr_slave_lock);
1680
1da177e4
LT
1681 switch (bond->params.mode) {
1682 case BOND_MODE_ACTIVEBACKUP:
8a8e447b
JV
1683 bond_set_slave_inactive_flags(new_slave);
1684 bond_select_active_slave(bond);
1da177e4
LT
1685 break;
1686 case BOND_MODE_8023AD:
1687 /* in 802.3ad mode, the internal mechanism
1688 * will activate the slaves in the selected
1689 * aggregator
1690 */
1691 bond_set_slave_inactive_flags(new_slave);
1692 /* if this is the first slave */
1693 if (bond->slave_cnt == 1) {
1694 SLAVE_AD_INFO(new_slave).id = 1;
1695 /* Initialize AD with the number of times that the AD timer is called in 1 second
1696 * can be called only after the mac address of the bond is set
1697 */
1698 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1699 bond->params.lacp_fast);
1700 } else {
1701 SLAVE_AD_INFO(new_slave).id =
1702 SLAVE_AD_INFO(new_slave->prev).id + 1;
1703 }
1704
1705 bond_3ad_bind_slave(new_slave);
1706 break;
1707 case BOND_MODE_TLB:
1708 case BOND_MODE_ALB:
1709 new_slave->state = BOND_STATE_ACTIVE;
059fe7a5 1710 bond_set_slave_inactive_flags(new_slave);
5a29f789 1711 bond_select_active_slave(bond);
1da177e4
LT
1712 break;
1713 default:
5a03cdb7 1714 pr_debug("This slave is always active in trunk mode\n");
1da177e4
LT
1715
1716 /* always active in trunk mode */
1717 new_slave->state = BOND_STATE_ACTIVE;
1718
1719 /* In trunking mode there is little meaning to curr_active_slave
1720 * anyway (it holds no special properties of the bond device),
1721 * so we can change it without calling change_active_interface()
1722 */
3d632c3f 1723 if (!bond->curr_active_slave)
1da177e4 1724 bond->curr_active_slave = new_slave;
3d632c3f 1725
1da177e4
LT
1726 break;
1727 } /* switch(bond_mode) */
1728
3915c1e8
JV
1729 write_unlock_bh(&bond->curr_slave_lock);
1730
ff59c456
JV
1731 bond_set_carrier(bond);
1732
3915c1e8 1733 read_unlock(&bond->lock);
1da177e4 1734
b76cdba9
MW
1735 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1736 if (res)
569f0c4d 1737 goto err_close;
b76cdba9 1738
a4aee5c8
JP
1739 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1740 bond_dev->name, slave_dev->name,
1741 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1742 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
1da177e4
LT
1743
1744 /* enslave is successful */
1745 return 0;
1746
1747/* Undo stages on error */
1da177e4
LT
1748err_close:
1749 dev_close(slave_dev);
1750
569f0c4d
JV
1751err_unset_master:
1752 netdev_set_master(slave_dev, NULL);
1753
1da177e4 1754err_restore_mac:
dd957c57 1755 if (!bond->params.fail_over_mac) {
3915c1e8
JV
1756 /* XXX TODO - fom follow mode needs to change master's
1757 * MAC if this slave's MAC is in use by the bond, or at
1758 * least print a warning.
1759 */
2ab82852
MS
1760 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1761 addr.sa_family = slave_dev->type;
1762 dev_set_mac_address(slave_dev, &addr);
1763 }
1da177e4
LT
1764
1765err_free:
1766 kfree(new_slave);
1767
1768err_undo_flags:
1769 bond_dev->features = old_features;
3d632c3f 1770
1da177e4
LT
1771 return res;
1772}
1773
1774/*
1775 * Try to release the slave device <slave> from the bond device <master>
1776 * It is legal to access curr_active_slave without a lock because all the function
1777 * is write-locked.
1778 *
1779 * The rules for slave state should be:
1780 * for Active/Backup:
1781 * Active stays on all backups go down
1782 * for Bonded connections:
1783 * The first up interface should be left on and all others downed.
1784 */
a77b5325 1785int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
1da177e4 1786{
454d7c9b 1787 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
1788 struct slave *slave, *oldcurrent;
1789 struct sockaddr addr;
1da177e4
LT
1790
1791 /* slave is not a slave or master is not master of this slave */
1792 if (!(slave_dev->flags & IFF_SLAVE) ||
1793 (slave_dev->master != bond_dev)) {
a4aee5c8 1794 pr_err("%s: Error: cannot release %s.\n",
1da177e4
LT
1795 bond_dev->name, slave_dev->name);
1796 return -EINVAL;
1797 }
1798
1799 write_lock_bh(&bond->lock);
1800
1801 slave = bond_get_slave_by_dev(bond, slave_dev);
1802 if (!slave) {
1803 /* not a slave of this bond */
a4aee5c8
JP
1804 pr_info("%s: %s not enslaved\n",
1805 bond_dev->name, slave_dev->name);
f5e2a7b2 1806 write_unlock_bh(&bond->lock);
1da177e4
LT
1807 return -EINVAL;
1808 }
1809
3915c1e8 1810 if (!bond->params.fail_over_mac) {
8e95a202
JP
1811 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1812 bond->slave_cnt > 1)
a4aee5c8
JP
1813 pr_warning("%s: Warning: the permanent HWaddr of %s - %pM - is still in use by %s. Set the HWaddr of %s to a different address to avoid conflicts.\n",
1814 bond_dev->name, slave_dev->name,
1815 slave->perm_hwaddr,
1816 bond_dev->name, slave_dev->name);
1da177e4
LT
1817 }
1818
1819 /* Inform AD package of unbinding of slave. */
1820 if (bond->params.mode == BOND_MODE_8023AD) {
1821 /* must be called before the slave is
1822 * detached from the list
1823 */
1824 bond_3ad_unbind_slave(slave);
1825 }
1826
a4aee5c8
JP
1827 pr_info("%s: releasing %s interface %s\n",
1828 bond_dev->name,
1829 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1830 slave_dev->name);
1da177e4
LT
1831
1832 oldcurrent = bond->curr_active_slave;
1833
1834 bond->current_arp_slave = NULL;
1835
1836 /* release the slave from its bond */
1837 bond_detach_slave(bond, slave);
1838
8531c5ff
AK
1839 bond_compute_features(bond);
1840
3d632c3f 1841 if (bond->primary_slave == slave)
1da177e4 1842 bond->primary_slave = NULL;
1da177e4 1843
3d632c3f 1844 if (oldcurrent == slave)
1da177e4 1845 bond_change_active_slave(bond, NULL);
1da177e4 1846
58402054 1847 if (bond_is_lb(bond)) {
1da177e4
LT
1848 /* Must be called only after the slave has been
1849 * detached from the list and the curr_active_slave
1850 * has been cleared (if our_slave == old_current),
1851 * but before a new active slave is selected.
1852 */
2543331d 1853 write_unlock_bh(&bond->lock);
1da177e4 1854 bond_alb_deinit_slave(bond, slave);
2543331d 1855 write_lock_bh(&bond->lock);
1da177e4
LT
1856 }
1857
059fe7a5
JV
1858 if (oldcurrent == slave) {
1859 /*
1860 * Note that we hold RTNL over this sequence, so there
1861 * is no concern that another slave add/remove event
1862 * will interfere.
1863 */
1864 write_unlock_bh(&bond->lock);
1865 read_lock(&bond->lock);
1866 write_lock_bh(&bond->curr_slave_lock);
1867
1da177e4
LT
1868 bond_select_active_slave(bond);
1869
059fe7a5
JV
1870 write_unlock_bh(&bond->curr_slave_lock);
1871 read_unlock(&bond->lock);
1872 write_lock_bh(&bond->lock);
1873 }
1874
1da177e4 1875 if (bond->slave_cnt == 0) {
ff59c456
JV
1876 bond_set_carrier(bond);
1877
1da177e4
LT
1878 /* if the last slave was removed, zero the mac address
1879 * of the master so it will be set by the application
1880 * to the mac address of the first slave
1881 */
1882 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1883
1884 if (list_empty(&bond->vlan_list)) {
1885 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1886 } else {
a4aee5c8
JP
1887 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1888 bond_dev->name, bond_dev->name);
1889 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1890 bond_dev->name);
1da177e4
LT
1891 }
1892 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1893 !bond_has_challenged_slaves(bond)) {
a4aee5c8
JP
1894 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1895 bond_dev->name, slave_dev->name, bond_dev->name);
1da177e4
LT
1896 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1897 }
1898
1899 write_unlock_bh(&bond->lock);
1900
b76cdba9
MW
1901 /* must do this from outside any spinlocks */
1902 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1903
1da177e4
LT
1904 bond_del_vlans_from_slave(bond, slave_dev);
1905
1906 /* If the mode USES_PRIMARY, then we should only remove its
1907 * promisc and mc settings if it was the curr_active_slave, but that was
1908 * already taken care of above when we detached the slave
1909 */
1910 if (!USES_PRIMARY(bond->params.mode)) {
1911 /* unset promiscuity level from slave */
3d632c3f 1912 if (bond_dev->flags & IFF_PROMISC)
1da177e4 1913 dev_set_promiscuity(slave_dev, -1);
1da177e4
LT
1914
1915 /* unset allmulti level from slave */
3d632c3f 1916 if (bond_dev->flags & IFF_ALLMULTI)
1da177e4 1917 dev_set_allmulti(slave_dev, -1);
1da177e4
LT
1918
1919 /* flush master's mc_list from slave */
b9e40857 1920 netif_addr_lock_bh(bond_dev);
1da177e4 1921 bond_mc_list_flush(bond_dev, slave_dev);
b9e40857 1922 netif_addr_unlock_bh(bond_dev);
1da177e4
LT
1923 }
1924
1925 netdev_set_master(slave_dev, NULL);
1926
1927 /* close slave before restoring its mac address */
1928 dev_close(slave_dev);
1929
3915c1e8 1930 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
2ab82852
MS
1931 /* restore original ("permanent") mac address */
1932 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1933 addr.sa_family = slave_dev->type;
1934 dev_set_mac_address(slave_dev, &addr);
1935 }
1da177e4 1936
8f903c70 1937 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
f5b2b966
JV
1938 IFF_SLAVE_INACTIVE | IFF_BONDING |
1939 IFF_SLAVE_NEEDARP);
1da177e4
LT
1940
1941 kfree(slave);
1942
1943 return 0; /* deletion OK */
1944}
1945
d90a162a 1946/*
3d632c3f 1947* First release a slave and than destroy the bond if no more slaves are left.
d90a162a
MS
1948* Must be under rtnl_lock when this function is called.
1949*/
3d632c3f
SH
1950int bond_release_and_destroy(struct net_device *bond_dev,
1951 struct net_device *slave_dev)
d90a162a 1952{
454d7c9b 1953 struct bonding *bond = netdev_priv(bond_dev);
d90a162a
MS
1954 int ret;
1955
1956 ret = bond_release(bond_dev, slave_dev);
1957 if ((ret == 0) && (bond->slave_cnt == 0)) {
a4aee5c8
JP
1958 pr_info("%s: destroying bond %s.\n",
1959 bond_dev->name, bond_dev->name);
9e71626c 1960 unregister_netdevice(bond_dev);
d90a162a
MS
1961 }
1962 return ret;
1963}
1964
1da177e4
LT
1965/*
1966 * This function releases all slaves.
1967 */
1968static int bond_release_all(struct net_device *bond_dev)
1969{
454d7c9b 1970 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
1971 struct slave *slave;
1972 struct net_device *slave_dev;
1973 struct sockaddr addr;
1974
1975 write_lock_bh(&bond->lock);
1976
ff59c456
JV
1977 netif_carrier_off(bond_dev);
1978
3d632c3f 1979 if (bond->slave_cnt == 0)
1da177e4 1980 goto out;
1da177e4
LT
1981
1982 bond->current_arp_slave = NULL;
1983 bond->primary_slave = NULL;
1984 bond_change_active_slave(bond, NULL);
1985
1986 while ((slave = bond->first_slave) != NULL) {
1987 /* Inform AD package of unbinding of slave
1988 * before slave is detached from the list.
1989 */
3d632c3f 1990 if (bond->params.mode == BOND_MODE_8023AD)
1da177e4 1991 bond_3ad_unbind_slave(slave);
1da177e4
LT
1992
1993 slave_dev = slave->dev;
1994 bond_detach_slave(bond, slave);
1995
2543331d
JV
1996 /* now that the slave is detached, unlock and perform
1997 * all the undo steps that should not be called from
1998 * within a lock.
1999 */
2000 write_unlock_bh(&bond->lock);
2001
58402054 2002 if (bond_is_lb(bond)) {
1da177e4
LT
2003 /* must be called only after the slave
2004 * has been detached from the list
2005 */
2006 bond_alb_deinit_slave(bond, slave);
2007 }
2008
8531c5ff
AK
2009 bond_compute_features(bond);
2010
b76cdba9 2011 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1da177e4
LT
2012 bond_del_vlans_from_slave(bond, slave_dev);
2013
2014 /* If the mode USES_PRIMARY, then we should only remove its
2015 * promisc and mc settings if it was the curr_active_slave, but that was
2016 * already taken care of above when we detached the slave
2017 */
2018 if (!USES_PRIMARY(bond->params.mode)) {
2019 /* unset promiscuity level from slave */
3d632c3f 2020 if (bond_dev->flags & IFF_PROMISC)
1da177e4 2021 dev_set_promiscuity(slave_dev, -1);
1da177e4
LT
2022
2023 /* unset allmulti level from slave */
3d632c3f 2024 if (bond_dev->flags & IFF_ALLMULTI)
1da177e4 2025 dev_set_allmulti(slave_dev, -1);
1da177e4
LT
2026
2027 /* flush master's mc_list from slave */
b9e40857 2028 netif_addr_lock_bh(bond_dev);
1da177e4 2029 bond_mc_list_flush(bond_dev, slave_dev);
b9e40857 2030 netif_addr_unlock_bh(bond_dev);
1da177e4
LT
2031 }
2032
2033 netdev_set_master(slave_dev, NULL);
2034
2035 /* close slave before restoring its mac address */
2036 dev_close(slave_dev);
2037
dd957c57 2038 if (!bond->params.fail_over_mac) {
2ab82852
MS
2039 /* restore original ("permanent") mac address*/
2040 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2041 addr.sa_family = slave_dev->type;
2042 dev_set_mac_address(slave_dev, &addr);
2043 }
1da177e4 2044
8f903c70
JV
2045 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2046 IFF_SLAVE_INACTIVE);
1da177e4
LT
2047
2048 kfree(slave);
2049
2050 /* re-acquire the lock before getting the next slave */
2051 write_lock_bh(&bond->lock);
2052 }
2053
2054 /* zero the mac address of the master so it will be
2055 * set by the application to the mac address of the
2056 * first slave
2057 */
2058 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2059
3d632c3f 2060 if (list_empty(&bond->vlan_list))
1da177e4 2061 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
3d632c3f 2062 else {
a4aee5c8
JP
2063 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2064 bond_dev->name, bond_dev->name);
2065 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2066 bond_dev->name);
1da177e4
LT
2067 }
2068
a4aee5c8 2069 pr_info("%s: released all slaves\n", bond_dev->name);
1da177e4
LT
2070
2071out:
2072 write_unlock_bh(&bond->lock);
2073
2074 return 0;
2075}
2076
2077/*
2078 * This function changes the active slave to slave <slave_dev>.
2079 * It returns -EINVAL in the following cases.
2080 * - <slave_dev> is not found in the list.
2081 * - There is not active slave now.
2082 * - <slave_dev> is already active.
2083 * - The link state of <slave_dev> is not BOND_LINK_UP.
2084 * - <slave_dev> is not running.
3d632c3f
SH
2085 * In these cases, this function does nothing.
2086 * In the other cases, current_slave pointer is changed and 0 is returned.
1da177e4
LT
2087 */
2088static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2089{
454d7c9b 2090 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
2091 struct slave *old_active = NULL;
2092 struct slave *new_active = NULL;
2093 int res = 0;
2094
3d632c3f 2095 if (!USES_PRIMARY(bond->params.mode))
1da177e4 2096 return -EINVAL;
1da177e4
LT
2097
2098 /* Verify that master_dev is indeed the master of slave_dev */
3d632c3f 2099 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
1da177e4 2100 return -EINVAL;
1da177e4 2101
059fe7a5 2102 read_lock(&bond->lock);
1da177e4 2103
059fe7a5 2104 read_lock(&bond->curr_slave_lock);
1da177e4 2105 old_active = bond->curr_active_slave;
059fe7a5
JV
2106 read_unlock(&bond->curr_slave_lock);
2107
1da177e4
LT
2108 new_active = bond_get_slave_by_dev(bond, slave_dev);
2109
2110 /*
2111 * Changing to the current active: do nothing; return success.
2112 */
2113 if (new_active && (new_active == old_active)) {
059fe7a5 2114 read_unlock(&bond->lock);
1da177e4
LT
2115 return 0;
2116 }
2117
2118 if ((new_active) &&
2119 (old_active) &&
2120 (new_active->link == BOND_LINK_UP) &&
2121 IS_UP(new_active->dev)) {
059fe7a5 2122 write_lock_bh(&bond->curr_slave_lock);
1da177e4 2123 bond_change_active_slave(bond, new_active);
059fe7a5 2124 write_unlock_bh(&bond->curr_slave_lock);
3d632c3f 2125 } else
1da177e4 2126 res = -EINVAL;
1da177e4 2127
059fe7a5 2128 read_unlock(&bond->lock);
1da177e4
LT
2129
2130 return res;
2131}
2132
1da177e4
LT
2133static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2134{
454d7c9b 2135 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
2136
2137 info->bond_mode = bond->params.mode;
2138 info->miimon = bond->params.miimon;
2139
6603a6f2 2140 read_lock(&bond->lock);
1da177e4 2141 info->num_slaves = bond->slave_cnt;
6603a6f2 2142 read_unlock(&bond->lock);
1da177e4
LT
2143
2144 return 0;
2145}
2146
2147static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2148{
454d7c9b 2149 struct bonding *bond = netdev_priv(bond_dev);
1da177e4 2150 struct slave *slave;
689c96cc 2151 int i, res = -ENODEV;
1da177e4 2152
6603a6f2 2153 read_lock(&bond->lock);
1da177e4
LT
2154
2155 bond_for_each_slave(bond, slave, i) {
2156 if (i == (int)info->slave_id) {
689c96cc
ED
2157 res = 0;
2158 strcpy(info->slave_name, slave->dev->name);
2159 info->link = slave->link;
2160 info->state = slave->state;
2161 info->link_failure_count = slave->link_failure_count;
1da177e4
LT
2162 break;
2163 }
2164 }
2165
6603a6f2 2166 read_unlock(&bond->lock);
1da177e4 2167
689c96cc 2168 return res;
1da177e4
LT
2169}
2170
2171/*-------------------------------- Monitoring -------------------------------*/
2172
1da177e4 2173
f0c76d61
JV
2174static int bond_miimon_inspect(struct bonding *bond)
2175{
2176 struct slave *slave;
2177 int i, link_state, commit = 0;
41f89100
JP
2178 bool ignore_updelay;
2179
2180 ignore_updelay = !bond->curr_active_slave ? true : false;
1da177e4
LT
2181
2182 bond_for_each_slave(bond, slave, i) {
f0c76d61 2183 slave->new_link = BOND_LINK_NOCHANGE;
1da177e4 2184
f0c76d61 2185 link_state = bond_check_dev_link(bond, slave->dev, 0);
1da177e4
LT
2186
2187 switch (slave->link) {
f0c76d61
JV
2188 case BOND_LINK_UP:
2189 if (link_state)
2190 continue;
1da177e4 2191
f0c76d61
JV
2192 slave->link = BOND_LINK_FAIL;
2193 slave->delay = bond->params.downdelay;
2194 if (slave->delay) {
a4aee5c8
JP
2195 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2196 bond->dev->name,
2197 (bond->params.mode ==
2198 BOND_MODE_ACTIVEBACKUP) ?
2199 ((slave->state == BOND_STATE_ACTIVE) ?
2200 "active " : "backup ") : "",
2201 slave->dev->name,
2202 bond->params.downdelay * bond->params.miimon);
1da177e4 2203 }
f0c76d61
JV
2204 /*FALLTHRU*/
2205 case BOND_LINK_FAIL:
2206 if (link_state) {
2207 /*
2208 * recovered before downdelay expired
2209 */
2210 slave->link = BOND_LINK_UP;
1da177e4 2211 slave->jiffies = jiffies;
a4aee5c8
JP
2212 pr_info("%s: link status up again after %d ms for interface %s.\n",
2213 bond->dev->name,
2214 (bond->params.downdelay - slave->delay) *
2215 bond->params.miimon,
2216 slave->dev->name);
f0c76d61 2217 continue;
1da177e4 2218 }
f0c76d61
JV
2219
2220 if (slave->delay <= 0) {
2221 slave->new_link = BOND_LINK_DOWN;
2222 commit++;
2223 continue;
1da177e4 2224 }
1da177e4 2225
f0c76d61
JV
2226 slave->delay--;
2227 break;
2228
2229 case BOND_LINK_DOWN:
2230 if (!link_state)
2231 continue;
2232
2233 slave->link = BOND_LINK_BACK;
2234 slave->delay = bond->params.updelay;
2235
2236 if (slave->delay) {
a4aee5c8
JP
2237 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2238 bond->dev->name, slave->dev->name,
2239 ignore_updelay ? 0 :
2240 bond->params.updelay *
2241 bond->params.miimon);
f0c76d61
JV
2242 }
2243 /*FALLTHRU*/
2244 case BOND_LINK_BACK:
2245 if (!link_state) {
2246 slave->link = BOND_LINK_DOWN;
a4aee5c8
JP
2247 pr_info("%s: link status down again after %d ms for interface %s.\n",
2248 bond->dev->name,
2249 (bond->params.updelay - slave->delay) *
2250 bond->params.miimon,
2251 slave->dev->name);
f0c76d61
JV
2252
2253 continue;
2254 }
2255
41f89100
JP
2256 if (ignore_updelay)
2257 slave->delay = 0;
2258
f0c76d61
JV
2259 if (slave->delay <= 0) {
2260 slave->new_link = BOND_LINK_UP;
2261 commit++;
41f89100 2262 ignore_updelay = false;
f0c76d61 2263 continue;
1da177e4 2264 }
f0c76d61
JV
2265
2266 slave->delay--;
1da177e4 2267 break;
f0c76d61
JV
2268 }
2269 }
1da177e4 2270
f0c76d61
JV
2271 return commit;
2272}
1da177e4 2273
f0c76d61
JV
2274static void bond_miimon_commit(struct bonding *bond)
2275{
2276 struct slave *slave;
2277 int i;
2278
2279 bond_for_each_slave(bond, slave, i) {
2280 switch (slave->new_link) {
2281 case BOND_LINK_NOCHANGE:
2282 continue;
1da177e4 2283
f0c76d61
JV
2284 case BOND_LINK_UP:
2285 slave->link = BOND_LINK_UP;
2286 slave->jiffies = jiffies;
2287
2288 if (bond->params.mode == BOND_MODE_8023AD) {
2289 /* prevent it from being the active one */
2290 slave->state = BOND_STATE_BACKUP;
2291 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2292 /* make it immediately active */
2293 slave->state = BOND_STATE_ACTIVE;
2294 } else if (slave != bond->primary_slave) {
2295 /* prevent it from being the active one */
2296 slave->state = BOND_STATE_BACKUP;
1da177e4 2297 }
1da177e4 2298
a4aee5c8
JP
2299 pr_info("%s: link status definitely up for interface %s.\n",
2300 bond->dev->name, slave->dev->name);
1da177e4 2301
f0c76d61
JV
2302 /* notify ad that the link status has changed */
2303 if (bond->params.mode == BOND_MODE_8023AD)
2304 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
059fe7a5 2305
58402054 2306 if (bond_is_lb(bond))
f0c76d61
JV
2307 bond_alb_handle_link_change(bond, slave,
2308 BOND_LINK_UP);
1da177e4 2309
f0c76d61
JV
2310 if (!bond->curr_active_slave ||
2311 (slave == bond->primary_slave))
2312 goto do_failover;
1da177e4 2313
f0c76d61 2314 continue;
059fe7a5 2315
f0c76d61 2316 case BOND_LINK_DOWN:
fba4acda
JV
2317 if (slave->link_failure_count < UINT_MAX)
2318 slave->link_failure_count++;
2319
f0c76d61 2320 slave->link = BOND_LINK_DOWN;
1da177e4 2321
f0c76d61
JV
2322 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2323 bond->params.mode == BOND_MODE_8023AD)
2324 bond_set_slave_inactive_flags(slave);
2325
a4aee5c8
JP
2326 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2327 bond->dev->name, slave->dev->name);
f0c76d61
JV
2328
2329 if (bond->params.mode == BOND_MODE_8023AD)
2330 bond_3ad_handle_link_change(slave,
2331 BOND_LINK_DOWN);
2332
ae63e808 2333 if (bond_is_lb(bond))
f0c76d61
JV
2334 bond_alb_handle_link_change(bond, slave,
2335 BOND_LINK_DOWN);
2336
2337 if (slave == bond->curr_active_slave)
2338 goto do_failover;
2339
2340 continue;
2341
2342 default:
a4aee5c8 2343 pr_err("%s: invalid new link %d on slave %s\n",
f0c76d61
JV
2344 bond->dev->name, slave->new_link,
2345 slave->dev->name);
2346 slave->new_link = BOND_LINK_NOCHANGE;
2347
2348 continue;
2349 }
2350
2351do_failover:
2352 ASSERT_RTNL();
2353 write_lock_bh(&bond->curr_slave_lock);
2354 bond_select_active_slave(bond);
2355 write_unlock_bh(&bond->curr_slave_lock);
2356 }
2357
2358 bond_set_carrier(bond);
1da177e4
LT
2359}
2360
0b0eef66
JV
2361/*
2362 * bond_mii_monitor
2363 *
2364 * Really a wrapper that splits the mii monitor into two phases: an
f0c76d61
JV
2365 * inspection, then (if inspection indicates something needs to be done)
2366 * an acquisition of appropriate locks followed by a commit phase to
2367 * implement whatever link state changes are indicated.
0b0eef66
JV
2368 */
2369void bond_mii_monitor(struct work_struct *work)
2370{
2371 struct bonding *bond = container_of(work, struct bonding,
2372 mii_work.work);
0b0eef66
JV
2373
2374 read_lock(&bond->lock);
f0c76d61
JV
2375 if (bond->kill_timers)
2376 goto out;
2377
2378 if (bond->slave_cnt == 0)
2379 goto re_arm;
b59f9f74
JV
2380
2381 if (bond->send_grat_arp) {
2382 read_lock(&bond->curr_slave_lock);
2383 bond_send_gratuitous_arp(bond);
2384 read_unlock(&bond->curr_slave_lock);
2385 }
2386
305d552a
BH
2387 if (bond->send_unsol_na) {
2388 read_lock(&bond->curr_slave_lock);
2389 bond_send_unsolicited_na(bond);
2390 read_unlock(&bond->curr_slave_lock);
2391 }
2392
f0c76d61 2393 if (bond_miimon_inspect(bond)) {
0b0eef66
JV
2394 read_unlock(&bond->lock);
2395 rtnl_lock();
2396 read_lock(&bond->lock);
f0c76d61
JV
2397
2398 bond_miimon_commit(bond);
2399
5655662d
JV
2400 read_unlock(&bond->lock);
2401 rtnl_unlock(); /* might sleep, hold no other locks */
2402 read_lock(&bond->lock);
0b0eef66
JV
2403 }
2404
f0c76d61
JV
2405re_arm:
2406 if (bond->params.miimon)
2407 queue_delayed_work(bond->wq, &bond->mii_work,
2408 msecs_to_jiffies(bond->params.miimon));
2409out:
0b0eef66 2410 read_unlock(&bond->lock);
0b0eef66 2411}
c3ade5ca 2412
d3bb52b0 2413static __be32 bond_glean_dev_ip(struct net_device *dev)
c3ade5ca
JV
2414{
2415 struct in_device *idev;
2416 struct in_ifaddr *ifa;
a144ea4b 2417 __be32 addr = 0;
c3ade5ca
JV
2418
2419 if (!dev)
2420 return 0;
2421
2422 rcu_read_lock();
e5ed6399 2423 idev = __in_dev_get_rcu(dev);
c3ade5ca
JV
2424 if (!idev)
2425 goto out;
2426
2427 ifa = idev->ifa_list;
2428 if (!ifa)
2429 goto out;
2430
2431 addr = ifa->ifa_local;
2432out:
2433 rcu_read_unlock();
2434 return addr;
2435}
2436
d3bb52b0 2437static int bond_has_this_ip(struct bonding *bond, __be32 ip)
f5b2b966 2438{
0883beca 2439 struct vlan_entry *vlan;
f5b2b966
JV
2440
2441 if (ip == bond->master_ip)
2442 return 1;
2443
0883beca 2444 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
f5b2b966
JV
2445 if (ip == vlan->vlan_ip)
2446 return 1;
2447 }
2448
2449 return 0;
2450}
2451
c3ade5ca
JV
2452/*
2453 * We go to the (large) trouble of VLAN tagging ARP frames because
2454 * switches in VLAN mode (especially if ports are configured as
2455 * "native" to a VLAN) might not pass non-tagged frames.
2456 */
d3bb52b0 2457static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ip, __be32 src_ip, unsigned short vlan_id)
c3ade5ca
JV
2458{
2459 struct sk_buff *skb;
2460
5a03cdb7 2461 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
a4aee5c8 2462 slave_dev->name, dest_ip, src_ip, vlan_id);
3d632c3f 2463
c3ade5ca
JV
2464 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2465 NULL, slave_dev->dev_addr, NULL);
2466
2467 if (!skb) {
a4aee5c8 2468 pr_err("ARP packet allocation failed\n");
c3ade5ca
JV
2469 return;
2470 }
2471 if (vlan_id) {
2472 skb = vlan_put_tag(skb, vlan_id);
2473 if (!skb) {
a4aee5c8 2474 pr_err("failed to insert VLAN tag\n");
c3ade5ca
JV
2475 return;
2476 }
2477 }
2478 arp_xmit(skb);
2479}
2480
2481
1da177e4
LT
2482static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2483{
c3ade5ca 2484 int i, vlan_id, rv;
d3bb52b0 2485 __be32 *targets = bond->params.arp_targets;
0883beca 2486 struct vlan_entry *vlan;
c3ade5ca
JV
2487 struct net_device *vlan_dev;
2488 struct flowi fl;
2489 struct rtable *rt;
1da177e4 2490
6b780567
MW
2491 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2492 if (!targets[i])
5a31bec0 2493 break;
5a03cdb7 2494 pr_debug("basa: target %x\n", targets[i]);
c3ade5ca 2495 if (list_empty(&bond->vlan_list)) {
5a03cdb7 2496 pr_debug("basa: empty vlan: arp_send\n");
c3ade5ca
JV
2497 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2498 bond->master_ip, 0);
2499 continue;
2500 }
2501
2502 /*
2503 * If VLANs are configured, we do a route lookup to
2504 * determine which VLAN interface would be used, so we
2505 * can tag the ARP with the proper VLAN tag.
2506 */
2507 memset(&fl, 0, sizeof(fl));
2508 fl.fl4_dst = targets[i];
2509 fl.fl4_tos = RTO_ONLINK;
2510
ec87fd3b 2511 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
c3ade5ca
JV
2512 if (rv) {
2513 if (net_ratelimit()) {
a4aee5c8
JP
2514 pr_warning("%s: no route to arp_ip_target %pI4\n",
2515 bond->dev->name, &fl.fl4_dst);
c3ade5ca
JV
2516 }
2517 continue;
2518 }
2519
2520 /*
2521 * This target is not on a VLAN
2522 */
2523 if (rt->u.dst.dev == bond->dev) {
ed4b9f80 2524 ip_rt_put(rt);
5a03cdb7 2525 pr_debug("basa: rtdev == bond->dev: arp_send\n");
c3ade5ca
JV
2526 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2527 bond->master_ip, 0);
2528 continue;
2529 }
2530
2531 vlan_id = 0;
0883beca 2532 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
5c15bdec 2533 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
c3ade5ca
JV
2534 if (vlan_dev == rt->u.dst.dev) {
2535 vlan_id = vlan->vlan_id;
5a03cdb7 2536 pr_debug("basa: vlan match on %s %d\n",
c3ade5ca
JV
2537 vlan_dev->name, vlan_id);
2538 break;
2539 }
2540 }
2541
2542 if (vlan_id) {
ed4b9f80 2543 ip_rt_put(rt);
c3ade5ca
JV
2544 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2545 vlan->vlan_ip, vlan_id);
2546 continue;
2547 }
2548
2549 if (net_ratelimit()) {
a4aee5c8
JP
2550 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2551 bond->dev->name, &fl.fl4_dst,
2552 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
c3ade5ca 2553 }
ed4b9f80 2554 ip_rt_put(rt);
c3ade5ca
JV
2555 }
2556}
2557
2558/*
2559 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2560 * for each VLAN above us.
b59f9f74
JV
2561 *
2562 * Caller must hold curr_slave_lock for read or better
c3ade5ca
JV
2563 */
2564static void bond_send_gratuitous_arp(struct bonding *bond)
2565{
2566 struct slave *slave = bond->curr_active_slave;
2567 struct vlan_entry *vlan;
2568 struct net_device *vlan_dev;
2569
a4aee5c8
JP
2570 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2571 bond->dev->name, slave ? slave->dev->name : "NULL");
b59f9f74
JV
2572
2573 if (!slave || !bond->send_grat_arp ||
2574 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
c3ade5ca
JV
2575 return;
2576
b59f9f74
JV
2577 bond->send_grat_arp--;
2578
c3ade5ca
JV
2579 if (bond->master_ip) {
2580 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
1053f62c 2581 bond->master_ip, 0);
c3ade5ca
JV
2582 }
2583
2584 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
5c15bdec 2585 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
c3ade5ca
JV
2586 if (vlan->vlan_ip) {
2587 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2588 vlan->vlan_ip, vlan->vlan_id);
2589 }
1da177e4
LT
2590 }
2591}
2592
d3bb52b0 2593static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
f5b2b966
JV
2594{
2595 int i;
d3bb52b0 2596 __be32 *targets = bond->params.arp_targets;
f5b2b966 2597
f5b2b966 2598 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
5a03cdb7 2599 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
a4aee5c8
JP
2600 &sip, &tip, i, &targets[i],
2601 bond_has_this_ip(bond, tip));
f5b2b966
JV
2602 if (sip == targets[i]) {
2603 if (bond_has_this_ip(bond, tip))
2604 slave->last_arp_rx = jiffies;
2605 return;
2606 }
2607 }
2608}
2609
2610static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2611{
2612 struct arphdr *arp;
2613 struct slave *slave;
2614 struct bonding *bond;
2615 unsigned char *arp_ptr;
d3bb52b0 2616 __be32 sip, tip;
f5b2b966 2617
1f3c8804
AG
2618 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2619 /*
2620 * When using VLANS and bonding, dev and oriv_dev may be
2621 * incorrect if the physical interface supports VLAN
2622 * acceleration. With this change ARP validation now
2623 * works for hosts only reachable on the VLAN interface.
2624 */
2625 dev = vlan_dev_real_dev(dev);
2626 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2627 }
2628
f5b2b966
JV
2629 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2630 goto out;
2631
454d7c9b 2632 bond = netdev_priv(dev);
f5b2b966
JV
2633 read_lock(&bond->lock);
2634
5a03cdb7 2635 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
a4aee5c8
JP
2636 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2637 orig_dev ? orig_dev->name : "NULL");
f5b2b966
JV
2638
2639 slave = bond_get_slave_by_dev(bond, orig_dev);
2640 if (!slave || !slave_do_arp_validate(bond, slave))
2641 goto out_unlock;
2642
988b7050 2643 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
f5b2b966
JV
2644 goto out_unlock;
2645
d0a92be0 2646 arp = arp_hdr(skb);
f5b2b966
JV
2647 if (arp->ar_hln != dev->addr_len ||
2648 skb->pkt_type == PACKET_OTHERHOST ||
2649 skb->pkt_type == PACKET_LOOPBACK ||
2650 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2651 arp->ar_pro != htons(ETH_P_IP) ||
2652 arp->ar_pln != 4)
2653 goto out_unlock;
2654
2655 arp_ptr = (unsigned char *)(arp + 1);
2656 arp_ptr += dev->addr_len;
2657 memcpy(&sip, arp_ptr, 4);
2658 arp_ptr += 4 + dev->addr_len;
2659 memcpy(&tip, arp_ptr, 4);
2660
5a03cdb7 2661 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
a4aee5c8
JP
2662 bond->dev->name, slave->dev->name, slave->state,
2663 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2664 &sip, &tip);
f5b2b966
JV
2665
2666 /*
2667 * Backup slaves won't see the ARP reply, but do come through
2668 * here for each ARP probe (so we swap the sip/tip to validate
2669 * the probe). In a "redundant switch, common router" type of
2670 * configuration, the ARP probe will (hopefully) travel from
2671 * the active, through one switch, the router, then the other
2672 * switch before reaching the backup.
2673 */
2674 if (slave->state == BOND_STATE_ACTIVE)
2675 bond_validate_arp(bond, slave, sip, tip);
2676 else
2677 bond_validate_arp(bond, slave, tip, sip);
2678
2679out_unlock:
2680 read_unlock(&bond->lock);
2681out:
2682 dev_kfree_skb(skb);
2683 return NET_RX_SUCCESS;
2684}
2685
1da177e4
LT
2686/*
2687 * this function is called regularly to monitor each slave's link
2688 * ensuring that traffic is being sent and received when arp monitoring
2689 * is used in load-balancing mode. if the adapter has been dormant, then an
2690 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2691 * arp monitoring in active backup mode.
2692 */
1b76b316 2693void bond_loadbalance_arp_mon(struct work_struct *work)
1da177e4 2694{
1b76b316
JV
2695 struct bonding *bond = container_of(work, struct bonding,
2696 arp_work.work);
1da177e4
LT
2697 struct slave *slave, *oldcurrent;
2698 int do_failover = 0;
2699 int delta_in_ticks;
2700 int i;
2701
2702 read_lock(&bond->lock);
2703
5ce0da8f 2704 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
1da177e4 2705
3d632c3f 2706 if (bond->kill_timers)
1da177e4 2707 goto out;
1da177e4 2708
3d632c3f 2709 if (bond->slave_cnt == 0)
1da177e4 2710 goto re_arm;
1da177e4
LT
2711
2712 read_lock(&bond->curr_slave_lock);
2713 oldcurrent = bond->curr_active_slave;
2714 read_unlock(&bond->curr_slave_lock);
2715
2716 /* see if any of the previous devices are up now (i.e. they have
2717 * xmt and rcv traffic). the curr_active_slave does not come into
2718 * the picture unless it is null. also, slave->jiffies is not needed
2719 * here because we send an arp on each slave and give a slave as
2720 * long as it needs to get the tx/rx within the delta.
2721 * TODO: what about up/down delay in arp mode? it wasn't here before
2722 * so it can wait
2723 */
2724 bond_for_each_slave(bond, slave, i) {
2725 if (slave->link != BOND_LINK_UP) {
9d21493b 2726 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
b63bb739 2727 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
1da177e4
LT
2728
2729 slave->link = BOND_LINK_UP;
2730 slave->state = BOND_STATE_ACTIVE;
2731
2732 /* primary_slave has no meaning in round-robin
2733 * mode. the window of a slave being up and
2734 * curr_active_slave being null after enslaving
2735 * is closed.
2736 */
2737 if (!oldcurrent) {
a4aee5c8
JP
2738 pr_info("%s: link status definitely up for interface %s, ",
2739 bond->dev->name,
2740 slave->dev->name);
1da177e4
LT
2741 do_failover = 1;
2742 } else {
a4aee5c8
JP
2743 pr_info("%s: interface %s is now up\n",
2744 bond->dev->name,
2745 slave->dev->name);
1da177e4
LT
2746 }
2747 }
2748 } else {
2749 /* slave->link == BOND_LINK_UP */
2750
2751 /* not all switches will respond to an arp request
2752 * when the source ip is 0, so don't take the link down
2753 * if we don't know our ip yet
2754 */
9d21493b 2755 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
4b8a9239 2756 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
1da177e4
LT
2757
2758 slave->link = BOND_LINK_DOWN;
2759 slave->state = BOND_STATE_BACKUP;
2760
3d632c3f 2761 if (slave->link_failure_count < UINT_MAX)
1da177e4 2762 slave->link_failure_count++;
1da177e4 2763
a4aee5c8
JP
2764 pr_info("%s: interface %s is now down.\n",
2765 bond->dev->name,
2766 slave->dev->name);
1da177e4 2767
3d632c3f 2768 if (slave == oldcurrent)
1da177e4 2769 do_failover = 1;
1da177e4
LT
2770 }
2771 }
2772
2773 /* note: if switch is in round-robin mode, all links
2774 * must tx arp to ensure all links rx an arp - otherwise
2775 * links may oscillate or not come up at all; if switch is
2776 * in something like xor mode, there is nothing we can
2777 * do - all replies will be rx'ed on same link causing slaves
2778 * to be unstable during low/no traffic periods
2779 */
3d632c3f 2780 if (IS_UP(slave->dev))
1da177e4 2781 bond_arp_send_all(bond, slave);
1da177e4
LT
2782 }
2783
2784 if (do_failover) {
059fe7a5 2785 write_lock_bh(&bond->curr_slave_lock);
1da177e4
LT
2786
2787 bond_select_active_slave(bond);
2788
059fe7a5 2789 write_unlock_bh(&bond->curr_slave_lock);
1da177e4
LT
2790 }
2791
2792re_arm:
1b76b316
JV
2793 if (bond->params.arp_interval)
2794 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
1da177e4
LT
2795out:
2796 read_unlock(&bond->lock);
2797}
2798
2799/*
b2220cad
JV
2800 * Called to inspect slaves for active-backup mode ARP monitor link state
2801 * changes. Sets new_link in slaves to specify what action should take
2802 * place for the slave. Returns 0 if no changes are found, >0 if changes
2803 * to link states must be committed.
2804 *
2805 * Called with bond->lock held for read.
1da177e4 2806 */
b2220cad 2807static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
1da177e4 2808{
1da177e4 2809 struct slave *slave;
b2220cad 2810 int i, commit = 0;
1da177e4 2811
b2220cad
JV
2812 bond_for_each_slave(bond, slave, i) {
2813 slave->new_link = BOND_LINK_NOCHANGE;
1da177e4 2814
b2220cad
JV
2815 if (slave->link != BOND_LINK_UP) {
2816 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2817 delta_in_ticks)) {
2818 slave->new_link = BOND_LINK_UP;
2819 commit++;
2820 }
1da177e4 2821
b2220cad
JV
2822 continue;
2823 }
1da177e4 2824
b2220cad
JV
2825 /*
2826 * Give slaves 2*delta after being enslaved or made
2827 * active. This avoids bouncing, as the last receive
2828 * times need a full ARP monitor cycle to be updated.
2829 */
2830 if (!time_after_eq(jiffies, slave->jiffies +
2831 2 * delta_in_ticks))
2832 continue;
2833
2834 /*
2835 * Backup slave is down if:
2836 * - No current_arp_slave AND
2837 * - more than 3*delta since last receive AND
2838 * - the bond has an IP address
2839 *
2840 * Note: a non-null current_arp_slave indicates
2841 * the curr_active_slave went down and we are
2842 * searching for a new one; under this condition
2843 * we only take the curr_active_slave down - this
2844 * gives each slave a chance to tx/rx traffic
2845 * before being taken out
2846 */
2847 if (slave->state == BOND_STATE_BACKUP &&
2848 !bond->current_arp_slave &&
2849 time_after(jiffies, slave_last_rx(bond, slave) +
2850 3 * delta_in_ticks)) {
2851 slave->new_link = BOND_LINK_DOWN;
2852 commit++;
2853 }
2854
2855 /*
2856 * Active slave is down if:
2857 * - more than 2*delta since transmitting OR
2858 * - (more than 2*delta since receive AND
2859 * the bond has an IP address)
2860 */
2861 if ((slave->state == BOND_STATE_ACTIVE) &&
9d21493b 2862 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
b2220cad
JV
2863 2 * delta_in_ticks) ||
2864 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2865 + 2 * delta_in_ticks)))) {
2866 slave->new_link = BOND_LINK_DOWN;
2867 commit++;
2868 }
1da177e4
LT
2869 }
2870
b2220cad
JV
2871 return commit;
2872}
1da177e4 2873
b2220cad
JV
2874/*
2875 * Called to commit link state changes noted by inspection step of
2876 * active-backup mode ARP monitor.
2877 *
2878 * Called with RTNL and bond->lock for read.
2879 */
2880static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2881{
2882 struct slave *slave;
2883 int i;
1da177e4 2884
b2220cad
JV
2885 bond_for_each_slave(bond, slave, i) {
2886 switch (slave->new_link) {
2887 case BOND_LINK_NOCHANGE:
2888 continue;
ff59c456 2889
b2220cad 2890 case BOND_LINK_UP:
b9f60253
JP
2891 if ((!bond->curr_active_slave &&
2892 time_before_eq(jiffies,
2893 dev_trans_start(slave->dev) +
2894 delta_in_ticks)) ||
2895 bond->curr_active_slave != slave) {
b2220cad 2896 slave->link = BOND_LINK_UP;
b2220cad
JV
2897 bond->current_arp_slave = NULL;
2898
a4aee5c8 2899 pr_info("%s: link status definitely up for interface %s.\n",
b9f60253 2900 bond->dev->name, slave->dev->name);
b2220cad 2901
b9f60253
JP
2902 if (!bond->curr_active_slave ||
2903 (slave == bond->primary_slave))
2904 goto do_failover;
1da177e4 2905
b9f60253 2906 }
1da177e4 2907
b9f60253 2908 continue;
1da177e4 2909
b2220cad
JV
2910 case BOND_LINK_DOWN:
2911 if (slave->link_failure_count < UINT_MAX)
2912 slave->link_failure_count++;
2913
2914 slave->link = BOND_LINK_DOWN;
b9f60253 2915 bond_set_slave_inactive_flags(slave);
b2220cad 2916
a4aee5c8 2917 pr_info("%s: link status definitely down for interface %s, disabling it\n",
b9f60253 2918 bond->dev->name, slave->dev->name);
b2220cad 2919
b9f60253 2920 if (slave == bond->curr_active_slave) {
b2220cad 2921 bond->current_arp_slave = NULL;
b9f60253 2922 goto do_failover;
1da177e4 2923 }
b9f60253
JP
2924
2925 continue;
b2220cad
JV
2926
2927 default:
a4aee5c8 2928 pr_err("%s: impossible: new_link %d on slave %s\n",
b2220cad
JV
2929 bond->dev->name, slave->new_link,
2930 slave->dev->name);
b9f60253 2931 continue;
1da177e4 2932 }
1da177e4 2933
b9f60253
JP
2934do_failover:
2935 ASSERT_RTNL();
b2220cad 2936 write_lock_bh(&bond->curr_slave_lock);
b9f60253 2937 bond_select_active_slave(bond);
b2220cad
JV
2938 write_unlock_bh(&bond->curr_slave_lock);
2939 }
1da177e4 2940
b2220cad
JV
2941 bond_set_carrier(bond);
2942}
1da177e4 2943
b2220cad
JV
2944/*
2945 * Send ARP probes for active-backup mode ARP monitor.
2946 *
2947 * Called with bond->lock held for read.
2948 */
2949static void bond_ab_arp_probe(struct bonding *bond)
2950{
2951 struct slave *slave;
2952 int i;
1da177e4 2953
b2220cad 2954 read_lock(&bond->curr_slave_lock);
1da177e4 2955
b2220cad 2956 if (bond->current_arp_slave && bond->curr_active_slave)
a4aee5c8
JP
2957 pr_info("PROBE: c_arp %s && cas %s BAD\n",
2958 bond->current_arp_slave->dev->name,
2959 bond->curr_active_slave->dev->name);
1da177e4 2960
b2220cad
JV
2961 if (bond->curr_active_slave) {
2962 bond_arp_send_all(bond, bond->curr_active_slave);
2963 read_unlock(&bond->curr_slave_lock);
2964 return;
2965 }
1da177e4 2966
b2220cad 2967 read_unlock(&bond->curr_slave_lock);
059fe7a5 2968
b2220cad
JV
2969 /* if we don't have a curr_active_slave, search for the next available
2970 * backup slave from the current_arp_slave and make it the candidate
2971 * for becoming the curr_active_slave
2972 */
1da177e4 2973
b2220cad
JV
2974 if (!bond->current_arp_slave) {
2975 bond->current_arp_slave = bond->first_slave;
2976 if (!bond->current_arp_slave)
2977 return;
2978 }
1da177e4 2979
b2220cad 2980 bond_set_slave_inactive_flags(bond->current_arp_slave);
059fe7a5 2981
b2220cad
JV
2982 /* search for next candidate */
2983 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
2984 if (IS_UP(slave->dev)) {
2985 slave->link = BOND_LINK_BACK;
2986 bond_set_slave_active_flags(slave);
2987 bond_arp_send_all(bond, slave);
1da177e4 2988 slave->jiffies = jiffies;
b2220cad
JV
2989 bond->current_arp_slave = slave;
2990 break;
1da177e4
LT
2991 }
2992
b2220cad
JV
2993 /* if the link state is up at this point, we
2994 * mark it down - this can happen if we have
2995 * simultaneous link failures and
2996 * reselect_active_interface doesn't make this
2997 * one the current slave so it is still marked
2998 * up when it is actually down
1da177e4 2999 */
b2220cad
JV
3000 if (slave->link == BOND_LINK_UP) {
3001 slave->link = BOND_LINK_DOWN;
3002 if (slave->link_failure_count < UINT_MAX)
3003 slave->link_failure_count++;
1da177e4 3004
b2220cad
JV
3005 bond_set_slave_inactive_flags(slave);
3006
a4aee5c8
JP
3007 pr_info("%s: backup interface %s is now down.\n",
3008 bond->dev->name, slave->dev->name);
1da177e4 3009 }
b2220cad
JV
3010 }
3011}
1da177e4 3012
b2220cad
JV
3013void bond_activebackup_arp_mon(struct work_struct *work)
3014{
3015 struct bonding *bond = container_of(work, struct bonding,
3016 arp_work.work);
3017 int delta_in_ticks;
1da177e4 3018
b2220cad 3019 read_lock(&bond->lock);
1da177e4 3020
b2220cad
JV
3021 if (bond->kill_timers)
3022 goto out;
1da177e4 3023
b2220cad 3024 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
1da177e4 3025
b2220cad
JV
3026 if (bond->slave_cnt == 0)
3027 goto re_arm;
3028
b59f9f74
JV
3029 if (bond->send_grat_arp) {
3030 read_lock(&bond->curr_slave_lock);
3031 bond_send_gratuitous_arp(bond);
3032 read_unlock(&bond->curr_slave_lock);
3033 }
3034
305d552a
BH
3035 if (bond->send_unsol_na) {
3036 read_lock(&bond->curr_slave_lock);
3037 bond_send_unsolicited_na(bond);
3038 read_unlock(&bond->curr_slave_lock);
3039 }
3040
b2220cad
JV
3041 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3042 read_unlock(&bond->lock);
3043 rtnl_lock();
3044 read_lock(&bond->lock);
3045
3046 bond_ab_arp_commit(bond, delta_in_ticks);
3047
3048 read_unlock(&bond->lock);
3049 rtnl_unlock();
3050 read_lock(&bond->lock);
1da177e4
LT
3051 }
3052
b2220cad
JV
3053 bond_ab_arp_probe(bond);
3054
1da177e4 3055re_arm:
3d632c3f 3056 if (bond->params.arp_interval)
1b76b316 3057 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
1da177e4
LT
3058out:
3059 read_unlock(&bond->lock);
3060}
3061
3062/*------------------------------ proc/seq_file-------------------------------*/
3063
3064#ifdef CONFIG_PROC_FS
3065
1da177e4 3066static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
1f78d9f9
HE
3067 __acquires(&dev_base_lock)
3068 __acquires(&bond->lock)
1da177e4
LT
3069{
3070 struct bonding *bond = seq->private;
3071 loff_t off = 0;
3072 struct slave *slave;
3073 int i;
3074
3075 /* make sure the bond won't be taken away */
3076 read_lock(&dev_base_lock);
6603a6f2 3077 read_lock(&bond->lock);
1da177e4 3078
3d632c3f 3079 if (*pos == 0)
1da177e4 3080 return SEQ_START_TOKEN;
1da177e4
LT
3081
3082 bond_for_each_slave(bond, slave, i) {
3d632c3f 3083 if (++off == *pos)
1da177e4 3084 return slave;
1da177e4
LT
3085 }
3086
3087 return NULL;
3088}
3089
3090static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3091{
3092 struct bonding *bond = seq->private;
3093 struct slave *slave = v;
3094
3095 ++*pos;
3d632c3f 3096 if (v == SEQ_START_TOKEN)
1da177e4 3097 return bond->first_slave;
1da177e4
LT
3098
3099 slave = slave->next;
3100
3101 return (slave == bond->first_slave) ? NULL : slave;
3102}
3103
3104static void bond_info_seq_stop(struct seq_file *seq, void *v)
1f78d9f9
HE
3105 __releases(&bond->lock)
3106 __releases(&dev_base_lock)
1da177e4
LT
3107{
3108 struct bonding *bond = seq->private;
3109
6603a6f2 3110 read_unlock(&bond->lock);
1da177e4
LT
3111 read_unlock(&dev_base_lock);
3112}
3113
3114static void bond_info_show_master(struct seq_file *seq)
3115{
3116 struct bonding *bond = seq->private;
3117 struct slave *curr;
4756b02f 3118 int i;
1da177e4
LT
3119
3120 read_lock(&bond->curr_slave_lock);
3121 curr = bond->curr_active_slave;
3122 read_unlock(&bond->curr_slave_lock);
3123
dd957c57 3124 seq_printf(seq, "Bonding Mode: %s",
1da177e4
LT
3125 bond_mode_name(bond->params.mode));
3126
dd957c57
JV
3127 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3128 bond->params.fail_over_mac)
3915c1e8
JV
3129 seq_printf(seq, " (fail_over_mac %s)",
3130 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
dd957c57
JV
3131
3132 seq_printf(seq, "\n");
3133
c61b75ad
MW
3134 if (bond->params.mode == BOND_MODE_XOR ||
3135 bond->params.mode == BOND_MODE_8023AD) {
3136 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3137 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3138 bond->params.xmit_policy);
3139 }
3140
1da177e4 3141 if (USES_PRIMARY(bond->params.mode)) {
a549952a 3142 seq_printf(seq, "Primary Slave: %s",
0f418b2a
MW
3143 (bond->primary_slave) ?
3144 bond->primary_slave->dev->name : "None");
a549952a
JP
3145 if (bond->primary_slave)
3146 seq_printf(seq, " (primary_reselect %s)",
3147 pri_reselect_tbl[bond->params.primary_reselect].modename);
1da177e4 3148
a549952a 3149 seq_printf(seq, "\nCurrently Active Slave: %s\n",
1da177e4
LT
3150 (curr) ? curr->dev->name : "None");
3151 }
3152
ff59c456
JV
3153 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3154 "up" : "down");
1da177e4
LT
3155 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3156 seq_printf(seq, "Up Delay (ms): %d\n",
3157 bond->params.updelay * bond->params.miimon);
3158 seq_printf(seq, "Down Delay (ms): %d\n",
3159 bond->params.downdelay * bond->params.miimon);
3160
4756b02f
MW
3161
3162 /* ARP information */
3d632c3f
SH
3163 if (bond->params.arp_interval > 0) {
3164 int printed = 0;
4756b02f
MW
3165 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3166 bond->params.arp_interval);
3167
3168 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3169
3d632c3f 3170 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
4756b02f 3171 if (!bond->params.arp_targets[i])
5a31bec0 3172 break;
4756b02f
MW
3173 if (printed)
3174 seq_printf(seq, ",");
8cf14e38 3175 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
4756b02f
MW
3176 printed = 1;
3177 }
3178 seq_printf(seq, "\n");
3179 }
3180
1da177e4
LT
3181 if (bond->params.mode == BOND_MODE_8023AD) {
3182 struct ad_info ad_info;
3183
3184 seq_puts(seq, "\n802.3ad info\n");
3185 seq_printf(seq, "LACP rate: %s\n",
3186 (bond->params.lacp_fast) ? "fast" : "slow");
fd989c83
JV
3187 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3188 ad_select_tbl[bond->params.ad_select].modename);
1da177e4
LT
3189
3190 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3191 seq_printf(seq, "bond %s has no active aggregator\n",
3192 bond->dev->name);
3193 } else {
3194 seq_printf(seq, "Active Aggregator Info:\n");
3195
3196 seq_printf(seq, "\tAggregator ID: %d\n",
3197 ad_info.aggregator_id);
3198 seq_printf(seq, "\tNumber of ports: %d\n",
3199 ad_info.ports);
3200 seq_printf(seq, "\tActor Key: %d\n",
3201 ad_info.actor_key);
3202 seq_printf(seq, "\tPartner Key: %d\n",
3203 ad_info.partner_key);
e174961c
JB
3204 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3205 ad_info.partner_system);
1da177e4
LT
3206 }
3207 }
3208}
3209
3d632c3f
SH
3210static void bond_info_show_slave(struct seq_file *seq,
3211 const struct slave *slave)
1da177e4
LT
3212{
3213 struct bonding *bond = seq->private;
3214
3215 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3216 seq_printf(seq, "MII Status: %s\n",
3217 (slave->link == BOND_LINK_UP) ? "up" : "down");
65509645 3218 seq_printf(seq, "Link Failure Count: %u\n",
1da177e4
LT
3219 slave->link_failure_count);
3220
e174961c 3221 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
1da177e4
LT
3222
3223 if (bond->params.mode == BOND_MODE_8023AD) {
3224 const struct aggregator *agg
3225 = SLAVE_AD_INFO(slave).port.aggregator;
3226
3d632c3f 3227 if (agg)
1da177e4
LT
3228 seq_printf(seq, "Aggregator ID: %d\n",
3229 agg->aggregator_identifier);
3d632c3f 3230 else
1da177e4 3231 seq_puts(seq, "Aggregator ID: N/A\n");
1da177e4
LT
3232 }
3233}
3234
3235static int bond_info_seq_show(struct seq_file *seq, void *v)
3236{
3237 if (v == SEQ_START_TOKEN) {
3238 seq_printf(seq, "%s\n", version);
3239 bond_info_show_master(seq);
3d632c3f 3240 } else
1da177e4 3241 bond_info_show_slave(seq, v);
1da177e4
LT
3242
3243 return 0;
3244}
3245
4101dec9 3246static const struct seq_operations bond_info_seq_ops = {
1da177e4
LT
3247 .start = bond_info_seq_start,
3248 .next = bond_info_seq_next,
3249 .stop = bond_info_seq_stop,
3250 .show = bond_info_seq_show,
3251};
3252
3253static int bond_info_open(struct inode *inode, struct file *file)
3254{
3255 struct seq_file *seq;
3256 struct proc_dir_entry *proc;
3257 int res;
3258
3259 res = seq_open(file, &bond_info_seq_ops);
3260 if (!res) {
3261 /* recover the pointer buried in proc_dir_entry data */
3262 seq = file->private_data;
3263 proc = PDE(inode);
3264 seq->private = proc->data;
3265 }
3266
3267 return res;
3268}
3269
d54b1fdb 3270static const struct file_operations bond_info_fops = {
1da177e4
LT
3271 .owner = THIS_MODULE,
3272 .open = bond_info_open,
3273 .read = seq_read,
3274 .llseek = seq_lseek,
3275 .release = seq_release,
3276};
3277
38fc0026 3278static void bond_create_proc_entry(struct bonding *bond)
1da177e4
LT
3279{
3280 struct net_device *bond_dev = bond->dev;
ec87fd3b 3281 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
1da177e4 3282
ec87fd3b 3283 if (bn->proc_dir) {
a95609cb 3284 bond->proc_entry = proc_create_data(bond_dev->name,
ec87fd3b 3285 S_IRUGO, bn->proc_dir,
a95609cb 3286 &bond_info_fops, bond);
3d632c3f 3287 if (bond->proc_entry == NULL)
a4aee5c8
JP
3288 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3289 DRV_NAME, bond_dev->name);
3d632c3f 3290 else
1da177e4 3291 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
1da177e4 3292 }
1da177e4
LT
3293}
3294
3295static void bond_remove_proc_entry(struct bonding *bond)
3296{
ec87fd3b
EB
3297 struct net_device *bond_dev = bond->dev;
3298 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3299
3300 if (bn->proc_dir && bond->proc_entry) {
3301 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
1da177e4
LT
3302 memset(bond->proc_file_name, 0, IFNAMSIZ);
3303 bond->proc_entry = NULL;
3304 }
3305}
3306
3307/* Create the bonding directory under /proc/net, if doesn't exist yet.
3308 * Caller must hold rtnl_lock.
3309 */
2c8c1e72 3310static void __net_init bond_create_proc_dir(struct bond_net *bn)
1da177e4 3311{
ec87fd3b
EB
3312 if (!bn->proc_dir) {
3313 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3314 if (!bn->proc_dir)
a4aee5c8
JP
3315 pr_warning("Warning: cannot create /proc/net/%s\n",
3316 DRV_NAME);
1da177e4
LT
3317 }
3318}
3319
3320/* Destroy the bonding directory under /proc/net, if empty.
3321 * Caller must hold rtnl_lock.
3322 */
2c8c1e72 3323static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
1da177e4 3324{
ec87fd3b
EB
3325 if (bn->proc_dir) {
3326 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3327 bn->proc_dir = NULL;
1da177e4
LT
3328 }
3329}
aee64faf
JP
3330
3331#else /* !CONFIG_PROC_FS */
3332
38fc0026 3333static void bond_create_proc_entry(struct bonding *bond)
aee64faf
JP
3334{
3335}
3336
3337static void bond_remove_proc_entry(struct bonding *bond)
3338{
3339}
3340
2c8c1e72 3341static inline void bond_create_proc_dir(struct bond_net *bn)
aee64faf
JP
3342{
3343}
3344
2c8c1e72 3345static inline void bond_destroy_proc_dir(struct bond_net *bn)
aee64faf
JP
3346{
3347}
3348
1da177e4
LT
3349#endif /* CONFIG_PROC_FS */
3350
aee64faf 3351
1da177e4
LT
3352/*-------------------------- netdev event handling --------------------------*/
3353
3354/*
3355 * Change device name
3356 */
3357static int bond_event_changename(struct bonding *bond)
3358{
1da177e4
LT
3359 bond_remove_proc_entry(bond);
3360 bond_create_proc_entry(bond);
7e083840 3361
1da177e4
LT
3362 return NOTIFY_DONE;
3363}
3364
3d632c3f
SH
3365static int bond_master_netdev_event(unsigned long event,
3366 struct net_device *bond_dev)
1da177e4 3367{
454d7c9b 3368 struct bonding *event_bond = netdev_priv(bond_dev);
1da177e4
LT
3369
3370 switch (event) {
3371 case NETDEV_CHANGENAME:
3372 return bond_event_changename(event_bond);
1da177e4
LT
3373 default:
3374 break;
3375 }
3376
3377 return NOTIFY_DONE;
3378}
3379
3d632c3f
SH
3380static int bond_slave_netdev_event(unsigned long event,
3381 struct net_device *slave_dev)
1da177e4
LT
3382{
3383 struct net_device *bond_dev = slave_dev->master;
454d7c9b 3384 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
3385
3386 switch (event) {
3387 case NETDEV_UNREGISTER:
3388 if (bond_dev) {
1284cd3a
JV
3389 if (bond->setup_by_slave)
3390 bond_release_and_destroy(bond_dev, slave_dev);
3391 else
3392 bond_release(bond_dev, slave_dev);
1da177e4
LT
3393 }
3394 break;
3395 case NETDEV_CHANGE:
17d04500
JV
3396 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3397 struct slave *slave;
3398
3399 slave = bond_get_slave_by_dev(bond, slave_dev);
3400 if (slave) {
3401 u16 old_speed = slave->speed;
3402 u16 old_duplex = slave->duplex;
3403
3404 bond_update_speed_duplex(slave);
3405
3406 if (bond_is_lb(bond))
3407 break;
3408
3409 if (old_speed != slave->speed)
3410 bond_3ad_adapter_speed_changed(slave);
3411 if (old_duplex != slave->duplex)
3412 bond_3ad_adapter_duplex_changed(slave);
3413 }
3414 }
3415
1da177e4
LT
3416 break;
3417 case NETDEV_DOWN:
3418 /*
3419 * ... Or is it this?
3420 */
3421 break;
3422 case NETDEV_CHANGEMTU:
3423 /*
3424 * TODO: Should slaves be allowed to
3425 * independently alter their MTU? For
3426 * an active-backup bond, slaves need
3427 * not be the same type of device, so
3428 * MTUs may vary. For other modes,
3429 * slaves arguably should have the
3430 * same MTUs. To do this, we'd need to
3431 * take over the slave's change_mtu
3432 * function for the duration of their
3433 * servitude.
3434 */
3435 break;
3436 case NETDEV_CHANGENAME:
3437 /*
3438 * TODO: handle changing the primary's name
3439 */
3440 break;
8531c5ff
AK
3441 case NETDEV_FEAT_CHANGE:
3442 bond_compute_features(bond);
3443 break;
1da177e4
LT
3444 default:
3445 break;
3446 }
3447
3448 return NOTIFY_DONE;
3449}
3450
3451/*
3452 * bond_netdev_event: handle netdev notifier chain events.
3453 *
3454 * This function receives events for the netdev chain. The caller (an
e041c683 3455 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
1da177e4
LT
3456 * locks for us to safely manipulate the slave devices (RTNL lock,
3457 * dev_probe_lock).
3458 */
3d632c3f
SH
3459static int bond_netdev_event(struct notifier_block *this,
3460 unsigned long event, void *ptr)
1da177e4
LT
3461{
3462 struct net_device *event_dev = (struct net_device *)ptr;
3463
5a03cdb7 3464 pr_debug("event_dev: %s, event: %lx\n",
a4aee5c8
JP
3465 event_dev ? event_dev->name : "None",
3466 event);
1da177e4 3467
0b680e75
JV
3468 if (!(event_dev->priv_flags & IFF_BONDING))
3469 return NOTIFY_DONE;
3470
1da177e4 3471 if (event_dev->flags & IFF_MASTER) {
5a03cdb7 3472 pr_debug("IFF_MASTER\n");
1da177e4
LT
3473 return bond_master_netdev_event(event, event_dev);
3474 }
3475
3476 if (event_dev->flags & IFF_SLAVE) {
5a03cdb7 3477 pr_debug("IFF_SLAVE\n");
1da177e4
LT
3478 return bond_slave_netdev_event(event, event_dev);
3479 }
3480
3481 return NOTIFY_DONE;
3482}
3483
c3ade5ca
JV
3484/*
3485 * bond_inetaddr_event: handle inetaddr notifier chain events.
3486 *
3487 * We keep track of device IPs primarily to use as source addresses in
3488 * ARP monitor probes (rather than spewing out broadcasts all the time).
3489 *
3490 * We track one IP for the main device (if it has one), plus one per VLAN.
3491 */
3492static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3493{
3494 struct in_ifaddr *ifa = ptr;
3495 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
ec87fd3b 3496 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
0883beca
PE
3497 struct bonding *bond;
3498 struct vlan_entry *vlan;
c3ade5ca 3499
ec87fd3b 3500 list_for_each_entry(bond, &bn->dev_list, bond_list) {
c3ade5ca
JV
3501 if (bond->dev == event_dev) {
3502 switch (event) {
3503 case NETDEV_UP:
3504 bond->master_ip = ifa->ifa_local;
3505 return NOTIFY_OK;
3506 case NETDEV_DOWN:
3507 bond->master_ip = bond_glean_dev_ip(bond->dev);
3508 return NOTIFY_OK;
3509 default:
3510 return NOTIFY_DONE;
3511 }
3512 }
3513
0883beca 3514 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
5c15bdec 3515 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
c3ade5ca
JV
3516 if (vlan_dev == event_dev) {
3517 switch (event) {
3518 case NETDEV_UP:
3519 vlan->vlan_ip = ifa->ifa_local;
3520 return NOTIFY_OK;
3521 case NETDEV_DOWN:
3522 vlan->vlan_ip =
3523 bond_glean_dev_ip(vlan_dev);
3524 return NOTIFY_OK;
3525 default:
3526 return NOTIFY_DONE;
3527 }
3528 }
3529 }
3530 }
3531 return NOTIFY_DONE;
3532}
3533
1da177e4
LT
3534static struct notifier_block bond_netdev_notifier = {
3535 .notifier_call = bond_netdev_event,
3536};
3537
c3ade5ca
JV
3538static struct notifier_block bond_inetaddr_notifier = {
3539 .notifier_call = bond_inetaddr_event,
3540};
3541
1da177e4
LT
3542/*-------------------------- Packet type handling ---------------------------*/
3543
3544/* register to receive lacpdus on a bond */
3545static void bond_register_lacpdu(struct bonding *bond)
3546{
3547 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3548
3549 /* initialize packet type */
3550 pk_type->type = PKT_TYPE_LACPDU;
3551 pk_type->dev = bond->dev;
3552 pk_type->func = bond_3ad_lacpdu_recv;
3553
3554 dev_add_pack(pk_type);
3555}
3556
3557/* unregister to receive lacpdus on a bond */
3558static void bond_unregister_lacpdu(struct bonding *bond)
3559{
3560 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3561}
3562
f5b2b966
JV
3563void bond_register_arp(struct bonding *bond)
3564{
3565 struct packet_type *pt = &bond->arp_mon_pt;
3566
c4f283b1
JV
3567 if (pt->type)
3568 return;
3569
f5b2b966 3570 pt->type = htons(ETH_P_ARP);
e245cb71 3571 pt->dev = bond->dev;
f5b2b966
JV
3572 pt->func = bond_arp_rcv;
3573 dev_add_pack(pt);
3574}
3575
3576void bond_unregister_arp(struct bonding *bond)
3577{
c4f283b1
JV
3578 struct packet_type *pt = &bond->arp_mon_pt;
3579
3580 dev_remove_pack(pt);
3581 pt->type = 0;
f5b2b966
JV
3582}
3583
169a3e66
JV
3584/*---------------------------- Hashing Policies -----------------------------*/
3585
6f6652be
JV
3586/*
3587 * Hash for the output device based upon layer 2 and layer 3 data. If
3588 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3589 */
a361c83c 3590static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
6f6652be
JV
3591{
3592 struct ethhdr *data = (struct ethhdr *)skb->data;
3593 struct iphdr *iph = ip_hdr(skb);
3594
f14c4e4e 3595 if (skb->protocol == htons(ETH_P_IP)) {
6f6652be 3596 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
d3da6831 3597 (data->h_dest[5] ^ data->h_source[5])) % count;
6f6652be
JV
3598 }
3599
d3da6831 3600 return (data->h_dest[5] ^ data->h_source[5]) % count;
6f6652be
JV
3601}
3602
169a3e66 3603/*
59c51591 3604 * Hash for the output device based upon layer 3 and layer 4 data. If
169a3e66
JV
3605 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3606 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3607 */
a361c83c 3608static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
169a3e66
JV
3609{
3610 struct ethhdr *data = (struct ethhdr *)skb->data;
eddc9ec5 3611 struct iphdr *iph = ip_hdr(skb);
d3bb52b0 3612 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
169a3e66
JV
3613 int layer4_xor = 0;
3614
f14c4e4e
BH
3615 if (skb->protocol == htons(ETH_P_IP)) {
3616 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
169a3e66
JV
3617 (iph->protocol == IPPROTO_TCP ||
3618 iph->protocol == IPPROTO_UDP)) {
d3bb52b0 3619 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
169a3e66
JV
3620 }
3621 return (layer4_xor ^
3622 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3623
3624 }
3625
d3da6831 3626 return (data->h_dest[5] ^ data->h_source[5]) % count;
169a3e66
JV
3627}
3628
3629/*
3630 * Hash for the output device based upon layer 2 data
3631 */
a361c83c 3632static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
169a3e66
JV
3633{
3634 struct ethhdr *data = (struct ethhdr *)skb->data;
3635
d3da6831 3636 return (data->h_dest[5] ^ data->h_source[5]) % count;
169a3e66
JV
3637}
3638
1da177e4
LT
3639/*-------------------------- Device entry points ----------------------------*/
3640
3641static int bond_open(struct net_device *bond_dev)
3642{
454d7c9b 3643 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
3644
3645 bond->kill_timers = 0;
3646
58402054 3647 if (bond_is_lb(bond)) {
1da177e4
LT
3648 /* bond_alb_initialize must be called before the timer
3649 * is started.
3650 */
3651 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3652 /* something went wrong - fail the open operation */
b473946a 3653 return -ENOMEM;
1da177e4
LT
3654 }
3655
1b76b316
JV
3656 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3657 queue_delayed_work(bond->wq, &bond->alb_work, 0);
1da177e4
LT
3658 }
3659
3660 if (bond->params.miimon) { /* link check interval, in milliseconds. */
1b76b316
JV
3661 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3662 queue_delayed_work(bond->wq, &bond->mii_work, 0);
1da177e4
LT
3663 }
3664
3665 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
1b76b316
JV
3666 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3667 INIT_DELAYED_WORK(&bond->arp_work,
3668 bond_activebackup_arp_mon);
3669 else
3670 INIT_DELAYED_WORK(&bond->arp_work,
3671 bond_loadbalance_arp_mon);
3672
3673 queue_delayed_work(bond->wq, &bond->arp_work, 0);
f5b2b966
JV
3674 if (bond->params.arp_validate)
3675 bond_register_arp(bond);
1da177e4
LT
3676 }
3677
3678 if (bond->params.mode == BOND_MODE_8023AD) {
a40745f5 3679 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
1b76b316 3680 queue_delayed_work(bond->wq, &bond->ad_work, 0);
1da177e4
LT
3681 /* register to receive LACPDUs */
3682 bond_register_lacpdu(bond);
fd989c83 3683 bond_3ad_initiate_agg_selection(bond, 1);
1da177e4
LT
3684 }
3685
3686 return 0;
3687}
3688
3689static int bond_close(struct net_device *bond_dev)
3690{
454d7c9b 3691 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
3692
3693 if (bond->params.mode == BOND_MODE_8023AD) {
3694 /* Unregister the receive of LACPDUs */
3695 bond_unregister_lacpdu(bond);
3696 }
3697
f5b2b966
JV
3698 if (bond->params.arp_validate)
3699 bond_unregister_arp(bond);
3700
1da177e4
LT
3701 write_lock_bh(&bond->lock);
3702
b59f9f74 3703 bond->send_grat_arp = 0;
305d552a 3704 bond->send_unsol_na = 0;
1da177e4
LT
3705
3706 /* signal timers not to re-arm */
3707 bond->kill_timers = 1;
3708
3709 write_unlock_bh(&bond->lock);
3710
1da177e4 3711 if (bond->params.miimon) { /* link check interval, in milliseconds. */
1b76b316 3712 cancel_delayed_work(&bond->mii_work);
1da177e4
LT
3713 }
3714
3715 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
1b76b316 3716 cancel_delayed_work(&bond->arp_work);
1da177e4
LT
3717 }
3718
3719 switch (bond->params.mode) {
3720 case BOND_MODE_8023AD:
1b76b316 3721 cancel_delayed_work(&bond->ad_work);
1da177e4
LT
3722 break;
3723 case BOND_MODE_TLB:
3724 case BOND_MODE_ALB:
1b76b316 3725 cancel_delayed_work(&bond->alb_work);
1da177e4
LT
3726 break;
3727 default:
3728 break;
3729 }
3730
1da177e4 3731
58402054 3732 if (bond_is_lb(bond)) {
1da177e4
LT
3733 /* Must be called only after all
3734 * slaves have been released
3735 */
3736 bond_alb_deinitialize(bond);
3737 }
3738
3739 return 0;
3740}
3741
3742static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3743{
454d7c9b 3744 struct bonding *bond = netdev_priv(bond_dev);
35cfabdc 3745 struct net_device_stats *stats = &bond_dev->stats;
2439f9eb 3746 struct net_device_stats local_stats;
1da177e4
LT
3747 struct slave *slave;
3748 int i;
3749
2439f9eb 3750 memset(&local_stats, 0, sizeof(struct net_device_stats));
1da177e4
LT
3751
3752 read_lock_bh(&bond->lock);
3753
3754 bond_for_each_slave(bond, slave, i) {
eeda3fd6
SH
3755 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3756
2439f9eb
AG
3757 local_stats.rx_packets += sstats->rx_packets;
3758 local_stats.rx_bytes += sstats->rx_bytes;
3759 local_stats.rx_errors += sstats->rx_errors;
3760 local_stats.rx_dropped += sstats->rx_dropped;
3761
3762 local_stats.tx_packets += sstats->tx_packets;
3763 local_stats.tx_bytes += sstats->tx_bytes;
3764 local_stats.tx_errors += sstats->tx_errors;
3765 local_stats.tx_dropped += sstats->tx_dropped;
3766
3767 local_stats.multicast += sstats->multicast;
3768 local_stats.collisions += sstats->collisions;
3769
3770 local_stats.rx_length_errors += sstats->rx_length_errors;
3771 local_stats.rx_over_errors += sstats->rx_over_errors;
3772 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3773 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3774 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3775 local_stats.rx_missed_errors += sstats->rx_missed_errors;
3776
3777 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3778 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3779 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3780 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3781 local_stats.tx_window_errors += sstats->tx_window_errors;
3782 }
3783
3784 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
1da177e4
LT
3785
3786 read_unlock_bh(&bond->lock);
3787
3788 return stats;
3789}
3790
3791static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3792{
3793 struct net_device *slave_dev = NULL;
3794 struct ifbond k_binfo;
3795 struct ifbond __user *u_binfo = NULL;
3796 struct ifslave k_sinfo;
3797 struct ifslave __user *u_sinfo = NULL;
3798 struct mii_ioctl_data *mii = NULL;
1da177e4
LT
3799 int res = 0;
3800
a4aee5c8 3801 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
1da177e4
LT
3802
3803 switch (cmd) {
1da177e4
LT
3804 case SIOCGMIIPHY:
3805 mii = if_mii(ifr);
3d632c3f 3806 if (!mii)
1da177e4 3807 return -EINVAL;
3d632c3f 3808
1da177e4
LT
3809 mii->phy_id = 0;
3810 /* Fall Through */
3811 case SIOCGMIIREG:
3812 /*
3813 * We do this again just in case we were called by SIOCGMIIREG
3814 * instead of SIOCGMIIPHY.
3815 */
3816 mii = if_mii(ifr);
3d632c3f 3817 if (!mii)
1da177e4 3818 return -EINVAL;
3d632c3f 3819
1da177e4
LT
3820
3821 if (mii->reg_num == 1) {
454d7c9b 3822 struct bonding *bond = netdev_priv(bond_dev);
1da177e4 3823 mii->val_out = 0;
6603a6f2 3824 read_lock(&bond->lock);
1da177e4 3825 read_lock(&bond->curr_slave_lock);
3d632c3f 3826 if (netif_carrier_ok(bond->dev))
1da177e4 3827 mii->val_out = BMSR_LSTATUS;
3d632c3f 3828
1da177e4 3829 read_unlock(&bond->curr_slave_lock);
6603a6f2 3830 read_unlock(&bond->lock);
1da177e4
LT
3831 }
3832
3833 return 0;
3834 case BOND_INFO_QUERY_OLD:
3835 case SIOCBONDINFOQUERY:
3836 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3837
3d632c3f 3838 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
1da177e4 3839 return -EFAULT;
1da177e4
LT
3840
3841 res = bond_info_query(bond_dev, &k_binfo);
3d632c3f
SH
3842 if (res == 0 &&
3843 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3844 return -EFAULT;
1da177e4
LT
3845
3846 return res;
3847 case BOND_SLAVE_INFO_QUERY_OLD:
3848 case SIOCBONDSLAVEINFOQUERY:
3849 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3850
3d632c3f 3851 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
1da177e4 3852 return -EFAULT;
1da177e4
LT
3853
3854 res = bond_slave_info_query(bond_dev, &k_sinfo);
3d632c3f
SH
3855 if (res == 0 &&
3856 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3857 return -EFAULT;
1da177e4
LT
3858
3859 return res;
3860 default:
3861 /* Go on */
3862 break;
3863 }
3864
3d632c3f 3865 if (!capable(CAP_NET_ADMIN))
1da177e4 3866 return -EPERM;
1da177e4 3867
ec87fd3b 3868 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
1da177e4 3869
a4aee5c8 3870 pr_debug("slave_dev=%p:\n", slave_dev);
1da177e4 3871
3d632c3f 3872 if (!slave_dev)
1da177e4 3873 res = -ENODEV;
3d632c3f 3874 else {
a4aee5c8 3875 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
1da177e4
LT
3876 switch (cmd) {
3877 case BOND_ENSLAVE_OLD:
3878 case SIOCBONDENSLAVE:
3879 res = bond_enslave(bond_dev, slave_dev);
3880 break;
3881 case BOND_RELEASE_OLD:
3882 case SIOCBONDRELEASE:
3883 res = bond_release(bond_dev, slave_dev);
3884 break;
3885 case BOND_SETHWADDR_OLD:
3886 case SIOCBONDSETHWADDR:
3887 res = bond_sethwaddr(bond_dev, slave_dev);
3888 break;
3889 case BOND_CHANGE_ACTIVE_OLD:
3890 case SIOCBONDCHANGEACTIVE:
3891 res = bond_ioctl_change_active(bond_dev, slave_dev);
3892 break;
3893 default:
3894 res = -EOPNOTSUPP;
3895 }
3896
3897 dev_put(slave_dev);
3898 }
3899
1da177e4
LT
3900 return res;
3901}
3902
3903static void bond_set_multicast_list(struct net_device *bond_dev)
3904{
454d7c9b 3905 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
3906 struct dev_mc_list *dmi;
3907
1da177e4
LT
3908 /*
3909 * Do promisc before checking multicast_mode
3910 */
3d632c3f 3911 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
7e1a1ac1
WC
3912 /*
3913 * FIXME: Need to handle the error when one of the multi-slaves
3914 * encounters error.
3915 */
1da177e4 3916 bond_set_promiscuity(bond, 1);
1da177e4 3917
3d632c3f
SH
3918
3919 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
1da177e4 3920 bond_set_promiscuity(bond, -1);
3d632c3f 3921
1da177e4
LT
3922
3923 /* set allmulti flag to slaves */
3d632c3f 3924 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
7e1a1ac1
WC
3925 /*
3926 * FIXME: Need to handle the error when one of the multi-slaves
3927 * encounters error.
3928 */
1da177e4 3929 bond_set_allmulti(bond, 1);
1da177e4 3930
3d632c3f
SH
3931
3932 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
1da177e4 3933 bond_set_allmulti(bond, -1);
3d632c3f 3934
1da177e4 3935
80ee5ad2
JV
3936 read_lock(&bond->lock);
3937
1da177e4
LT
3938 bond->flags = bond_dev->flags;
3939
3940 /* looking for addresses to add to slaves' mc list */
3941 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next) {
3d632c3f 3942 if (!bond_mc_list_find_dmi(dmi, bond->mc_list))
1da177e4 3943 bond_mc_add(bond, dmi->dmi_addr, dmi->dmi_addrlen);
1da177e4
LT
3944 }
3945
3946 /* looking for addresses to delete from slaves' list */
3947 for (dmi = bond->mc_list; dmi; dmi = dmi->next) {
3d632c3f 3948 if (!bond_mc_list_find_dmi(dmi, bond_dev->mc_list))
1da177e4 3949 bond_mc_delete(bond, dmi->dmi_addr, dmi->dmi_addrlen);
1da177e4
LT
3950 }
3951
3952 /* save master's multicast list */
3953 bond_mc_list_destroy(bond);
3954 bond_mc_list_copy(bond_dev->mc_list, bond, GFP_ATOMIC);
3955
80ee5ad2 3956 read_unlock(&bond->lock);
1da177e4
LT
3957}
3958
00829823
SH
3959static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
3960{
3961 struct bonding *bond = netdev_priv(dev);
3962 struct slave *slave = bond->first_slave;
3963
3964 if (slave) {
3965 const struct net_device_ops *slave_ops
3966 = slave->dev->netdev_ops;
3967 if (slave_ops->ndo_neigh_setup)
72e2240f 3968 return slave_ops->ndo_neigh_setup(slave->dev, parms);
00829823
SH
3969 }
3970 return 0;
3971}
3972
1da177e4
LT
3973/*
3974 * Change the MTU of all of a master's slaves to match the master
3975 */
3976static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
3977{
454d7c9b 3978 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
3979 struct slave *slave, *stop_at;
3980 int res = 0;
3981 int i;
3982
5a03cdb7 3983 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
a4aee5c8 3984 (bond_dev ? bond_dev->name : "None"), new_mtu);
1da177e4
LT
3985
3986 /* Can't hold bond->lock with bh disabled here since
3987 * some base drivers panic. On the other hand we can't
3988 * hold bond->lock without bh disabled because we'll
3989 * deadlock. The only solution is to rely on the fact
3990 * that we're under rtnl_lock here, and the slaves
3991 * list won't change. This doesn't solve the problem
3992 * of setting the slave's MTU while it is
3993 * transmitting, but the assumption is that the base
3994 * driver can handle that.
3995 *
3996 * TODO: figure out a way to safely iterate the slaves
3997 * list, but without holding a lock around the actual
3998 * call to the base driver.
3999 */
4000
4001 bond_for_each_slave(bond, slave, i) {
a4aee5c8
JP
4002 pr_debug("s %p s->p %p c_m %p\n",
4003 slave,
4004 slave->prev,
4005 slave->dev->netdev_ops->ndo_change_mtu);
e944ef79 4006
1da177e4
LT
4007 res = dev_set_mtu(slave->dev, new_mtu);
4008
4009 if (res) {
4010 /* If we failed to set the slave's mtu to the new value
4011 * we must abort the operation even in ACTIVE_BACKUP
4012 * mode, because if we allow the backup slaves to have
4013 * different mtu values than the active slave we'll
4014 * need to change their mtu when doing a failover. That
4015 * means changing their mtu from timer context, which
4016 * is probably not a good idea.
4017 */
5a03cdb7 4018 pr_debug("err %d %s\n", res, slave->dev->name);
1da177e4
LT
4019 goto unwind;
4020 }
4021 }
4022
4023 bond_dev->mtu = new_mtu;
4024
4025 return 0;
4026
4027unwind:
4028 /* unwind from head to the slave that failed */
4029 stop_at = slave;
4030 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4031 int tmp_res;
4032
4033 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4034 if (tmp_res) {
a4aee5c8
JP
4035 pr_debug("unwind err %d dev %s\n",
4036 tmp_res, slave->dev->name);
1da177e4
LT
4037 }
4038 }
4039
4040 return res;
4041}
4042
4043/*
4044 * Change HW address
4045 *
4046 * Note that many devices must be down to change the HW address, and
4047 * downing the master releases all slaves. We can make bonds full of
4048 * bonding devices to test this, however.
4049 */
4050static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4051{
454d7c9b 4052 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
4053 struct sockaddr *sa = addr, tmp_sa;
4054 struct slave *slave, *stop_at;
4055 int res = 0;
4056 int i;
4057
eb7cc59a
SH
4058 if (bond->params.mode == BOND_MODE_ALB)
4059 return bond_alb_set_mac_address(bond_dev, addr);
4060
4061
a4aee5c8
JP
4062 pr_debug("bond=%p, name=%s\n",
4063 bond, bond_dev ? bond_dev->name : "None");
1da177e4 4064
dd957c57 4065 /*
3915c1e8
JV
4066 * If fail_over_mac is set to active, do nothing and return
4067 * success. Returning an error causes ifenslave to fail.
dd957c57 4068 */
3915c1e8 4069 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
dd957c57 4070 return 0;
2ab82852 4071
3d632c3f 4072 if (!is_valid_ether_addr(sa->sa_data))
1da177e4 4073 return -EADDRNOTAVAIL;
1da177e4
LT
4074
4075 /* Can't hold bond->lock with bh disabled here since
4076 * some base drivers panic. On the other hand we can't
4077 * hold bond->lock without bh disabled because we'll
4078 * deadlock. The only solution is to rely on the fact
4079 * that we're under rtnl_lock here, and the slaves
4080 * list won't change. This doesn't solve the problem
4081 * of setting the slave's hw address while it is
4082 * transmitting, but the assumption is that the base
4083 * driver can handle that.
4084 *
4085 * TODO: figure out a way to safely iterate the slaves
4086 * list, but without holding a lock around the actual
4087 * call to the base driver.
4088 */
4089
4090 bond_for_each_slave(bond, slave, i) {
eb7cc59a 4091 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
5a03cdb7 4092 pr_debug("slave %p %s\n", slave, slave->dev->name);
1da177e4 4093
eb7cc59a 4094 if (slave_ops->ndo_set_mac_address == NULL) {
1da177e4 4095 res = -EOPNOTSUPP;
5a03cdb7 4096 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
1da177e4
LT
4097 goto unwind;
4098 }
4099
4100 res = dev_set_mac_address(slave->dev, addr);
4101 if (res) {
4102 /* TODO: consider downing the slave
4103 * and retry ?
4104 * User should expect communications
4105 * breakage anyway until ARP finish
4106 * updating, so...
4107 */
5a03cdb7 4108 pr_debug("err %d %s\n", res, slave->dev->name);
1da177e4
LT
4109 goto unwind;
4110 }
4111 }
4112
4113 /* success */
4114 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4115 return 0;
4116
4117unwind:
4118 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4119 tmp_sa.sa_family = bond_dev->type;
4120
4121 /* unwind from head to the slave that failed */
4122 stop_at = slave;
4123 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4124 int tmp_res;
4125
4126 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4127 if (tmp_res) {
a4aee5c8
JP
4128 pr_debug("unwind err %d dev %s\n",
4129 tmp_res, slave->dev->name);
1da177e4
LT
4130 }
4131 }
4132
4133 return res;
4134}
4135
4136static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4137{
454d7c9b 4138 struct bonding *bond = netdev_priv(bond_dev);
1da177e4 4139 struct slave *slave, *start_at;
cf5f9044 4140 int i, slave_no, res = 1;
1da177e4
LT
4141
4142 read_lock(&bond->lock);
4143
3d632c3f 4144 if (!BOND_IS_OK(bond))
1da177e4 4145 goto out;
1da177e4 4146
cf5f9044
JV
4147 /*
4148 * Concurrent TX may collide on rr_tx_counter; we accept that
4149 * as being rare enough not to justify using an atomic op here
4150 */
4151 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
1da177e4 4152
cf5f9044
JV
4153 bond_for_each_slave(bond, slave, i) {
4154 slave_no--;
3d632c3f 4155 if (slave_no < 0)
cf5f9044 4156 break;
1da177e4
LT
4157 }
4158
cf5f9044 4159 start_at = slave;
1da177e4
LT
4160 bond_for_each_slave_from(bond, slave, i, start_at) {
4161 if (IS_UP(slave->dev) &&
4162 (slave->link == BOND_LINK_UP) &&
4163 (slave->state == BOND_STATE_ACTIVE)) {
4164 res = bond_dev_queue_xmit(bond, skb, slave->dev);
1da177e4
LT
4165 break;
4166 }
4167 }
4168
1da177e4
LT
4169out:
4170 if (res) {
4171 /* no suitable interface, frame not sent */
4172 dev_kfree_skb(skb);
4173 }
4174 read_unlock(&bond->lock);
ec634fe3 4175 return NETDEV_TX_OK;
1da177e4
LT
4176}
4177
075897ce 4178
1da177e4
LT
4179/*
4180 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4181 * the bond has a usable interface.
4182 */
4183static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4184{
454d7c9b 4185 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
4186 int res = 1;
4187
1da177e4
LT
4188 read_lock(&bond->lock);
4189 read_lock(&bond->curr_slave_lock);
4190
3d632c3f 4191 if (!BOND_IS_OK(bond))
1da177e4 4192 goto out;
1da177e4 4193
075897ce
JL
4194 if (!bond->curr_active_slave)
4195 goto out;
4196
075897ce
JL
4197 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4198
1da177e4 4199out:
3d632c3f 4200 if (res)
1da177e4
LT
4201 /* no suitable interface, frame not sent */
4202 dev_kfree_skb(skb);
3d632c3f 4203
1da177e4
LT
4204 read_unlock(&bond->curr_slave_lock);
4205 read_unlock(&bond->lock);
ec634fe3 4206 return NETDEV_TX_OK;
1da177e4
LT
4207}
4208
4209/*
169a3e66
JV
4210 * In bond_xmit_xor() , we determine the output device by using a pre-
4211 * determined xmit_hash_policy(), If the selected device is not enabled,
4212 * find the next active slave.
1da177e4
LT
4213 */
4214static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4215{
454d7c9b 4216 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
4217 struct slave *slave, *start_at;
4218 int slave_no;
4219 int i;
4220 int res = 1;
4221
4222 read_lock(&bond->lock);
4223
3d632c3f 4224 if (!BOND_IS_OK(bond))
1da177e4 4225 goto out;
1da177e4 4226
a361c83c 4227 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
1da177e4
LT
4228
4229 bond_for_each_slave(bond, slave, i) {
4230 slave_no--;
3d632c3f 4231 if (slave_no < 0)
1da177e4 4232 break;
1da177e4
LT
4233 }
4234
4235 start_at = slave;
4236
4237 bond_for_each_slave_from(bond, slave, i, start_at) {
4238 if (IS_UP(slave->dev) &&
4239 (slave->link == BOND_LINK_UP) &&
4240 (slave->state == BOND_STATE_ACTIVE)) {
4241 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4242 break;
4243 }
4244 }
4245
4246out:
4247 if (res) {
4248 /* no suitable interface, frame not sent */
4249 dev_kfree_skb(skb);
4250 }
4251 read_unlock(&bond->lock);
ec634fe3 4252 return NETDEV_TX_OK;
1da177e4
LT
4253}
4254
4255/*
4256 * in broadcast mode, we send everything to all usable interfaces.
4257 */
4258static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4259{
454d7c9b 4260 struct bonding *bond = netdev_priv(bond_dev);
1da177e4
LT
4261 struct slave *slave, *start_at;
4262 struct net_device *tx_dev = NULL;
4263 int i;
4264 int res = 1;
4265
4266 read_lock(&bond->lock);
4267
3d632c3f 4268 if (!BOND_IS_OK(bond))
1da177e4 4269 goto out;
1da177e4
LT
4270
4271 read_lock(&bond->curr_slave_lock);
4272 start_at = bond->curr_active_slave;
4273 read_unlock(&bond->curr_slave_lock);
4274
3d632c3f 4275 if (!start_at)
1da177e4 4276 goto out;
1da177e4
LT
4277
4278 bond_for_each_slave_from(bond, slave, i, start_at) {
4279 if (IS_UP(slave->dev) &&
4280 (slave->link == BOND_LINK_UP) &&
4281 (slave->state == BOND_STATE_ACTIVE)) {
4282 if (tx_dev) {
4283 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4284 if (!skb2) {
a4aee5c8 4285 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
4e0952c7 4286 bond_dev->name);
1da177e4
LT
4287 continue;
4288 }
4289
4290 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4291 if (res) {
4292 dev_kfree_skb(skb2);
4293 continue;
4294 }
4295 }
4296 tx_dev = slave->dev;
4297 }
4298 }
4299
3d632c3f 4300 if (tx_dev)
1da177e4 4301 res = bond_dev_queue_xmit(bond, skb, tx_dev);
1da177e4
LT
4302
4303out:
3d632c3f 4304 if (res)
1da177e4
LT
4305 /* no suitable interface, frame not sent */
4306 dev_kfree_skb(skb);
3d632c3f 4307
1da177e4
LT
4308 /* frame sent to all suitable interfaces */
4309 read_unlock(&bond->lock);
ec634fe3 4310 return NETDEV_TX_OK;
1da177e4
LT
4311}
4312
4313/*------------------------- Device initialization ---------------------------*/
4314
6f6652be
JV
4315static void bond_set_xmit_hash_policy(struct bonding *bond)
4316{
4317 switch (bond->params.xmit_policy) {
4318 case BOND_XMIT_POLICY_LAYER23:
4319 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4320 break;
4321 case BOND_XMIT_POLICY_LAYER34:
4322 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4323 break;
4324 case BOND_XMIT_POLICY_LAYER2:
4325 default:
4326 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4327 break;
4328 }
4329}
4330
424efe9c 4331static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
00829823
SH
4332{
4333 const struct bonding *bond = netdev_priv(dev);
4334
4335 switch (bond->params.mode) {
4336 case BOND_MODE_ROUNDROBIN:
4337 return bond_xmit_roundrobin(skb, dev);
4338 case BOND_MODE_ACTIVEBACKUP:
4339 return bond_xmit_activebackup(skb, dev);
4340 case BOND_MODE_XOR:
4341 return bond_xmit_xor(skb, dev);
4342 case BOND_MODE_BROADCAST:
4343 return bond_xmit_broadcast(skb, dev);
4344 case BOND_MODE_8023AD:
4345 return bond_3ad_xmit_xor(skb, dev);
4346 case BOND_MODE_ALB:
4347 case BOND_MODE_TLB:
4348 return bond_alb_xmit(skb, dev);
4349 default:
4350 /* Should never happen, mode already checked */
a4aee5c8
JP
4351 pr_err("%s: Error: Unknown bonding mode %d\n",
4352 dev->name, bond->params.mode);
00829823
SH
4353 WARN_ON_ONCE(1);
4354 dev_kfree_skb(skb);
4355 return NETDEV_TX_OK;
4356 }
4357}
4358
4359
1da177e4
LT
4360/*
4361 * set bond mode specific net device operations
4362 */
a77b5325 4363void bond_set_mode_ops(struct bonding *bond, int mode)
1da177e4 4364{
169a3e66
JV
4365 struct net_device *bond_dev = bond->dev;
4366
1da177e4
LT
4367 switch (mode) {
4368 case BOND_MODE_ROUNDROBIN:
1da177e4
LT
4369 break;
4370 case BOND_MODE_ACTIVEBACKUP:
1da177e4
LT
4371 break;
4372 case BOND_MODE_XOR:
6f6652be 4373 bond_set_xmit_hash_policy(bond);
1da177e4
LT
4374 break;
4375 case BOND_MODE_BROADCAST:
1da177e4
LT
4376 break;
4377 case BOND_MODE_8023AD:
8f903c70 4378 bond_set_master_3ad_flags(bond);
6f6652be 4379 bond_set_xmit_hash_policy(bond);
1da177e4 4380 break;
1da177e4 4381 case BOND_MODE_ALB:
8f903c70
JV
4382 bond_set_master_alb_flags(bond);
4383 /* FALLTHRU */
4384 case BOND_MODE_TLB:
1da177e4
LT
4385 break;
4386 default:
4387 /* Should never happen, mode already checked */
a4aee5c8
JP
4388 pr_err("%s: Error: Unknown bonding mode %d\n",
4389 bond_dev->name, mode);
1da177e4
LT
4390 break;
4391 }
4392}
4393
217df670
JV
4394static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4395 struct ethtool_drvinfo *drvinfo)
4396{
4397 strncpy(drvinfo->driver, DRV_NAME, 32);
4398 strncpy(drvinfo->version, DRV_VERSION, 32);
4399 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4400}
4401
7282d491 4402static const struct ethtool_ops bond_ethtool_ops = {
217df670 4403 .get_drvinfo = bond_ethtool_get_drvinfo,
fa53ebac
SH
4404 .get_link = ethtool_op_get_link,
4405 .get_tx_csum = ethtool_op_get_tx_csum,
4406 .get_sg = ethtool_op_get_sg,
4407 .get_tso = ethtool_op_get_tso,
4408 .get_ufo = ethtool_op_get_ufo,
4409 .get_flags = ethtool_op_get_flags,
8531c5ff
AK
4410};
4411
eb7cc59a 4412static const struct net_device_ops bond_netdev_ops = {
181470fc 4413 .ndo_init = bond_init,
9e71626c 4414 .ndo_uninit = bond_uninit,
eb7cc59a
SH
4415 .ndo_open = bond_open,
4416 .ndo_stop = bond_close,
00829823 4417 .ndo_start_xmit = bond_start_xmit,
eb7cc59a
SH
4418 .ndo_get_stats = bond_get_stats,
4419 .ndo_do_ioctl = bond_do_ioctl,
4420 .ndo_set_multicast_list = bond_set_multicast_list,
4421 .ndo_change_mtu = bond_change_mtu,
eb7cc59a 4422 .ndo_set_mac_address = bond_set_mac_address,
00829823 4423 .ndo_neigh_setup = bond_neigh_setup,
eb7cc59a
SH
4424 .ndo_vlan_rx_register = bond_vlan_rx_register,
4425 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4426 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
4427};
4428
181470fc 4429static void bond_setup(struct net_device *bond_dev)
1da177e4 4430{
454d7c9b 4431 struct bonding *bond = netdev_priv(bond_dev);
1da177e4 4432
1da177e4
LT
4433 /* initialize rwlocks */
4434 rwlock_init(&bond->lock);
4435 rwlock_init(&bond->curr_slave_lock);
4436
d2991f75 4437 bond->params = bonding_defaults;
1da177e4
LT
4438
4439 /* Initialize pointers */
1da177e4
LT
4440 bond->dev = bond_dev;
4441 INIT_LIST_HEAD(&bond->vlan_list);
4442
4443 /* Initialize the device entry points */
181470fc 4444 ether_setup(bond_dev);
eb7cc59a 4445 bond_dev->netdev_ops = &bond_netdev_ops;
8531c5ff 4446 bond_dev->ethtool_ops = &bond_ethtool_ops;
169a3e66 4447 bond_set_mode_ops(bond, bond->params.mode);
1da177e4 4448
9e71626c 4449 bond_dev->destructor = free_netdev;
1da177e4
LT
4450
4451 /* Initialize the device options */
4452 bond_dev->tx_queue_len = 0;
4453 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
0b680e75 4454 bond_dev->priv_flags |= IFF_BONDING;
181470fc
SH
4455 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4456
6cf3f41e
JV
4457 if (bond->params.arp_interval)
4458 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
1da177e4
LT
4459
4460 /* At first, we block adding VLANs. That's the only way to
4461 * prevent problems that occur when adding VLANs over an
4462 * empty bond. The block will be removed once non-challenged
4463 * slaves are enslaved.
4464 */
4465 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4466
932ff279 4467 /* don't acquire bond device's netif_tx_lock when
1da177e4
LT
4468 * transmitting */
4469 bond_dev->features |= NETIF_F_LLTX;
4470
4471 /* By default, we declare the bond to be fully
4472 * VLAN hardware accelerated capable. Special
4473 * care is taken in the various xmit functions
4474 * when there are slaves that are not hw accel
4475 * capable
4476 */
1da177e4
LT
4477 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4478 NETIF_F_HW_VLAN_RX |
4479 NETIF_F_HW_VLAN_FILTER);
4480
1da177e4
LT
4481}
4482
fdaea7a9
JV
4483static void bond_work_cancel_all(struct bonding *bond)
4484{
4485 write_lock_bh(&bond->lock);
4486 bond->kill_timers = 1;
4487 write_unlock_bh(&bond->lock);
4488
4489 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4490 cancel_delayed_work(&bond->mii_work);
4491
4492 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4493 cancel_delayed_work(&bond->arp_work);
4494
4495 if (bond->params.mode == BOND_MODE_ALB &&
4496 delayed_work_pending(&bond->alb_work))
4497 cancel_delayed_work(&bond->alb_work);
4498
4499 if (bond->params.mode == BOND_MODE_8023AD &&
4500 delayed_work_pending(&bond->ad_work))
4501 cancel_delayed_work(&bond->ad_work);
4502}
4503
c67dfb29
EB
4504/*
4505* Destroy a bonding device.
4506* Must be under rtnl_lock when this function is called.
4507*/
4508static void bond_uninit(struct net_device *bond_dev)
a434e43f 4509{
454d7c9b 4510 struct bonding *bond = netdev_priv(bond_dev);
a434e43f 4511
c67dfb29
EB
4512 /* Release the bonded slaves */
4513 bond_release_all(bond_dev);
4514
a434e43f
JV
4515 list_del(&bond->bond_list);
4516
4517 bond_work_cancel_all(bond);
4518
a434e43f 4519 bond_remove_proc_entry(bond);
c67dfb29
EB
4520
4521 if (bond->wq)
4522 destroy_workqueue(bond->wq);
4523
4524 netif_addr_lock_bh(bond_dev);
4525 bond_mc_list_destroy(bond);
4526 netif_addr_unlock_bh(bond_dev);
a434e43f
JV
4527}
4528
1da177e4
LT
4529/*------------------------- Module initialization ---------------------------*/
4530
4531/*
4532 * Convert string input module parms. Accept either the
ece95f7f
JV
4533 * number of the mode or its string name. A bit complicated because
4534 * some mode names are substrings of other names, and calls from sysfs
4535 * may have whitespace in the name (trailing newlines, for example).
1da177e4 4536 */
325dcf7a 4537int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
1da177e4 4538{
54b87323 4539 int modeint = -1, i, rv;
a42e534f 4540 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
ece95f7f 4541
a42e534f
JV
4542 for (p = (char *)buf; *p; p++)
4543 if (!(isdigit(*p) || isspace(*p)))
4544 break;
4545
4546 if (*p)
ece95f7f 4547 rv = sscanf(buf, "%20s", modestr);
a42e534f 4548 else
54b87323 4549 rv = sscanf(buf, "%d", &modeint);
a42e534f
JV
4550
4551 if (!rv)
4552 return -1;
1da177e4
LT
4553
4554 for (i = 0; tbl[i].modename; i++) {
54b87323 4555 if (modeint == tbl[i].mode)
ece95f7f
JV
4556 return tbl[i].mode;
4557 if (strcmp(modestr, tbl[i].modename) == 0)
1da177e4 4558 return tbl[i].mode;
1da177e4
LT
4559 }
4560
4561 return -1;
4562}
4563
4564static int bond_check_params(struct bond_params *params)
4565{
a549952a 4566 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
f5b2b966 4567
1da177e4
LT
4568 /*
4569 * Convert string parameters.
4570 */
4571 if (mode) {
4572 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4573 if (bond_mode == -1) {
a4aee5c8 4574 pr_err("Error: Invalid bonding mode \"%s\"\n",
1da177e4
LT
4575 mode == NULL ? "NULL" : mode);
4576 return -EINVAL;
4577 }
4578 }
4579
169a3e66
JV
4580 if (xmit_hash_policy) {
4581 if ((bond_mode != BOND_MODE_XOR) &&
4582 (bond_mode != BOND_MODE_8023AD)) {
a4aee5c8 4583 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
169a3e66
JV
4584 bond_mode_name(bond_mode));
4585 } else {
4586 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4587 xmit_hashtype_tbl);
4588 if (xmit_hashtype == -1) {
a4aee5c8 4589 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
3d632c3f 4590 xmit_hash_policy == NULL ? "NULL" :
169a3e66
JV
4591 xmit_hash_policy);
4592 return -EINVAL;
4593 }
4594 }
4595 }
4596
1da177e4
LT
4597 if (lacp_rate) {
4598 if (bond_mode != BOND_MODE_8023AD) {
a4aee5c8
JP
4599 pr_info("lacp_rate param is irrelevant in mode %s\n",
4600 bond_mode_name(bond_mode));
1da177e4
LT
4601 } else {
4602 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4603 if (lacp_fast == -1) {
a4aee5c8 4604 pr_err("Error: Invalid lacp rate \"%s\"\n",
1da177e4
LT
4605 lacp_rate == NULL ? "NULL" : lacp_rate);
4606 return -EINVAL;
4607 }
4608 }
4609 }
4610
fd989c83
JV
4611 if (ad_select) {
4612 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4613 if (params->ad_select == -1) {
a4aee5c8 4614 pr_err("Error: Invalid ad_select \"%s\"\n",
fd989c83
JV
4615 ad_select == NULL ? "NULL" : ad_select);
4616 return -EINVAL;
4617 }
4618
4619 if (bond_mode != BOND_MODE_8023AD) {
a4aee5c8 4620 pr_warning("ad_select param only affects 802.3ad mode\n");
fd989c83
JV
4621 }
4622 } else {
4623 params->ad_select = BOND_AD_STABLE;
4624 }
4625
f5841306 4626 if (max_bonds < 0) {
a4aee5c8
JP
4627 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4628 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
1da177e4
LT
4629 max_bonds = BOND_DEFAULT_MAX_BONDS;
4630 }
4631
4632 if (miimon < 0) {
a4aee5c8
JP
4633 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4634 miimon, INT_MAX, BOND_LINK_MON_INTERV);
1da177e4
LT
4635 miimon = BOND_LINK_MON_INTERV;
4636 }
4637
4638 if (updelay < 0) {
a4aee5c8
JP
4639 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4640 updelay, INT_MAX);
1da177e4
LT
4641 updelay = 0;
4642 }
4643
4644 if (downdelay < 0) {
a4aee5c8
JP
4645 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4646 downdelay, INT_MAX);
1da177e4
LT
4647 downdelay = 0;
4648 }
4649
4650 if ((use_carrier != 0) && (use_carrier != 1)) {
a4aee5c8
JP
4651 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4652 use_carrier);
1da177e4
LT
4653 use_carrier = 1;
4654 }
4655
7893b249 4656 if (num_grat_arp < 0 || num_grat_arp > 255) {
a4aee5c8
JP
4657 pr_warning("Warning: num_grat_arp (%d) not in range 0-255 so it was reset to 1 \n",
4658 num_grat_arp);
7893b249
MS
4659 num_grat_arp = 1;
4660 }
4661
305d552a 4662 if (num_unsol_na < 0 || num_unsol_na > 255) {
a4aee5c8
JP
4663 pr_warning("Warning: num_unsol_na (%d) not in range 0-255 so it was reset to 1 \n",
4664 num_unsol_na);
305d552a
BH
4665 num_unsol_na = 1;
4666 }
4667
1da177e4
LT
4668 /* reset values for 802.3ad */
4669 if (bond_mode == BOND_MODE_8023AD) {
4670 if (!miimon) {
a4aee5c8 4671 pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n");
3d632c3f 4672 pr_warning("Forcing miimon to 100msec\n");
1da177e4
LT
4673 miimon = 100;
4674 }
4675 }
4676
4677 /* reset values for TLB/ALB */
4678 if ((bond_mode == BOND_MODE_TLB) ||
4679 (bond_mode == BOND_MODE_ALB)) {
4680 if (!miimon) {
a4aee5c8 4681 pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure and link speed which are essential for TLB/ALB load balancing\n");
3d632c3f 4682 pr_warning("Forcing miimon to 100msec\n");
1da177e4
LT
4683 miimon = 100;
4684 }
4685 }
4686
4687 if (bond_mode == BOND_MODE_ALB) {
a4aee5c8
JP
4688 pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n",
4689 updelay);
1da177e4
LT
4690 }
4691
4692 if (!miimon) {
4693 if (updelay || downdelay) {
4694 /* just warn the user the up/down delay will have
4695 * no effect since miimon is zero...
4696 */
a4aee5c8
JP
4697 pr_warning("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n",
4698 updelay, downdelay);
1da177e4
LT
4699 }
4700 } else {
4701 /* don't allow arp monitoring */
4702 if (arp_interval) {
a4aee5c8
JP
4703 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4704 miimon, arp_interval);
1da177e4
LT
4705 arp_interval = 0;
4706 }
4707
4708 if ((updelay % miimon) != 0) {
a4aee5c8
JP
4709 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4710 updelay, miimon,
4711 (updelay / miimon) * miimon);
1da177e4
LT
4712 }
4713
4714 updelay /= miimon;
4715
4716 if ((downdelay % miimon) != 0) {
a4aee5c8
JP
4717 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4718 downdelay, miimon,
4719 (downdelay / miimon) * miimon);
1da177e4
LT
4720 }
4721
4722 downdelay /= miimon;
4723 }
4724
4725 if (arp_interval < 0) {
a4aee5c8
JP
4726 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4727 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
1da177e4
LT
4728 arp_interval = BOND_LINK_ARP_INTERV;
4729 }
4730
4731 for (arp_ip_count = 0;
4732 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4733 arp_ip_count++) {
4734 /* not complete check, but should be good enough to
4735 catch mistakes */
4736 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
a4aee5c8
JP
4737 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4738 arp_ip_target[arp_ip_count]);
1da177e4
LT
4739 arp_interval = 0;
4740 } else {
d3bb52b0 4741 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
1da177e4
LT
4742 arp_target[arp_ip_count] = ip;
4743 }
4744 }
4745
4746 if (arp_interval && !arp_ip_count) {
4747 /* don't allow arping if no arp_ip_target given... */
a4aee5c8
JP
4748 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4749 arp_interval);
1da177e4
LT
4750 arp_interval = 0;
4751 }
4752
f5b2b966
JV
4753 if (arp_validate) {
4754 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
a4aee5c8 4755 pr_err("arp_validate only supported in active-backup mode\n");
f5b2b966
JV
4756 return -EINVAL;
4757 }
4758 if (!arp_interval) {
a4aee5c8 4759 pr_err("arp_validate requires arp_interval\n");
f5b2b966
JV
4760 return -EINVAL;
4761 }
4762
4763 arp_validate_value = bond_parse_parm(arp_validate,
4764 arp_validate_tbl);
4765 if (arp_validate_value == -1) {
a4aee5c8 4766 pr_err("Error: invalid arp_validate \"%s\"\n",
f5b2b966
JV
4767 arp_validate == NULL ? "NULL" : arp_validate);
4768 return -EINVAL;
4769 }
4770 } else
4771 arp_validate_value = 0;
4772
1da177e4 4773 if (miimon) {
a4aee5c8 4774 pr_info("MII link monitoring set to %d ms\n", miimon);
1da177e4
LT
4775 } else if (arp_interval) {
4776 int i;
4777
a4aee5c8
JP
4778 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4779 arp_interval,
4780 arp_validate_tbl[arp_validate_value].modename,
4781 arp_ip_count);
1da177e4
LT
4782
4783 for (i = 0; i < arp_ip_count; i++)
e5e2a8fd 4784 pr_info(" %s", arp_ip_target[i]);
1da177e4 4785
e5e2a8fd 4786 pr_info("\n");
1da177e4 4787
b8a9787e 4788 } else if (max_bonds) {
1da177e4
LT
4789 /* miimon and arp_interval not set, we need one so things
4790 * work as expected, see bonding.txt for details
4791 */
a4aee5c8 4792 pr_warning("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.\n");
1da177e4
LT
4793 }
4794
4795 if (primary && !USES_PRIMARY(bond_mode)) {
4796 /* currently, using a primary only makes sense
4797 * in active backup, TLB or ALB modes
4798 */
a4aee5c8
JP
4799 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
4800 primary, bond_mode_name(bond_mode));
1da177e4
LT
4801 primary = NULL;
4802 }
4803
a549952a
JP
4804 if (primary && primary_reselect) {
4805 primary_reselect_value = bond_parse_parm(primary_reselect,
4806 pri_reselect_tbl);
4807 if (primary_reselect_value == -1) {
a4aee5c8 4808 pr_err("Error: Invalid primary_reselect \"%s\"\n",
a549952a
JP
4809 primary_reselect ==
4810 NULL ? "NULL" : primary_reselect);
4811 return -EINVAL;
4812 }
4813 } else {
4814 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4815 }
4816
3915c1e8
JV
4817 if (fail_over_mac) {
4818 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4819 fail_over_mac_tbl);
4820 if (fail_over_mac_value == -1) {
a4aee5c8 4821 pr_err("Error: invalid fail_over_mac \"%s\"\n",
3915c1e8
JV
4822 arp_validate == NULL ? "NULL" : arp_validate);
4823 return -EINVAL;
4824 }
4825
4826 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
a4aee5c8 4827 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
3915c1e8
JV
4828 } else {
4829 fail_over_mac_value = BOND_FOM_NONE;
4830 }
dd957c57 4831
1da177e4
LT
4832 /* fill params struct with the proper values */
4833 params->mode = bond_mode;
169a3e66 4834 params->xmit_policy = xmit_hashtype;
1da177e4 4835 params->miimon = miimon;
7893b249 4836 params->num_grat_arp = num_grat_arp;
305d552a 4837 params->num_unsol_na = num_unsol_na;
1da177e4 4838 params->arp_interval = arp_interval;
f5b2b966 4839 params->arp_validate = arp_validate_value;
1da177e4
LT
4840 params->updelay = updelay;
4841 params->downdelay = downdelay;
4842 params->use_carrier = use_carrier;
4843 params->lacp_fast = lacp_fast;
4844 params->primary[0] = 0;
a549952a 4845 params->primary_reselect = primary_reselect_value;
3915c1e8 4846 params->fail_over_mac = fail_over_mac_value;
1da177e4
LT
4847
4848 if (primary) {
4849 strncpy(params->primary, primary, IFNAMSIZ);
4850 params->primary[IFNAMSIZ - 1] = 0;
4851 }
4852
4853 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4854
4855 return 0;
4856}
4857
0daa2303 4858static struct lock_class_key bonding_netdev_xmit_lock_key;
cf508b12 4859static struct lock_class_key bonding_netdev_addr_lock_key;
0daa2303 4860
e8a0464c
DM
4861static void bond_set_lockdep_class_one(struct net_device *dev,
4862 struct netdev_queue *txq,
4863 void *_unused)
c773e847
DM
4864{
4865 lockdep_set_class(&txq->_xmit_lock,
4866 &bonding_netdev_xmit_lock_key);
4867}
4868
4869static void bond_set_lockdep_class(struct net_device *dev)
4870{
cf508b12
DM
4871 lockdep_set_class(&dev->addr_list_lock,
4872 &bonding_netdev_addr_lock_key);
e8a0464c 4873 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
c773e847
DM
4874}
4875
181470fc
SH
4876/*
4877 * Called from registration process
4878 */
4879static int bond_init(struct net_device *bond_dev)
4880{
4881 struct bonding *bond = netdev_priv(bond_dev);
ec87fd3b 4882 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
181470fc
SH
4883
4884 pr_debug("Begin bond_init for %s\n", bond_dev->name);
4885
4886 bond->wq = create_singlethread_workqueue(bond_dev->name);
4887 if (!bond->wq)
4888 return -ENOMEM;
4889
4890 bond_set_lockdep_class(bond_dev);
4891
4892 netif_carrier_off(bond_dev);
4893
4894 bond_create_proc_entry(bond);
ec87fd3b 4895 list_add_tail(&bond->bond_list, &bn->dev_list);
181470fc 4896
6151b3d4 4897 bond_prepare_sysfs_group(bond);
181470fc
SH
4898 return 0;
4899}
4900
88ead977
EB
4901static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
4902{
4903 if (tb[IFLA_ADDRESS]) {
4904 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
4905 return -EINVAL;
4906 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
4907 return -EADDRNOTAVAIL;
4908 }
4909 return 0;
4910}
4911
4912static struct rtnl_link_ops bond_link_ops __read_mostly = {
4913 .kind = "bond",
6639104b 4914 .priv_size = sizeof(struct bonding),
88ead977
EB
4915 .setup = bond_setup,
4916 .validate = bond_validate,
4917};
4918
dfe60397 4919/* Create a new bond based on the specified name and bonding parameters.
e4b91c48 4920 * If name is NULL, obtain a suitable "bond%d" name for us.
dfe60397
MW
4921 * Caller must NOT hold rtnl_lock; we need to release it here before we
4922 * set up our sysfs entries.
4923 */
ec87fd3b 4924int bond_create(struct net *net, const char *name)
dfe60397
MW
4925{
4926 struct net_device *bond_dev;
4927 int res;
4928
4929 rtnl_lock();
027ea041 4930
e4b91c48 4931 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
181470fc 4932 bond_setup);
dfe60397 4933 if (!bond_dev) {
a4aee5c8 4934 pr_err("%s: eek! can't alloc netdev!\n", name);
dfe60397 4935 res = -ENOMEM;
30c15ba9 4936 goto out;
dfe60397
MW
4937 }
4938
ec87fd3b 4939 dev_net_set(bond_dev, net);
88ead977
EB
4940 bond_dev->rtnl_link_ops = &bond_link_ops;
4941
e4b91c48
JV
4942 if (!name) {
4943 res = dev_alloc_name(bond_dev, "bond%d");
4944 if (res < 0)
4945 goto out_netdev;
4946 }
4947
dfe60397 4948 res = register_netdevice(bond_dev);
8d6184e4
PM
4949 if (res < 0)
4950 goto out_netdev;
0daa2303 4951
30c15ba9 4952out:
7e083840 4953 rtnl_unlock();
30c15ba9 4954 return res;
dfe60397
MW
4955out_netdev:
4956 free_netdev(bond_dev);
30c15ba9 4957 goto out;
dfe60397
MW
4958}
4959
2c8c1e72 4960static int __net_init bond_net_init(struct net *net)
ec87fd3b 4961{
15449745 4962 struct bond_net *bn = net_generic(net, bond_net_id);
ec87fd3b
EB
4963
4964 bn->net = net;
4965 INIT_LIST_HEAD(&bn->dev_list);
4966
ec87fd3b 4967 bond_create_proc_dir(bn);
15449745
EB
4968
4969 return 0;
ec87fd3b
EB
4970}
4971
2c8c1e72 4972static void __net_exit bond_net_exit(struct net *net)
ec87fd3b 4973{
15449745 4974 struct bond_net *bn = net_generic(net, bond_net_id);
ec87fd3b
EB
4975
4976 bond_destroy_proc_dir(bn);
ec87fd3b
EB
4977}
4978
4979static struct pernet_operations bond_net_ops = {
4980 .init = bond_net_init,
4981 .exit = bond_net_exit,
15449745
EB
4982 .id = &bond_net_id,
4983 .size = sizeof(struct bond_net),
ec87fd3b
EB
4984};
4985
1da177e4
LT
4986static int __init bonding_init(void)
4987{
1da177e4
LT
4988 int i;
4989 int res;
4990
3d632c3f 4991 pr_info("%s", version);
1da177e4 4992
dfe60397 4993 res = bond_check_params(&bonding_defaults);
3d632c3f 4994 if (res)
dfe60397 4995 goto out;
1da177e4 4996
15449745 4997 res = register_pernet_subsys(&bond_net_ops);
ec87fd3b
EB
4998 if (res)
4999 goto out;
027ea041 5000
88ead977
EB
5001 res = rtnl_link_register(&bond_link_ops);
5002 if (res)
6639104b 5003 goto err_link;
88ead977 5004
1da177e4 5005 for (i = 0; i < max_bonds; i++) {
ec87fd3b 5006 res = bond_create(&init_net, NULL);
dfe60397
MW
5007 if (res)
5008 goto err;
1da177e4
LT
5009 }
5010
b76cdba9
MW
5011 res = bond_create_sysfs();
5012 if (res)
5013 goto err;
5014
1da177e4 5015 register_netdevice_notifier(&bond_netdev_notifier);
c3ade5ca 5016 register_inetaddr_notifier(&bond_inetaddr_notifier);
305d552a 5017 bond_register_ipv6_notifier();
dfe60397 5018out:
1da177e4 5019 return res;
88ead977
EB
5020err:
5021 rtnl_link_unregister(&bond_link_ops);
6639104b 5022err_link:
15449745 5023 unregister_pernet_subsys(&bond_net_ops);
88ead977 5024 goto out;
dfe60397 5025
1da177e4
LT
5026}
5027
5028static void __exit bonding_exit(void)
5029{
5030 unregister_netdevice_notifier(&bond_netdev_notifier);
c3ade5ca 5031 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
305d552a 5032 bond_unregister_ipv6_notifier();
1da177e4 5033
ae68c398
PE
5034 bond_destroy_sysfs();
5035
88ead977 5036 rtnl_link_unregister(&bond_link_ops);
15449745 5037 unregister_pernet_subsys(&bond_net_ops);
1da177e4
LT
5038}
5039
5040module_init(bonding_init);
5041module_exit(bonding_exit);
5042MODULE_LICENSE("GPL");
5043MODULE_VERSION(DRV_VERSION);
5044MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5045MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
88ead977 5046MODULE_ALIAS_RTNL_LINK("bond");