blob: a6e789172727f86dcfc33c20b142fb0e4b52a337 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/kernel.h>
35#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/types.h>
37#include <linux/fcntl.h>
38#include <linux/interrupt.h>
39#include <linux/ptrace.h>
40#include <linux/ioport.h>
41#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040042#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <linux/tcp.h>
45#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/slab.h>
47#include <linux/string.h>
48#include <linux/init.h>
49#include <linux/timer.h>
50#include <linux/socket.h>
51#include <linux/ctype.h>
52#include <linux/inet.h>
53#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000057#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/errno.h>
59#include <linux/netdevice.h>
60#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080061#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/etherdevice.h>
63#include <linux/skbuff.h>
64#include <net/sock.h>
65#include <linux/rtnetlink.h>
66#include <linux/proc_fs.h>
67#include <linux/seq_file.h>
68#include <linux/smp.h>
69#include <linux/if_ether.h>
70#include <net/arp.h>
71#include <linux/mii.h>
72#include <linux/ethtool.h>
73#include <linux/if_vlan.h>
74#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080075#include <linux/jiffies.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040076#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020077#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include "bonding.h"
79#include "bond_3ad.h"
80#include "bond_alb.h"
81
82/*---------------------------- Module parameters ----------------------------*/
83
84/* monitor all links that often (in milliseconds). <=0 disables monitoring */
85#define BOND_LINK_MON_INTERV 0
86#define BOND_LINK_ARP_INTERV 0
87
88static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Moni Shoua7893b242008-05-17 21:10:12 -070089static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080090static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000092static int updelay;
93static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000095static char *mode;
96static char *primary;
97static char *lacp_rate;
98static char *ad_select;
99static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
102static char *arp_validate;
103static char *fail_over_mac;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000104static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106module_param(max_bonds, int, 0);
107MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Moni Shoua7893b242008-05-17 21:10:12 -0700108module_param(num_grat_arp, int, 0644);
109MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800110module_param(num_unsol_na, int, 0644);
111MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112module_param(miimon, int, 0);
113MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
114module_param(updelay, int, 0);
115MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
116module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800117MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
118 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800120MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
121 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800123MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
124 "1 for active-backup, 2 for balance-xor, "
125 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
126 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127module_param(primary, charp, 0);
128MODULE_PARM_DESC(primary, "Primary network device to use");
129module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800130MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
131 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800132module_param(ad_select, charp, 0);
133MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400134module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800135MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
136 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137module_param(arp_interval, int, 0);
138MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
139module_param_array(arp_ip_target, charp, NULL, 0);
140MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700141module_param(arp_validate, charp, 0);
142MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700143module_param(fail_over_mac, charp, 0);
144MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146/*----------------------------- Global variables ----------------------------*/
147
Arjan van de Venf71e1302006-03-03 21:33:57 -0500148static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
150
Mitch Williams12479f92005-11-09 10:35:44 -0800151LIST_HEAD(bond_dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#ifdef CONFIG_PROC_FS
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000154static struct proc_dir_entry *bond_proc_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif
156
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000157static __be32 arp_target[BOND_MAX_ARP_TARGETS];
158static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000160static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
161static int lacp_fast;
Jay Vosburgh217df672005-09-26 16:11:50 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800164const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{ "slow", AD_LACP_SLOW},
166{ "fast", AD_LACP_FAST},
167{ NULL, -1},
168};
169
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800170const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{ "balance-rr", BOND_MODE_ROUNDROBIN},
172{ "active-backup", BOND_MODE_ACTIVEBACKUP},
173{ "balance-xor", BOND_MODE_XOR},
174{ "broadcast", BOND_MODE_BROADCAST},
175{ "802.3ad", BOND_MODE_8023AD},
176{ "balance-tlb", BOND_MODE_TLB},
177{ "balance-alb", BOND_MODE_ALB},
178{ NULL, -1},
179};
180
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800181const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400182{ "layer2", BOND_XMIT_POLICY_LAYER2},
183{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800184{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400185{ NULL, -1},
186};
187
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800188const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700189{ "none", BOND_ARP_VALIDATE_NONE},
190{ "active", BOND_ARP_VALIDATE_ACTIVE},
191{ "backup", BOND_ARP_VALIDATE_BACKUP},
192{ "all", BOND_ARP_VALIDATE_ALL},
193{ NULL, -1},
194};
195
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800196const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700197{ "none", BOND_FOM_NONE},
198{ "active", BOND_FOM_ACTIVE},
199{ "follow", BOND_FOM_FOLLOW},
200{ NULL, -1},
201};
202
Jay Vosburghfd989c82008-11-04 17:51:16 -0800203struct bond_parm_tbl ad_select_tbl[] = {
204{ "stable", BOND_AD_STABLE},
205{ "bandwidth", BOND_AD_BANDWIDTH},
206{ "count", BOND_AD_COUNT},
207{ NULL, -1},
208};
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/*-------------------------- Forward declarations ---------------------------*/
211
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400212static void bond_send_gratuitous_arp(struct bonding *bond);
Adrian Bunkc50b85d2007-10-24 18:23:17 +0200213static void bond_deinit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215/*---------------------------- General routines -----------------------------*/
216
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700217static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800219 static const char *names[] = {
220 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
221 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
222 [BOND_MODE_XOR] = "load balancing (xor)",
223 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000224 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800225 [BOND_MODE_TLB] = "transmit load balancing",
226 [BOND_MODE_ALB] = "adaptive load balancing",
227 };
228
229 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800231
232 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235/*---------------------------------- VLAN -----------------------------------*/
236
237/**
238 * bond_add_vlan - add a new vlan id on bond
239 * @bond: bond that got the notification
240 * @vlan_id: the vlan id to add
241 *
242 * Returns -ENOMEM if allocation failed.
243 */
244static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
245{
246 struct vlan_entry *vlan;
247
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800248 pr_debug("bond: %s, vlan id %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000249 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Brian Haley305d5522008-11-04 17:51:14 -0800251 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000252 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 INIT_LIST_HEAD(&vlan->vlan_list);
256 vlan->vlan_id = vlan_id;
257
258 write_lock_bh(&bond->lock);
259
260 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
261
262 write_unlock_bh(&bond->lock);
263
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800264 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 return 0;
267}
268
269/**
270 * bond_del_vlan - delete a vlan id from bond
271 * @bond: bond that got the notification
272 * @vlan_id: the vlan id to delete
273 *
274 * returns -ENODEV if @vlan_id was not found in @bond.
275 */
276static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
277{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700278 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 int res = -ENODEV;
280
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800281 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 write_lock_bh(&bond->lock);
284
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700285 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (vlan->vlan_id == vlan_id) {
287 list_del(&vlan->vlan_list);
288
Holger Eitzenberger58402052008-12-09 23:07:13 -0800289 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800292 pr_debug("removed VLAN ID %d from bond %s\n", vlan_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 bond->dev->name);
294
295 kfree(vlan);
296
297 if (list_empty(&bond->vlan_list) &&
298 (bond->slave_cnt == 0)) {
299 /* Last VLAN removed and no slaves, so
300 * restore block on adding VLANs. This will
301 * be removed once new slaves that are not
302 * VLAN challenged will be added.
303 */
304 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
305 }
306
307 res = 0;
308 goto out;
309 }
310 }
311
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800312 pr_debug("couldn't find VLAN ID %d in bond %s\n", vlan_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 bond->dev->name);
314
315out:
316 write_unlock_bh(&bond->lock);
317 return res;
318}
319
320/**
321 * bond_has_challenged_slaves
322 * @bond: the bond we're working on
323 *
324 * Searches the slave list. Returns 1 if a vlan challenged slave
325 * was found, 0 otherwise.
326 *
327 * Assumes bond->lock is held.
328 */
329static int bond_has_challenged_slaves(struct bonding *bond)
330{
331 struct slave *slave;
332 int i;
333
334 bond_for_each_slave(bond, slave, i) {
335 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800336 pr_debug("found VLAN challenged slave - %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 slave->dev->name);
338 return 1;
339 }
340 }
341
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800342 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344}
345
346/**
347 * bond_next_vlan - safely skip to the next item in the vlans list.
348 * @bond: the bond we're working on
349 * @curr: item we're advancing from
350 *
351 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
352 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000353 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 * Caller must hold bond->lock
355 */
356struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
357{
358 struct vlan_entry *next, *last;
359
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000360 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 if (!curr) {
364 next = list_entry(bond->vlan_list.next,
365 struct vlan_entry, vlan_list);
366 } else {
367 last = list_entry(bond->vlan_list.prev,
368 struct vlan_entry, vlan_list);
369 if (last == curr) {
370 next = list_entry(bond->vlan_list.next,
371 struct vlan_entry, vlan_list);
372 } else {
373 next = list_entry(curr->vlan_list.next,
374 struct vlan_entry, vlan_list);
375 }
376 }
377
378 return next;
379}
380
381/**
382 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000383 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * @bond: bond device that got this skb for tx.
385 * @skb: hw accel VLAN tagged skb to transmit
386 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * When the bond gets an skb to transmit that is
389 * already hardware accelerated VLAN tagged, and it
390 * needs to relay this skb to a slave that is not
391 * hw accel capable, the skb needs to be "unaccelerated",
392 * i.e. strip the hwaccel tag and re-insert it as part
393 * of the payload.
394 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000395int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
396 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700398 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 if (!list_empty(&bond->vlan_list) &&
401 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
402 vlan_get_tag(skb, &vlan_id) == 0) {
403 skb->dev = slave_dev;
404 skb = vlan_put_tag(skb, vlan_id);
405 if (!skb) {
406 /* vlan_put_tag() frees the skb in case of error,
407 * so return success here so the calling functions
408 * won't attempt to free is again.
409 */
410 return 0;
411 }
412 } else {
413 skb->dev = slave_dev;
414 }
415
416 skb->priority = 1;
417 dev_queue_xmit(skb);
418
419 return 0;
420}
421
422/*
423 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
424 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
425 * lock because:
426 * a. This operation is performed in IOCTL context,
427 * b. The operation is protected by the RTNL semaphore in the 8021q code,
428 * c. Holding a lock with BH disabled while directly calling a base driver
429 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000430 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * The design of synchronization/protection for this operation in the 8021q
432 * module is good for one or more VLAN devices over a single physical device
433 * and cannot be extended for a teaming solution like bonding, so there is a
434 * potential race condition here where a net device from the vlan group might
435 * be referenced (either by a base driver or the 8021q code) while it is being
436 * removed from the system. However, it turns out we're not making matters
437 * worse, and if it works for regular VLAN usage it will work here too.
438*/
439
440/**
441 * bond_vlan_rx_register - Propagates registration to slaves
442 * @bond_dev: bonding net device that got called
443 * @grp: vlan group being registered
444 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000445static void bond_vlan_rx_register(struct net_device *bond_dev,
446 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Wang Chen454d7c92008-11-12 23:37:49 -0800448 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct slave *slave;
450 int i;
451
452 bond->vlgrp = grp;
453
454 bond_for_each_slave(bond, slave, i) {
455 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800456 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800459 slave_ops->ndo_vlan_rx_register) {
460 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462 }
463}
464
465/**
466 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
467 * @bond_dev: bonding net device that got called
468 * @vid: vlan id being added
469 */
470static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
471{
Wang Chen454d7c92008-11-12 23:37:49 -0800472 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct slave *slave;
474 int i, res;
475
476 bond_for_each_slave(bond, slave, i) {
477 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800478 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800481 slave_ops->ndo_vlan_rx_add_vid) {
482 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 }
485
486 res = bond_add_vlan(bond, vid);
487 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000488 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800489 ": %s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 bond_dev->name, vid);
491 }
492}
493
494/**
495 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
496 * @bond_dev: bonding net device that got called
497 * @vid: vlan id being removed
498 */
499static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
500{
Wang Chen454d7c92008-11-12 23:37:49 -0800501 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct slave *slave;
503 struct net_device *vlan_dev;
504 int i, res;
505
506 bond_for_each_slave(bond, slave, i) {
507 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800508 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800511 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* Save and then restore vlan_dev in the grp array,
513 * since the slave's driver might clear it.
514 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800515 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800516 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800517 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 }
520
521 res = bond_del_vlan(bond, vid);
522 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000523 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800524 ": %s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 bond_dev->name, vid);
526 }
527}
528
529static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
530{
531 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800532 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 write_lock_bh(&bond->lock);
535
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800536 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800540 slave_ops->ndo_vlan_rx_register)
541 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800544 !(slave_ops->ndo_vlan_rx_add_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800547 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
548 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550out:
551 write_unlock_bh(&bond->lock);
552}
553
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000554static void bond_del_vlans_from_slave(struct bonding *bond,
555 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800557 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct vlan_entry *vlan;
559 struct net_device *vlan_dev;
560
561 write_lock_bh(&bond->lock);
562
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800563 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800567 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
571 /* Save and then restore vlan_dev in the grp array,
572 * since the slave's driver might clear it.
573 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800574 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800575 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800576 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579unreg:
580 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800581 slave_ops->ndo_vlan_rx_register)
582 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584out:
585 write_unlock_bh(&bond->lock);
586}
587
588/*------------------------------- Link status -------------------------------*/
589
590/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800591 * Set the carrier state for the master according to the state of its
592 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
593 * do special 802.3ad magic.
594 *
595 * Returns zero if carrier state does not change, nonzero if it does.
596 */
597static int bond_set_carrier(struct bonding *bond)
598{
599 struct slave *slave;
600 int i;
601
602 if (bond->slave_cnt == 0)
603 goto down;
604
605 if (bond->params.mode == BOND_MODE_8023AD)
606 return bond_3ad_set_carrier(bond);
607
608 bond_for_each_slave(bond, slave, i) {
609 if (slave->link == BOND_LINK_UP) {
610 if (!netif_carrier_ok(bond->dev)) {
611 netif_carrier_on(bond->dev);
612 return 1;
613 }
614 return 0;
615 }
616 }
617
618down:
619 if (netif_carrier_ok(bond->dev)) {
620 netif_carrier_off(bond->dev);
621 return 1;
622 }
623 return 0;
624}
625
626/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * Get link speed and duplex from the slave's base driver
628 * using ethtool. If for some reason the call fails or the
629 * values are invalid, fake speed and duplex to 100/Full
630 * and return error.
631 */
632static int bond_update_speed_duplex(struct slave *slave)
633{
634 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700636 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /* Fake speed and duplex */
639 slave->speed = SPEED_100;
640 slave->duplex = DUPLEX_FULL;
641
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700642 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700645 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
646 if (res < 0)
647 return -1;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 switch (etool.speed) {
650 case SPEED_10:
651 case SPEED_100:
652 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700653 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 break;
655 default:
656 return -1;
657 }
658
659 switch (etool.duplex) {
660 case DUPLEX_FULL:
661 case DUPLEX_HALF:
662 break;
663 default:
664 return -1;
665 }
666
667 slave->speed = etool.speed;
668 slave->duplex = etool.duplex;
669
670 return 0;
671}
672
673/*
674 * if <dev> supports MII link status reporting, check its link status.
675 *
676 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000677 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 *
679 * Return either BMSR_LSTATUS, meaning that the link is up (or we
680 * can't tell and just pretend it is), or 0, meaning that the link is
681 * down.
682 *
683 * If reporting is non-zero, instead of faking link up, return -1 if
684 * both ETHTOOL and MII ioctls fail (meaning the device does not
685 * support them). If use_carrier is set, return whatever it says.
686 * It'd be nice if there was a good way to tell if a driver supports
687 * netif_carrier, but there really isn't.
688 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000689static int bond_check_dev_link(struct bonding *bond,
690 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800692 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000693 static int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct ifreq ifr;
695 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800697 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Jiri Pirko29112f42009-04-24 01:58:23 +0000700 /* Try to get link status using Ethtool first. */
701 if (slave_dev->ethtool_ops) {
702 if (slave_dev->ethtool_ops->get_link) {
703 u32 link;
704
705 link = slave_dev->ethtool_ops->get_link(slave_dev);
706
707 return link ? BMSR_LSTATUS : 0;
708 }
709 }
710
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000711 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800712 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (ioctl) {
714 /* TODO: set pointer to correct ioctl on a per team member */
715 /* bases to make this more efficient. that is, once */
716 /* we determine the correct ioctl, we will always */
717 /* call it and not the others for that team */
718 /* member. */
719
720 /*
721 * We cannot assume that SIOCGMIIPHY will also read a
722 * register; not all network drivers (e.g., e100)
723 * support that.
724 */
725
726 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
727 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
728 mii = if_mii(&ifr);
729 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
730 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000731 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
732 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734 }
735
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700736 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700738 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * cannot report link status). If not reporting, pretend
740 * we're ok.
741 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000742 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/*----------------------------- Multicast list ------------------------------*/
746
747/*
748 * Returns 0 if dmi1 and dmi2 are the same, non-0 otherwise
749 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000750static inline int bond_is_dmi_same(const struct dev_mc_list *dmi1,
751 const struct dev_mc_list *dmi2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 return memcmp(dmi1->dmi_addr, dmi2->dmi_addr, dmi1->dmi_addrlen) == 0 &&
754 dmi1->dmi_addrlen == dmi2->dmi_addrlen;
755}
756
757/*
758 * returns dmi entry if found, NULL otherwise
759 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000760static struct dev_mc_list *bond_mc_list_find_dmi(struct dev_mc_list *dmi,
761 struct dev_mc_list *mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 struct dev_mc_list *idmi;
764
765 for (idmi = mc_list; idmi; idmi = idmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000766 if (bond_is_dmi_same(dmi, idmi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return idmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
770 return NULL;
771}
772
773/*
774 * Push the promiscuity flag down to appropriate slaves
775 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700776static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700778 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (USES_PRIMARY(bond->params.mode)) {
780 /* write lock already acquired */
781 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700782 err = dev_set_promiscuity(bond->curr_active_slave->dev,
783 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785 } else {
786 struct slave *slave;
787 int i;
788 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700789 err = dev_set_promiscuity(slave->dev, inc);
790 if (err)
791 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700794 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/*
798 * Push the allmulti flag down to all slaves
799 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700800static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700802 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (USES_PRIMARY(bond->params.mode)) {
804 /* write lock already acquired */
805 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700806 err = dev_set_allmulti(bond->curr_active_slave->dev,
807 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809 } else {
810 struct slave *slave;
811 int i;
812 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700813 err = dev_set_allmulti(slave->dev, inc);
814 if (err)
815 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700818 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821/*
822 * Add a Multicast address to slaves
823 * according to mode
824 */
825static void bond_mc_add(struct bonding *bond, void *addr, int alen)
826{
827 if (USES_PRIMARY(bond->params.mode)) {
828 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000829 if (bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 dev_mc_add(bond->curr_active_slave->dev, addr, alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 } else {
832 struct slave *slave;
833 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000834
835 bond_for_each_slave(bond, slave, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 dev_mc_add(slave->dev, addr, alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838}
839
840/*
841 * Remove a multicast address from slave
842 * according to mode
843 */
844static void bond_mc_delete(struct bonding *bond, void *addr, int alen)
845{
846 if (USES_PRIMARY(bond->params.mode)) {
847 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000848 if (bond->curr_active_slave)
849 dev_mc_delete(bond->curr_active_slave->dev, addr,
850 alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 } else {
852 struct slave *slave;
853 int i;
854 bond_for_each_slave(bond, slave, i) {
855 dev_mc_delete(slave->dev, addr, alen, 0);
856 }
857 }
858}
859
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800860
861/*
862 * Retrieve the list of registered multicast addresses for the bonding
863 * device and retransmit an IGMP JOIN request to the current active
864 * slave.
865 */
866static void bond_resend_igmp_join_requests(struct bonding *bond)
867{
868 struct in_device *in_dev;
869 struct ip_mc_list *im;
870
871 rcu_read_lock();
872 in_dev = __in_dev_get_rcu(bond->dev);
873 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000874 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800875 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800876 }
877
878 rcu_read_unlock();
879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/*
882 * Totally destroys the mc_list in bond
883 */
884static void bond_mc_list_destroy(struct bonding *bond)
885{
886 struct dev_mc_list *dmi;
887
888 dmi = bond->mc_list;
889 while (dmi) {
890 bond->mc_list = dmi->next;
891 kfree(dmi);
892 dmi = bond->mc_list;
893 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000894
895 bond->mc_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898/*
899 * Copy all the Multicast addresses from src to the bonding device dst
900 */
Randy Dunlapde54f392005-10-04 22:39:41 -0700901static int bond_mc_list_copy(struct dev_mc_list *mc_list, struct bonding *bond,
Al Virodd0fc662005-10-07 07:46:04 +0100902 gfp_t gfp_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct dev_mc_list *dmi, *new_dmi;
905
906 for (dmi = mc_list; dmi; dmi = dmi->next) {
Randy Dunlapde54f392005-10-04 22:39:41 -0700907 new_dmi = kmalloc(sizeof(struct dev_mc_list), gfp_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 if (!new_dmi) {
910 /* FIXME: Potential memory leak !!! */
911 return -ENOMEM;
912 }
913
914 new_dmi->next = bond->mc_list;
915 bond->mc_list = new_dmi;
916 new_dmi->dmi_addrlen = dmi->dmi_addrlen;
917 memcpy(new_dmi->dmi_addr, dmi->dmi_addr, dmi->dmi_addrlen);
918 new_dmi->dmi_users = dmi->dmi_users;
919 new_dmi->dmi_gusers = dmi->dmi_gusers;
920 }
921
922 return 0;
923}
924
925/*
926 * flush all members of flush->mc_list from device dev->mc_list
927 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000928static void bond_mc_list_flush(struct net_device *bond_dev,
929 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Wang Chen454d7c92008-11-12 23:37:49 -0800931 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 struct dev_mc_list *dmi;
933
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000934 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 dev_mc_delete(slave_dev, dmi->dmi_addr, dmi->dmi_addrlen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (bond->params.mode == BOND_MODE_8023AD) {
938 /* del lacpdu mc addr from mc list */
939 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
940
941 dev_mc_delete(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
942 }
943}
944
945/*--------------------------- Active slave change ---------------------------*/
946
947/*
948 * Update the mc list and multicast-related flags for the new and
949 * old active slaves (if any) according to the multicast mode, and
950 * promiscuous flags unconditionally.
951 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000952static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
953 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
955 struct dev_mc_list *dmi;
956
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000957 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /* nothing to do - mc list is already up-to-date on
959 * all slaves
960 */
961 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000964 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000967 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000970 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
971 dev_mc_delete(old_active->dev, dmi->dmi_addr,
972 dmi->dmi_addrlen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700976 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000977 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000980 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000983 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
984 dev_mc_add(new_active->dev, dmi->dmi_addr,
985 dmi->dmi_addrlen, 0);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800986 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988}
989
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700990/*
991 * bond_do_fail_over_mac
992 *
993 * Perform special MAC address swapping for fail_over_mac settings
994 *
995 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
996 */
997static void bond_do_fail_over_mac(struct bonding *bond,
998 struct slave *new_active,
999 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001000 __releases(&bond->curr_slave_lock)
1001 __releases(&bond->lock)
1002 __acquires(&bond->lock)
1003 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001004{
1005 u8 tmp_mac[ETH_ALEN];
1006 struct sockaddr saddr;
1007 int rv;
1008
1009 switch (bond->params.fail_over_mac) {
1010 case BOND_FOM_ACTIVE:
1011 if (new_active)
1012 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1013 new_active->dev->addr_len);
1014 break;
1015 case BOND_FOM_FOLLOW:
1016 /*
1017 * if new_active && old_active, swap them
1018 * if just old_active, do nothing (going to no active slave)
1019 * if just new_active, set new_active to bond's MAC
1020 */
1021 if (!new_active)
1022 return;
1023
1024 write_unlock_bh(&bond->curr_slave_lock);
1025 read_unlock(&bond->lock);
1026
1027 if (old_active) {
1028 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1029 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1030 ETH_ALEN);
1031 saddr.sa_family = new_active->dev->type;
1032 } else {
1033 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1034 saddr.sa_family = bond->dev->type;
1035 }
1036
1037 rv = dev_set_mac_address(new_active->dev, &saddr);
1038 if (rv) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001039 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001040 ": %s: Error %d setting MAC of slave %s\n",
1041 bond->dev->name, -rv, new_active->dev->name);
1042 goto out;
1043 }
1044
1045 if (!old_active)
1046 goto out;
1047
1048 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1049 saddr.sa_family = old_active->dev->type;
1050
1051 rv = dev_set_mac_address(old_active->dev, &saddr);
1052 if (rv)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001053 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001054 ": %s: Error %d setting MAC of slave %s\n",
1055 bond->dev->name, -rv, new_active->dev->name);
1056out:
1057 read_lock(&bond->lock);
1058 write_lock_bh(&bond->curr_slave_lock);
1059 break;
1060 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001061 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001062 ": %s: bond_do_fail_over_mac impossible: bad policy %d\n",
1063 bond->dev->name, bond->params.fail_over_mac);
1064 break;
1065 }
1066
1067}
1068
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070/**
1071 * find_best_interface - select the best available slave to be the active one
1072 * @bond: our bonding struct
1073 *
1074 * Warning: Caller must hold curr_slave_lock for writing.
1075 */
1076static struct slave *bond_find_best_slave(struct bonding *bond)
1077{
1078 struct slave *new_active, *old_active;
1079 struct slave *bestslave = NULL;
1080 int mintime = bond->params.updelay;
1081 int i;
1082
1083 new_active = old_active = bond->curr_active_slave;
1084
1085 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001086 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001088 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001092 /*
1093 * first try the primary link; if arping, a link must tx/rx
1094 * traffic before it can be considered the curr_active_slave.
1095 * also, we would skip slaves between the curr_active_slave
1096 * and primary_slave that may be up and able to arp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 */
1098 if ((bond->primary_slave) &&
1099 (!bond->params.arp_interval) &&
1100 (IS_UP(bond->primary_slave->dev))) {
1101 new_active = bond->primary_slave;
1102 }
1103
1104 /* remember where to stop iterating over the slaves */
1105 old_active = new_active;
1106
1107 bond_for_each_slave_from(bond, new_active, i, old_active) {
1108 if (IS_UP(new_active->dev)) {
1109 if (new_active->link == BOND_LINK_UP) {
1110 return new_active;
1111 } else if (new_active->link == BOND_LINK_BACK) {
1112 /* link up, but waiting for stabilization */
1113 if (new_active->delay < mintime) {
1114 mintime = new_active->delay;
1115 bestslave = new_active;
1116 }
1117 }
1118 }
1119 }
1120
1121 return bestslave;
1122}
1123
1124/**
1125 * change_active_interface - change the active slave into the specified one
1126 * @bond: our bonding struct
1127 * @new: the new slave to make the active one
1128 *
1129 * Set the new slave to the bond's settings and unset them on the old
1130 * curr_active_slave.
1131 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1132 *
1133 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1134 * because it is apparently the best available slave we have, even though its
1135 * updelay hasn't timed out yet.
1136 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001137 * If new_active is not NULL, caller must hold bond->lock for read and
1138 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001140void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
1142 struct slave *old_active = bond->curr_active_slave;
1143
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001144 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001148 new_active->jiffies = jiffies;
1149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (new_active->link == BOND_LINK_BACK) {
1151 if (USES_PRIMARY(bond->params.mode)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001152 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 ": %s: making interface %s the new "
1154 "active one %d ms earlier.\n",
1155 bond->dev->name, new_active->dev->name,
1156 (bond->params.updelay - new_active->delay) * bond->params.miimon);
1157 }
1158
1159 new_active->delay = 0;
1160 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001162 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Holger Eitzenberger58402052008-12-09 23:07:13 -08001165 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 } else {
1168 if (USES_PRIMARY(bond->params.mode)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001169 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 ": %s: making interface %s the new "
1171 "active one.\n",
1172 bond->dev->name, new_active->dev->name);
1173 }
1174 }
1175 }
1176
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001177 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Holger Eitzenberger58402052008-12-09 23:07:13 -08001180 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001182 if (old_active)
1183 bond_set_slave_inactive_flags(old_active);
1184 if (new_active)
1185 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 } else {
1187 bond->curr_active_slave = new_active;
1188 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001189
1190 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001191 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001192 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001193
1194 if (new_active) {
1195 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001196
Or Gerlitz709f8a42008-06-13 18:12:01 -07001197 if (bond->params.fail_over_mac)
1198 bond_do_fail_over_mac(bond, new_active,
1199 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001200
Or Gerlitz709f8a42008-06-13 18:12:01 -07001201 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001202 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001203
Brian Haley305d5522008-11-04 17:51:14 -08001204 bond->send_unsol_na = bond->params.num_unsol_na;
1205 bond_send_unsolicited_na(bond);
1206
Or Gerlitz01f31092008-06-13 18:12:02 -07001207 write_unlock_bh(&bond->curr_slave_lock);
1208 read_unlock(&bond->lock);
1209
1210 netdev_bonding_change(bond->dev);
1211
1212 read_lock(&bond->lock);
1213 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001214 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
1218/**
1219 * bond_select_active_slave - select a new active slave, if needed
1220 * @bond: our bonding struct
1221 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001222 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 * - The old curr_active_slave has been released or lost its link.
1224 * - The primary_slave has got its link back.
1225 * - A slave has got its link back and there's no old curr_active_slave.
1226 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001227 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001229void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
1231 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001232 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 best_slave = bond_find_best_slave(bond);
1235 if (best_slave != bond->curr_active_slave) {
1236 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001237 rv = bond_set_carrier(bond);
1238 if (!rv)
1239 return;
1240
1241 if (netif_carrier_ok(bond->dev)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001242 pr_info(DRV_NAME
Jay Vosburghff59c452006-03-27 13:27:43 -08001243 ": %s: first active interface up!\n",
1244 bond->dev->name);
1245 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001246 pr_info(DRV_NAME ": %s: "
Jay Vosburghff59c452006-03-27 13:27:43 -08001247 "now running without any active interface !\n",
1248 bond->dev->name);
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251}
1252
1253/*--------------------------- slave list handling ---------------------------*/
1254
1255/*
1256 * This function attaches the slave to the end of list.
1257 *
1258 * bond->lock held for writing by caller.
1259 */
1260static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1261{
1262 if (bond->first_slave == NULL) { /* attaching the first slave */
1263 new_slave->next = new_slave;
1264 new_slave->prev = new_slave;
1265 bond->first_slave = new_slave;
1266 } else {
1267 new_slave->next = bond->first_slave;
1268 new_slave->prev = bond->first_slave->prev;
1269 new_slave->next->prev = new_slave;
1270 new_slave->prev->next = new_slave;
1271 }
1272
1273 bond->slave_cnt++;
1274}
1275
1276/*
1277 * This function detaches the slave from the list.
1278 * WARNING: no check is made to verify if the slave effectively
1279 * belongs to <bond>.
1280 * Nothing is freed on return, structures are just unchained.
1281 * If any slave pointer in bond was pointing to <slave>,
1282 * it should be changed by the calling function.
1283 *
1284 * bond->lock held for writing by caller.
1285 */
1286static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1287{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001288 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001291 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 if (bond->first_slave == slave) { /* slave is the first slave */
1295 if (bond->slave_cnt > 1) { /* there are more slave */
1296 bond->first_slave = slave->next;
1297 } else {
1298 bond->first_slave = NULL; /* slave was the last one */
1299 }
1300 }
1301
1302 slave->next = NULL;
1303 slave->prev = NULL;
1304 bond->slave_cnt--;
1305}
1306
1307/*---------------------------------- IOCTL ----------------------------------*/
1308
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001309static int bond_sethwaddr(struct net_device *bond_dev,
1310 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001312 pr_debug("bond_dev=%p\n", bond_dev);
1313 pr_debug("slave_dev=%p\n", slave_dev);
1314 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1316 return 0;
1317}
1318
Herbert Xu7f353bf2007-08-10 15:47:58 -07001319#define BOND_VLAN_FEATURES \
1320 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1321 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001322
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001323/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001324 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001325 * feature bits are managed elsewhere, so preserve those feature bits
1326 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001327 */
1328static int bond_compute_features(struct bonding *bond)
1329{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001330 struct slave *slave;
1331 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001332 unsigned long features = bond_dev->features;
Moni Shoua3158bf72007-10-09 19:43:41 -07001333 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1334 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001335 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001336
Herbert Xu7f353bf2007-08-10 15:47:58 -07001337 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001338 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1339
1340 if (!bond->first_slave)
1341 goto done;
1342
1343 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001344
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001345 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001346 features = netdev_increment_features(features,
1347 slave->dev->features,
1348 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001349 if (slave->dev->hard_header_len > max_hard_header_len)
1350 max_hard_header_len = slave->dev->hard_header_len;
1351 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001352
Herbert Xub63365a2008-10-23 01:11:29 -07001353done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001354 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001355 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001356 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001357
1358 return 0;
1359}
1360
Moni Shoua872254d2007-10-09 19:43:38 -07001361static void bond_setup_by_slave(struct net_device *bond_dev,
1362 struct net_device *slave_dev)
1363{
Wang Chen454d7c92008-11-12 23:37:49 -08001364 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001365
Stephen Hemminger00829822008-11-20 20:14:53 -08001366 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001367
1368 bond_dev->type = slave_dev->type;
1369 bond_dev->hard_header_len = slave_dev->hard_header_len;
1370 bond_dev->addr_len = slave_dev->addr_len;
1371
1372 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1373 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001374 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001375}
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001378int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Wang Chen454d7c92008-11-12 23:37:49 -08001380 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001381 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 struct slave *new_slave = NULL;
1383 struct dev_mc_list *dmi;
1384 struct sockaddr addr;
1385 int link_reporting;
1386 int old_features = bond_dev->features;
1387 int res = 0;
1388
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001389 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001390 slave_ops->ndo_do_ioctl == NULL) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001391 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001392 ": %s: Warning: no link monitoring support for %s\n",
1393 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
1395
1396 /* bond must be initialized by bond_open() before enslaving */
1397 if (!(bond_dev->flags & IFF_UP)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001398 pr_warning(DRV_NAME
Moni Shoua6b1bf092007-10-09 19:43:40 -07001399 " %s: master_dev is not up in bond_enslave\n",
1400 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
1403 /* already enslaved */
1404 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001405 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return -EBUSY;
1407 }
1408
1409 /* vlan challenged mutual exclusion */
1410 /* no need to lock since we're protected by rtnl_lock */
1411 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001412 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!list_empty(&bond->vlan_list)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001414 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001415 ": %s: Error: cannot enslave VLAN "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 "challenged slave %s on VLAN enabled "
Mitch Williams4e0952c2005-11-09 10:34:57 -08001417 "bond %s\n", bond_dev->name, slave_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 bond_dev->name);
1419 return -EPERM;
1420 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001421 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001422 ": %s: Warning: enslaved VLAN challenged "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 "slave %s. Adding VLANs will be blocked as "
1424 "long as %s is part of bond %s\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001425 bond_dev->name, slave_dev->name, slave_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 bond_dev->name);
1427 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1428 }
1429 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001430 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (bond->slave_cnt == 0) {
1432 /* First slave, and it is not VLAN challenged,
1433 * so remove the block of adding VLANs over the bond.
1434 */
1435 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1436 }
1437 }
1438
Jay Vosburgh217df672005-09-26 16:11:50 -07001439 /*
1440 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001441 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001442 * the current ifenslave will set the interface down prior to
1443 * enslaving it; the old ifenslave will not.
1444 */
1445 if ((slave_dev->flags & IFF_UP)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001446 pr_err(DRV_NAME ": %s is up. "
Jay Vosburgh217df672005-09-26 16:11:50 -07001447 "This may be due to an out of date ifenslave.\n",
1448 slave_dev->name);
1449 res = -EPERM;
1450 goto err_undo_flags;
1451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Moni Shoua872254d2007-10-09 19:43:38 -07001453 /* set bonding device ether type by slave - bonding netdevices are
1454 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1455 * there is a need to override some of the type dependent attribs/funcs.
1456 *
1457 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1458 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1459 */
1460 if (bond->slave_cnt == 0) {
1461 if (slave_dev->type != ARPHRD_ETHER)
1462 bond_setup_by_slave(bond_dev, slave_dev);
1463 } else if (bond_dev->type != slave_dev->type) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001464 pr_err(DRV_NAME ": %s ether type (%d) is different "
Moni Shoua872254d2007-10-09 19:43:38 -07001465 "from other slaves (%d), can not enslave it.\n",
1466 slave_dev->name,
1467 slave_dev->type, bond_dev->type);
1468 res = -EINVAL;
1469 goto err_undo_flags;
1470 }
1471
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001472 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001473 if (bond->slave_cnt == 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001474 pr_warning(DRV_NAME
Jay Vosburghdd957c52007-10-09 19:57:24 -07001475 ": %s: Warning: The first slave device "
1476 "specified does not support setting the MAC "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001477 "address. Setting fail_over_mac to active.",
Jay Vosburghdd957c52007-10-09 19:57:24 -07001478 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001479 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1480 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001481 pr_err(DRV_NAME
Jay Vosburghdd957c52007-10-09 19:57:24 -07001482 ": %s: Error: The slave device specified "
1483 "does not support setting the MAC address, "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001484 "but fail_over_mac is not set to active.\n"
Moni Shoua2ab82852007-10-09 19:43:39 -07001485 , bond_dev->name);
1486 res = -EOPNOTSUPP;
1487 goto err_undo_flags;
1488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
Joe Jin243cb4e2007-02-06 14:16:40 -08001491 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (!new_slave) {
1493 res = -ENOMEM;
1494 goto err_undo_flags;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /* save slave's original flags before calling
1498 * netdev_set_master and dev_open
1499 */
1500 new_slave->original_flags = slave_dev->flags;
1501
Jay Vosburgh217df672005-09-26 16:11:50 -07001502 /*
1503 * Save slave's original ("permanent") mac address for modes
1504 * that need it, and for restoring it upon release, and then
1505 * set it to the master's address
1506 */
1507 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Jay Vosburghdd957c52007-10-09 19:57:24 -07001509 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001510 /*
1511 * Set slave to master's mac address. The application already
1512 * set the master's mac address to that of the first slave
1513 */
1514 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1515 addr.sa_family = slave_dev->type;
1516 res = dev_set_mac_address(slave_dev, &addr);
1517 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001518 pr_debug("Error %d calling set_mac_address\n", res);
Moni Shoua2ab82852007-10-09 19:43:39 -07001519 goto err_free;
1520 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001523 res = netdev_set_master(slave_dev, bond_dev);
1524 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001525 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001526 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001527 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001528 /* open the slave since the application closed it */
1529 res = dev_open(slave_dev);
1530 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001531 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001532 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001536 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Holger Eitzenberger58402052008-12-09 23:07:13 -08001538 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /* bond_alb_init_slave() must be called before all other stages since
1540 * it might fail and we do not want to have to undo everything
1541 */
1542 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001543 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001544 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546
1547 /* If the mode USES_PRIMARY, then the new slave gets the
1548 * master's promisc (and mc) settings only if it becomes the
1549 * curr_active_slave, and that is taken care of later when calling
1550 * bond_change_active()
1551 */
1552 if (!USES_PRIMARY(bond->params.mode)) {
1553 /* set promiscuity level to new slave */
1554 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001555 res = dev_set_promiscuity(slave_dev, 1);
1556 if (res)
1557 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559
1560 /* set allmulti level to new slave */
1561 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001562 res = dev_set_allmulti(slave_dev, 1);
1563 if (res)
1564 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566
David S. Millerb9e40852008-07-15 00:15:08 -07001567 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* upload master's mc_list to new slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001569 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
1570 dev_mc_add(slave_dev, dmi->dmi_addr,
1571 dmi->dmi_addrlen, 0);
David S. Millerb9e40852008-07-15 00:15:08 -07001572 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574
1575 if (bond->params.mode == BOND_MODE_8023AD) {
1576 /* add lacpdu mc addr to mc list */
1577 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1578
1579 dev_mc_add(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
1580 }
1581
1582 bond_add_vlans_on_slave(bond, slave_dev);
1583
1584 write_lock_bh(&bond->lock);
1585
1586 bond_attach_slave(bond, new_slave);
1587
1588 new_slave->delay = 0;
1589 new_slave->link_failure_count = 0;
1590
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001591 bond_compute_features(bond);
1592
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001593 write_unlock_bh(&bond->lock);
1594
1595 read_lock(&bond->lock);
1596
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001597 new_slave->last_arp_rx = jiffies;
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (bond->params.miimon && !bond->params.use_carrier) {
1600 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1601
1602 if ((link_reporting == -1) && !bond->params.arp_interval) {
1603 /*
1604 * miimon is set but a bonded network driver
1605 * does not support ETHTOOL/MII and
1606 * arp_interval is not set. Note: if
1607 * use_carrier is enabled, we will never go
1608 * here (because netif_carrier is always
1609 * supported); thus, we don't need to change
1610 * the messages for netif_carrier.
1611 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001612 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001613 ": %s: Warning: MII and ETHTOOL support not "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 "available for interface %s, and "
1615 "arp_interval/arp_ip_target module parameters "
1616 "not specified, thus bonding will not detect "
1617 "link failures! see bonding.txt for details.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001618 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 } else if (link_reporting == -1) {
1620 /* unable get link status using mii/ethtool */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001621 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001622 ": %s: Warning: can't get link status from "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 "interface %s; the network driver associated "
1624 "with this interface does not support MII or "
1625 "ETHTOOL link status reporting, thus miimon "
1626 "has no effect on this interface.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001627 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629 }
1630
1631 /* check for initial state */
1632 if (!bond->params.miimon ||
1633 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1634 if (bond->params.updelay) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001635 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 "BOND_LINK_BACK\n");
1637 new_slave->link = BOND_LINK_BACK;
1638 new_slave->delay = bond->params.updelay;
1639 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001640 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 "BOND_LINK_UP\n");
1642 new_slave->link = BOND_LINK_UP;
1643 }
1644 new_slave->jiffies = jiffies;
1645 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001646 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 "BOND_LINK_DOWN\n");
1648 new_slave->link = BOND_LINK_DOWN;
1649 }
1650
1651 if (bond_update_speed_duplex(new_slave) &&
1652 (new_slave->link != BOND_LINK_DOWN)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001653 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001654 ": %s: Warning: failed to get speed and duplex from %s, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 "assumed to be 100Mb/sec and Full.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001656 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 if (bond->params.mode == BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001659 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001660 ": %s: Warning: Operation of 802.3ad mode requires ETHTOOL "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 "support in base driver for proper aggregator "
Mitch Williams4e0952c2005-11-09 10:34:57 -08001662 "selection.\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664 }
1665
1666 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1667 /* if there is a primary slave, remember it */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001668 if (strcmp(bond->params.primary, new_slave->dev->name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 bond->primary_slave = new_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001672 write_lock_bh(&bond->curr_slave_lock);
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 switch (bond->params.mode) {
1675 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001676 bond_set_slave_inactive_flags(new_slave);
1677 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 break;
1679 case BOND_MODE_8023AD:
1680 /* in 802.3ad mode, the internal mechanism
1681 * will activate the slaves in the selected
1682 * aggregator
1683 */
1684 bond_set_slave_inactive_flags(new_slave);
1685 /* if this is the first slave */
1686 if (bond->slave_cnt == 1) {
1687 SLAVE_AD_INFO(new_slave).id = 1;
1688 /* Initialize AD with the number of times that the AD timer is called in 1 second
1689 * can be called only after the mac address of the bond is set
1690 */
1691 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1692 bond->params.lacp_fast);
1693 } else {
1694 SLAVE_AD_INFO(new_slave).id =
1695 SLAVE_AD_INFO(new_slave->prev).id + 1;
1696 }
1697
1698 bond_3ad_bind_slave(new_slave);
1699 break;
1700 case BOND_MODE_TLB:
1701 case BOND_MODE_ALB:
1702 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001703 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001704 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 break;
1706 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001707 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 /* always active in trunk mode */
1710 new_slave->state = BOND_STATE_ACTIVE;
1711
1712 /* In trunking mode there is little meaning to curr_active_slave
1713 * anyway (it holds no special properties of the bond device),
1714 * so we can change it without calling change_active_interface()
1715 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001716 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 break;
1720 } /* switch(bond_mode) */
1721
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001722 write_unlock_bh(&bond->curr_slave_lock);
1723
Jay Vosburghff59c452006-03-27 13:27:43 -08001724 bond_set_carrier(bond);
1725
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001726 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001728 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1729 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001730 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001731
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001732 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 ": %s: enslaving %s as a%s interface with a%s link.\n",
1734 bond_dev->name, slave_dev->name,
1735 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1736 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
1737
1738 /* enslave is successful */
1739 return 0;
1740
1741/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742err_close:
1743 dev_close(slave_dev);
1744
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001745err_unset_master:
1746 netdev_set_master(slave_dev, NULL);
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001749 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001750 /* XXX TODO - fom follow mode needs to change master's
1751 * MAC if this slave's MAC is in use by the bond, or at
1752 * least print a warning.
1753 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001754 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1755 addr.sa_family = slave_dev->type;
1756 dev_set_mac_address(slave_dev, &addr);
1757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759err_free:
1760 kfree(new_slave);
1761
1762err_undo_flags:
1763 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return res;
1766}
1767
1768/*
1769 * Try to release the slave device <slave> from the bond device <master>
1770 * It is legal to access curr_active_slave without a lock because all the function
1771 * is write-locked.
1772 *
1773 * The rules for slave state should be:
1774 * for Active/Backup:
1775 * Active stays on all backups go down
1776 * for Bonded connections:
1777 * The first up interface should be left on and all others downed.
1778 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001779int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Wang Chen454d7c92008-11-12 23:37:49 -08001781 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct slave *slave, *oldcurrent;
1783 struct sockaddr addr;
1784 int mac_addr_differ;
1785
1786 /* slave is not a slave or master is not master of this slave */
1787 if (!(slave_dev->flags & IFF_SLAVE) ||
1788 (slave_dev->master != bond_dev)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001789 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001790 ": %s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 bond_dev->name, slave_dev->name);
1792 return -EINVAL;
1793 }
1794
1795 write_lock_bh(&bond->lock);
1796
1797 slave = bond_get_slave_by_dev(bond, slave_dev);
1798 if (!slave) {
1799 /* not a slave of this bond */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001800 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 ": %s: %s not enslaved\n",
1802 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001803 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return -EINVAL;
1805 }
1806
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001807 if (!bond->params.fail_over_mac) {
1808 mac_addr_differ = memcmp(bond_dev->dev_addr, slave->perm_hwaddr,
1809 ETH_ALEN);
1810 if (!mac_addr_differ && (bond->slave_cnt > 1))
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001811 pr_warning(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001812 ": %s: Warning: the permanent HWaddr of %s - "
Johannes Berge1749612008-10-27 15:59:26 -07001813 "%pM - is still in use by %s. "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001814 "Set the HWaddr of %s to a different address "
1815 "to avoid conflicts.\n",
1816 bond_dev->name, slave_dev->name,
Johannes Berge1749612008-10-27 15:59:26 -07001817 slave->perm_hwaddr,
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001818 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820
1821 /* Inform AD package of unbinding of slave. */
1822 if (bond->params.mode == BOND_MODE_8023AD) {
1823 /* must be called before the slave is
1824 * detached from the list
1825 */
1826 bond_3ad_unbind_slave(slave);
1827 }
1828
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001829 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 ": %s: releasing %s interface %s\n",
1831 bond_dev->name,
1832 (slave->state == BOND_STATE_ACTIVE)
1833 ? "active" : "backup",
1834 slave_dev->name);
1835
1836 oldcurrent = bond->curr_active_slave;
1837
1838 bond->current_arp_slave = NULL;
1839
1840 /* release the slave from its bond */
1841 bond_detach_slave(bond, slave);
1842
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001843 bond_compute_features(bond);
1844
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001845 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001848 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Holger Eitzenberger58402052008-12-09 23:07:13 -08001851 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 /* Must be called only after the slave has been
1853 * detached from the list and the curr_active_slave
1854 * has been cleared (if our_slave == old_current),
1855 * but before a new active slave is selected.
1856 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001857 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001859 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
1861
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001862 if (oldcurrent == slave) {
1863 /*
1864 * Note that we hold RTNL over this sequence, so there
1865 * is no concern that another slave add/remove event
1866 * will interfere.
1867 */
1868 write_unlock_bh(&bond->lock);
1869 read_lock(&bond->lock);
1870 write_lock_bh(&bond->curr_slave_lock);
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 bond_select_active_slave(bond);
1873
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001874 write_unlock_bh(&bond->curr_slave_lock);
1875 read_unlock(&bond->lock);
1876 write_lock_bh(&bond->lock);
1877 }
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001880 bond_set_carrier(bond);
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 /* if the last slave was removed, zero the mac address
1883 * of the master so it will be set by the application
1884 * to the mac address of the first slave
1885 */
1886 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1887
1888 if (list_empty(&bond->vlan_list)) {
1889 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1890 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001891 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001892 ": %s: Warning: clearing HW address of %s while it "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 "still has VLANs.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001894 bond_dev->name, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001895 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001896 ": %s: When re-adding slaves, make sure the bond's "
1897 "HW address matches its VLANs'.\n",
1898 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1901 !bond_has_challenged_slaves(bond)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001902 pr_info(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001903 ": %s: last VLAN challenged slave %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 "left bond %s. VLAN blocking is removed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001905 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1907 }
1908
1909 write_unlock_bh(&bond->lock);
1910
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001911 /* must do this from outside any spinlocks */
1912 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 bond_del_vlans_from_slave(bond, slave_dev);
1915
1916 /* If the mode USES_PRIMARY, then we should only remove its
1917 * promisc and mc settings if it was the curr_active_slave, but that was
1918 * already taken care of above when we detached the slave
1919 */
1920 if (!USES_PRIMARY(bond->params.mode)) {
1921 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001922 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001926 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001930 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001932 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934
1935 netdev_set_master(slave_dev, NULL);
1936
1937 /* close slave before restoring its mac address */
1938 dev_close(slave_dev);
1939
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001940 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001941 /* restore original ("permanent") mac address */
1942 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1943 addr.sa_family = slave_dev->type;
1944 dev_set_mac_address(slave_dev, &addr);
1945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001947 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001948 IFF_SLAVE_INACTIVE | IFF_BONDING |
1949 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 kfree(slave);
1952
1953 return 0; /* deletion OK */
1954}
1955
1956/*
Moni Shouad90a1622007-10-09 19:43:43 -07001957* Destroy a bonding device.
1958* Must be under rtnl_lock when this function is called.
1959*/
Stephen Hemminger9e716262009-06-12 19:02:47 +00001960static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07001961{
Wang Chen244ef9b2008-12-03 21:14:04 -08001962 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07001963
Stephen Hemminger9e716262009-06-12 19:02:47 +00001964 bond_deinit(bond_dev);
1965 bond_destroy_sysfs_entry(bond);
1966
Jay Vosburgha434e432008-10-30 17:41:15 -07001967 if (bond->wq)
1968 destroy_workqueue(bond->wq);
1969
1970 netif_addr_lock_bh(bond_dev);
1971 bond_mc_list_destroy(bond);
1972 netif_addr_unlock_bh(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07001973}
1974
Moni Shouad90a1622007-10-09 19:43:43 -07001975/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001976* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07001977* Must be under rtnl_lock when this function is called.
1978*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001979int bond_release_and_destroy(struct net_device *bond_dev,
1980 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07001981{
Wang Chen454d7c92008-11-12 23:37:49 -08001982 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001983 int ret;
1984
1985 ret = bond_release(bond_dev, slave_dev);
1986 if ((ret == 0) && (bond->slave_cnt == 0)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001987 pr_info(DRV_NAME ": %s: destroying bond %s.\n",
Moni Shouad90a1622007-10-09 19:43:43 -07001988 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00001989 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001990 }
1991 return ret;
1992}
1993
1994/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 * This function releases all slaves.
1996 */
1997static int bond_release_all(struct net_device *bond_dev)
1998{
Wang Chen454d7c92008-11-12 23:37:49 -08001999 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 struct slave *slave;
2001 struct net_device *slave_dev;
2002 struct sockaddr addr;
2003
2004 write_lock_bh(&bond->lock);
2005
Jay Vosburghff59c452006-03-27 13:27:43 -08002006 netif_carrier_off(bond_dev);
2007
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002008 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 bond->current_arp_slave = NULL;
2012 bond->primary_slave = NULL;
2013 bond_change_active_slave(bond, NULL);
2014
2015 while ((slave = bond->first_slave) != NULL) {
2016 /* Inform AD package of unbinding of slave
2017 * before slave is detached from the list.
2018 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002019 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 slave_dev = slave->dev;
2023 bond_detach_slave(bond, slave);
2024
Jay Vosburgh25433312008-01-17 16:24:59 -08002025 /* now that the slave is detached, unlock and perform
2026 * all the undo steps that should not be called from
2027 * within a lock.
2028 */
2029 write_unlock_bh(&bond->lock);
2030
Holger Eitzenberger58402052008-12-09 23:07:13 -08002031 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /* must be called only after the slave
2033 * has been detached from the list
2034 */
2035 bond_alb_deinit_slave(bond, slave);
2036 }
2037
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002038 bond_compute_features(bond);
2039
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002040 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 bond_del_vlans_from_slave(bond, slave_dev);
2042
2043 /* If the mode USES_PRIMARY, then we should only remove its
2044 * promisc and mc settings if it was the curr_active_slave, but that was
2045 * already taken care of above when we detached the slave
2046 */
2047 if (!USES_PRIMARY(bond->params.mode)) {
2048 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002049 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002053 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002057 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002059 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061
2062 netdev_set_master(slave_dev, NULL);
2063
2064 /* close slave before restoring its mac address */
2065 dev_close(slave_dev);
2066
Jay Vosburghdd957c52007-10-09 19:57:24 -07002067 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002068 /* restore original ("permanent") mac address*/
2069 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2070 addr.sa_family = slave_dev->type;
2071 dev_set_mac_address(slave_dev, &addr);
2072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002074 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2075 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 kfree(slave);
2078
2079 /* re-acquire the lock before getting the next slave */
2080 write_lock_bh(&bond->lock);
2081 }
2082
2083 /* zero the mac address of the master so it will be
2084 * set by the application to the mac address of the
2085 * first slave
2086 */
2087 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2088
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002089 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002091 else {
2092 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08002093 ": %s: Warning: clearing HW address of %s while it "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 "still has VLANs.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08002095 bond_dev->name, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002096 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08002097 ": %s: When re-adding slaves, make sure the bond's "
2098 "HW address matches its VLANs'.\n",
2099 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 }
2101
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002102 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 ": %s: released all slaves\n",
2104 bond_dev->name);
2105
2106out:
2107 write_unlock_bh(&bond->lock);
2108
2109 return 0;
2110}
2111
2112/*
2113 * This function changes the active slave to slave <slave_dev>.
2114 * It returns -EINVAL in the following cases.
2115 * - <slave_dev> is not found in the list.
2116 * - There is not active slave now.
2117 * - <slave_dev> is already active.
2118 * - The link state of <slave_dev> is not BOND_LINK_UP.
2119 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002120 * In these cases, this function does nothing.
2121 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 */
2123static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2124{
Wang Chen454d7c92008-11-12 23:37:49 -08002125 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 struct slave *old_active = NULL;
2127 struct slave *new_active = NULL;
2128 int res = 0;
2129
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002130 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002134 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002137 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002139 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002141 read_unlock(&bond->curr_slave_lock);
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 new_active = bond_get_slave_by_dev(bond, slave_dev);
2144
2145 /*
2146 * Changing to the current active: do nothing; return success.
2147 */
2148 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002149 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return 0;
2151 }
2152
2153 if ((new_active) &&
2154 (old_active) &&
2155 (new_active->link == BOND_LINK_UP) &&
2156 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002157 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002159 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002160 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002163 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 return res;
2166}
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2169{
Wang Chen454d7c92008-11-12 23:37:49 -08002170 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172 info->bond_mode = bond->params.mode;
2173 info->miimon = bond->params.miimon;
2174
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002175 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002177 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 return 0;
2180}
2181
2182static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2183{
Wang Chen454d7c92008-11-12 23:37:49 -08002184 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002186 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002188 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 bond_for_each_slave(bond, slave, i) {
2191 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002192 res = 0;
2193 strcpy(info->slave_name, slave->dev->name);
2194 info->link = slave->link;
2195 info->state = slave->state;
2196 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 break;
2198 }
2199 }
2200
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002201 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Eric Dumazet689c96c2009-04-23 03:39:04 +00002203 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
2206/*-------------------------------- Monitoring -------------------------------*/
2207
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002208
2209static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002211 struct slave *slave;
2212 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002213 bool ignore_updelay;
2214
2215 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002218 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002220 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002223 case BOND_LINK_UP:
2224 if (link_state)
2225 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002227 slave->link = BOND_LINK_FAIL;
2228 slave->delay = bond->params.downdelay;
2229 if (slave->delay) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002230 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002231 ": %s: link status down for %s"
2232 "interface %s, disabling it in %d ms.\n",
2233 bond->dev->name,
2234 (bond->params.mode ==
2235 BOND_MODE_ACTIVEBACKUP) ?
2236 ((slave->state == BOND_STATE_ACTIVE) ?
2237 "active " : "backup ") : "",
2238 slave->dev->name,
2239 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002241 /*FALLTHRU*/
2242 case BOND_LINK_FAIL:
2243 if (link_state) {
2244 /*
2245 * recovered before downdelay expired
2246 */
2247 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 slave->jiffies = jiffies;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002249 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 ": %s: link status up again after %d "
2251 "ms for interface %s.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002252 bond->dev->name,
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002253 (bond->params.downdelay - slave->delay) *
2254 bond->params.miimon,
2255 slave->dev->name);
2256 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002258
2259 if (slave->delay <= 0) {
2260 slave->new_link = BOND_LINK_DOWN;
2261 commit++;
2262 continue;
2263 }
2264
2265 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002268 case BOND_LINK_DOWN:
2269 if (!link_state)
2270 continue;
2271
2272 slave->link = BOND_LINK_BACK;
2273 slave->delay = bond->params.updelay;
2274
2275 if (slave->delay) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002276 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002277 ": %s: link status up for "
2278 "interface %s, enabling it in %d ms.\n",
2279 bond->dev->name, slave->dev->name,
Jiri Pirko41f89102009-04-24 03:57:29 +00002280 ignore_updelay ? 0 :
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002281 bond->params.updelay *
2282 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002284 /*FALLTHRU*/
2285 case BOND_LINK_BACK:
2286 if (!link_state) {
2287 slave->link = BOND_LINK_DOWN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002288 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 ": %s: link status down again after %d "
2290 "ms for interface %s.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002291 bond->dev->name,
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002292 (bond->params.updelay - slave->delay) *
2293 bond->params.miimon,
2294 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002295
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002296 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002298
Jiri Pirko41f89102009-04-24 03:57:29 +00002299 if (ignore_updelay)
2300 slave->delay = 0;
2301
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002302 if (slave->delay <= 0) {
2303 slave->new_link = BOND_LINK_UP;
2304 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002305 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002306 continue;
2307 }
2308
2309 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002311 }
2312 }
2313
2314 return commit;
2315}
2316
2317static void bond_miimon_commit(struct bonding *bond)
2318{
2319 struct slave *slave;
2320 int i;
2321
2322 bond_for_each_slave(bond, slave, i) {
2323 switch (slave->new_link) {
2324 case BOND_LINK_NOCHANGE:
2325 continue;
2326
2327 case BOND_LINK_UP:
2328 slave->link = BOND_LINK_UP;
2329 slave->jiffies = jiffies;
2330
2331 if (bond->params.mode == BOND_MODE_8023AD) {
2332 /* prevent it from being the active one */
2333 slave->state = BOND_STATE_BACKUP;
2334 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2335 /* make it immediately active */
2336 slave->state = BOND_STATE_ACTIVE;
2337 } else if (slave != bond->primary_slave) {
2338 /* prevent it from being the active one */
2339 slave->state = BOND_STATE_BACKUP;
2340 }
2341
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002342 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002343 ": %s: link status definitely "
2344 "up for interface %s.\n",
2345 bond->dev->name, slave->dev->name);
2346
2347 /* notify ad that the link status has changed */
2348 if (bond->params.mode == BOND_MODE_8023AD)
2349 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2350
Holger Eitzenberger58402052008-12-09 23:07:13 -08002351 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002352 bond_alb_handle_link_change(bond, slave,
2353 BOND_LINK_UP);
2354
2355 if (!bond->curr_active_slave ||
2356 (slave == bond->primary_slave))
2357 goto do_failover;
2358
2359 continue;
2360
2361 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002362 if (slave->link_failure_count < UINT_MAX)
2363 slave->link_failure_count++;
2364
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002365 slave->link = BOND_LINK_DOWN;
2366
2367 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2368 bond->params.mode == BOND_MODE_8023AD)
2369 bond_set_slave_inactive_flags(slave);
2370
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002371 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002372 ": %s: link status definitely down for "
2373 "interface %s, disabling it\n",
2374 bond->dev->name, slave->dev->name);
2375
2376 if (bond->params.mode == BOND_MODE_8023AD)
2377 bond_3ad_handle_link_change(slave,
2378 BOND_LINK_DOWN);
2379
Jiri Pirkoae63e802009-05-27 05:42:36 +00002380 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002381 bond_alb_handle_link_change(bond, slave,
2382 BOND_LINK_DOWN);
2383
2384 if (slave == bond->curr_active_slave)
2385 goto do_failover;
2386
2387 continue;
2388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002390 pr_err(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002391 ": %s: invalid new link %d on slave %s\n",
2392 bond->dev->name, slave->new_link,
2393 slave->dev->name);
2394 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002396 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 }
2398
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002399do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002400 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002401 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002403 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002404 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002405
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002406 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
2408
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002409/*
2410 * bond_mii_monitor
2411 *
2412 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002413 * 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.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002416 */
2417void bond_mii_monitor(struct work_struct *work)
2418{
2419 struct bonding *bond = container_of(work, struct bonding,
2420 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002421
2422 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002423 if (bond->kill_timers)
2424 goto out;
2425
2426 if (bond->slave_cnt == 0)
2427 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002428
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
Brian Haley305d5522008-11-04 17:51:14 -08002435 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
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002441 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002442 read_unlock(&bond->lock);
2443 rtnl_lock();
2444 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002445
2446 bond_miimon_commit(bond);
2447
Jay Vosburgh56556622008-01-17 16:25:03 -08002448 read_unlock(&bond->lock);
2449 rtnl_unlock(); /* might sleep, hold no other locks */
2450 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002451 }
2452
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002453re_arm:
2454 if (bond->params.miimon)
2455 queue_delayed_work(bond->wq, &bond->mii_work,
2456 msecs_to_jiffies(bond->params.miimon));
2457out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002458 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002459}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002460
Al Virod3bb52b2007-08-22 20:06:58 -04002461static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002462{
2463 struct in_device *idev;
2464 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002465 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002466
2467 if (!dev)
2468 return 0;
2469
2470 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002471 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002472 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
Al Virod3bb52b2007-08-22 20:06:58 -04002485static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002486{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002487 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002488
2489 if (ip == bond->master_ip)
2490 return 1;
2491
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002492 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002493 if (ip == vlan->vlan_ip)
2494 return 1;
2495 }
2496
2497 return 0;
2498}
2499
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002500/*
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 */
Al Virod3bb52b2007-08-22 20:06:58 -04002505static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ip, __be32 src_ip, unsigned short vlan_id)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002506{
2507 struct sk_buff *skb;
2508
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002509 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002510 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002511
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002512 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) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002516 pr_err(DRV_NAME ": ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002517 return;
2518 }
2519 if (vlan_id) {
2520 skb = vlan_put_tag(skb, vlan_id);
2521 if (!skb) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002522 pr_err(DRV_NAME ": failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002523 return;
2524 }
2525 }
2526 arp_xmit(skb);
2527}
2528
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2531{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002532 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002533 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002534 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002535 struct net_device *vlan_dev;
2536 struct flowi fl;
2537 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Mitch Williams6b780562005-11-09 10:36:19 -08002539 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2540 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002541 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002542 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002543 if (list_empty(&bond->vlan_list)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002544 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002545 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
Denis V. Lunevf2063512008-01-22 22:07:34 -08002559 rv = ip_route_output_key(&init_net, &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002560 if (rv) {
2561 if (net_ratelimit()) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002562 pr_warning(DRV_NAME
Harvey Harrison63779432008-10-31 00:56:00 -07002563 ": %s: no route to arp_ip_target %pI4\n",
2564 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002565 }
2566 continue;
2567 }
2568
2569 /*
2570 * This target is not on a VLAN
2571 */
2572 if (rt->u.dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002573 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002574 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002575 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2576 bond->master_ip, 0);
2577 continue;
2578 }
2579
2580 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002581 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002582 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002583 if (vlan_dev == rt->u.dst.dev) {
2584 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002585 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002586 vlan_dev->name, vlan_id);
2587 break;
2588 }
2589 }
2590
2591 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002592 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002593 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2594 vlan->vlan_ip, vlan_id);
2595 continue;
2596 }
2597
2598 if (net_ratelimit()) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002599 pr_warning(DRV_NAME
Harvey Harrison63779432008-10-31 00:56:00 -07002600 ": %s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2601 bond->dev->name, &fl.fl4_dst,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002602 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
2603 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002604 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002605 }
2606}
2607
2608/*
2609 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2610 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002611 *
2612 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002613 */
2614static void bond_send_gratuitous_arp(struct bonding *bond)
2615{
2616 struct slave *slave = bond->curr_active_slave;
2617 struct vlan_entry *vlan;
2618 struct net_device *vlan_dev;
2619
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002620 pr_debug("bond_send_grat_arp: bond %s slave %s\n", bond->dev->name,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002621 slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002622
2623 if (!slave || !bond->send_grat_arp ||
2624 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002625 return;
2626
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002627 bond->send_grat_arp--;
2628
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002629 if (bond->master_ip) {
2630 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002631 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002632 }
2633
2634 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002635 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002636 if (vlan->vlan_ip) {
2637 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2638 vlan->vlan_ip, vlan->vlan_id);
2639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 }
2641}
2642
Al Virod3bb52b2007-08-22 20:06:58 -04002643static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002644{
2645 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002646 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002647
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002648 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002649 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Harvey Harrison63779432008-10-31 00:56:00 -07002650 &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002651 if (sip == targets[i]) {
2652 if (bond_has_this_ip(bond, tip))
2653 slave->last_arp_rx = jiffies;
2654 return;
2655 }
2656 }
2657}
2658
2659static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2660{
2661 struct arphdr *arp;
2662 struct slave *slave;
2663 struct bonding *bond;
2664 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002665 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002666
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002667 if (dev_net(dev) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -07002668 goto out;
2669
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002670 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2671 goto out;
2672
Wang Chen454d7c92008-11-12 23:37:49 -08002673 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002674 read_lock(&bond->lock);
2675
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002676 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002677 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2678 orig_dev ? orig_dev->name : "NULL");
2679
2680 slave = bond_get_slave_by_dev(bond, orig_dev);
2681 if (!slave || !slave_do_arp_validate(bond, slave))
2682 goto out_unlock;
2683
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002684 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002685 goto out_unlock;
2686
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002687 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002688 if (arp->ar_hln != dev->addr_len ||
2689 skb->pkt_type == PACKET_OTHERHOST ||
2690 skb->pkt_type == PACKET_LOOPBACK ||
2691 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2692 arp->ar_pro != htons(ETH_P_IP) ||
2693 arp->ar_pln != 4)
2694 goto out_unlock;
2695
2696 arp_ptr = (unsigned char *)(arp + 1);
2697 arp_ptr += dev->addr_len;
2698 memcpy(&sip, arp_ptr, 4);
2699 arp_ptr += 4 + dev->addr_len;
2700 memcpy(&tip, arp_ptr, 4);
2701
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002702 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Harvey Harrison63779432008-10-31 00:56:00 -07002703 bond->dev->name, slave->dev->name, slave->state,
2704 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2705 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002706
2707 /*
2708 * Backup slaves won't see the ARP reply, but do come through
2709 * here for each ARP probe (so we swap the sip/tip to validate
2710 * the probe). In a "redundant switch, common router" type of
2711 * configuration, the ARP probe will (hopefully) travel from
2712 * the active, through one switch, the router, then the other
2713 * switch before reaching the backup.
2714 */
2715 if (slave->state == BOND_STATE_ACTIVE)
2716 bond_validate_arp(bond, slave, sip, tip);
2717 else
2718 bond_validate_arp(bond, slave, tip, sip);
2719
2720out_unlock:
2721 read_unlock(&bond->lock);
2722out:
2723 dev_kfree_skb(skb);
2724 return NET_RX_SUCCESS;
2725}
2726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727/*
2728 * this function is called regularly to monitor each slave's link
2729 * ensuring that traffic is being sent and received when arp monitoring
2730 * is used in load-balancing mode. if the adapter has been dormant, then an
2731 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2732 * arp monitoring in active backup mode.
2733 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002734void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002736 struct bonding *bond = container_of(work, struct bonding,
2737 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 struct slave *slave, *oldcurrent;
2739 int do_failover = 0;
2740 int delta_in_ticks;
2741 int i;
2742
2743 read_lock(&bond->lock);
2744
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002745 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002747 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002750 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 read_lock(&bond->curr_slave_lock);
2754 oldcurrent = bond->curr_active_slave;
2755 read_unlock(&bond->curr_slave_lock);
2756
2757 /* see if any of the previous devices are up now (i.e. they have
2758 * xmt and rcv traffic). the curr_active_slave does not come into
2759 * the picture unless it is null. also, slave->jiffies is not needed
2760 * here because we send an arp on each slave and give a slave as
2761 * long as it needs to get the tx/rx within the delta.
2762 * TODO: what about up/down delay in arp mode? it wasn't here before
2763 * so it can wait
2764 */
2765 bond_for_each_slave(bond, slave, i) {
2766 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002767 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002768 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
2770 slave->link = BOND_LINK_UP;
2771 slave->state = BOND_STATE_ACTIVE;
2772
2773 /* primary_slave has no meaning in round-robin
2774 * mode. the window of a slave being up and
2775 * curr_active_slave being null after enslaving
2776 * is closed.
2777 */
2778 if (!oldcurrent) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002779 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 ": %s: link status definitely "
2781 "up for interface %s, ",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002782 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 slave->dev->name);
2784 do_failover = 1;
2785 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002786 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 ": %s: interface %s is now up\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002788 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 slave->dev->name);
2790 }
2791 }
2792 } else {
2793 /* slave->link == BOND_LINK_UP */
2794
2795 /* not all switches will respond to an arp request
2796 * when the source ip is 0, so don't take the link down
2797 * if we don't know our ip yet
2798 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002799 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002800 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 slave->link = BOND_LINK_DOWN;
2803 slave->state = BOND_STATE_BACKUP;
2804
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002805 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002808 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 ": %s: interface %s is now down.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002810 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 slave->dev->name);
2812
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002813 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
2816 }
2817
2818 /* note: if switch is in round-robin mode, all links
2819 * must tx arp to ensure all links rx an arp - otherwise
2820 * links may oscillate or not come up at all; if switch is
2821 * in something like xor mode, there is nothing we can
2822 * do - all replies will be rx'ed on same link causing slaves
2823 * to be unstable during low/no traffic periods
2824 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002825 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 }
2828
2829 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002830 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
2832 bond_select_active_slave(bond);
2833
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002834 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 }
2836
2837re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002838 if (bond->params.arp_interval)
2839 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840out:
2841 read_unlock(&bond->lock);
2842}
2843
2844/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002845 * Called to inspect slaves for active-backup mode ARP monitor link state
2846 * changes. Sets new_link in slaves to specify what action should take
2847 * place for the slave. Returns 0 if no changes are found, >0 if changes
2848 * to link states must be committed.
2849 *
2850 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002852static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002855 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002858 slave->new_link = BOND_LINK_NOCHANGE;
2859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002861 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2862 delta_in_ticks)) {
2863 slave->new_link = BOND_LINK_UP;
2864 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002867 continue;
2868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002870 /*
2871 * Give slaves 2*delta after being enslaved or made
2872 * active. This avoids bouncing, as the last receive
2873 * times need a full ARP monitor cycle to be updated.
2874 */
2875 if (!time_after_eq(jiffies, slave->jiffies +
2876 2 * delta_in_ticks))
2877 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002879 /*
2880 * Backup slave is down if:
2881 * - No current_arp_slave AND
2882 * - more than 3*delta since last receive AND
2883 * - the bond has an IP address
2884 *
2885 * Note: a non-null current_arp_slave indicates
2886 * the curr_active_slave went down and we are
2887 * searching for a new one; under this condition
2888 * we only take the curr_active_slave down - this
2889 * gives each slave a chance to tx/rx traffic
2890 * before being taken out
2891 */
2892 if (slave->state == BOND_STATE_BACKUP &&
2893 !bond->current_arp_slave &&
2894 time_after(jiffies, slave_last_rx(bond, slave) +
2895 3 * delta_in_ticks)) {
2896 slave->new_link = BOND_LINK_DOWN;
2897 commit++;
2898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002900 /*
2901 * Active slave is down if:
2902 * - more than 2*delta since transmitting OR
2903 * - (more than 2*delta since receive AND
2904 * the bond has an IP address)
2905 */
2906 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002907 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002908 2 * delta_in_ticks) ||
2909 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2910 + 2 * delta_in_ticks)))) {
2911 slave->new_link = BOND_LINK_DOWN;
2912 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 }
2914 }
2915
2916 read_lock(&bond->curr_slave_lock);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002917
2918 /*
2919 * Trigger a commit if the primary option setting has changed.
2920 */
2921 if (bond->primary_slave &&
2922 (bond->primary_slave != bond->curr_active_slave) &&
2923 (bond->primary_slave->link == BOND_LINK_UP))
2924 commit++;
2925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 read_unlock(&bond->curr_slave_lock);
2927
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002928 return commit;
2929}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002931/*
2932 * Called to commit link state changes noted by inspection step of
2933 * active-backup mode ARP monitor.
2934 *
2935 * Called with RTNL and bond->lock for read.
2936 */
2937static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2938{
2939 struct slave *slave;
2940 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002942 bond_for_each_slave(bond, slave, i) {
2943 switch (slave->new_link) {
2944 case BOND_LINK_NOCHANGE:
2945 continue;
2946
2947 case BOND_LINK_UP:
2948 write_lock_bh(&bond->curr_slave_lock);
2949
2950 if (!bond->curr_active_slave &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002951 time_before_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002952 delta_in_ticks)) {
2953 slave->link = BOND_LINK_UP;
2954 bond_change_active_slave(bond, slave);
2955 bond->current_arp_slave = NULL;
2956
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002957 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002958 ": %s: %s is up and now the "
2959 "active interface\n",
2960 bond->dev->name, slave->dev->name);
2961
2962 } else if (bond->curr_active_slave != slave) {
2963 /* this slave has just come up but we
2964 * already have a current slave; this can
2965 * also happen if bond_enslave adds a new
2966 * slave that is up while we are searching
2967 * for a new slave
2968 */
2969 slave->link = BOND_LINK_UP;
2970 bond_set_slave_inactive_flags(slave);
2971 bond->current_arp_slave = NULL;
2972
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002973 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002974 ": %s: backup interface %s is now up\n",
2975 bond->dev->name, slave->dev->name);
2976 }
2977
2978 write_unlock_bh(&bond->curr_slave_lock);
2979
2980 break;
2981
2982 case BOND_LINK_DOWN:
2983 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002986 slave->link = BOND_LINK_DOWN;
2987
2988 if (slave == bond->curr_active_slave) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002989 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002990 ": %s: link status down for active "
2991 "interface %s, disabling it\n",
2992 bond->dev->name, slave->dev->name);
2993
2994 bond_set_slave_inactive_flags(slave);
2995
2996 write_lock_bh(&bond->curr_slave_lock);
2997
2998 bond_select_active_slave(bond);
2999 if (bond->curr_active_slave)
3000 bond->curr_active_slave->jiffies =
3001 jiffies;
3002
3003 write_unlock_bh(&bond->curr_slave_lock);
3004
3005 bond->current_arp_slave = NULL;
3006
3007 } else if (slave->state == BOND_STATE_BACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003008 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003009 ": %s: backup interface %s is now down\n",
3010 bond->dev->name, slave->dev->name);
3011
3012 bond_set_slave_inactive_flags(slave);
3013 }
3014 break;
3015
3016 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003017 pr_err(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003018 ": %s: impossible: new_link %d on slave %s\n",
3019 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 }
3023
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003024 /*
3025 * No race with changes to primary via sysfs, as we hold rtnl.
3026 */
3027 if (bond->primary_slave &&
3028 (bond->primary_slave != bond->curr_active_slave) &&
3029 (bond->primary_slave->link == BOND_LINK_UP)) {
3030 write_lock_bh(&bond->curr_slave_lock);
3031 bond_change_active_slave(bond, bond->primary_slave);
3032 write_unlock_bh(&bond->curr_slave_lock);
3033 }
3034
3035 bond_set_carrier(bond);
3036}
3037
3038/*
3039 * Send ARP probes for active-backup mode ARP monitor.
3040 *
3041 * Called with bond->lock held for read.
3042 */
3043static void bond_ab_arp_probe(struct bonding *bond)
3044{
3045 struct slave *slave;
3046 int i;
3047
3048 read_lock(&bond->curr_slave_lock);
3049
3050 if (bond->current_arp_slave && bond->curr_active_slave)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003051 pr_info(DRV_NAME "PROBE: c_arp %s && cas %s BAD\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003052 bond->current_arp_slave->dev->name,
3053 bond->curr_active_slave->dev->name);
3054
3055 if (bond->curr_active_slave) {
3056 bond_arp_send_all(bond, bond->curr_active_slave);
3057 read_unlock(&bond->curr_slave_lock);
3058 return;
3059 }
3060
3061 read_unlock(&bond->curr_slave_lock);
3062
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 /* if we don't have a curr_active_slave, search for the next available
3064 * backup slave from the current_arp_slave and make it the candidate
3065 * for becoming the curr_active_slave
3066 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003067
3068 if (!bond->current_arp_slave) {
3069 bond->current_arp_slave = bond->first_slave;
3070 if (!bond->current_arp_slave)
3071 return;
3072 }
3073
3074 bond_set_slave_inactive_flags(bond->current_arp_slave);
3075
3076 /* search for next candidate */
3077 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3078 if (IS_UP(slave->dev)) {
3079 slave->link = BOND_LINK_BACK;
3080 bond_set_slave_active_flags(slave);
3081 bond_arp_send_all(bond, slave);
3082 slave->jiffies = jiffies;
3083 bond->current_arp_slave = slave;
3084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 }
3086
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003087 /* if the link state is up at this point, we
3088 * mark it down - this can happen if we have
3089 * simultaneous link failures and
3090 * reselect_active_interface doesn't make this
3091 * one the current slave so it is still marked
3092 * up when it is actually down
3093 */
3094 if (slave->link == BOND_LINK_UP) {
3095 slave->link = BOND_LINK_DOWN;
3096 if (slave->link_failure_count < UINT_MAX)
3097 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003099 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003101 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003102 ": %s: backup interface %s is now down.\n",
3103 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 }
3105 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003106}
3107
3108void bond_activebackup_arp_mon(struct work_struct *work)
3109{
3110 struct bonding *bond = container_of(work, struct bonding,
3111 arp_work.work);
3112 int delta_in_ticks;
3113
3114 read_lock(&bond->lock);
3115
3116 if (bond->kill_timers)
3117 goto out;
3118
3119 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3120
3121 if (bond->slave_cnt == 0)
3122 goto re_arm;
3123
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003124 if (bond->send_grat_arp) {
3125 read_lock(&bond->curr_slave_lock);
3126 bond_send_gratuitous_arp(bond);
3127 read_unlock(&bond->curr_slave_lock);
3128 }
3129
Brian Haley305d5522008-11-04 17:51:14 -08003130 if (bond->send_unsol_na) {
3131 read_lock(&bond->curr_slave_lock);
3132 bond_send_unsolicited_na(bond);
3133 read_unlock(&bond->curr_slave_lock);
3134 }
3135
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003136 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3137 read_unlock(&bond->lock);
3138 rtnl_lock();
3139 read_lock(&bond->lock);
3140
3141 bond_ab_arp_commit(bond, delta_in_ticks);
3142
3143 read_unlock(&bond->lock);
3144 rtnl_unlock();
3145 read_lock(&bond->lock);
3146 }
3147
3148 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003151 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003152 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153out:
3154 read_unlock(&bond->lock);
3155}
3156
3157/*------------------------------ proc/seq_file-------------------------------*/
3158
3159#ifdef CONFIG_PROC_FS
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003162 __acquires(&dev_base_lock)
3163 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164{
3165 struct bonding *bond = seq->private;
3166 loff_t off = 0;
3167 struct slave *slave;
3168 int i;
3169
3170 /* make sure the bond won't be taken away */
3171 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003172 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003174 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
3177 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003178 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 }
3181
3182 return NULL;
3183}
3184
3185static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3186{
3187 struct bonding *bond = seq->private;
3188 struct slave *slave = v;
3189
3190 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003191 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
3194 slave = slave->next;
3195
3196 return (slave == bond->first_slave) ? NULL : slave;
3197}
3198
3199static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003200 __releases(&bond->lock)
3201 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202{
3203 struct bonding *bond = seq->private;
3204
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003205 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 read_unlock(&dev_base_lock);
3207}
3208
3209static void bond_info_show_master(struct seq_file *seq)
3210{
3211 struct bonding *bond = seq->private;
3212 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003213 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
3215 read_lock(&bond->curr_slave_lock);
3216 curr = bond->curr_active_slave;
3217 read_unlock(&bond->curr_slave_lock);
3218
Jay Vosburghdd957c52007-10-09 19:57:24 -07003219 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 bond_mode_name(bond->params.mode));
3221
Jay Vosburghdd957c52007-10-09 19:57:24 -07003222 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3223 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003224 seq_printf(seq, " (fail_over_mac %s)",
3225 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003226
3227 seq_printf(seq, "\n");
3228
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003229 if (bond->params.mode == BOND_MODE_XOR ||
3230 bond->params.mode == BOND_MODE_8023AD) {
3231 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3232 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3233 bond->params.xmit_policy);
3234 }
3235
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 if (USES_PRIMARY(bond->params.mode)) {
3237 seq_printf(seq, "Primary Slave: %s\n",
Mitch Williams0f418b22005-11-09 10:35:21 -08003238 (bond->primary_slave) ?
3239 bond->primary_slave->dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
3241 seq_printf(seq, "Currently Active Slave: %s\n",
3242 (curr) ? curr->dev->name : "None");
3243 }
3244
Jay Vosburghff59c452006-03-27 13:27:43 -08003245 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3246 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3248 seq_printf(seq, "Up Delay (ms): %d\n",
3249 bond->params.updelay * bond->params.miimon);
3250 seq_printf(seq, "Down Delay (ms): %d\n",
3251 bond->params.downdelay * bond->params.miimon);
3252
Mitch Williams4756b022005-11-09 10:36:25 -08003253
3254 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003255 if (bond->params.arp_interval > 0) {
3256 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003257 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3258 bond->params.arp_interval);
3259
3260 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3261
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003262 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003263 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003264 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003265 if (printed)
3266 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003267 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003268 printed = 1;
3269 }
3270 seq_printf(seq, "\n");
3271 }
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 if (bond->params.mode == BOND_MODE_8023AD) {
3274 struct ad_info ad_info;
3275
3276 seq_puts(seq, "\n802.3ad info\n");
3277 seq_printf(seq, "LACP rate: %s\n",
3278 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003279 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3280 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
3282 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3283 seq_printf(seq, "bond %s has no active aggregator\n",
3284 bond->dev->name);
3285 } else {
3286 seq_printf(seq, "Active Aggregator Info:\n");
3287
3288 seq_printf(seq, "\tAggregator ID: %d\n",
3289 ad_info.aggregator_id);
3290 seq_printf(seq, "\tNumber of ports: %d\n",
3291 ad_info.ports);
3292 seq_printf(seq, "\tActor Key: %d\n",
3293 ad_info.actor_key);
3294 seq_printf(seq, "\tPartner Key: %d\n",
3295 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003296 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3297 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
3299 }
3300}
3301
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003302static void bond_info_show_slave(struct seq_file *seq,
3303 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304{
3305 struct bonding *bond = seq->private;
3306
3307 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3308 seq_printf(seq, "MII Status: %s\n",
3309 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami655096452006-09-22 21:53:08 -07003310 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 slave->link_failure_count);
3312
Johannes Berge1749612008-10-27 15:59:26 -07003313 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315 if (bond->params.mode == BOND_MODE_8023AD) {
3316 const struct aggregator *agg
3317 = SLAVE_AD_INFO(slave).port.aggregator;
3318
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003319 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 seq_printf(seq, "Aggregator ID: %d\n",
3321 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003322 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 }
3325}
3326
3327static int bond_info_seq_show(struct seq_file *seq, void *v)
3328{
3329 if (v == SEQ_START_TOKEN) {
3330 seq_printf(seq, "%s\n", version);
3331 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003332 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
3335 return 0;
3336}
3337
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003338static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 .start = bond_info_seq_start,
3340 .next = bond_info_seq_next,
3341 .stop = bond_info_seq_stop,
3342 .show = bond_info_seq_show,
3343};
3344
3345static int bond_info_open(struct inode *inode, struct file *file)
3346{
3347 struct seq_file *seq;
3348 struct proc_dir_entry *proc;
3349 int res;
3350
3351 res = seq_open(file, &bond_info_seq_ops);
3352 if (!res) {
3353 /* recover the pointer buried in proc_dir_entry data */
3354 seq = file->private_data;
3355 proc = PDE(inode);
3356 seq->private = proc->data;
3357 }
3358
3359 return res;
3360}
3361
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003362static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 .owner = THIS_MODULE,
3364 .open = bond_info_open,
3365 .read = seq_read,
3366 .llseek = seq_lseek,
3367 .release = seq_release,
3368};
3369
3370static int bond_create_proc_entry(struct bonding *bond)
3371{
3372 struct net_device *bond_dev = bond->dev;
3373
3374 if (bond_proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003375 bond->proc_entry = proc_create_data(bond_dev->name,
3376 S_IRUGO, bond_proc_dir,
3377 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003378 if (bond->proc_entry == NULL)
3379 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 ": Warning: Cannot create /proc/net/%s/%s\n",
3381 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003382 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 }
3385
3386 return 0;
3387}
3388
3389static void bond_remove_proc_entry(struct bonding *bond)
3390{
3391 if (bond_proc_dir && bond->proc_entry) {
3392 remove_proc_entry(bond->proc_file_name, bond_proc_dir);
3393 memset(bond->proc_file_name, 0, IFNAMSIZ);
3394 bond->proc_entry = NULL;
3395 }
3396}
3397
3398/* Create the bonding directory under /proc/net, if doesn't exist yet.
3399 * Caller must hold rtnl_lock.
3400 */
3401static void bond_create_proc_dir(void)
3402{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 if (!bond_proc_dir) {
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003404 bond_proc_dir = proc_mkdir(DRV_NAME, init_net.proc_net);
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003405 if (!bond_proc_dir)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003406 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 ": Warning: cannot create /proc/net/%s\n",
3408 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
3410}
3411
3412/* Destroy the bonding directory under /proc/net, if empty.
3413 * Caller must hold rtnl_lock.
3414 */
3415static void bond_destroy_proc_dir(void)
3416{
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003417 if (bond_proc_dir) {
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003418 remove_proc_entry(DRV_NAME, init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 bond_proc_dir = NULL;
3420 }
3421}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003422
3423#else /* !CONFIG_PROC_FS */
3424
3425static int bond_create_proc_entry(struct bonding *bond)
3426{
3427}
3428
3429static void bond_remove_proc_entry(struct bonding *bond)
3430{
3431}
3432
3433static void bond_create_proc_dir(void)
3434{
3435}
3436
3437static void bond_destroy_proc_dir(void)
3438{
3439}
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441#endif /* CONFIG_PROC_FS */
3442
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444/*-------------------------- netdev event handling --------------------------*/
3445
3446/*
3447 * Change device name
3448 */
3449static int bond_event_changename(struct bonding *bond)
3450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 bond_remove_proc_entry(bond);
3452 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003453
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003454 bond_destroy_sysfs_entry(bond);
3455 bond_create_sysfs_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003456
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 return NOTIFY_DONE;
3458}
3459
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003460static int bond_master_netdev_event(unsigned long event,
3461 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462{
Wang Chen454d7c92008-11-12 23:37:49 -08003463 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 switch (event) {
3466 case NETDEV_CHANGENAME:
3467 return bond_event_changename(event_bond);
3468 case NETDEV_UNREGISTER:
Jay Vosburgh3b96c852008-01-17 16:25:00 -08003469 bond_release_all(event_bond->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 break;
3471 default:
3472 break;
3473 }
3474
3475 return NOTIFY_DONE;
3476}
3477
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003478static int bond_slave_netdev_event(unsigned long event,
3479 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480{
3481 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003482 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
3484 switch (event) {
3485 case NETDEV_UNREGISTER:
3486 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003487 if (bond->setup_by_slave)
3488 bond_release_and_destroy(bond_dev, slave_dev);
3489 else
3490 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 }
3492 break;
3493 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003494 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3495 struct slave *slave;
3496
3497 slave = bond_get_slave_by_dev(bond, slave_dev);
3498 if (slave) {
3499 u16 old_speed = slave->speed;
3500 u16 old_duplex = slave->duplex;
3501
3502 bond_update_speed_duplex(slave);
3503
3504 if (bond_is_lb(bond))
3505 break;
3506
3507 if (old_speed != slave->speed)
3508 bond_3ad_adapter_speed_changed(slave);
3509 if (old_duplex != slave->duplex)
3510 bond_3ad_adapter_duplex_changed(slave);
3511 }
3512 }
3513
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 break;
3515 case NETDEV_DOWN:
3516 /*
3517 * ... Or is it this?
3518 */
3519 break;
3520 case NETDEV_CHANGEMTU:
3521 /*
3522 * TODO: Should slaves be allowed to
3523 * independently alter their MTU? For
3524 * an active-backup bond, slaves need
3525 * not be the same type of device, so
3526 * MTUs may vary. For other modes,
3527 * slaves arguably should have the
3528 * same MTUs. To do this, we'd need to
3529 * take over the slave's change_mtu
3530 * function for the duration of their
3531 * servitude.
3532 */
3533 break;
3534 case NETDEV_CHANGENAME:
3535 /*
3536 * TODO: handle changing the primary's name
3537 */
3538 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003539 case NETDEV_FEAT_CHANGE:
3540 bond_compute_features(bond);
3541 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 default:
3543 break;
3544 }
3545
3546 return NOTIFY_DONE;
3547}
3548
3549/*
3550 * bond_netdev_event: handle netdev notifier chain events.
3551 *
3552 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003553 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 * locks for us to safely manipulate the slave devices (RTNL lock,
3555 * dev_probe_lock).
3556 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003557static int bond_netdev_event(struct notifier_block *this,
3558 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559{
3560 struct net_device *event_dev = (struct net_device *)ptr;
3561
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003562 if (dev_net(event_dev) != &init_net)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02003563 return NOTIFY_DONE;
3564
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003565 pr_debug("event_dev: %s, event: %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 (event_dev ? event_dev->name : "None"),
3567 event);
3568
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003569 if (!(event_dev->priv_flags & IFF_BONDING))
3570 return NOTIFY_DONE;
3571
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003573 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 return bond_master_netdev_event(event, event_dev);
3575 }
3576
3577 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003578 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 return bond_slave_netdev_event(event, event_dev);
3580 }
3581
3582 return NOTIFY_DONE;
3583}
3584
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003585/*
3586 * bond_inetaddr_event: handle inetaddr notifier chain events.
3587 *
3588 * We keep track of device IPs primarily to use as source addresses in
3589 * ARP monitor probes (rather than spewing out broadcasts all the time).
3590 *
3591 * We track one IP for the main device (if it has one), plus one per VLAN.
3592 */
3593static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3594{
3595 struct in_ifaddr *ifa = ptr;
3596 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003597 struct bonding *bond;
3598 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003599
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003600 if (dev_net(ifa->ifa_dev->dev) != &init_net)
Denis V. Lunev6133fb12008-02-28 20:46:17 -08003601 return NOTIFY_DONE;
3602
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003603 list_for_each_entry(bond, &bond_dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003604 if (bond->dev == event_dev) {
3605 switch (event) {
3606 case NETDEV_UP:
3607 bond->master_ip = ifa->ifa_local;
3608 return NOTIFY_OK;
3609 case NETDEV_DOWN:
3610 bond->master_ip = bond_glean_dev_ip(bond->dev);
3611 return NOTIFY_OK;
3612 default:
3613 return NOTIFY_DONE;
3614 }
3615 }
3616
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003617 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08003618 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003619 if (vlan_dev == event_dev) {
3620 switch (event) {
3621 case NETDEV_UP:
3622 vlan->vlan_ip = ifa->ifa_local;
3623 return NOTIFY_OK;
3624 case NETDEV_DOWN:
3625 vlan->vlan_ip =
3626 bond_glean_dev_ip(vlan_dev);
3627 return NOTIFY_OK;
3628 default:
3629 return NOTIFY_DONE;
3630 }
3631 }
3632 }
3633 }
3634 return NOTIFY_DONE;
3635}
3636
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637static struct notifier_block bond_netdev_notifier = {
3638 .notifier_call = bond_netdev_event,
3639};
3640
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003641static struct notifier_block bond_inetaddr_notifier = {
3642 .notifier_call = bond_inetaddr_event,
3643};
3644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645/*-------------------------- Packet type handling ---------------------------*/
3646
3647/* register to receive lacpdus on a bond */
3648static void bond_register_lacpdu(struct bonding *bond)
3649{
3650 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3651
3652 /* initialize packet type */
3653 pk_type->type = PKT_TYPE_LACPDU;
3654 pk_type->dev = bond->dev;
3655 pk_type->func = bond_3ad_lacpdu_recv;
3656
3657 dev_add_pack(pk_type);
3658}
3659
3660/* unregister to receive lacpdus on a bond */
3661static void bond_unregister_lacpdu(struct bonding *bond)
3662{
3663 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3664}
3665
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003666void bond_register_arp(struct bonding *bond)
3667{
3668 struct packet_type *pt = &bond->arp_mon_pt;
3669
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003670 if (pt->type)
3671 return;
3672
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003673 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003674 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003675 pt->func = bond_arp_rcv;
3676 dev_add_pack(pt);
3677}
3678
3679void bond_unregister_arp(struct bonding *bond)
3680{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003681 struct packet_type *pt = &bond->arp_mon_pt;
3682
3683 dev_remove_pack(pt);
3684 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003685}
3686
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003687/*---------------------------- Hashing Policies -----------------------------*/
3688
3689/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003690 * Hash for the output device based upon layer 2 and layer 3 data. If
3691 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3692 */
3693static int bond_xmit_hash_policy_l23(struct sk_buff *skb,
3694 struct net_device *bond_dev, int count)
3695{
3696 struct ethhdr *data = (struct ethhdr *)skb->data;
3697 struct iphdr *iph = ip_hdr(skb);
3698
Brian Haleyf14c4e42008-09-02 10:08:08 -04003699 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003700 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
3701 (data->h_dest[5] ^ bond_dev->dev_addr[5])) % count;
3702 }
3703
3704 return (data->h_dest[5] ^ bond_dev->dev_addr[5]) % count;
3705}
3706
3707/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003708 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003709 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3710 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3711 */
3712static int bond_xmit_hash_policy_l34(struct sk_buff *skb,
3713 struct net_device *bond_dev, int count)
3714{
3715 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003716 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003717 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003718 int layer4_xor = 0;
3719
Brian Haleyf14c4e42008-09-02 10:08:08 -04003720 if (skb->protocol == htons(ETH_P_IP)) {
3721 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003722 (iph->protocol == IPPROTO_TCP ||
3723 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003724 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003725 }
3726 return (layer4_xor ^
3727 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3728
3729 }
3730
3731 return (data->h_dest[5] ^ bond_dev->dev_addr[5]) % count;
3732}
3733
3734/*
3735 * Hash for the output device based upon layer 2 data
3736 */
3737static int bond_xmit_hash_policy_l2(struct sk_buff *skb,
3738 struct net_device *bond_dev, int count)
3739{
3740 struct ethhdr *data = (struct ethhdr *)skb->data;
3741
3742 return (data->h_dest[5] ^ bond_dev->dev_addr[5]) % count;
3743}
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745/*-------------------------- Device entry points ----------------------------*/
3746
3747static int bond_open(struct net_device *bond_dev)
3748{
Wang Chen454d7c92008-11-12 23:37:49 -08003749 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750
3751 bond->kill_timers = 0;
3752
Holger Eitzenberger58402052008-12-09 23:07:13 -08003753 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 /* bond_alb_initialize must be called before the timer
3755 * is started.
3756 */
3757 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3758 /* something went wrong - fail the open operation */
3759 return -1;
3760 }
3761
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003762 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3763 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 }
3765
3766 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003767 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3768 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 }
3770
3771 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003772 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3773 INIT_DELAYED_WORK(&bond->arp_work,
3774 bond_activebackup_arp_mon);
3775 else
3776 INIT_DELAYED_WORK(&bond->arp_work,
3777 bond_loadbalance_arp_mon);
3778
3779 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003780 if (bond->params.arp_validate)
3781 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
3783
3784 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003785 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003786 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 /* register to receive LACPDUs */
3788 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003789 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 }
3791
3792 return 0;
3793}
3794
3795static int bond_close(struct net_device *bond_dev)
3796{
Wang Chen454d7c92008-11-12 23:37:49 -08003797 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
3799 if (bond->params.mode == BOND_MODE_8023AD) {
3800 /* Unregister the receive of LACPDUs */
3801 bond_unregister_lacpdu(bond);
3802 }
3803
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003804 if (bond->params.arp_validate)
3805 bond_unregister_arp(bond);
3806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 write_lock_bh(&bond->lock);
3808
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003809 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003810 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
3812 /* signal timers not to re-arm */
3813 bond->kill_timers = 1;
3814
3815 write_unlock_bh(&bond->lock);
3816
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003818 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 }
3820
3821 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003822 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 }
3824
3825 switch (bond->params.mode) {
3826 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003827 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 break;
3829 case BOND_MODE_TLB:
3830 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003831 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 break;
3833 default:
3834 break;
3835 }
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Holger Eitzenberger58402052008-12-09 23:07:13 -08003838 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 /* Must be called only after all
3840 * slaves have been released
3841 */
3842 bond_alb_deinitialize(bond);
3843 }
3844
3845 return 0;
3846}
3847
3848static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3849{
Wang Chen454d7c92008-11-12 23:37:49 -08003850 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003851 struct net_device_stats *stats = &bond->stats;
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003852 struct net_device_stats local_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 struct slave *slave;
3854 int i;
3855
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003856 memset(&local_stats, 0, sizeof(struct net_device_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
3858 read_lock_bh(&bond->lock);
3859
3860 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003861 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3862
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003863 local_stats.rx_packets += sstats->rx_packets;
3864 local_stats.rx_bytes += sstats->rx_bytes;
3865 local_stats.rx_errors += sstats->rx_errors;
3866 local_stats.rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003868 local_stats.tx_packets += sstats->tx_packets;
3869 local_stats.tx_bytes += sstats->tx_bytes;
3870 local_stats.tx_errors += sstats->tx_errors;
3871 local_stats.tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003873 local_stats.multicast += sstats->multicast;
3874 local_stats.collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003876 local_stats.rx_length_errors += sstats->rx_length_errors;
3877 local_stats.rx_over_errors += sstats->rx_over_errors;
3878 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3879 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3880 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3881 local_stats.rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003883 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3884 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3885 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3886 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3887 local_stats.tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 }
3889
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003890 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
3891
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 read_unlock_bh(&bond->lock);
3893
3894 return stats;
3895}
3896
3897static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3898{
3899 struct net_device *slave_dev = NULL;
3900 struct ifbond k_binfo;
3901 struct ifbond __user *u_binfo = NULL;
3902 struct ifslave k_sinfo;
3903 struct ifslave __user *u_sinfo = NULL;
3904 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 int res = 0;
3906
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003907 pr_debug("bond_ioctl: master=%s, cmd=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 bond_dev->name, cmd);
3909
3910 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 case SIOCGMIIPHY:
3912 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003913 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003915
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 mii->phy_id = 0;
3917 /* Fall Through */
3918 case SIOCGMIIREG:
3919 /*
3920 * We do this again just in case we were called by SIOCGMIIREG
3921 * instead of SIOCGMIIPHY.
3922 */
3923 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003924 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003926
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
3928 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003929 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003931 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003933 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003935
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003937 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 }
3939
3940 return 0;
3941 case BOND_INFO_QUERY_OLD:
3942 case SIOCBONDINFOQUERY:
3943 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3944
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003945 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
3948 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003949 if (res == 0 &&
3950 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3951 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953 return res;
3954 case BOND_SLAVE_INFO_QUERY_OLD:
3955 case SIOCBONDSLAVEINFOQUERY:
3956 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3957
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003958 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
3961 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003962 if (res == 0 &&
3963 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3964 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
3966 return res;
3967 default:
3968 /* Go on */
3969 break;
3970 }
3971
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003972 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
Eric W. Biederman881d9662007-09-17 11:56:21 -07003975 slave_dev = dev_get_by_name(&init_net, ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003977 pr_debug("slave_dev=%p: \n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003979 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003981 else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003982 pr_debug("slave_dev->name=%s: \n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 switch (cmd) {
3984 case BOND_ENSLAVE_OLD:
3985 case SIOCBONDENSLAVE:
3986 res = bond_enslave(bond_dev, slave_dev);
3987 break;
3988 case BOND_RELEASE_OLD:
3989 case SIOCBONDRELEASE:
3990 res = bond_release(bond_dev, slave_dev);
3991 break;
3992 case BOND_SETHWADDR_OLD:
3993 case SIOCBONDSETHWADDR:
3994 res = bond_sethwaddr(bond_dev, slave_dev);
3995 break;
3996 case BOND_CHANGE_ACTIVE_OLD:
3997 case SIOCBONDCHANGEACTIVE:
3998 res = bond_ioctl_change_active(bond_dev, slave_dev);
3999 break;
4000 default:
4001 res = -EOPNOTSUPP;
4002 }
4003
4004 dev_put(slave_dev);
4005 }
4006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 return res;
4008}
4009
4010static void bond_set_multicast_list(struct net_device *bond_dev)
4011{
Wang Chen454d7c92008-11-12 23:37:49 -08004012 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 struct dev_mc_list *dmi;
4014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 /*
4016 * Do promisc before checking multicast_mode
4017 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004018 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004019 /*
4020 * FIXME: Need to handle the error when one of the multi-slaves
4021 * encounters error.
4022 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004025
4026 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
4030 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004031 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004032 /*
4033 * FIXME: Need to handle the error when one of the multi-slaves
4034 * encounters error.
4035 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004038
4039 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004043 read_lock(&bond->lock);
4044
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 bond->flags = bond_dev->flags;
4046
4047 /* looking for addresses to add to slaves' mc list */
4048 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004049 if (!bond_mc_list_find_dmi(dmi, bond->mc_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 bond_mc_add(bond, dmi->dmi_addr, dmi->dmi_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 }
4052
4053 /* looking for addresses to delete from slaves' list */
4054 for (dmi = bond->mc_list; dmi; dmi = dmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004055 if (!bond_mc_list_find_dmi(dmi, bond_dev->mc_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 bond_mc_delete(bond, dmi->dmi_addr, dmi->dmi_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 }
4058
4059 /* save master's multicast list */
4060 bond_mc_list_destroy(bond);
4061 bond_mc_list_copy(bond_dev->mc_list, bond, GFP_ATOMIC);
4062
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004063 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064}
4065
Stephen Hemminger00829822008-11-20 20:14:53 -08004066static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4067{
4068 struct bonding *bond = netdev_priv(dev);
4069 struct slave *slave = bond->first_slave;
4070
4071 if (slave) {
4072 const struct net_device_ops *slave_ops
4073 = slave->dev->netdev_ops;
4074 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004075 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004076 }
4077 return 0;
4078}
4079
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080/*
4081 * Change the MTU of all of a master's slaves to match the master
4082 */
4083static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4084{
Wang Chen454d7c92008-11-12 23:37:49 -08004085 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 struct slave *slave, *stop_at;
4087 int res = 0;
4088 int i;
4089
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004090 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 (bond_dev ? bond_dev->name : "None"), new_mtu);
4092
4093 /* Can't hold bond->lock with bh disabled here since
4094 * some base drivers panic. On the other hand we can't
4095 * hold bond->lock without bh disabled because we'll
4096 * deadlock. The only solution is to rely on the fact
4097 * that we're under rtnl_lock here, and the slaves
4098 * list won't change. This doesn't solve the problem
4099 * of setting the slave's MTU while it is
4100 * transmitting, but the assumption is that the base
4101 * driver can handle that.
4102 *
4103 * TODO: figure out a way to safely iterate the slaves
4104 * list, but without holding a lock around the actual
4105 * call to the base driver.
4106 */
4107
4108 bond_for_each_slave(bond, slave, i) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004109 pr_debug("s %p s->p %p c_m %p\n", slave,
Stephen Hemminger53a32942009-01-06 10:41:56 -08004110 slave->prev, slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004111
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 res = dev_set_mtu(slave->dev, new_mtu);
4113
4114 if (res) {
4115 /* If we failed to set the slave's mtu to the new value
4116 * we must abort the operation even in ACTIVE_BACKUP
4117 * mode, because if we allow the backup slaves to have
4118 * different mtu values than the active slave we'll
4119 * need to change their mtu when doing a failover. That
4120 * means changing their mtu from timer context, which
4121 * is probably not a good idea.
4122 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004123 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 goto unwind;
4125 }
4126 }
4127
4128 bond_dev->mtu = new_mtu;
4129
4130 return 0;
4131
4132unwind:
4133 /* unwind from head to the slave that failed */
4134 stop_at = slave;
4135 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4136 int tmp_res;
4137
4138 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4139 if (tmp_res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004140 pr_debug("unwind err %d dev %s\n", tmp_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 slave->dev->name);
4142 }
4143 }
4144
4145 return res;
4146}
4147
4148/*
4149 * Change HW address
4150 *
4151 * Note that many devices must be down to change the HW address, and
4152 * downing the master releases all slaves. We can make bonds full of
4153 * bonding devices to test this, however.
4154 */
4155static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4156{
Wang Chen454d7c92008-11-12 23:37:49 -08004157 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 struct sockaddr *sa = addr, tmp_sa;
4159 struct slave *slave, *stop_at;
4160 int res = 0;
4161 int i;
4162
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004163 if (bond->params.mode == BOND_MODE_ALB)
4164 return bond_alb_set_mac_address(bond_dev, addr);
4165
4166
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004167 pr_debug("bond=%p, name=%s\n", bond, (bond_dev ? bond_dev->name : "None"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
Jay Vosburghdd957c52007-10-09 19:57:24 -07004169 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004170 * If fail_over_mac is set to active, do nothing and return
4171 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004172 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004173 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004174 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004175
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004176 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
4179 /* Can't hold bond->lock with bh disabled here since
4180 * some base drivers panic. On the other hand we can't
4181 * hold bond->lock without bh disabled because we'll
4182 * deadlock. The only solution is to rely on the fact
4183 * that we're under rtnl_lock here, and the slaves
4184 * list won't change. This doesn't solve the problem
4185 * of setting the slave's hw address while it is
4186 * transmitting, but the assumption is that the base
4187 * driver can handle that.
4188 *
4189 * TODO: figure out a way to safely iterate the slaves
4190 * list, but without holding a lock around the actual
4191 * call to the base driver.
4192 */
4193
4194 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004195 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004196 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004198 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004200 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 goto unwind;
4202 }
4203
4204 res = dev_set_mac_address(slave->dev, addr);
4205 if (res) {
4206 /* TODO: consider downing the slave
4207 * and retry ?
4208 * User should expect communications
4209 * breakage anyway until ARP finish
4210 * updating, so...
4211 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004212 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 goto unwind;
4214 }
4215 }
4216
4217 /* success */
4218 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4219 return 0;
4220
4221unwind:
4222 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4223 tmp_sa.sa_family = bond_dev->type;
4224
4225 /* unwind from head to the slave that failed */
4226 stop_at = slave;
4227 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4228 int tmp_res;
4229
4230 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4231 if (tmp_res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004232 pr_debug("unwind err %d dev %s\n", tmp_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 slave->dev->name);
4234 }
4235 }
4236
4237 return res;
4238}
4239
4240static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4241{
Wang Chen454d7c92008-11-12 23:37:49 -08004242 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004244 int i, slave_no, res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
4246 read_lock(&bond->lock);
4247
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004248 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004251 /*
4252 * Concurrent TX may collide on rr_tx_counter; we accept that
4253 * as being rare enough not to justify using an atomic op here
4254 */
4255 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004257 bond_for_each_slave(bond, slave, i) {
4258 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004259 if (slave_no < 0)
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004260 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 }
4262
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004263 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 bond_for_each_slave_from(bond, slave, i, start_at) {
4265 if (IS_UP(slave->dev) &&
4266 (slave->link == BOND_LINK_UP) &&
4267 (slave->state == BOND_STATE_ACTIVE)) {
4268 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 break;
4270 }
4271 }
4272
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273out:
4274 if (res) {
4275 /* no suitable interface, frame not sent */
4276 dev_kfree_skb(skb);
4277 }
4278 read_unlock(&bond->lock);
4279 return 0;
4280}
4281
John W. Linville075897c2005-09-28 17:50:53 -04004282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283/*
4284 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4285 * the bond has a usable interface.
4286 */
4287static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4288{
Wang Chen454d7c92008-11-12 23:37:49 -08004289 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 int res = 1;
4291
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 read_lock(&bond->lock);
4293 read_lock(&bond->curr_slave_lock);
4294
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004295 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
John W. Linville075897c2005-09-28 17:50:53 -04004298 if (!bond->curr_active_slave)
4299 goto out;
4300
John W. Linville075897c2005-09-28 17:50:53 -04004301 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4302
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004304 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 /* no suitable interface, frame not sent */
4306 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004307
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 read_unlock(&bond->curr_slave_lock);
4309 read_unlock(&bond->lock);
4310 return 0;
4311}
4312
4313/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004314 * In bond_xmit_xor() , we determine the output device by using a pre-
4315 * determined xmit_hash_policy(), If the selected device is not enabled,
4316 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 */
4318static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4319{
Wang Chen454d7c92008-11-12 23:37:49 -08004320 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 struct slave *slave, *start_at;
4322 int slave_no;
4323 int i;
4324 int res = 1;
4325
4326 read_lock(&bond->lock);
4327
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004328 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004331 slave_no = bond->xmit_hash_policy(skb, bond_dev, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
4333 bond_for_each_slave(bond, slave, i) {
4334 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004335 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 }
4338
4339 start_at = slave;
4340
4341 bond_for_each_slave_from(bond, slave, i, start_at) {
4342 if (IS_UP(slave->dev) &&
4343 (slave->link == BOND_LINK_UP) &&
4344 (slave->state == BOND_STATE_ACTIVE)) {
4345 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4346 break;
4347 }
4348 }
4349
4350out:
4351 if (res) {
4352 /* no suitable interface, frame not sent */
4353 dev_kfree_skb(skb);
4354 }
4355 read_unlock(&bond->lock);
4356 return 0;
4357}
4358
4359/*
4360 * in broadcast mode, we send everything to all usable interfaces.
4361 */
4362static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4363{
Wang Chen454d7c92008-11-12 23:37:49 -08004364 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 struct slave *slave, *start_at;
4366 struct net_device *tx_dev = NULL;
4367 int i;
4368 int res = 1;
4369
4370 read_lock(&bond->lock);
4371
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004372 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
4375 read_lock(&bond->curr_slave_lock);
4376 start_at = bond->curr_active_slave;
4377 read_unlock(&bond->curr_slave_lock);
4378
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004379 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
4382 bond_for_each_slave_from(bond, slave, i, start_at) {
4383 if (IS_UP(slave->dev) &&
4384 (slave->link == BOND_LINK_UP) &&
4385 (slave->state == BOND_STATE_ACTIVE)) {
4386 if (tx_dev) {
4387 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4388 if (!skb2) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004389 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08004390 ": %s: Error: bond_xmit_broadcast(): "
4391 "skb_clone() failed\n",
4392 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 continue;
4394 }
4395
4396 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4397 if (res) {
4398 dev_kfree_skb(skb2);
4399 continue;
4400 }
4401 }
4402 tx_dev = slave->dev;
4403 }
4404 }
4405
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004406 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
4409out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004410 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 /* no suitable interface, frame not sent */
4412 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004413
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 /* frame sent to all suitable interfaces */
4415 read_unlock(&bond->lock);
4416 return 0;
4417}
4418
4419/*------------------------- Device initialization ---------------------------*/
4420
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004421static void bond_set_xmit_hash_policy(struct bonding *bond)
4422{
4423 switch (bond->params.xmit_policy) {
4424 case BOND_XMIT_POLICY_LAYER23:
4425 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4426 break;
4427 case BOND_XMIT_POLICY_LAYER34:
4428 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4429 break;
4430 case BOND_XMIT_POLICY_LAYER2:
4431 default:
4432 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4433 break;
4434 }
4435}
4436
Stephen Hemminger00829822008-11-20 20:14:53 -08004437static int bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4438{
4439 const struct bonding *bond = netdev_priv(dev);
4440
4441 switch (bond->params.mode) {
4442 case BOND_MODE_ROUNDROBIN:
4443 return bond_xmit_roundrobin(skb, dev);
4444 case BOND_MODE_ACTIVEBACKUP:
4445 return bond_xmit_activebackup(skb, dev);
4446 case BOND_MODE_XOR:
4447 return bond_xmit_xor(skb, dev);
4448 case BOND_MODE_BROADCAST:
4449 return bond_xmit_broadcast(skb, dev);
4450 case BOND_MODE_8023AD:
4451 return bond_3ad_xmit_xor(skb, dev);
4452 case BOND_MODE_ALB:
4453 case BOND_MODE_TLB:
4454 return bond_alb_xmit(skb, dev);
4455 default:
4456 /* Should never happen, mode already checked */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004457 pr_err(DRV_NAME ": %s: Error: Unknown bonding mode %d\n",
Stephen Hemminger00829822008-11-20 20:14:53 -08004458 dev->name, bond->params.mode);
4459 WARN_ON_ONCE(1);
4460 dev_kfree_skb(skb);
4461 return NETDEV_TX_OK;
4462 }
4463}
4464
4465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466/*
4467 * set bond mode specific net device operations
4468 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004469void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004471 struct net_device *bond_dev = bond->dev;
4472
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 switch (mode) {
4474 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 break;
4476 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 break;
4478 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004479 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 break;
4481 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 break;
4483 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004484 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004485 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004488 bond_set_master_alb_flags(bond);
4489 /* FALLTHRU */
4490 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 break;
4492 default:
4493 /* Should never happen, mode already checked */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004494 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08004495 ": %s: Error: Unknown bonding mode %d\n",
4496 bond_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 mode);
4498 break;
4499 }
4500}
4501
Jay Vosburgh217df672005-09-26 16:11:50 -07004502static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4503 struct ethtool_drvinfo *drvinfo)
4504{
4505 strncpy(drvinfo->driver, DRV_NAME, 32);
4506 strncpy(drvinfo->version, DRV_VERSION, 32);
4507 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4508}
4509
Jeff Garzik7282d492006-09-13 14:30:00 -04004510static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004511 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004512 .get_link = ethtool_op_get_link,
4513 .get_tx_csum = ethtool_op_get_tx_csum,
4514 .get_sg = ethtool_op_get_sg,
4515 .get_tso = ethtool_op_get_tso,
4516 .get_ufo = ethtool_op_get_ufo,
4517 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004518};
4519
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004520static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger9e716262009-06-12 19:02:47 +00004521 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004522 .ndo_open = bond_open,
4523 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004524 .ndo_start_xmit = bond_start_xmit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004525 .ndo_get_stats = bond_get_stats,
4526 .ndo_do_ioctl = bond_do_ioctl,
4527 .ndo_set_multicast_list = bond_set_multicast_list,
4528 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004529 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004530 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004531 .ndo_vlan_rx_register = bond_vlan_rx_register,
4532 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4533 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
4534};
4535
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536/*
4537 * Does not allocate but creates a /proc entry.
4538 * Allowed to fail.
4539 */
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004540static int bond_init(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
Wang Chen454d7c92008-11-12 23:37:49 -08004542 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004544 pr_debug("Begin bond_init for %s\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
4546 /* initialize rwlocks */
4547 rwlock_init(&bond->lock);
4548 rwlock_init(&bond->curr_slave_lock);
4549
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004550 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
Jay Vosburgh1b76b312007-10-17 17:37:45 -07004552 bond->wq = create_singlethread_workqueue(bond_dev->name);
4553 if (!bond->wq)
4554 return -ENOMEM;
4555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 /* Initialize pointers */
4557 bond->first_slave = NULL;
4558 bond->curr_active_slave = NULL;
4559 bond->current_arp_slave = NULL;
4560 bond->primary_slave = NULL;
4561 bond->dev = bond_dev;
Moni Shoua1053f622007-10-09 19:43:42 -07004562 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08004563 bond->send_unsol_na = 0;
Moni Shouad90a1622007-10-09 19:43:43 -07004564 bond->setup_by_slave = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 INIT_LIST_HEAD(&bond->vlan_list);
4566
4567 /* Initialize the device entry points */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004568 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004569 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004570 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Stephen Hemminger9e716262009-06-12 19:02:47 +00004572 bond_dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574 /* Initialize the device options */
4575 bond_dev->tx_queue_len = 0;
4576 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004577 bond_dev->priv_flags |= IFF_BONDING;
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004578 if (bond->params.arp_interval)
4579 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
4581 /* At first, we block adding VLANs. That's the only way to
4582 * prevent problems that occur when adding VLANs over an
4583 * empty bond. The block will be removed once non-challenged
4584 * slaves are enslaved.
4585 */
4586 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4587
Herbert Xu932ff272006-06-09 12:20:56 -07004588 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 * transmitting */
4590 bond_dev->features |= NETIF_F_LLTX;
4591
4592 /* By default, we declare the bond to be fully
4593 * VLAN hardware accelerated capable. Special
4594 * care is taken in the various xmit functions
4595 * when there are slaves that are not hw accel
4596 * capable
4597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4599 NETIF_F_HW_VLAN_RX |
4600 NETIF_F_HW_VLAN_FILTER);
4601
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 bond_create_proc_entry(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 list_add_tail(&bond->bond_list, &bond_dev_list);
4604
4605 return 0;
4606}
4607
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004608static void bond_work_cancel_all(struct bonding *bond)
4609{
4610 write_lock_bh(&bond->lock);
4611 bond->kill_timers = 1;
4612 write_unlock_bh(&bond->lock);
4613
4614 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4615 cancel_delayed_work(&bond->mii_work);
4616
4617 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4618 cancel_delayed_work(&bond->arp_work);
4619
4620 if (bond->params.mode == BOND_MODE_ALB &&
4621 delayed_work_pending(&bond->alb_work))
4622 cancel_delayed_work(&bond->alb_work);
4623
4624 if (bond->params.mode == BOND_MODE_8023AD &&
4625 delayed_work_pending(&bond->ad_work))
4626 cancel_delayed_work(&bond->ad_work);
4627}
4628
Jay Vosburgha434e432008-10-30 17:41:15 -07004629/* De-initialize device specific data.
4630 * Caller must hold rtnl_lock.
4631 */
4632static void bond_deinit(struct net_device *bond_dev)
4633{
Wang Chen454d7c92008-11-12 23:37:49 -08004634 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004635
4636 list_del(&bond->bond_list);
4637
4638 bond_work_cancel_all(bond);
4639
Jay Vosburgha434e432008-10-30 17:41:15 -07004640 bond_remove_proc_entry(bond);
Jay Vosburgha434e432008-10-30 17:41:15 -07004641}
4642
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643/* Unregister and free all bond devices.
4644 * Caller must hold rtnl_lock.
4645 */
4646static void bond_free_all(void)
4647{
4648 struct bonding *bond, *nxt;
4649
4650 list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list) {
4651 struct net_device *bond_dev = bond->dev;
4652
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004653 bond_work_cancel_all(bond);
jamal702987052006-09-22 21:54:37 -07004654 /* Release the bonded slaves */
4655 bond_release_all(bond_dev);
Stephen Hemminger9e716262009-06-12 19:02:47 +00004656 unregister_netdevice(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 }
4658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 bond_destroy_proc_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660}
4661
4662/*------------------------- Module initialization ---------------------------*/
4663
4664/*
4665 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004666 * number of the mode or its string name. A bit complicated because
4667 * some mode names are substrings of other names, and calls from sysfs
4668 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004670int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671{
Hannes Eder54b87322009-02-14 11:15:49 +00004672 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004673 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004674
Jay Vosburgha42e5342008-01-29 18:07:43 -08004675 for (p = (char *)buf; *p; p++)
4676 if (!(isdigit(*p) || isspace(*p)))
4677 break;
4678
4679 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004680 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004681 else
Hannes Eder54b87322009-02-14 11:15:49 +00004682 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004683
4684 if (!rv)
4685 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
4687 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004688 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004690 if (strcmp(modestr, tbl[i].modename) == 0)
4691 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 }
4693
4694 return -1;
4695}
4696
4697static int bond_check_params(struct bond_params *params)
4698{
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004699 int arp_validate_value, fail_over_mac_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004700
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 /*
4702 * Convert string parameters.
4703 */
4704 if (mode) {
4705 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4706 if (bond_mode == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004707 pr_err(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 ": Error: Invalid bonding mode \"%s\"\n",
4709 mode == NULL ? "NULL" : mode);
4710 return -EINVAL;
4711 }
4712 }
4713
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004714 if (xmit_hash_policy) {
4715 if ((bond_mode != BOND_MODE_XOR) &&
4716 (bond_mode != BOND_MODE_8023AD)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004717 pr_info(DRV_NAME
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004718 ": xor_mode param is irrelevant in mode %s\n",
4719 bond_mode_name(bond_mode));
4720 } else {
4721 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4722 xmit_hashtype_tbl);
4723 if (xmit_hashtype == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004724 pr_err(DRV_NAME
4725 ": Error: Invalid xmit_hash_policy \"%s\"\n",
4726 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004727 xmit_hash_policy);
4728 return -EINVAL;
4729 }
4730 }
4731 }
4732
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 if (lacp_rate) {
4734 if (bond_mode != BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004735 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 ": lacp_rate param is irrelevant in mode %s\n",
4737 bond_mode_name(bond_mode));
4738 } else {
4739 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4740 if (lacp_fast == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004741 pr_err(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 ": Error: Invalid lacp rate \"%s\"\n",
4743 lacp_rate == NULL ? "NULL" : lacp_rate);
4744 return -EINVAL;
4745 }
4746 }
4747 }
4748
Jay Vosburghfd989c82008-11-04 17:51:16 -08004749 if (ad_select) {
4750 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4751 if (params->ad_select == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004752 pr_err(DRV_NAME
Jay Vosburghfd989c82008-11-04 17:51:16 -08004753 ": Error: Invalid ad_select \"%s\"\n",
4754 ad_select == NULL ? "NULL" : ad_select);
4755 return -EINVAL;
4756 }
4757
4758 if (bond_mode != BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004759 pr_warning(DRV_NAME
Jay Vosburghfd989c82008-11-04 17:51:16 -08004760 ": ad_select param only affects 802.3ad mode\n");
4761 }
4762 } else {
4763 params->ad_select = BOND_AD_STABLE;
4764 }
4765
Jay Vosburghb8a97872008-06-13 18:12:04 -07004766 if (max_bonds < 0 || max_bonds > INT_MAX) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004767 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 ": Warning: max_bonds (%d) not in range %d-%d, so it "
Mitch Williams4e0952c2005-11-09 10:34:57 -08004769 "was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
Jay Vosburghb8a97872008-06-13 18:12:04 -07004770 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 max_bonds = BOND_DEFAULT_MAX_BONDS;
4772 }
4773
4774 if (miimon < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004775 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 ": Warning: miimon module parameter (%d), "
4777 "not in range 0-%d, so it was reset to %d\n",
4778 miimon, INT_MAX, BOND_LINK_MON_INTERV);
4779 miimon = BOND_LINK_MON_INTERV;
4780 }
4781
4782 if (updelay < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004783 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 ": Warning: updelay module parameter (%d), "
4785 "not in range 0-%d, so it was reset to 0\n",
4786 updelay, INT_MAX);
4787 updelay = 0;
4788 }
4789
4790 if (downdelay < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004791 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 ": Warning: downdelay module parameter (%d), "
4793 "not in range 0-%d, so it was reset to 0\n",
4794 downdelay, INT_MAX);
4795 downdelay = 0;
4796 }
4797
4798 if ((use_carrier != 0) && (use_carrier != 1)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004799 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 ": Warning: use_carrier module parameter (%d), "
4801 "not of valid value (0/1), so it was set to 1\n",
4802 use_carrier);
4803 use_carrier = 1;
4804 }
4805
Moni Shoua7893b242008-05-17 21:10:12 -07004806 if (num_grat_arp < 0 || num_grat_arp > 255) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004807 pr_warning(DRV_NAME
Moni Shoua7893b242008-05-17 21:10:12 -07004808 ": Warning: num_grat_arp (%d) not in range 0-255 so it "
4809 "was reset to 1 \n", num_grat_arp);
4810 num_grat_arp = 1;
4811 }
4812
Brian Haley305d5522008-11-04 17:51:14 -08004813 if (num_unsol_na < 0 || num_unsol_na > 255) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004814 pr_warning(DRV_NAME
Brian Haley305d5522008-11-04 17:51:14 -08004815 ": Warning: num_unsol_na (%d) not in range 0-255 so it "
4816 "was reset to 1 \n", num_unsol_na);
4817 num_unsol_na = 1;
4818 }
4819
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 /* reset values for 802.3ad */
4821 if (bond_mode == BOND_MODE_8023AD) {
4822 if (!miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004823 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 ": Warning: miimon must be specified, "
4825 "otherwise bonding will not detect link "
4826 "failure, speed and duplex which are "
4827 "essential for 802.3ad operation\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004828 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 miimon = 100;
4830 }
4831 }
4832
4833 /* reset values for TLB/ALB */
4834 if ((bond_mode == BOND_MODE_TLB) ||
4835 (bond_mode == BOND_MODE_ALB)) {
4836 if (!miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004837 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 ": Warning: miimon must be specified, "
4839 "otherwise bonding will not detect link "
4840 "failure and link speed which are essential "
4841 "for TLB/ALB load balancing\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004842 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 miimon = 100;
4844 }
4845 }
4846
4847 if (bond_mode == BOND_MODE_ALB) {
4848 printk(KERN_NOTICE DRV_NAME
4849 ": In ALB mode you might experience client "
4850 "disconnections upon reconnection of a link if the "
4851 "bonding module updelay parameter (%d msec) is "
4852 "incompatible with the forwarding delay time of the "
4853 "switch\n",
4854 updelay);
4855 }
4856
4857 if (!miimon) {
4858 if (updelay || downdelay) {
4859 /* just warn the user the up/down delay will have
4860 * no effect since miimon is zero...
4861 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004862 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 ": Warning: miimon module parameter not set "
4864 "and updelay (%d) or downdelay (%d) module "
4865 "parameter is set; updelay and downdelay have "
4866 "no effect unless miimon is set\n",
4867 updelay, downdelay);
4868 }
4869 } else {
4870 /* don't allow arp monitoring */
4871 if (arp_interval) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004872 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 ": Warning: miimon (%d) and arp_interval (%d) "
4874 "can't be used simultaneously, disabling ARP "
4875 "monitoring\n",
4876 miimon, arp_interval);
4877 arp_interval = 0;
4878 }
4879
4880 if ((updelay % miimon) != 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004881 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 ": Warning: updelay (%d) is not a multiple "
4883 "of miimon (%d), updelay rounded to %d ms\n",
4884 updelay, miimon, (updelay / miimon) * miimon);
4885 }
4886
4887 updelay /= miimon;
4888
4889 if ((downdelay % miimon) != 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004890 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 ": Warning: downdelay (%d) is not a multiple "
4892 "of miimon (%d), downdelay rounded to %d ms\n",
4893 downdelay, miimon,
4894 (downdelay / miimon) * miimon);
4895 }
4896
4897 downdelay /= miimon;
4898 }
4899
4900 if (arp_interval < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004901 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 ": Warning: arp_interval module parameter (%d) "
4903 ", not in range 0-%d, so it was reset to %d\n",
4904 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
4905 arp_interval = BOND_LINK_ARP_INTERV;
4906 }
4907
4908 for (arp_ip_count = 0;
4909 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4910 arp_ip_count++) {
4911 /* not complete check, but should be good enough to
4912 catch mistakes */
4913 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004914 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 ": Warning: bad arp_ip_target module parameter "
4916 "(%s), ARP monitoring will not be performed\n",
4917 arp_ip_target[arp_ip_count]);
4918 arp_interval = 0;
4919 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004920 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 arp_target[arp_ip_count] = ip;
4922 }
4923 }
4924
4925 if (arp_interval && !arp_ip_count) {
4926 /* don't allow arping if no arp_ip_target given... */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004927 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 ": Warning: arp_interval module parameter (%d) "
4929 "specified without providing an arp_ip_target "
4930 "parameter, arp_interval was reset to 0\n",
4931 arp_interval);
4932 arp_interval = 0;
4933 }
4934
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004935 if (arp_validate) {
4936 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004937 pr_err(DRV_NAME
4938 ": arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004939 return -EINVAL;
4940 }
4941 if (!arp_interval) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004942 pr_err(DRV_NAME
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004943 ": arp_validate requires arp_interval\n");
4944 return -EINVAL;
4945 }
4946
4947 arp_validate_value = bond_parse_parm(arp_validate,
4948 arp_validate_tbl);
4949 if (arp_validate_value == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004950 pr_err(DRV_NAME
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004951 ": Error: invalid arp_validate \"%s\"\n",
4952 arp_validate == NULL ? "NULL" : arp_validate);
4953 return -EINVAL;
4954 }
4955 } else
4956 arp_validate_value = 0;
4957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 if (miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004959 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 ": MII link monitoring set to %d ms\n",
4961 miimon);
4962 } else if (arp_interval) {
4963 int i;
4964
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004965 pr_info(DRV_NAME ": ARP monitoring set to %d ms,"
4966 " validate %s, with %d target(s):",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004967 arp_interval,
4968 arp_validate_tbl[arp_validate_value].modename,
4969 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970
4971 for (i = 0; i < arp_ip_count; i++)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004972 printk(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
4974 printk("\n");
4975
Jay Vosburghb8a97872008-06-13 18:12:04 -07004976 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 /* miimon and arp_interval not set, we need one so things
4978 * work as expected, see bonding.txt for details
4979 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004980 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 ": Warning: either miimon or arp_interval and "
4982 "arp_ip_target module parameters must be specified, "
4983 "otherwise bonding will not detect link failures! see "
4984 "bonding.txt for details.\n");
4985 }
4986
4987 if (primary && !USES_PRIMARY(bond_mode)) {
4988 /* currently, using a primary only makes sense
4989 * in active backup, TLB or ALB modes
4990 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004991 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 ": Warning: %s primary device specified but has no "
4993 "effect in %s mode\n",
4994 primary, bond_mode_name(bond_mode));
4995 primary = NULL;
4996 }
4997
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004998 if (fail_over_mac) {
4999 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5000 fail_over_mac_tbl);
5001 if (fail_over_mac_value == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005002 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005003 ": Error: invalid fail_over_mac \"%s\"\n",
5004 arp_validate == NULL ? "NULL" : arp_validate);
5005 return -EINVAL;
5006 }
5007
5008 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005009 pr_warning(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005010 ": Warning: fail_over_mac only affects "
5011 "active-backup mode.\n");
5012 } else {
5013 fail_over_mac_value = BOND_FOM_NONE;
5014 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 /* fill params struct with the proper values */
5017 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005018 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005020 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005021 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005023 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 params->updelay = updelay;
5025 params->downdelay = downdelay;
5026 params->use_carrier = use_carrier;
5027 params->lacp_fast = lacp_fast;
5028 params->primary[0] = 0;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005029 params->fail_over_mac = fail_over_mac_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030
5031 if (primary) {
5032 strncpy(params->primary, primary, IFNAMSIZ);
5033 params->primary[IFNAMSIZ - 1] = 0;
5034 }
5035
5036 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5037
5038 return 0;
5039}
5040
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005041static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005042static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005043
David S. Millere8a04642008-07-17 00:34:19 -07005044static void bond_set_lockdep_class_one(struct net_device *dev,
5045 struct netdev_queue *txq,
5046 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005047{
5048 lockdep_set_class(&txq->_xmit_lock,
5049 &bonding_netdev_xmit_lock_key);
5050}
5051
5052static void bond_set_lockdep_class(struct net_device *dev)
5053{
David S. Millercf508b12008-07-22 14:16:42 -07005054 lockdep_set_class(&dev->addr_list_lock,
5055 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005056 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005057}
5058
Mitch Williamsdfe60392005-11-09 10:36:04 -08005059/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005060 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005061 * Caller must NOT hold rtnl_lock; we need to release it here before we
5062 * set up our sysfs entries.
5063 */
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00005064int bond_create(const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005065{
5066 struct net_device *bond_dev;
5067 int res;
5068
5069 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005070 /* Check to see if the bond already exists. */
Stephen Hemminger373500d2009-06-12 19:02:50 +00005071 /* FIXME: pass netns from caller */
5072 if (name && __dev_get_by_name(&init_net, name)) {
5073 pr_err(DRV_NAME ": cannot add bond %s; already exists\n",
5074 name);
5075 res = -EEXIST;
5076 goto out_rtnl;
Jay Vosburgh4fe47632008-01-29 18:07:45 -08005077 }
Jay Vosburgh027ea042008-01-17 16:25:02 -08005078
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005079 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
5080 ether_setup);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005081 if (!bond_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005082 pr_err(DRV_NAME ": %s: eek! can't alloc netdev!\n",
Mitch Williamsdfe60392005-11-09 10:36:04 -08005083 name);
5084 res = -ENOMEM;
5085 goto out_rtnl;
5086 }
5087
Eric Dumazet93f154b2009-05-18 22:19:19 -07005088 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005089 if (!name) {
5090 res = dev_alloc_name(bond_dev, "bond%d");
5091 if (res < 0)
5092 goto out_netdev;
5093 }
5094
Mitch Williamsdfe60392005-11-09 10:36:04 -08005095 /* bond_init() must be called after dev_alloc_name() (for the
5096 * /proc files), but before register_netdevice(), because we
5097 * need to set function pointers.
5098 */
5099
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00005100 res = bond_init(bond_dev);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005101 if (res < 0)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005102 goto out_netdev;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005103
Stephen Hemmingerd9321602009-06-12 19:02:45 +00005104 bond_set_lockdep_class(bond_dev);
5105
5106 netif_carrier_off(bond_dev);
5107
Mitch Williamsdfe60392005-11-09 10:36:04 -08005108 res = register_netdevice(bond_dev);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005109 if (res < 0)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005110 goto out_bond;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005111
Wang Chen454d7c92008-11-12 23:37:49 -08005112 res = bond_create_sysfs_entry(netdev_priv(bond_dev));
Jiri Pirko1363d9b2009-05-01 15:35:28 -07005113 if (res < 0)
5114 goto out_unreg;
Jay Vosburgh09c89272007-01-19 18:15:38 -08005115
Stephen Hemminger7e083842009-06-12 19:02:46 +00005116 rtnl_unlock();
Jay Vosburgh09c89272007-01-19 18:15:38 -08005117 return 0;
5118
Jiri Pirko1363d9b2009-05-01 15:35:28 -07005119out_unreg:
Jiri Pirko1363d9b2009-05-01 15:35:28 -07005120 unregister_netdevice(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005121out_bond:
5122 bond_deinit(bond_dev);
5123out_netdev:
5124 free_netdev(bond_dev);
5125out_rtnl:
5126 rtnl_unlock();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005127 return res;
5128}
5129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130static int __init bonding_init(void)
5131{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 int i;
5133 int res;
5134
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005135 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
Mitch Williamsdfe60392005-11-09 10:36:04 -08005137 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005138 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141 bond_create_proc_dir();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005142
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 for (i = 0; i < max_bonds; i++) {
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00005144 res = bond_create(NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005145 if (res)
5146 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147 }
5148
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005149 res = bond_create_sysfs();
5150 if (res)
5151 goto err;
5152
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005154 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005155 bond_register_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
Mitch Williamsdfe60392005-11-09 10:36:04 -08005157 goto out;
5158err:
Florin Malita40abc272005-09-18 00:24:12 -07005159 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 bond_free_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 rtnl_unlock();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005162out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 return res;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005164
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165}
5166
5167static void __exit bonding_exit(void)
5168{
5169 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005170 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005171 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005173 bond_destroy_sysfs();
5174
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 rtnl_lock();
5176 bond_free_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 rtnl_unlock();
5178}
5179
5180module_init(bonding_init);
5181module_exit(bonding_exit);
5182MODULE_LICENSE("GPL");
5183MODULE_VERSION(DRV_VERSION);
5184MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5185MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");