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