blob: b1025b85acf1210f70da338f5df4292d316e5384 [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>
Neil Hormane843fa52010-10-13 16:01:50 +000079#include <linux/preempt.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040080#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020081#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000082#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include "bonding.h"
84#include "bond_3ad.h"
85#include "bond_alb.h"
86
87/*---------------------------- Module parameters ----------------------------*/
88
89/* monitor all links that often (in milliseconds). <=0 disables monitoring */
90#define BOND_LINK_MON_INTERV 0
91#define BOND_LINK_ARP_INTERV 0
92
93static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +000094static int tx_queues = BOND_DEFAULT_TX_QUEUES;
Moni Shoua7893b242008-05-17 21:10:12 -070095static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080096static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000098static int updelay;
99static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *mode;
102static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000103static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000104static char *lacp_rate;
105static char *ad_select;
106static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000108static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
109static char *arp_validate;
110static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000111static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000112static struct bond_params bonding_defaults;
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000113static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115module_param(max_bonds, int, 0);
116MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000117module_param(tx_queues, int, 0);
118MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Moni Shoua7893b242008-05-17 21:10:12 -0700119module_param(num_grat_arp, int, 0644);
120MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800121module_param(num_unsol_na, int, 0644);
122MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123module_param(miimon, int, 0);
124MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
125module_param(updelay, int, 0);
126MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
127module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800128MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
129 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800131MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
132 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800134MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
135 "1 for active-backup, 2 for balance-xor, "
136 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
137 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138module_param(primary, charp, 0);
139MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000140module_param(primary_reselect, charp, 0);
141MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
142 "once it comes up; "
143 "0 for always (default), "
144 "1 for only if speed of primary is "
145 "better, "
146 "2 for only on active slave "
147 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800149MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
150 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800151module_param(ad_select, charp, 0);
152MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400153module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800154MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
155 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156module_param(arp_interval, int, 0);
157MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
158module_param_array(arp_ip_target, charp, NULL, 0);
159MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700160module_param(arp_validate, charp, 0);
161MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700162module_param(fail_over_mac, charp, 0);
163MODULE_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 +0000164module_param(all_slaves_active, int, 0);
165MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
166 "by setting active flag for all slaves. "
167 "0 for never (default), 1 for always.");
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000168module_param(resend_igmp, int, 0);
169MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*----------------------------- Global variables ----------------------------*/
172
Neil Hormane843fa52010-10-13 16:01:50 +0000173#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +0000174atomic_t netpoll_block_tx = ATOMIC_INIT(0);
Neil Hormane843fa52010-10-13 16:01:50 +0000175#endif
176
Arjan van de Venf71e1302006-03-03 21:33:57 -0500177static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
179
Eric Dumazetf99189b2009-11-17 10:42:49 +0000180int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000182static __be32 arp_target[BOND_MAX_ARP_TARGETS];
183static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000185static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
186static int lacp_fast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800188const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{ "slow", AD_LACP_SLOW},
190{ "fast", AD_LACP_FAST},
191{ NULL, -1},
192};
193
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800194const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{ "balance-rr", BOND_MODE_ROUNDROBIN},
196{ "active-backup", BOND_MODE_ACTIVEBACKUP},
197{ "balance-xor", BOND_MODE_XOR},
198{ "broadcast", BOND_MODE_BROADCAST},
199{ "802.3ad", BOND_MODE_8023AD},
200{ "balance-tlb", BOND_MODE_TLB},
201{ "balance-alb", BOND_MODE_ALB},
202{ NULL, -1},
203};
204
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800205const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400206{ "layer2", BOND_XMIT_POLICY_LAYER2},
207{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800208{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400209{ NULL, -1},
210};
211
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800212const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700213{ "none", BOND_ARP_VALIDATE_NONE},
214{ "active", BOND_ARP_VALIDATE_ACTIVE},
215{ "backup", BOND_ARP_VALIDATE_BACKUP},
216{ "all", BOND_ARP_VALIDATE_ALL},
217{ NULL, -1},
218};
219
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800220const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700221{ "none", BOND_FOM_NONE},
222{ "active", BOND_FOM_ACTIVE},
223{ "follow", BOND_FOM_FOLLOW},
224{ NULL, -1},
225};
226
Jiri Pirkoa5499522009-09-25 03:28:09 +0000227const struct bond_parm_tbl pri_reselect_tbl[] = {
228{ "always", BOND_PRI_RESELECT_ALWAYS},
229{ "better", BOND_PRI_RESELECT_BETTER},
230{ "failure", BOND_PRI_RESELECT_FAILURE},
231{ NULL, -1},
232};
233
Jay Vosburghfd989c82008-11-04 17:51:16 -0800234struct bond_parm_tbl ad_select_tbl[] = {
235{ "stable", BOND_AD_STABLE},
236{ "bandwidth", BOND_AD_BANDWIDTH},
237{ "count", BOND_AD_COUNT},
238{ NULL, -1},
239};
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*-------------------------- Forward declarations ---------------------------*/
242
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400243static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000244static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000245static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*---------------------------- General routines -----------------------------*/
248
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700249static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800251 static const char *names[] = {
252 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
253 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
254 [BOND_MODE_XOR] = "load balancing (xor)",
255 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000256 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800257 [BOND_MODE_TLB] = "transmit load balancing",
258 [BOND_MODE_ALB] = "adaptive load balancing",
259 };
260
261 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800263
264 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/*---------------------------------- VLAN -----------------------------------*/
268
269/**
270 * bond_add_vlan - add a new vlan id on bond
271 * @bond: bond that got the notification
272 * @vlan_id: the vlan id to add
273 *
274 * Returns -ENOMEM if allocation failed.
275 */
276static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
277{
278 struct vlan_entry *vlan;
279
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800280 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800281 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Brian Haley305d5522008-11-04 17:51:14 -0800283 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000284 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 INIT_LIST_HEAD(&vlan->vlan_list);
288 vlan->vlan_id = vlan_id;
289
290 write_lock_bh(&bond->lock);
291
292 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
293
294 write_unlock_bh(&bond->lock);
295
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800296 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return 0;
299}
300
301/**
302 * bond_del_vlan - delete a vlan id from bond
303 * @bond: bond that got the notification
304 * @vlan_id: the vlan id to delete
305 *
306 * returns -ENODEV if @vlan_id was not found in @bond.
307 */
308static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
309{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700310 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int res = -ENODEV;
312
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800313 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Neil Hormane843fa52010-10-13 16:01:50 +0000315 block_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 write_lock_bh(&bond->lock);
317
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700318 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (vlan->vlan_id == vlan_id) {
320 list_del(&vlan->vlan_list);
321
Holger Eitzenberger58402052008-12-09 23:07:13 -0800322 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800325 pr_debug("removed VLAN ID %d from bond %s\n",
326 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 kfree(vlan);
329
330 if (list_empty(&bond->vlan_list) &&
331 (bond->slave_cnt == 0)) {
332 /* Last VLAN removed and no slaves, so
333 * restore block on adding VLANs. This will
334 * be removed once new slaves that are not
335 * VLAN challenged will be added.
336 */
337 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
338 }
339
340 res = 0;
341 goto out;
342 }
343 }
344
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800345 pr_debug("couldn't find VLAN ID %d in bond %s\n",
346 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348out:
349 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +0000350 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return res;
352}
353
354/**
355 * bond_has_challenged_slaves
356 * @bond: the bond we're working on
357 *
358 * Searches the slave list. Returns 1 if a vlan challenged slave
359 * was found, 0 otherwise.
360 *
361 * Assumes bond->lock is held.
362 */
363static int bond_has_challenged_slaves(struct bonding *bond)
364{
365 struct slave *slave;
366 int i;
367
368 bond_for_each_slave(bond, slave, i) {
369 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800370 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800371 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 1;
373 }
374 }
375
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800376 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378}
379
380/**
381 * bond_next_vlan - safely skip to the next item in the vlans list.
382 * @bond: the bond we're working on
383 * @curr: item we're advancing from
384 *
385 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
386 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * Caller must hold bond->lock
389 */
390struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
391{
392 struct vlan_entry *next, *last;
393
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000394 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (!curr) {
398 next = list_entry(bond->vlan_list.next,
399 struct vlan_entry, vlan_list);
400 } else {
401 last = list_entry(bond->vlan_list.prev,
402 struct vlan_entry, vlan_list);
403 if (last == curr) {
404 next = list_entry(bond->vlan_list.next,
405 struct vlan_entry, vlan_list);
406 } else {
407 next = list_entry(curr->vlan_list.next,
408 struct vlan_entry, vlan_list);
409 }
410 }
411
412 return next;
413}
414
415/**
416 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000417 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @bond: bond device that got this skb for tx.
419 * @skb: hw accel VLAN tagged skb to transmit
420 * @slave_dev: slave that is supposed to xmit this skbuff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000422int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
423 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Ben Hutchings83874512010-12-13 08:19:28 +0000425 skb->dev = slave_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700427#ifdef CONFIG_NET_POLL_CONTROLLER
428 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
429 struct netpoll *np = bond->dev->npinfo->netpoll;
430 slave_dev->npinfo = bond->dev->npinfo;
WANG Congf6dc31a2010-05-06 00:48:51 -0700431 slave_dev->priv_flags |= IFF_IN_NETPOLL;
Neil Hormanc2355e12010-10-13 16:01:49 +0000432 netpoll_send_skb_on_dev(np, skb, slave_dev);
WANG Congf6dc31a2010-05-06 00:48:51 -0700433 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -0700434 } else
435#endif
436 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 return 0;
439}
440
441/*
442 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
443 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
444 * lock because:
445 * a. This operation is performed in IOCTL context,
446 * b. The operation is protected by the RTNL semaphore in the 8021q code,
447 * c. Holding a lock with BH disabled while directly calling a base driver
448 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000449 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * The design of synchronization/protection for this operation in the 8021q
451 * module is good for one or more VLAN devices over a single physical device
452 * and cannot be extended for a teaming solution like bonding, so there is a
453 * potential race condition here where a net device from the vlan group might
454 * be referenced (either by a base driver or the 8021q code) while it is being
455 * removed from the system. However, it turns out we're not making matters
456 * worse, and if it works for regular VLAN usage it will work here too.
457*/
458
459/**
460 * bond_vlan_rx_register - Propagates registration to slaves
461 * @bond_dev: bonding net device that got called
462 * @grp: vlan group being registered
463 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000464static void bond_vlan_rx_register(struct net_device *bond_dev,
465 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Wang Chen454d7c92008-11-12 23:37:49 -0800467 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct slave *slave;
469 int i;
470
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000471 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 bond->vlgrp = grp;
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000473 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 bond_for_each_slave(bond, slave, i) {
476 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800477 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800480 slave_ops->ndo_vlan_rx_register) {
481 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483 }
484}
485
486/**
487 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
488 * @bond_dev: bonding net device that got called
489 * @vid: vlan id being added
490 */
491static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
492{
Wang Chen454d7c92008-11-12 23:37:49 -0800493 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct slave *slave;
495 int i, res;
496
497 bond_for_each_slave(bond, slave, i) {
498 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800499 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800502 slave_ops->ndo_vlan_rx_add_vid) {
503 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
506
507 res = bond_add_vlan(bond, vid);
508 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800509 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 bond_dev->name, vid);
511 }
512}
513
514/**
515 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
516 * @bond_dev: bonding net device that got called
517 * @vid: vlan id being removed
518 */
519static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
520{
Wang Chen454d7c92008-11-12 23:37:49 -0800521 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct slave *slave;
523 struct net_device *vlan_dev;
524 int i, res;
525
526 bond_for_each_slave(bond, slave, i) {
527 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800528 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800531 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* Save and then restore vlan_dev in the grp array,
533 * since the slave's driver might clear it.
534 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800535 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800536 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800537 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539 }
540
541 res = bond_del_vlan(bond, vid);
542 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800543 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 bond_dev->name, vid);
545 }
546}
547
548static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
549{
550 struct vlan_entry *vlan;
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
Jay Vosburghf35188f2010-07-21 12:14:47 +0000553 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800557 slave_ops->ndo_vlan_rx_register)
558 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800561 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800564 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
565 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000568static void bond_del_vlans_from_slave(struct bonding *bond,
569 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct vlan_entry *vlan;
573 struct net_device *vlan_dev;
574
Jay Vosburghf35188f2010-07-21 12:14:47 +0000575 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000576 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800579 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000583 if (!vlan->vlan_id)
584 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Save and then restore vlan_dev in the grp array,
586 * since the slave's driver might clear it.
587 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800590 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593unreg:
594 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800595 slave_ops->ndo_vlan_rx_register)
596 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599/*------------------------------- Link status -------------------------------*/
600
601/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800602 * Set the carrier state for the master according to the state of its
603 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
604 * do special 802.3ad magic.
605 *
606 * Returns zero if carrier state does not change, nonzero if it does.
607 */
608static int bond_set_carrier(struct bonding *bond)
609{
610 struct slave *slave;
611 int i;
612
613 if (bond->slave_cnt == 0)
614 goto down;
615
616 if (bond->params.mode == BOND_MODE_8023AD)
617 return bond_3ad_set_carrier(bond);
618
619 bond_for_each_slave(bond, slave, i) {
620 if (slave->link == BOND_LINK_UP) {
621 if (!netif_carrier_ok(bond->dev)) {
622 netif_carrier_on(bond->dev);
623 return 1;
624 }
625 return 0;
626 }
627 }
628
629down:
630 if (netif_carrier_ok(bond->dev)) {
631 netif_carrier_off(bond->dev);
632 return 1;
633 }
634 return 0;
635}
636
637/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * Get link speed and duplex from the slave's base driver
639 * using ethtool. If for some reason the call fails or the
640 * values are invalid, fake speed and duplex to 100/Full
641 * and return error.
642 */
643static int bond_update_speed_duplex(struct slave *slave)
644{
645 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700647 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 /* Fake speed and duplex */
650 slave->speed = SPEED_100;
651 slave->duplex = DUPLEX_FULL;
652
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700653 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700656 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
657 if (res < 0)
658 return -1;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 switch (etool.speed) {
661 case SPEED_10:
662 case SPEED_100:
663 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700664 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666 default:
667 return -1;
668 }
669
670 switch (etool.duplex) {
671 case DUPLEX_FULL:
672 case DUPLEX_HALF:
673 break;
674 default:
675 return -1;
676 }
677
678 slave->speed = etool.speed;
679 slave->duplex = etool.duplex;
680
681 return 0;
682}
683
684/*
685 * if <dev> supports MII link status reporting, check its link status.
686 *
687 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000688 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
690 * Return either BMSR_LSTATUS, meaning that the link is up (or we
691 * can't tell and just pretend it is), or 0, meaning that the link is
692 * down.
693 *
694 * If reporting is non-zero, instead of faking link up, return -1 if
695 * both ETHTOOL and MII ioctls fail (meaning the device does not
696 * support them). If use_carrier is set, return whatever it says.
697 * It'd be nice if there was a good way to tell if a driver supports
698 * netif_carrier, but there really isn't.
699 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000700static int bond_check_dev_link(struct bonding *bond,
701 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800703 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700704 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct ifreq ifr;
706 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Petri Gynther6c988852009-08-28 12:05:15 +0000708 if (!reporting && !netif_running(slave_dev))
709 return 0;
710
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800711 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Jiri Pirko29112f42009-04-24 01:58:23 +0000714 /* Try to get link status using Ethtool first. */
715 if (slave_dev->ethtool_ops) {
716 if (slave_dev->ethtool_ops->get_link) {
717 u32 link;
718
719 link = slave_dev->ethtool_ops->get_link(slave_dev);
720
721 return link ? BMSR_LSTATUS : 0;
722 }
723 }
724
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000725 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800726 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (ioctl) {
728 /* TODO: set pointer to correct ioctl on a per team member */
729 /* bases to make this more efficient. that is, once */
730 /* we determine the correct ioctl, we will always */
731 /* call it and not the others for that team */
732 /* member. */
733
734 /*
735 * We cannot assume that SIOCGMIIPHY will also read a
736 * register; not all network drivers (e.g., e100)
737 * support that.
738 */
739
740 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
741 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
742 mii = if_mii(&ifr);
743 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
744 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000745 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
746 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 }
749
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700750 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700752 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * cannot report link status). If not reporting, pretend
754 * we're ok.
755 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000756 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/*----------------------------- Multicast list ------------------------------*/
760
761/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * Push the promiscuity flag down to appropriate slaves
763 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700764static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700766 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (USES_PRIMARY(bond->params.mode)) {
768 /* write lock already acquired */
769 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700770 err = dev_set_promiscuity(bond->curr_active_slave->dev,
771 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 } else {
774 struct slave *slave;
775 int i;
776 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700777 err = dev_set_promiscuity(slave->dev, inc);
778 if (err)
779 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700782 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785/*
786 * Push the allmulti flag down to all slaves
787 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700788static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700790 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (USES_PRIMARY(bond->params.mode)) {
792 /* write lock already acquired */
793 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700794 err = dev_set_allmulti(bond->curr_active_slave->dev,
795 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 } else {
798 struct slave *slave;
799 int i;
800 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700801 err = dev_set_allmulti(slave->dev, inc);
802 if (err)
803 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700806 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809/*
810 * Add a Multicast address to slaves
811 * according to mode
812 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000813static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 if (USES_PRIMARY(bond->params.mode)) {
816 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000817 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000818 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 } else {
820 struct slave *slave;
821 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000822
823 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000824 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826}
827
828/*
829 * Remove a multicast address from slave
830 * according to mode
831 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000832static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 if (USES_PRIMARY(bond->params.mode)) {
835 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000836 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000837 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 } else {
839 struct slave *slave;
840 int i;
841 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000842 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 }
845}
846
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800847
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000848static void __bond_resend_igmp_join_requests(struct net_device *dev)
849{
850 struct in_device *in_dev;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000851
852 rcu_read_lock();
853 in_dev = __in_dev_get_rcu(dev);
Eric Dumazet866f3b22010-11-18 09:33:19 -0800854 if (in_dev)
David S. Miller24912422010-11-19 13:13:47 -0800855 ip_mc_rejoin_groups(in_dev);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000856 rcu_read_unlock();
857}
858
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800859/*
860 * Retrieve the list of registered multicast addresses for the bonding
861 * device and retransmit an IGMP JOIN request to the current active
862 * slave.
863 */
864static void bond_resend_igmp_join_requests(struct bonding *bond)
865{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000866 struct net_device *vlan_dev;
867 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800868
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000869 read_lock(&bond->lock);
870
871 /* rejoin all groups on bond device */
872 __bond_resend_igmp_join_requests(bond->dev);
873
874 /* rejoin all groups on vlan devices */
875 if (bond->vlgrp) {
876 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
877 vlan_dev = vlan_group_get_device(bond->vlgrp,
878 vlan->vlan_id);
879 if (vlan_dev)
880 __bond_resend_igmp_join_requests(vlan_dev);
881 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800882 }
883
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000884 if (--bond->igmp_retrans > 0)
885 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
886
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000887 read_unlock(&bond->lock);
888}
889
stephen hemminger379b7382010-10-15 11:02:56 +0000890static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000891{
892 struct bonding *bond = container_of(work, struct bonding,
893 mcast_work.work);
894 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800895}
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * flush all members of flush->mc_list from device dev->mc_list
899 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000900static void bond_mc_list_flush(struct net_device *bond_dev,
901 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Wang Chen454d7c92008-11-12 23:37:49 -0800903 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000904 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Jiri Pirko22bedad32010-04-01 21:22:57 +0000906 netdev_for_each_mc_addr(ha, bond_dev)
907 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 if (bond->params.mode == BOND_MODE_8023AD) {
910 /* del lacpdu mc addr from mc list */
911 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
912
Jiri Pirko22bedad32010-04-01 21:22:57 +0000913 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915}
916
917/*--------------------------- Active slave change ---------------------------*/
918
919/*
920 * Update the mc list and multicast-related flags for the new and
921 * old active slaves (if any) according to the multicast mode, and
922 * promiscuous flags unconditionally.
923 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000924static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
925 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000927 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000929 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 /* nothing to do - mc list is already up-to-date on
931 * all slaves
932 */
933 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000936 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000939 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Jiri Pirko22bedad32010-04-01 21:22:57 +0000942 netdev_for_each_mc_addr(ha, bond->dev)
943 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
946 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700947 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000948 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000951 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Jiri Pirko22bedad32010-04-01 21:22:57 +0000954 netdev_for_each_mc_addr(ha, bond->dev)
955 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957}
958
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700959/*
960 * bond_do_fail_over_mac
961 *
962 * Perform special MAC address swapping for fail_over_mac settings
963 *
964 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
965 */
966static void bond_do_fail_over_mac(struct bonding *bond,
967 struct slave *new_active,
968 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000969 __releases(&bond->curr_slave_lock)
970 __releases(&bond->lock)
971 __acquires(&bond->lock)
972 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700973{
974 u8 tmp_mac[ETH_ALEN];
975 struct sockaddr saddr;
976 int rv;
977
978 switch (bond->params.fail_over_mac) {
979 case BOND_FOM_ACTIVE:
980 if (new_active)
981 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
982 new_active->dev->addr_len);
983 break;
984 case BOND_FOM_FOLLOW:
985 /*
986 * if new_active && old_active, swap them
987 * if just old_active, do nothing (going to no active slave)
988 * if just new_active, set new_active to bond's MAC
989 */
990 if (!new_active)
991 return;
992
993 write_unlock_bh(&bond->curr_slave_lock);
994 read_unlock(&bond->lock);
995
996 if (old_active) {
997 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
998 memcpy(saddr.sa_data, old_active->dev->dev_addr,
999 ETH_ALEN);
1000 saddr.sa_family = new_active->dev->type;
1001 } else {
1002 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1003 saddr.sa_family = bond->dev->type;
1004 }
1005
1006 rv = dev_set_mac_address(new_active->dev, &saddr);
1007 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001008 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001009 bond->dev->name, -rv, new_active->dev->name);
1010 goto out;
1011 }
1012
1013 if (!old_active)
1014 goto out;
1015
1016 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1017 saddr.sa_family = old_active->dev->type;
1018
1019 rv = dev_set_mac_address(old_active->dev, &saddr);
1020 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001021 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001022 bond->dev->name, -rv, new_active->dev->name);
1023out:
1024 read_lock(&bond->lock);
1025 write_lock_bh(&bond->curr_slave_lock);
1026 break;
1027 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001028 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001029 bond->dev->name, bond->params.fail_over_mac);
1030 break;
1031 }
1032
1033}
1034
Jiri Pirkoa5499522009-09-25 03:28:09 +00001035static bool bond_should_change_active(struct bonding *bond)
1036{
1037 struct slave *prim = bond->primary_slave;
1038 struct slave *curr = bond->curr_active_slave;
1039
1040 if (!prim || !curr || curr->link != BOND_LINK_UP)
1041 return true;
1042 if (bond->force_primary) {
1043 bond->force_primary = false;
1044 return true;
1045 }
1046 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1047 (prim->speed < curr->speed ||
1048 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1049 return false;
1050 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1051 return false;
1052 return true;
1053}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055/**
1056 * find_best_interface - select the best available slave to be the active one
1057 * @bond: our bonding struct
1058 *
1059 * Warning: Caller must hold curr_slave_lock for writing.
1060 */
1061static struct slave *bond_find_best_slave(struct bonding *bond)
1062{
1063 struct slave *new_active, *old_active;
1064 struct slave *bestslave = NULL;
1065 int mintime = bond->params.updelay;
1066 int i;
1067
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001068 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001071 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001073 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001078 bond->primary_slave->link == BOND_LINK_UP &&
1079 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 new_active = bond->primary_slave;
1081 }
1082
1083 /* remember where to stop iterating over the slaves */
1084 old_active = new_active;
1085
1086 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001087 if (new_active->link == BOND_LINK_UP) {
1088 return new_active;
1089 } else if (new_active->link == BOND_LINK_BACK &&
1090 IS_UP(new_active->dev)) {
1091 /* link up, but waiting for stabilization */
1092 if (new_active->delay < mintime) {
1093 mintime = new_active->delay;
1094 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096 }
1097 }
1098
1099 return bestslave;
1100}
1101
1102/**
1103 * change_active_interface - change the active slave into the specified one
1104 * @bond: our bonding struct
1105 * @new: the new slave to make the active one
1106 *
1107 * Set the new slave to the bond's settings and unset them on the old
1108 * curr_active_slave.
1109 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1110 *
1111 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1112 * because it is apparently the best available slave we have, even though its
1113 * updelay hasn't timed out yet.
1114 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001115 * If new_active is not NULL, caller must hold bond->lock for read and
1116 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001118void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 struct slave *old_active = bond->curr_active_slave;
1121
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001122 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001126 new_active->jiffies = jiffies;
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (new_active->link == BOND_LINK_BACK) {
1129 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001130 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1131 bond->dev->name, new_active->dev->name,
1132 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134
1135 new_active->delay = 0;
1136 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001138 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Holger Eitzenberger58402052008-12-09 23:07:13 -08001141 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 } else {
1144 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001145 pr_info("%s: making interface %s the new active one.\n",
1146 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148 }
1149 }
1150
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001151 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Holger Eitzenberger58402052008-12-09 23:07:13 -08001154 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001156 if (old_active)
1157 bond_set_slave_inactive_flags(old_active);
1158 if (new_active)
1159 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 } else {
1161 bond->curr_active_slave = new_active;
1162 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001163
1164 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001165 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001166 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001167
1168 if (new_active) {
1169 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001170
Or Gerlitz709f8a42008-06-13 18:12:01 -07001171 if (bond->params.fail_over_mac)
1172 bond_do_fail_over_mac(bond, new_active,
1173 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001174
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001175 if (netif_running(bond->dev)) {
1176 bond->send_grat_arp = bond->params.num_grat_arp;
1177 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001178
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001179 bond->send_unsol_na = bond->params.num_unsol_na;
1180 bond_send_unsolicited_na(bond);
1181 }
Brian Haley305d5522008-11-04 17:51:14 -08001182
Or Gerlitz01f31092008-06-13 18:12:02 -07001183 write_unlock_bh(&bond->curr_slave_lock);
1184 read_unlock(&bond->lock);
1185
Moni Shoua75c78502009-09-15 02:37:40 -07001186 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001187
1188 read_lock(&bond->lock);
1189 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001190 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001191 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001192
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001193 /* resend IGMP joins since active slave has changed or
1194 * all were sent on curr_active_slave */
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001195 if (((USES_PRIMARY(bond->params.mode) && new_active) ||
1196 bond->params.mode == BOND_MODE_ROUNDROBIN) &&
1197 netif_running(bond->dev)) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001198 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001199 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203/**
1204 * bond_select_active_slave - select a new active slave, if needed
1205 * @bond: our bonding struct
1206 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001207 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 * - The old curr_active_slave has been released or lost its link.
1209 * - The primary_slave has got its link back.
1210 * - A slave has got its link back and there's no old curr_active_slave.
1211 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001212 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001214void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
1216 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001217 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 best_slave = bond_find_best_slave(bond);
1220 if (best_slave != bond->curr_active_slave) {
1221 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001222 rv = bond_set_carrier(bond);
1223 if (!rv)
1224 return;
1225
1226 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001227 pr_info("%s: first active interface up!\n",
1228 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001229 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001230 pr_info("%s: now running without any active interface !\n",
1231 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234}
1235
1236/*--------------------------- slave list handling ---------------------------*/
1237
1238/*
1239 * This function attaches the slave to the end of list.
1240 *
1241 * bond->lock held for writing by caller.
1242 */
1243static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1244{
1245 if (bond->first_slave == NULL) { /* attaching the first slave */
1246 new_slave->next = new_slave;
1247 new_slave->prev = new_slave;
1248 bond->first_slave = new_slave;
1249 } else {
1250 new_slave->next = bond->first_slave;
1251 new_slave->prev = bond->first_slave->prev;
1252 new_slave->next->prev = new_slave;
1253 new_slave->prev->next = new_slave;
1254 }
1255
1256 bond->slave_cnt++;
1257}
1258
1259/*
1260 * This function detaches the slave from the list.
1261 * WARNING: no check is made to verify if the slave effectively
1262 * belongs to <bond>.
1263 * Nothing is freed on return, structures are just unchained.
1264 * If any slave pointer in bond was pointing to <slave>,
1265 * it should be changed by the calling function.
1266 *
1267 * bond->lock held for writing by caller.
1268 */
1269static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1270{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001271 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001274 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 if (bond->first_slave == slave) { /* slave is the first slave */
1278 if (bond->slave_cnt > 1) { /* there are more slave */
1279 bond->first_slave = slave->next;
1280 } else {
1281 bond->first_slave = NULL; /* slave was the last one */
1282 }
1283 }
1284
1285 slave->next = NULL;
1286 slave->prev = NULL;
1287 bond->slave_cnt--;
1288}
1289
WANG Congf6dc31a2010-05-06 00:48:51 -07001290#ifdef CONFIG_NET_POLL_CONTROLLER
1291/*
1292 * You must hold read lock on bond->lock before calling this.
1293 */
1294static bool slaves_support_netpoll(struct net_device *bond_dev)
1295{
1296 struct bonding *bond = netdev_priv(bond_dev);
1297 struct slave *slave;
1298 int i = 0;
1299 bool ret = true;
1300
1301 bond_for_each_slave(bond, slave, i) {
1302 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1303 !slave->dev->netdev_ops->ndo_poll_controller)
1304 ret = false;
1305 }
1306 return i != 0 && ret;
1307}
1308
1309static void bond_poll_controller(struct net_device *bond_dev)
1310{
Neil Hormanc2355e12010-10-13 16:01:49 +00001311 struct bonding *bond = netdev_priv(bond_dev);
1312 struct slave *slave;
1313 int i;
1314
1315 bond_for_each_slave(bond, slave, i) {
1316 if (slave->dev && IS_UP(slave->dev))
1317 netpoll_poll_dev(slave->dev);
1318 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001319}
1320
1321static void bond_netpoll_cleanup(struct net_device *bond_dev)
1322{
1323 struct bonding *bond = netdev_priv(bond_dev);
1324 struct slave *slave;
1325 const struct net_device_ops *ops;
1326 int i;
1327
1328 read_lock(&bond->lock);
1329 bond_dev->npinfo = NULL;
1330 bond_for_each_slave(bond, slave, i) {
1331 if (slave->dev) {
1332 ops = slave->dev->netdev_ops;
1333 if (ops->ndo_netpoll_cleanup)
1334 ops->ndo_netpoll_cleanup(slave->dev);
1335 else
1336 slave->dev->npinfo = NULL;
1337 }
1338 }
1339 read_unlock(&bond->lock);
1340}
1341
1342#else
1343
1344static void bond_netpoll_cleanup(struct net_device *bond_dev)
1345{
1346}
1347
1348#endif
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350/*---------------------------------- IOCTL ----------------------------------*/
1351
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001352static int bond_sethwaddr(struct net_device *bond_dev,
1353 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001355 pr_debug("bond_dev=%p\n", bond_dev);
1356 pr_debug("slave_dev=%p\n", slave_dev);
1357 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1359 return 0;
1360}
1361
Herbert Xu7f353bf2007-08-10 15:47:58 -07001362#define BOND_VLAN_FEATURES \
1363 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1364 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001365
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001366/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001367 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001368 * feature bits are managed elsewhere, so preserve those feature bits
1369 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001370 */
1371static int bond_compute_features(struct bonding *bond)
1372{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001373 struct slave *slave;
1374 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001375 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001376 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001377 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1378 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001379 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001380
Herbert Xu7f353bf2007-08-10 15:47:58 -07001381 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001382 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1383
1384 if (!bond->first_slave)
1385 goto done;
1386
1387 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001388
Jay Vosburgh278339a2009-08-28 12:05:12 +00001389 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001390 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001391 features = netdev_increment_features(features,
1392 slave->dev->features,
1393 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001394 vlan_features = netdev_increment_features(vlan_features,
1395 slave->dev->vlan_features,
1396 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001397 if (slave->dev->hard_header_len > max_hard_header_len)
1398 max_hard_header_len = slave->dev->hard_header_len;
1399 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001400
Herbert Xub63365a2008-10-23 01:11:29 -07001401done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001402 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001403 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001404 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001405 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001406
1407 return 0;
1408}
1409
Moni Shoua872254d2007-10-09 19:43:38 -07001410static void bond_setup_by_slave(struct net_device *bond_dev,
1411 struct net_device *slave_dev)
1412{
Wang Chen454d7c92008-11-12 23:37:49 -08001413 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001414
Stephen Hemminger00829822008-11-20 20:14:53 -08001415 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001416
1417 bond_dev->type = slave_dev->type;
1418 bond_dev->hard_header_len = slave_dev->hard_header_len;
1419 bond_dev->addr_len = slave_dev->addr_len;
1420
1421 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1422 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001423 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001424}
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001427int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Wang Chen454d7c92008-11-12 23:37:49 -08001429 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001430 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001432 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 struct sockaddr addr;
1434 int link_reporting;
1435 int old_features = bond_dev->features;
1436 int res = 0;
1437
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001438 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001439 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001440 pr_warning("%s: Warning: no link monitoring support for %s\n",
1441 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443
1444 /* bond must be initialized by bond_open() before enslaving */
1445 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001446 pr_warning("%s: master_dev is not up in bond_enslave\n",
1447 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450 /* already enslaved */
1451 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001452 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return -EBUSY;
1454 }
1455
1456 /* vlan challenged mutual exclusion */
1457 /* no need to lock since we're protected by rtnl_lock */
1458 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001459 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001460 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001461 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1462 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return -EPERM;
1464 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001465 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1466 bond_dev->name, slave_dev->name,
1467 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1469 }
1470 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001471 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (bond->slave_cnt == 0) {
1473 /* First slave, and it is not VLAN challenged,
1474 * so remove the block of adding VLANs over the bond.
1475 */
1476 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1477 }
1478 }
1479
Jay Vosburgh217df672005-09-26 16:11:50 -07001480 /*
1481 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001482 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001483 * the current ifenslave will set the interface down prior to
1484 * enslaving it; the old ifenslave will not.
1485 */
1486 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001487 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001488 slave_dev->name);
1489 res = -EPERM;
1490 goto err_undo_flags;
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Moni Shoua872254d2007-10-09 19:43:38 -07001493 /* set bonding device ether type by slave - bonding netdevices are
1494 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1495 * there is a need to override some of the type dependent attribs/funcs.
1496 *
1497 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1498 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1499 */
1500 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001501 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001502 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001503 bond_dev->name,
1504 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001505
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001506 res = netdev_bonding_change(bond_dev,
1507 NETDEV_PRE_TYPE_CHANGE);
1508 res = notifier_to_errno(res);
1509 if (res) {
1510 pr_err("%s: refused to change device type\n",
1511 bond_dev->name);
1512 res = -EBUSY;
1513 goto err_undo_flags;
1514 }
Moni Shoua75c78502009-09-15 02:37:40 -07001515
Jiri Pirko32a806c2010-03-19 04:00:23 +00001516 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001517 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001518 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001519
Moni Shouae36b9d12009-07-15 04:56:31 +00001520 if (slave_dev->type != ARPHRD_ETHER)
1521 bond_setup_by_slave(bond_dev, slave_dev);
1522 else
1523 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001524
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001525 netdev_bonding_change(bond_dev,
1526 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001527 }
Moni Shoua872254d2007-10-09 19:43:38 -07001528 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001529 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1530 slave_dev->name,
1531 slave_dev->type, bond_dev->type);
1532 res = -EINVAL;
1533 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001534 }
1535
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001536 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001537 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001538 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1539 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001540 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1541 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001542 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",
1543 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001544 res = -EOPNOTSUPP;
1545 goto err_undo_flags;
1546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
1548
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001549 /* If this is the first slave, then we need to set the master's hardware
1550 * address to be the same as the slave's. */
David Strandd13a2cb2010-12-01 11:43:08 -08001551 if (is_zero_ether_addr(bond->dev->dev_addr))
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001552 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1553 slave_dev->addr_len);
1554
1555
Joe Jin243cb4e2007-02-06 14:16:40 -08001556 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (!new_slave) {
1558 res = -ENOMEM;
1559 goto err_undo_flags;
1560 }
1561
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001562 /*
1563 * Set the new_slave's queue_id to be zero. Queue ID mapping
1564 * is set via sysfs or module option if desired.
1565 */
1566 new_slave->queue_id = 0;
1567
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001568 /* Save slave's original mtu and then set it to match the bond */
1569 new_slave->original_mtu = slave_dev->mtu;
1570 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1571 if (res) {
1572 pr_debug("Error %d calling dev_set_mtu\n", res);
1573 goto err_free;
1574 }
1575
Jay Vosburgh217df672005-09-26 16:11:50 -07001576 /*
1577 * Save slave's original ("permanent") mac address for modes
1578 * that need it, and for restoring it upon release, and then
1579 * set it to the master's address
1580 */
1581 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Jay Vosburghdd957c52007-10-09 19:57:24 -07001583 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001584 /*
1585 * Set slave to master's mac address. The application already
1586 * set the master's mac address to that of the first slave
1587 */
1588 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1589 addr.sa_family = slave_dev->type;
1590 res = dev_set_mac_address(slave_dev, &addr);
1591 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001592 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001593 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001594 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001597 res = netdev_set_master(slave_dev, bond_dev);
1598 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001599 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001600 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001601 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001602 /* open the slave since the application closed it */
1603 res = dev_open(slave_dev);
1604 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001605 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001606 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001610 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Holger Eitzenberger58402052008-12-09 23:07:13 -08001612 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /* bond_alb_init_slave() must be called before all other stages since
1614 * it might fail and we do not want to have to undo everything
1615 */
1616 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001617 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001618 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
1620
1621 /* If the mode USES_PRIMARY, then the new slave gets the
1622 * master's promisc (and mc) settings only if it becomes the
1623 * curr_active_slave, and that is taken care of later when calling
1624 * bond_change_active()
1625 */
1626 if (!USES_PRIMARY(bond->params.mode)) {
1627 /* set promiscuity level to new slave */
1628 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001629 res = dev_set_promiscuity(slave_dev, 1);
1630 if (res)
1631 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
1633
1634 /* set allmulti level to new slave */
1635 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001636 res = dev_set_allmulti(slave_dev, 1);
1637 if (res)
1638 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
1640
David S. Millerb9e40852008-07-15 00:15:08 -07001641 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001643 netdev_for_each_mc_addr(ha, bond_dev)
1644 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001645 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
1647
1648 if (bond->params.mode == BOND_MODE_8023AD) {
1649 /* add lacpdu mc addr to mc list */
1650 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1651
Jiri Pirko22bedad32010-04-01 21:22:57 +00001652 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
1655 bond_add_vlans_on_slave(bond, slave_dev);
1656
1657 write_lock_bh(&bond->lock);
1658
1659 bond_attach_slave(bond, new_slave);
1660
1661 new_slave->delay = 0;
1662 new_slave->link_failure_count = 0;
1663
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001664 bond_compute_features(bond);
1665
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001666 write_unlock_bh(&bond->lock);
1667
1668 read_lock(&bond->lock);
1669
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001670 new_slave->last_arp_rx = jiffies;
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (bond->params.miimon && !bond->params.use_carrier) {
1673 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1674
1675 if ((link_reporting == -1) && !bond->params.arp_interval) {
1676 /*
1677 * miimon is set but a bonded network driver
1678 * does not support ETHTOOL/MII and
1679 * arp_interval is not set. Note: if
1680 * use_carrier is enabled, we will never go
1681 * here (because netif_carrier is always
1682 * supported); thus, we don't need to change
1683 * the messages for netif_carrier.
1684 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001685 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 -08001686 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 } else if (link_reporting == -1) {
1688 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001689 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",
1690 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692 }
1693
1694 /* check for initial state */
1695 if (!bond->params.miimon ||
1696 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1697 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001698 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 new_slave->link = BOND_LINK_BACK;
1700 new_slave->delay = bond->params.updelay;
1701 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001702 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 new_slave->link = BOND_LINK_UP;
1704 }
1705 new_slave->jiffies = jiffies;
1706 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001707 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 new_slave->link = BOND_LINK_DOWN;
1709 }
1710
1711 if (bond_update_speed_duplex(new_slave) &&
1712 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001713 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1714 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001717 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1718 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720 }
1721
1722 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1723 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001724 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001726 bond->force_primary = true;
1727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
1729
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001730 write_lock_bh(&bond->curr_slave_lock);
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 switch (bond->params.mode) {
1733 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001734 bond_set_slave_inactive_flags(new_slave);
1735 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 break;
1737 case BOND_MODE_8023AD:
1738 /* in 802.3ad mode, the internal mechanism
1739 * will activate the slaves in the selected
1740 * aggregator
1741 */
1742 bond_set_slave_inactive_flags(new_slave);
1743 /* if this is the first slave */
1744 if (bond->slave_cnt == 1) {
1745 SLAVE_AD_INFO(new_slave).id = 1;
1746 /* Initialize AD with the number of times that the AD timer is called in 1 second
1747 * can be called only after the mac address of the bond is set
1748 */
1749 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1750 bond->params.lacp_fast);
1751 } else {
1752 SLAVE_AD_INFO(new_slave).id =
1753 SLAVE_AD_INFO(new_slave->prev).id + 1;
1754 }
1755
1756 bond_3ad_bind_slave(new_slave);
1757 break;
1758 case BOND_MODE_TLB:
1759 case BOND_MODE_ALB:
1760 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001761 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001762 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 break;
1764 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001765 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 /* always active in trunk mode */
1768 new_slave->state = BOND_STATE_ACTIVE;
1769
1770 /* In trunking mode there is little meaning to curr_active_slave
1771 * anyway (it holds no special properties of the bond device),
1772 * so we can change it without calling change_active_interface()
1773 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001774 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 break;
1778 } /* switch(bond_mode) */
1779
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001780 write_unlock_bh(&bond->curr_slave_lock);
1781
Jay Vosburghff59c452006-03-27 13:27:43 -08001782 bond_set_carrier(bond);
1783
WANG Congf6dc31a2010-05-06 00:48:51 -07001784#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Horman45b0cb82010-10-13 16:01:53 +00001785 if (slaves_support_netpoll(bond_dev)) {
1786 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1787 if (bond_dev->npinfo)
1788 slave_dev->npinfo = bond_dev->npinfo;
1789 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001790 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Neil Horman45b0cb82010-10-13 16:01:53 +00001791 pr_info("New slave device %s does not support netpoll\n",
1792 slave_dev->name);
1793 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
WANG Congf6dc31a2010-05-06 00:48:51 -07001794 }
1795#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001796 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001798 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1799 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001800 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001801
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001802 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1803 bond_dev->name, slave_dev->name,
1804 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1805 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 /* enslave is successful */
1808 return 0;
1809
1810/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811err_close:
1812 dev_close(slave_dev);
1813
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001814err_unset_master:
1815 netdev_set_master(slave_dev, NULL);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001818 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001819 /* XXX TODO - fom follow mode needs to change master's
1820 * MAC if this slave's MAC is in use by the bond, or at
1821 * least print a warning.
1822 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001823 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1824 addr.sa_family = slave_dev->type;
1825 dev_set_mac_address(slave_dev, &addr);
1826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001828err_restore_mtu:
1829 dev_set_mtu(slave_dev, new_slave->original_mtu);
1830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831err_free:
1832 kfree(new_slave);
1833
1834err_undo_flags:
1835 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return res;
1838}
1839
1840/*
1841 * Try to release the slave device <slave> from the bond device <master>
1842 * It is legal to access curr_active_slave without a lock because all the function
1843 * is write-locked.
1844 *
1845 * The rules for slave state should be:
1846 * for Active/Backup:
1847 * Active stays on all backups go down
1848 * for Bonded connections:
1849 * The first up interface should be left on and all others downed.
1850 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001851int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
Wang Chen454d7c92008-11-12 23:37:49 -08001853 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 struct slave *slave, *oldcurrent;
1855 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 /* slave is not a slave or master is not master of this slave */
1858 if (!(slave_dev->flags & IFF_SLAVE) ||
1859 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001860 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 bond_dev->name, slave_dev->name);
1862 return -EINVAL;
1863 }
1864
Neil Hormane843fa52010-10-13 16:01:50 +00001865 block_netpoll_tx();
WANG Congf6dc31a2010-05-06 00:48:51 -07001866 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 write_lock_bh(&bond->lock);
1868
1869 slave = bond_get_slave_by_dev(bond, slave_dev);
1870 if (!slave) {
1871 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001872 pr_info("%s: %s not enslaved\n",
1873 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001874 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001875 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return -EINVAL;
1877 }
1878
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001879 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001880 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1881 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001882 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",
1883 bond_dev->name, slave_dev->name,
1884 slave->perm_hwaddr,
1885 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887
1888 /* Inform AD package of unbinding of slave. */
1889 if (bond->params.mode == BOND_MODE_8023AD) {
1890 /* must be called before the slave is
1891 * detached from the list
1892 */
1893 bond_3ad_unbind_slave(slave);
1894 }
1895
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001896 pr_info("%s: releasing %s interface %s\n",
1897 bond_dev->name,
1898 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1899 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 oldcurrent = bond->curr_active_slave;
1902
1903 bond->current_arp_slave = NULL;
1904
1905 /* release the slave from its bond */
1906 bond_detach_slave(bond, slave);
1907
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001908 bond_compute_features(bond);
1909
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001910 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001913 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Holger Eitzenberger58402052008-12-09 23:07:13 -08001916 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 /* Must be called only after the slave has been
1918 * detached from the list and the curr_active_slave
1919 * has been cleared (if our_slave == old_current),
1920 * but before a new active slave is selected.
1921 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001922 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001924 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001927 if (oldcurrent == slave) {
1928 /*
1929 * Note that we hold RTNL over this sequence, so there
1930 * is no concern that another slave add/remove event
1931 * will interfere.
1932 */
1933 write_unlock_bh(&bond->lock);
1934 read_lock(&bond->lock);
1935 write_lock_bh(&bond->curr_slave_lock);
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 bond_select_active_slave(bond);
1938
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001939 write_unlock_bh(&bond->curr_slave_lock);
1940 read_unlock(&bond->lock);
1941 write_lock_bh(&bond->lock);
1942 }
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001945 bond_set_carrier(bond);
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /* if the last slave was removed, zero the mac address
1948 * of the master so it will be set by the application
1949 * to the mac address of the first slave
1950 */
1951 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1952
Jay Vosburghf35188f2010-07-21 12:14:47 +00001953 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1955 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001956 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1957 bond_dev->name, bond_dev->name);
1958 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1959 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1962 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001963 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1964 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1966 }
1967
1968 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001969 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001971 /* must do this from outside any spinlocks */
1972 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 bond_del_vlans_from_slave(bond, slave_dev);
1975
1976 /* If the mode USES_PRIMARY, then we should only remove its
1977 * promisc and mc settings if it was the curr_active_slave, but that was
1978 * already taken care of above when we detached the slave
1979 */
1980 if (!USES_PRIMARY(bond->params.mode)) {
1981 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001982 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001986 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001990 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001992 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 }
1994
1995 netdev_set_master(slave_dev, NULL);
1996
WANG Congf6dc31a2010-05-06 00:48:51 -07001997#ifdef CONFIG_NET_POLL_CONTROLLER
1998 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001999
Neil Horman45b0cb82010-10-13 16:01:53 +00002000 if (slaves_support_netpoll(bond_dev))
2001 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002002 read_unlock_bh(&bond->lock);
2003 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2004 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2005 else
2006 slave_dev->npinfo = NULL;
2007#endif
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /* close slave before restoring its mac address */
2010 dev_close(slave_dev);
2011
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002012 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002013 /* restore original ("permanent") mac address */
2014 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2015 addr.sa_family = slave_dev->type;
2016 dev_set_mac_address(slave_dev, &addr);
2017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002019 dev_set_mtu(slave_dev, slave->original_mtu);
2020
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002021 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002022 IFF_SLAVE_INACTIVE | IFF_BONDING |
2023 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 kfree(slave);
2026
2027 return 0; /* deletion OK */
2028}
2029
2030/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002031* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002032* Must be under rtnl_lock when this function is called.
2033*/
stephen hemminger26d8ee72010-10-15 05:09:34 +00002034static int bond_release_and_destroy(struct net_device *bond_dev,
2035 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002036{
Wang Chen454d7c92008-11-12 23:37:49 -08002037 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002038 int ret;
2039
2040 ret = bond_release(bond_dev, slave_dev);
2041 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002042 pr_info("%s: destroying bond %s.\n",
2043 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002044 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002045 }
2046 return ret;
2047}
2048
2049/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 * This function releases all slaves.
2051 */
2052static int bond_release_all(struct net_device *bond_dev)
2053{
Wang Chen454d7c92008-11-12 23:37:49 -08002054 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 struct slave *slave;
2056 struct net_device *slave_dev;
2057 struct sockaddr addr;
2058
2059 write_lock_bh(&bond->lock);
2060
Jay Vosburghff59c452006-03-27 13:27:43 -08002061 netif_carrier_off(bond_dev);
2062
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002063 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 bond->current_arp_slave = NULL;
2067 bond->primary_slave = NULL;
2068 bond_change_active_slave(bond, NULL);
2069
2070 while ((slave = bond->first_slave) != NULL) {
2071 /* Inform AD package of unbinding of slave
2072 * before slave is detached from the list.
2073 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002074 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 slave_dev = slave->dev;
2078 bond_detach_slave(bond, slave);
2079
Jay Vosburgh25433312008-01-17 16:24:59 -08002080 /* now that the slave is detached, unlock and perform
2081 * all the undo steps that should not be called from
2082 * within a lock.
2083 */
2084 write_unlock_bh(&bond->lock);
2085
Holger Eitzenberger58402052008-12-09 23:07:13 -08002086 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 /* must be called only after the slave
2088 * has been detached from the list
2089 */
2090 bond_alb_deinit_slave(bond, slave);
2091 }
2092
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002093 bond_compute_features(bond);
2094
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002095 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 bond_del_vlans_from_slave(bond, slave_dev);
2097
2098 /* If the mode USES_PRIMARY, then we should only remove its
2099 * promisc and mc settings if it was the curr_active_slave, but that was
2100 * already taken care of above when we detached the slave
2101 */
2102 if (!USES_PRIMARY(bond->params.mode)) {
2103 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002104 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002108 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002112 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002114 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116
2117 netdev_set_master(slave_dev, NULL);
2118
2119 /* close slave before restoring its mac address */
2120 dev_close(slave_dev);
2121
Jay Vosburghdd957c52007-10-09 19:57:24 -07002122 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002123 /* restore original ("permanent") mac address*/
2124 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2125 addr.sa_family = slave_dev->type;
2126 dev_set_mac_address(slave_dev, &addr);
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002129 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2130 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 kfree(slave);
2133
2134 /* re-acquire the lock before getting the next slave */
2135 write_lock_bh(&bond->lock);
2136 }
2137
2138 /* zero the mac address of the master so it will be
2139 * set by the application to the mac address of the
2140 * first slave
2141 */
2142 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2143
Jay Vosburghf35188f2010-07-21 12:14:47 +00002144 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002146 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002147 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2148 bond_dev->name, bond_dev->name);
2149 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2150 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002153 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155out:
2156 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return 0;
2158}
2159
2160/*
2161 * This function changes the active slave to slave <slave_dev>.
2162 * It returns -EINVAL in the following cases.
2163 * - <slave_dev> is not found in the list.
2164 * - There is not active slave now.
2165 * - <slave_dev> is already active.
2166 * - The link state of <slave_dev> is not BOND_LINK_UP.
2167 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002168 * In these cases, this function does nothing.
2169 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 */
2171static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2172{
Wang Chen454d7c92008-11-12 23:37:49 -08002173 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 struct slave *old_active = NULL;
2175 struct slave *new_active = NULL;
2176 int res = 0;
2177
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002178 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002182 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002185 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002187 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002189 read_unlock(&bond->curr_slave_lock);
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 new_active = bond_get_slave_by_dev(bond, slave_dev);
2192
2193 /*
2194 * Changing to the current active: do nothing; return success.
2195 */
2196 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002197 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 return 0;
2199 }
2200
2201 if ((new_active) &&
2202 (old_active) &&
2203 (new_active->link == BOND_LINK_UP) &&
2204 IS_UP(new_active->dev)) {
Neil Hormane843fa52010-10-13 16:01:50 +00002205 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002206 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002208 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002209 unblock_netpoll_tx();
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002210 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002213 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 return res;
2216}
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2219{
Wang Chen454d7c92008-11-12 23:37:49 -08002220 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222 info->bond_mode = bond->params.mode;
2223 info->miimon = bond->params.miimon;
2224
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002225 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002227 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 return 0;
2230}
2231
2232static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2233{
Wang Chen454d7c92008-11-12 23:37:49 -08002234 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002236 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002238 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 bond_for_each_slave(bond, slave, i) {
2241 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002242 res = 0;
2243 strcpy(info->slave_name, slave->dev->name);
2244 info->link = slave->link;
2245 info->state = slave->state;
2246 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 break;
2248 }
2249 }
2250
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002251 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Eric Dumazet689c96c2009-04-23 03:39:04 +00002253 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254}
2255
2256/*-------------------------------- Monitoring -------------------------------*/
2257
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002258
2259static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002261 struct slave *slave;
2262 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002263 bool ignore_updelay;
2264
2265 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002268 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002270 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002273 case BOND_LINK_UP:
2274 if (link_state)
2275 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002277 slave->link = BOND_LINK_FAIL;
2278 slave->delay = bond->params.downdelay;
2279 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002280 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2281 bond->dev->name,
2282 (bond->params.mode ==
2283 BOND_MODE_ACTIVEBACKUP) ?
2284 ((slave->state == BOND_STATE_ACTIVE) ?
2285 "active " : "backup ") : "",
2286 slave->dev->name,
2287 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002289 /*FALLTHRU*/
2290 case BOND_LINK_FAIL:
2291 if (link_state) {
2292 /*
2293 * recovered before downdelay expired
2294 */
2295 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002297 pr_info("%s: link status up again after %d ms for interface %s.\n",
2298 bond->dev->name,
2299 (bond->params.downdelay - slave->delay) *
2300 bond->params.miimon,
2301 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002302 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002304
2305 if (slave->delay <= 0) {
2306 slave->new_link = BOND_LINK_DOWN;
2307 commit++;
2308 continue;
2309 }
2310
2311 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002314 case BOND_LINK_DOWN:
2315 if (!link_state)
2316 continue;
2317
2318 slave->link = BOND_LINK_BACK;
2319 slave->delay = bond->params.updelay;
2320
2321 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002322 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2323 bond->dev->name, slave->dev->name,
2324 ignore_updelay ? 0 :
2325 bond->params.updelay *
2326 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002328 /*FALLTHRU*/
2329 case BOND_LINK_BACK:
2330 if (!link_state) {
2331 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002332 pr_info("%s: link status down again after %d ms for interface %s.\n",
2333 bond->dev->name,
2334 (bond->params.updelay - slave->delay) *
2335 bond->params.miimon,
2336 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002337
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002338 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002340
Jiri Pirko41f89102009-04-24 03:57:29 +00002341 if (ignore_updelay)
2342 slave->delay = 0;
2343
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002344 if (slave->delay <= 0) {
2345 slave->new_link = BOND_LINK_UP;
2346 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002347 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002348 continue;
2349 }
2350
2351 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002353 }
2354 }
2355
2356 return commit;
2357}
2358
2359static void bond_miimon_commit(struct bonding *bond)
2360{
2361 struct slave *slave;
2362 int i;
2363
2364 bond_for_each_slave(bond, slave, i) {
2365 switch (slave->new_link) {
2366 case BOND_LINK_NOCHANGE:
2367 continue;
2368
2369 case BOND_LINK_UP:
2370 slave->link = BOND_LINK_UP;
2371 slave->jiffies = jiffies;
2372
2373 if (bond->params.mode == BOND_MODE_8023AD) {
2374 /* prevent it from being the active one */
2375 slave->state = BOND_STATE_BACKUP;
2376 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2377 /* make it immediately active */
2378 slave->state = BOND_STATE_ACTIVE;
2379 } else if (slave != bond->primary_slave) {
2380 /* prevent it from being the active one */
2381 slave->state = BOND_STATE_BACKUP;
2382 }
2383
Krzysztof Piotr Oledzki546add72010-10-06 14:28:22 -07002384 bond_update_speed_duplex(slave);
2385
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002386 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2387 bond->dev->name, slave->dev->name,
2388 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002389
2390 /* notify ad that the link status has changed */
2391 if (bond->params.mode == BOND_MODE_8023AD)
2392 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2393
Holger Eitzenberger58402052008-12-09 23:07:13 -08002394 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002395 bond_alb_handle_link_change(bond, slave,
2396 BOND_LINK_UP);
2397
2398 if (!bond->curr_active_slave ||
2399 (slave == bond->primary_slave))
2400 goto do_failover;
2401
2402 continue;
2403
2404 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002405 if (slave->link_failure_count < UINT_MAX)
2406 slave->link_failure_count++;
2407
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002408 slave->link = BOND_LINK_DOWN;
2409
2410 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2411 bond->params.mode == BOND_MODE_8023AD)
2412 bond_set_slave_inactive_flags(slave);
2413
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002414 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2415 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002416
2417 if (bond->params.mode == BOND_MODE_8023AD)
2418 bond_3ad_handle_link_change(slave,
2419 BOND_LINK_DOWN);
2420
Jiri Pirkoae63e802009-05-27 05:42:36 +00002421 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002422 bond_alb_handle_link_change(bond, slave,
2423 BOND_LINK_DOWN);
2424
2425 if (slave == bond->curr_active_slave)
2426 goto do_failover;
2427
2428 continue;
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002431 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002432 bond->dev->name, slave->new_link,
2433 slave->dev->name);
2434 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002436 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002439do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002440 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00002441 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002442 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002444 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002445 unblock_netpoll_tx();
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002446 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002447
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002448 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449}
2450
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002451/*
2452 * bond_mii_monitor
2453 *
2454 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002455 * inspection, then (if inspection indicates something needs to be done)
2456 * an acquisition of appropriate locks followed by a commit phase to
2457 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002458 */
2459void bond_mii_monitor(struct work_struct *work)
2460{
2461 struct bonding *bond = container_of(work, struct bonding,
2462 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002463
2464 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002465 if (bond->kill_timers)
2466 goto out;
2467
2468 if (bond->slave_cnt == 0)
2469 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002470
2471 if (bond->send_grat_arp) {
2472 read_lock(&bond->curr_slave_lock);
2473 bond_send_gratuitous_arp(bond);
2474 read_unlock(&bond->curr_slave_lock);
2475 }
2476
Brian Haley305d5522008-11-04 17:51:14 -08002477 if (bond->send_unsol_na) {
2478 read_lock(&bond->curr_slave_lock);
2479 bond_send_unsolicited_na(bond);
2480 read_unlock(&bond->curr_slave_lock);
2481 }
2482
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002483 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002484 read_unlock(&bond->lock);
2485 rtnl_lock();
2486 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002487
2488 bond_miimon_commit(bond);
2489
Jay Vosburgh56556622008-01-17 16:25:03 -08002490 read_unlock(&bond->lock);
2491 rtnl_unlock(); /* might sleep, hold no other locks */
2492 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002493 }
2494
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002495re_arm:
2496 if (bond->params.miimon)
2497 queue_delayed_work(bond->wq, &bond->mii_work,
2498 msecs_to_jiffies(bond->params.miimon));
2499out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002500 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002501}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002502
Al Virod3bb52b2007-08-22 20:06:58 -04002503static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002504{
2505 struct in_device *idev;
2506 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002507 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002508
2509 if (!dev)
2510 return 0;
2511
2512 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002513 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002514 if (!idev)
2515 goto out;
2516
2517 ifa = idev->ifa_list;
2518 if (!ifa)
2519 goto out;
2520
2521 addr = ifa->ifa_local;
2522out:
2523 rcu_read_unlock();
2524 return addr;
2525}
2526
Al Virod3bb52b2007-08-22 20:06:58 -04002527static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002528{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002529 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002530
2531 if (ip == bond->master_ip)
2532 return 1;
2533
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002534 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002535 if (ip == vlan->vlan_ip)
2536 return 1;
2537 }
2538
2539 return 0;
2540}
2541
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002542/*
2543 * We go to the (large) trouble of VLAN tagging ARP frames because
2544 * switches in VLAN mode (especially if ports are configured as
2545 * "native" to a VLAN) might not pass non-tagged frames.
2546 */
Al Virod3bb52b2007-08-22 20:06:58 -04002547static 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 -04002548{
2549 struct sk_buff *skb;
2550
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002551 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002552 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002553
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002554 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2555 NULL, slave_dev->dev_addr, NULL);
2556
2557 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002558 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002559 return;
2560 }
2561 if (vlan_id) {
2562 skb = vlan_put_tag(skb, vlan_id);
2563 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002564 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002565 return;
2566 }
2567 }
2568 arp_xmit(skb);
2569}
2570
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2573{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002574 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002575 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002576 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002577 struct net_device *vlan_dev;
2578 struct flowi fl;
2579 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Mitch Williams6b780562005-11-09 10:36:19 -08002581 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2582 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002583 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002584 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002585 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002586 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002587 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2588 bond->master_ip, 0);
2589 continue;
2590 }
2591
2592 /*
2593 * If VLANs are configured, we do a route lookup to
2594 * determine which VLAN interface would be used, so we
2595 * can tag the ARP with the proper VLAN tag.
2596 */
2597 memset(&fl, 0, sizeof(fl));
2598 fl.fl4_dst = targets[i];
2599 fl.fl4_tos = RTO_ONLINK;
2600
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002601 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002602 if (rv) {
2603 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002604 pr_warning("%s: no route to arp_ip_target %pI4\n",
2605 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002606 }
2607 continue;
2608 }
2609
2610 /*
2611 * This target is not on a VLAN
2612 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002613 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002614 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002615 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002616 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2617 bond->master_ip, 0);
2618 continue;
2619 }
2620
2621 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002622 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002623 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002624 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002625 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002626 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002627 vlan_dev->name, vlan_id);
2628 break;
2629 }
2630 }
2631
2632 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002633 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002634 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2635 vlan->vlan_ip, vlan_id);
2636 continue;
2637 }
2638
2639 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002640 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2641 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002642 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002643 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002644 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002645 }
2646}
2647
2648/*
2649 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2650 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002651 *
2652 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002653 */
2654static void bond_send_gratuitous_arp(struct bonding *bond)
2655{
2656 struct slave *slave = bond->curr_active_slave;
2657 struct vlan_entry *vlan;
2658 struct net_device *vlan_dev;
2659
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002660 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2661 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002662
2663 if (!slave || !bond->send_grat_arp ||
2664 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002665 return;
2666
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002667 bond->send_grat_arp--;
2668
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002669 if (bond->master_ip) {
2670 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002671 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002672 }
2673
Jay Vosburghf35188f2010-07-21 12:14:47 +00002674 if (!bond->vlgrp)
2675 return;
2676
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002677 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002678 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002679 if (vlan->vlan_ip) {
2680 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2681 vlan->vlan_ip, vlan->vlan_id);
2682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
2684}
2685
Al Virod3bb52b2007-08-22 20:06:58 -04002686static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002687{
2688 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002689 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002690
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002691 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002692 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002693 &sip, &tip, i, &targets[i],
2694 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002695 if (sip == targets[i]) {
2696 if (bond_has_this_ip(bond, tip))
2697 slave->last_arp_rx = jiffies;
2698 return;
2699 }
2700 }
2701}
2702
2703static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2704{
2705 struct arphdr *arp;
2706 struct slave *slave;
2707 struct bonding *bond;
2708 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002709 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002710
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002711 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2712 /*
2713 * When using VLANS and bonding, dev and oriv_dev may be
2714 * incorrect if the physical interface supports VLAN
2715 * acceleration. With this change ARP validation now
2716 * works for hosts only reachable on the VLAN interface.
2717 */
2718 dev = vlan_dev_real_dev(dev);
2719 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2720 }
2721
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002722 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2723 goto out;
2724
Wang Chen454d7c92008-11-12 23:37:49 -08002725 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002726 read_lock(&bond->lock);
2727
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002728 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002729 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2730 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002731
2732 slave = bond_get_slave_by_dev(bond, orig_dev);
2733 if (!slave || !slave_do_arp_validate(bond, slave))
2734 goto out_unlock;
2735
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002736 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002737 goto out_unlock;
2738
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002739 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002740 if (arp->ar_hln != dev->addr_len ||
2741 skb->pkt_type == PACKET_OTHERHOST ||
2742 skb->pkt_type == PACKET_LOOPBACK ||
2743 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2744 arp->ar_pro != htons(ETH_P_IP) ||
2745 arp->ar_pln != 4)
2746 goto out_unlock;
2747
2748 arp_ptr = (unsigned char *)(arp + 1);
2749 arp_ptr += dev->addr_len;
2750 memcpy(&sip, arp_ptr, 4);
2751 arp_ptr += 4 + dev->addr_len;
2752 memcpy(&tip, arp_ptr, 4);
2753
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002754 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002755 bond->dev->name, slave->dev->name, slave->state,
2756 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2757 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002758
2759 /*
2760 * Backup slaves won't see the ARP reply, but do come through
2761 * here for each ARP probe (so we swap the sip/tip to validate
2762 * the probe). In a "redundant switch, common router" type of
2763 * configuration, the ARP probe will (hopefully) travel from
2764 * the active, through one switch, the router, then the other
2765 * switch before reaching the backup.
2766 */
2767 if (slave->state == BOND_STATE_ACTIVE)
2768 bond_validate_arp(bond, slave, sip, tip);
2769 else
2770 bond_validate_arp(bond, slave, tip, sip);
2771
2772out_unlock:
2773 read_unlock(&bond->lock);
2774out:
2775 dev_kfree_skb(skb);
2776 return NET_RX_SUCCESS;
2777}
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779/*
2780 * this function is called regularly to monitor each slave's link
2781 * ensuring that traffic is being sent and received when arp monitoring
2782 * is used in load-balancing mode. if the adapter has been dormant, then an
2783 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2784 * arp monitoring in active backup mode.
2785 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002786void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002788 struct bonding *bond = container_of(work, struct bonding,
2789 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 struct slave *slave, *oldcurrent;
2791 int do_failover = 0;
2792 int delta_in_ticks;
2793 int i;
2794
2795 read_lock(&bond->lock);
2796
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002797 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002799 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002802 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 read_lock(&bond->curr_slave_lock);
2806 oldcurrent = bond->curr_active_slave;
2807 read_unlock(&bond->curr_slave_lock);
2808
2809 /* see if any of the previous devices are up now (i.e. they have
2810 * xmt and rcv traffic). the curr_active_slave does not come into
2811 * the picture unless it is null. also, slave->jiffies is not needed
2812 * here because we send an arp on each slave and give a slave as
2813 * long as it needs to get the tx/rx within the delta.
2814 * TODO: what about up/down delay in arp mode? it wasn't here before
2815 * so it can wait
2816 */
2817 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002818 unsigned long trans_start = dev_trans_start(slave->dev);
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002821 if (time_in_range(jiffies,
2822 trans_start - delta_in_ticks,
2823 trans_start + delta_in_ticks) &&
2824 time_in_range(jiffies,
2825 slave->dev->last_rx - delta_in_ticks,
2826 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 slave->link = BOND_LINK_UP;
2829 slave->state = BOND_STATE_ACTIVE;
2830
2831 /* primary_slave has no meaning in round-robin
2832 * mode. the window of a slave being up and
2833 * curr_active_slave being null after enslaving
2834 * is closed.
2835 */
2836 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002837 pr_info("%s: link status definitely up for interface %s, ",
2838 bond->dev->name,
2839 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 do_failover = 1;
2841 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002842 pr_info("%s: interface %s is now up\n",
2843 bond->dev->name,
2844 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 }
2846 }
2847 } else {
2848 /* slave->link == BOND_LINK_UP */
2849
2850 /* not all switches will respond to an arp request
2851 * when the source ip is 0, so don't take the link down
2852 * if we don't know our ip yet
2853 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002854 if (!time_in_range(jiffies,
2855 trans_start - delta_in_ticks,
2856 trans_start + 2 * delta_in_ticks) ||
2857 !time_in_range(jiffies,
2858 slave->dev->last_rx - delta_in_ticks,
2859 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 slave->link = BOND_LINK_DOWN;
2862 slave->state = BOND_STATE_BACKUP;
2863
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002864 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002867 pr_info("%s: interface %s is now down.\n",
2868 bond->dev->name,
2869 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002871 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 }
2874 }
2875
2876 /* note: if switch is in round-robin mode, all links
2877 * must tx arp to ensure all links rx an arp - otherwise
2878 * links may oscillate or not come up at all; if switch is
2879 * in something like xor mode, there is nothing we can
2880 * do - all replies will be rx'ed on same link causing slaves
2881 * to be unstable during low/no traffic periods
2882 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002883 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 }
2886
2887 if (do_failover) {
Neil Hormane843fa52010-10-13 16:01:50 +00002888 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002889 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891 bond_select_active_slave(bond);
2892
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002893 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002894 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 }
2896
2897re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002898 if (bond->params.arp_interval)
2899 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900out:
2901 read_unlock(&bond->lock);
2902}
2903
2904/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002905 * Called to inspect slaves for active-backup mode ARP monitor link state
2906 * changes. Sets new_link in slaves to specify what action should take
2907 * place for the slave. Returns 0 if no changes are found, >0 if changes
2908 * to link states must be committed.
2909 *
2910 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002912static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002915 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002916 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002919 slave->new_link = BOND_LINK_NOCHANGE;
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002922 if (time_in_range(jiffies,
2923 slave_last_rx(bond, slave) - delta_in_ticks,
2924 slave_last_rx(bond, slave) + delta_in_ticks)) {
2925
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002926 slave->new_link = BOND_LINK_UP;
2927 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002930 continue;
2931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002933 /*
2934 * Give slaves 2*delta after being enslaved or made
2935 * active. This avoids bouncing, as the last receive
2936 * times need a full ARP monitor cycle to be updated.
2937 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002938 if (time_in_range(jiffies,
2939 slave->jiffies - delta_in_ticks,
2940 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002941 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002943 /*
2944 * Backup slave is down if:
2945 * - No current_arp_slave AND
2946 * - more than 3*delta since last receive AND
2947 * - the bond has an IP address
2948 *
2949 * Note: a non-null current_arp_slave indicates
2950 * the curr_active_slave went down and we are
2951 * searching for a new one; under this condition
2952 * we only take the curr_active_slave down - this
2953 * gives each slave a chance to tx/rx traffic
2954 * before being taken out
2955 */
2956 if (slave->state == BOND_STATE_BACKUP &&
2957 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002958 !time_in_range(jiffies,
2959 slave_last_rx(bond, slave) - delta_in_ticks,
2960 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2961
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002962 slave->new_link = BOND_LINK_DOWN;
2963 commit++;
2964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002966 /*
2967 * Active slave is down if:
2968 * - more than 2*delta since transmitting OR
2969 * - (more than 2*delta since receive AND
2970 * the bond has an IP address)
2971 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002972 trans_start = dev_trans_start(slave->dev);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002973 if ((slave->state == BOND_STATE_ACTIVE) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002974 (!time_in_range(jiffies,
2975 trans_start - delta_in_ticks,
2976 trans_start + 2 * delta_in_ticks) ||
2977 !time_in_range(jiffies,
2978 slave_last_rx(bond, slave) - delta_in_ticks,
2979 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
2980
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002981 slave->new_link = BOND_LINK_DOWN;
2982 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984 }
2985
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002986 return commit;
2987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002989/*
2990 * Called to commit link state changes noted by inspection step of
2991 * active-backup mode ARP monitor.
2992 *
2993 * Called with RTNL and bond->lock for read.
2994 */
2995static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2996{
2997 struct slave *slave;
2998 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002999 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003001 bond_for_each_slave(bond, slave, i) {
3002 switch (slave->new_link) {
3003 case BOND_LINK_NOCHANGE:
3004 continue;
3005
3006 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003007 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003008 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003009 time_in_range(jiffies,
3010 trans_start - delta_in_ticks,
3011 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003012 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003013 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003014 bond->current_arp_slave = NULL;
3015
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003016 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003017 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003018
Jiri Pirkob9f60252009-08-31 11:09:38 +00003019 if (!bond->curr_active_slave ||
3020 (slave == bond->primary_slave))
3021 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003022
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003023 }
3024
Jiri Pirkob9f60252009-08-31 11:09:38 +00003025 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003026
3027 case BOND_LINK_DOWN:
3028 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003031 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003032 bond_set_slave_inactive_flags(slave);
3033
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003034 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003035 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003036
3037 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003038 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003039 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003040 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003041
3042 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003043
3044 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003045 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003046 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003048 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Jiri Pirkob9f60252009-08-31 11:09:38 +00003051do_failover:
3052 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00003053 block_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003054 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003055 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003056 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00003057 unblock_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003058 }
3059
3060 bond_set_carrier(bond);
3061}
3062
3063/*
3064 * Send ARP probes for active-backup mode ARP monitor.
3065 *
3066 * Called with bond->lock held for read.
3067 */
3068static void bond_ab_arp_probe(struct bonding *bond)
3069{
3070 struct slave *slave;
3071 int i;
3072
3073 read_lock(&bond->curr_slave_lock);
3074
3075 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003076 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3077 bond->current_arp_slave->dev->name,
3078 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003079
3080 if (bond->curr_active_slave) {
3081 bond_arp_send_all(bond, bond->curr_active_slave);
3082 read_unlock(&bond->curr_slave_lock);
3083 return;
3084 }
3085
3086 read_unlock(&bond->curr_slave_lock);
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 /* if we don't have a curr_active_slave, search for the next available
3089 * backup slave from the current_arp_slave and make it the candidate
3090 * for becoming the curr_active_slave
3091 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003092
3093 if (!bond->current_arp_slave) {
3094 bond->current_arp_slave = bond->first_slave;
3095 if (!bond->current_arp_slave)
3096 return;
3097 }
3098
3099 bond_set_slave_inactive_flags(bond->current_arp_slave);
3100
3101 /* search for next candidate */
3102 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3103 if (IS_UP(slave->dev)) {
3104 slave->link = BOND_LINK_BACK;
3105 bond_set_slave_active_flags(slave);
3106 bond_arp_send_all(bond, slave);
3107 slave->jiffies = jiffies;
3108 bond->current_arp_slave = slave;
3109 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 }
3111
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003112 /* if the link state is up at this point, we
3113 * mark it down - this can happen if we have
3114 * simultaneous link failures and
3115 * reselect_active_interface doesn't make this
3116 * one the current slave so it is still marked
3117 * up when it is actually down
3118 */
3119 if (slave->link == BOND_LINK_UP) {
3120 slave->link = BOND_LINK_DOWN;
3121 if (slave->link_failure_count < UINT_MAX)
3122 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003124 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003126 pr_info("%s: backup interface %s is now down.\n",
3127 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 }
3129 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003130}
3131
3132void bond_activebackup_arp_mon(struct work_struct *work)
3133{
3134 struct bonding *bond = container_of(work, struct bonding,
3135 arp_work.work);
3136 int delta_in_ticks;
3137
3138 read_lock(&bond->lock);
3139
3140 if (bond->kill_timers)
3141 goto out;
3142
3143 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3144
3145 if (bond->slave_cnt == 0)
3146 goto re_arm;
3147
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003148 if (bond->send_grat_arp) {
3149 read_lock(&bond->curr_slave_lock);
3150 bond_send_gratuitous_arp(bond);
3151 read_unlock(&bond->curr_slave_lock);
3152 }
3153
Brian Haley305d5522008-11-04 17:51:14 -08003154 if (bond->send_unsol_na) {
3155 read_lock(&bond->curr_slave_lock);
3156 bond_send_unsolicited_na(bond);
3157 read_unlock(&bond->curr_slave_lock);
3158 }
3159
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003160 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3161 read_unlock(&bond->lock);
3162 rtnl_lock();
3163 read_lock(&bond->lock);
3164
3165 bond_ab_arp_commit(bond, delta_in_ticks);
3166
3167 read_unlock(&bond->lock);
3168 rtnl_unlock();
3169 read_lock(&bond->lock);
3170 }
3171
3172 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003175 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003176 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177out:
3178 read_unlock(&bond->lock);
3179}
3180
3181/*------------------------------ proc/seq_file-------------------------------*/
3182
3183#ifdef CONFIG_PROC_FS
3184
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazete4a7b932010-10-29 01:52:46 +00003186 __acquires(RCU)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003187 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188{
3189 struct bonding *bond = seq->private;
3190 loff_t off = 0;
3191 struct slave *slave;
3192 int i;
3193
3194 /* make sure the bond won't be taken away */
Eric Dumazete4a7b932010-10-29 01:52:46 +00003195 rcu_read_lock();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003196 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003198 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003202 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 }
3205
3206 return NULL;
3207}
3208
3209static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3210{
3211 struct bonding *bond = seq->private;
3212 struct slave *slave = v;
3213
3214 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003215 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218 slave = slave->next;
3219
3220 return (slave == bond->first_slave) ? NULL : slave;
3221}
3222
3223static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003224 __releases(&bond->lock)
Eric Dumazete4a7b932010-10-29 01:52:46 +00003225 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226{
3227 struct bonding *bond = seq->private;
3228
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003229 read_unlock(&bond->lock);
Eric Dumazete4a7b932010-10-29 01:52:46 +00003230 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
3233static void bond_info_show_master(struct seq_file *seq)
3234{
3235 struct bonding *bond = seq->private;
3236 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003237 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239 read_lock(&bond->curr_slave_lock);
3240 curr = bond->curr_active_slave;
3241 read_unlock(&bond->curr_slave_lock);
3242
Jay Vosburghdd957c52007-10-09 19:57:24 -07003243 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 bond_mode_name(bond->params.mode));
3245
Jay Vosburghdd957c52007-10-09 19:57:24 -07003246 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3247 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003248 seq_printf(seq, " (fail_over_mac %s)",
3249 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003250
3251 seq_printf(seq, "\n");
3252
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003253 if (bond->params.mode == BOND_MODE_XOR ||
3254 bond->params.mode == BOND_MODE_8023AD) {
3255 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3256 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3257 bond->params.xmit_policy);
3258 }
3259
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003261 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003262 (bond->primary_slave) ?
3263 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003264 if (bond->primary_slave)
3265 seq_printf(seq, " (primary_reselect %s)",
3266 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Jiri Pirkoa5499522009-09-25 03:28:09 +00003268 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 (curr) ? curr->dev->name : "None");
3270 }
3271
Jay Vosburghff59c452006-03-27 13:27:43 -08003272 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3273 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3275 seq_printf(seq, "Up Delay (ms): %d\n",
3276 bond->params.updelay * bond->params.miimon);
3277 seq_printf(seq, "Down Delay (ms): %d\n",
3278 bond->params.downdelay * bond->params.miimon);
3279
Mitch Williams4756b022005-11-09 10:36:25 -08003280
3281 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003282 if (bond->params.arp_interval > 0) {
3283 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003284 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3285 bond->params.arp_interval);
3286
3287 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3288
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003289 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003290 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003291 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003292 if (printed)
3293 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003294 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003295 printed = 1;
3296 }
3297 seq_printf(seq, "\n");
3298 }
3299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 if (bond->params.mode == BOND_MODE_8023AD) {
3301 struct ad_info ad_info;
3302
3303 seq_puts(seq, "\n802.3ad info\n");
3304 seq_printf(seq, "LACP rate: %s\n",
3305 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003306 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3307 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3310 seq_printf(seq, "bond %s has no active aggregator\n",
3311 bond->dev->name);
3312 } else {
3313 seq_printf(seq, "Active Aggregator Info:\n");
3314
3315 seq_printf(seq, "\tAggregator ID: %d\n",
3316 ad_info.aggregator_id);
3317 seq_printf(seq, "\tNumber of ports: %d\n",
3318 ad_info.ports);
3319 seq_printf(seq, "\tActor Key: %d\n",
3320 ad_info.actor_key);
3321 seq_printf(seq, "\tPartner Key: %d\n",
3322 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003323 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3324 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 }
3326 }
3327}
3328
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003329static void bond_info_show_slave(struct seq_file *seq,
3330 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331{
3332 struct bonding *bond = seq->private;
3333
3334 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3335 seq_printf(seq, "MII Status: %s\n",
3336 (slave->link == BOND_LINK_UP) ? "up" : "down");
Krzysztof Oledzkidd53df22010-09-30 06:19:04 +00003337 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
3338 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
Kenzo Iwami655096452006-09-22 21:53:08 -07003339 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 slave->link_failure_count);
3341
Johannes Berge1749612008-10-27 15:59:26 -07003342 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
3344 if (bond->params.mode == BOND_MODE_8023AD) {
3345 const struct aggregator *agg
3346 = SLAVE_AD_INFO(slave).port.aggregator;
3347
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003348 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 seq_printf(seq, "Aggregator ID: %d\n",
3350 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003351 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003354 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355}
3356
3357static int bond_info_seq_show(struct seq_file *seq, void *v)
3358{
3359 if (v == SEQ_START_TOKEN) {
3360 seq_printf(seq, "%s\n", version);
3361 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003362 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
3365 return 0;
3366}
3367
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003368static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 .start = bond_info_seq_start,
3370 .next = bond_info_seq_next,
3371 .stop = bond_info_seq_stop,
3372 .show = bond_info_seq_show,
3373};
3374
3375static int bond_info_open(struct inode *inode, struct file *file)
3376{
3377 struct seq_file *seq;
3378 struct proc_dir_entry *proc;
3379 int res;
3380
3381 res = seq_open(file, &bond_info_seq_ops);
3382 if (!res) {
3383 /* recover the pointer buried in proc_dir_entry data */
3384 seq = file->private_data;
3385 proc = PDE(inode);
3386 seq->private = proc->data;
3387 }
3388
3389 return res;
3390}
3391
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003392static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 .owner = THIS_MODULE,
3394 .open = bond_info_open,
3395 .read = seq_read,
3396 .llseek = seq_lseek,
3397 .release = seq_release,
3398};
3399
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003400static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401{
3402 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003403 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003405 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003406 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003407 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003408 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003409 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003410 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3411 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003412 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415}
3416
3417static void bond_remove_proc_entry(struct bonding *bond)
3418{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003419 struct net_device *bond_dev = bond->dev;
3420 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3421
3422 if (bn->proc_dir && bond->proc_entry) {
3423 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 memset(bond->proc_file_name, 0, IFNAMSIZ);
3425 bond->proc_entry = NULL;
3426 }
3427}
3428
3429/* Create the bonding directory under /proc/net, if doesn't exist yet.
3430 * Caller must hold rtnl_lock.
3431 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003432static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003434 if (!bn->proc_dir) {
3435 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3436 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003437 pr_warning("Warning: cannot create /proc/net/%s\n",
3438 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 }
3440}
3441
3442/* Destroy the bonding directory under /proc/net, if empty.
3443 * Caller must hold rtnl_lock.
3444 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003445static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003447 if (bn->proc_dir) {
3448 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3449 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 }
3451}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003452
3453#else /* !CONFIG_PROC_FS */
3454
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003455static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003456{
3457}
3458
3459static void bond_remove_proc_entry(struct bonding *bond)
3460{
3461}
3462
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003463static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003464{
3465}
3466
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003467static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003468{
3469}
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471#endif /* CONFIG_PROC_FS */
3472
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474/*-------------------------- netdev event handling --------------------------*/
3475
3476/*
3477 * Change device name
3478 */
3479static int bond_event_changename(struct bonding *bond)
3480{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 bond_remove_proc_entry(bond);
3482 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003483
Taku Izumif073c7c2010-12-09 15:17:13 +00003484 bond_debug_reregister(bond);
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 return NOTIFY_DONE;
3487}
3488
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003489static int bond_master_netdev_event(unsigned long event,
3490 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
Wang Chen454d7c92008-11-12 23:37:49 -08003492 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
3494 switch (event) {
3495 case NETDEV_CHANGENAME:
3496 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 default:
3498 break;
3499 }
3500
3501 return NOTIFY_DONE;
3502}
3503
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003504static int bond_slave_netdev_event(unsigned long event,
3505 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506{
3507 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003508 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
3510 switch (event) {
3511 case NETDEV_UNREGISTER:
3512 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003513 if (bond->setup_by_slave)
3514 bond_release_and_destroy(bond_dev, slave_dev);
3515 else
3516 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 }
3518 break;
3519 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003520 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3521 struct slave *slave;
3522
3523 slave = bond_get_slave_by_dev(bond, slave_dev);
3524 if (slave) {
3525 u16 old_speed = slave->speed;
3526 u16 old_duplex = slave->duplex;
3527
3528 bond_update_speed_duplex(slave);
3529
3530 if (bond_is_lb(bond))
3531 break;
3532
3533 if (old_speed != slave->speed)
3534 bond_3ad_adapter_speed_changed(slave);
3535 if (old_duplex != slave->duplex)
3536 bond_3ad_adapter_duplex_changed(slave);
3537 }
3538 }
3539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 break;
3541 case NETDEV_DOWN:
3542 /*
3543 * ... Or is it this?
3544 */
3545 break;
3546 case NETDEV_CHANGEMTU:
3547 /*
3548 * TODO: Should slaves be allowed to
3549 * independently alter their MTU? For
3550 * an active-backup bond, slaves need
3551 * not be the same type of device, so
3552 * MTUs may vary. For other modes,
3553 * slaves arguably should have the
3554 * same MTUs. To do this, we'd need to
3555 * take over the slave's change_mtu
3556 * function for the duration of their
3557 * servitude.
3558 */
3559 break;
3560 case NETDEV_CHANGENAME:
3561 /*
3562 * TODO: handle changing the primary's name
3563 */
3564 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003565 case NETDEV_FEAT_CHANGE:
3566 bond_compute_features(bond);
3567 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 default:
3569 break;
3570 }
3571
3572 return NOTIFY_DONE;
3573}
3574
3575/*
3576 * bond_netdev_event: handle netdev notifier chain events.
3577 *
3578 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003579 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 * locks for us to safely manipulate the slave devices (RTNL lock,
3581 * dev_probe_lock).
3582 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003583static int bond_netdev_event(struct notifier_block *this,
3584 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585{
3586 struct net_device *event_dev = (struct net_device *)ptr;
3587
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003588 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003589 event_dev ? event_dev->name : "None",
3590 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003592 if (!(event_dev->priv_flags & IFF_BONDING))
3593 return NOTIFY_DONE;
3594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003596 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 return bond_master_netdev_event(event, event_dev);
3598 }
3599
3600 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003601 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 return bond_slave_netdev_event(event, event_dev);
3603 }
3604
3605 return NOTIFY_DONE;
3606}
3607
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003608/*
3609 * bond_inetaddr_event: handle inetaddr notifier chain events.
3610 *
3611 * We keep track of device IPs primarily to use as source addresses in
3612 * ARP monitor probes (rather than spewing out broadcasts all the time).
3613 *
3614 * We track one IP for the main device (if it has one), plus one per VLAN.
3615 */
3616static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3617{
3618 struct in_ifaddr *ifa = ptr;
3619 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003620 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003621 struct bonding *bond;
3622 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003623
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003624 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003625 if (bond->dev == event_dev) {
3626 switch (event) {
3627 case NETDEV_UP:
3628 bond->master_ip = ifa->ifa_local;
3629 return NOTIFY_OK;
3630 case NETDEV_DOWN:
3631 bond->master_ip = bond_glean_dev_ip(bond->dev);
3632 return NOTIFY_OK;
3633 default:
3634 return NOTIFY_DONE;
3635 }
3636 }
3637
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003638 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003639 if (!bond->vlgrp)
3640 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003641 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003642 if (vlan_dev == event_dev) {
3643 switch (event) {
3644 case NETDEV_UP:
3645 vlan->vlan_ip = ifa->ifa_local;
3646 return NOTIFY_OK;
3647 case NETDEV_DOWN:
3648 vlan->vlan_ip =
3649 bond_glean_dev_ip(vlan_dev);
3650 return NOTIFY_OK;
3651 default:
3652 return NOTIFY_DONE;
3653 }
3654 }
3655 }
3656 }
3657 return NOTIFY_DONE;
3658}
3659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660static struct notifier_block bond_netdev_notifier = {
3661 .notifier_call = bond_netdev_event,
3662};
3663
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003664static struct notifier_block bond_inetaddr_notifier = {
3665 .notifier_call = bond_inetaddr_event,
3666};
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668/*-------------------------- Packet type handling ---------------------------*/
3669
3670/* register to receive lacpdus on a bond */
3671static void bond_register_lacpdu(struct bonding *bond)
3672{
3673 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3674
3675 /* initialize packet type */
3676 pk_type->type = PKT_TYPE_LACPDU;
3677 pk_type->dev = bond->dev;
3678 pk_type->func = bond_3ad_lacpdu_recv;
3679
3680 dev_add_pack(pk_type);
3681}
3682
3683/* unregister to receive lacpdus on a bond */
3684static void bond_unregister_lacpdu(struct bonding *bond)
3685{
3686 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3687}
3688
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003689void bond_register_arp(struct bonding *bond)
3690{
3691 struct packet_type *pt = &bond->arp_mon_pt;
3692
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003693 if (pt->type)
3694 return;
3695
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003696 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003697 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003698 pt->func = bond_arp_rcv;
3699 dev_add_pack(pt);
3700}
3701
3702void bond_unregister_arp(struct bonding *bond)
3703{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003704 struct packet_type *pt = &bond->arp_mon_pt;
3705
3706 dev_remove_pack(pt);
3707 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003708}
3709
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003710/*---------------------------- Hashing Policies -----------------------------*/
3711
3712/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003713 * Hash for the output device based upon layer 2 and layer 3 data. If
3714 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3715 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003716static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003717{
3718 struct ethhdr *data = (struct ethhdr *)skb->data;
3719 struct iphdr *iph = ip_hdr(skb);
3720
Brian Haleyf14c4e42008-09-02 10:08:08 -04003721 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003722 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003723 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003724 }
3725
Jasper Spaansd3da6832009-10-23 04:08:46 +00003726 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003727}
3728
3729/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003730 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003731 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3732 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3733 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003734static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003735{
3736 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003737 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003738 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003739 int layer4_xor = 0;
3740
Brian Haleyf14c4e42008-09-02 10:08:08 -04003741 if (skb->protocol == htons(ETH_P_IP)) {
3742 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003743 (iph->protocol == IPPROTO_TCP ||
3744 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003745 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003746 }
3747 return (layer4_xor ^
3748 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3749
3750 }
3751
Jasper Spaansd3da6832009-10-23 04:08:46 +00003752 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003753}
3754
3755/*
3756 * Hash for the output device based upon layer 2 data
3757 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003758static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003759{
3760 struct ethhdr *data = (struct ethhdr *)skb->data;
3761
Jasper Spaansd3da6832009-10-23 04:08:46 +00003762 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003763}
3764
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765/*-------------------------- Device entry points ----------------------------*/
3766
3767static int bond_open(struct net_device *bond_dev)
3768{
Wang Chen454d7c92008-11-12 23:37:49 -08003769 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
3771 bond->kill_timers = 0;
3772
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003773 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3774
Holger Eitzenberger58402052008-12-09 23:07:13 -08003775 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 /* bond_alb_initialize must be called before the timer
3777 * is started.
3778 */
3779 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3780 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003781 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
3783
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003784 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3785 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 }
3787
3788 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003789 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3790 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 }
3792
3793 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003794 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3795 INIT_DELAYED_WORK(&bond->arp_work,
3796 bond_activebackup_arp_mon);
3797 else
3798 INIT_DELAYED_WORK(&bond->arp_work,
3799 bond_loadbalance_arp_mon);
3800
3801 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003802 if (bond->params.arp_validate)
3803 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 }
3805
3806 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003807 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003808 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 /* register to receive LACPDUs */
3810 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003811 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 }
3813
3814 return 0;
3815}
3816
3817static int bond_close(struct net_device *bond_dev)
3818{
Wang Chen454d7c92008-11-12 23:37:49 -08003819 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820
3821 if (bond->params.mode == BOND_MODE_8023AD) {
3822 /* Unregister the receive of LACPDUs */
3823 bond_unregister_lacpdu(bond);
3824 }
3825
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003826 if (bond->params.arp_validate)
3827 bond_unregister_arp(bond);
3828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 write_lock_bh(&bond->lock);
3830
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003831 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003832 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
3834 /* signal timers not to re-arm */
3835 bond->kill_timers = 1;
3836
3837 write_unlock_bh(&bond->lock);
3838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003840 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 }
3842
3843 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003844 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 }
3846
3847 switch (bond->params.mode) {
3848 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003849 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 break;
3851 case BOND_MODE_TLB:
3852 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003853 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 break;
3855 default:
3856 break;
3857 }
3858
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003859 if (delayed_work_pending(&bond->mcast_work))
3860 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Holger Eitzenberger58402052008-12-09 23:07:13 -08003862 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 /* Must be called only after all
3864 * slaves have been released
3865 */
3866 bond_alb_deinitialize(bond);
3867 }
3868
3869 return 0;
3870}
3871
Eric Dumazet28172732010-07-07 14:58:56 -07003872static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3873 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874{
Wang Chen454d7c92008-11-12 23:37:49 -08003875 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003876 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 struct slave *slave;
3878 int i;
3879
Eric Dumazet28172732010-07-07 14:58:56 -07003880 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
3882 read_lock_bh(&bond->lock);
3883
3884 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003885 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003886 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003887
Eric Dumazet28172732010-07-07 14:58:56 -07003888 stats->rx_packets += sstats->rx_packets;
3889 stats->rx_bytes += sstats->rx_bytes;
3890 stats->rx_errors += sstats->rx_errors;
3891 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Eric Dumazet28172732010-07-07 14:58:56 -07003893 stats->tx_packets += sstats->tx_packets;
3894 stats->tx_bytes += sstats->tx_bytes;
3895 stats->tx_errors += sstats->tx_errors;
3896 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Eric Dumazet28172732010-07-07 14:58:56 -07003898 stats->multicast += sstats->multicast;
3899 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
Eric Dumazet28172732010-07-07 14:58:56 -07003901 stats->rx_length_errors += sstats->rx_length_errors;
3902 stats->rx_over_errors += sstats->rx_over_errors;
3903 stats->rx_crc_errors += sstats->rx_crc_errors;
3904 stats->rx_frame_errors += sstats->rx_frame_errors;
3905 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3906 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Eric Dumazet28172732010-07-07 14:58:56 -07003908 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3909 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3910 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3911 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3912 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 }
3914
3915 read_unlock_bh(&bond->lock);
3916
3917 return stats;
3918}
3919
3920static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3921{
3922 struct net_device *slave_dev = NULL;
3923 struct ifbond k_binfo;
3924 struct ifbond __user *u_binfo = NULL;
3925 struct ifslave k_sinfo;
3926 struct ifslave __user *u_sinfo = NULL;
3927 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 int res = 0;
3929
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003930 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
3932 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 case SIOCGMIIPHY:
3934 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003935 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003937
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 mii->phy_id = 0;
3939 /* Fall Through */
3940 case SIOCGMIIREG:
3941 /*
3942 * We do this again just in case we were called by SIOCGMIIREG
3943 * instead of SIOCGMIIPHY.
3944 */
3945 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003946 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
3950 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003951 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003953 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003955 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003957
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003959 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 }
3961
3962 return 0;
3963 case BOND_INFO_QUERY_OLD:
3964 case SIOCBONDINFOQUERY:
3965 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3966
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003967 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
3970 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003971 if (res == 0 &&
3972 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3973 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
3975 return res;
3976 case BOND_SLAVE_INFO_QUERY_OLD:
3977 case SIOCBONDSLAVEINFOQUERY:
3978 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3979
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003980 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
3983 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003984 if (res == 0 &&
3985 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3986 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
3988 return res;
3989 default:
3990 /* Go on */
3991 break;
3992 }
3993
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003994 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003997 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003999 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004001 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004003 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004004 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 switch (cmd) {
4006 case BOND_ENSLAVE_OLD:
4007 case SIOCBONDENSLAVE:
4008 res = bond_enslave(bond_dev, slave_dev);
4009 break;
4010 case BOND_RELEASE_OLD:
4011 case SIOCBONDRELEASE:
4012 res = bond_release(bond_dev, slave_dev);
4013 break;
4014 case BOND_SETHWADDR_OLD:
4015 case SIOCBONDSETHWADDR:
4016 res = bond_sethwaddr(bond_dev, slave_dev);
4017 break;
4018 case BOND_CHANGE_ACTIVE_OLD:
4019 case SIOCBONDCHANGEACTIVE:
4020 res = bond_ioctl_change_active(bond_dev, slave_dev);
4021 break;
4022 default:
4023 res = -EOPNOTSUPP;
4024 }
4025
4026 dev_put(slave_dev);
4027 }
4028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 return res;
4030}
4031
Jiri Pirko22bedad32010-04-01 21:22:57 +00004032static bool bond_addr_in_mc_list(unsigned char *addr,
4033 struct netdev_hw_addr_list *list,
4034 int addrlen)
4035{
4036 struct netdev_hw_addr *ha;
4037
4038 netdev_hw_addr_list_for_each(ha, list)
4039 if (!memcmp(ha->addr, addr, addrlen))
4040 return true;
4041
4042 return false;
4043}
4044
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045static void bond_set_multicast_list(struct net_device *bond_dev)
4046{
Wang Chen454d7c92008-11-12 23:37:49 -08004047 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004048 struct netdev_hw_addr *ha;
4049 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 /*
4052 * Do promisc before checking multicast_mode
4053 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004054 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004055 /*
4056 * FIXME: Need to handle the error when one of the multi-slaves
4057 * encounters error.
4058 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004061
4062 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
4066 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004067 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
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_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004074
4075 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004079 read_lock(&bond->lock);
4080
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 bond->flags = bond_dev->flags;
4082
4083 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004084 netdev_for_each_mc_addr(ha, bond_dev) {
4085 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4086 bond_dev->addr_len);
4087 if (!found)
4088 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 }
4090
4091 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004092 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4093 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4094 bond_dev->addr_len);
4095 if (!found)
4096 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 }
4098
4099 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004100 __hw_addr_flush(&bond->mc_list);
4101 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4102 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004104 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105}
4106
Stephen Hemminger00829822008-11-20 20:14:53 -08004107static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4108{
4109 struct bonding *bond = netdev_priv(dev);
4110 struct slave *slave = bond->first_slave;
4111
4112 if (slave) {
4113 const struct net_device_ops *slave_ops
4114 = slave->dev->netdev_ops;
4115 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004116 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004117 }
4118 return 0;
4119}
4120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121/*
4122 * Change the MTU of all of a master's slaves to match the master
4123 */
4124static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4125{
Wang Chen454d7c92008-11-12 23:37:49 -08004126 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 struct slave *slave, *stop_at;
4128 int res = 0;
4129 int i;
4130
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004131 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004132 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
4134 /* Can't hold bond->lock with bh disabled here since
4135 * some base drivers panic. On the other hand we can't
4136 * hold bond->lock without bh disabled because we'll
4137 * deadlock. The only solution is to rely on the fact
4138 * that we're under rtnl_lock here, and the slaves
4139 * list won't change. This doesn't solve the problem
4140 * of setting the slave's MTU while it is
4141 * transmitting, but the assumption is that the base
4142 * driver can handle that.
4143 *
4144 * TODO: figure out a way to safely iterate the slaves
4145 * list, but without holding a lock around the actual
4146 * call to the base driver.
4147 */
4148
4149 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004150 pr_debug("s %p s->p %p c_m %p\n",
4151 slave,
4152 slave->prev,
4153 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004154
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 res = dev_set_mtu(slave->dev, new_mtu);
4156
4157 if (res) {
4158 /* If we failed to set the slave's mtu to the new value
4159 * we must abort the operation even in ACTIVE_BACKUP
4160 * mode, because if we allow the backup slaves to have
4161 * different mtu values than the active slave we'll
4162 * need to change their mtu when doing a failover. That
4163 * means changing their mtu from timer context, which
4164 * is probably not a good idea.
4165 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004166 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 goto unwind;
4168 }
4169 }
4170
4171 bond_dev->mtu = new_mtu;
4172
4173 return 0;
4174
4175unwind:
4176 /* unwind from head to the slave that failed */
4177 stop_at = slave;
4178 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4179 int tmp_res;
4180
4181 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4182 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004183 pr_debug("unwind err %d dev %s\n",
4184 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 }
4186 }
4187
4188 return res;
4189}
4190
4191/*
4192 * Change HW address
4193 *
4194 * Note that many devices must be down to change the HW address, and
4195 * downing the master releases all slaves. We can make bonds full of
4196 * bonding devices to test this, however.
4197 */
4198static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4199{
Wang Chen454d7c92008-11-12 23:37:49 -08004200 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 struct sockaddr *sa = addr, tmp_sa;
4202 struct slave *slave, *stop_at;
4203 int res = 0;
4204 int i;
4205
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004206 if (bond->params.mode == BOND_MODE_ALB)
4207 return bond_alb_set_mac_address(bond_dev, addr);
4208
4209
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004210 pr_debug("bond=%p, name=%s\n",
4211 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Jay Vosburghdd957c52007-10-09 19:57:24 -07004213 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004214 * If fail_over_mac is set to active, do nothing and return
4215 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004216 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004217 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004218 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004219
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004220 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
4223 /* Can't hold bond->lock with bh disabled here since
4224 * some base drivers panic. On the other hand we can't
4225 * hold bond->lock without bh disabled because we'll
4226 * deadlock. The only solution is to rely on the fact
4227 * that we're under rtnl_lock here, and the slaves
4228 * list won't change. This doesn't solve the problem
4229 * of setting the slave's hw address while it is
4230 * transmitting, but the assumption is that the base
4231 * driver can handle that.
4232 *
4233 * TODO: figure out a way to safely iterate the slaves
4234 * list, but without holding a lock around the actual
4235 * call to the base driver.
4236 */
4237
4238 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004239 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004240 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004242 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004244 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 goto unwind;
4246 }
4247
4248 res = dev_set_mac_address(slave->dev, addr);
4249 if (res) {
4250 /* TODO: consider downing the slave
4251 * and retry ?
4252 * User should expect communications
4253 * breakage anyway until ARP finish
4254 * updating, so...
4255 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004256 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 goto unwind;
4258 }
4259 }
4260
4261 /* success */
4262 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4263 return 0;
4264
4265unwind:
4266 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4267 tmp_sa.sa_family = bond_dev->type;
4268
4269 /* unwind from head to the slave that failed */
4270 stop_at = slave;
4271 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4272 int tmp_res;
4273
4274 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4275 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004276 pr_debug("unwind err %d dev %s\n",
4277 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 }
4279 }
4280
4281 return res;
4282}
4283
4284static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4285{
Wang Chen454d7c92008-11-12 23:37:49 -08004286 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004288 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004289 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
4291 read_lock(&bond->lock);
4292
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004293 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004295 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004296 * Start with the curr_active_slave that joined the bond as the
4297 * default for sending IGMP traffic. For failover purposes one
4298 * needs to maintain some consistency for the interface that will
4299 * send the join/membership reports. The curr_active_slave found
4300 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004301 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004302 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004303 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004305 read_lock(&bond->curr_slave_lock);
4306 slave = bond->curr_active_slave;
4307 read_unlock(&bond->curr_slave_lock);
4308
4309 if (!slave)
4310 goto out;
4311 } else {
4312 /*
4313 * Concurrent TX may collide on rr_tx_counter; we accept
4314 * that as being rare enough not to justify using an
4315 * atomic op here.
4316 */
4317 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4318
4319 bond_for_each_slave(bond, slave, i) {
4320 slave_no--;
4321 if (slave_no < 0)
4322 break;
4323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 }
4325
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004326 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 bond_for_each_slave_from(bond, slave, i, start_at) {
4328 if (IS_UP(slave->dev) &&
4329 (slave->link == BOND_LINK_UP) &&
4330 (slave->state == BOND_STATE_ACTIVE)) {
4331 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 break;
4333 }
4334 }
4335
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336out:
4337 if (res) {
4338 /* no suitable interface, frame not sent */
4339 dev_kfree_skb(skb);
4340 }
4341 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004342 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343}
4344
John W. Linville075897c2005-09-28 17:50:53 -04004345
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346/*
4347 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4348 * the bond has a usable interface.
4349 */
4350static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4351{
Wang Chen454d7c92008-11-12 23:37:49 -08004352 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 int res = 1;
4354
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 read_lock(&bond->lock);
4356 read_lock(&bond->curr_slave_lock);
4357
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004358 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
John W. Linville075897c2005-09-28 17:50:53 -04004361 if (!bond->curr_active_slave)
4362 goto out;
4363
John W. Linville075897c2005-09-28 17:50:53 -04004364 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4365
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004367 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 /* no suitable interface, frame not sent */
4369 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 read_unlock(&bond->curr_slave_lock);
4372 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004373 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374}
4375
4376/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004377 * In bond_xmit_xor() , we determine the output device by using a pre-
4378 * determined xmit_hash_policy(), If the selected device is not enabled,
4379 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 */
4381static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4382{
Wang Chen454d7c92008-11-12 23:37:49 -08004383 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 struct slave *slave, *start_at;
4385 int slave_no;
4386 int i;
4387 int res = 1;
4388
4389 read_lock(&bond->lock);
4390
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004391 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
Jasper Spaansa361c832009-10-23 04:09:24 +00004394 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396 bond_for_each_slave(bond, slave, i) {
4397 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004398 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 }
4401
4402 start_at = slave;
4403
4404 bond_for_each_slave_from(bond, slave, i, start_at) {
4405 if (IS_UP(slave->dev) &&
4406 (slave->link == BOND_LINK_UP) &&
4407 (slave->state == BOND_STATE_ACTIVE)) {
4408 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4409 break;
4410 }
4411 }
4412
4413out:
4414 if (res) {
4415 /* no suitable interface, frame not sent */
4416 dev_kfree_skb(skb);
4417 }
4418 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004419 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420}
4421
4422/*
4423 * in broadcast mode, we send everything to all usable interfaces.
4424 */
4425static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4426{
Wang Chen454d7c92008-11-12 23:37:49 -08004427 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 struct slave *slave, *start_at;
4429 struct net_device *tx_dev = NULL;
4430 int i;
4431 int res = 1;
4432
4433 read_lock(&bond->lock);
4434
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004435 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
4438 read_lock(&bond->curr_slave_lock);
4439 start_at = bond->curr_active_slave;
4440 read_unlock(&bond->curr_slave_lock);
4441
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004442 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
4445 bond_for_each_slave_from(bond, slave, i, start_at) {
4446 if (IS_UP(slave->dev) &&
4447 (slave->link == BOND_LINK_UP) &&
4448 (slave->state == BOND_STATE_ACTIVE)) {
4449 if (tx_dev) {
4450 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4451 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004452 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004453 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 continue;
4455 }
4456
4457 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4458 if (res) {
4459 dev_kfree_skb(skb2);
4460 continue;
4461 }
4462 }
4463 tx_dev = slave->dev;
4464 }
4465 }
4466
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004467 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
4470out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004471 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 /* no suitable interface, frame not sent */
4473 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004474
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 /* frame sent to all suitable interfaces */
4476 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004477 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478}
4479
4480/*------------------------- Device initialization ---------------------------*/
4481
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004482static void bond_set_xmit_hash_policy(struct bonding *bond)
4483{
4484 switch (bond->params.xmit_policy) {
4485 case BOND_XMIT_POLICY_LAYER23:
4486 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4487 break;
4488 case BOND_XMIT_POLICY_LAYER34:
4489 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4490 break;
4491 case BOND_XMIT_POLICY_LAYER2:
4492 default:
4493 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4494 break;
4495 }
4496}
4497
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004498/*
4499 * Lookup the slave that corresponds to a qid
4500 */
4501static inline int bond_slave_override(struct bonding *bond,
4502 struct sk_buff *skb)
4503{
4504 int i, res = 1;
4505 struct slave *slave = NULL;
4506 struct slave *check_slave;
4507
4508 read_lock(&bond->lock);
4509
4510 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4511 goto out;
4512
4513 /* Find out if any slaves have the same mapping as this skb. */
4514 bond_for_each_slave(bond, check_slave, i) {
4515 if (check_slave->queue_id == skb->queue_mapping) {
4516 slave = check_slave;
4517 break;
4518 }
4519 }
4520
4521 /* If the slave isn't UP, use default transmit policy. */
4522 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4523 (slave->link == BOND_LINK_UP)) {
4524 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4525 }
4526
4527out:
4528 read_unlock(&bond->lock);
4529 return res;
4530}
4531
4532static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4533{
4534 /*
4535 * This helper function exists to help dev_pick_tx get the correct
4536 * destination queue. Using a helper function skips the a call to
4537 * skb_tx_hash and will put the skbs in the queue we expect on their
4538 * way down to the bonding driver.
4539 */
4540 return skb->queue_mapping;
4541}
4542
Stephen Hemminger424efe92009-08-31 19:50:51 +00004543static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004544{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004545 struct bonding *bond = netdev_priv(dev);
4546
Neil Hormane843fa52010-10-13 16:01:50 +00004547 /*
4548 * If we risk deadlock from transmitting this in the
4549 * netpoll path, tell netpoll to queue the frame for later tx
4550 */
4551 if (is_netpoll_tx_blocked(dev))
4552 return NETDEV_TX_BUSY;
4553
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004554 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4555 if (!bond_slave_override(bond, skb))
4556 return NETDEV_TX_OK;
4557 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004558
4559 switch (bond->params.mode) {
4560 case BOND_MODE_ROUNDROBIN:
4561 return bond_xmit_roundrobin(skb, dev);
4562 case BOND_MODE_ACTIVEBACKUP:
4563 return bond_xmit_activebackup(skb, dev);
4564 case BOND_MODE_XOR:
4565 return bond_xmit_xor(skb, dev);
4566 case BOND_MODE_BROADCAST:
4567 return bond_xmit_broadcast(skb, dev);
4568 case BOND_MODE_8023AD:
4569 return bond_3ad_xmit_xor(skb, dev);
4570 case BOND_MODE_ALB:
4571 case BOND_MODE_TLB:
4572 return bond_alb_xmit(skb, dev);
4573 default:
4574 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004575 pr_err("%s: Error: Unknown bonding mode %d\n",
4576 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004577 WARN_ON_ONCE(1);
4578 dev_kfree_skb(skb);
4579 return NETDEV_TX_OK;
4580 }
4581}
4582
4583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584/*
4585 * set bond mode specific net device operations
4586 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004587void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004589 struct net_device *bond_dev = bond->dev;
4590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 switch (mode) {
4592 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 break;
4594 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 break;
4596 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004597 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 break;
4599 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 break;
4601 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004602 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004603 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004606 bond_set_master_alb_flags(bond);
4607 /* FALLTHRU */
4608 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 break;
4610 default:
4611 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004612 pr_err("%s: Error: Unknown bonding mode %d\n",
4613 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 break;
4615 }
4616}
4617
Jay Vosburgh217df672005-09-26 16:11:50 -07004618static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4619 struct ethtool_drvinfo *drvinfo)
4620{
4621 strncpy(drvinfo->driver, DRV_NAME, 32);
4622 strncpy(drvinfo->version, DRV_VERSION, 32);
4623 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4624}
4625
Jeff Garzik7282d492006-09-13 14:30:00 -04004626static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004627 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004628 .get_link = ethtool_op_get_link,
4629 .get_tx_csum = ethtool_op_get_tx_csum,
4630 .get_sg = ethtool_op_get_sg,
4631 .get_tso = ethtool_op_get_tso,
4632 .get_ufo = ethtool_op_get_ufo,
4633 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004634};
4635
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004636static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004637 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004638 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004639 .ndo_open = bond_open,
4640 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004641 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004642 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004643 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004644 .ndo_do_ioctl = bond_do_ioctl,
4645 .ndo_set_multicast_list = bond_set_multicast_list,
4646 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004647 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004648 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004649 .ndo_vlan_rx_register = bond_vlan_rx_register,
4650 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4651 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004652#ifdef CONFIG_NET_POLL_CONTROLLER
4653 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4654 .ndo_poll_controller = bond_poll_controller,
4655#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004656};
4657
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004658static void bond_destructor(struct net_device *bond_dev)
4659{
4660 struct bonding *bond = netdev_priv(bond_dev);
4661 if (bond->wq)
4662 destroy_workqueue(bond->wq);
4663 free_netdev(bond_dev);
4664}
4665
Stephen Hemminger181470f2009-06-12 19:02:52 +00004666static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667{
Wang Chen454d7c92008-11-12 23:37:49 -08004668 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 /* initialize rwlocks */
4671 rwlock_init(&bond->lock);
4672 rwlock_init(&bond->curr_slave_lock);
4673
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004674 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
4676 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 bond->dev = bond_dev;
4678 INIT_LIST_HEAD(&bond->vlan_list);
4679
4680 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004681 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004682 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004683 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004684 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004686 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687
4688 /* Initialize the device options */
4689 bond_dev->tx_queue_len = 0;
4690 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004691 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004692 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4693
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004694 if (bond->params.arp_interval)
4695 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
4697 /* At first, we block adding VLANs. That's the only way to
4698 * prevent problems that occur when adding VLANs over an
4699 * empty bond. The block will be removed once non-challenged
4700 * slaves are enslaved.
4701 */
4702 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4703
Herbert Xu932ff272006-06-09 12:20:56 -07004704 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 * transmitting */
4706 bond_dev->features |= NETIF_F_LLTX;
4707
4708 /* By default, we declare the bond to be fully
4709 * VLAN hardware accelerated capable. Special
4710 * care is taken in the various xmit functions
4711 * when there are slaves that are not hw accel
4712 * capable
4713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4715 NETIF_F_HW_VLAN_RX |
4716 NETIF_F_HW_VLAN_FILTER);
4717
Eric Dumazete6599c22010-09-17 09:25:07 +00004718 /* By default, we enable GRO on bonding devices.
4719 * Actual support requires lowlevel drivers are GRO ready.
4720 */
4721 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722}
4723
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004724static void bond_work_cancel_all(struct bonding *bond)
4725{
4726 write_lock_bh(&bond->lock);
4727 bond->kill_timers = 1;
4728 write_unlock_bh(&bond->lock);
4729
4730 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4731 cancel_delayed_work(&bond->mii_work);
4732
4733 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4734 cancel_delayed_work(&bond->arp_work);
4735
4736 if (bond->params.mode == BOND_MODE_ALB &&
4737 delayed_work_pending(&bond->alb_work))
4738 cancel_delayed_work(&bond->alb_work);
4739
4740 if (bond->params.mode == BOND_MODE_8023AD &&
4741 delayed_work_pending(&bond->ad_work))
4742 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004743
4744 if (delayed_work_pending(&bond->mcast_work))
4745 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004746}
4747
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004748/*
4749* Destroy a bonding device.
4750* Must be under rtnl_lock when this function is called.
4751*/
4752static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004753{
Wang Chen454d7c92008-11-12 23:37:49 -08004754 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004755 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004756
WANG Congf6dc31a2010-05-06 00:48:51 -07004757 bond_netpoll_cleanup(bond_dev);
4758
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004759 /* Release the bonded slaves */
4760 bond_release_all(bond_dev);
4761
Jay Vosburgha434e432008-10-30 17:41:15 -07004762 list_del(&bond->bond_list);
4763
4764 bond_work_cancel_all(bond);
4765
Jay Vosburgha434e432008-10-30 17:41:15 -07004766 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004767
Taku Izumif073c7c2010-12-09 15:17:13 +00004768 bond_debug_unregister(bond);
4769
Jiri Pirko22bedad32010-04-01 21:22:57 +00004770 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004771
4772 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4773 list_del(&vlan->vlan_list);
4774 kfree(vlan);
4775 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004776}
4777
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778/*------------------------- Module initialization ---------------------------*/
4779
4780/*
4781 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004782 * number of the mode or its string name. A bit complicated because
4783 * some mode names are substrings of other names, and calls from sysfs
4784 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004786int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787{
Hannes Eder54b87322009-02-14 11:15:49 +00004788 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004789 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004790
Jay Vosburgha42e5342008-01-29 18:07:43 -08004791 for (p = (char *)buf; *p; p++)
4792 if (!(isdigit(*p) || isspace(*p)))
4793 break;
4794
4795 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004796 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004797 else
Hannes Eder54b87322009-02-14 11:15:49 +00004798 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004799
4800 if (!rv)
4801 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802
4803 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004804 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004806 if (strcmp(modestr, tbl[i].modename) == 0)
4807 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 }
4809
4810 return -1;
4811}
4812
4813static int bond_check_params(struct bond_params *params)
4814{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004815 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004816
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 /*
4818 * Convert string parameters.
4819 */
4820 if (mode) {
4821 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4822 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004823 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 mode == NULL ? "NULL" : mode);
4825 return -EINVAL;
4826 }
4827 }
4828
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004829 if (xmit_hash_policy) {
4830 if ((bond_mode != BOND_MODE_XOR) &&
4831 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004832 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004833 bond_mode_name(bond_mode));
4834 } else {
4835 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4836 xmit_hashtype_tbl);
4837 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004838 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004839 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004840 xmit_hash_policy);
4841 return -EINVAL;
4842 }
4843 }
4844 }
4845
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 if (lacp_rate) {
4847 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004848 pr_info("lacp_rate param is irrelevant in mode %s\n",
4849 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 } else {
4851 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4852 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004853 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 lacp_rate == NULL ? "NULL" : lacp_rate);
4855 return -EINVAL;
4856 }
4857 }
4858 }
4859
Jay Vosburghfd989c82008-11-04 17:51:16 -08004860 if (ad_select) {
4861 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4862 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004863 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004864 ad_select == NULL ? "NULL" : ad_select);
4865 return -EINVAL;
4866 }
4867
4868 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004869 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004870 }
4871 } else {
4872 params->ad_select = BOND_AD_STABLE;
4873 }
4874
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004875 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004876 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4877 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 max_bonds = BOND_DEFAULT_MAX_BONDS;
4879 }
4880
4881 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004882 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4883 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 miimon = BOND_LINK_MON_INTERV;
4885 }
4886
4887 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004888 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4889 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 updelay = 0;
4891 }
4892
4893 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004894 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4895 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 downdelay = 0;
4897 }
4898
4899 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004900 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4901 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 use_carrier = 1;
4903 }
4904
Moni Shoua7893b242008-05-17 21:10:12 -07004905 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004906 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 -08004907 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004908 num_grat_arp = 1;
4909 }
4910
Brian Haley305d5522008-11-04 17:51:14 -08004911 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004912 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 -08004913 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004914 num_unsol_na = 1;
4915 }
4916
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917 /* reset values for 802.3ad */
4918 if (bond_mode == BOND_MODE_8023AD) {
4919 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004920 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 +00004921 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 miimon = 100;
4923 }
4924 }
4925
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004926 if (tx_queues < 1 || tx_queues > 255) {
4927 pr_warning("Warning: tx_queues (%d) should be between "
4928 "1 and 255, resetting to %d\n",
4929 tx_queues, BOND_DEFAULT_TX_QUEUES);
4930 tx_queues = BOND_DEFAULT_TX_QUEUES;
4931 }
4932
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004933 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4934 pr_warning("Warning: all_slaves_active module parameter (%d), "
4935 "not of valid value (0/1), so it was set to "
4936 "0\n", all_slaves_active);
4937 all_slaves_active = 0;
4938 }
4939
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004940 if (resend_igmp < 0 || resend_igmp > 255) {
4941 pr_warning("Warning: resend_igmp (%d) should be between "
4942 "0 and 255, resetting to %d\n",
4943 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4944 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4945 }
4946
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 /* reset values for TLB/ALB */
4948 if ((bond_mode == BOND_MODE_TLB) ||
4949 (bond_mode == BOND_MODE_ALB)) {
4950 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004951 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 +00004952 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 miimon = 100;
4954 }
4955 }
4956
4957 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004958 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",
4959 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 }
4961
4962 if (!miimon) {
4963 if (updelay || downdelay) {
4964 /* just warn the user the up/down delay will have
4965 * no effect since miimon is zero...
4966 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004967 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",
4968 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 }
4970 } else {
4971 /* don't allow arp monitoring */
4972 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004973 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4974 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 arp_interval = 0;
4976 }
4977
4978 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004979 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4980 updelay, miimon,
4981 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 }
4983
4984 updelay /= miimon;
4985
4986 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004987 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4988 downdelay, miimon,
4989 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 }
4991
4992 downdelay /= miimon;
4993 }
4994
4995 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004996 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4997 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 arp_interval = BOND_LINK_ARP_INTERV;
4999 }
5000
5001 for (arp_ip_count = 0;
5002 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5003 arp_ip_count++) {
5004 /* not complete check, but should be good enough to
5005 catch mistakes */
5006 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005007 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5008 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009 arp_interval = 0;
5010 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04005011 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 arp_target[arp_ip_count] = ip;
5013 }
5014 }
5015
5016 if (arp_interval && !arp_ip_count) {
5017 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005018 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5019 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 arp_interval = 0;
5021 }
5022
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005023 if (arp_validate) {
5024 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005025 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005026 return -EINVAL;
5027 }
5028 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005029 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005030 return -EINVAL;
5031 }
5032
5033 arp_validate_value = bond_parse_parm(arp_validate,
5034 arp_validate_tbl);
5035 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005036 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005037 arp_validate == NULL ? "NULL" : arp_validate);
5038 return -EINVAL;
5039 }
5040 } else
5041 arp_validate_value = 0;
5042
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005044 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 } else if (arp_interval) {
5046 int i;
5047
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005048 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5049 arp_interval,
5050 arp_validate_tbl[arp_validate_value].modename,
5051 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
5053 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005054 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005056 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
Jay Vosburghb8a97872008-06-13 18:12:04 -07005058 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 /* miimon and arp_interval not set, we need one so things
5060 * work as expected, see bonding.txt for details
5061 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005062 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 -07005063 }
5064
5065 if (primary && !USES_PRIMARY(bond_mode)) {
5066 /* currently, using a primary only makes sense
5067 * in active backup, TLB or ALB modes
5068 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005069 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5070 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 primary = NULL;
5072 }
5073
Jiri Pirkoa5499522009-09-25 03:28:09 +00005074 if (primary && primary_reselect) {
5075 primary_reselect_value = bond_parse_parm(primary_reselect,
5076 pri_reselect_tbl);
5077 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005078 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005079 primary_reselect ==
5080 NULL ? "NULL" : primary_reselect);
5081 return -EINVAL;
5082 }
5083 } else {
5084 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5085 }
5086
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005087 if (fail_over_mac) {
5088 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5089 fail_over_mac_tbl);
5090 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005091 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005092 arp_validate == NULL ? "NULL" : arp_validate);
5093 return -EINVAL;
5094 }
5095
5096 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005097 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005098 } else {
5099 fail_over_mac_value = BOND_FOM_NONE;
5100 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005101
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 /* fill params struct with the proper values */
5103 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005104 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005106 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005107 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005109 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 params->updelay = updelay;
5111 params->downdelay = downdelay;
5112 params->use_carrier = use_carrier;
5113 params->lacp_fast = lacp_fast;
5114 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005115 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005116 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005117 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005118 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00005119 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
5121 if (primary) {
5122 strncpy(params->primary, primary, IFNAMSIZ);
5123 params->primary[IFNAMSIZ - 1] = 0;
5124 }
5125
5126 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5127
5128 return 0;
5129}
5130
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005131static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005132static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005133
David S. Millere8a04642008-07-17 00:34:19 -07005134static void bond_set_lockdep_class_one(struct net_device *dev,
5135 struct netdev_queue *txq,
5136 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005137{
5138 lockdep_set_class(&txq->_xmit_lock,
5139 &bonding_netdev_xmit_lock_key);
5140}
5141
5142static void bond_set_lockdep_class(struct net_device *dev)
5143{
David S. Millercf508b12008-07-22 14:16:42 -07005144 lockdep_set_class(&dev->addr_list_lock,
5145 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005146 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005147}
5148
Stephen Hemminger181470f2009-06-12 19:02:52 +00005149/*
5150 * Called from registration process
5151 */
5152static int bond_init(struct net_device *bond_dev)
5153{
5154 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005155 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005156
5157 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5158
5159 bond->wq = create_singlethread_workqueue(bond_dev->name);
5160 if (!bond->wq)
5161 return -ENOMEM;
5162
5163 bond_set_lockdep_class(bond_dev);
5164
5165 netif_carrier_off(bond_dev);
5166
5167 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005168 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005169
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005170 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005171
Taku Izumif073c7c2010-12-09 15:17:13 +00005172 bond_debug_register(bond);
5173
Jiri Pirko22bedad32010-04-01 21:22:57 +00005174 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005175 return 0;
5176}
5177
Eric W. Biederman88ead972009-10-29 14:18:25 +00005178static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5179{
5180 if (tb[IFLA_ADDRESS]) {
5181 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5182 return -EINVAL;
5183 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5184 return -EADDRNOTAVAIL;
5185 }
5186 return 0;
5187}
5188
5189static struct rtnl_link_ops bond_link_ops __read_mostly = {
5190 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005191 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005192 .setup = bond_setup,
5193 .validate = bond_validate,
5194};
5195
Mitch Williamsdfe60392005-11-09 10:36:04 -08005196/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005197 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005198 * Caller must NOT hold rtnl_lock; we need to release it here before we
5199 * set up our sysfs entries.
5200 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005201int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005202{
5203 struct net_device *bond_dev;
5204 int res;
5205
5206 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005207
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005208 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5209 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005210 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005211 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005212 rtnl_unlock();
5213 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005214 }
5215
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005216 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005217 bond_dev->rtnl_link_ops = &bond_link_ops;
5218
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005219 if (!name) {
5220 res = dev_alloc_name(bond_dev, "bond%d");
5221 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005222 goto out;
Neil Horman27e6f062010-10-05 03:39:21 +00005223 } else {
5224 /*
5225 * If we're given a name to register
5226 * we need to ensure that its not already
5227 * registered
5228 */
5229 res = -EEXIST;
5230 if (__dev_get_by_name(net, name) != NULL)
5231 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005232 }
5233
Mitch Williamsdfe60392005-11-09 10:36:04 -08005234 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005235
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005236out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005237 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005238 if (res < 0)
5239 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005240 return res;
5241}
5242
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005243static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005244{
Eric W. Biederman15449742009-11-29 15:46:04 +00005245 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005246
5247 bn->net = net;
5248 INIT_LIST_HEAD(&bn->dev_list);
5249
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005250 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005251
5252 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005253}
5254
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005255static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005256{
Eric W. Biederman15449742009-11-29 15:46:04 +00005257 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005258
5259 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005260}
5261
5262static struct pernet_operations bond_net_ops = {
5263 .init = bond_net_init,
5264 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005265 .id = &bond_net_id,
5266 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005267};
5268
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269static int __init bonding_init(void)
5270{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 int i;
5272 int res;
5273
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005274 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Mitch Williamsdfe60392005-11-09 10:36:04 -08005276 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005277 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005278 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279
Eric W. Biederman15449742009-11-29 15:46:04 +00005280 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005281 if (res)
5282 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005283
Eric W. Biederman88ead972009-10-29 14:18:25 +00005284 res = rtnl_link_register(&bond_link_ops);
5285 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005286 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005287
Taku Izumif073c7c2010-12-09 15:17:13 +00005288 bond_create_debugfs();
5289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005291 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005292 if (res)
5293 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 }
5295
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005296 res = bond_create_sysfs();
5297 if (res)
5298 goto err;
5299
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005301 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005302 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005303out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005305err:
5306 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005307err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005308 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005309 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005310
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311}
5312
5313static void __exit bonding_exit(void)
5314{
5315 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005316 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005317 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005319 bond_destroy_sysfs();
Taku Izumif073c7c2010-12-09 15:17:13 +00005320 bond_destroy_debugfs();
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005321
Eric W. Biederman88ead972009-10-29 14:18:25 +00005322 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005323 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005324
5325#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +00005326 /*
5327 * Make sure we don't have an imbalance on our netpoll blocking
5328 */
5329 WARN_ON(atomic_read(&netpoll_block_tx));
Neil Hormane843fa52010-10-13 16:01:50 +00005330#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331}
5332
5333module_init(bonding_init);
5334module_exit(bonding_exit);
5335MODULE_LICENSE("GPL");
5336MODULE_VERSION(DRV_VERSION);
5337MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5338MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005339MODULE_ALIAS_RTNL_LINK("bond");