blob: f3b01ce4f629d416eaca43a8e1abafcf8c592be7 [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
Joe Perchesa4aee5c2009-12-13 20:06:07 -080034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/kernel.h>
37#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/types.h>
39#include <linux/fcntl.h>
40#include <linux/interrupt.h>
41#include <linux/ptrace.h>
42#include <linux/ioport.h>
43#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040046#include <linux/tcp.h>
47#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000059#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/errno.h>
61#include <linux/netdevice.h>
WANG Congf6dc31a2010-05-06 00:48:51 -070062#include <linux/netpoll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080064#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/etherdevice.h>
66#include <linux/skbuff.h>
67#include <net/sock.h>
68#include <linux/rtnetlink.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
71#include <linux/smp.h>
72#include <linux/if_ether.h>
73#include <net/arp.h>
74#include <linux/mii.h>
75#include <linux/ethtool.h>
76#include <linux/if_vlan.h>
77#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080078#include <linux/jiffies.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040079#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020080#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000081#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include "bonding.h"
83#include "bond_3ad.h"
84#include "bond_alb.h"
85
86/*---------------------------- Module parameters ----------------------------*/
87
88/* monitor all links that often (in milliseconds). <=0 disables monitoring */
89#define BOND_LINK_MON_INTERV 0
90#define BOND_LINK_ARP_INTERV 0
91
92static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +000093static int tx_queues = BOND_DEFAULT_TX_QUEUES;
Moni Shoua7893b242008-05-17 21:10:12 -070094static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080095static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000097static int updelay;
98static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000100static char *mode;
101static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000102static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000103static char *lacp_rate;
104static char *ad_select;
105static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000107static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
108static char *arp_validate;
109static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000110static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000111static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113module_param(max_bonds, int, 0);
114MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000115module_param(tx_queues, int, 0);
116MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Moni Shoua7893b242008-05-17 21:10:12 -0700117module_param(num_grat_arp, int, 0644);
118MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800119module_param(num_unsol_na, int, 0644);
120MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121module_param(miimon, int, 0);
122MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
123module_param(updelay, int, 0);
124MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
125module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800126MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
127 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800129MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
130 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800132MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
133 "1 for active-backup, 2 for balance-xor, "
134 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
135 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136module_param(primary, charp, 0);
137MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000138module_param(primary_reselect, charp, 0);
139MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
140 "once it comes up; "
141 "0 for always (default), "
142 "1 for only if speed of primary is "
143 "better, "
144 "2 for only on active slave "
145 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800147MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
148 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800149module_param(ad_select, charp, 0);
150MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400151module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800152MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
153 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154module_param(arp_interval, int, 0);
155MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
156module_param_array(arp_ip_target, charp, NULL, 0);
157MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700158module_param(arp_validate, charp, 0);
159MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700160module_param(fail_over_mac, charp, 0);
161MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000162module_param(all_slaves_active, int, 0);
163MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
164 "by setting active flag for all slaves. "
165 "0 for never (default), 1 for always.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/*----------------------------- Global variables ----------------------------*/
168
Arjan van de Venf71e1302006-03-03 21:33:57 -0500169static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
171
Eric Dumazetf99189b2009-11-17 10:42:49 +0000172int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000174static __be32 arp_target[BOND_MAX_ARP_TARGETS];
175static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000177static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
178static int lacp_fast;
Eric Dumazet90e17952010-07-19 06:52:36 +0000179#ifdef CONFIG_NET_POLL_CONTROLLER
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +0000180static int disable_netpoll = 1;
Eric Dumazet90e17952010-07-19 06:52:36 +0000181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800183const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{ "slow", AD_LACP_SLOW},
185{ "fast", AD_LACP_FAST},
186{ NULL, -1},
187};
188
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800189const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{ "balance-rr", BOND_MODE_ROUNDROBIN},
191{ "active-backup", BOND_MODE_ACTIVEBACKUP},
192{ "balance-xor", BOND_MODE_XOR},
193{ "broadcast", BOND_MODE_BROADCAST},
194{ "802.3ad", BOND_MODE_8023AD},
195{ "balance-tlb", BOND_MODE_TLB},
196{ "balance-alb", BOND_MODE_ALB},
197{ NULL, -1},
198};
199
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800200const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400201{ "layer2", BOND_XMIT_POLICY_LAYER2},
202{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800203{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400204{ NULL, -1},
205};
206
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800207const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700208{ "none", BOND_ARP_VALIDATE_NONE},
209{ "active", BOND_ARP_VALIDATE_ACTIVE},
210{ "backup", BOND_ARP_VALIDATE_BACKUP},
211{ "all", BOND_ARP_VALIDATE_ALL},
212{ NULL, -1},
213};
214
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800215const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700216{ "none", BOND_FOM_NONE},
217{ "active", BOND_FOM_ACTIVE},
218{ "follow", BOND_FOM_FOLLOW},
219{ NULL, -1},
220};
221
Jiri Pirkoa5499522009-09-25 03:28:09 +0000222const struct bond_parm_tbl pri_reselect_tbl[] = {
223{ "always", BOND_PRI_RESELECT_ALWAYS},
224{ "better", BOND_PRI_RESELECT_BETTER},
225{ "failure", BOND_PRI_RESELECT_FAILURE},
226{ NULL, -1},
227};
228
Jay Vosburghfd989c82008-11-04 17:51:16 -0800229struct bond_parm_tbl ad_select_tbl[] = {
230{ "stable", BOND_AD_STABLE},
231{ "bandwidth", BOND_AD_BANDWIDTH},
232{ "count", BOND_AD_COUNT},
233{ NULL, -1},
234};
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/*-------------------------- Forward declarations ---------------------------*/
237
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400238static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000239static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000240static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242/*---------------------------- General routines -----------------------------*/
243
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700244static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800246 static const char *names[] = {
247 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
248 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
249 [BOND_MODE_XOR] = "load balancing (xor)",
250 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000251 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800252 [BOND_MODE_TLB] = "transmit load balancing",
253 [BOND_MODE_ALB] = "adaptive load balancing",
254 };
255
256 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800258
259 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262/*---------------------------------- VLAN -----------------------------------*/
263
264/**
265 * bond_add_vlan - add a new vlan id on bond
266 * @bond: bond that got the notification
267 * @vlan_id: the vlan id to add
268 *
269 * Returns -ENOMEM if allocation failed.
270 */
271static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
272{
273 struct vlan_entry *vlan;
274
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800275 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800276 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Brian Haley305d5522008-11-04 17:51:14 -0800278 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000279 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 INIT_LIST_HEAD(&vlan->vlan_list);
283 vlan->vlan_id = vlan_id;
284
285 write_lock_bh(&bond->lock);
286
287 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
288
289 write_unlock_bh(&bond->lock);
290
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800291 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 return 0;
294}
295
296/**
297 * bond_del_vlan - delete a vlan id from bond
298 * @bond: bond that got the notification
299 * @vlan_id: the vlan id to delete
300 *
301 * returns -ENODEV if @vlan_id was not found in @bond.
302 */
303static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
304{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700305 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 int res = -ENODEV;
307
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800308 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 write_lock_bh(&bond->lock);
311
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700312 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (vlan->vlan_id == vlan_id) {
314 list_del(&vlan->vlan_list);
315
Holger Eitzenberger58402052008-12-09 23:07:13 -0800316 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800319 pr_debug("removed VLAN ID %d from bond %s\n",
320 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 kfree(vlan);
323
324 if (list_empty(&bond->vlan_list) &&
325 (bond->slave_cnt == 0)) {
326 /* Last VLAN removed and no slaves, so
327 * restore block on adding VLANs. This will
328 * be removed once new slaves that are not
329 * VLAN challenged will be added.
330 */
331 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
332 }
333
334 res = 0;
335 goto out;
336 }
337 }
338
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800339 pr_debug("couldn't find VLAN ID %d in bond %s\n",
340 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342out:
343 write_unlock_bh(&bond->lock);
344 return res;
345}
346
347/**
348 * bond_has_challenged_slaves
349 * @bond: the bond we're working on
350 *
351 * Searches the slave list. Returns 1 if a vlan challenged slave
352 * was found, 0 otherwise.
353 *
354 * Assumes bond->lock is held.
355 */
356static int bond_has_challenged_slaves(struct bonding *bond)
357{
358 struct slave *slave;
359 int i;
360
361 bond_for_each_slave(bond, slave, i) {
362 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800363 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800364 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return 1;
366 }
367 }
368
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800369 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return 0;
371}
372
373/**
374 * bond_next_vlan - safely skip to the next item in the vlans list.
375 * @bond: the bond we're working on
376 * @curr: item we're advancing from
377 *
378 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
379 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000380 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * Caller must hold bond->lock
382 */
383struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
384{
385 struct vlan_entry *next, *last;
386
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000387 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (!curr) {
391 next = list_entry(bond->vlan_list.next,
392 struct vlan_entry, vlan_list);
393 } else {
394 last = list_entry(bond->vlan_list.prev,
395 struct vlan_entry, vlan_list);
396 if (last == curr) {
397 next = list_entry(bond->vlan_list.next,
398 struct vlan_entry, vlan_list);
399 } else {
400 next = list_entry(curr->vlan_list.next,
401 struct vlan_entry, vlan_list);
402 }
403 }
404
405 return next;
406}
407
408/**
409 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000410 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * @bond: bond device that got this skb for tx.
412 * @skb: hw accel VLAN tagged skb to transmit
413 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000414 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * When the bond gets an skb to transmit that is
416 * already hardware accelerated VLAN tagged, and it
417 * needs to relay this skb to a slave that is not
418 * hw accel capable, the skb needs to be "unaccelerated",
419 * i.e. strip the hwaccel tag and re-insert it as part
420 * of the payload.
421 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000422int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
423 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700425 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Jay Vosburghf35188f2010-07-21 12:14:47 +0000427 /* Test vlan_list not vlgrp to catch and handle 802.1p tags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!list_empty(&bond->vlan_list) &&
429 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
430 vlan_get_tag(skb, &vlan_id) == 0) {
431 skb->dev = slave_dev;
432 skb = vlan_put_tag(skb, vlan_id);
433 if (!skb) {
434 /* vlan_put_tag() frees the skb in case of error,
435 * so return success here so the calling functions
436 * won't attempt to free is again.
437 */
438 return 0;
439 }
440 } else {
441 skb->dev = slave_dev;
442 }
443
444 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700445#ifdef CONFIG_NET_POLL_CONTROLLER
446 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
447 struct netpoll *np = bond->dev->npinfo->netpoll;
448 slave_dev->npinfo = bond->dev->npinfo;
449 np->real_dev = np->dev = skb->dev;
450 slave_dev->priv_flags |= IFF_IN_NETPOLL;
451 netpoll_send_skb(np, skb);
452 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
453 np->dev = bond->dev;
454 } else
455#endif
456 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 return 0;
459}
460
461/*
462 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
463 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
464 * lock because:
465 * a. This operation is performed in IOCTL context,
466 * b. The operation is protected by the RTNL semaphore in the 8021q code,
467 * c. Holding a lock with BH disabled while directly calling a base driver
468 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000469 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * The design of synchronization/protection for this operation in the 8021q
471 * module is good for one or more VLAN devices over a single physical device
472 * and cannot be extended for a teaming solution like bonding, so there is a
473 * potential race condition here where a net device from the vlan group might
474 * be referenced (either by a base driver or the 8021q code) while it is being
475 * removed from the system. However, it turns out we're not making matters
476 * worse, and if it works for regular VLAN usage it will work here too.
477*/
478
479/**
480 * bond_vlan_rx_register - Propagates registration to slaves
481 * @bond_dev: bonding net device that got called
482 * @grp: vlan group being registered
483 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000484static void bond_vlan_rx_register(struct net_device *bond_dev,
485 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Wang Chen454d7c92008-11-12 23:37:49 -0800487 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct slave *slave;
489 int i;
490
Jay Vosburghf35188f2010-07-21 12:14:47 +0000491 write_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 bond->vlgrp = grp;
Jay Vosburghf35188f2010-07-21 12:14:47 +0000493 write_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 bond_for_each_slave(bond, slave, i) {
496 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800497 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800500 slave_ops->ndo_vlan_rx_register) {
501 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 }
504}
505
506/**
507 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
508 * @bond_dev: bonding net device that got called
509 * @vid: vlan id being added
510 */
511static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
512{
Wang Chen454d7c92008-11-12 23:37:49 -0800513 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct slave *slave;
515 int i, res;
516
517 bond_for_each_slave(bond, slave, i) {
518 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800519 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800522 slave_ops->ndo_vlan_rx_add_vid) {
523 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 }
526
527 res = bond_add_vlan(bond, vid);
528 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800529 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 bond_dev->name, vid);
531 }
532}
533
534/**
535 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
536 * @bond_dev: bonding net device that got called
537 * @vid: vlan id being removed
538 */
539static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
540{
Wang Chen454d7c92008-11-12 23:37:49 -0800541 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct slave *slave;
543 struct net_device *vlan_dev;
544 int i, res;
545
546 bond_for_each_slave(bond, slave, i) {
547 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800548 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800551 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /* Save and then restore vlan_dev in the grp array,
553 * since the slave's driver might clear it.
554 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800555 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800556 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800557 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 }
560
561 res = bond_del_vlan(bond, vid);
562 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800563 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 bond_dev->name, vid);
565 }
566}
567
568static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
569{
570 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 write_lock_bh(&bond->lock);
574
Jay Vosburghf35188f2010-07-21 12:14:47 +0000575 if (!bond->vlgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800579 slave_ops->ndo_vlan_rx_register)
580 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800583 !(slave_ops->ndo_vlan_rx_add_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800586 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
587 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589out:
590 write_unlock_bh(&bond->lock);
591}
592
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000593static void bond_del_vlans_from_slave(struct bonding *bond,
594 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800596 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct vlan_entry *vlan;
598 struct net_device *vlan_dev;
599
600 write_lock_bh(&bond->lock);
601
Jay Vosburghf35188f2010-07-21 12:14:47 +0000602 if (!bond->vlgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800606 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000610 if (!vlan->vlan_id)
611 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* Save and then restore vlan_dev in the grp array,
613 * since the slave's driver might clear it.
614 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800615 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800616 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800617 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
620unreg:
621 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800622 slave_ops->ndo_vlan_rx_register)
623 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625out:
626 write_unlock_bh(&bond->lock);
627}
628
629/*------------------------------- Link status -------------------------------*/
630
631/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800632 * Set the carrier state for the master according to the state of its
633 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
634 * do special 802.3ad magic.
635 *
636 * Returns zero if carrier state does not change, nonzero if it does.
637 */
638static int bond_set_carrier(struct bonding *bond)
639{
640 struct slave *slave;
641 int i;
642
643 if (bond->slave_cnt == 0)
644 goto down;
645
646 if (bond->params.mode == BOND_MODE_8023AD)
647 return bond_3ad_set_carrier(bond);
648
649 bond_for_each_slave(bond, slave, i) {
650 if (slave->link == BOND_LINK_UP) {
651 if (!netif_carrier_ok(bond->dev)) {
652 netif_carrier_on(bond->dev);
653 return 1;
654 }
655 return 0;
656 }
657 }
658
659down:
660 if (netif_carrier_ok(bond->dev)) {
661 netif_carrier_off(bond->dev);
662 return 1;
663 }
664 return 0;
665}
666
667/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * Get link speed and duplex from the slave's base driver
669 * using ethtool. If for some reason the call fails or the
670 * values are invalid, fake speed and duplex to 100/Full
671 * and return error.
672 */
673static int bond_update_speed_duplex(struct slave *slave)
674{
675 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700677 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /* Fake speed and duplex */
680 slave->speed = SPEED_100;
681 slave->duplex = DUPLEX_FULL;
682
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700683 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700686 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
687 if (res < 0)
688 return -1;
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 switch (etool.speed) {
691 case SPEED_10:
692 case SPEED_100:
693 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700694 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 break;
696 default:
697 return -1;
698 }
699
700 switch (etool.duplex) {
701 case DUPLEX_FULL:
702 case DUPLEX_HALF:
703 break;
704 default:
705 return -1;
706 }
707
708 slave->speed = etool.speed;
709 slave->duplex = etool.duplex;
710
711 return 0;
712}
713
714/*
715 * if <dev> supports MII link status reporting, check its link status.
716 *
717 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000718 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 *
720 * Return either BMSR_LSTATUS, meaning that the link is up (or we
721 * can't tell and just pretend it is), or 0, meaning that the link is
722 * down.
723 *
724 * If reporting is non-zero, instead of faking link up, return -1 if
725 * both ETHTOOL and MII ioctls fail (meaning the device does not
726 * support them). If use_carrier is set, return whatever it says.
727 * It'd be nice if there was a good way to tell if a driver supports
728 * netif_carrier, but there really isn't.
729 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000730static int bond_check_dev_link(struct bonding *bond,
731 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800733 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700734 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct ifreq ifr;
736 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Petri Gynther6c988852009-08-28 12:05:15 +0000738 if (!reporting && !netif_running(slave_dev))
739 return 0;
740
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800741 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Jiri Pirko29112f42009-04-24 01:58:23 +0000744 /* Try to get link status using Ethtool first. */
745 if (slave_dev->ethtool_ops) {
746 if (slave_dev->ethtool_ops->get_link) {
747 u32 link;
748
749 link = slave_dev->ethtool_ops->get_link(slave_dev);
750
751 return link ? BMSR_LSTATUS : 0;
752 }
753 }
754
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000755 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800756 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (ioctl) {
758 /* TODO: set pointer to correct ioctl on a per team member */
759 /* bases to make this more efficient. that is, once */
760 /* we determine the correct ioctl, we will always */
761 /* call it and not the others for that team */
762 /* member. */
763
764 /*
765 * We cannot assume that SIOCGMIIPHY will also read a
766 * register; not all network drivers (e.g., e100)
767 * support that.
768 */
769
770 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
771 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
772 mii = if_mii(&ifr);
773 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
774 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000775 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
776 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778 }
779
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700780 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700782 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * cannot report link status). If not reporting, pretend
784 * we're ok.
785 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000786 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789/*----------------------------- Multicast list ------------------------------*/
790
791/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 * Push the promiscuity flag down to appropriate slaves
793 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700794static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700796 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (USES_PRIMARY(bond->params.mode)) {
798 /* write lock already acquired */
799 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700800 err = dev_set_promiscuity(bond->curr_active_slave->dev,
801 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803 } else {
804 struct slave *slave;
805 int i;
806 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700807 err = dev_set_promiscuity(slave->dev, inc);
808 if (err)
809 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700812 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
815/*
816 * Push the allmulti flag down to all slaves
817 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700818static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700820 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (USES_PRIMARY(bond->params.mode)) {
822 /* write lock already acquired */
823 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700824 err = dev_set_allmulti(bond->curr_active_slave->dev,
825 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827 } else {
828 struct slave *slave;
829 int i;
830 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700831 err = dev_set_allmulti(slave->dev, inc);
832 if (err)
833 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700836 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839/*
840 * Add a Multicast address to slaves
841 * according to mode
842 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000843static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 if (USES_PRIMARY(bond->params.mode)) {
846 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000847 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000848 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 } else {
850 struct slave *slave;
851 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000852
853 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000854 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856}
857
858/*
859 * Remove a multicast address from slave
860 * according to mode
861 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000862static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 if (USES_PRIMARY(bond->params.mode)) {
865 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000866 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000867 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 } else {
869 struct slave *slave;
870 int i;
871 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000872 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874 }
875}
876
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800877
878/*
879 * Retrieve the list of registered multicast addresses for the bonding
880 * device and retransmit an IGMP JOIN request to the current active
881 * slave.
882 */
883static void bond_resend_igmp_join_requests(struct bonding *bond)
884{
885 struct in_device *in_dev;
886 struct ip_mc_list *im;
887
888 rcu_read_lock();
889 in_dev = __in_dev_get_rcu(bond->dev);
890 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000891 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800892 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800893 }
894
895 rcu_read_unlock();
896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * flush all members of flush->mc_list from device dev->mc_list
900 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000901static void bond_mc_list_flush(struct net_device *bond_dev,
902 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Wang Chen454d7c92008-11-12 23:37:49 -0800904 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000905 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Jiri Pirko22bedad32010-04-01 21:22:57 +0000907 netdev_for_each_mc_addr(ha, bond_dev)
908 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (bond->params.mode == BOND_MODE_8023AD) {
911 /* del lacpdu mc addr from mc list */
912 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
913
Jiri Pirko22bedad32010-04-01 21:22:57 +0000914 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916}
917
918/*--------------------------- Active slave change ---------------------------*/
919
920/*
921 * Update the mc list and multicast-related flags for the new and
922 * old active slaves (if any) according to the multicast mode, and
923 * promiscuous flags unconditionally.
924 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000925static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
926 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000928 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000930 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 /* nothing to do - mc list is already up-to-date on
932 * all slaves
933 */
934 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000937 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000940 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Jiri Pirko22bedad32010-04-01 21:22:57 +0000943 netdev_for_each_mc_addr(ha, bond->dev)
944 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 }
946
947 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700948 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000949 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000952 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Jiri Pirko22bedad32010-04-01 21:22:57 +0000955 netdev_for_each_mc_addr(ha, bond->dev)
956 dev_mc_add(new_active->dev, ha->addr);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800957 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959}
960
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700961/*
962 * bond_do_fail_over_mac
963 *
964 * Perform special MAC address swapping for fail_over_mac settings
965 *
966 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
967 */
968static void bond_do_fail_over_mac(struct bonding *bond,
969 struct slave *new_active,
970 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000971 __releases(&bond->curr_slave_lock)
972 __releases(&bond->lock)
973 __acquires(&bond->lock)
974 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700975{
976 u8 tmp_mac[ETH_ALEN];
977 struct sockaddr saddr;
978 int rv;
979
980 switch (bond->params.fail_over_mac) {
981 case BOND_FOM_ACTIVE:
982 if (new_active)
983 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
984 new_active->dev->addr_len);
985 break;
986 case BOND_FOM_FOLLOW:
987 /*
988 * if new_active && old_active, swap them
989 * if just old_active, do nothing (going to no active slave)
990 * if just new_active, set new_active to bond's MAC
991 */
992 if (!new_active)
993 return;
994
995 write_unlock_bh(&bond->curr_slave_lock);
996 read_unlock(&bond->lock);
997
998 if (old_active) {
999 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1000 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1001 ETH_ALEN);
1002 saddr.sa_family = new_active->dev->type;
1003 } else {
1004 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1005 saddr.sa_family = bond->dev->type;
1006 }
1007
1008 rv = dev_set_mac_address(new_active->dev, &saddr);
1009 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001010 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001011 bond->dev->name, -rv, new_active->dev->name);
1012 goto out;
1013 }
1014
1015 if (!old_active)
1016 goto out;
1017
1018 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1019 saddr.sa_family = old_active->dev->type;
1020
1021 rv = dev_set_mac_address(old_active->dev, &saddr);
1022 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001023 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001024 bond->dev->name, -rv, new_active->dev->name);
1025out:
1026 read_lock(&bond->lock);
1027 write_lock_bh(&bond->curr_slave_lock);
1028 break;
1029 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001030 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001031 bond->dev->name, bond->params.fail_over_mac);
1032 break;
1033 }
1034
1035}
1036
Jiri Pirkoa5499522009-09-25 03:28:09 +00001037static bool bond_should_change_active(struct bonding *bond)
1038{
1039 struct slave *prim = bond->primary_slave;
1040 struct slave *curr = bond->curr_active_slave;
1041
1042 if (!prim || !curr || curr->link != BOND_LINK_UP)
1043 return true;
1044 if (bond->force_primary) {
1045 bond->force_primary = false;
1046 return true;
1047 }
1048 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1049 (prim->speed < curr->speed ||
1050 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1051 return false;
1052 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1053 return false;
1054 return true;
1055}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/**
1058 * find_best_interface - select the best available slave to be the active one
1059 * @bond: our bonding struct
1060 *
1061 * Warning: Caller must hold curr_slave_lock for writing.
1062 */
1063static struct slave *bond_find_best_slave(struct bonding *bond)
1064{
1065 struct slave *new_active, *old_active;
1066 struct slave *bestslave = NULL;
1067 int mintime = bond->params.updelay;
1068 int i;
1069
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001070 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001073 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001075 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001080 bond->primary_slave->link == BOND_LINK_UP &&
1081 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 new_active = bond->primary_slave;
1083 }
1084
1085 /* remember where to stop iterating over the slaves */
1086 old_active = new_active;
1087
1088 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001089 if (new_active->link == BOND_LINK_UP) {
1090 return new_active;
1091 } else if (new_active->link == BOND_LINK_BACK &&
1092 IS_UP(new_active->dev)) {
1093 /* link up, but waiting for stabilization */
1094 if (new_active->delay < mintime) {
1095 mintime = new_active->delay;
1096 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 }
1099 }
1100
1101 return bestslave;
1102}
1103
1104/**
1105 * change_active_interface - change the active slave into the specified one
1106 * @bond: our bonding struct
1107 * @new: the new slave to make the active one
1108 *
1109 * Set the new slave to the bond's settings and unset them on the old
1110 * curr_active_slave.
1111 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1112 *
1113 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1114 * because it is apparently the best available slave we have, even though its
1115 * updelay hasn't timed out yet.
1116 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001117 * If new_active is not NULL, caller must hold bond->lock for read and
1118 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001120void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
1122 struct slave *old_active = bond->curr_active_slave;
1123
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001124 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001128 new_active->jiffies = jiffies;
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (new_active->link == BOND_LINK_BACK) {
1131 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001132 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1133 bond->dev->name, new_active->dev->name,
1134 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
1137 new_active->delay = 0;
1138 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001140 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Holger Eitzenberger58402052008-12-09 23:07:13 -08001143 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 } else {
1146 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001147 pr_info("%s: making interface %s the new active one.\n",
1148 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150 }
1151 }
1152
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001153 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Holger Eitzenberger58402052008-12-09 23:07:13 -08001156 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001158 if (old_active)
1159 bond_set_slave_inactive_flags(old_active);
1160 if (new_active)
1161 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 } else {
1163 bond->curr_active_slave = new_active;
1164 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001165
1166 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001167 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001168 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001169
1170 if (new_active) {
1171 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001172
Or Gerlitz709f8a42008-06-13 18:12:01 -07001173 if (bond->params.fail_over_mac)
1174 bond_do_fail_over_mac(bond, new_active,
1175 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001176
Or Gerlitz709f8a42008-06-13 18:12:01 -07001177 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001178 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001179
Brian Haley305d5522008-11-04 17:51:14 -08001180 bond->send_unsol_na = bond->params.num_unsol_na;
1181 bond_send_unsolicited_na(bond);
1182
Or Gerlitz01f31092008-06-13 18:12:02 -07001183 write_unlock_bh(&bond->curr_slave_lock);
1184 read_unlock(&bond->lock);
1185
Moni Shoua75c78502009-09-15 02:37:40 -07001186 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001187
1188 read_lock(&bond->lock);
1189 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001190 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001191 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001192
1193 /* resend IGMP joins since all were sent on curr_active_slave */
1194 if (bond->params.mode == BOND_MODE_ROUNDROBIN) {
1195 bond_resend_igmp_join_requests(bond);
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199/**
1200 * bond_select_active_slave - select a new active slave, if needed
1201 * @bond: our bonding struct
1202 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001203 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * - The old curr_active_slave has been released or lost its link.
1205 * - The primary_slave has got its link back.
1206 * - A slave has got its link back and there's no old curr_active_slave.
1207 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001208 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001210void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001213 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 best_slave = bond_find_best_slave(bond);
1216 if (best_slave != bond->curr_active_slave) {
1217 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001218 rv = bond_set_carrier(bond);
1219 if (!rv)
1220 return;
1221
1222 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001223 pr_info("%s: first active interface up!\n",
1224 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001225 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001226 pr_info("%s: now running without any active interface !\n",
1227 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230}
1231
1232/*--------------------------- slave list handling ---------------------------*/
1233
1234/*
1235 * This function attaches the slave to the end of list.
1236 *
1237 * bond->lock held for writing by caller.
1238 */
1239static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1240{
1241 if (bond->first_slave == NULL) { /* attaching the first slave */
1242 new_slave->next = new_slave;
1243 new_slave->prev = new_slave;
1244 bond->first_slave = new_slave;
1245 } else {
1246 new_slave->next = bond->first_slave;
1247 new_slave->prev = bond->first_slave->prev;
1248 new_slave->next->prev = new_slave;
1249 new_slave->prev->next = new_slave;
1250 }
1251
1252 bond->slave_cnt++;
1253}
1254
1255/*
1256 * This function detaches the slave from the list.
1257 * WARNING: no check is made to verify if the slave effectively
1258 * belongs to <bond>.
1259 * Nothing is freed on return, structures are just unchained.
1260 * If any slave pointer in bond was pointing to <slave>,
1261 * it should be changed by the calling function.
1262 *
1263 * bond->lock held for writing by caller.
1264 */
1265static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1266{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001267 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001270 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (bond->first_slave == slave) { /* slave is the first slave */
1274 if (bond->slave_cnt > 1) { /* there are more slave */
1275 bond->first_slave = slave->next;
1276 } else {
1277 bond->first_slave = NULL; /* slave was the last one */
1278 }
1279 }
1280
1281 slave->next = NULL;
1282 slave->prev = NULL;
1283 bond->slave_cnt--;
1284}
1285
WANG Congf6dc31a2010-05-06 00:48:51 -07001286#ifdef CONFIG_NET_POLL_CONTROLLER
1287/*
1288 * You must hold read lock on bond->lock before calling this.
1289 */
1290static bool slaves_support_netpoll(struct net_device *bond_dev)
1291{
1292 struct bonding *bond = netdev_priv(bond_dev);
1293 struct slave *slave;
1294 int i = 0;
1295 bool ret = true;
1296
1297 bond_for_each_slave(bond, slave, i) {
1298 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1299 !slave->dev->netdev_ops->ndo_poll_controller)
1300 ret = false;
1301 }
1302 return i != 0 && ret;
1303}
1304
1305static void bond_poll_controller(struct net_device *bond_dev)
1306{
1307 struct net_device *dev = bond_dev->npinfo->netpoll->real_dev;
1308 if (dev != bond_dev)
1309 netpoll_poll_dev(dev);
1310}
1311
1312static void bond_netpoll_cleanup(struct net_device *bond_dev)
1313{
1314 struct bonding *bond = netdev_priv(bond_dev);
1315 struct slave *slave;
1316 const struct net_device_ops *ops;
1317 int i;
1318
1319 read_lock(&bond->lock);
1320 bond_dev->npinfo = NULL;
1321 bond_for_each_slave(bond, slave, i) {
1322 if (slave->dev) {
1323 ops = slave->dev->netdev_ops;
1324 if (ops->ndo_netpoll_cleanup)
1325 ops->ndo_netpoll_cleanup(slave->dev);
1326 else
1327 slave->dev->npinfo = NULL;
1328 }
1329 }
1330 read_unlock(&bond->lock);
1331}
1332
1333#else
1334
1335static void bond_netpoll_cleanup(struct net_device *bond_dev)
1336{
1337}
1338
1339#endif
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341/*---------------------------------- IOCTL ----------------------------------*/
1342
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001343static int bond_sethwaddr(struct net_device *bond_dev,
1344 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001346 pr_debug("bond_dev=%p\n", bond_dev);
1347 pr_debug("slave_dev=%p\n", slave_dev);
1348 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1350 return 0;
1351}
1352
Herbert Xu7f353bf2007-08-10 15:47:58 -07001353#define BOND_VLAN_FEATURES \
1354 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1355 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001356
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001357/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001358 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001359 * feature bits are managed elsewhere, so preserve those feature bits
1360 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001361 */
1362static int bond_compute_features(struct bonding *bond)
1363{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001364 struct slave *slave;
1365 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001366 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001367 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001368 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1369 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001370 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001371
Herbert Xu7f353bf2007-08-10 15:47:58 -07001372 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001373 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1374
1375 if (!bond->first_slave)
1376 goto done;
1377
1378 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001379
Jay Vosburgh278339a2009-08-28 12:05:12 +00001380 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001381 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001382 features = netdev_increment_features(features,
1383 slave->dev->features,
1384 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001385 vlan_features = netdev_increment_features(vlan_features,
1386 slave->dev->vlan_features,
1387 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001388 if (slave->dev->hard_header_len > max_hard_header_len)
1389 max_hard_header_len = slave->dev->hard_header_len;
1390 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001391
Herbert Xub63365a2008-10-23 01:11:29 -07001392done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001393 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001394 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001395 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001396 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001397
1398 return 0;
1399}
1400
Moni Shoua872254d2007-10-09 19:43:38 -07001401static void bond_setup_by_slave(struct net_device *bond_dev,
1402 struct net_device *slave_dev)
1403{
Wang Chen454d7c92008-11-12 23:37:49 -08001404 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001405
Stephen Hemminger00829822008-11-20 20:14:53 -08001406 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001407
1408 bond_dev->type = slave_dev->type;
1409 bond_dev->hard_header_len = slave_dev->hard_header_len;
1410 bond_dev->addr_len = slave_dev->addr_len;
1411
1412 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1413 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001414 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001415}
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001418int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
Wang Chen454d7c92008-11-12 23:37:49 -08001420 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001421 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001423 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 struct sockaddr addr;
1425 int link_reporting;
1426 int old_features = bond_dev->features;
1427 int res = 0;
1428
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001429 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001430 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001431 pr_warning("%s: Warning: no link monitoring support for %s\n",
1432 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434
1435 /* bond must be initialized by bond_open() before enslaving */
1436 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001437 pr_warning("%s: master_dev is not up in bond_enslave\n",
1438 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440
1441 /* already enslaved */
1442 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001443 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return -EBUSY;
1445 }
1446
1447 /* vlan challenged mutual exclusion */
1448 /* no need to lock since we're protected by rtnl_lock */
1449 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001450 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001451 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001452 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1453 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 return -EPERM;
1455 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001456 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1457 bond_dev->name, slave_dev->name,
1458 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1460 }
1461 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001462 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (bond->slave_cnt == 0) {
1464 /* First slave, and it is not VLAN challenged,
1465 * so remove the block of adding VLANs over the bond.
1466 */
1467 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1468 }
1469 }
1470
Jay Vosburgh217df672005-09-26 16:11:50 -07001471 /*
1472 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001473 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001474 * the current ifenslave will set the interface down prior to
1475 * enslaving it; the old ifenslave will not.
1476 */
1477 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001478 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001479 slave_dev->name);
1480 res = -EPERM;
1481 goto err_undo_flags;
1482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Moni Shoua872254d2007-10-09 19:43:38 -07001484 /* set bonding device ether type by slave - bonding netdevices are
1485 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1486 * there is a need to override some of the type dependent attribs/funcs.
1487 *
1488 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1489 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1490 */
1491 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001492 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001493 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001494 bond_dev->name,
1495 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001496
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001497 res = netdev_bonding_change(bond_dev,
1498 NETDEV_PRE_TYPE_CHANGE);
1499 res = notifier_to_errno(res);
1500 if (res) {
1501 pr_err("%s: refused to change device type\n",
1502 bond_dev->name);
1503 res = -EBUSY;
1504 goto err_undo_flags;
1505 }
Moni Shoua75c78502009-09-15 02:37:40 -07001506
Jiri Pirko32a806c2010-03-19 04:00:23 +00001507 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001508 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001509 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001510
Moni Shouae36b9d12009-07-15 04:56:31 +00001511 if (slave_dev->type != ARPHRD_ETHER)
1512 bond_setup_by_slave(bond_dev, slave_dev);
1513 else
1514 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001515
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001516 netdev_bonding_change(bond_dev,
1517 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001518 }
Moni Shoua872254d2007-10-09 19:43:38 -07001519 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001520 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1521 slave_dev->name,
1522 slave_dev->type, bond_dev->type);
1523 res = -EINVAL;
1524 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001525 }
1526
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001527 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001528 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001529 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1530 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001531 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1532 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001533 pr_err("%s: Error: The slave device specified does not support setting the MAC address, but fail_over_mac is not set to active.\n",
1534 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001535 res = -EOPNOTSUPP;
1536 goto err_undo_flags;
1537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001540 /* If this is the first slave, then we need to set the master's hardware
1541 * address to be the same as the slave's. */
1542 if (bond->slave_cnt == 0)
1543 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1544 slave_dev->addr_len);
1545
1546
Joe Jin243cb4e2007-02-06 14:16:40 -08001547 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (!new_slave) {
1549 res = -ENOMEM;
1550 goto err_undo_flags;
1551 }
1552
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001553 /*
1554 * Set the new_slave's queue_id to be zero. Queue ID mapping
1555 * is set via sysfs or module option if desired.
1556 */
1557 new_slave->queue_id = 0;
1558
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001559 /* Save slave's original mtu and then set it to match the bond */
1560 new_slave->original_mtu = slave_dev->mtu;
1561 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1562 if (res) {
1563 pr_debug("Error %d calling dev_set_mtu\n", res);
1564 goto err_free;
1565 }
1566
Jay Vosburgh217df672005-09-26 16:11:50 -07001567 /*
1568 * Save slave's original ("permanent") mac address for modes
1569 * that need it, and for restoring it upon release, and then
1570 * set it to the master's address
1571 */
1572 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Jay Vosburghdd957c52007-10-09 19:57:24 -07001574 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001575 /*
1576 * Set slave to master's mac address. The application already
1577 * set the master's mac address to that of the first slave
1578 */
1579 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1580 addr.sa_family = slave_dev->type;
1581 res = dev_set_mac_address(slave_dev, &addr);
1582 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001583 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001584 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001585 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001588 res = netdev_set_master(slave_dev, bond_dev);
1589 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001590 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001591 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001592 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001593 /* open the slave since the application closed it */
1594 res = dev_open(slave_dev);
1595 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001596 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001597 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001601 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Holger Eitzenberger58402052008-12-09 23:07:13 -08001603 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 /* bond_alb_init_slave() must be called before all other stages since
1605 * it might fail and we do not want to have to undo everything
1606 */
1607 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001608 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001609 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
1611
1612 /* If the mode USES_PRIMARY, then the new slave gets the
1613 * master's promisc (and mc) settings only if it becomes the
1614 * curr_active_slave, and that is taken care of later when calling
1615 * bond_change_active()
1616 */
1617 if (!USES_PRIMARY(bond->params.mode)) {
1618 /* set promiscuity level to new slave */
1619 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001620 res = dev_set_promiscuity(slave_dev, 1);
1621 if (res)
1622 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 }
1624
1625 /* set allmulti level to new slave */
1626 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001627 res = dev_set_allmulti(slave_dev, 1);
1628 if (res)
1629 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
1631
David S. Millerb9e40852008-07-15 00:15:08 -07001632 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001634 netdev_for_each_mc_addr(ha, bond_dev)
1635 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001636 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
1639 if (bond->params.mode == BOND_MODE_8023AD) {
1640 /* add lacpdu mc addr to mc list */
1641 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1642
Jiri Pirko22bedad32010-04-01 21:22:57 +00001643 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
1645
1646 bond_add_vlans_on_slave(bond, slave_dev);
1647
1648 write_lock_bh(&bond->lock);
1649
1650 bond_attach_slave(bond, new_slave);
1651
1652 new_slave->delay = 0;
1653 new_slave->link_failure_count = 0;
1654
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001655 bond_compute_features(bond);
1656
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001657 write_unlock_bh(&bond->lock);
1658
1659 read_lock(&bond->lock);
1660
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001661 new_slave->last_arp_rx = jiffies;
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (bond->params.miimon && !bond->params.use_carrier) {
1664 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1665
1666 if ((link_reporting == -1) && !bond->params.arp_interval) {
1667 /*
1668 * miimon is set but a bonded network driver
1669 * does not support ETHTOOL/MII and
1670 * arp_interval is not set. Note: if
1671 * use_carrier is enabled, we will never go
1672 * here (because netif_carrier is always
1673 * supported); thus, we don't need to change
1674 * the messages for netif_carrier.
1675 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001676 pr_warning("%s: Warning: MII and ETHTOOL support not available for interface %s, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001677 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 } else if (link_reporting == -1) {
1679 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001680 pr_warning("%s: Warning: can't get link status from interface %s; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface.\n",
1681 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
1683 }
1684
1685 /* check for initial state */
1686 if (!bond->params.miimon ||
1687 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1688 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001689 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 new_slave->link = BOND_LINK_BACK;
1691 new_slave->delay = bond->params.updelay;
1692 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001693 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 new_slave->link = BOND_LINK_UP;
1695 }
1696 new_slave->jiffies = jiffies;
1697 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001698 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 new_slave->link = BOND_LINK_DOWN;
1700 }
1701
1702 if (bond_update_speed_duplex(new_slave) &&
1703 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001704 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1705 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001708 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1709 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 }
1712
1713 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1714 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001715 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001717 bond->force_primary = true;
1718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001721 write_lock_bh(&bond->curr_slave_lock);
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 switch (bond->params.mode) {
1724 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001725 bond_set_slave_inactive_flags(new_slave);
1726 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 break;
1728 case BOND_MODE_8023AD:
1729 /* in 802.3ad mode, the internal mechanism
1730 * will activate the slaves in the selected
1731 * aggregator
1732 */
1733 bond_set_slave_inactive_flags(new_slave);
1734 /* if this is the first slave */
1735 if (bond->slave_cnt == 1) {
1736 SLAVE_AD_INFO(new_slave).id = 1;
1737 /* Initialize AD with the number of times that the AD timer is called in 1 second
1738 * can be called only after the mac address of the bond is set
1739 */
1740 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1741 bond->params.lacp_fast);
1742 } else {
1743 SLAVE_AD_INFO(new_slave).id =
1744 SLAVE_AD_INFO(new_slave->prev).id + 1;
1745 }
1746
1747 bond_3ad_bind_slave(new_slave);
1748 break;
1749 case BOND_MODE_TLB:
1750 case BOND_MODE_ALB:
1751 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001752 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001753 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 break;
1755 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001756 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 /* always active in trunk mode */
1759 new_slave->state = BOND_STATE_ACTIVE;
1760
1761 /* In trunking mode there is little meaning to curr_active_slave
1762 * anyway (it holds no special properties of the bond device),
1763 * so we can change it without calling change_active_interface()
1764 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001765 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 break;
1769 } /* switch(bond_mode) */
1770
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001771 write_unlock_bh(&bond->curr_slave_lock);
1772
Jay Vosburghff59c452006-03-27 13:27:43 -08001773 bond_set_carrier(bond);
1774
WANG Congf6dc31a2010-05-06 00:48:51 -07001775#ifdef CONFIG_NET_POLL_CONTROLLER
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001776 /*
1777 * Netpoll and bonding is broken, make sure it is not initialized
1778 * until it is fixed.
1779 */
1780 if (disable_netpoll) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001781 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001782 } else {
1783 if (slaves_support_netpoll(bond_dev)) {
1784 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1785 if (bond_dev->npinfo)
1786 slave_dev->npinfo = bond_dev->npinfo;
1787 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
1788 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
1789 pr_info("New slave device %s does not support netpoll\n",
1790 slave_dev->name);
1791 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
1792 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001793 }
1794#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001795 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001797 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1798 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001799 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001800
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001801 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1802 bond_dev->name, slave_dev->name,
1803 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1804 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 /* enslave is successful */
1807 return 0;
1808
1809/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810err_close:
1811 dev_close(slave_dev);
1812
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001813err_unset_master:
1814 netdev_set_master(slave_dev, NULL);
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001817 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001818 /* XXX TODO - fom follow mode needs to change master's
1819 * MAC if this slave's MAC is in use by the bond, or at
1820 * least print a warning.
1821 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001822 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1823 addr.sa_family = slave_dev->type;
1824 dev_set_mac_address(slave_dev, &addr);
1825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001827err_restore_mtu:
1828 dev_set_mtu(slave_dev, new_slave->original_mtu);
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830err_free:
1831 kfree(new_slave);
1832
1833err_undo_flags:
1834 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return res;
1837}
1838
1839/*
1840 * Try to release the slave device <slave> from the bond device <master>
1841 * It is legal to access curr_active_slave without a lock because all the function
1842 * is write-locked.
1843 *
1844 * The rules for slave state should be:
1845 * for Active/Backup:
1846 * Active stays on all backups go down
1847 * for Bonded connections:
1848 * The first up interface should be left on and all others downed.
1849 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001850int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Wang Chen454d7c92008-11-12 23:37:49 -08001852 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 struct slave *slave, *oldcurrent;
1854 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 /* slave is not a slave or master is not master of this slave */
1857 if (!(slave_dev->flags & IFF_SLAVE) ||
1858 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001859 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 bond_dev->name, slave_dev->name);
1861 return -EINVAL;
1862 }
1863
WANG Congf6dc31a2010-05-06 00:48:51 -07001864 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 write_lock_bh(&bond->lock);
1866
1867 slave = bond_get_slave_by_dev(bond, slave_dev);
1868 if (!slave) {
1869 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001870 pr_info("%s: %s not enslaved\n",
1871 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001872 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 return -EINVAL;
1874 }
1875
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001876 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001877 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1878 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001879 pr_warning("%s: Warning: the permanent HWaddr of %s - %pM - is still in use by %s. Set the HWaddr of %s to a different address to avoid conflicts.\n",
1880 bond_dev->name, slave_dev->name,
1881 slave->perm_hwaddr,
1882 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
1884
1885 /* Inform AD package of unbinding of slave. */
1886 if (bond->params.mode == BOND_MODE_8023AD) {
1887 /* must be called before the slave is
1888 * detached from the list
1889 */
1890 bond_3ad_unbind_slave(slave);
1891 }
1892
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001893 pr_info("%s: releasing %s interface %s\n",
1894 bond_dev->name,
1895 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1896 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 oldcurrent = bond->curr_active_slave;
1899
1900 bond->current_arp_slave = NULL;
1901
1902 /* release the slave from its bond */
1903 bond_detach_slave(bond, slave);
1904
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001905 bond_compute_features(bond);
1906
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001907 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001910 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Holger Eitzenberger58402052008-12-09 23:07:13 -08001913 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 /* Must be called only after the slave has been
1915 * detached from the list and the curr_active_slave
1916 * has been cleared (if our_slave == old_current),
1917 * but before a new active slave is selected.
1918 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001919 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001921 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001924 if (oldcurrent == slave) {
1925 /*
1926 * Note that we hold RTNL over this sequence, so there
1927 * is no concern that another slave add/remove event
1928 * will interfere.
1929 */
1930 write_unlock_bh(&bond->lock);
1931 read_lock(&bond->lock);
1932 write_lock_bh(&bond->curr_slave_lock);
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 bond_select_active_slave(bond);
1935
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001936 write_unlock_bh(&bond->curr_slave_lock);
1937 read_unlock(&bond->lock);
1938 write_lock_bh(&bond->lock);
1939 }
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001942 bond_set_carrier(bond);
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 /* if the last slave was removed, zero the mac address
1945 * of the master so it will be set by the application
1946 * to the mac address of the first slave
1947 */
1948 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1949
Jay Vosburghf35188f2010-07-21 12:14:47 +00001950 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1952 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001953 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1954 bond_dev->name, bond_dev->name);
1955 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1956 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
1958 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1959 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001960 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1961 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1963 }
1964
1965 write_unlock_bh(&bond->lock);
1966
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001967 /* must do this from outside any spinlocks */
1968 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 bond_del_vlans_from_slave(bond, slave_dev);
1971
1972 /* If the mode USES_PRIMARY, then we should only remove its
1973 * promisc and mc settings if it was the curr_active_slave, but that was
1974 * already taken care of above when we detached the slave
1975 */
1976 if (!USES_PRIMARY(bond->params.mode)) {
1977 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001978 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001982 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001986 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001988 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990
1991 netdev_set_master(slave_dev, NULL);
1992
WANG Congf6dc31a2010-05-06 00:48:51 -07001993#ifdef CONFIG_NET_POLL_CONTROLLER
1994 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001995
1996 /* Make sure netpoll over stays disabled until fixed. */
1997 if (!disable_netpoll)
1998 if (slaves_support_netpoll(bond_dev))
1999 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002000 read_unlock_bh(&bond->lock);
2001 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2002 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2003 else
2004 slave_dev->npinfo = NULL;
2005#endif
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 /* close slave before restoring its mac address */
2008 dev_close(slave_dev);
2009
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002010 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002011 /* restore original ("permanent") mac address */
2012 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2013 addr.sa_family = slave_dev->type;
2014 dev_set_mac_address(slave_dev, &addr);
2015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002017 dev_set_mtu(slave_dev, slave->original_mtu);
2018
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002019 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002020 IFF_SLAVE_INACTIVE | IFF_BONDING |
2021 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 kfree(slave);
2024
2025 return 0; /* deletion OK */
2026}
2027
2028/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002029* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002030* Must be under rtnl_lock when this function is called.
2031*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002032int bond_release_and_destroy(struct net_device *bond_dev,
2033 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002034{
Wang Chen454d7c92008-11-12 23:37:49 -08002035 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002036 int ret;
2037
2038 ret = bond_release(bond_dev, slave_dev);
2039 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002040 pr_info("%s: destroying bond %s.\n",
2041 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002042 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002043 }
2044 return ret;
2045}
2046
2047/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 * This function releases all slaves.
2049 */
2050static int bond_release_all(struct net_device *bond_dev)
2051{
Wang Chen454d7c92008-11-12 23:37:49 -08002052 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 struct slave *slave;
2054 struct net_device *slave_dev;
2055 struct sockaddr addr;
2056
2057 write_lock_bh(&bond->lock);
2058
Jay Vosburghff59c452006-03-27 13:27:43 -08002059 netif_carrier_off(bond_dev);
2060
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002061 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 bond->current_arp_slave = NULL;
2065 bond->primary_slave = NULL;
2066 bond_change_active_slave(bond, NULL);
2067
2068 while ((slave = bond->first_slave) != NULL) {
2069 /* Inform AD package of unbinding of slave
2070 * before slave is detached from the list.
2071 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002072 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 slave_dev = slave->dev;
2076 bond_detach_slave(bond, slave);
2077
Jay Vosburgh25433312008-01-17 16:24:59 -08002078 /* now that the slave is detached, unlock and perform
2079 * all the undo steps that should not be called from
2080 * within a lock.
2081 */
2082 write_unlock_bh(&bond->lock);
2083
Holger Eitzenberger58402052008-12-09 23:07:13 -08002084 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 /* must be called only after the slave
2086 * has been detached from the list
2087 */
2088 bond_alb_deinit_slave(bond, slave);
2089 }
2090
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002091 bond_compute_features(bond);
2092
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002093 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 bond_del_vlans_from_slave(bond, slave_dev);
2095
2096 /* If the mode USES_PRIMARY, then we should only remove its
2097 * promisc and mc settings if it was the curr_active_slave, but that was
2098 * already taken care of above when we detached the slave
2099 */
2100 if (!USES_PRIMARY(bond->params.mode)) {
2101 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002102 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002106 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002110 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002112 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
2115 netdev_set_master(slave_dev, NULL);
2116
2117 /* close slave before restoring its mac address */
2118 dev_close(slave_dev);
2119
Jay Vosburghdd957c52007-10-09 19:57:24 -07002120 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002121 /* restore original ("permanent") mac address*/
2122 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2123 addr.sa_family = slave_dev->type;
2124 dev_set_mac_address(slave_dev, &addr);
2125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002127 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2128 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 kfree(slave);
2131
2132 /* re-acquire the lock before getting the next slave */
2133 write_lock_bh(&bond->lock);
2134 }
2135
2136 /* zero the mac address of the master so it will be
2137 * set by the application to the mac address of the
2138 * first slave
2139 */
2140 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2141
Jay Vosburghf35188f2010-07-21 12:14:47 +00002142 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002144 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002145 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2146 bond_dev->name, bond_dev->name);
2147 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2148 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
2150
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002151 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153out:
2154 write_unlock_bh(&bond->lock);
2155
2156 return 0;
2157}
2158
2159/*
2160 * This function changes the active slave to slave <slave_dev>.
2161 * It returns -EINVAL in the following cases.
2162 * - <slave_dev> is not found in the list.
2163 * - There is not active slave now.
2164 * - <slave_dev> is already active.
2165 * - The link state of <slave_dev> is not BOND_LINK_UP.
2166 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002167 * In these cases, this function does nothing.
2168 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 */
2170static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2171{
Wang Chen454d7c92008-11-12 23:37:49 -08002172 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 struct slave *old_active = NULL;
2174 struct slave *new_active = NULL;
2175 int res = 0;
2176
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002177 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002181 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002184 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002186 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002188 read_unlock(&bond->curr_slave_lock);
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 new_active = bond_get_slave_by_dev(bond, slave_dev);
2191
2192 /*
2193 * Changing to the current active: do nothing; return success.
2194 */
2195 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002196 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 return 0;
2198 }
2199
2200 if ((new_active) &&
2201 (old_active) &&
2202 (new_active->link == BOND_LINK_UP) &&
2203 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002204 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002206 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002207 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002210 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 return res;
2213}
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2216{
Wang Chen454d7c92008-11-12 23:37:49 -08002217 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219 info->bond_mode = bond->params.mode;
2220 info->miimon = bond->params.miimon;
2221
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002222 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002224 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 return 0;
2227}
2228
2229static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2230{
Wang Chen454d7c92008-11-12 23:37:49 -08002231 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002233 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002235 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 bond_for_each_slave(bond, slave, i) {
2238 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002239 res = 0;
2240 strcpy(info->slave_name, slave->dev->name);
2241 info->link = slave->link;
2242 info->state = slave->state;
2243 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 break;
2245 }
2246 }
2247
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002248 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Eric Dumazet689c96c2009-04-23 03:39:04 +00002250 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
2253/*-------------------------------- Monitoring -------------------------------*/
2254
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002255
2256static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002258 struct slave *slave;
2259 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002260 bool ignore_updelay;
2261
2262 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002265 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002267 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002270 case BOND_LINK_UP:
2271 if (link_state)
2272 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002274 slave->link = BOND_LINK_FAIL;
2275 slave->delay = bond->params.downdelay;
2276 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002277 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2278 bond->dev->name,
2279 (bond->params.mode ==
2280 BOND_MODE_ACTIVEBACKUP) ?
2281 ((slave->state == BOND_STATE_ACTIVE) ?
2282 "active " : "backup ") : "",
2283 slave->dev->name,
2284 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002286 /*FALLTHRU*/
2287 case BOND_LINK_FAIL:
2288 if (link_state) {
2289 /*
2290 * recovered before downdelay expired
2291 */
2292 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002294 pr_info("%s: link status up again after %d ms for interface %s.\n",
2295 bond->dev->name,
2296 (bond->params.downdelay - slave->delay) *
2297 bond->params.miimon,
2298 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002299 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002301
2302 if (slave->delay <= 0) {
2303 slave->new_link = BOND_LINK_DOWN;
2304 commit++;
2305 continue;
2306 }
2307
2308 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002311 case BOND_LINK_DOWN:
2312 if (!link_state)
2313 continue;
2314
2315 slave->link = BOND_LINK_BACK;
2316 slave->delay = bond->params.updelay;
2317
2318 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002319 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2320 bond->dev->name, slave->dev->name,
2321 ignore_updelay ? 0 :
2322 bond->params.updelay *
2323 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002325 /*FALLTHRU*/
2326 case BOND_LINK_BACK:
2327 if (!link_state) {
2328 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002329 pr_info("%s: link status down again after %d ms for interface %s.\n",
2330 bond->dev->name,
2331 (bond->params.updelay - slave->delay) *
2332 bond->params.miimon,
2333 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002334
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002335 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002337
Jiri Pirko41f89102009-04-24 03:57:29 +00002338 if (ignore_updelay)
2339 slave->delay = 0;
2340
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002341 if (slave->delay <= 0) {
2342 slave->new_link = BOND_LINK_UP;
2343 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002344 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002345 continue;
2346 }
2347
2348 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002350 }
2351 }
2352
2353 return commit;
2354}
2355
2356static void bond_miimon_commit(struct bonding *bond)
2357{
2358 struct slave *slave;
2359 int i;
2360
2361 bond_for_each_slave(bond, slave, i) {
2362 switch (slave->new_link) {
2363 case BOND_LINK_NOCHANGE:
2364 continue;
2365
2366 case BOND_LINK_UP:
2367 slave->link = BOND_LINK_UP;
2368 slave->jiffies = jiffies;
2369
2370 if (bond->params.mode == BOND_MODE_8023AD) {
2371 /* prevent it from being the active one */
2372 slave->state = BOND_STATE_BACKUP;
2373 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2374 /* make it immediately active */
2375 slave->state = BOND_STATE_ACTIVE;
2376 } else if (slave != bond->primary_slave) {
2377 /* prevent it from being the active one */
2378 slave->state = BOND_STATE_BACKUP;
2379 }
2380
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002381 pr_info("%s: link status definitely up for interface %s.\n",
2382 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002383
2384 /* notify ad that the link status has changed */
2385 if (bond->params.mode == BOND_MODE_8023AD)
2386 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2387
Holger Eitzenberger58402052008-12-09 23:07:13 -08002388 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002389 bond_alb_handle_link_change(bond, slave,
2390 BOND_LINK_UP);
2391
2392 if (!bond->curr_active_slave ||
2393 (slave == bond->primary_slave))
2394 goto do_failover;
2395
2396 continue;
2397
2398 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002399 if (slave->link_failure_count < UINT_MAX)
2400 slave->link_failure_count++;
2401
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002402 slave->link = BOND_LINK_DOWN;
2403
2404 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2405 bond->params.mode == BOND_MODE_8023AD)
2406 bond_set_slave_inactive_flags(slave);
2407
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002408 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2409 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002410
2411 if (bond->params.mode == BOND_MODE_8023AD)
2412 bond_3ad_handle_link_change(slave,
2413 BOND_LINK_DOWN);
2414
Jiri Pirkoae63e802009-05-27 05:42:36 +00002415 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002416 bond_alb_handle_link_change(bond, slave,
2417 BOND_LINK_DOWN);
2418
2419 if (slave == bond->curr_active_slave)
2420 goto do_failover;
2421
2422 continue;
2423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002425 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002426 bond->dev->name, slave->new_link,
2427 slave->dev->name);
2428 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002430 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
2432
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002433do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002434 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002435 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002437 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002438 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002439
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002440 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441}
2442
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002443/*
2444 * bond_mii_monitor
2445 *
2446 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002447 * inspection, then (if inspection indicates something needs to be done)
2448 * an acquisition of appropriate locks followed by a commit phase to
2449 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002450 */
2451void bond_mii_monitor(struct work_struct *work)
2452{
2453 struct bonding *bond = container_of(work, struct bonding,
2454 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002455
2456 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002457 if (bond->kill_timers)
2458 goto out;
2459
2460 if (bond->slave_cnt == 0)
2461 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002462
2463 if (bond->send_grat_arp) {
2464 read_lock(&bond->curr_slave_lock);
2465 bond_send_gratuitous_arp(bond);
2466 read_unlock(&bond->curr_slave_lock);
2467 }
2468
Brian Haley305d5522008-11-04 17:51:14 -08002469 if (bond->send_unsol_na) {
2470 read_lock(&bond->curr_slave_lock);
2471 bond_send_unsolicited_na(bond);
2472 read_unlock(&bond->curr_slave_lock);
2473 }
2474
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002475 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002476 read_unlock(&bond->lock);
2477 rtnl_lock();
2478 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002479
2480 bond_miimon_commit(bond);
2481
Jay Vosburgh56556622008-01-17 16:25:03 -08002482 read_unlock(&bond->lock);
2483 rtnl_unlock(); /* might sleep, hold no other locks */
2484 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002485 }
2486
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002487re_arm:
2488 if (bond->params.miimon)
2489 queue_delayed_work(bond->wq, &bond->mii_work,
2490 msecs_to_jiffies(bond->params.miimon));
2491out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002492 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002493}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002494
Al Virod3bb52b2007-08-22 20:06:58 -04002495static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002496{
2497 struct in_device *idev;
2498 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002499 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002500
2501 if (!dev)
2502 return 0;
2503
2504 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002505 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002506 if (!idev)
2507 goto out;
2508
2509 ifa = idev->ifa_list;
2510 if (!ifa)
2511 goto out;
2512
2513 addr = ifa->ifa_local;
2514out:
2515 rcu_read_unlock();
2516 return addr;
2517}
2518
Al Virod3bb52b2007-08-22 20:06:58 -04002519static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002520{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002521 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002522
2523 if (ip == bond->master_ip)
2524 return 1;
2525
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002526 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002527 if (ip == vlan->vlan_ip)
2528 return 1;
2529 }
2530
2531 return 0;
2532}
2533
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002534/*
2535 * We go to the (large) trouble of VLAN tagging ARP frames because
2536 * switches in VLAN mode (especially if ports are configured as
2537 * "native" to a VLAN) might not pass non-tagged frames.
2538 */
Al Virod3bb52b2007-08-22 20:06:58 -04002539static 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 -04002540{
2541 struct sk_buff *skb;
2542
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002543 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002544 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002545
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002546 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2547 NULL, slave_dev->dev_addr, NULL);
2548
2549 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002550 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002551 return;
2552 }
2553 if (vlan_id) {
2554 skb = vlan_put_tag(skb, vlan_id);
2555 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002556 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002557 return;
2558 }
2559 }
2560 arp_xmit(skb);
2561}
2562
2563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2565{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002566 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002567 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002568 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002569 struct net_device *vlan_dev;
2570 struct flowi fl;
2571 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Mitch Williams6b780562005-11-09 10:36:19 -08002573 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2574 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002575 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002576 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002577 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002578 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002579 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2580 bond->master_ip, 0);
2581 continue;
2582 }
2583
2584 /*
2585 * If VLANs are configured, we do a route lookup to
2586 * determine which VLAN interface would be used, so we
2587 * can tag the ARP with the proper VLAN tag.
2588 */
2589 memset(&fl, 0, sizeof(fl));
2590 fl.fl4_dst = targets[i];
2591 fl.fl4_tos = RTO_ONLINK;
2592
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002593 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002594 if (rv) {
2595 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002596 pr_warning("%s: no route to arp_ip_target %pI4\n",
2597 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002598 }
2599 continue;
2600 }
2601
2602 /*
2603 * This target is not on a VLAN
2604 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002605 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002606 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002607 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002608 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2609 bond->master_ip, 0);
2610 continue;
2611 }
2612
2613 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002614 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002615 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002616 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002617 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002618 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002619 vlan_dev->name, vlan_id);
2620 break;
2621 }
2622 }
2623
2624 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002625 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002626 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2627 vlan->vlan_ip, vlan_id);
2628 continue;
2629 }
2630
2631 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002632 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2633 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002634 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002635 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002636 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002637 }
2638}
2639
2640/*
2641 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2642 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002643 *
2644 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002645 */
2646static void bond_send_gratuitous_arp(struct bonding *bond)
2647{
2648 struct slave *slave = bond->curr_active_slave;
2649 struct vlan_entry *vlan;
2650 struct net_device *vlan_dev;
2651
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002652 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2653 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002654
2655 if (!slave || !bond->send_grat_arp ||
2656 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002657 return;
2658
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002659 bond->send_grat_arp--;
2660
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002661 if (bond->master_ip) {
2662 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002663 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002664 }
2665
Jay Vosburghf35188f2010-07-21 12:14:47 +00002666 if (!bond->vlgrp)
2667 return;
2668
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002669 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002670 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002671 if (vlan->vlan_ip) {
2672 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2673 vlan->vlan_ip, vlan->vlan_id);
2674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 }
2676}
2677
Al Virod3bb52b2007-08-22 20:06:58 -04002678static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002679{
2680 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002681 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002682
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002683 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002684 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002685 &sip, &tip, i, &targets[i],
2686 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002687 if (sip == targets[i]) {
2688 if (bond_has_this_ip(bond, tip))
2689 slave->last_arp_rx = jiffies;
2690 return;
2691 }
2692 }
2693}
2694
2695static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2696{
2697 struct arphdr *arp;
2698 struct slave *slave;
2699 struct bonding *bond;
2700 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002701 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002702
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002703 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2704 /*
2705 * When using VLANS and bonding, dev and oriv_dev may be
2706 * incorrect if the physical interface supports VLAN
2707 * acceleration. With this change ARP validation now
2708 * works for hosts only reachable on the VLAN interface.
2709 */
2710 dev = vlan_dev_real_dev(dev);
2711 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2712 }
2713
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002714 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2715 goto out;
2716
Wang Chen454d7c92008-11-12 23:37:49 -08002717 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002718 read_lock(&bond->lock);
2719
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002720 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002721 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2722 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002723
2724 slave = bond_get_slave_by_dev(bond, orig_dev);
2725 if (!slave || !slave_do_arp_validate(bond, slave))
2726 goto out_unlock;
2727
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002728 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002729 goto out_unlock;
2730
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002731 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002732 if (arp->ar_hln != dev->addr_len ||
2733 skb->pkt_type == PACKET_OTHERHOST ||
2734 skb->pkt_type == PACKET_LOOPBACK ||
2735 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2736 arp->ar_pro != htons(ETH_P_IP) ||
2737 arp->ar_pln != 4)
2738 goto out_unlock;
2739
2740 arp_ptr = (unsigned char *)(arp + 1);
2741 arp_ptr += dev->addr_len;
2742 memcpy(&sip, arp_ptr, 4);
2743 arp_ptr += 4 + dev->addr_len;
2744 memcpy(&tip, arp_ptr, 4);
2745
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002746 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002747 bond->dev->name, slave->dev->name, slave->state,
2748 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2749 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002750
2751 /*
2752 * Backup slaves won't see the ARP reply, but do come through
2753 * here for each ARP probe (so we swap the sip/tip to validate
2754 * the probe). In a "redundant switch, common router" type of
2755 * configuration, the ARP probe will (hopefully) travel from
2756 * the active, through one switch, the router, then the other
2757 * switch before reaching the backup.
2758 */
2759 if (slave->state == BOND_STATE_ACTIVE)
2760 bond_validate_arp(bond, slave, sip, tip);
2761 else
2762 bond_validate_arp(bond, slave, tip, sip);
2763
2764out_unlock:
2765 read_unlock(&bond->lock);
2766out:
2767 dev_kfree_skb(skb);
2768 return NET_RX_SUCCESS;
2769}
2770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771/*
2772 * this function is called regularly to monitor each slave's link
2773 * ensuring that traffic is being sent and received when arp monitoring
2774 * is used in load-balancing mode. if the adapter has been dormant, then an
2775 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2776 * arp monitoring in active backup mode.
2777 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002778void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002780 struct bonding *bond = container_of(work, struct bonding,
2781 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 struct slave *slave, *oldcurrent;
2783 int do_failover = 0;
2784 int delta_in_ticks;
2785 int i;
2786
2787 read_lock(&bond->lock);
2788
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002789 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002791 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002794 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797 read_lock(&bond->curr_slave_lock);
2798 oldcurrent = bond->curr_active_slave;
2799 read_unlock(&bond->curr_slave_lock);
2800
2801 /* see if any of the previous devices are up now (i.e. they have
2802 * xmt and rcv traffic). the curr_active_slave does not come into
2803 * the picture unless it is null. also, slave->jiffies is not needed
2804 * here because we send an arp on each slave and give a slave as
2805 * long as it needs to get the tx/rx within the delta.
2806 * TODO: what about up/down delay in arp mode? it wasn't here before
2807 * so it can wait
2808 */
2809 bond_for_each_slave(bond, slave, i) {
2810 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002811 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002812 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814 slave->link = BOND_LINK_UP;
2815 slave->state = BOND_STATE_ACTIVE;
2816
2817 /* primary_slave has no meaning in round-robin
2818 * mode. the window of a slave being up and
2819 * curr_active_slave being null after enslaving
2820 * is closed.
2821 */
2822 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002823 pr_info("%s: link status definitely up for interface %s, ",
2824 bond->dev->name,
2825 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 do_failover = 1;
2827 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002828 pr_info("%s: interface %s is now up\n",
2829 bond->dev->name,
2830 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832 }
2833 } else {
2834 /* slave->link == BOND_LINK_UP */
2835
2836 /* not all switches will respond to an arp request
2837 * when the source ip is 0, so don't take the link down
2838 * if we don't know our ip yet
2839 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002840 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002841 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
2843 slave->link = BOND_LINK_DOWN;
2844 slave->state = BOND_STATE_BACKUP;
2845
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002846 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002849 pr_info("%s: interface %s is now down.\n",
2850 bond->dev->name,
2851 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002853 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 }
2856 }
2857
2858 /* note: if switch is in round-robin mode, all links
2859 * must tx arp to ensure all links rx an arp - otherwise
2860 * links may oscillate or not come up at all; if switch is
2861 * in something like xor mode, there is nothing we can
2862 * do - all replies will be rx'ed on same link causing slaves
2863 * to be unstable during low/no traffic periods
2864 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002865 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 }
2868
2869 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002870 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
2872 bond_select_active_slave(bond);
2873
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002874 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 }
2876
2877re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002878 if (bond->params.arp_interval)
2879 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880out:
2881 read_unlock(&bond->lock);
2882}
2883
2884/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002885 * Called to inspect slaves for active-backup mode ARP monitor link state
2886 * changes. Sets new_link in slaves to specify what action should take
2887 * place for the slave. Returns 0 if no changes are found, >0 if changes
2888 * to link states must be committed.
2889 *
2890 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002892static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002895 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002898 slave->new_link = BOND_LINK_NOCHANGE;
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002901 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2902 delta_in_ticks)) {
2903 slave->new_link = BOND_LINK_UP;
2904 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002907 continue;
2908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002910 /*
2911 * Give slaves 2*delta after being enslaved or made
2912 * active. This avoids bouncing, as the last receive
2913 * times need a full ARP monitor cycle to be updated.
2914 */
2915 if (!time_after_eq(jiffies, slave->jiffies +
2916 2 * delta_in_ticks))
2917 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002919 /*
2920 * Backup slave is down if:
2921 * - No current_arp_slave AND
2922 * - more than 3*delta since last receive AND
2923 * - the bond has an IP address
2924 *
2925 * Note: a non-null current_arp_slave indicates
2926 * the curr_active_slave went down and we are
2927 * searching for a new one; under this condition
2928 * we only take the curr_active_slave down - this
2929 * gives each slave a chance to tx/rx traffic
2930 * before being taken out
2931 */
2932 if (slave->state == BOND_STATE_BACKUP &&
2933 !bond->current_arp_slave &&
2934 time_after(jiffies, slave_last_rx(bond, slave) +
2935 3 * delta_in_ticks)) {
2936 slave->new_link = BOND_LINK_DOWN;
2937 commit++;
2938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002940 /*
2941 * Active slave is down if:
2942 * - more than 2*delta since transmitting OR
2943 * - (more than 2*delta since receive AND
2944 * the bond has an IP address)
2945 */
2946 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002947 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002948 2 * delta_in_ticks) ||
2949 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2950 + 2 * delta_in_ticks)))) {
2951 slave->new_link = BOND_LINK_DOWN;
2952 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 }
2954 }
2955
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002956 return commit;
2957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002959/*
2960 * Called to commit link state changes noted by inspection step of
2961 * active-backup mode ARP monitor.
2962 *
2963 * Called with RTNL and bond->lock for read.
2964 */
2965static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2966{
2967 struct slave *slave;
2968 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002970 bond_for_each_slave(bond, slave, i) {
2971 switch (slave->new_link) {
2972 case BOND_LINK_NOCHANGE:
2973 continue;
2974
2975 case BOND_LINK_UP:
Jiri Pirkob9f60252009-08-31 11:09:38 +00002976 if ((!bond->curr_active_slave &&
2977 time_before_eq(jiffies,
2978 dev_trans_start(slave->dev) +
2979 delta_in_ticks)) ||
2980 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002981 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002982 bond->current_arp_slave = NULL;
2983
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002984 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002985 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002986
Jiri Pirkob9f60252009-08-31 11:09:38 +00002987 if (!bond->curr_active_slave ||
2988 (slave == bond->primary_slave))
2989 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002990
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002991 }
2992
Jiri Pirkob9f60252009-08-31 11:09:38 +00002993 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002994
2995 case BOND_LINK_DOWN:
2996 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002999 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003000 bond_set_slave_inactive_flags(slave);
3001
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003002 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003003 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003004
3005 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003006 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003007 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003008 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003009
3010 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003011
3012 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003013 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003014 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003016 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
Jiri Pirkob9f60252009-08-31 11:09:38 +00003019do_failover:
3020 ASSERT_RTNL();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003021 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003022 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003023 write_unlock_bh(&bond->curr_slave_lock);
3024 }
3025
3026 bond_set_carrier(bond);
3027}
3028
3029/*
3030 * Send ARP probes for active-backup mode ARP monitor.
3031 *
3032 * Called with bond->lock held for read.
3033 */
3034static void bond_ab_arp_probe(struct bonding *bond)
3035{
3036 struct slave *slave;
3037 int i;
3038
3039 read_lock(&bond->curr_slave_lock);
3040
3041 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003042 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3043 bond->current_arp_slave->dev->name,
3044 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003045
3046 if (bond->curr_active_slave) {
3047 bond_arp_send_all(bond, bond->curr_active_slave);
3048 read_unlock(&bond->curr_slave_lock);
3049 return;
3050 }
3051
3052 read_unlock(&bond->curr_slave_lock);
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 /* if we don't have a curr_active_slave, search for the next available
3055 * backup slave from the current_arp_slave and make it the candidate
3056 * for becoming the curr_active_slave
3057 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003058
3059 if (!bond->current_arp_slave) {
3060 bond->current_arp_slave = bond->first_slave;
3061 if (!bond->current_arp_slave)
3062 return;
3063 }
3064
3065 bond_set_slave_inactive_flags(bond->current_arp_slave);
3066
3067 /* search for next candidate */
3068 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3069 if (IS_UP(slave->dev)) {
3070 slave->link = BOND_LINK_BACK;
3071 bond_set_slave_active_flags(slave);
3072 bond_arp_send_all(bond, slave);
3073 slave->jiffies = jiffies;
3074 bond->current_arp_slave = slave;
3075 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
3077
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003078 /* if the link state is up at this point, we
3079 * mark it down - this can happen if we have
3080 * simultaneous link failures and
3081 * reselect_active_interface doesn't make this
3082 * one the current slave so it is still marked
3083 * up when it is actually down
3084 */
3085 if (slave->link == BOND_LINK_UP) {
3086 slave->link = BOND_LINK_DOWN;
3087 if (slave->link_failure_count < UINT_MAX)
3088 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003090 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003092 pr_info("%s: backup interface %s is now down.\n",
3093 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 }
3095 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003096}
3097
3098void bond_activebackup_arp_mon(struct work_struct *work)
3099{
3100 struct bonding *bond = container_of(work, struct bonding,
3101 arp_work.work);
3102 int delta_in_ticks;
3103
3104 read_lock(&bond->lock);
3105
3106 if (bond->kill_timers)
3107 goto out;
3108
3109 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3110
3111 if (bond->slave_cnt == 0)
3112 goto re_arm;
3113
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003114 if (bond->send_grat_arp) {
3115 read_lock(&bond->curr_slave_lock);
3116 bond_send_gratuitous_arp(bond);
3117 read_unlock(&bond->curr_slave_lock);
3118 }
3119
Brian Haley305d5522008-11-04 17:51:14 -08003120 if (bond->send_unsol_na) {
3121 read_lock(&bond->curr_slave_lock);
3122 bond_send_unsolicited_na(bond);
3123 read_unlock(&bond->curr_slave_lock);
3124 }
3125
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003126 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3127 read_unlock(&bond->lock);
3128 rtnl_lock();
3129 read_lock(&bond->lock);
3130
3131 bond_ab_arp_commit(bond, delta_in_ticks);
3132
3133 read_unlock(&bond->lock);
3134 rtnl_unlock();
3135 read_lock(&bond->lock);
3136 }
3137
3138 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003141 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003142 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143out:
3144 read_unlock(&bond->lock);
3145}
3146
3147/*------------------------------ proc/seq_file-------------------------------*/
3148
3149#ifdef CONFIG_PROC_FS
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003152 __acquires(&dev_base_lock)
3153 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
3155 struct bonding *bond = seq->private;
3156 loff_t off = 0;
3157 struct slave *slave;
3158 int i;
3159
3160 /* make sure the bond won't be taken away */
3161 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003162 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003164 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
3167 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003168 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 }
3171
3172 return NULL;
3173}
3174
3175static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3176{
3177 struct bonding *bond = seq->private;
3178 struct slave *slave = v;
3179
3180 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003181 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184 slave = slave->next;
3185
3186 return (slave == bond->first_slave) ? NULL : slave;
3187}
3188
3189static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003190 __releases(&bond->lock)
3191 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
3193 struct bonding *bond = seq->private;
3194
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003195 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 read_unlock(&dev_base_lock);
3197}
3198
3199static void bond_info_show_master(struct seq_file *seq)
3200{
3201 struct bonding *bond = seq->private;
3202 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003203 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
3205 read_lock(&bond->curr_slave_lock);
3206 curr = bond->curr_active_slave;
3207 read_unlock(&bond->curr_slave_lock);
3208
Jay Vosburghdd957c52007-10-09 19:57:24 -07003209 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 bond_mode_name(bond->params.mode));
3211
Jay Vosburghdd957c52007-10-09 19:57:24 -07003212 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3213 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003214 seq_printf(seq, " (fail_over_mac %s)",
3215 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003216
3217 seq_printf(seq, "\n");
3218
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003219 if (bond->params.mode == BOND_MODE_XOR ||
3220 bond->params.mode == BOND_MODE_8023AD) {
3221 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3222 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3223 bond->params.xmit_policy);
3224 }
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003227 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003228 (bond->primary_slave) ?
3229 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003230 if (bond->primary_slave)
3231 seq_printf(seq, " (primary_reselect %s)",
3232 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Jiri Pirkoa5499522009-09-25 03:28:09 +00003234 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 (curr) ? curr->dev->name : "None");
3236 }
3237
Jay Vosburghff59c452006-03-27 13:27:43 -08003238 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3239 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3241 seq_printf(seq, "Up Delay (ms): %d\n",
3242 bond->params.updelay * bond->params.miimon);
3243 seq_printf(seq, "Down Delay (ms): %d\n",
3244 bond->params.downdelay * bond->params.miimon);
3245
Mitch Williams4756b022005-11-09 10:36:25 -08003246
3247 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003248 if (bond->params.arp_interval > 0) {
3249 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003250 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3251 bond->params.arp_interval);
3252
3253 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3254
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003255 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003256 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003257 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003258 if (printed)
3259 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003260 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003261 printed = 1;
3262 }
3263 seq_printf(seq, "\n");
3264 }
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 if (bond->params.mode == BOND_MODE_8023AD) {
3267 struct ad_info ad_info;
3268
3269 seq_puts(seq, "\n802.3ad info\n");
3270 seq_printf(seq, "LACP rate: %s\n",
3271 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003272 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3273 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
3275 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3276 seq_printf(seq, "bond %s has no active aggregator\n",
3277 bond->dev->name);
3278 } else {
3279 seq_printf(seq, "Active Aggregator Info:\n");
3280
3281 seq_printf(seq, "\tAggregator ID: %d\n",
3282 ad_info.aggregator_id);
3283 seq_printf(seq, "\tNumber of ports: %d\n",
3284 ad_info.ports);
3285 seq_printf(seq, "\tActor Key: %d\n",
3286 ad_info.actor_key);
3287 seq_printf(seq, "\tPartner Key: %d\n",
3288 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003289 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3290 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 }
3292 }
3293}
3294
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003295static void bond_info_show_slave(struct seq_file *seq,
3296 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297{
3298 struct bonding *bond = seq->private;
3299
3300 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3301 seq_printf(seq, "MII Status: %s\n",
3302 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami655096452006-09-22 21:53:08 -07003303 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 slave->link_failure_count);
3305
Johannes Berge1749612008-10-27 15:59:26 -07003306 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308 if (bond->params.mode == BOND_MODE_8023AD) {
3309 const struct aggregator *agg
3310 = SLAVE_AD_INFO(slave).port.aggregator;
3311
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003312 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 seq_printf(seq, "Aggregator ID: %d\n",
3314 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003315 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003318 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319}
3320
3321static int bond_info_seq_show(struct seq_file *seq, void *v)
3322{
3323 if (v == SEQ_START_TOKEN) {
3324 seq_printf(seq, "%s\n", version);
3325 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003326 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329 return 0;
3330}
3331
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003332static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 .start = bond_info_seq_start,
3334 .next = bond_info_seq_next,
3335 .stop = bond_info_seq_stop,
3336 .show = bond_info_seq_show,
3337};
3338
3339static int bond_info_open(struct inode *inode, struct file *file)
3340{
3341 struct seq_file *seq;
3342 struct proc_dir_entry *proc;
3343 int res;
3344
3345 res = seq_open(file, &bond_info_seq_ops);
3346 if (!res) {
3347 /* recover the pointer buried in proc_dir_entry data */
3348 seq = file->private_data;
3349 proc = PDE(inode);
3350 seq->private = proc->data;
3351 }
3352
3353 return res;
3354}
3355
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003356static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 .owner = THIS_MODULE,
3358 .open = bond_info_open,
3359 .read = seq_read,
3360 .llseek = seq_lseek,
3361 .release = seq_release,
3362};
3363
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003364static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365{
3366 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003367 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003369 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003370 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003371 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003372 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003373 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003374 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3375 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003376 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379}
3380
3381static void bond_remove_proc_entry(struct bonding *bond)
3382{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003383 struct net_device *bond_dev = bond->dev;
3384 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3385
3386 if (bn->proc_dir && bond->proc_entry) {
3387 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 memset(bond->proc_file_name, 0, IFNAMSIZ);
3389 bond->proc_entry = NULL;
3390 }
3391}
3392
3393/* Create the bonding directory under /proc/net, if doesn't exist yet.
3394 * Caller must hold rtnl_lock.
3395 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003396static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003398 if (!bn->proc_dir) {
3399 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3400 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003401 pr_warning("Warning: cannot create /proc/net/%s\n",
3402 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 }
3404}
3405
3406/* Destroy the bonding directory under /proc/net, if empty.
3407 * Caller must hold rtnl_lock.
3408 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003409static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003411 if (bn->proc_dir) {
3412 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3413 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 }
3415}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003416
3417#else /* !CONFIG_PROC_FS */
3418
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003419static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003420{
3421}
3422
3423static void bond_remove_proc_entry(struct bonding *bond)
3424{
3425}
3426
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003427static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003428{
3429}
3430
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003431static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003432{
3433}
3434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435#endif /* CONFIG_PROC_FS */
3436
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003437
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438/*-------------------------- netdev event handling --------------------------*/
3439
3440/*
3441 * Change device name
3442 */
3443static int bond_event_changename(struct bonding *bond)
3444{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 bond_remove_proc_entry(bond);
3446 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003447
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 return NOTIFY_DONE;
3449}
3450
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003451static int bond_master_netdev_event(unsigned long event,
3452 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453{
Wang Chen454d7c92008-11-12 23:37:49 -08003454 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
3456 switch (event) {
3457 case NETDEV_CHANGENAME:
3458 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 default:
3460 break;
3461 }
3462
3463 return NOTIFY_DONE;
3464}
3465
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003466static int bond_slave_netdev_event(unsigned long event,
3467 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
3469 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003470 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472 switch (event) {
3473 case NETDEV_UNREGISTER:
3474 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003475 if (bond->setup_by_slave)
3476 bond_release_and_destroy(bond_dev, slave_dev);
3477 else
3478 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 }
3480 break;
3481 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003482 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3483 struct slave *slave;
3484
3485 slave = bond_get_slave_by_dev(bond, slave_dev);
3486 if (slave) {
3487 u16 old_speed = slave->speed;
3488 u16 old_duplex = slave->duplex;
3489
3490 bond_update_speed_duplex(slave);
3491
3492 if (bond_is_lb(bond))
3493 break;
3494
3495 if (old_speed != slave->speed)
3496 bond_3ad_adapter_speed_changed(slave);
3497 if (old_duplex != slave->duplex)
3498 bond_3ad_adapter_duplex_changed(slave);
3499 }
3500 }
3501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 break;
3503 case NETDEV_DOWN:
3504 /*
3505 * ... Or is it this?
3506 */
3507 break;
3508 case NETDEV_CHANGEMTU:
3509 /*
3510 * TODO: Should slaves be allowed to
3511 * independently alter their MTU? For
3512 * an active-backup bond, slaves need
3513 * not be the same type of device, so
3514 * MTUs may vary. For other modes,
3515 * slaves arguably should have the
3516 * same MTUs. To do this, we'd need to
3517 * take over the slave's change_mtu
3518 * function for the duration of their
3519 * servitude.
3520 */
3521 break;
3522 case NETDEV_CHANGENAME:
3523 /*
3524 * TODO: handle changing the primary's name
3525 */
3526 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003527 case NETDEV_FEAT_CHANGE:
3528 bond_compute_features(bond);
3529 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 default:
3531 break;
3532 }
3533
3534 return NOTIFY_DONE;
3535}
3536
3537/*
3538 * bond_netdev_event: handle netdev notifier chain events.
3539 *
3540 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003541 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 * locks for us to safely manipulate the slave devices (RTNL lock,
3543 * dev_probe_lock).
3544 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003545static int bond_netdev_event(struct notifier_block *this,
3546 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547{
3548 struct net_device *event_dev = (struct net_device *)ptr;
3549
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003550 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003551 event_dev ? event_dev->name : "None",
3552 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003554 if (!(event_dev->priv_flags & IFF_BONDING))
3555 return NOTIFY_DONE;
3556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003558 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 return bond_master_netdev_event(event, event_dev);
3560 }
3561
3562 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003563 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 return bond_slave_netdev_event(event, event_dev);
3565 }
3566
3567 return NOTIFY_DONE;
3568}
3569
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003570/*
3571 * bond_inetaddr_event: handle inetaddr notifier chain events.
3572 *
3573 * We keep track of device IPs primarily to use as source addresses in
3574 * ARP monitor probes (rather than spewing out broadcasts all the time).
3575 *
3576 * We track one IP for the main device (if it has one), plus one per VLAN.
3577 */
3578static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3579{
3580 struct in_ifaddr *ifa = ptr;
3581 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003582 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003583 struct bonding *bond;
3584 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003585
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003586 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003587 if (bond->dev == event_dev) {
3588 switch (event) {
3589 case NETDEV_UP:
3590 bond->master_ip = ifa->ifa_local;
3591 return NOTIFY_OK;
3592 case NETDEV_DOWN:
3593 bond->master_ip = bond_glean_dev_ip(bond->dev);
3594 return NOTIFY_OK;
3595 default:
3596 return NOTIFY_DONE;
3597 }
3598 }
3599
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003600 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003601 if (!bond->vlgrp)
3602 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003603 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003604 if (vlan_dev == event_dev) {
3605 switch (event) {
3606 case NETDEV_UP:
3607 vlan->vlan_ip = ifa->ifa_local;
3608 return NOTIFY_OK;
3609 case NETDEV_DOWN:
3610 vlan->vlan_ip =
3611 bond_glean_dev_ip(vlan_dev);
3612 return NOTIFY_OK;
3613 default:
3614 return NOTIFY_DONE;
3615 }
3616 }
3617 }
3618 }
3619 return NOTIFY_DONE;
3620}
3621
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622static struct notifier_block bond_netdev_notifier = {
3623 .notifier_call = bond_netdev_event,
3624};
3625
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003626static struct notifier_block bond_inetaddr_notifier = {
3627 .notifier_call = bond_inetaddr_event,
3628};
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630/*-------------------------- Packet type handling ---------------------------*/
3631
3632/* register to receive lacpdus on a bond */
3633static void bond_register_lacpdu(struct bonding *bond)
3634{
3635 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3636
3637 /* initialize packet type */
3638 pk_type->type = PKT_TYPE_LACPDU;
3639 pk_type->dev = bond->dev;
3640 pk_type->func = bond_3ad_lacpdu_recv;
3641
3642 dev_add_pack(pk_type);
3643}
3644
3645/* unregister to receive lacpdus on a bond */
3646static void bond_unregister_lacpdu(struct bonding *bond)
3647{
3648 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3649}
3650
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003651void bond_register_arp(struct bonding *bond)
3652{
3653 struct packet_type *pt = &bond->arp_mon_pt;
3654
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003655 if (pt->type)
3656 return;
3657
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003658 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003659 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003660 pt->func = bond_arp_rcv;
3661 dev_add_pack(pt);
3662}
3663
3664void bond_unregister_arp(struct bonding *bond)
3665{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003666 struct packet_type *pt = &bond->arp_mon_pt;
3667
3668 dev_remove_pack(pt);
3669 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003670}
3671
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003672/*---------------------------- Hashing Policies -----------------------------*/
3673
3674/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003675 * Hash for the output device based upon layer 2 and layer 3 data. If
3676 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3677 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003678static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003679{
3680 struct ethhdr *data = (struct ethhdr *)skb->data;
3681 struct iphdr *iph = ip_hdr(skb);
3682
Brian Haleyf14c4e42008-09-02 10:08:08 -04003683 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003684 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003685 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003686 }
3687
Jasper Spaansd3da6832009-10-23 04:08:46 +00003688 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003689}
3690
3691/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003692 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003693 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3694 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3695 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003696static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003697{
3698 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003699 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003700 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003701 int layer4_xor = 0;
3702
Brian Haleyf14c4e42008-09-02 10:08:08 -04003703 if (skb->protocol == htons(ETH_P_IP)) {
3704 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003705 (iph->protocol == IPPROTO_TCP ||
3706 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003707 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003708 }
3709 return (layer4_xor ^
3710 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3711
3712 }
3713
Jasper Spaansd3da6832009-10-23 04:08:46 +00003714 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003715}
3716
3717/*
3718 * Hash for the output device based upon layer 2 data
3719 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003720static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003721{
3722 struct ethhdr *data = (struct ethhdr *)skb->data;
3723
Jasper Spaansd3da6832009-10-23 04:08:46 +00003724 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003725}
3726
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727/*-------------------------- Device entry points ----------------------------*/
3728
3729static int bond_open(struct net_device *bond_dev)
3730{
Wang Chen454d7c92008-11-12 23:37:49 -08003731 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732
3733 bond->kill_timers = 0;
3734
Holger Eitzenberger58402052008-12-09 23:07:13 -08003735 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 /* bond_alb_initialize must be called before the timer
3737 * is started.
3738 */
3739 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3740 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003741 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 }
3743
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003744 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3745 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 }
3747
3748 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003749 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3750 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 }
3752
3753 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003754 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3755 INIT_DELAYED_WORK(&bond->arp_work,
3756 bond_activebackup_arp_mon);
3757 else
3758 INIT_DELAYED_WORK(&bond->arp_work,
3759 bond_loadbalance_arp_mon);
3760
3761 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003762 if (bond->params.arp_validate)
3763 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 }
3765
3766 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003767 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003768 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 /* register to receive LACPDUs */
3770 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003771 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 }
3773
3774 return 0;
3775}
3776
3777static int bond_close(struct net_device *bond_dev)
3778{
Wang Chen454d7c92008-11-12 23:37:49 -08003779 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
3781 if (bond->params.mode == BOND_MODE_8023AD) {
3782 /* Unregister the receive of LACPDUs */
3783 bond_unregister_lacpdu(bond);
3784 }
3785
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003786 if (bond->params.arp_validate)
3787 bond_unregister_arp(bond);
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 write_lock_bh(&bond->lock);
3790
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003791 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003792 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
3794 /* signal timers not to re-arm */
3795 bond->kill_timers = 1;
3796
3797 write_unlock_bh(&bond->lock);
3798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003800 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 }
3802
3803 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003804 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 }
3806
3807 switch (bond->params.mode) {
3808 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003809 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 break;
3811 case BOND_MODE_TLB:
3812 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003813 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 break;
3815 default:
3816 break;
3817 }
3818
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Holger Eitzenberger58402052008-12-09 23:07:13 -08003820 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 /* Must be called only after all
3822 * slaves have been released
3823 */
3824 bond_alb_deinitialize(bond);
3825 }
3826
3827 return 0;
3828}
3829
Eric Dumazet28172732010-07-07 14:58:56 -07003830static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3831 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832{
Wang Chen454d7c92008-11-12 23:37:49 -08003833 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003834 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 struct slave *slave;
3836 int i;
3837
Eric Dumazet28172732010-07-07 14:58:56 -07003838 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
3840 read_lock_bh(&bond->lock);
3841
3842 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003843 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003844 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003845
Eric Dumazet28172732010-07-07 14:58:56 -07003846 stats->rx_packets += sstats->rx_packets;
3847 stats->rx_bytes += sstats->rx_bytes;
3848 stats->rx_errors += sstats->rx_errors;
3849 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Eric Dumazet28172732010-07-07 14:58:56 -07003851 stats->tx_packets += sstats->tx_packets;
3852 stats->tx_bytes += sstats->tx_bytes;
3853 stats->tx_errors += sstats->tx_errors;
3854 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Eric Dumazet28172732010-07-07 14:58:56 -07003856 stats->multicast += sstats->multicast;
3857 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
Eric Dumazet28172732010-07-07 14:58:56 -07003859 stats->rx_length_errors += sstats->rx_length_errors;
3860 stats->rx_over_errors += sstats->rx_over_errors;
3861 stats->rx_crc_errors += sstats->rx_crc_errors;
3862 stats->rx_frame_errors += sstats->rx_frame_errors;
3863 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3864 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Eric Dumazet28172732010-07-07 14:58:56 -07003866 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3867 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3868 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3869 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3870 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 }
3872
3873 read_unlock_bh(&bond->lock);
3874
3875 return stats;
3876}
3877
3878static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3879{
3880 struct net_device *slave_dev = NULL;
3881 struct ifbond k_binfo;
3882 struct ifbond __user *u_binfo = NULL;
3883 struct ifslave k_sinfo;
3884 struct ifslave __user *u_sinfo = NULL;
3885 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 int res = 0;
3887
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003888 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889
3890 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 case SIOCGMIIPHY:
3892 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003893 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003895
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 mii->phy_id = 0;
3897 /* Fall Through */
3898 case SIOCGMIIREG:
3899 /*
3900 * We do this again just in case we were called by SIOCGMIIREG
3901 * instead of SIOCGMIIPHY.
3902 */
3903 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003904 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003909 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003911 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003913 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003915
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003917 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 }
3919
3920 return 0;
3921 case BOND_INFO_QUERY_OLD:
3922 case SIOCBONDINFOQUERY:
3923 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3924
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003925 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
3928 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003929 if (res == 0 &&
3930 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3931 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
3933 return res;
3934 case BOND_SLAVE_INFO_QUERY_OLD:
3935 case SIOCBONDSLAVEINFOQUERY:
3936 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3937
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003938 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
3941 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003942 if (res == 0 &&
3943 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3944 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
3946 return res;
3947 default:
3948 /* Go on */
3949 break;
3950 }
3951
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003952 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003955 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003957 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003959 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003961 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003962 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 switch (cmd) {
3964 case BOND_ENSLAVE_OLD:
3965 case SIOCBONDENSLAVE:
3966 res = bond_enslave(bond_dev, slave_dev);
3967 break;
3968 case BOND_RELEASE_OLD:
3969 case SIOCBONDRELEASE:
3970 res = bond_release(bond_dev, slave_dev);
3971 break;
3972 case BOND_SETHWADDR_OLD:
3973 case SIOCBONDSETHWADDR:
3974 res = bond_sethwaddr(bond_dev, slave_dev);
3975 break;
3976 case BOND_CHANGE_ACTIVE_OLD:
3977 case SIOCBONDCHANGEACTIVE:
3978 res = bond_ioctl_change_active(bond_dev, slave_dev);
3979 break;
3980 default:
3981 res = -EOPNOTSUPP;
3982 }
3983
3984 dev_put(slave_dev);
3985 }
3986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 return res;
3988}
3989
Jiri Pirko22bedad32010-04-01 21:22:57 +00003990static bool bond_addr_in_mc_list(unsigned char *addr,
3991 struct netdev_hw_addr_list *list,
3992 int addrlen)
3993{
3994 struct netdev_hw_addr *ha;
3995
3996 netdev_hw_addr_list_for_each(ha, list)
3997 if (!memcmp(ha->addr, addr, addrlen))
3998 return true;
3999
4000 return false;
4001}
4002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003static void bond_set_multicast_list(struct net_device *bond_dev)
4004{
Wang Chen454d7c92008-11-12 23:37:49 -08004005 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004006 struct netdev_hw_addr *ha;
4007 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 /*
4010 * Do promisc before checking multicast_mode
4011 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004012 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004013 /*
4014 * FIXME: Need to handle the error when one of the multi-slaves
4015 * encounters error.
4016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004019
4020 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004022
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
4024 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004025 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004026 /*
4027 * FIXME: Need to handle the error when one of the multi-slaves
4028 * encounters error.
4029 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004032
4033 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004035
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004037 read_lock(&bond->lock);
4038
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 bond->flags = bond_dev->flags;
4040
4041 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004042 netdev_for_each_mc_addr(ha, bond_dev) {
4043 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4044 bond_dev->addr_len);
4045 if (!found)
4046 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 }
4048
4049 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004050 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4051 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4052 bond_dev->addr_len);
4053 if (!found)
4054 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 }
4056
4057 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004058 __hw_addr_flush(&bond->mc_list);
4059 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4060 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004062 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063}
4064
Stephen Hemminger00829822008-11-20 20:14:53 -08004065static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4066{
4067 struct bonding *bond = netdev_priv(dev);
4068 struct slave *slave = bond->first_slave;
4069
4070 if (slave) {
4071 const struct net_device_ops *slave_ops
4072 = slave->dev->netdev_ops;
4073 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004074 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004075 }
4076 return 0;
4077}
4078
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079/*
4080 * Change the MTU of all of a master's slaves to match the master
4081 */
4082static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4083{
Wang Chen454d7c92008-11-12 23:37:49 -08004084 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 struct slave *slave, *stop_at;
4086 int res = 0;
4087 int i;
4088
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004089 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004090 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
4092 /* Can't hold bond->lock with bh disabled here since
4093 * some base drivers panic. On the other hand we can't
4094 * hold bond->lock without bh disabled because we'll
4095 * deadlock. The only solution is to rely on the fact
4096 * that we're under rtnl_lock here, and the slaves
4097 * list won't change. This doesn't solve the problem
4098 * of setting the slave's MTU while it is
4099 * transmitting, but the assumption is that the base
4100 * driver can handle that.
4101 *
4102 * TODO: figure out a way to safely iterate the slaves
4103 * list, but without holding a lock around the actual
4104 * call to the base driver.
4105 */
4106
4107 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004108 pr_debug("s %p s->p %p c_m %p\n",
4109 slave,
4110 slave->prev,
4111 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004112
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 res = dev_set_mtu(slave->dev, new_mtu);
4114
4115 if (res) {
4116 /* If we failed to set the slave's mtu to the new value
4117 * we must abort the operation even in ACTIVE_BACKUP
4118 * mode, because if we allow the backup slaves to have
4119 * different mtu values than the active slave we'll
4120 * need to change their mtu when doing a failover. That
4121 * means changing their mtu from timer context, which
4122 * is probably not a good idea.
4123 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004124 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 goto unwind;
4126 }
4127 }
4128
4129 bond_dev->mtu = new_mtu;
4130
4131 return 0;
4132
4133unwind:
4134 /* unwind from head to the slave that failed */
4135 stop_at = slave;
4136 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4137 int tmp_res;
4138
4139 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4140 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004141 pr_debug("unwind err %d dev %s\n",
4142 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 }
4144 }
4145
4146 return res;
4147}
4148
4149/*
4150 * Change HW address
4151 *
4152 * Note that many devices must be down to change the HW address, and
4153 * downing the master releases all slaves. We can make bonds full of
4154 * bonding devices to test this, however.
4155 */
4156static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4157{
Wang Chen454d7c92008-11-12 23:37:49 -08004158 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 struct sockaddr *sa = addr, tmp_sa;
4160 struct slave *slave, *stop_at;
4161 int res = 0;
4162 int i;
4163
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004164 if (bond->params.mode == BOND_MODE_ALB)
4165 return bond_alb_set_mac_address(bond_dev, addr);
4166
4167
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004168 pr_debug("bond=%p, name=%s\n",
4169 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170
Jay Vosburghdd957c52007-10-09 19:57:24 -07004171 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004172 * If fail_over_mac is set to active, do nothing and return
4173 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004174 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004175 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004176 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004177
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004178 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181 /* Can't hold bond->lock with bh disabled here since
4182 * some base drivers panic. On the other hand we can't
4183 * hold bond->lock without bh disabled because we'll
4184 * deadlock. The only solution is to rely on the fact
4185 * that we're under rtnl_lock here, and the slaves
4186 * list won't change. This doesn't solve the problem
4187 * of setting the slave's hw address while it is
4188 * transmitting, but the assumption is that the base
4189 * driver can handle that.
4190 *
4191 * TODO: figure out a way to safely iterate the slaves
4192 * list, but without holding a lock around the actual
4193 * call to the base driver.
4194 */
4195
4196 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004197 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004198 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004200 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004202 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 goto unwind;
4204 }
4205
4206 res = dev_set_mac_address(slave->dev, addr);
4207 if (res) {
4208 /* TODO: consider downing the slave
4209 * and retry ?
4210 * User should expect communications
4211 * breakage anyway until ARP finish
4212 * updating, so...
4213 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004214 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 goto unwind;
4216 }
4217 }
4218
4219 /* success */
4220 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4221 return 0;
4222
4223unwind:
4224 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4225 tmp_sa.sa_family = bond_dev->type;
4226
4227 /* unwind from head to the slave that failed */
4228 stop_at = slave;
4229 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4230 int tmp_res;
4231
4232 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4233 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004234 pr_debug("unwind err %d dev %s\n",
4235 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 }
4237 }
4238
4239 return res;
4240}
4241
4242static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4243{
Wang Chen454d7c92008-11-12 23:37:49 -08004244 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004246 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004247 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
4249 read_lock(&bond->lock);
4250
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004251 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004253 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004254 * Start with the curr_active_slave that joined the bond as the
4255 * default for sending IGMP traffic. For failover purposes one
4256 * needs to maintain some consistency for the interface that will
4257 * send the join/membership reports. The curr_active_slave found
4258 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004259 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004260 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004261 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004263 read_lock(&bond->curr_slave_lock);
4264 slave = bond->curr_active_slave;
4265 read_unlock(&bond->curr_slave_lock);
4266
4267 if (!slave)
4268 goto out;
4269 } else {
4270 /*
4271 * Concurrent TX may collide on rr_tx_counter; we accept
4272 * that as being rare enough not to justify using an
4273 * atomic op here.
4274 */
4275 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4276
4277 bond_for_each_slave(bond, slave, i) {
4278 slave_no--;
4279 if (slave_no < 0)
4280 break;
4281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 }
4283
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004284 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 bond_for_each_slave_from(bond, slave, i, start_at) {
4286 if (IS_UP(slave->dev) &&
4287 (slave->link == BOND_LINK_UP) &&
4288 (slave->state == BOND_STATE_ACTIVE)) {
4289 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 break;
4291 }
4292 }
4293
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294out:
4295 if (res) {
4296 /* no suitable interface, frame not sent */
4297 dev_kfree_skb(skb);
4298 }
4299 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004300 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301}
4302
John W. Linville075897c2005-09-28 17:50:53 -04004303
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304/*
4305 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4306 * the bond has a usable interface.
4307 */
4308static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4309{
Wang Chen454d7c92008-11-12 23:37:49 -08004310 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 int res = 1;
4312
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 read_lock(&bond->lock);
4314 read_lock(&bond->curr_slave_lock);
4315
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004316 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318
John W. Linville075897c2005-09-28 17:50:53 -04004319 if (!bond->curr_active_slave)
4320 goto out;
4321
John W. Linville075897c2005-09-28 17:50:53 -04004322 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4323
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004325 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 /* no suitable interface, frame not sent */
4327 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004328
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 read_unlock(&bond->curr_slave_lock);
4330 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004331 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332}
4333
4334/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004335 * In bond_xmit_xor() , we determine the output device by using a pre-
4336 * determined xmit_hash_policy(), If the selected device is not enabled,
4337 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 */
4339static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4340{
Wang Chen454d7c92008-11-12 23:37:49 -08004341 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 struct slave *slave, *start_at;
4343 int slave_no;
4344 int i;
4345 int res = 1;
4346
4347 read_lock(&bond->lock);
4348
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004349 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Jasper Spaansa361c832009-10-23 04:09:24 +00004352 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
4354 bond_for_each_slave(bond, slave, i) {
4355 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004356 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 }
4359
4360 start_at = slave;
4361
4362 bond_for_each_slave_from(bond, slave, i, start_at) {
4363 if (IS_UP(slave->dev) &&
4364 (slave->link == BOND_LINK_UP) &&
4365 (slave->state == BOND_STATE_ACTIVE)) {
4366 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4367 break;
4368 }
4369 }
4370
4371out:
4372 if (res) {
4373 /* no suitable interface, frame not sent */
4374 dev_kfree_skb(skb);
4375 }
4376 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004377 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378}
4379
4380/*
4381 * in broadcast mode, we send everything to all usable interfaces.
4382 */
4383static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4384{
Wang Chen454d7c92008-11-12 23:37:49 -08004385 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 struct slave *slave, *start_at;
4387 struct net_device *tx_dev = NULL;
4388 int i;
4389 int res = 1;
4390
4391 read_lock(&bond->lock);
4392
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004393 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396 read_lock(&bond->curr_slave_lock);
4397 start_at = bond->curr_active_slave;
4398 read_unlock(&bond->curr_slave_lock);
4399
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004400 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
4403 bond_for_each_slave_from(bond, slave, i, start_at) {
4404 if (IS_UP(slave->dev) &&
4405 (slave->link == BOND_LINK_UP) &&
4406 (slave->state == BOND_STATE_ACTIVE)) {
4407 if (tx_dev) {
4408 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4409 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004410 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004411 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 continue;
4413 }
4414
4415 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4416 if (res) {
4417 dev_kfree_skb(skb2);
4418 continue;
4419 }
4420 }
4421 tx_dev = slave->dev;
4422 }
4423 }
4424
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004425 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
4428out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004429 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 /* no suitable interface, frame not sent */
4431 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 /* frame sent to all suitable interfaces */
4434 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004435 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436}
4437
4438/*------------------------- Device initialization ---------------------------*/
4439
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004440static void bond_set_xmit_hash_policy(struct bonding *bond)
4441{
4442 switch (bond->params.xmit_policy) {
4443 case BOND_XMIT_POLICY_LAYER23:
4444 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4445 break;
4446 case BOND_XMIT_POLICY_LAYER34:
4447 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4448 break;
4449 case BOND_XMIT_POLICY_LAYER2:
4450 default:
4451 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4452 break;
4453 }
4454}
4455
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004456/*
4457 * Lookup the slave that corresponds to a qid
4458 */
4459static inline int bond_slave_override(struct bonding *bond,
4460 struct sk_buff *skb)
4461{
4462 int i, res = 1;
4463 struct slave *slave = NULL;
4464 struct slave *check_slave;
4465
4466 read_lock(&bond->lock);
4467
4468 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4469 goto out;
4470
4471 /* Find out if any slaves have the same mapping as this skb. */
4472 bond_for_each_slave(bond, check_slave, i) {
4473 if (check_slave->queue_id == skb->queue_mapping) {
4474 slave = check_slave;
4475 break;
4476 }
4477 }
4478
4479 /* If the slave isn't UP, use default transmit policy. */
4480 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4481 (slave->link == BOND_LINK_UP)) {
4482 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4483 }
4484
4485out:
4486 read_unlock(&bond->lock);
4487 return res;
4488}
4489
4490static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4491{
4492 /*
4493 * This helper function exists to help dev_pick_tx get the correct
4494 * destination queue. Using a helper function skips the a call to
4495 * skb_tx_hash and will put the skbs in the queue we expect on their
4496 * way down to the bonding driver.
4497 */
4498 return skb->queue_mapping;
4499}
4500
Stephen Hemminger424efe92009-08-31 19:50:51 +00004501static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004502{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004503 struct bonding *bond = netdev_priv(dev);
4504
4505 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4506 if (!bond_slave_override(bond, skb))
4507 return NETDEV_TX_OK;
4508 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004509
4510 switch (bond->params.mode) {
4511 case BOND_MODE_ROUNDROBIN:
4512 return bond_xmit_roundrobin(skb, dev);
4513 case BOND_MODE_ACTIVEBACKUP:
4514 return bond_xmit_activebackup(skb, dev);
4515 case BOND_MODE_XOR:
4516 return bond_xmit_xor(skb, dev);
4517 case BOND_MODE_BROADCAST:
4518 return bond_xmit_broadcast(skb, dev);
4519 case BOND_MODE_8023AD:
4520 return bond_3ad_xmit_xor(skb, dev);
4521 case BOND_MODE_ALB:
4522 case BOND_MODE_TLB:
4523 return bond_alb_xmit(skb, dev);
4524 default:
4525 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004526 pr_err("%s: Error: Unknown bonding mode %d\n",
4527 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004528 WARN_ON_ONCE(1);
4529 dev_kfree_skb(skb);
4530 return NETDEV_TX_OK;
4531 }
4532}
4533
4534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535/*
4536 * set bond mode specific net device operations
4537 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004538void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004540 struct net_device *bond_dev = bond->dev;
4541
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 switch (mode) {
4543 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 break;
4545 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 break;
4547 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004548 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 break;
4550 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 break;
4552 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004553 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004554 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004557 bond_set_master_alb_flags(bond);
4558 /* FALLTHRU */
4559 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 break;
4561 default:
4562 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004563 pr_err("%s: Error: Unknown bonding mode %d\n",
4564 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 break;
4566 }
4567}
4568
Jay Vosburgh217df672005-09-26 16:11:50 -07004569static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4570 struct ethtool_drvinfo *drvinfo)
4571{
4572 strncpy(drvinfo->driver, DRV_NAME, 32);
4573 strncpy(drvinfo->version, DRV_VERSION, 32);
4574 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4575}
4576
Jeff Garzik7282d492006-09-13 14:30:00 -04004577static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004578 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004579 .get_link = ethtool_op_get_link,
4580 .get_tx_csum = ethtool_op_get_tx_csum,
4581 .get_sg = ethtool_op_get_sg,
4582 .get_tso = ethtool_op_get_tso,
4583 .get_ufo = ethtool_op_get_ufo,
4584 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004585};
4586
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004587static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004588 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004589 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004590 .ndo_open = bond_open,
4591 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004592 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004593 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004594 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004595 .ndo_do_ioctl = bond_do_ioctl,
4596 .ndo_set_multicast_list = bond_set_multicast_list,
4597 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004598 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004599 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004600 .ndo_vlan_rx_register = bond_vlan_rx_register,
4601 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4602 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004603#ifdef CONFIG_NET_POLL_CONTROLLER
4604 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4605 .ndo_poll_controller = bond_poll_controller,
4606#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004607};
4608
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004609static void bond_destructor(struct net_device *bond_dev)
4610{
4611 struct bonding *bond = netdev_priv(bond_dev);
4612 if (bond->wq)
4613 destroy_workqueue(bond->wq);
4614 free_netdev(bond_dev);
4615}
4616
Stephen Hemminger181470f2009-06-12 19:02:52 +00004617static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618{
Wang Chen454d7c92008-11-12 23:37:49 -08004619 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 /* initialize rwlocks */
4622 rwlock_init(&bond->lock);
4623 rwlock_init(&bond->curr_slave_lock);
4624
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004625 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626
4627 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 bond->dev = bond_dev;
4629 INIT_LIST_HEAD(&bond->vlan_list);
4630
4631 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004632 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004633 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004634 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004635 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004637 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638
4639 /* Initialize the device options */
4640 bond_dev->tx_queue_len = 0;
4641 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004642 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004643 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4644
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004645 if (bond->params.arp_interval)
4646 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
4648 /* At first, we block adding VLANs. That's the only way to
4649 * prevent problems that occur when adding VLANs over an
4650 * empty bond. The block will be removed once non-challenged
4651 * slaves are enslaved.
4652 */
4653 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4654
Herbert Xu932ff272006-06-09 12:20:56 -07004655 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 * transmitting */
4657 bond_dev->features |= NETIF_F_LLTX;
4658
4659 /* By default, we declare the bond to be fully
4660 * VLAN hardware accelerated capable. Special
4661 * care is taken in the various xmit functions
4662 * when there are slaves that are not hw accel
4663 * capable
4664 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4666 NETIF_F_HW_VLAN_RX |
4667 NETIF_F_HW_VLAN_FILTER);
4668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669}
4670
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004671static void bond_work_cancel_all(struct bonding *bond)
4672{
4673 write_lock_bh(&bond->lock);
4674 bond->kill_timers = 1;
4675 write_unlock_bh(&bond->lock);
4676
4677 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4678 cancel_delayed_work(&bond->mii_work);
4679
4680 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4681 cancel_delayed_work(&bond->arp_work);
4682
4683 if (bond->params.mode == BOND_MODE_ALB &&
4684 delayed_work_pending(&bond->alb_work))
4685 cancel_delayed_work(&bond->alb_work);
4686
4687 if (bond->params.mode == BOND_MODE_8023AD &&
4688 delayed_work_pending(&bond->ad_work))
4689 cancel_delayed_work(&bond->ad_work);
4690}
4691
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004692/*
4693* Destroy a bonding device.
4694* Must be under rtnl_lock when this function is called.
4695*/
4696static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004697{
Wang Chen454d7c92008-11-12 23:37:49 -08004698 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004699 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004700
WANG Congf6dc31a2010-05-06 00:48:51 -07004701 bond_netpoll_cleanup(bond_dev);
4702
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004703 /* Release the bonded slaves */
4704 bond_release_all(bond_dev);
4705
Jay Vosburgha434e432008-10-30 17:41:15 -07004706 list_del(&bond->bond_list);
4707
4708 bond_work_cancel_all(bond);
4709
Jay Vosburgha434e432008-10-30 17:41:15 -07004710 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004711
Jiri Pirko22bedad32010-04-01 21:22:57 +00004712 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004713
4714 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4715 list_del(&vlan->vlan_list);
4716 kfree(vlan);
4717 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004718}
4719
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720/*------------------------- Module initialization ---------------------------*/
4721
4722/*
4723 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004724 * number of the mode or its string name. A bit complicated because
4725 * some mode names are substrings of other names, and calls from sysfs
4726 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004728int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729{
Hannes Eder54b87322009-02-14 11:15:49 +00004730 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004731 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004732
Jay Vosburgha42e5342008-01-29 18:07:43 -08004733 for (p = (char *)buf; *p; p++)
4734 if (!(isdigit(*p) || isspace(*p)))
4735 break;
4736
4737 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004738 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004739 else
Hannes Eder54b87322009-02-14 11:15:49 +00004740 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004741
4742 if (!rv)
4743 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744
4745 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004746 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004748 if (strcmp(modestr, tbl[i].modename) == 0)
4749 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 }
4751
4752 return -1;
4753}
4754
4755static int bond_check_params(struct bond_params *params)
4756{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004757 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004758
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 /*
4760 * Convert string parameters.
4761 */
4762 if (mode) {
4763 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4764 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004765 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 mode == NULL ? "NULL" : mode);
4767 return -EINVAL;
4768 }
4769 }
4770
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004771 if (xmit_hash_policy) {
4772 if ((bond_mode != BOND_MODE_XOR) &&
4773 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004774 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004775 bond_mode_name(bond_mode));
4776 } else {
4777 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4778 xmit_hashtype_tbl);
4779 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004780 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004781 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004782 xmit_hash_policy);
4783 return -EINVAL;
4784 }
4785 }
4786 }
4787
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 if (lacp_rate) {
4789 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004790 pr_info("lacp_rate param is irrelevant in mode %s\n",
4791 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 } else {
4793 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4794 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004795 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 lacp_rate == NULL ? "NULL" : lacp_rate);
4797 return -EINVAL;
4798 }
4799 }
4800 }
4801
Jay Vosburghfd989c82008-11-04 17:51:16 -08004802 if (ad_select) {
4803 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4804 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004805 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004806 ad_select == NULL ? "NULL" : ad_select);
4807 return -EINVAL;
4808 }
4809
4810 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004811 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004812 }
4813 } else {
4814 params->ad_select = BOND_AD_STABLE;
4815 }
4816
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004817 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004818 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4819 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 max_bonds = BOND_DEFAULT_MAX_BONDS;
4821 }
4822
4823 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004824 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4825 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 miimon = BOND_LINK_MON_INTERV;
4827 }
4828
4829 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004830 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4831 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 updelay = 0;
4833 }
4834
4835 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004836 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4837 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 downdelay = 0;
4839 }
4840
4841 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004842 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4843 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 use_carrier = 1;
4845 }
4846
Moni Shoua7893b242008-05-17 21:10:12 -07004847 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004848 pr_warning("Warning: num_grat_arp (%d) not in range 0-255 so it was reset to 1\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004849 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004850 num_grat_arp = 1;
4851 }
4852
Brian Haley305d5522008-11-04 17:51:14 -08004853 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004854 pr_warning("Warning: num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004855 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004856 num_unsol_na = 1;
4857 }
4858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 /* reset values for 802.3ad */
4860 if (bond_mode == BOND_MODE_8023AD) {
4861 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004862 pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004863 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864 miimon = 100;
4865 }
4866 }
4867
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004868 if (tx_queues < 1 || tx_queues > 255) {
4869 pr_warning("Warning: tx_queues (%d) should be between "
4870 "1 and 255, resetting to %d\n",
4871 tx_queues, BOND_DEFAULT_TX_QUEUES);
4872 tx_queues = BOND_DEFAULT_TX_QUEUES;
4873 }
4874
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004875 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4876 pr_warning("Warning: all_slaves_active module parameter (%d), "
4877 "not of valid value (0/1), so it was set to "
4878 "0\n", all_slaves_active);
4879 all_slaves_active = 0;
4880 }
4881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 /* reset values for TLB/ALB */
4883 if ((bond_mode == BOND_MODE_TLB) ||
4884 (bond_mode == BOND_MODE_ALB)) {
4885 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004886 pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure and link speed which are essential for TLB/ALB load balancing\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004887 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 miimon = 100;
4889 }
4890 }
4891
4892 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004893 pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n",
4894 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 }
4896
4897 if (!miimon) {
4898 if (updelay || downdelay) {
4899 /* just warn the user the up/down delay will have
4900 * no effect since miimon is zero...
4901 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004902 pr_warning("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n",
4903 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 }
4905 } else {
4906 /* don't allow arp monitoring */
4907 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004908 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4909 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 arp_interval = 0;
4911 }
4912
4913 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004914 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4915 updelay, miimon,
4916 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 }
4918
4919 updelay /= miimon;
4920
4921 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004922 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4923 downdelay, miimon,
4924 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 }
4926
4927 downdelay /= miimon;
4928 }
4929
4930 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004931 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4932 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 arp_interval = BOND_LINK_ARP_INTERV;
4934 }
4935
4936 for (arp_ip_count = 0;
4937 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4938 arp_ip_count++) {
4939 /* not complete check, but should be good enough to
4940 catch mistakes */
4941 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004942 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4943 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 arp_interval = 0;
4945 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004946 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 arp_target[arp_ip_count] = ip;
4948 }
4949 }
4950
4951 if (arp_interval && !arp_ip_count) {
4952 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004953 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4954 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 arp_interval = 0;
4956 }
4957
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004958 if (arp_validate) {
4959 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004960 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004961 return -EINVAL;
4962 }
4963 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004964 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004965 return -EINVAL;
4966 }
4967
4968 arp_validate_value = bond_parse_parm(arp_validate,
4969 arp_validate_tbl);
4970 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004971 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004972 arp_validate == NULL ? "NULL" : arp_validate);
4973 return -EINVAL;
4974 }
4975 } else
4976 arp_validate_value = 0;
4977
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004979 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 } else if (arp_interval) {
4981 int i;
4982
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004983 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4984 arp_interval,
4985 arp_validate_tbl[arp_validate_value].modename,
4986 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
4988 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004989 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004991 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Jay Vosburghb8a97872008-06-13 18:12:04 -07004993 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 /* miimon and arp_interval not set, we need one so things
4995 * work as expected, see bonding.txt for details
4996 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004997 pr_warning("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 }
4999
5000 if (primary && !USES_PRIMARY(bond_mode)) {
5001 /* currently, using a primary only makes sense
5002 * in active backup, TLB or ALB modes
5003 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005004 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5005 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 primary = NULL;
5007 }
5008
Jiri Pirkoa5499522009-09-25 03:28:09 +00005009 if (primary && primary_reselect) {
5010 primary_reselect_value = bond_parse_parm(primary_reselect,
5011 pri_reselect_tbl);
5012 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005013 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005014 primary_reselect ==
5015 NULL ? "NULL" : primary_reselect);
5016 return -EINVAL;
5017 }
5018 } else {
5019 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5020 }
5021
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005022 if (fail_over_mac) {
5023 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5024 fail_over_mac_tbl);
5025 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005026 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005027 arp_validate == NULL ? "NULL" : arp_validate);
5028 return -EINVAL;
5029 }
5030
5031 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005032 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005033 } else {
5034 fail_over_mac_value = BOND_FOM_NONE;
5035 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005036
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 /* fill params struct with the proper values */
5038 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005039 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005041 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005042 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005044 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 params->updelay = updelay;
5046 params->downdelay = downdelay;
5047 params->use_carrier = use_carrier;
5048 params->lacp_fast = lacp_fast;
5049 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005050 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005051 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005052 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005053 params->all_slaves_active = all_slaves_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
5055 if (primary) {
5056 strncpy(params->primary, primary, IFNAMSIZ);
5057 params->primary[IFNAMSIZ - 1] = 0;
5058 }
5059
5060 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5061
5062 return 0;
5063}
5064
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005065static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005066static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005067
David S. Millere8a04642008-07-17 00:34:19 -07005068static void bond_set_lockdep_class_one(struct net_device *dev,
5069 struct netdev_queue *txq,
5070 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005071{
5072 lockdep_set_class(&txq->_xmit_lock,
5073 &bonding_netdev_xmit_lock_key);
5074}
5075
5076static void bond_set_lockdep_class(struct net_device *dev)
5077{
David S. Millercf508b12008-07-22 14:16:42 -07005078 lockdep_set_class(&dev->addr_list_lock,
5079 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005080 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005081}
5082
Stephen Hemminger181470f2009-06-12 19:02:52 +00005083/*
5084 * Called from registration process
5085 */
5086static int bond_init(struct net_device *bond_dev)
5087{
5088 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005089 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005090
5091 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5092
5093 bond->wq = create_singlethread_workqueue(bond_dev->name);
5094 if (!bond->wq)
5095 return -ENOMEM;
5096
5097 bond_set_lockdep_class(bond_dev);
5098
5099 netif_carrier_off(bond_dev);
5100
5101 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005102 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005103
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005104 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005105
5106 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005107 return 0;
5108}
5109
Eric W. Biederman88ead972009-10-29 14:18:25 +00005110static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5111{
5112 if (tb[IFLA_ADDRESS]) {
5113 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5114 return -EINVAL;
5115 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5116 return -EADDRNOTAVAIL;
5117 }
5118 return 0;
5119}
5120
5121static struct rtnl_link_ops bond_link_ops __read_mostly = {
5122 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005123 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005124 .setup = bond_setup,
5125 .validate = bond_validate,
5126};
5127
Mitch Williamsdfe60392005-11-09 10:36:04 -08005128/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005129 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005130 * Caller must NOT hold rtnl_lock; we need to release it here before we
5131 * set up our sysfs entries.
5132 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005133int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005134{
5135 struct net_device *bond_dev;
5136 int res;
5137
5138 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005139
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005140 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5141 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005142 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005143 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005144 rtnl_unlock();
5145 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005146 }
5147
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005148 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005149 bond_dev->rtnl_link_ops = &bond_link_ops;
5150
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005151 if (!name) {
5152 res = dev_alloc_name(bond_dev, "bond%d");
5153 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005154 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005155 }
5156
Mitch Williamsdfe60392005-11-09 10:36:04 -08005157 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005158
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005159out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005160 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005161 if (res < 0)
5162 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005163 return res;
5164}
5165
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005166static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005167{
Eric W. Biederman15449742009-11-29 15:46:04 +00005168 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005169
5170 bn->net = net;
5171 INIT_LIST_HEAD(&bn->dev_list);
5172
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005173 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005174
5175 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005176}
5177
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005178static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005179{
Eric W. Biederman15449742009-11-29 15:46:04 +00005180 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005181
5182 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005183}
5184
5185static struct pernet_operations bond_net_ops = {
5186 .init = bond_net_init,
5187 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005188 .id = &bond_net_id,
5189 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005190};
5191
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192static int __init bonding_init(void)
5193{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 int i;
5195 int res;
5196
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005197 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198
Mitch Williamsdfe60392005-11-09 10:36:04 -08005199 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005200 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Eric W. Biederman15449742009-11-29 15:46:04 +00005203 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005204 if (res)
5205 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005206
Eric W. Biederman88ead972009-10-29 14:18:25 +00005207 res = rtnl_link_register(&bond_link_ops);
5208 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005209 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005212 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005213 if (res)
5214 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 }
5216
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005217 res = bond_create_sysfs();
5218 if (res)
5219 goto err;
5220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005222 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005223 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005224out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005226err:
5227 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005228err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005229 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005230 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005231
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232}
5233
5234static void __exit bonding_exit(void)
5235{
5236 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005237 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005238 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005240 bond_destroy_sysfs();
5241
Eric W. Biederman88ead972009-10-29 14:18:25 +00005242 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005243 unregister_pernet_subsys(&bond_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244}
5245
5246module_init(bonding_init);
5247module_exit(bonding_exit);
5248MODULE_LICENSE("GPL");
5249MODULE_VERSION(DRV_VERSION);
5250MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5251MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005252MODULE_ALIAS_RTNL_LINK("bond");