blob: e498ce3defad5ab9b5b26ce1d1217903f678d4fa [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;
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000112static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114module_param(max_bonds, int, 0);
115MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000116module_param(tx_queues, int, 0);
117MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Moni Shoua7893b242008-05-17 21:10:12 -0700118module_param(num_grat_arp, int, 0644);
119MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800120module_param(num_unsol_na, int, 0644);
121MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122module_param(miimon, int, 0);
123MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
124module_param(updelay, int, 0);
125MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
126module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800127MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
128 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800130MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
131 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800133MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
134 "1 for active-backup, 2 for balance-xor, "
135 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
136 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137module_param(primary, charp, 0);
138MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000139module_param(primary_reselect, charp, 0);
140MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
141 "once it comes up; "
142 "0 for always (default), "
143 "1 for only if speed of primary is "
144 "better, "
145 "2 for only on active slave "
146 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800148MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
149 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800150module_param(ad_select, charp, 0);
151MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400152module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800153MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
154 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155module_param(arp_interval, int, 0);
156MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
157module_param_array(arp_ip_target, charp, NULL, 0);
158MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700159module_param(arp_validate, charp, 0);
160MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700161module_param(fail_over_mac, charp, 0);
162MODULE_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 +0000163module_param(all_slaves_active, int, 0);
164MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
165 "by setting active flag for all slaves. "
166 "0 for never (default), 1 for always.");
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000167module_param(resend_igmp, int, 0);
168MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170/*----------------------------- Global variables ----------------------------*/
171
Arjan van de Venf71e1302006-03-03 21:33:57 -0500172static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
174
Eric Dumazetf99189b2009-11-17 10:42:49 +0000175int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000177static __be32 arp_target[BOND_MAX_ARP_TARGETS];
178static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000180static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
181static int lacp_fast;
Eric Dumazet90e17952010-07-19 06:52:36 +0000182#ifdef CONFIG_NET_POLL_CONTROLLER
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +0000183static int disable_netpoll = 1;
Eric Dumazet90e17952010-07-19 06:52:36 +0000184#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800186const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{ "slow", AD_LACP_SLOW},
188{ "fast", AD_LACP_FAST},
189{ NULL, -1},
190};
191
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800192const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{ "balance-rr", BOND_MODE_ROUNDROBIN},
194{ "active-backup", BOND_MODE_ACTIVEBACKUP},
195{ "balance-xor", BOND_MODE_XOR},
196{ "broadcast", BOND_MODE_BROADCAST},
197{ "802.3ad", BOND_MODE_8023AD},
198{ "balance-tlb", BOND_MODE_TLB},
199{ "balance-alb", BOND_MODE_ALB},
200{ NULL, -1},
201};
202
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800203const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400204{ "layer2", BOND_XMIT_POLICY_LAYER2},
205{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800206{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400207{ NULL, -1},
208};
209
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800210const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700211{ "none", BOND_ARP_VALIDATE_NONE},
212{ "active", BOND_ARP_VALIDATE_ACTIVE},
213{ "backup", BOND_ARP_VALIDATE_BACKUP},
214{ "all", BOND_ARP_VALIDATE_ALL},
215{ NULL, -1},
216};
217
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800218const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700219{ "none", BOND_FOM_NONE},
220{ "active", BOND_FOM_ACTIVE},
221{ "follow", BOND_FOM_FOLLOW},
222{ NULL, -1},
223};
224
Jiri Pirkoa5499522009-09-25 03:28:09 +0000225const struct bond_parm_tbl pri_reselect_tbl[] = {
226{ "always", BOND_PRI_RESELECT_ALWAYS},
227{ "better", BOND_PRI_RESELECT_BETTER},
228{ "failure", BOND_PRI_RESELECT_FAILURE},
229{ NULL, -1},
230};
231
Jay Vosburghfd989c82008-11-04 17:51:16 -0800232struct bond_parm_tbl ad_select_tbl[] = {
233{ "stable", BOND_AD_STABLE},
234{ "bandwidth", BOND_AD_BANDWIDTH},
235{ "count", BOND_AD_COUNT},
236{ NULL, -1},
237};
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*-------------------------- Forward declarations ---------------------------*/
240
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400241static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000242static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000243static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245/*---------------------------- General routines -----------------------------*/
246
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700247static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800249 static const char *names[] = {
250 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
251 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
252 [BOND_MODE_XOR] = "load balancing (xor)",
253 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000254 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800255 [BOND_MODE_TLB] = "transmit load balancing",
256 [BOND_MODE_ALB] = "adaptive load balancing",
257 };
258
259 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800261
262 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/*---------------------------------- VLAN -----------------------------------*/
266
267/**
268 * bond_add_vlan - add a new vlan id on bond
269 * @bond: bond that got the notification
270 * @vlan_id: the vlan id to add
271 *
272 * Returns -ENOMEM if allocation failed.
273 */
274static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
275{
276 struct vlan_entry *vlan;
277
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800278 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800279 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Brian Haley305d5522008-11-04 17:51:14 -0800281 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000282 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 INIT_LIST_HEAD(&vlan->vlan_list);
286 vlan->vlan_id = vlan_id;
287
288 write_lock_bh(&bond->lock);
289
290 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
291
292 write_unlock_bh(&bond->lock);
293
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800294 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 return 0;
297}
298
299/**
300 * bond_del_vlan - delete a vlan id from bond
301 * @bond: bond that got the notification
302 * @vlan_id: the vlan id to delete
303 *
304 * returns -ENODEV if @vlan_id was not found in @bond.
305 */
306static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
307{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700308 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int res = -ENODEV;
310
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800311 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 write_lock_bh(&bond->lock);
314
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700315 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (vlan->vlan_id == vlan_id) {
317 list_del(&vlan->vlan_list);
318
Holger Eitzenberger58402052008-12-09 23:07:13 -0800319 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800322 pr_debug("removed VLAN ID %d from bond %s\n",
323 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 kfree(vlan);
326
327 if (list_empty(&bond->vlan_list) &&
328 (bond->slave_cnt == 0)) {
329 /* Last VLAN removed and no slaves, so
330 * restore block on adding VLANs. This will
331 * be removed once new slaves that are not
332 * VLAN challenged will be added.
333 */
334 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
335 }
336
337 res = 0;
338 goto out;
339 }
340 }
341
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800342 pr_debug("couldn't find VLAN ID %d in bond %s\n",
343 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345out:
346 write_unlock_bh(&bond->lock);
347 return res;
348}
349
350/**
351 * bond_has_challenged_slaves
352 * @bond: the bond we're working on
353 *
354 * Searches the slave list. Returns 1 if a vlan challenged slave
355 * was found, 0 otherwise.
356 *
357 * Assumes bond->lock is held.
358 */
359static int bond_has_challenged_slaves(struct bonding *bond)
360{
361 struct slave *slave;
362 int i;
363
364 bond_for_each_slave(bond, slave, i) {
365 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800366 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800367 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return 1;
369 }
370 }
371
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800372 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374}
375
376/**
377 * bond_next_vlan - safely skip to the next item in the vlans list.
378 * @bond: the bond we're working on
379 * @curr: item we're advancing from
380 *
381 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
382 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000383 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * Caller must hold bond->lock
385 */
386struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
387{
388 struct vlan_entry *next, *last;
389
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000390 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (!curr) {
394 next = list_entry(bond->vlan_list.next,
395 struct vlan_entry, vlan_list);
396 } else {
397 last = list_entry(bond->vlan_list.prev,
398 struct vlan_entry, vlan_list);
399 if (last == curr) {
400 next = list_entry(bond->vlan_list.next,
401 struct vlan_entry, vlan_list);
402 } else {
403 next = list_entry(curr->vlan_list.next,
404 struct vlan_entry, vlan_list);
405 }
406 }
407
408 return next;
409}
410
411/**
412 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000413 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * @bond: bond device that got this skb for tx.
415 * @skb: hw accel VLAN tagged skb to transmit
416 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000417 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * When the bond gets an skb to transmit that is
419 * already hardware accelerated VLAN tagged, and it
420 * needs to relay this skb to a slave that is not
421 * hw accel capable, the skb needs to be "unaccelerated",
422 * i.e. strip the hwaccel tag and re-insert it as part
423 * of the payload.
424 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000425int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
426 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700428 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Jay Vosburghf35188f2010-07-21 12:14:47 +0000430 /* Test vlan_list not vlgrp to catch and handle 802.1p tags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (!list_empty(&bond->vlan_list) &&
432 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
433 vlan_get_tag(skb, &vlan_id) == 0) {
434 skb->dev = slave_dev;
435 skb = vlan_put_tag(skb, vlan_id);
436 if (!skb) {
437 /* vlan_put_tag() frees the skb in case of error,
438 * so return success here so the calling functions
439 * won't attempt to free is again.
440 */
441 return 0;
442 }
443 } else {
444 skb->dev = slave_dev;
445 }
446
447 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700448#ifdef CONFIG_NET_POLL_CONTROLLER
449 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
450 struct netpoll *np = bond->dev->npinfo->netpoll;
451 slave_dev->npinfo = bond->dev->npinfo;
452 np->real_dev = np->dev = skb->dev;
453 slave_dev->priv_flags |= IFF_IN_NETPOLL;
454 netpoll_send_skb(np, skb);
455 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
456 np->dev = bond->dev;
457 } else
458#endif
459 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 return 0;
462}
463
464/*
465 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
466 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
467 * lock because:
468 * a. This operation is performed in IOCTL context,
469 * b. The operation is protected by the RTNL semaphore in the 8021q code,
470 * c. Holding a lock with BH disabled while directly calling a base driver
471 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000472 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * The design of synchronization/protection for this operation in the 8021q
474 * module is good for one or more VLAN devices over a single physical device
475 * and cannot be extended for a teaming solution like bonding, so there is a
476 * potential race condition here where a net device from the vlan group might
477 * be referenced (either by a base driver or the 8021q code) while it is being
478 * removed from the system. However, it turns out we're not making matters
479 * worse, and if it works for regular VLAN usage it will work here too.
480*/
481
482/**
483 * bond_vlan_rx_register - Propagates registration to slaves
484 * @bond_dev: bonding net device that got called
485 * @grp: vlan group being registered
486 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000487static void bond_vlan_rx_register(struct net_device *bond_dev,
488 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Wang Chen454d7c92008-11-12 23:37:49 -0800490 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct slave *slave;
492 int i;
493
Jay Vosburghf35188f2010-07-21 12:14:47 +0000494 write_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 bond->vlgrp = grp;
Jay Vosburghf35188f2010-07-21 12:14:47 +0000496 write_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 bond_for_each_slave(bond, slave, i) {
499 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800500 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800503 slave_ops->ndo_vlan_rx_register) {
504 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 }
507}
508
509/**
510 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
511 * @bond_dev: bonding net device that got called
512 * @vid: vlan id being added
513 */
514static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
515{
Wang Chen454d7c92008-11-12 23:37:49 -0800516 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct slave *slave;
518 int i, res;
519
520 bond_for_each_slave(bond, slave, i) {
521 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800522 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800525 slave_ops->ndo_vlan_rx_add_vid) {
526 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528 }
529
530 res = bond_add_vlan(bond, vid);
531 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800532 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 bond_dev->name, vid);
534 }
535}
536
537/**
538 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
539 * @bond_dev: bonding net device that got called
540 * @vid: vlan id being removed
541 */
542static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
543{
Wang Chen454d7c92008-11-12 23:37:49 -0800544 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 struct slave *slave;
546 struct net_device *vlan_dev;
547 int i, res;
548
549 bond_for_each_slave(bond, slave, i) {
550 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800551 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800554 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* Save and then restore vlan_dev in the grp array,
556 * since the slave's driver might clear it.
557 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800558 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800559 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800560 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562 }
563
564 res = bond_del_vlan(bond, vid);
565 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800566 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 bond_dev->name, vid);
568 }
569}
570
571static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
572{
573 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800574 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Jay Vosburghf35188f2010-07-21 12:14:47 +0000576 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000577 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800580 slave_ops->ndo_vlan_rx_register)
581 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800584 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000585 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800587 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
588 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000591static void bond_del_vlans_from_slave(struct bonding *bond,
592 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800594 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct vlan_entry *vlan;
596 struct net_device *vlan_dev;
597
Jay Vosburghf35188f2010-07-21 12:14:47 +0000598 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000599 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800602 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000606 if (!vlan->vlan_id)
607 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /* Save and then restore vlan_dev in the grp array,
609 * since the slave's driver might clear it.
610 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800611 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800612 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800613 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
616unreg:
617 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800618 slave_ops->ndo_vlan_rx_register)
619 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
622/*------------------------------- Link status -------------------------------*/
623
624/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800625 * Set the carrier state for the master according to the state of its
626 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
627 * do special 802.3ad magic.
628 *
629 * Returns zero if carrier state does not change, nonzero if it does.
630 */
631static int bond_set_carrier(struct bonding *bond)
632{
633 struct slave *slave;
634 int i;
635
636 if (bond->slave_cnt == 0)
637 goto down;
638
639 if (bond->params.mode == BOND_MODE_8023AD)
640 return bond_3ad_set_carrier(bond);
641
642 bond_for_each_slave(bond, slave, i) {
643 if (slave->link == BOND_LINK_UP) {
644 if (!netif_carrier_ok(bond->dev)) {
645 netif_carrier_on(bond->dev);
646 return 1;
647 }
648 return 0;
649 }
650 }
651
652down:
653 if (netif_carrier_ok(bond->dev)) {
654 netif_carrier_off(bond->dev);
655 return 1;
656 }
657 return 0;
658}
659
660/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * Get link speed and duplex from the slave's base driver
662 * using ethtool. If for some reason the call fails or the
663 * values are invalid, fake speed and duplex to 100/Full
664 * and return error.
665 */
666static int bond_update_speed_duplex(struct slave *slave)
667{
668 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700670 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 /* Fake speed and duplex */
673 slave->speed = SPEED_100;
674 slave->duplex = DUPLEX_FULL;
675
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700676 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700679 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
680 if (res < 0)
681 return -1;
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 switch (etool.speed) {
684 case SPEED_10:
685 case SPEED_100:
686 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700687 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 break;
689 default:
690 return -1;
691 }
692
693 switch (etool.duplex) {
694 case DUPLEX_FULL:
695 case DUPLEX_HALF:
696 break;
697 default:
698 return -1;
699 }
700
701 slave->speed = etool.speed;
702 slave->duplex = etool.duplex;
703
704 return 0;
705}
706
707/*
708 * if <dev> supports MII link status reporting, check its link status.
709 *
710 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000711 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 *
713 * Return either BMSR_LSTATUS, meaning that the link is up (or we
714 * can't tell and just pretend it is), or 0, meaning that the link is
715 * down.
716 *
717 * If reporting is non-zero, instead of faking link up, return -1 if
718 * both ETHTOOL and MII ioctls fail (meaning the device does not
719 * support them). If use_carrier is set, return whatever it says.
720 * It'd be nice if there was a good way to tell if a driver supports
721 * netif_carrier, but there really isn't.
722 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000723static int bond_check_dev_link(struct bonding *bond,
724 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800726 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700727 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 struct ifreq ifr;
729 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Petri Gynther6c988852009-08-28 12:05:15 +0000731 if (!reporting && !netif_running(slave_dev))
732 return 0;
733
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800734 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Jiri Pirko29112f42009-04-24 01:58:23 +0000737 /* Try to get link status using Ethtool first. */
738 if (slave_dev->ethtool_ops) {
739 if (slave_dev->ethtool_ops->get_link) {
740 u32 link;
741
742 link = slave_dev->ethtool_ops->get_link(slave_dev);
743
744 return link ? BMSR_LSTATUS : 0;
745 }
746 }
747
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000748 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800749 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (ioctl) {
751 /* TODO: set pointer to correct ioctl on a per team member */
752 /* bases to make this more efficient. that is, once */
753 /* we determine the correct ioctl, we will always */
754 /* call it and not the others for that team */
755 /* member. */
756
757 /*
758 * We cannot assume that SIOCGMIIPHY will also read a
759 * register; not all network drivers (e.g., e100)
760 * support that.
761 */
762
763 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
764 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
765 mii = if_mii(&ifr);
766 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
767 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000768 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
769 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771 }
772
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700773 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700775 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * cannot report link status). If not reporting, pretend
777 * we're ok.
778 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000779 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782/*----------------------------- Multicast list ------------------------------*/
783
784/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 * Push the promiscuity flag down to appropriate slaves
786 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700787static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700789 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (USES_PRIMARY(bond->params.mode)) {
791 /* write lock already acquired */
792 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700793 err = dev_set_promiscuity(bond->curr_active_slave->dev,
794 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 } else {
797 struct slave *slave;
798 int i;
799 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700800 err = dev_set_promiscuity(slave->dev, inc);
801 if (err)
802 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700805 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808/*
809 * Push the allmulti flag down to all slaves
810 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700811static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700813 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (USES_PRIMARY(bond->params.mode)) {
815 /* write lock already acquired */
816 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700817 err = dev_set_allmulti(bond->curr_active_slave->dev,
818 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820 } else {
821 struct slave *slave;
822 int i;
823 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700824 err = dev_set_allmulti(slave->dev, inc);
825 if (err)
826 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700829 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832/*
833 * Add a Multicast address to slaves
834 * according to mode
835 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000836static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 if (USES_PRIMARY(bond->params.mode)) {
839 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000840 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000841 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 } else {
843 struct slave *slave;
844 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000845
846 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000847 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849}
850
851/*
852 * Remove a multicast address from slave
853 * according to mode
854 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000855static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 if (USES_PRIMARY(bond->params.mode)) {
858 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000859 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000860 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 } else {
862 struct slave *slave;
863 int i;
864 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad2010-04-01 21:22:57 +0000865 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867 }
868}
869
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800870
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000871static void __bond_resend_igmp_join_requests(struct net_device *dev)
872{
873 struct in_device *in_dev;
874 struct ip_mc_list *im;
875
876 rcu_read_lock();
877 in_dev = __in_dev_get_rcu(dev);
878 if (in_dev) {
879 for (im = in_dev->mc_list; im; im = im->next)
880 ip_mc_rejoin_group(im);
881 }
882
883 rcu_read_unlock();
884}
885
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800886/*
887 * Retrieve the list of registered multicast addresses for the bonding
888 * device and retransmit an IGMP JOIN request to the current active
889 * slave.
890 */
891static void bond_resend_igmp_join_requests(struct bonding *bond)
892{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000893 struct net_device *vlan_dev;
894 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800895
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000896 read_lock(&bond->lock);
897
898 /* rejoin all groups on bond device */
899 __bond_resend_igmp_join_requests(bond->dev);
900
901 /* rejoin all groups on vlan devices */
902 if (bond->vlgrp) {
903 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
904 vlan_dev = vlan_group_get_device(bond->vlgrp,
905 vlan->vlan_id);
906 if (vlan_dev)
907 __bond_resend_igmp_join_requests(vlan_dev);
908 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800909 }
910
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000911 if (--bond->igmp_retrans > 0)
912 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
913
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000914 read_unlock(&bond->lock);
915}
916
917void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
918{
919 struct bonding *bond = container_of(work, struct bonding,
920 mcast_work.work);
921 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800922}
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 * flush all members of flush->mc_list from device dev->mc_list
926 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000927static void bond_mc_list_flush(struct net_device *bond_dev,
928 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Wang Chen454d7c92008-11-12 23:37:49 -0800930 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +0000931 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jiri Pirko22bedad2010-04-01 21:22:57 +0000933 netdev_for_each_mc_addr(ha, bond_dev)
934 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 if (bond->params.mode == BOND_MODE_8023AD) {
937 /* del lacpdu mc addr from mc list */
938 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
939
Jiri Pirko22bedad2010-04-01 21:22:57 +0000940 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942}
943
944/*--------------------------- Active slave change ---------------------------*/
945
946/*
947 * Update the mc list and multicast-related flags for the new and
948 * old active slaves (if any) according to the multicast mode, and
949 * promiscuous flags unconditionally.
950 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000951static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
952 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Jiri Pirko22bedad2010-04-01 21:22:57 +0000954 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000956 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /* nothing to do - mc list is already up-to-date on
958 * all slaves
959 */
960 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000963 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000966 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Jiri Pirko22bedad2010-04-01 21:22:57 +0000969 netdev_for_each_mc_addr(ha, bond->dev)
970 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972
973 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700974 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000975 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000978 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Jiri Pirko22bedad2010-04-01 21:22:57 +0000981 netdev_for_each_mc_addr(ha, bond->dev)
982 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984}
985
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700986/*
987 * bond_do_fail_over_mac
988 *
989 * Perform special MAC address swapping for fail_over_mac settings
990 *
991 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
992 */
993static void bond_do_fail_over_mac(struct bonding *bond,
994 struct slave *new_active,
995 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000996 __releases(&bond->curr_slave_lock)
997 __releases(&bond->lock)
998 __acquires(&bond->lock)
999 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001000{
1001 u8 tmp_mac[ETH_ALEN];
1002 struct sockaddr saddr;
1003 int rv;
1004
1005 switch (bond->params.fail_over_mac) {
1006 case BOND_FOM_ACTIVE:
1007 if (new_active)
1008 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1009 new_active->dev->addr_len);
1010 break;
1011 case BOND_FOM_FOLLOW:
1012 /*
1013 * if new_active && old_active, swap them
1014 * if just old_active, do nothing (going to no active slave)
1015 * if just new_active, set new_active to bond's MAC
1016 */
1017 if (!new_active)
1018 return;
1019
1020 write_unlock_bh(&bond->curr_slave_lock);
1021 read_unlock(&bond->lock);
1022
1023 if (old_active) {
1024 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1025 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1026 ETH_ALEN);
1027 saddr.sa_family = new_active->dev->type;
1028 } else {
1029 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1030 saddr.sa_family = bond->dev->type;
1031 }
1032
1033 rv = dev_set_mac_address(new_active->dev, &saddr);
1034 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001035 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001036 bond->dev->name, -rv, new_active->dev->name);
1037 goto out;
1038 }
1039
1040 if (!old_active)
1041 goto out;
1042
1043 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1044 saddr.sa_family = old_active->dev->type;
1045
1046 rv = dev_set_mac_address(old_active->dev, &saddr);
1047 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001048 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001049 bond->dev->name, -rv, new_active->dev->name);
1050out:
1051 read_lock(&bond->lock);
1052 write_lock_bh(&bond->curr_slave_lock);
1053 break;
1054 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001055 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001056 bond->dev->name, bond->params.fail_over_mac);
1057 break;
1058 }
1059
1060}
1061
Jiri Pirkoa5499522009-09-25 03:28:09 +00001062static bool bond_should_change_active(struct bonding *bond)
1063{
1064 struct slave *prim = bond->primary_slave;
1065 struct slave *curr = bond->curr_active_slave;
1066
1067 if (!prim || !curr || curr->link != BOND_LINK_UP)
1068 return true;
1069 if (bond->force_primary) {
1070 bond->force_primary = false;
1071 return true;
1072 }
1073 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1074 (prim->speed < curr->speed ||
1075 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1076 return false;
1077 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1078 return false;
1079 return true;
1080}
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/**
1083 * find_best_interface - select the best available slave to be the active one
1084 * @bond: our bonding struct
1085 *
1086 * Warning: Caller must hold curr_slave_lock for writing.
1087 */
1088static struct slave *bond_find_best_slave(struct bonding *bond)
1089{
1090 struct slave *new_active, *old_active;
1091 struct slave *bestslave = NULL;
1092 int mintime = bond->params.updelay;
1093 int i;
1094
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001095 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001098 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001100 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001105 bond->primary_slave->link == BOND_LINK_UP &&
1106 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 new_active = bond->primary_slave;
1108 }
1109
1110 /* remember where to stop iterating over the slaves */
1111 old_active = new_active;
1112
1113 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001114 if (new_active->link == BOND_LINK_UP) {
1115 return new_active;
1116 } else if (new_active->link == BOND_LINK_BACK &&
1117 IS_UP(new_active->dev)) {
1118 /* link up, but waiting for stabilization */
1119 if (new_active->delay < mintime) {
1120 mintime = new_active->delay;
1121 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123 }
1124 }
1125
1126 return bestslave;
1127}
1128
1129/**
1130 * change_active_interface - change the active slave into the specified one
1131 * @bond: our bonding struct
1132 * @new: the new slave to make the active one
1133 *
1134 * Set the new slave to the bond's settings and unset them on the old
1135 * curr_active_slave.
1136 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1137 *
1138 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1139 * because it is apparently the best available slave we have, even though its
1140 * updelay hasn't timed out yet.
1141 *
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001142 * If new_active is not NULL, caller must hold bond->lock for read and
1143 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001145void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 struct slave *old_active = bond->curr_active_slave;
1148
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001149 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001153 new_active->jiffies = jiffies;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (new_active->link == BOND_LINK_BACK) {
1156 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001157 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1158 bond->dev->name, new_active->dev->name,
1159 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161
1162 new_active->delay = 0;
1163 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001165 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Holger Eitzenberger58402052008-12-09 23:07:13 -08001168 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 } else {
1171 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001172 pr_info("%s: making interface %s the new active one.\n",
1173 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 }
1176 }
1177
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001178 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Holger Eitzenberger58402052008-12-09 23:07:13 -08001181 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001183 if (old_active)
1184 bond_set_slave_inactive_flags(old_active);
1185 if (new_active)
1186 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 } else {
1188 bond->curr_active_slave = new_active;
1189 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001190
1191 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001192 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001193 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001194
1195 if (new_active) {
1196 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001197
Or Gerlitz709f8a42008-06-13 18:12:01 -07001198 if (bond->params.fail_over_mac)
1199 bond_do_fail_over_mac(bond, new_active,
1200 old_active);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001201
Or Gerlitz709f8a42008-06-13 18:12:01 -07001202 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001203 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001204
Brian Haley305d5522008-11-04 17:51:14 -08001205 bond->send_unsol_na = bond->params.num_unsol_na;
1206 bond_send_unsolicited_na(bond);
1207
Or Gerlitz01f31092008-06-13 18:12:02 -07001208 write_unlock_bh(&bond->curr_slave_lock);
1209 read_unlock(&bond->lock);
1210
Moni Shoua75c78502009-09-15 02:37:40 -07001211 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001212
1213 read_lock(&bond->lock);
1214 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001215 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001216 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001217
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001218 /* resend IGMP joins since active slave has changed or
1219 * all were sent on curr_active_slave */
1220 if ((USES_PRIMARY(bond->params.mode) && new_active) ||
1221 bond->params.mode == BOND_MODE_ROUNDROBIN) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001222 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001223 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227/**
1228 * bond_select_active_slave - select a new active slave, if needed
1229 * @bond: our bonding struct
1230 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001231 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 * - The old curr_active_slave has been released or lost its link.
1233 * - The primary_slave has got its link back.
1234 * - A slave has got its link back and there's no old curr_active_slave.
1235 *
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001236 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001238void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
1240 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001241 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 best_slave = bond_find_best_slave(bond);
1244 if (best_slave != bond->curr_active_slave) {
1245 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001246 rv = bond_set_carrier(bond);
1247 if (!rv)
1248 return;
1249
1250 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001251 pr_info("%s: first active interface up!\n",
1252 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001253 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001254 pr_info("%s: now running without any active interface !\n",
1255 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258}
1259
1260/*--------------------------- slave list handling ---------------------------*/
1261
1262/*
1263 * This function attaches the slave to the end of list.
1264 *
1265 * bond->lock held for writing by caller.
1266 */
1267static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1268{
1269 if (bond->first_slave == NULL) { /* attaching the first slave */
1270 new_slave->next = new_slave;
1271 new_slave->prev = new_slave;
1272 bond->first_slave = new_slave;
1273 } else {
1274 new_slave->next = bond->first_slave;
1275 new_slave->prev = bond->first_slave->prev;
1276 new_slave->next->prev = new_slave;
1277 new_slave->prev->next = new_slave;
1278 }
1279
1280 bond->slave_cnt++;
1281}
1282
1283/*
1284 * This function detaches the slave from the list.
1285 * WARNING: no check is made to verify if the slave effectively
1286 * belongs to <bond>.
1287 * Nothing is freed on return, structures are just unchained.
1288 * If any slave pointer in bond was pointing to <slave>,
1289 * it should be changed by the calling function.
1290 *
1291 * bond->lock held for writing by caller.
1292 */
1293static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1294{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001295 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001298 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 if (bond->first_slave == slave) { /* slave is the first slave */
1302 if (bond->slave_cnt > 1) { /* there are more slave */
1303 bond->first_slave = slave->next;
1304 } else {
1305 bond->first_slave = NULL; /* slave was the last one */
1306 }
1307 }
1308
1309 slave->next = NULL;
1310 slave->prev = NULL;
1311 bond->slave_cnt--;
1312}
1313
WANG Congf6dc31a2010-05-06 00:48:51 -07001314#ifdef CONFIG_NET_POLL_CONTROLLER
1315/*
1316 * You must hold read lock on bond->lock before calling this.
1317 */
1318static bool slaves_support_netpoll(struct net_device *bond_dev)
1319{
1320 struct bonding *bond = netdev_priv(bond_dev);
1321 struct slave *slave;
1322 int i = 0;
1323 bool ret = true;
1324
1325 bond_for_each_slave(bond, slave, i) {
1326 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1327 !slave->dev->netdev_ops->ndo_poll_controller)
1328 ret = false;
1329 }
1330 return i != 0 && ret;
1331}
1332
1333static void bond_poll_controller(struct net_device *bond_dev)
1334{
1335 struct net_device *dev = bond_dev->npinfo->netpoll->real_dev;
1336 if (dev != bond_dev)
1337 netpoll_poll_dev(dev);
1338}
1339
1340static void bond_netpoll_cleanup(struct net_device *bond_dev)
1341{
1342 struct bonding *bond = netdev_priv(bond_dev);
1343 struct slave *slave;
1344 const struct net_device_ops *ops;
1345 int i;
1346
1347 read_lock(&bond->lock);
1348 bond_dev->npinfo = NULL;
1349 bond_for_each_slave(bond, slave, i) {
1350 if (slave->dev) {
1351 ops = slave->dev->netdev_ops;
1352 if (ops->ndo_netpoll_cleanup)
1353 ops->ndo_netpoll_cleanup(slave->dev);
1354 else
1355 slave->dev->npinfo = NULL;
1356 }
1357 }
1358 read_unlock(&bond->lock);
1359}
1360
1361#else
1362
1363static void bond_netpoll_cleanup(struct net_device *bond_dev)
1364{
1365}
1366
1367#endif
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369/*---------------------------------- IOCTL ----------------------------------*/
1370
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001371static int bond_sethwaddr(struct net_device *bond_dev,
1372 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001374 pr_debug("bond_dev=%p\n", bond_dev);
1375 pr_debug("slave_dev=%p\n", slave_dev);
1376 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1378 return 0;
1379}
1380
Herbert Xu7f353bf2007-08-10 15:47:58 -07001381#define BOND_VLAN_FEATURES \
1382 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1383 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001384
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001385/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001386 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001387 * feature bits are managed elsewhere, so preserve those feature bits
1388 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001389 */
1390static int bond_compute_features(struct bonding *bond)
1391{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001392 struct slave *slave;
1393 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001394 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001395 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001396 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1397 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001398 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001399
Herbert Xu7f353bf2007-08-10 15:47:58 -07001400 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001401 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1402
1403 if (!bond->first_slave)
1404 goto done;
1405
1406 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001407
Jay Vosburgh278339a2009-08-28 12:05:12 +00001408 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001409 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001410 features = netdev_increment_features(features,
1411 slave->dev->features,
1412 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001413 vlan_features = netdev_increment_features(vlan_features,
1414 slave->dev->vlan_features,
1415 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001416 if (slave->dev->hard_header_len > max_hard_header_len)
1417 max_hard_header_len = slave->dev->hard_header_len;
1418 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001419
Herbert Xub63365a2008-10-23 01:11:29 -07001420done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001421 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001422 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001423 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001424 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001425
1426 return 0;
1427}
1428
Moni Shoua872254d2007-10-09 19:43:38 -07001429static void bond_setup_by_slave(struct net_device *bond_dev,
1430 struct net_device *slave_dev)
1431{
Wang Chen454d7c92008-11-12 23:37:49 -08001432 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001433
Stephen Hemminger00829822008-11-20 20:14:53 -08001434 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001435
1436 bond_dev->type = slave_dev->type;
1437 bond_dev->hard_header_len = slave_dev->hard_header_len;
1438 bond_dev->addr_len = slave_dev->addr_len;
1439
1440 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1441 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001442 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001443}
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001446int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Wang Chen454d7c92008-11-12 23:37:49 -08001448 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001449 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 struct slave *new_slave = NULL;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001451 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 struct sockaddr addr;
1453 int link_reporting;
1454 int old_features = bond_dev->features;
1455 int res = 0;
1456
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001457 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001458 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001459 pr_warning("%s: Warning: no link monitoring support for %s\n",
1460 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462
1463 /* bond must be initialized by bond_open() before enslaving */
1464 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001465 pr_warning("%s: master_dev is not up in bond_enslave\n",
1466 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468
1469 /* already enslaved */
1470 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001471 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return -EBUSY;
1473 }
1474
1475 /* vlan challenged mutual exclusion */
1476 /* no need to lock since we're protected by rtnl_lock */
1477 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001478 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001479 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001480 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1481 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return -EPERM;
1483 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001484 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1485 bond_dev->name, slave_dev->name,
1486 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1488 }
1489 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001490 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (bond->slave_cnt == 0) {
1492 /* First slave, and it is not VLAN challenged,
1493 * so remove the block of adding VLANs over the bond.
1494 */
1495 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1496 }
1497 }
1498
Jay Vosburgh217df672005-09-26 16:11:50 -07001499 /*
1500 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001501 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001502 * the current ifenslave will set the interface down prior to
1503 * enslaving it; the old ifenslave will not.
1504 */
1505 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001506 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001507 slave_dev->name);
1508 res = -EPERM;
1509 goto err_undo_flags;
1510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Moni Shoua872254d2007-10-09 19:43:38 -07001512 /* set bonding device ether type by slave - bonding netdevices are
1513 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1514 * there is a need to override some of the type dependent attribs/funcs.
1515 *
1516 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1517 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1518 */
1519 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001520 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001521 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001522 bond_dev->name,
1523 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001524
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001525 res = netdev_bonding_change(bond_dev,
1526 NETDEV_PRE_TYPE_CHANGE);
1527 res = notifier_to_errno(res);
1528 if (res) {
1529 pr_err("%s: refused to change device type\n",
1530 bond_dev->name);
1531 res = -EBUSY;
1532 goto err_undo_flags;
1533 }
Moni Shoua75c78502009-09-15 02:37:40 -07001534
Jiri Pirko32a806c2010-03-19 04:00:23 +00001535 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001536 dev_uc_flush(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00001537 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001538
Moni Shouae36b9d12009-07-15 04:56:31 +00001539 if (slave_dev->type != ARPHRD_ETHER)
1540 bond_setup_by_slave(bond_dev, slave_dev);
1541 else
1542 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001543
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001544 netdev_bonding_change(bond_dev,
1545 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001546 }
Moni Shoua872254d2007-10-09 19:43:38 -07001547 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001548 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1549 slave_dev->name,
1550 slave_dev->type, bond_dev->type);
1551 res = -EINVAL;
1552 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001553 }
1554
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001555 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001556 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001557 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1558 bond_dev->name);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001559 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1560 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001561 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",
1562 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001563 res = -EOPNOTSUPP;
1564 goto err_undo_flags;
1565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001568 /* If this is the first slave, then we need to set the master's hardware
1569 * address to be the same as the slave's. */
1570 if (bond->slave_cnt == 0)
1571 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1572 slave_dev->addr_len);
1573
1574
Joe Jin243cb4e2007-02-06 14:16:40 -08001575 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (!new_slave) {
1577 res = -ENOMEM;
1578 goto err_undo_flags;
1579 }
1580
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001581 /*
1582 * Set the new_slave's queue_id to be zero. Queue ID mapping
1583 * is set via sysfs or module option if desired.
1584 */
1585 new_slave->queue_id = 0;
1586
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001587 /* Save slave's original mtu and then set it to match the bond */
1588 new_slave->original_mtu = slave_dev->mtu;
1589 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1590 if (res) {
1591 pr_debug("Error %d calling dev_set_mtu\n", res);
1592 goto err_free;
1593 }
1594
Jay Vosburgh217df672005-09-26 16:11:50 -07001595 /*
1596 * Save slave's original ("permanent") mac address for modes
1597 * that need it, and for restoring it upon release, and then
1598 * set it to the master's address
1599 */
1600 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Jay Vosburghdd957c52007-10-09 19:57:24 -07001602 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001603 /*
1604 * Set slave to master's mac address. The application already
1605 * set the master's mac address to that of the first slave
1606 */
1607 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1608 addr.sa_family = slave_dev->type;
1609 res = dev_set_mac_address(slave_dev, &addr);
1610 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001611 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001612 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001613 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001616 res = netdev_set_master(slave_dev, bond_dev);
1617 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001618 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001619 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001620 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001621 /* open the slave since the application closed it */
1622 res = dev_open(slave_dev);
1623 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001624 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001625 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001629 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Holger Eitzenberger58402052008-12-09 23:07:13 -08001631 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /* bond_alb_init_slave() must be called before all other stages since
1633 * it might fail and we do not want to have to undo everything
1634 */
1635 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001636 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001637 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
1640 /* If the mode USES_PRIMARY, then the new slave gets the
1641 * master's promisc (and mc) settings only if it becomes the
1642 * curr_active_slave, and that is taken care of later when calling
1643 * bond_change_active()
1644 */
1645 if (!USES_PRIMARY(bond->params.mode)) {
1646 /* set promiscuity level to new slave */
1647 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001648 res = dev_set_promiscuity(slave_dev, 1);
1649 if (res)
1650 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652
1653 /* set allmulti level to new slave */
1654 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001655 res = dev_set_allmulti(slave_dev, 1);
1656 if (res)
1657 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
David S. Millerb9e40852008-07-15 00:15:08 -07001660 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 /* upload master's mc_list to new slave */
Jiri Pirko22bedad2010-04-01 21:22:57 +00001662 netdev_for_each_mc_addr(ha, bond_dev)
1663 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001664 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666
1667 if (bond->params.mode == BOND_MODE_8023AD) {
1668 /* add lacpdu mc addr to mc list */
1669 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1670
Jiri Pirko22bedad2010-04-01 21:22:57 +00001671 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673
1674 bond_add_vlans_on_slave(bond, slave_dev);
1675
1676 write_lock_bh(&bond->lock);
1677
1678 bond_attach_slave(bond, new_slave);
1679
1680 new_slave->delay = 0;
1681 new_slave->link_failure_count = 0;
1682
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001683 bond_compute_features(bond);
1684
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001685 write_unlock_bh(&bond->lock);
1686
1687 read_lock(&bond->lock);
1688
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001689 new_slave->last_arp_rx = jiffies;
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (bond->params.miimon && !bond->params.use_carrier) {
1692 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1693
1694 if ((link_reporting == -1) && !bond->params.arp_interval) {
1695 /*
1696 * miimon is set but a bonded network driver
1697 * does not support ETHTOOL/MII and
1698 * arp_interval is not set. Note: if
1699 * use_carrier is enabled, we will never go
1700 * here (because netif_carrier is always
1701 * supported); thus, we don't need to change
1702 * the messages for netif_carrier.
1703 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001704 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 -08001705 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 } else if (link_reporting == -1) {
1707 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001708 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",
1709 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711 }
1712
1713 /* check for initial state */
1714 if (!bond->params.miimon ||
1715 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1716 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001717 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 new_slave->link = BOND_LINK_BACK;
1719 new_slave->delay = bond->params.updelay;
1720 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001721 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 new_slave->link = BOND_LINK_UP;
1723 }
1724 new_slave->jiffies = jiffies;
1725 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001726 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 new_slave->link = BOND_LINK_DOWN;
1728 }
1729
1730 if (bond_update_speed_duplex(new_slave) &&
1731 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001732 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1733 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001736 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1737 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
1739 }
1740
1741 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1742 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001743 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001745 bond->force_primary = true;
1746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001749 write_lock_bh(&bond->curr_slave_lock);
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 switch (bond->params.mode) {
1752 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001753 bond_set_slave_inactive_flags(new_slave);
1754 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 break;
1756 case BOND_MODE_8023AD:
1757 /* in 802.3ad mode, the internal mechanism
1758 * will activate the slaves in the selected
1759 * aggregator
1760 */
1761 bond_set_slave_inactive_flags(new_slave);
1762 /* if this is the first slave */
1763 if (bond->slave_cnt == 1) {
1764 SLAVE_AD_INFO(new_slave).id = 1;
1765 /* Initialize AD with the number of times that the AD timer is called in 1 second
1766 * can be called only after the mac address of the bond is set
1767 */
1768 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1769 bond->params.lacp_fast);
1770 } else {
1771 SLAVE_AD_INFO(new_slave).id =
1772 SLAVE_AD_INFO(new_slave->prev).id + 1;
1773 }
1774
1775 bond_3ad_bind_slave(new_slave);
1776 break;
1777 case BOND_MODE_TLB:
1778 case BOND_MODE_ALB:
1779 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001780 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001781 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 break;
1783 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001784 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 /* always active in trunk mode */
1787 new_slave->state = BOND_STATE_ACTIVE;
1788
1789 /* In trunking mode there is little meaning to curr_active_slave
1790 * anyway (it holds no special properties of the bond device),
1791 * so we can change it without calling change_active_interface()
1792 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001793 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 break;
1797 } /* switch(bond_mode) */
1798
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001799 write_unlock_bh(&bond->curr_slave_lock);
1800
Jay Vosburghff59c452006-03-27 13:27:43 -08001801 bond_set_carrier(bond);
1802
WANG Congf6dc31a2010-05-06 00:48:51 -07001803#ifdef CONFIG_NET_POLL_CONTROLLER
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001804 /*
1805 * Netpoll and bonding is broken, make sure it is not initialized
1806 * until it is fixed.
1807 */
1808 if (disable_netpoll) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001809 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001810 } else {
1811 if (slaves_support_netpoll(bond_dev)) {
1812 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1813 if (bond_dev->npinfo)
1814 slave_dev->npinfo = bond_dev->npinfo;
1815 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
1816 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
1817 pr_info("New slave device %s does not support netpoll\n",
1818 slave_dev->name);
1819 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
1820 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001821 }
1822#endif
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001823 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001825 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1826 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001827 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001828
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001829 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1830 bond_dev->name, slave_dev->name,
1831 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1832 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 /* enslave is successful */
1835 return 0;
1836
1837/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838err_close:
1839 dev_close(slave_dev);
1840
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001841err_unset_master:
1842 netdev_set_master(slave_dev, NULL);
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001845 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001846 /* XXX TODO - fom follow mode needs to change master's
1847 * MAC if this slave's MAC is in use by the bond, or at
1848 * least print a warning.
1849 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001850 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1851 addr.sa_family = slave_dev->type;
1852 dev_set_mac_address(slave_dev, &addr);
1853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001855err_restore_mtu:
1856 dev_set_mtu(slave_dev, new_slave->original_mtu);
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858err_free:
1859 kfree(new_slave);
1860
1861err_undo_flags:
1862 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return res;
1865}
1866
1867/*
1868 * Try to release the slave device <slave> from the bond device <master>
1869 * It is legal to access curr_active_slave without a lock because all the function
1870 * is write-locked.
1871 *
1872 * The rules for slave state should be:
1873 * for Active/Backup:
1874 * Active stays on all backups go down
1875 * for Bonded connections:
1876 * The first up interface should be left on and all others downed.
1877 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001878int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Wang Chen454d7c92008-11-12 23:37:49 -08001880 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 struct slave *slave, *oldcurrent;
1882 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 /* slave is not a slave or master is not master of this slave */
1885 if (!(slave_dev->flags & IFF_SLAVE) ||
1886 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001887 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 bond_dev->name, slave_dev->name);
1889 return -EINVAL;
1890 }
1891
WANG Congf6dc31a2010-05-06 00:48:51 -07001892 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 write_lock_bh(&bond->lock);
1894
1895 slave = bond_get_slave_by_dev(bond, slave_dev);
1896 if (!slave) {
1897 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001898 pr_info("%s: %s not enslaved\n",
1899 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001900 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return -EINVAL;
1902 }
1903
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001904 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001905 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1906 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001907 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",
1908 bond_dev->name, slave_dev->name,
1909 slave->perm_hwaddr,
1910 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912
1913 /* Inform AD package of unbinding of slave. */
1914 if (bond->params.mode == BOND_MODE_8023AD) {
1915 /* must be called before the slave is
1916 * detached from the list
1917 */
1918 bond_3ad_unbind_slave(slave);
1919 }
1920
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001921 pr_info("%s: releasing %s interface %s\n",
1922 bond_dev->name,
1923 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1924 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 oldcurrent = bond->curr_active_slave;
1927
1928 bond->current_arp_slave = NULL;
1929
1930 /* release the slave from its bond */
1931 bond_detach_slave(bond, slave);
1932
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001933 bond_compute_features(bond);
1934
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001935 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001938 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Holger Eitzenberger58402052008-12-09 23:07:13 -08001941 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 /* Must be called only after the slave has been
1943 * detached from the list and the curr_active_slave
1944 * has been cleared (if our_slave == old_current),
1945 * but before a new active slave is selected.
1946 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001947 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001949 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001952 if (oldcurrent == slave) {
1953 /*
1954 * Note that we hold RTNL over this sequence, so there
1955 * is no concern that another slave add/remove event
1956 * will interfere.
1957 */
1958 write_unlock_bh(&bond->lock);
1959 read_lock(&bond->lock);
1960 write_lock_bh(&bond->curr_slave_lock);
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 bond_select_active_slave(bond);
1963
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001964 write_unlock_bh(&bond->curr_slave_lock);
1965 read_unlock(&bond->lock);
1966 write_lock_bh(&bond->lock);
1967 }
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001970 bond_set_carrier(bond);
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 /* if the last slave was removed, zero the mac address
1973 * of the master so it will be set by the application
1974 * to the mac address of the first slave
1975 */
1976 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1977
Jay Vosburghf35188f2010-07-21 12:14:47 +00001978 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1980 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001981 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1982 bond_dev->name, bond_dev->name);
1983 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1984 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
1986 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1987 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001988 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1989 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1991 }
1992
1993 write_unlock_bh(&bond->lock);
1994
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001995 /* must do this from outside any spinlocks */
1996 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 bond_del_vlans_from_slave(bond, slave_dev);
1999
2000 /* If the mode USES_PRIMARY, then we should only remove its
2001 * promisc and mc settings if it was the curr_active_slave, but that was
2002 * already taken care of above when we detached the slave
2003 */
2004 if (!USES_PRIMARY(bond->params.mode)) {
2005 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002006 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002010 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002014 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002016 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018
2019 netdev_set_master(slave_dev, NULL);
2020
WANG Congf6dc31a2010-05-06 00:48:51 -07002021#ifdef CONFIG_NET_POLL_CONTROLLER
2022 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00002023
2024 /* Make sure netpoll over stays disabled until fixed. */
2025 if (!disable_netpoll)
2026 if (slaves_support_netpoll(bond_dev))
2027 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002028 read_unlock_bh(&bond->lock);
2029 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2030 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2031 else
2032 slave_dev->npinfo = NULL;
2033#endif
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /* close slave before restoring its mac address */
2036 dev_close(slave_dev);
2037
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07002038 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002039 /* restore original ("permanent") mac address */
2040 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2041 addr.sa_family = slave_dev->type;
2042 dev_set_mac_address(slave_dev, &addr);
2043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002045 dev_set_mtu(slave_dev, slave->original_mtu);
2046
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002047 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002048 IFF_SLAVE_INACTIVE | IFF_BONDING |
2049 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 kfree(slave);
2052
2053 return 0; /* deletion OK */
2054}
2055
2056/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002057* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002058* Must be under rtnl_lock when this function is called.
2059*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002060int bond_release_and_destroy(struct net_device *bond_dev,
2061 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002062{
Wang Chen454d7c92008-11-12 23:37:49 -08002063 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002064 int ret;
2065
2066 ret = bond_release(bond_dev, slave_dev);
2067 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002068 pr_info("%s: destroying bond %s.\n",
2069 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002070 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002071 }
2072 return ret;
2073}
2074
2075/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 * This function releases all slaves.
2077 */
2078static int bond_release_all(struct net_device *bond_dev)
2079{
Wang Chen454d7c92008-11-12 23:37:49 -08002080 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct slave *slave;
2082 struct net_device *slave_dev;
2083 struct sockaddr addr;
2084
2085 write_lock_bh(&bond->lock);
2086
Jay Vosburghff59c452006-03-27 13:27:43 -08002087 netif_carrier_off(bond_dev);
2088
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002089 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 bond->current_arp_slave = NULL;
2093 bond->primary_slave = NULL;
2094 bond_change_active_slave(bond, NULL);
2095
2096 while ((slave = bond->first_slave) != NULL) {
2097 /* Inform AD package of unbinding of slave
2098 * before slave is detached from the list.
2099 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002100 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 slave_dev = slave->dev;
2104 bond_detach_slave(bond, slave);
2105
Jay Vosburgh25433312008-01-17 16:24:59 -08002106 /* now that the slave is detached, unlock and perform
2107 * all the undo steps that should not be called from
2108 * within a lock.
2109 */
2110 write_unlock_bh(&bond->lock);
2111
Holger Eitzenberger58402052008-12-09 23:07:13 -08002112 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 /* must be called only after the slave
2114 * has been detached from the list
2115 */
2116 bond_alb_deinit_slave(bond, slave);
2117 }
2118
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002119 bond_compute_features(bond);
2120
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002121 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 bond_del_vlans_from_slave(bond, slave_dev);
2123
2124 /* If the mode USES_PRIMARY, then we should only remove its
2125 * promisc and mc settings if it was the curr_active_slave, but that was
2126 * already taken care of above when we detached the slave
2127 */
2128 if (!USES_PRIMARY(bond->params.mode)) {
2129 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002130 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002134 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002138 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002140 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
2142
2143 netdev_set_master(slave_dev, NULL);
2144
2145 /* close slave before restoring its mac address */
2146 dev_close(slave_dev);
2147
Jay Vosburghdd957c52007-10-09 19:57:24 -07002148 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002149 /* restore original ("permanent") mac address*/
2150 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2151 addr.sa_family = slave_dev->type;
2152 dev_set_mac_address(slave_dev, &addr);
2153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002155 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2156 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 kfree(slave);
2159
2160 /* re-acquire the lock before getting the next slave */
2161 write_lock_bh(&bond->lock);
2162 }
2163
2164 /* zero the mac address of the master so it will be
2165 * set by the application to the mac address of the
2166 * first slave
2167 */
2168 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2169
Jay Vosburghf35188f2010-07-21 12:14:47 +00002170 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002172 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002173 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2174 bond_dev->name, bond_dev->name);
2175 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2176 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
2178
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002179 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181out:
2182 write_unlock_bh(&bond->lock);
2183
2184 return 0;
2185}
2186
2187/*
2188 * This function changes the active slave to slave <slave_dev>.
2189 * It returns -EINVAL in the following cases.
2190 * - <slave_dev> is not found in the list.
2191 * - There is not active slave now.
2192 * - <slave_dev> is already active.
2193 * - The link state of <slave_dev> is not BOND_LINK_UP.
2194 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002195 * In these cases, this function does nothing.
2196 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 */
2198static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2199{
Wang Chen454d7c92008-11-12 23:37:49 -08002200 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 struct slave *old_active = NULL;
2202 struct slave *new_active = NULL;
2203 int res = 0;
2204
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002205 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
2208 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002209 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002212 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002214 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002216 read_unlock(&bond->curr_slave_lock);
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 new_active = bond_get_slave_by_dev(bond, slave_dev);
2219
2220 /*
2221 * Changing to the current active: do nothing; return success.
2222 */
2223 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002224 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 return 0;
2226 }
2227
2228 if ((new_active) &&
2229 (old_active) &&
2230 (new_active->link == BOND_LINK_UP) &&
2231 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002232 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002234 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002235 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002238 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 return res;
2241}
2242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2244{
Wang Chen454d7c92008-11-12 23:37:49 -08002245 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 info->bond_mode = bond->params.mode;
2248 info->miimon = bond->params.miimon;
2249
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002250 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002252 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 return 0;
2255}
2256
2257static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2258{
Wang Chen454d7c92008-11-12 23:37:49 -08002259 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002261 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002263 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 bond_for_each_slave(bond, slave, i) {
2266 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002267 res = 0;
2268 strcpy(info->slave_name, slave->dev->name);
2269 info->link = slave->link;
2270 info->state = slave->state;
2271 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 break;
2273 }
2274 }
2275
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002276 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Eric Dumazet689c96c2009-04-23 03:39:04 +00002278 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279}
2280
2281/*-------------------------------- Monitoring -------------------------------*/
2282
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002283
2284static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002286 struct slave *slave;
2287 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002288 bool ignore_updelay;
2289
2290 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002293 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002295 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002298 case BOND_LINK_UP:
2299 if (link_state)
2300 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002302 slave->link = BOND_LINK_FAIL;
2303 slave->delay = bond->params.downdelay;
2304 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002305 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2306 bond->dev->name,
2307 (bond->params.mode ==
2308 BOND_MODE_ACTIVEBACKUP) ?
2309 ((slave->state == BOND_STATE_ACTIVE) ?
2310 "active " : "backup ") : "",
2311 slave->dev->name,
2312 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002314 /*FALLTHRU*/
2315 case BOND_LINK_FAIL:
2316 if (link_state) {
2317 /*
2318 * recovered before downdelay expired
2319 */
2320 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002322 pr_info("%s: link status up again after %d ms for interface %s.\n",
2323 bond->dev->name,
2324 (bond->params.downdelay - slave->delay) *
2325 bond->params.miimon,
2326 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002327 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002329
2330 if (slave->delay <= 0) {
2331 slave->new_link = BOND_LINK_DOWN;
2332 commit++;
2333 continue;
2334 }
2335
2336 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002339 case BOND_LINK_DOWN:
2340 if (!link_state)
2341 continue;
2342
2343 slave->link = BOND_LINK_BACK;
2344 slave->delay = bond->params.updelay;
2345
2346 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002347 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2348 bond->dev->name, slave->dev->name,
2349 ignore_updelay ? 0 :
2350 bond->params.updelay *
2351 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002353 /*FALLTHRU*/
2354 case BOND_LINK_BACK:
2355 if (!link_state) {
2356 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002357 pr_info("%s: link status down again after %d ms for interface %s.\n",
2358 bond->dev->name,
2359 (bond->params.updelay - slave->delay) *
2360 bond->params.miimon,
2361 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002362
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002363 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002365
Jiri Pirko41f89102009-04-24 03:57:29 +00002366 if (ignore_updelay)
2367 slave->delay = 0;
2368
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002369 if (slave->delay <= 0) {
2370 slave->new_link = BOND_LINK_UP;
2371 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002372 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002373 continue;
2374 }
2375
2376 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002378 }
2379 }
2380
2381 return commit;
2382}
2383
2384static void bond_miimon_commit(struct bonding *bond)
2385{
2386 struct slave *slave;
2387 int i;
2388
2389 bond_for_each_slave(bond, slave, i) {
2390 switch (slave->new_link) {
2391 case BOND_LINK_NOCHANGE:
2392 continue;
2393
2394 case BOND_LINK_UP:
2395 slave->link = BOND_LINK_UP;
2396 slave->jiffies = jiffies;
2397
2398 if (bond->params.mode == BOND_MODE_8023AD) {
2399 /* prevent it from being the active one */
2400 slave->state = BOND_STATE_BACKUP;
2401 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2402 /* make it immediately active */
2403 slave->state = BOND_STATE_ACTIVE;
2404 } else if (slave != bond->primary_slave) {
2405 /* prevent it from being the active one */
2406 slave->state = BOND_STATE_BACKUP;
2407 }
2408
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002409 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2410 bond->dev->name, slave->dev->name,
2411 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002412
2413 /* notify ad that the link status has changed */
2414 if (bond->params.mode == BOND_MODE_8023AD)
2415 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2416
Holger Eitzenberger58402052008-12-09 23:07:13 -08002417 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002418 bond_alb_handle_link_change(bond, slave,
2419 BOND_LINK_UP);
2420
2421 if (!bond->curr_active_slave ||
2422 (slave == bond->primary_slave))
2423 goto do_failover;
2424
2425 continue;
2426
2427 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002428 if (slave->link_failure_count < UINT_MAX)
2429 slave->link_failure_count++;
2430
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002431 slave->link = BOND_LINK_DOWN;
2432
2433 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2434 bond->params.mode == BOND_MODE_8023AD)
2435 bond_set_slave_inactive_flags(slave);
2436
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002437 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2438 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002439
2440 if (bond->params.mode == BOND_MODE_8023AD)
2441 bond_3ad_handle_link_change(slave,
2442 BOND_LINK_DOWN);
2443
Jiri Pirkoae63e802009-05-27 05:42:36 +00002444 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002445 bond_alb_handle_link_change(bond, slave,
2446 BOND_LINK_DOWN);
2447
2448 if (slave == bond->curr_active_slave)
2449 goto do_failover;
2450
2451 continue;
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002454 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002455 bond->dev->name, slave->new_link,
2456 slave->dev->name);
2457 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002459 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
2461
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002462do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002463 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002464 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002466 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002467 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002468
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002469 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002472/*
2473 * bond_mii_monitor
2474 *
2475 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002476 * inspection, then (if inspection indicates something needs to be done)
2477 * an acquisition of appropriate locks followed by a commit phase to
2478 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002479 */
2480void bond_mii_monitor(struct work_struct *work)
2481{
2482 struct bonding *bond = container_of(work, struct bonding,
2483 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002484
2485 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002486 if (bond->kill_timers)
2487 goto out;
2488
2489 if (bond->slave_cnt == 0)
2490 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002491
2492 if (bond->send_grat_arp) {
2493 read_lock(&bond->curr_slave_lock);
2494 bond_send_gratuitous_arp(bond);
2495 read_unlock(&bond->curr_slave_lock);
2496 }
2497
Brian Haley305d5522008-11-04 17:51:14 -08002498 if (bond->send_unsol_na) {
2499 read_lock(&bond->curr_slave_lock);
2500 bond_send_unsolicited_na(bond);
2501 read_unlock(&bond->curr_slave_lock);
2502 }
2503
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002504 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002505 read_unlock(&bond->lock);
2506 rtnl_lock();
2507 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002508
2509 bond_miimon_commit(bond);
2510
Jay Vosburgh56556622008-01-17 16:25:03 -08002511 read_unlock(&bond->lock);
2512 rtnl_unlock(); /* might sleep, hold no other locks */
2513 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002514 }
2515
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002516re_arm:
2517 if (bond->params.miimon)
2518 queue_delayed_work(bond->wq, &bond->mii_work,
2519 msecs_to_jiffies(bond->params.miimon));
2520out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002521 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002522}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002523
Al Virod3bb52b2007-08-22 20:06:58 -04002524static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002525{
2526 struct in_device *idev;
2527 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002528 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002529
2530 if (!dev)
2531 return 0;
2532
2533 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002534 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002535 if (!idev)
2536 goto out;
2537
2538 ifa = idev->ifa_list;
2539 if (!ifa)
2540 goto out;
2541
2542 addr = ifa->ifa_local;
2543out:
2544 rcu_read_unlock();
2545 return addr;
2546}
2547
Al Virod3bb52b2007-08-22 20:06:58 -04002548static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002549{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002550 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002551
2552 if (ip == bond->master_ip)
2553 return 1;
2554
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002555 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002556 if (ip == vlan->vlan_ip)
2557 return 1;
2558 }
2559
2560 return 0;
2561}
2562
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002563/*
2564 * We go to the (large) trouble of VLAN tagging ARP frames because
2565 * switches in VLAN mode (especially if ports are configured as
2566 * "native" to a VLAN) might not pass non-tagged frames.
2567 */
Al Virod3bb52b2007-08-22 20:06:58 -04002568static 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 -04002569{
2570 struct sk_buff *skb;
2571
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002572 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002573 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002574
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002575 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2576 NULL, slave_dev->dev_addr, NULL);
2577
2578 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002579 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002580 return;
2581 }
2582 if (vlan_id) {
2583 skb = vlan_put_tag(skb, vlan_id);
2584 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002585 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002586 return;
2587 }
2588 }
2589 arp_xmit(skb);
2590}
2591
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2594{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002595 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002596 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002597 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002598 struct net_device *vlan_dev;
2599 struct flowi fl;
2600 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Mitch Williams6b780562005-11-09 10:36:19 -08002602 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2603 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002604 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002605 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002606 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002607 pr_debug("basa: empty vlan: 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 /*
2614 * If VLANs are configured, we do a route lookup to
2615 * determine which VLAN interface would be used, so we
2616 * can tag the ARP with the proper VLAN tag.
2617 */
2618 memset(&fl, 0, sizeof(fl));
2619 fl.fl4_dst = targets[i];
2620 fl.fl4_tos = RTO_ONLINK;
2621
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002622 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002623 if (rv) {
2624 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002625 pr_warning("%s: no route to arp_ip_target %pI4\n",
2626 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002627 }
2628 continue;
2629 }
2630
2631 /*
2632 * This target is not on a VLAN
2633 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002634 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002635 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002636 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002637 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2638 bond->master_ip, 0);
2639 continue;
2640 }
2641
2642 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002643 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002644 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002645 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002646 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002647 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002648 vlan_dev->name, vlan_id);
2649 break;
2650 }
2651 }
2652
2653 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002654 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002655 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2656 vlan->vlan_ip, vlan_id);
2657 continue;
2658 }
2659
2660 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002661 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2662 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002663 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002664 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002665 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002666 }
2667}
2668
2669/*
2670 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2671 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002672 *
2673 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002674 */
2675static void bond_send_gratuitous_arp(struct bonding *bond)
2676{
2677 struct slave *slave = bond->curr_active_slave;
2678 struct vlan_entry *vlan;
2679 struct net_device *vlan_dev;
2680
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002681 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2682 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002683
2684 if (!slave || !bond->send_grat_arp ||
2685 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002686 return;
2687
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002688 bond->send_grat_arp--;
2689
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002690 if (bond->master_ip) {
2691 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002692 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002693 }
2694
Jay Vosburghf35188f2010-07-21 12:14:47 +00002695 if (!bond->vlgrp)
2696 return;
2697
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002698 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002699 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002700 if (vlan->vlan_ip) {
2701 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2702 vlan->vlan_ip, vlan->vlan_id);
2703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 }
2705}
2706
Al Virod3bb52b2007-08-22 20:06:58 -04002707static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002708{
2709 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002710 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002711
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002712 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002713 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002714 &sip, &tip, i, &targets[i],
2715 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002716 if (sip == targets[i]) {
2717 if (bond_has_this_ip(bond, tip))
2718 slave->last_arp_rx = jiffies;
2719 return;
2720 }
2721 }
2722}
2723
2724static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2725{
2726 struct arphdr *arp;
2727 struct slave *slave;
2728 struct bonding *bond;
2729 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002730 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002731
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002732 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2733 /*
2734 * When using VLANS and bonding, dev and oriv_dev may be
2735 * incorrect if the physical interface supports VLAN
2736 * acceleration. With this change ARP validation now
2737 * works for hosts only reachable on the VLAN interface.
2738 */
2739 dev = vlan_dev_real_dev(dev);
2740 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2741 }
2742
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002743 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2744 goto out;
2745
Wang Chen454d7c92008-11-12 23:37:49 -08002746 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002747 read_lock(&bond->lock);
2748
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002749 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002750 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2751 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002752
2753 slave = bond_get_slave_by_dev(bond, orig_dev);
2754 if (!slave || !slave_do_arp_validate(bond, slave))
2755 goto out_unlock;
2756
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002757 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002758 goto out_unlock;
2759
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002760 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002761 if (arp->ar_hln != dev->addr_len ||
2762 skb->pkt_type == PACKET_OTHERHOST ||
2763 skb->pkt_type == PACKET_LOOPBACK ||
2764 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2765 arp->ar_pro != htons(ETH_P_IP) ||
2766 arp->ar_pln != 4)
2767 goto out_unlock;
2768
2769 arp_ptr = (unsigned char *)(arp + 1);
2770 arp_ptr += dev->addr_len;
2771 memcpy(&sip, arp_ptr, 4);
2772 arp_ptr += 4 + dev->addr_len;
2773 memcpy(&tip, arp_ptr, 4);
2774
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002775 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002776 bond->dev->name, slave->dev->name, slave->state,
2777 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2778 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002779
2780 /*
2781 * Backup slaves won't see the ARP reply, but do come through
2782 * here for each ARP probe (so we swap the sip/tip to validate
2783 * the probe). In a "redundant switch, common router" type of
2784 * configuration, the ARP probe will (hopefully) travel from
2785 * the active, through one switch, the router, then the other
2786 * switch before reaching the backup.
2787 */
2788 if (slave->state == BOND_STATE_ACTIVE)
2789 bond_validate_arp(bond, slave, sip, tip);
2790 else
2791 bond_validate_arp(bond, slave, tip, sip);
2792
2793out_unlock:
2794 read_unlock(&bond->lock);
2795out:
2796 dev_kfree_skb(skb);
2797 return NET_RX_SUCCESS;
2798}
2799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800/*
2801 * this function is called regularly to monitor each slave's link
2802 * ensuring that traffic is being sent and received when arp monitoring
2803 * is used in load-balancing mode. if the adapter has been dormant, then an
2804 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2805 * arp monitoring in active backup mode.
2806 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002807void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002809 struct bonding *bond = container_of(work, struct bonding,
2810 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 struct slave *slave, *oldcurrent;
2812 int do_failover = 0;
2813 int delta_in_ticks;
2814 int i;
2815
2816 read_lock(&bond->lock);
2817
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002818 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002820 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002823 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 read_lock(&bond->curr_slave_lock);
2827 oldcurrent = bond->curr_active_slave;
2828 read_unlock(&bond->curr_slave_lock);
2829
2830 /* see if any of the previous devices are up now (i.e. they have
2831 * xmt and rcv traffic). the curr_active_slave does not come into
2832 * the picture unless it is null. also, slave->jiffies is not needed
2833 * here because we send an arp on each slave and give a slave as
2834 * long as it needs to get the tx/rx within the delta.
2835 * TODO: what about up/down delay in arp mode? it wasn't here before
2836 * so it can wait
2837 */
2838 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002839 unsigned long trans_start = dev_trans_start(slave->dev);
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002842 if (time_in_range(jiffies,
2843 trans_start - delta_in_ticks,
2844 trans_start + delta_in_ticks) &&
2845 time_in_range(jiffies,
2846 slave->dev->last_rx - delta_in_ticks,
2847 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 slave->link = BOND_LINK_UP;
2850 slave->state = BOND_STATE_ACTIVE;
2851
2852 /* primary_slave has no meaning in round-robin
2853 * mode. the window of a slave being up and
2854 * curr_active_slave being null after enslaving
2855 * is closed.
2856 */
2857 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002858 pr_info("%s: link status definitely up for interface %s, ",
2859 bond->dev->name,
2860 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 do_failover = 1;
2862 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002863 pr_info("%s: interface %s is now up\n",
2864 bond->dev->name,
2865 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867 }
2868 } else {
2869 /* slave->link == BOND_LINK_UP */
2870
2871 /* not all switches will respond to an arp request
2872 * when the source ip is 0, so don't take the link down
2873 * if we don't know our ip yet
2874 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002875 if (!time_in_range(jiffies,
2876 trans_start - delta_in_ticks,
2877 trans_start + 2 * delta_in_ticks) ||
2878 !time_in_range(jiffies,
2879 slave->dev->last_rx - delta_in_ticks,
2880 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
2882 slave->link = BOND_LINK_DOWN;
2883 slave->state = BOND_STATE_BACKUP;
2884
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002885 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002888 pr_info("%s: interface %s is now down.\n",
2889 bond->dev->name,
2890 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002892 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
2895 }
2896
2897 /* note: if switch is in round-robin mode, all links
2898 * must tx arp to ensure all links rx an arp - otherwise
2899 * links may oscillate or not come up at all; if switch is
2900 * in something like xor mode, there is nothing we can
2901 * do - all replies will be rx'ed on same link causing slaves
2902 * to be unstable during low/no traffic periods
2903 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002904 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
2907
2908 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002909 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911 bond_select_active_slave(bond);
2912
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002913 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 }
2915
2916re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002917 if (bond->params.arp_interval)
2918 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919out:
2920 read_unlock(&bond->lock);
2921}
2922
2923/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002924 * Called to inspect slaves for active-backup mode ARP monitor link state
2925 * changes. Sets new_link in slaves to specify what action should take
2926 * place for the slave. Returns 0 if no changes are found, >0 if changes
2927 * to link states must be committed.
2928 *
2929 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002931static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002934 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002935 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002938 slave->new_link = BOND_LINK_NOCHANGE;
2939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002941 if (time_in_range(jiffies,
2942 slave_last_rx(bond, slave) - delta_in_ticks,
2943 slave_last_rx(bond, slave) + delta_in_ticks)) {
2944
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002945 slave->new_link = BOND_LINK_UP;
2946 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002949 continue;
2950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002952 /*
2953 * Give slaves 2*delta after being enslaved or made
2954 * active. This avoids bouncing, as the last receive
2955 * times need a full ARP monitor cycle to be updated.
2956 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002957 if (time_in_range(jiffies,
2958 slave->jiffies - delta_in_ticks,
2959 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002960 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002962 /*
2963 * Backup slave is down if:
2964 * - No current_arp_slave AND
2965 * - more than 3*delta since last receive AND
2966 * - the bond has an IP address
2967 *
2968 * Note: a non-null current_arp_slave indicates
2969 * the curr_active_slave went down and we are
2970 * searching for a new one; under this condition
2971 * we only take the curr_active_slave down - this
2972 * gives each slave a chance to tx/rx traffic
2973 * before being taken out
2974 */
2975 if (slave->state == BOND_STATE_BACKUP &&
2976 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002977 !time_in_range(jiffies,
2978 slave_last_rx(bond, slave) - delta_in_ticks,
2979 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2980
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002981 slave->new_link = BOND_LINK_DOWN;
2982 commit++;
2983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002985 /*
2986 * Active slave is down if:
2987 * - more than 2*delta since transmitting OR
2988 * - (more than 2*delta since receive AND
2989 * the bond has an IP address)
2990 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002991 trans_start = dev_trans_start(slave->dev);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002992 if ((slave->state == BOND_STATE_ACTIVE) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002993 (!time_in_range(jiffies,
2994 trans_start - delta_in_ticks,
2995 trans_start + 2 * delta_in_ticks) ||
2996 !time_in_range(jiffies,
2997 slave_last_rx(bond, slave) - delta_in_ticks,
2998 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
2999
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003000 slave->new_link = BOND_LINK_DOWN;
3001 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 }
3003 }
3004
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003005 return commit;
3006}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003008/*
3009 * Called to commit link state changes noted by inspection step of
3010 * active-backup mode ARP monitor.
3011 *
3012 * Called with RTNL and bond->lock for read.
3013 */
3014static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
3015{
3016 struct slave *slave;
3017 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003018 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003020 bond_for_each_slave(bond, slave, i) {
3021 switch (slave->new_link) {
3022 case BOND_LINK_NOCHANGE:
3023 continue;
3024
3025 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003026 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003027 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003028 time_in_range(jiffies,
3029 trans_start - delta_in_ticks,
3030 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003031 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003032 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003033 bond->current_arp_slave = NULL;
3034
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003035 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003036 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003037
Jiri Pirkob9f60252009-08-31 11:09:38 +00003038 if (!bond->curr_active_slave ||
3039 (slave == bond->primary_slave))
3040 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003041
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003042 }
3043
Jiri Pirkob9f60252009-08-31 11:09:38 +00003044 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003045
3046 case BOND_LINK_DOWN:
3047 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003050 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003051 bond_set_slave_inactive_flags(slave);
3052
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003053 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003054 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003055
3056 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003057 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003058 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003059 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003060
3061 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003062
3063 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003064 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003065 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003067 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Jiri Pirkob9f60252009-08-31 11:09:38 +00003070do_failover:
3071 ASSERT_RTNL();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003072 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003073 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003074 write_unlock_bh(&bond->curr_slave_lock);
3075 }
3076
3077 bond_set_carrier(bond);
3078}
3079
3080/*
3081 * Send ARP probes for active-backup mode ARP monitor.
3082 *
3083 * Called with bond->lock held for read.
3084 */
3085static void bond_ab_arp_probe(struct bonding *bond)
3086{
3087 struct slave *slave;
3088 int i;
3089
3090 read_lock(&bond->curr_slave_lock);
3091
3092 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003093 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3094 bond->current_arp_slave->dev->name,
3095 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003096
3097 if (bond->curr_active_slave) {
3098 bond_arp_send_all(bond, bond->curr_active_slave);
3099 read_unlock(&bond->curr_slave_lock);
3100 return;
3101 }
3102
3103 read_unlock(&bond->curr_slave_lock);
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 /* if we don't have a curr_active_slave, search for the next available
3106 * backup slave from the current_arp_slave and make it the candidate
3107 * for becoming the curr_active_slave
3108 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003109
3110 if (!bond->current_arp_slave) {
3111 bond->current_arp_slave = bond->first_slave;
3112 if (!bond->current_arp_slave)
3113 return;
3114 }
3115
3116 bond_set_slave_inactive_flags(bond->current_arp_slave);
3117
3118 /* search for next candidate */
3119 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3120 if (IS_UP(slave->dev)) {
3121 slave->link = BOND_LINK_BACK;
3122 bond_set_slave_active_flags(slave);
3123 bond_arp_send_all(bond, slave);
3124 slave->jiffies = jiffies;
3125 bond->current_arp_slave = slave;
3126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
3128
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003129 /* if the link state is up at this point, we
3130 * mark it down - this can happen if we have
3131 * simultaneous link failures and
3132 * reselect_active_interface doesn't make this
3133 * one the current slave so it is still marked
3134 * up when it is actually down
3135 */
3136 if (slave->link == BOND_LINK_UP) {
3137 slave->link = BOND_LINK_DOWN;
3138 if (slave->link_failure_count < UINT_MAX)
3139 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003141 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003143 pr_info("%s: backup interface %s is now down.\n",
3144 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 }
3146 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003147}
3148
3149void bond_activebackup_arp_mon(struct work_struct *work)
3150{
3151 struct bonding *bond = container_of(work, struct bonding,
3152 arp_work.work);
3153 int delta_in_ticks;
3154
3155 read_lock(&bond->lock);
3156
3157 if (bond->kill_timers)
3158 goto out;
3159
3160 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3161
3162 if (bond->slave_cnt == 0)
3163 goto re_arm;
3164
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003165 if (bond->send_grat_arp) {
3166 read_lock(&bond->curr_slave_lock);
3167 bond_send_gratuitous_arp(bond);
3168 read_unlock(&bond->curr_slave_lock);
3169 }
3170
Brian Haley305d5522008-11-04 17:51:14 -08003171 if (bond->send_unsol_na) {
3172 read_lock(&bond->curr_slave_lock);
3173 bond_send_unsolicited_na(bond);
3174 read_unlock(&bond->curr_slave_lock);
3175 }
3176
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003177 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3178 read_unlock(&bond->lock);
3179 rtnl_lock();
3180 read_lock(&bond->lock);
3181
3182 bond_ab_arp_commit(bond, delta_in_ticks);
3183
3184 read_unlock(&bond->lock);
3185 rtnl_unlock();
3186 read_lock(&bond->lock);
3187 }
3188
3189 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
3191re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003192 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003193 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194out:
3195 read_unlock(&bond->lock);
3196}
3197
3198/*------------------------------ proc/seq_file-------------------------------*/
3199
3200#ifdef CONFIG_PROC_FS
3201
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003203 __acquires(&dev_base_lock)
3204 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205{
3206 struct bonding *bond = seq->private;
3207 loff_t off = 0;
3208 struct slave *slave;
3209 int i;
3210
3211 /* make sure the bond won't be taken away */
3212 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003213 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003215 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003219 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 }
3222
3223 return NULL;
3224}
3225
3226static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3227{
3228 struct bonding *bond = seq->private;
3229 struct slave *slave = v;
3230
3231 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003232 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
3235 slave = slave->next;
3236
3237 return (slave == bond->first_slave) ? NULL : slave;
3238}
3239
3240static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003241 __releases(&bond->lock)
3242 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243{
3244 struct bonding *bond = seq->private;
3245
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003246 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 read_unlock(&dev_base_lock);
3248}
3249
3250static void bond_info_show_master(struct seq_file *seq)
3251{
3252 struct bonding *bond = seq->private;
3253 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003254 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
3256 read_lock(&bond->curr_slave_lock);
3257 curr = bond->curr_active_slave;
3258 read_unlock(&bond->curr_slave_lock);
3259
Jay Vosburghdd957c52007-10-09 19:57:24 -07003260 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 bond_mode_name(bond->params.mode));
3262
Jay Vosburghdd957c52007-10-09 19:57:24 -07003263 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3264 bond->params.fail_over_mac)
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07003265 seq_printf(seq, " (fail_over_mac %s)",
3266 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003267
3268 seq_printf(seq, "\n");
3269
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003270 if (bond->params.mode == BOND_MODE_XOR ||
3271 bond->params.mode == BOND_MODE_8023AD) {
3272 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3273 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3274 bond->params.xmit_policy);
3275 }
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003278 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003279 (bond->primary_slave) ?
3280 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003281 if (bond->primary_slave)
3282 seq_printf(seq, " (primary_reselect %s)",
3283 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Jiri Pirkoa5499522009-09-25 03:28:09 +00003285 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 (curr) ? curr->dev->name : "None");
3287 }
3288
Jay Vosburghff59c452006-03-27 13:27:43 -08003289 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3290 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3292 seq_printf(seq, "Up Delay (ms): %d\n",
3293 bond->params.updelay * bond->params.miimon);
3294 seq_printf(seq, "Down Delay (ms): %d\n",
3295 bond->params.downdelay * bond->params.miimon);
3296
Mitch Williams4756b022005-11-09 10:36:25 -08003297
3298 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003299 if (bond->params.arp_interval > 0) {
3300 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003301 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3302 bond->params.arp_interval);
3303
3304 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3305
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003306 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003307 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003308 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003309 if (printed)
3310 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003311 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003312 printed = 1;
3313 }
3314 seq_printf(seq, "\n");
3315 }
3316
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 if (bond->params.mode == BOND_MODE_8023AD) {
3318 struct ad_info ad_info;
3319
3320 seq_puts(seq, "\n802.3ad info\n");
3321 seq_printf(seq, "LACP rate: %s\n",
3322 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003323 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3324 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3327 seq_printf(seq, "bond %s has no active aggregator\n",
3328 bond->dev->name);
3329 } else {
3330 seq_printf(seq, "Active Aggregator Info:\n");
3331
3332 seq_printf(seq, "\tAggregator ID: %d\n",
3333 ad_info.aggregator_id);
3334 seq_printf(seq, "\tNumber of ports: %d\n",
3335 ad_info.ports);
3336 seq_printf(seq, "\tActor Key: %d\n",
3337 ad_info.actor_key);
3338 seq_printf(seq, "\tPartner Key: %d\n",
3339 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003340 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3341 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 }
3343 }
3344}
3345
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003346static void bond_info_show_slave(struct seq_file *seq,
3347 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348{
3349 struct bonding *bond = seq->private;
3350
3351 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3352 seq_printf(seq, "MII Status: %s\n",
3353 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami65509642006-09-22 21:53:08 -07003354 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 slave->link_failure_count);
3356
Johannes Berge1749612008-10-27 15:59:26 -07003357 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
3359 if (bond->params.mode == BOND_MODE_8023AD) {
3360 const struct aggregator *agg
3361 = SLAVE_AD_INFO(slave).port.aggregator;
3362
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003363 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 seq_printf(seq, "Aggregator ID: %d\n",
3365 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003366 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003369 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370}
3371
3372static int bond_info_seq_show(struct seq_file *seq, void *v)
3373{
3374 if (v == SEQ_START_TOKEN) {
3375 seq_printf(seq, "%s\n", version);
3376 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003377 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
3380 return 0;
3381}
3382
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003383static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 .start = bond_info_seq_start,
3385 .next = bond_info_seq_next,
3386 .stop = bond_info_seq_stop,
3387 .show = bond_info_seq_show,
3388};
3389
3390static int bond_info_open(struct inode *inode, struct file *file)
3391{
3392 struct seq_file *seq;
3393 struct proc_dir_entry *proc;
3394 int res;
3395
3396 res = seq_open(file, &bond_info_seq_ops);
3397 if (!res) {
3398 /* recover the pointer buried in proc_dir_entry data */
3399 seq = file->private_data;
3400 proc = PDE(inode);
3401 seq->private = proc->data;
3402 }
3403
3404 return res;
3405}
3406
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003407static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 .owner = THIS_MODULE,
3409 .open = bond_info_open,
3410 .read = seq_read,
3411 .llseek = seq_lseek,
3412 .release = seq_release,
3413};
3414
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003415static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416{
3417 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003418 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003420 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003421 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003422 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003423 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003424 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003425 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3426 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003427 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430}
3431
3432static void bond_remove_proc_entry(struct bonding *bond)
3433{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003434 struct net_device *bond_dev = bond->dev;
3435 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3436
3437 if (bn->proc_dir && bond->proc_entry) {
3438 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 memset(bond->proc_file_name, 0, IFNAMSIZ);
3440 bond->proc_entry = NULL;
3441 }
3442}
3443
3444/* Create the bonding directory under /proc/net, if doesn't exist yet.
3445 * Caller must hold rtnl_lock.
3446 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003447static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003449 if (!bn->proc_dir) {
3450 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3451 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003452 pr_warning("Warning: cannot create /proc/net/%s\n",
3453 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 }
3455}
3456
3457/* Destroy the bonding directory under /proc/net, if empty.
3458 * Caller must hold rtnl_lock.
3459 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003460static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003462 if (bn->proc_dir) {
3463 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3464 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 }
3466}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003467
3468#else /* !CONFIG_PROC_FS */
3469
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003470static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003471{
3472}
3473
3474static void bond_remove_proc_entry(struct bonding *bond)
3475{
3476}
3477
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003478static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003479{
3480}
3481
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003482static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003483{
3484}
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486#endif /* CONFIG_PROC_FS */
3487
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489/*-------------------------- netdev event handling --------------------------*/
3490
3491/*
3492 * Change device name
3493 */
3494static int bond_event_changename(struct bonding *bond)
3495{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 bond_remove_proc_entry(bond);
3497 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 return NOTIFY_DONE;
3500}
3501
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003502static int bond_master_netdev_event(unsigned long event,
3503 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504{
Wang Chen454d7c92008-11-12 23:37:49 -08003505 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
3507 switch (event) {
3508 case NETDEV_CHANGENAME:
3509 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 default:
3511 break;
3512 }
3513
3514 return NOTIFY_DONE;
3515}
3516
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003517static int bond_slave_netdev_event(unsigned long event,
3518 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519{
3520 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003521 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523 switch (event) {
3524 case NETDEV_UNREGISTER:
3525 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003526 if (bond->setup_by_slave)
3527 bond_release_and_destroy(bond_dev, slave_dev);
3528 else
3529 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 }
3531 break;
3532 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003533 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3534 struct slave *slave;
3535
3536 slave = bond_get_slave_by_dev(bond, slave_dev);
3537 if (slave) {
3538 u16 old_speed = slave->speed;
3539 u16 old_duplex = slave->duplex;
3540
3541 bond_update_speed_duplex(slave);
3542
3543 if (bond_is_lb(bond))
3544 break;
3545
3546 if (old_speed != slave->speed)
3547 bond_3ad_adapter_speed_changed(slave);
3548 if (old_duplex != slave->duplex)
3549 bond_3ad_adapter_duplex_changed(slave);
3550 }
3551 }
3552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 break;
3554 case NETDEV_DOWN:
3555 /*
3556 * ... Or is it this?
3557 */
3558 break;
3559 case NETDEV_CHANGEMTU:
3560 /*
3561 * TODO: Should slaves be allowed to
3562 * independently alter their MTU? For
3563 * an active-backup bond, slaves need
3564 * not be the same type of device, so
3565 * MTUs may vary. For other modes,
3566 * slaves arguably should have the
3567 * same MTUs. To do this, we'd need to
3568 * take over the slave's change_mtu
3569 * function for the duration of their
3570 * servitude.
3571 */
3572 break;
3573 case NETDEV_CHANGENAME:
3574 /*
3575 * TODO: handle changing the primary's name
3576 */
3577 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003578 case NETDEV_FEAT_CHANGE:
3579 bond_compute_features(bond);
3580 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 default:
3582 break;
3583 }
3584
3585 return NOTIFY_DONE;
3586}
3587
3588/*
3589 * bond_netdev_event: handle netdev notifier chain events.
3590 *
3591 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003592 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 * locks for us to safely manipulate the slave devices (RTNL lock,
3594 * dev_probe_lock).
3595 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003596static int bond_netdev_event(struct notifier_block *this,
3597 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598{
3599 struct net_device *event_dev = (struct net_device *)ptr;
3600
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003601 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003602 event_dev ? event_dev->name : "None",
3603 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003605 if (!(event_dev->priv_flags & IFF_BONDING))
3606 return NOTIFY_DONE;
3607
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003609 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 return bond_master_netdev_event(event, event_dev);
3611 }
3612
3613 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003614 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 return bond_slave_netdev_event(event, event_dev);
3616 }
3617
3618 return NOTIFY_DONE;
3619}
3620
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003621/*
3622 * bond_inetaddr_event: handle inetaddr notifier chain events.
3623 *
3624 * We keep track of device IPs primarily to use as source addresses in
3625 * ARP monitor probes (rather than spewing out broadcasts all the time).
3626 *
3627 * We track one IP for the main device (if it has one), plus one per VLAN.
3628 */
3629static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3630{
3631 struct in_ifaddr *ifa = ptr;
3632 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003633 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003634 struct bonding *bond;
3635 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003636
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003637 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003638 if (bond->dev == event_dev) {
3639 switch (event) {
3640 case NETDEV_UP:
3641 bond->master_ip = ifa->ifa_local;
3642 return NOTIFY_OK;
3643 case NETDEV_DOWN:
3644 bond->master_ip = bond_glean_dev_ip(bond->dev);
3645 return NOTIFY_OK;
3646 default:
3647 return NOTIFY_DONE;
3648 }
3649 }
3650
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003651 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003652 if (!bond->vlgrp)
3653 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003654 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003655 if (vlan_dev == event_dev) {
3656 switch (event) {
3657 case NETDEV_UP:
3658 vlan->vlan_ip = ifa->ifa_local;
3659 return NOTIFY_OK;
3660 case NETDEV_DOWN:
3661 vlan->vlan_ip =
3662 bond_glean_dev_ip(vlan_dev);
3663 return NOTIFY_OK;
3664 default:
3665 return NOTIFY_DONE;
3666 }
3667 }
3668 }
3669 }
3670 return NOTIFY_DONE;
3671}
3672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673static struct notifier_block bond_netdev_notifier = {
3674 .notifier_call = bond_netdev_event,
3675};
3676
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003677static struct notifier_block bond_inetaddr_notifier = {
3678 .notifier_call = bond_inetaddr_event,
3679};
3680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681/*-------------------------- Packet type handling ---------------------------*/
3682
3683/* register to receive lacpdus on a bond */
3684static void bond_register_lacpdu(struct bonding *bond)
3685{
3686 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3687
3688 /* initialize packet type */
3689 pk_type->type = PKT_TYPE_LACPDU;
3690 pk_type->dev = bond->dev;
3691 pk_type->func = bond_3ad_lacpdu_recv;
3692
3693 dev_add_pack(pk_type);
3694}
3695
3696/* unregister to receive lacpdus on a bond */
3697static void bond_unregister_lacpdu(struct bonding *bond)
3698{
3699 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3700}
3701
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003702void bond_register_arp(struct bonding *bond)
3703{
3704 struct packet_type *pt = &bond->arp_mon_pt;
3705
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003706 if (pt->type)
3707 return;
3708
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003709 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003710 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003711 pt->func = bond_arp_rcv;
3712 dev_add_pack(pt);
3713}
3714
3715void bond_unregister_arp(struct bonding *bond)
3716{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003717 struct packet_type *pt = &bond->arp_mon_pt;
3718
3719 dev_remove_pack(pt);
3720 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003721}
3722
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003723/*---------------------------- Hashing Policies -----------------------------*/
3724
3725/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003726 * Hash for the output device based upon layer 2 and layer 3 data. If
3727 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3728 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003729static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003730{
3731 struct ethhdr *data = (struct ethhdr *)skb->data;
3732 struct iphdr *iph = ip_hdr(skb);
3733
Brian Haleyf14c4e42008-09-02 10:08:08 -04003734 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003735 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003736 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003737 }
3738
Jasper Spaansd3da6832009-10-23 04:08:46 +00003739 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003740}
3741
3742/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003743 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003744 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3745 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3746 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003747static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003748{
3749 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003750 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003751 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003752 int layer4_xor = 0;
3753
Brian Haleyf14c4e42008-09-02 10:08:08 -04003754 if (skb->protocol == htons(ETH_P_IP)) {
3755 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003756 (iph->protocol == IPPROTO_TCP ||
3757 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003758 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003759 }
3760 return (layer4_xor ^
3761 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3762
3763 }
3764
Jasper Spaansd3da6832009-10-23 04:08:46 +00003765 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003766}
3767
3768/*
3769 * Hash for the output device based upon layer 2 data
3770 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003771static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003772{
3773 struct ethhdr *data = (struct ethhdr *)skb->data;
3774
Jasper Spaansd3da6832009-10-23 04:08:46 +00003775 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003776}
3777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778/*-------------------------- Device entry points ----------------------------*/
3779
3780static int bond_open(struct net_device *bond_dev)
3781{
Wang Chen454d7c92008-11-12 23:37:49 -08003782 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
3784 bond->kill_timers = 0;
3785
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003786 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3787
Holger Eitzenberger58402052008-12-09 23:07:13 -08003788 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 /* bond_alb_initialize must be called before the timer
3790 * is started.
3791 */
3792 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3793 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003794 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 }
3796
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003797 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3798 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 }
3800
3801 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003802 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3803 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 }
3805
3806 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003807 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3808 INIT_DELAYED_WORK(&bond->arp_work,
3809 bond_activebackup_arp_mon);
3810 else
3811 INIT_DELAYED_WORK(&bond->arp_work,
3812 bond_loadbalance_arp_mon);
3813
3814 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003815 if (bond->params.arp_validate)
3816 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 }
3818
3819 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003820 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003821 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 /* register to receive LACPDUs */
3823 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003824 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 }
3826
3827 return 0;
3828}
3829
3830static int bond_close(struct net_device *bond_dev)
3831{
Wang Chen454d7c92008-11-12 23:37:49 -08003832 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
3834 if (bond->params.mode == BOND_MODE_8023AD) {
3835 /* Unregister the receive of LACPDUs */
3836 bond_unregister_lacpdu(bond);
3837 }
3838
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003839 if (bond->params.arp_validate)
3840 bond_unregister_arp(bond);
3841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 write_lock_bh(&bond->lock);
3843
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003844 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003845 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
3847 /* signal timers not to re-arm */
3848 bond->kill_timers = 1;
3849
3850 write_unlock_bh(&bond->lock);
3851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003853 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 }
3855
3856 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003857 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 }
3859
3860 switch (bond->params.mode) {
3861 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003862 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 break;
3864 case BOND_MODE_TLB:
3865 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003866 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 break;
3868 default:
3869 break;
3870 }
3871
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003872 if (delayed_work_pending(&bond->mcast_work))
3873 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Holger Eitzenberger58402052008-12-09 23:07:13 -08003875 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 /* Must be called only after all
3877 * slaves have been released
3878 */
3879 bond_alb_deinitialize(bond);
3880 }
3881
3882 return 0;
3883}
3884
Eric Dumazet28172732010-07-07 14:58:56 -07003885static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3886 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887{
Wang Chen454d7c92008-11-12 23:37:49 -08003888 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003889 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 struct slave *slave;
3891 int i;
3892
Eric Dumazet28172732010-07-07 14:58:56 -07003893 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
3895 read_lock_bh(&bond->lock);
3896
3897 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003898 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003899 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003900
Eric Dumazet28172732010-07-07 14:58:56 -07003901 stats->rx_packets += sstats->rx_packets;
3902 stats->rx_bytes += sstats->rx_bytes;
3903 stats->rx_errors += sstats->rx_errors;
3904 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Eric Dumazet28172732010-07-07 14:58:56 -07003906 stats->tx_packets += sstats->tx_packets;
3907 stats->tx_bytes += sstats->tx_bytes;
3908 stats->tx_errors += sstats->tx_errors;
3909 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Eric Dumazet28172732010-07-07 14:58:56 -07003911 stats->multicast += sstats->multicast;
3912 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Eric Dumazet28172732010-07-07 14:58:56 -07003914 stats->rx_length_errors += sstats->rx_length_errors;
3915 stats->rx_over_errors += sstats->rx_over_errors;
3916 stats->rx_crc_errors += sstats->rx_crc_errors;
3917 stats->rx_frame_errors += sstats->rx_frame_errors;
3918 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3919 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Eric Dumazet28172732010-07-07 14:58:56 -07003921 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3922 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3923 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3924 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3925 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 }
3927
3928 read_unlock_bh(&bond->lock);
3929
3930 return stats;
3931}
3932
3933static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3934{
3935 struct net_device *slave_dev = NULL;
3936 struct ifbond k_binfo;
3937 struct ifbond __user *u_binfo = NULL;
3938 struct ifslave k_sinfo;
3939 struct ifslave __user *u_sinfo = NULL;
3940 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 int res = 0;
3942
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003943 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
3945 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 case SIOCGMIIPHY:
3947 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003948 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 mii->phy_id = 0;
3952 /* Fall Through */
3953 case SIOCGMIIREG:
3954 /*
3955 * We do this again just in case we were called by SIOCGMIIREG
3956 * instead of SIOCGMIIPHY.
3957 */
3958 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003959 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
3963 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003964 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003966 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003968 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003970
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003972 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 }
3974
3975 return 0;
3976 case BOND_INFO_QUERY_OLD:
3977 case SIOCBONDINFOQUERY:
3978 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3979
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003980 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
3983 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003984 if (res == 0 &&
3985 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3986 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
3988 return res;
3989 case BOND_SLAVE_INFO_QUERY_OLD:
3990 case SIOCBONDSLAVEINFOQUERY:
3991 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3992
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003993 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
3996 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003997 if (res == 0 &&
3998 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3999 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
4001 return res;
4002 default:
4003 /* Go on */
4004 break;
4005 }
4006
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004007 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004010 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004012 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004014 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004016 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004017 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 switch (cmd) {
4019 case BOND_ENSLAVE_OLD:
4020 case SIOCBONDENSLAVE:
4021 res = bond_enslave(bond_dev, slave_dev);
4022 break;
4023 case BOND_RELEASE_OLD:
4024 case SIOCBONDRELEASE:
4025 res = bond_release(bond_dev, slave_dev);
4026 break;
4027 case BOND_SETHWADDR_OLD:
4028 case SIOCBONDSETHWADDR:
4029 res = bond_sethwaddr(bond_dev, slave_dev);
4030 break;
4031 case BOND_CHANGE_ACTIVE_OLD:
4032 case SIOCBONDCHANGEACTIVE:
4033 res = bond_ioctl_change_active(bond_dev, slave_dev);
4034 break;
4035 default:
4036 res = -EOPNOTSUPP;
4037 }
4038
4039 dev_put(slave_dev);
4040 }
4041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 return res;
4043}
4044
Jiri Pirko22bedad2010-04-01 21:22:57 +00004045static bool bond_addr_in_mc_list(unsigned char *addr,
4046 struct netdev_hw_addr_list *list,
4047 int addrlen)
4048{
4049 struct netdev_hw_addr *ha;
4050
4051 netdev_hw_addr_list_for_each(ha, list)
4052 if (!memcmp(ha->addr, addr, addrlen))
4053 return true;
4054
4055 return false;
4056}
4057
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058static void bond_set_multicast_list(struct net_device *bond_dev)
4059{
Wang Chen454d7c92008-11-12 23:37:49 -08004060 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00004061 struct netdev_hw_addr *ha;
4062 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 /*
4065 * Do promisc before checking multicast_mode
4066 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004067 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004068 /*
4069 * FIXME: Need to handle the error when one of the multi-slaves
4070 * encounters error.
4071 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004074
4075 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004080 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004081 /*
4082 * FIXME: Need to handle the error when one of the multi-slaves
4083 * encounters error.
4084 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004087
4088 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004092 read_lock(&bond->lock);
4093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 bond->flags = bond_dev->flags;
4095
4096 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004097 netdev_for_each_mc_addr(ha, bond_dev) {
4098 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4099 bond_dev->addr_len);
4100 if (!found)
4101 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 }
4103
4104 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004105 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4106 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4107 bond_dev->addr_len);
4108 if (!found)
4109 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 }
4111
4112 /* save master's multicast list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004113 __hw_addr_flush(&bond->mc_list);
4114 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4115 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004117 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118}
4119
Stephen Hemminger00829822008-11-20 20:14:53 -08004120static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4121{
4122 struct bonding *bond = netdev_priv(dev);
4123 struct slave *slave = bond->first_slave;
4124
4125 if (slave) {
4126 const struct net_device_ops *slave_ops
4127 = slave->dev->netdev_ops;
4128 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004129 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004130 }
4131 return 0;
4132}
4133
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134/*
4135 * Change the MTU of all of a master's slaves to match the master
4136 */
4137static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4138{
Wang Chen454d7c92008-11-12 23:37:49 -08004139 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 struct slave *slave, *stop_at;
4141 int res = 0;
4142 int i;
4143
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004144 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004145 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
4147 /* Can't hold bond->lock with bh disabled here since
4148 * some base drivers panic. On the other hand we can't
4149 * hold bond->lock without bh disabled because we'll
4150 * deadlock. The only solution is to rely on the fact
4151 * that we're under rtnl_lock here, and the slaves
4152 * list won't change. This doesn't solve the problem
4153 * of setting the slave's MTU while it is
4154 * transmitting, but the assumption is that the base
4155 * driver can handle that.
4156 *
4157 * TODO: figure out a way to safely iterate the slaves
4158 * list, but without holding a lock around the actual
4159 * call to the base driver.
4160 */
4161
4162 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004163 pr_debug("s %p s->p %p c_m %p\n",
4164 slave,
4165 slave->prev,
4166 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004167
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 res = dev_set_mtu(slave->dev, new_mtu);
4169
4170 if (res) {
4171 /* If we failed to set the slave's mtu to the new value
4172 * we must abort the operation even in ACTIVE_BACKUP
4173 * mode, because if we allow the backup slaves to have
4174 * different mtu values than the active slave we'll
4175 * need to change their mtu when doing a failover. That
4176 * means changing their mtu from timer context, which
4177 * is probably not a good idea.
4178 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004179 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 goto unwind;
4181 }
4182 }
4183
4184 bond_dev->mtu = new_mtu;
4185
4186 return 0;
4187
4188unwind:
4189 /* unwind from head to the slave that failed */
4190 stop_at = slave;
4191 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4192 int tmp_res;
4193
4194 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4195 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004196 pr_debug("unwind err %d dev %s\n",
4197 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 }
4199 }
4200
4201 return res;
4202}
4203
4204/*
4205 * Change HW address
4206 *
4207 * Note that many devices must be down to change the HW address, and
4208 * downing the master releases all slaves. We can make bonds full of
4209 * bonding devices to test this, however.
4210 */
4211static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4212{
Wang Chen454d7c92008-11-12 23:37:49 -08004213 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 struct sockaddr *sa = addr, tmp_sa;
4215 struct slave *slave, *stop_at;
4216 int res = 0;
4217 int i;
4218
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004219 if (bond->params.mode == BOND_MODE_ALB)
4220 return bond_alb_set_mac_address(bond_dev, addr);
4221
4222
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004223 pr_debug("bond=%p, name=%s\n",
4224 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
Jay Vosburghdd957c52007-10-09 19:57:24 -07004226 /*
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004227 * If fail_over_mac is set to active, do nothing and return
4228 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004229 */
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004230 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004231 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004232
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004233 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
4236 /* Can't hold bond->lock with bh disabled here since
4237 * some base drivers panic. On the other hand we can't
4238 * hold bond->lock without bh disabled because we'll
4239 * deadlock. The only solution is to rely on the fact
4240 * that we're under rtnl_lock here, and the slaves
4241 * list won't change. This doesn't solve the problem
4242 * of setting the slave's hw address while it is
4243 * transmitting, but the assumption is that the base
4244 * driver can handle that.
4245 *
4246 * TODO: figure out a way to safely iterate the slaves
4247 * list, but without holding a lock around the actual
4248 * call to the base driver.
4249 */
4250
4251 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004252 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004253 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004255 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004257 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 goto unwind;
4259 }
4260
4261 res = dev_set_mac_address(slave->dev, addr);
4262 if (res) {
4263 /* TODO: consider downing the slave
4264 * and retry ?
4265 * User should expect communications
4266 * breakage anyway until ARP finish
4267 * updating, so...
4268 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004269 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 goto unwind;
4271 }
4272 }
4273
4274 /* success */
4275 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4276 return 0;
4277
4278unwind:
4279 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4280 tmp_sa.sa_family = bond_dev->type;
4281
4282 /* unwind from head to the slave that failed */
4283 stop_at = slave;
4284 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4285 int tmp_res;
4286
4287 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4288 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004289 pr_debug("unwind err %d dev %s\n",
4290 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 }
4292 }
4293
4294 return res;
4295}
4296
4297static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4298{
Wang Chen454d7c92008-11-12 23:37:49 -08004299 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004301 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004302 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
4304 read_lock(&bond->lock);
4305
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004306 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004308 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004309 * Start with the curr_active_slave that joined the bond as the
4310 * default for sending IGMP traffic. For failover purposes one
4311 * needs to maintain some consistency for the interface that will
4312 * send the join/membership reports. The curr_active_slave found
4313 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004314 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004315 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004316 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004318 read_lock(&bond->curr_slave_lock);
4319 slave = bond->curr_active_slave;
4320 read_unlock(&bond->curr_slave_lock);
4321
4322 if (!slave)
4323 goto out;
4324 } else {
4325 /*
4326 * Concurrent TX may collide on rr_tx_counter; we accept
4327 * that as being rare enough not to justify using an
4328 * atomic op here.
4329 */
4330 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4331
4332 bond_for_each_slave(bond, slave, i) {
4333 slave_no--;
4334 if (slave_no < 0)
4335 break;
4336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 }
4338
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004339 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 bond_for_each_slave_from(bond, slave, i, start_at) {
4341 if (IS_UP(slave->dev) &&
4342 (slave->link == BOND_LINK_UP) &&
4343 (slave->state == BOND_STATE_ACTIVE)) {
4344 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 break;
4346 }
4347 }
4348
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349out:
4350 if (res) {
4351 /* no suitable interface, frame not sent */
4352 dev_kfree_skb(skb);
4353 }
4354 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004355 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356}
4357
John W. Linville075897c2005-09-28 17:50:53 -04004358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359/*
4360 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4361 * the bond has a usable interface.
4362 */
4363static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4364{
Wang Chen454d7c92008-11-12 23:37:49 -08004365 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 int res = 1;
4367
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 read_lock(&bond->lock);
4369 read_lock(&bond->curr_slave_lock);
4370
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004371 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
John W. Linville075897c2005-09-28 17:50:53 -04004374 if (!bond->curr_active_slave)
4375 goto out;
4376
John W. Linville075897c2005-09-28 17:50:53 -04004377 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4378
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004380 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 /* no suitable interface, frame not sent */
4382 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 read_unlock(&bond->curr_slave_lock);
4385 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004386 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387}
4388
4389/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004390 * In bond_xmit_xor() , we determine the output device by using a pre-
4391 * determined xmit_hash_policy(), If the selected device is not enabled,
4392 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 */
4394static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4395{
Wang Chen454d7c92008-11-12 23:37:49 -08004396 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 struct slave *slave, *start_at;
4398 int slave_no;
4399 int i;
4400 int res = 1;
4401
4402 read_lock(&bond->lock);
4403
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004404 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Jasper Spaansa361c832009-10-23 04:09:24 +00004407 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
4409 bond_for_each_slave(bond, slave, i) {
4410 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004411 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 }
4414
4415 start_at = slave;
4416
4417 bond_for_each_slave_from(bond, slave, i, start_at) {
4418 if (IS_UP(slave->dev) &&
4419 (slave->link == BOND_LINK_UP) &&
4420 (slave->state == BOND_STATE_ACTIVE)) {
4421 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4422 break;
4423 }
4424 }
4425
4426out:
4427 if (res) {
4428 /* no suitable interface, frame not sent */
4429 dev_kfree_skb(skb);
4430 }
4431 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004432 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433}
4434
4435/*
4436 * in broadcast mode, we send everything to all usable interfaces.
4437 */
4438static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4439{
Wang Chen454d7c92008-11-12 23:37:49 -08004440 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 struct slave *slave, *start_at;
4442 struct net_device *tx_dev = NULL;
4443 int i;
4444 int res = 1;
4445
4446 read_lock(&bond->lock);
4447
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004448 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450
4451 read_lock(&bond->curr_slave_lock);
4452 start_at = bond->curr_active_slave;
4453 read_unlock(&bond->curr_slave_lock);
4454
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004455 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457
4458 bond_for_each_slave_from(bond, slave, i, start_at) {
4459 if (IS_UP(slave->dev) &&
4460 (slave->link == BOND_LINK_UP) &&
4461 (slave->state == BOND_STATE_ACTIVE)) {
4462 if (tx_dev) {
4463 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4464 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004465 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004466 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 continue;
4468 }
4469
4470 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4471 if (res) {
4472 dev_kfree_skb(skb2);
4473 continue;
4474 }
4475 }
4476 tx_dev = slave->dev;
4477 }
4478 }
4479
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004480 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482
4483out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004484 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 /* no suitable interface, frame not sent */
4486 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 /* frame sent to all suitable interfaces */
4489 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004490 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491}
4492
4493/*------------------------- Device initialization ---------------------------*/
4494
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004495static void bond_set_xmit_hash_policy(struct bonding *bond)
4496{
4497 switch (bond->params.xmit_policy) {
4498 case BOND_XMIT_POLICY_LAYER23:
4499 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4500 break;
4501 case BOND_XMIT_POLICY_LAYER34:
4502 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4503 break;
4504 case BOND_XMIT_POLICY_LAYER2:
4505 default:
4506 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4507 break;
4508 }
4509}
4510
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004511/*
4512 * Lookup the slave that corresponds to a qid
4513 */
4514static inline int bond_slave_override(struct bonding *bond,
4515 struct sk_buff *skb)
4516{
4517 int i, res = 1;
4518 struct slave *slave = NULL;
4519 struct slave *check_slave;
4520
4521 read_lock(&bond->lock);
4522
4523 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4524 goto out;
4525
4526 /* Find out if any slaves have the same mapping as this skb. */
4527 bond_for_each_slave(bond, check_slave, i) {
4528 if (check_slave->queue_id == skb->queue_mapping) {
4529 slave = check_slave;
4530 break;
4531 }
4532 }
4533
4534 /* If the slave isn't UP, use default transmit policy. */
4535 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4536 (slave->link == BOND_LINK_UP)) {
4537 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4538 }
4539
4540out:
4541 read_unlock(&bond->lock);
4542 return res;
4543}
4544
4545static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4546{
4547 /*
4548 * This helper function exists to help dev_pick_tx get the correct
4549 * destination queue. Using a helper function skips the a call to
4550 * skb_tx_hash and will put the skbs in the queue we expect on their
4551 * way down to the bonding driver.
4552 */
4553 return skb->queue_mapping;
4554}
4555
Stephen Hemminger424efe92009-08-31 19:50:51 +00004556static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004557{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004558 struct bonding *bond = netdev_priv(dev);
4559
4560 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4561 if (!bond_slave_override(bond, skb))
4562 return NETDEV_TX_OK;
4563 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004564
4565 switch (bond->params.mode) {
4566 case BOND_MODE_ROUNDROBIN:
4567 return bond_xmit_roundrobin(skb, dev);
4568 case BOND_MODE_ACTIVEBACKUP:
4569 return bond_xmit_activebackup(skb, dev);
4570 case BOND_MODE_XOR:
4571 return bond_xmit_xor(skb, dev);
4572 case BOND_MODE_BROADCAST:
4573 return bond_xmit_broadcast(skb, dev);
4574 case BOND_MODE_8023AD:
4575 return bond_3ad_xmit_xor(skb, dev);
4576 case BOND_MODE_ALB:
4577 case BOND_MODE_TLB:
4578 return bond_alb_xmit(skb, dev);
4579 default:
4580 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004581 pr_err("%s: Error: Unknown bonding mode %d\n",
4582 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004583 WARN_ON_ONCE(1);
4584 dev_kfree_skb(skb);
4585 return NETDEV_TX_OK;
4586 }
4587}
4588
4589
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590/*
4591 * set bond mode specific net device operations
4592 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004593void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004595 struct net_device *bond_dev = bond->dev;
4596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 switch (mode) {
4598 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 break;
4600 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 break;
4602 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004603 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 break;
4605 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 break;
4607 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004608 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004609 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004612 bond_set_master_alb_flags(bond);
4613 /* FALLTHRU */
4614 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 break;
4616 default:
4617 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004618 pr_err("%s: Error: Unknown bonding mode %d\n",
4619 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 break;
4621 }
4622}
4623
Jay Vosburgh217df672005-09-26 16:11:50 -07004624static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4625 struct ethtool_drvinfo *drvinfo)
4626{
4627 strncpy(drvinfo->driver, DRV_NAME, 32);
4628 strncpy(drvinfo->version, DRV_VERSION, 32);
4629 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4630}
4631
Jeff Garzik7282d492006-09-13 14:30:00 -04004632static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004633 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004634 .get_link = ethtool_op_get_link,
4635 .get_tx_csum = ethtool_op_get_tx_csum,
4636 .get_sg = ethtool_op_get_sg,
4637 .get_tso = ethtool_op_get_tso,
4638 .get_ufo = ethtool_op_get_ufo,
4639 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004640};
4641
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004642static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004643 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004644 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004645 .ndo_open = bond_open,
4646 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004647 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004648 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004649 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004650 .ndo_do_ioctl = bond_do_ioctl,
4651 .ndo_set_multicast_list = bond_set_multicast_list,
4652 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004653 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004654 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004655 .ndo_vlan_rx_register = bond_vlan_rx_register,
4656 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4657 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004658#ifdef CONFIG_NET_POLL_CONTROLLER
4659 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4660 .ndo_poll_controller = bond_poll_controller,
4661#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004662};
4663
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004664static void bond_destructor(struct net_device *bond_dev)
4665{
4666 struct bonding *bond = netdev_priv(bond_dev);
4667 if (bond->wq)
4668 destroy_workqueue(bond->wq);
4669 free_netdev(bond_dev);
4670}
4671
Stephen Hemminger181470f2009-06-12 19:02:52 +00004672static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673{
Wang Chen454d7c92008-11-12 23:37:49 -08004674 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 /* initialize rwlocks */
4677 rwlock_init(&bond->lock);
4678 rwlock_init(&bond->curr_slave_lock);
4679
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004680 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681
4682 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 bond->dev = bond_dev;
4684 INIT_LIST_HEAD(&bond->vlan_list);
4685
4686 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004687 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004688 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004689 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004690 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004692 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694 /* Initialize the device options */
4695 bond_dev->tx_queue_len = 0;
4696 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004697 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004698 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4699
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004700 if (bond->params.arp_interval)
4701 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
4703 /* At first, we block adding VLANs. That's the only way to
4704 * prevent problems that occur when adding VLANs over an
4705 * empty bond. The block will be removed once non-challenged
4706 * slaves are enslaved.
4707 */
4708 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4709
Herbert Xu932ff272006-06-09 12:20:56 -07004710 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 * transmitting */
4712 bond_dev->features |= NETIF_F_LLTX;
4713
4714 /* By default, we declare the bond to be fully
4715 * VLAN hardware accelerated capable. Special
4716 * care is taken in the various xmit functions
4717 * when there are slaves that are not hw accel
4718 * capable
4719 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4721 NETIF_F_HW_VLAN_RX |
4722 NETIF_F_HW_VLAN_FILTER);
4723
Eric Dumazete6599c22010-09-17 09:25:07 +00004724 /* By default, we enable GRO on bonding devices.
4725 * Actual support requires lowlevel drivers are GRO ready.
4726 */
4727 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728}
4729
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004730static void bond_work_cancel_all(struct bonding *bond)
4731{
4732 write_lock_bh(&bond->lock);
4733 bond->kill_timers = 1;
4734 write_unlock_bh(&bond->lock);
4735
4736 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4737 cancel_delayed_work(&bond->mii_work);
4738
4739 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4740 cancel_delayed_work(&bond->arp_work);
4741
4742 if (bond->params.mode == BOND_MODE_ALB &&
4743 delayed_work_pending(&bond->alb_work))
4744 cancel_delayed_work(&bond->alb_work);
4745
4746 if (bond->params.mode == BOND_MODE_8023AD &&
4747 delayed_work_pending(&bond->ad_work))
4748 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004749
4750 if (delayed_work_pending(&bond->mcast_work))
4751 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004752}
4753
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004754/*
4755* Destroy a bonding device.
4756* Must be under rtnl_lock when this function is called.
4757*/
4758static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004759{
Wang Chen454d7c92008-11-12 23:37:49 -08004760 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004761 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004762
WANG Congf6dc31a2010-05-06 00:48:51 -07004763 bond_netpoll_cleanup(bond_dev);
4764
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004765 /* Release the bonded slaves */
4766 bond_release_all(bond_dev);
4767
Jay Vosburgha434e432008-10-30 17:41:15 -07004768 list_del(&bond->bond_list);
4769
4770 bond_work_cancel_all(bond);
4771
Jay Vosburgha434e432008-10-30 17:41:15 -07004772 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004773
Jiri Pirko22bedad2010-04-01 21:22:57 +00004774 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004775
4776 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4777 list_del(&vlan->vlan_list);
4778 kfree(vlan);
4779 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004780}
4781
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782/*------------------------- Module initialization ---------------------------*/
4783
4784/*
4785 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004786 * number of the mode or its string name. A bit complicated because
4787 * some mode names are substrings of other names, and calls from sysfs
4788 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004790int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791{
Hannes Eder54b87322009-02-14 11:15:49 +00004792 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004793 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004794
Jay Vosburgha42e5342008-01-29 18:07:43 -08004795 for (p = (char *)buf; *p; p++)
4796 if (!(isdigit(*p) || isspace(*p)))
4797 break;
4798
4799 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004800 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004801 else
Hannes Eder54b87322009-02-14 11:15:49 +00004802 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004803
4804 if (!rv)
4805 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
4807 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004808 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004810 if (strcmp(modestr, tbl[i].modename) == 0)
4811 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 }
4813
4814 return -1;
4815}
4816
4817static int bond_check_params(struct bond_params *params)
4818{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004819 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004820
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 /*
4822 * Convert string parameters.
4823 */
4824 if (mode) {
4825 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4826 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004827 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 mode == NULL ? "NULL" : mode);
4829 return -EINVAL;
4830 }
4831 }
4832
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004833 if (xmit_hash_policy) {
4834 if ((bond_mode != BOND_MODE_XOR) &&
4835 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004836 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004837 bond_mode_name(bond_mode));
4838 } else {
4839 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4840 xmit_hashtype_tbl);
4841 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004842 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004843 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004844 xmit_hash_policy);
4845 return -EINVAL;
4846 }
4847 }
4848 }
4849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 if (lacp_rate) {
4851 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004852 pr_info("lacp_rate param is irrelevant in mode %s\n",
4853 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 } else {
4855 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4856 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004857 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 lacp_rate == NULL ? "NULL" : lacp_rate);
4859 return -EINVAL;
4860 }
4861 }
4862 }
4863
Jay Vosburghfd989c82008-11-04 17:51:16 -08004864 if (ad_select) {
4865 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4866 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004867 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004868 ad_select == NULL ? "NULL" : ad_select);
4869 return -EINVAL;
4870 }
4871
4872 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004873 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004874 }
4875 } else {
4876 params->ad_select = BOND_AD_STABLE;
4877 }
4878
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004879 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004880 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4881 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 max_bonds = BOND_DEFAULT_MAX_BONDS;
4883 }
4884
4885 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004886 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4887 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 miimon = BOND_LINK_MON_INTERV;
4889 }
4890
4891 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004892 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4893 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 updelay = 0;
4895 }
4896
4897 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004898 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4899 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 downdelay = 0;
4901 }
4902
4903 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004904 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4905 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 use_carrier = 1;
4907 }
4908
Moni Shoua7893b242008-05-17 21:10:12 -07004909 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004910 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 -08004911 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004912 num_grat_arp = 1;
4913 }
4914
Brian Haley305d5522008-11-04 17:51:14 -08004915 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004916 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 -08004917 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004918 num_unsol_na = 1;
4919 }
4920
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 /* reset values for 802.3ad */
4922 if (bond_mode == BOND_MODE_8023AD) {
4923 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004924 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 +00004925 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 miimon = 100;
4927 }
4928 }
4929
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004930 if (tx_queues < 1 || tx_queues > 255) {
4931 pr_warning("Warning: tx_queues (%d) should be between "
4932 "1 and 255, resetting to %d\n",
4933 tx_queues, BOND_DEFAULT_TX_QUEUES);
4934 tx_queues = BOND_DEFAULT_TX_QUEUES;
4935 }
4936
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004937 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4938 pr_warning("Warning: all_slaves_active module parameter (%d), "
4939 "not of valid value (0/1), so it was set to "
4940 "0\n", all_slaves_active);
4941 all_slaves_active = 0;
4942 }
4943
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004944 if (resend_igmp < 0 || resend_igmp > 255) {
4945 pr_warning("Warning: resend_igmp (%d) should be between "
4946 "0 and 255, resetting to %d\n",
4947 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4948 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4949 }
4950
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 /* reset values for TLB/ALB */
4952 if ((bond_mode == BOND_MODE_TLB) ||
4953 (bond_mode == BOND_MODE_ALB)) {
4954 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004955 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 +00004956 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 miimon = 100;
4958 }
4959 }
4960
4961 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004962 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",
4963 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 }
4965
4966 if (!miimon) {
4967 if (updelay || downdelay) {
4968 /* just warn the user the up/down delay will have
4969 * no effect since miimon is zero...
4970 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004971 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",
4972 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 }
4974 } else {
4975 /* don't allow arp monitoring */
4976 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004977 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4978 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 arp_interval = 0;
4980 }
4981
4982 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004983 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4984 updelay, miimon,
4985 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 }
4987
4988 updelay /= miimon;
4989
4990 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004991 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4992 downdelay, miimon,
4993 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 }
4995
4996 downdelay /= miimon;
4997 }
4998
4999 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005000 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
5001 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 arp_interval = BOND_LINK_ARP_INTERV;
5003 }
5004
5005 for (arp_ip_count = 0;
5006 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5007 arp_ip_count++) {
5008 /* not complete check, but should be good enough to
5009 catch mistakes */
5010 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005011 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5012 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 arp_interval = 0;
5014 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04005015 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016 arp_target[arp_ip_count] = ip;
5017 }
5018 }
5019
5020 if (arp_interval && !arp_ip_count) {
5021 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005022 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5023 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 arp_interval = 0;
5025 }
5026
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005027 if (arp_validate) {
5028 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005029 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005030 return -EINVAL;
5031 }
5032 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005033 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005034 return -EINVAL;
5035 }
5036
5037 arp_validate_value = bond_parse_parm(arp_validate,
5038 arp_validate_tbl);
5039 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005040 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005041 arp_validate == NULL ? "NULL" : arp_validate);
5042 return -EINVAL;
5043 }
5044 } else
5045 arp_validate_value = 0;
5046
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005048 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049 } else if (arp_interval) {
5050 int i;
5051
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005052 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5053 arp_interval,
5054 arp_validate_tbl[arp_validate_value].modename,
5055 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
5057 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005058 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005060 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
Jay Vosburghb8a97872008-06-13 18:12:04 -07005062 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 /* miimon and arp_interval not set, we need one so things
5064 * work as expected, see bonding.txt for details
5065 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005066 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 -07005067 }
5068
5069 if (primary && !USES_PRIMARY(bond_mode)) {
5070 /* currently, using a primary only makes sense
5071 * in active backup, TLB or ALB modes
5072 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005073 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5074 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 primary = NULL;
5076 }
5077
Jiri Pirkoa5499522009-09-25 03:28:09 +00005078 if (primary && primary_reselect) {
5079 primary_reselect_value = bond_parse_parm(primary_reselect,
5080 pri_reselect_tbl);
5081 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005082 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005083 primary_reselect ==
5084 NULL ? "NULL" : primary_reselect);
5085 return -EINVAL;
5086 }
5087 } else {
5088 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5089 }
5090
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07005091 if (fail_over_mac) {
5092 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5093 fail_over_mac_tbl);
5094 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005095 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07005096 arp_validate == NULL ? "NULL" : arp_validate);
5097 return -EINVAL;
5098 }
5099
5100 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005101 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07005102 } else {
5103 fail_over_mac_value = BOND_FOM_NONE;
5104 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005105
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 /* fill params struct with the proper values */
5107 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005108 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005110 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005111 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005113 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 params->updelay = updelay;
5115 params->downdelay = downdelay;
5116 params->use_carrier = use_carrier;
5117 params->lacp_fast = lacp_fast;
5118 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005119 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07005120 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005121 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005122 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00005123 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
5125 if (primary) {
5126 strncpy(params->primary, primary, IFNAMSIZ);
5127 params->primary[IFNAMSIZ - 1] = 0;
5128 }
5129
5130 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5131
5132 return 0;
5133}
5134
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005135static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005136static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005137
David S. Millere8a04642008-07-17 00:34:19 -07005138static void bond_set_lockdep_class_one(struct net_device *dev,
5139 struct netdev_queue *txq,
5140 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005141{
5142 lockdep_set_class(&txq->_xmit_lock,
5143 &bonding_netdev_xmit_lock_key);
5144}
5145
5146static void bond_set_lockdep_class(struct net_device *dev)
5147{
David S. Millercf508b12008-07-22 14:16:42 -07005148 lockdep_set_class(&dev->addr_list_lock,
5149 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005150 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005151}
5152
Stephen Hemminger181470f2009-06-12 19:02:52 +00005153/*
5154 * Called from registration process
5155 */
5156static int bond_init(struct net_device *bond_dev)
5157{
5158 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005159 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005160
5161 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5162
5163 bond->wq = create_singlethread_workqueue(bond_dev->name);
5164 if (!bond->wq)
5165 return -ENOMEM;
5166
5167 bond_set_lockdep_class(bond_dev);
5168
5169 netif_carrier_off(bond_dev);
5170
5171 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005172 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005173
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005174 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad2010-04-01 21:22:57 +00005175
5176 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005177 return 0;
5178}
5179
Eric W. Biederman88ead972009-10-29 14:18:25 +00005180static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5181{
5182 if (tb[IFLA_ADDRESS]) {
5183 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5184 return -EINVAL;
5185 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5186 return -EADDRNOTAVAIL;
5187 }
5188 return 0;
5189}
5190
5191static struct rtnl_link_ops bond_link_ops __read_mostly = {
5192 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005193 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005194 .setup = bond_setup,
5195 .validate = bond_validate,
5196};
5197
Mitch Williamsdfe60392005-11-09 10:36:04 -08005198/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005199 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005200 * Caller must NOT hold rtnl_lock; we need to release it here before we
5201 * set up our sysfs entries.
5202 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005203int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005204{
5205 struct net_device *bond_dev;
5206 int res;
5207
5208 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005209
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005210 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5211 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005212 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005213 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005214 rtnl_unlock();
5215 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005216 }
5217
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005218 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005219 bond_dev->rtnl_link_ops = &bond_link_ops;
5220
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005221 if (!name) {
5222 res = dev_alloc_name(bond_dev, "bond%d");
5223 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005224 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005225 }
5226
Mitch Williamsdfe60392005-11-09 10:36:04 -08005227 res = register_netdevice(bond_dev);
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005228
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005229out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005230 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005231 if (res < 0)
5232 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005233 return res;
5234}
5235
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005236static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005237{
Eric W. Biederman15449742009-11-29 15:46:04 +00005238 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005239
5240 bn->net = net;
5241 INIT_LIST_HEAD(&bn->dev_list);
5242
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005243 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005244
5245 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005246}
5247
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005248static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005249{
Eric W. Biederman15449742009-11-29 15:46:04 +00005250 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005251
5252 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005253}
5254
5255static struct pernet_operations bond_net_ops = {
5256 .init = bond_net_init,
5257 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005258 .id = &bond_net_id,
5259 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005260};
5261
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262static int __init bonding_init(void)
5263{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 int i;
5265 int res;
5266
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005267 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268
Mitch Williamsdfe60392005-11-09 10:36:04 -08005269 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005270 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005271 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272
Eric W. Biederman15449742009-11-29 15:46:04 +00005273 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005274 if (res)
5275 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005276
Eric W. Biederman88ead972009-10-29 14:18:25 +00005277 res = rtnl_link_register(&bond_link_ops);
5278 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005279 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005280
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005282 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005283 if (res)
5284 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 }
5286
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005287 res = bond_create_sysfs();
5288 if (res)
5289 goto err;
5290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005292 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005293 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005294out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005296err:
5297 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005298err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005299 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005300 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005301
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302}
5303
5304static void __exit bonding_exit(void)
5305{
5306 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005307 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005308 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005310 bond_destroy_sysfs();
5311
Eric W. Biederman88ead972009-10-29 14:18:25 +00005312 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005313 unregister_pernet_subsys(&bond_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314}
5315
5316module_init(bonding_init);
5317module_exit(bonding_exit);
5318MODULE_LICENSE("GPL");
5319MODULE_VERSION(DRV_VERSION);
5320MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5321MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005322MODULE_ALIAS_RTNL_LINK("bond");