blob: 07011e42cec795a34ec3536f180be29e03be8375 [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
174cpumask_var_t netpoll_block_tx;
175#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
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000421 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * When the bond gets an skb to transmit that is
423 * already hardware accelerated VLAN tagged, and it
424 * needs to relay this skb to a slave that is not
425 * hw accel capable, the skb needs to be "unaccelerated",
426 * i.e. strip the hwaccel tag and re-insert it as part
427 * of the payload.
428 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000429int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
430 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700432 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Jay Vosburghf35188f2010-07-21 12:14:47 +0000434 /* Test vlan_list not vlgrp to catch and handle 802.1p tags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (!list_empty(&bond->vlan_list) &&
436 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
437 vlan_get_tag(skb, &vlan_id) == 0) {
438 skb->dev = slave_dev;
439 skb = vlan_put_tag(skb, vlan_id);
440 if (!skb) {
441 /* vlan_put_tag() frees the skb in case of error,
442 * so return success here so the calling functions
443 * won't attempt to free is again.
444 */
445 return 0;
446 }
447 } else {
448 skb->dev = slave_dev;
449 }
450
451 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700452#ifdef CONFIG_NET_POLL_CONTROLLER
453 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
454 struct netpoll *np = bond->dev->npinfo->netpoll;
455 slave_dev->npinfo = bond->dev->npinfo;
WANG Congf6dc31a2010-05-06 00:48:51 -0700456 slave_dev->priv_flags |= IFF_IN_NETPOLL;
Neil Hormanc2355e12010-10-13 16:01:49 +0000457 netpoll_send_skb_on_dev(np, skb, slave_dev);
WANG Congf6dc31a2010-05-06 00:48:51 -0700458 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -0700459 } else
460#endif
461 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 return 0;
464}
465
466/*
467 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
468 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
469 * lock because:
470 * a. This operation is performed in IOCTL context,
471 * b. The operation is protected by the RTNL semaphore in the 8021q code,
472 * c. Holding a lock with BH disabled while directly calling a base driver
473 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000474 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * The design of synchronization/protection for this operation in the 8021q
476 * module is good for one or more VLAN devices over a single physical device
477 * and cannot be extended for a teaming solution like bonding, so there is a
478 * potential race condition here where a net device from the vlan group might
479 * be referenced (either by a base driver or the 8021q code) while it is being
480 * removed from the system. However, it turns out we're not making matters
481 * worse, and if it works for regular VLAN usage it will work here too.
482*/
483
484/**
485 * bond_vlan_rx_register - Propagates registration to slaves
486 * @bond_dev: bonding net device that got called
487 * @grp: vlan group being registered
488 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000489static void bond_vlan_rx_register(struct net_device *bond_dev,
490 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Wang Chen454d7c92008-11-12 23:37:49 -0800492 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct slave *slave;
494 int i;
495
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000496 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 bond->vlgrp = grp;
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000498 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 bond_for_each_slave(bond, slave, i) {
501 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800502 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800505 slave_ops->ndo_vlan_rx_register) {
506 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 }
509}
510
511/**
512 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
513 * @bond_dev: bonding net device that got called
514 * @vid: vlan id being added
515 */
516static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
517{
Wang Chen454d7c92008-11-12 23:37:49 -0800518 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct slave *slave;
520 int i, res;
521
522 bond_for_each_slave(bond, slave, i) {
523 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800524 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800527 slave_ops->ndo_vlan_rx_add_vid) {
528 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 }
531
532 res = bond_add_vlan(bond, vid);
533 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800534 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 bond_dev->name, vid);
536 }
537}
538
539/**
540 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
541 * @bond_dev: bonding net device that got called
542 * @vid: vlan id being removed
543 */
544static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
545{
Wang Chen454d7c92008-11-12 23:37:49 -0800546 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct slave *slave;
548 struct net_device *vlan_dev;
549 int i, res;
550
551 bond_for_each_slave(bond, slave, i) {
552 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800553 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800556 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* Save and then restore vlan_dev in the grp array,
558 * since the slave's driver might clear it.
559 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800560 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800561 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800562 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 }
565
566 res = bond_del_vlan(bond, vid);
567 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800568 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 bond_dev->name, vid);
570 }
571}
572
573static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
574{
575 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800576 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jay Vosburghf35188f2010-07-21 12:14:47 +0000578 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000579 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800582 slave_ops->ndo_vlan_rx_register)
583 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800586 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000587 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
590 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000593static void bond_del_vlans_from_slave(struct bonding *bond,
594 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800596 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct vlan_entry *vlan;
598 struct net_device *vlan_dev;
599
Jay Vosburghf35188f2010-07-21 12:14:47 +0000600 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000601 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800604 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000608 if (!vlan->vlan_id)
609 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* Save and then restore vlan_dev in the grp array,
611 * since the slave's driver might clear it.
612 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800613 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800614 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800615 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618unreg:
619 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800620 slave_ops->ndo_vlan_rx_register)
621 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/*------------------------------- Link status -------------------------------*/
625
626/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800627 * Set the carrier state for the master according to the state of its
628 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
629 * do special 802.3ad magic.
630 *
631 * Returns zero if carrier state does not change, nonzero if it does.
632 */
633static int bond_set_carrier(struct bonding *bond)
634{
635 struct slave *slave;
636 int i;
637
638 if (bond->slave_cnt == 0)
639 goto down;
640
641 if (bond->params.mode == BOND_MODE_8023AD)
642 return bond_3ad_set_carrier(bond);
643
644 bond_for_each_slave(bond, slave, i) {
645 if (slave->link == BOND_LINK_UP) {
646 if (!netif_carrier_ok(bond->dev)) {
647 netif_carrier_on(bond->dev);
648 return 1;
649 }
650 return 0;
651 }
652 }
653
654down:
655 if (netif_carrier_ok(bond->dev)) {
656 netif_carrier_off(bond->dev);
657 return 1;
658 }
659 return 0;
660}
661
662/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * Get link speed and duplex from the slave's base driver
664 * using ethtool. If for some reason the call fails or the
665 * values are invalid, fake speed and duplex to 100/Full
666 * and return error.
667 */
668static int bond_update_speed_duplex(struct slave *slave)
669{
670 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700672 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /* Fake speed and duplex */
675 slave->speed = SPEED_100;
676 slave->duplex = DUPLEX_FULL;
677
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700678 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700681 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
682 if (res < 0)
683 return -1;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 switch (etool.speed) {
686 case SPEED_10:
687 case SPEED_100:
688 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700689 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
691 default:
692 return -1;
693 }
694
695 switch (etool.duplex) {
696 case DUPLEX_FULL:
697 case DUPLEX_HALF:
698 break;
699 default:
700 return -1;
701 }
702
703 slave->speed = etool.speed;
704 slave->duplex = etool.duplex;
705
706 return 0;
707}
708
709/*
710 * if <dev> supports MII link status reporting, check its link status.
711 *
712 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000713 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *
715 * Return either BMSR_LSTATUS, meaning that the link is up (or we
716 * can't tell and just pretend it is), or 0, meaning that the link is
717 * down.
718 *
719 * If reporting is non-zero, instead of faking link up, return -1 if
720 * both ETHTOOL and MII ioctls fail (meaning the device does not
721 * support them). If use_carrier is set, return whatever it says.
722 * It'd be nice if there was a good way to tell if a driver supports
723 * netif_carrier, but there really isn't.
724 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000725static int bond_check_dev_link(struct bonding *bond,
726 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800728 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700729 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 struct ifreq ifr;
731 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Petri Gynther6c988852009-08-28 12:05:15 +0000733 if (!reporting && !netif_running(slave_dev))
734 return 0;
735
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800736 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Jiri Pirko29112f42009-04-24 01:58:23 +0000739 /* Try to get link status using Ethtool first. */
740 if (slave_dev->ethtool_ops) {
741 if (slave_dev->ethtool_ops->get_link) {
742 u32 link;
743
744 link = slave_dev->ethtool_ops->get_link(slave_dev);
745
746 return link ? BMSR_LSTATUS : 0;
747 }
748 }
749
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000750 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800751 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (ioctl) {
753 /* TODO: set pointer to correct ioctl on a per team member */
754 /* bases to make this more efficient. that is, once */
755 /* we determine the correct ioctl, we will always */
756 /* call it and not the others for that team */
757 /* member. */
758
759 /*
760 * We cannot assume that SIOCGMIIPHY will also read a
761 * register; not all network drivers (e.g., e100)
762 * support that.
763 */
764
765 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
766 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
767 mii = if_mii(&ifr);
768 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
769 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000770 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
771 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 }
774
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700775 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700777 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * cannot report link status). If not reporting, pretend
779 * we're ok.
780 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000781 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784/*----------------------------- Multicast list ------------------------------*/
785
786/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * Push the promiscuity flag down to appropriate slaves
788 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700789static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700791 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (USES_PRIMARY(bond->params.mode)) {
793 /* write lock already acquired */
794 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700795 err = dev_set_promiscuity(bond->curr_active_slave->dev,
796 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 } else {
799 struct slave *slave;
800 int i;
801 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700802 err = dev_set_promiscuity(slave->dev, inc);
803 if (err)
804 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700807 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810/*
811 * Push the allmulti flag down to all slaves
812 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700813static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700815 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (USES_PRIMARY(bond->params.mode)) {
817 /* write lock already acquired */
818 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700819 err = dev_set_allmulti(bond->curr_active_slave->dev,
820 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822 } else {
823 struct slave *slave;
824 int i;
825 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700826 err = dev_set_allmulti(slave->dev, inc);
827 if (err)
828 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700831 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/*
835 * Add a Multicast address to slaves
836 * according to mode
837 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000838static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 if (USES_PRIMARY(bond->params.mode)) {
841 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000842 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000843 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 } else {
845 struct slave *slave;
846 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000847
848 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000849 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851}
852
853/*
854 * Remove a multicast address from slave
855 * according to mode
856 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000857static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 if (USES_PRIMARY(bond->params.mode)) {
860 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000861 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000862 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 } else {
864 struct slave *slave;
865 int i;
866 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000867 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 }
870}
871
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800872
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000873static void __bond_resend_igmp_join_requests(struct net_device *dev)
874{
875 struct in_device *in_dev;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000876
877 rcu_read_lock();
878 in_dev = __in_dev_get_rcu(dev);
Eric Dumazet866f3b22010-11-18 09:33:19 -0800879 if (in_dev)
David S. Miller24912422010-11-19 13:13:47 -0800880 ip_mc_rejoin_groups(in_dev);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000881 rcu_read_unlock();
882}
883
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800884/*
885 * Retrieve the list of registered multicast addresses for the bonding
886 * device and retransmit an IGMP JOIN request to the current active
887 * slave.
888 */
889static void bond_resend_igmp_join_requests(struct bonding *bond)
890{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000891 struct net_device *vlan_dev;
892 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800893
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000894 read_lock(&bond->lock);
895
896 /* rejoin all groups on bond device */
897 __bond_resend_igmp_join_requests(bond->dev);
898
899 /* rejoin all groups on vlan devices */
900 if (bond->vlgrp) {
901 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
902 vlan_dev = vlan_group_get_device(bond->vlgrp,
903 vlan->vlan_id);
904 if (vlan_dev)
905 __bond_resend_igmp_join_requests(vlan_dev);
906 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800907 }
908
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000909 if (--bond->igmp_retrans > 0)
910 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
911
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000912 read_unlock(&bond->lock);
913}
914
stephen hemminger379b7382010-10-15 11:02:56 +0000915static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000916{
917 struct bonding *bond = container_of(work, struct bonding,
918 mcast_work.work);
919 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800920}
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * flush all members of flush->mc_list from device dev->mc_list
924 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000925static void bond_mc_list_flush(struct net_device *bond_dev,
926 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Wang Chen454d7c92008-11-12 23:37:49 -0800928 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000929 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jiri Pirko22bedad32010-04-01 21:22:57 +0000931 netdev_for_each_mc_addr(ha, bond_dev)
932 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 if (bond->params.mode == BOND_MODE_8023AD) {
935 /* del lacpdu mc addr from mc list */
936 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
937
Jiri Pirko22bedad32010-04-01 21:22:57 +0000938 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940}
941
942/*--------------------------- Active slave change ---------------------------*/
943
944/*
945 * Update the mc list and multicast-related flags for the new and
946 * old active slaves (if any) according to the multicast mode, and
947 * promiscuous flags unconditionally.
948 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000949static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
950 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000952 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000954 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /* nothing to do - mc list is already up-to-date on
956 * all slaves
957 */
958 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000961 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000964 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Jiri Pirko22bedad32010-04-01 21:22:57 +0000967 netdev_for_each_mc_addr(ha, bond->dev)
968 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 }
970
971 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700972 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000973 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000976 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Jiri Pirko22bedad32010-04-01 21:22:57 +0000979 netdev_for_each_mc_addr(ha, bond->dev)
980 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982}
983
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700984/*
985 * bond_do_fail_over_mac
986 *
987 * Perform special MAC address swapping for fail_over_mac settings
988 *
989 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
990 */
991static void bond_do_fail_over_mac(struct bonding *bond,
992 struct slave *new_active,
993 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000994 __releases(&bond->curr_slave_lock)
995 __releases(&bond->lock)
996 __acquires(&bond->lock)
997 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700998{
999 u8 tmp_mac[ETH_ALEN];
1000 struct sockaddr saddr;
1001 int rv;
1002
1003 switch (bond->params.fail_over_mac) {
1004 case BOND_FOM_ACTIVE:
1005 if (new_active)
1006 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1007 new_active->dev->addr_len);
1008 break;
1009 case BOND_FOM_FOLLOW:
1010 /*
1011 * if new_active && old_active, swap them
1012 * if just old_active, do nothing (going to no active slave)
1013 * if just new_active, set new_active to bond's MAC
1014 */
1015 if (!new_active)
1016 return;
1017
1018 write_unlock_bh(&bond->curr_slave_lock);
1019 read_unlock(&bond->lock);
1020
1021 if (old_active) {
1022 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1023 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1024 ETH_ALEN);
1025 saddr.sa_family = new_active->dev->type;
1026 } else {
1027 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1028 saddr.sa_family = bond->dev->type;
1029 }
1030
1031 rv = dev_set_mac_address(new_active->dev, &saddr);
1032 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001033 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001034 bond->dev->name, -rv, new_active->dev->name);
1035 goto out;
1036 }
1037
1038 if (!old_active)
1039 goto out;
1040
1041 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1042 saddr.sa_family = old_active->dev->type;
1043
1044 rv = dev_set_mac_address(old_active->dev, &saddr);
1045 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001046 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001047 bond->dev->name, -rv, new_active->dev->name);
1048out:
1049 read_lock(&bond->lock);
1050 write_lock_bh(&bond->curr_slave_lock);
1051 break;
1052 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001053 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001054 bond->dev->name, bond->params.fail_over_mac);
1055 break;
1056 }
1057
1058}
1059
Jiri Pirkoa5499522009-09-25 03:28:09 +00001060static bool bond_should_change_active(struct bonding *bond)
1061{
1062 struct slave *prim = bond->primary_slave;
1063 struct slave *curr = bond->curr_active_slave;
1064
1065 if (!prim || !curr || curr->link != BOND_LINK_UP)
1066 return true;
1067 if (bond->force_primary) {
1068 bond->force_primary = false;
1069 return true;
1070 }
1071 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1072 (prim->speed < curr->speed ||
1073 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1074 return false;
1075 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1076 return false;
1077 return true;
1078}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080/**
1081 * find_best_interface - select the best available slave to be the active one
1082 * @bond: our bonding struct
1083 *
1084 * Warning: Caller must hold curr_slave_lock for writing.
1085 */
1086static struct slave *bond_find_best_slave(struct bonding *bond)
1087{
1088 struct slave *new_active, *old_active;
1089 struct slave *bestslave = NULL;
1090 int mintime = bond->params.updelay;
1091 int i;
1092
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001093 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001096 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001098 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001103 bond->primary_slave->link == BOND_LINK_UP &&
1104 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 new_active = bond->primary_slave;
1106 }
1107
1108 /* remember where to stop iterating over the slaves */
1109 old_active = new_active;
1110
1111 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001112 if (new_active->link == BOND_LINK_UP) {
1113 return new_active;
1114 } else if (new_active->link == BOND_LINK_BACK &&
1115 IS_UP(new_active->dev)) {
1116 /* link up, but waiting for stabilization */
1117 if (new_active->delay < mintime) {
1118 mintime = new_active->delay;
1119 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121 }
1122 }
1123
1124 return bestslave;
1125}
1126
1127/**
1128 * change_active_interface - change the active slave into the specified one
1129 * @bond: our bonding struct
1130 * @new: the new slave to make the active one
1131 *
1132 * Set the new slave to the bond's settings and unset them on the old
1133 * curr_active_slave.
1134 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1135 *
1136 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1137 * because it is apparently the best available slave we have, even though its
1138 * updelay hasn't timed out yet.
1139 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001140 * If new_active is not NULL, caller must hold bond->lock for read and
1141 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001143void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 struct slave *old_active = bond->curr_active_slave;
1146
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001147 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001151 new_active->jiffies = jiffies;
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (new_active->link == BOND_LINK_BACK) {
1154 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001155 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1156 bond->dev->name, new_active->dev->name,
1157 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159
1160 new_active->delay = 0;
1161 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001163 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Holger Eitzenberger58402052008-12-09 23:07:13 -08001166 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 } else {
1169 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001170 pr_info("%s: making interface %s the new active one.\n",
1171 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173 }
1174 }
1175
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001176 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Holger Eitzenberger58402052008-12-09 23:07:13 -08001179 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001181 if (old_active)
1182 bond_set_slave_inactive_flags(old_active);
1183 if (new_active)
1184 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 } else {
1186 bond->curr_active_slave = new_active;
1187 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001188
1189 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001190 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001191 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001192
1193 if (new_active) {
1194 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001195
Or Gerlitz709f8a42008-06-13 18:12:01 -07001196 if (bond->params.fail_over_mac)
1197 bond_do_fail_over_mac(bond, new_active,
1198 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001199
Or Gerlitz709f8a42008-06-13 18:12:01 -07001200 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001201 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001202
Brian Haley305d5522008-11-04 17:51:14 -08001203 bond->send_unsol_na = bond->params.num_unsol_na;
1204 bond_send_unsolicited_na(bond);
1205
Or Gerlitz01f31092008-06-13 18:12:02 -07001206 write_unlock_bh(&bond->curr_slave_lock);
1207 read_unlock(&bond->lock);
1208
Moni Shoua75c78502009-09-15 02:37:40 -07001209 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001210
1211 read_lock(&bond->lock);
1212 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001213 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001214 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001215
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001216 /* resend IGMP joins since active slave has changed or
1217 * all were sent on curr_active_slave */
1218 if ((USES_PRIMARY(bond->params.mode) && new_active) ||
1219 bond->params.mode == BOND_MODE_ROUNDROBIN) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001220 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001221 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
1225/**
1226 * bond_select_active_slave - select a new active slave, if needed
1227 * @bond: our bonding struct
1228 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001229 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 * - The old curr_active_slave has been released or lost its link.
1231 * - The primary_slave has got its link back.
1232 * - A slave has got its link back and there's no old curr_active_slave.
1233 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001234 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001236void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001239 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 best_slave = bond_find_best_slave(bond);
1242 if (best_slave != bond->curr_active_slave) {
1243 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001244 rv = bond_set_carrier(bond);
1245 if (!rv)
1246 return;
1247
1248 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001249 pr_info("%s: first active interface up!\n",
1250 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001251 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001252 pr_info("%s: now running without any active interface !\n",
1253 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
1256}
1257
1258/*--------------------------- slave list handling ---------------------------*/
1259
1260/*
1261 * This function attaches the slave to the end of list.
1262 *
1263 * bond->lock held for writing by caller.
1264 */
1265static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1266{
1267 if (bond->first_slave == NULL) { /* attaching the first slave */
1268 new_slave->next = new_slave;
1269 new_slave->prev = new_slave;
1270 bond->first_slave = new_slave;
1271 } else {
1272 new_slave->next = bond->first_slave;
1273 new_slave->prev = bond->first_slave->prev;
1274 new_slave->next->prev = new_slave;
1275 new_slave->prev->next = new_slave;
1276 }
1277
1278 bond->slave_cnt++;
1279}
1280
1281/*
1282 * This function detaches the slave from the list.
1283 * WARNING: no check is made to verify if the slave effectively
1284 * belongs to <bond>.
1285 * Nothing is freed on return, structures are just unchained.
1286 * If any slave pointer in bond was pointing to <slave>,
1287 * it should be changed by the calling function.
1288 *
1289 * bond->lock held for writing by caller.
1290 */
1291static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1292{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001293 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001296 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 if (bond->first_slave == slave) { /* slave is the first slave */
1300 if (bond->slave_cnt > 1) { /* there are more slave */
1301 bond->first_slave = slave->next;
1302 } else {
1303 bond->first_slave = NULL; /* slave was the last one */
1304 }
1305 }
1306
1307 slave->next = NULL;
1308 slave->prev = NULL;
1309 bond->slave_cnt--;
1310}
1311
WANG Congf6dc31a2010-05-06 00:48:51 -07001312#ifdef CONFIG_NET_POLL_CONTROLLER
1313/*
1314 * You must hold read lock on bond->lock before calling this.
1315 */
1316static bool slaves_support_netpoll(struct net_device *bond_dev)
1317{
1318 struct bonding *bond = netdev_priv(bond_dev);
1319 struct slave *slave;
1320 int i = 0;
1321 bool ret = true;
1322
1323 bond_for_each_slave(bond, slave, i) {
1324 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1325 !slave->dev->netdev_ops->ndo_poll_controller)
1326 ret = false;
1327 }
1328 return i != 0 && ret;
1329}
1330
1331static void bond_poll_controller(struct net_device *bond_dev)
1332{
Neil Hormanc2355e12010-10-13 16:01:49 +00001333 struct bonding *bond = netdev_priv(bond_dev);
1334 struct slave *slave;
1335 int i;
1336
1337 bond_for_each_slave(bond, slave, i) {
1338 if (slave->dev && IS_UP(slave->dev))
1339 netpoll_poll_dev(slave->dev);
1340 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001341}
1342
1343static void bond_netpoll_cleanup(struct net_device *bond_dev)
1344{
1345 struct bonding *bond = netdev_priv(bond_dev);
1346 struct slave *slave;
1347 const struct net_device_ops *ops;
1348 int i;
1349
1350 read_lock(&bond->lock);
1351 bond_dev->npinfo = NULL;
1352 bond_for_each_slave(bond, slave, i) {
1353 if (slave->dev) {
1354 ops = slave->dev->netdev_ops;
1355 if (ops->ndo_netpoll_cleanup)
1356 ops->ndo_netpoll_cleanup(slave->dev);
1357 else
1358 slave->dev->npinfo = NULL;
1359 }
1360 }
1361 read_unlock(&bond->lock);
1362}
1363
1364#else
1365
1366static void bond_netpoll_cleanup(struct net_device *bond_dev)
1367{
1368}
1369
1370#endif
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372/*---------------------------------- IOCTL ----------------------------------*/
1373
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001374static int bond_sethwaddr(struct net_device *bond_dev,
1375 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001377 pr_debug("bond_dev=%p\n", bond_dev);
1378 pr_debug("slave_dev=%p\n", slave_dev);
1379 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1381 return 0;
1382}
1383
Herbert Xu7f353bf2007-08-10 15:47:58 -07001384#define BOND_VLAN_FEATURES \
1385 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1386 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001387
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001388/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001389 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001390 * feature bits are managed elsewhere, so preserve those feature bits
1391 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001392 */
1393static int bond_compute_features(struct bonding *bond)
1394{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001395 struct slave *slave;
1396 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001397 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001398 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001399 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1400 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001401 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001402
Herbert Xu7f353bf2007-08-10 15:47:58 -07001403 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001404 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1405
1406 if (!bond->first_slave)
1407 goto done;
1408
1409 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001410
Jay Vosburgh278339a2009-08-28 12:05:12 +00001411 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001412 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001413 features = netdev_increment_features(features,
1414 slave->dev->features,
1415 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001416 vlan_features = netdev_increment_features(vlan_features,
1417 slave->dev->vlan_features,
1418 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001419 if (slave->dev->hard_header_len > max_hard_header_len)
1420 max_hard_header_len = slave->dev->hard_header_len;
1421 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001422
Herbert Xub63365a2008-10-23 01:11:29 -07001423done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001424 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001425 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001426 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001427 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001428
1429 return 0;
1430}
1431
Moni Shoua872254d2007-10-09 19:43:38 -07001432static void bond_setup_by_slave(struct net_device *bond_dev,
1433 struct net_device *slave_dev)
1434{
Wang Chen454d7c92008-11-12 23:37:49 -08001435 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001436
Stephen Hemminger00829822008-11-20 20:14:53 -08001437 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001438
1439 bond_dev->type = slave_dev->type;
1440 bond_dev->hard_header_len = slave_dev->hard_header_len;
1441 bond_dev->addr_len = slave_dev->addr_len;
1442
1443 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1444 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001445 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001446}
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001449int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Wang Chen454d7c92008-11-12 23:37:49 -08001451 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001452 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001454 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 struct sockaddr addr;
1456 int link_reporting;
1457 int old_features = bond_dev->features;
1458 int res = 0;
1459
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001460 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001461 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001462 pr_warning("%s: Warning: no link monitoring support for %s\n",
1463 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465
1466 /* bond must be initialized by bond_open() before enslaving */
1467 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001468 pr_warning("%s: master_dev is not up in bond_enslave\n",
1469 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471
1472 /* already enslaved */
1473 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001474 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return -EBUSY;
1476 }
1477
1478 /* vlan challenged mutual exclusion */
1479 /* no need to lock since we're protected by rtnl_lock */
1480 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001481 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001482 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001483 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1484 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return -EPERM;
1486 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001487 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1488 bond_dev->name, slave_dev->name,
1489 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1491 }
1492 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001493 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if (bond->slave_cnt == 0) {
1495 /* First slave, and it is not VLAN challenged,
1496 * so remove the block of adding VLANs over the bond.
1497 */
1498 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1499 }
1500 }
1501
Jay Vosburgh217df672005-09-26 16:11:50 -07001502 /*
1503 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001504 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001505 * the current ifenslave will set the interface down prior to
1506 * enslaving it; the old ifenslave will not.
1507 */
1508 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001509 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001510 slave_dev->name);
1511 res = -EPERM;
1512 goto err_undo_flags;
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Moni Shoua872254d2007-10-09 19:43:38 -07001515 /* set bonding device ether type by slave - bonding netdevices are
1516 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1517 * there is a need to override some of the type dependent attribs/funcs.
1518 *
1519 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1520 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1521 */
1522 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001523 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001524 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001525 bond_dev->name,
1526 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001527
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001528 res = netdev_bonding_change(bond_dev,
1529 NETDEV_PRE_TYPE_CHANGE);
1530 res = notifier_to_errno(res);
1531 if (res) {
1532 pr_err("%s: refused to change device type\n",
1533 bond_dev->name);
1534 res = -EBUSY;
1535 goto err_undo_flags;
1536 }
Moni Shoua75c78502009-09-15 02:37:40 -07001537
Jiri Pirko32a806c2010-03-19 04:00:23 +00001538 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001539 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001540 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001541
Moni Shouae36b9d12009-07-15 04:56:31 +00001542 if (slave_dev->type != ARPHRD_ETHER)
1543 bond_setup_by_slave(bond_dev, slave_dev);
1544 else
1545 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001546
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001547 netdev_bonding_change(bond_dev,
1548 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001549 }
Moni Shoua872254d2007-10-09 19:43:38 -07001550 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001551 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1552 slave_dev->name,
1553 slave_dev->type, bond_dev->type);
1554 res = -EINVAL;
1555 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001556 }
1557
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001558 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001559 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001560 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1561 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001562 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1563 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001564 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",
1565 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001566 res = -EOPNOTSUPP;
1567 goto err_undo_flags;
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001571 /* If this is the first slave, then we need to set the master's hardware
1572 * address to be the same as the slave's. */
David Strandd13a2cb2010-12-01 11:43:08 -08001573 if (is_zero_ether_addr(bond->dev->dev_addr))
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001574 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1575 slave_dev->addr_len);
1576
1577
Joe Jin243cb4e2007-02-06 14:16:40 -08001578 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (!new_slave) {
1580 res = -ENOMEM;
1581 goto err_undo_flags;
1582 }
1583
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001584 /*
1585 * Set the new_slave's queue_id to be zero. Queue ID mapping
1586 * is set via sysfs or module option if desired.
1587 */
1588 new_slave->queue_id = 0;
1589
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001590 /* Save slave's original mtu and then set it to match the bond */
1591 new_slave->original_mtu = slave_dev->mtu;
1592 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1593 if (res) {
1594 pr_debug("Error %d calling dev_set_mtu\n", res);
1595 goto err_free;
1596 }
1597
Jay Vosburgh217df672005-09-26 16:11:50 -07001598 /*
1599 * Save slave's original ("permanent") mac address for modes
1600 * that need it, and for restoring it upon release, and then
1601 * set it to the master's address
1602 */
1603 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Jay Vosburghdd957c52007-10-09 19:57:24 -07001605 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001606 /*
1607 * Set slave to master's mac address. The application already
1608 * set the master's mac address to that of the first slave
1609 */
1610 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1611 addr.sa_family = slave_dev->type;
1612 res = dev_set_mac_address(slave_dev, &addr);
1613 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001614 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001615 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001616 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001619 res = netdev_set_master(slave_dev, bond_dev);
1620 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001621 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001622 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001623 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001624 /* open the slave since the application closed it */
1625 res = dev_open(slave_dev);
1626 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001627 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001628 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001632 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Holger Eitzenberger58402052008-12-09 23:07:13 -08001634 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 /* bond_alb_init_slave() must be called before all other stages since
1636 * it might fail and we do not want to have to undo everything
1637 */
1638 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001639 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001640 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
1642
1643 /* If the mode USES_PRIMARY, then the new slave gets the
1644 * master's promisc (and mc) settings only if it becomes the
1645 * curr_active_slave, and that is taken care of later when calling
1646 * bond_change_active()
1647 */
1648 if (!USES_PRIMARY(bond->params.mode)) {
1649 /* set promiscuity level to new slave */
1650 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001651 res = dev_set_promiscuity(slave_dev, 1);
1652 if (res)
1653 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 }
1655
1656 /* set allmulti level to new slave */
1657 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001658 res = dev_set_allmulti(slave_dev, 1);
1659 if (res)
1660 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
1662
David S. Millerb9e40852008-07-15 00:15:08 -07001663 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001665 netdev_for_each_mc_addr(ha, bond_dev)
1666 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001667 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669
1670 if (bond->params.mode == BOND_MODE_8023AD) {
1671 /* add lacpdu mc addr to mc list */
1672 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1673
Jiri Pirko22bedad32010-04-01 21:22:57 +00001674 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676
1677 bond_add_vlans_on_slave(bond, slave_dev);
1678
1679 write_lock_bh(&bond->lock);
1680
1681 bond_attach_slave(bond, new_slave);
1682
1683 new_slave->delay = 0;
1684 new_slave->link_failure_count = 0;
1685
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001686 bond_compute_features(bond);
1687
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001688 write_unlock_bh(&bond->lock);
1689
1690 read_lock(&bond->lock);
1691
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001692 new_slave->last_arp_rx = jiffies;
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (bond->params.miimon && !bond->params.use_carrier) {
1695 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1696
1697 if ((link_reporting == -1) && !bond->params.arp_interval) {
1698 /*
1699 * miimon is set but a bonded network driver
1700 * does not support ETHTOOL/MII and
1701 * arp_interval is not set. Note: if
1702 * use_carrier is enabled, we will never go
1703 * here (because netif_carrier is always
1704 * supported); thus, we don't need to change
1705 * the messages for netif_carrier.
1706 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001707 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 -08001708 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 } else if (link_reporting == -1) {
1710 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001711 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",
1712 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
1714 }
1715
1716 /* check for initial state */
1717 if (!bond->params.miimon ||
1718 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1719 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001720 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 new_slave->link = BOND_LINK_BACK;
1722 new_slave->delay = bond->params.updelay;
1723 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001724 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 new_slave->link = BOND_LINK_UP;
1726 }
1727 new_slave->jiffies = jiffies;
1728 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001729 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 new_slave->link = BOND_LINK_DOWN;
1731 }
1732
1733 if (bond_update_speed_duplex(new_slave) &&
1734 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001735 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1736 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001739 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1740 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
1742 }
1743
1744 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1745 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001746 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001748 bond->force_primary = true;
1749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
1751
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001752 write_lock_bh(&bond->curr_slave_lock);
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 switch (bond->params.mode) {
1755 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001756 bond_set_slave_inactive_flags(new_slave);
1757 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 break;
1759 case BOND_MODE_8023AD:
1760 /* in 802.3ad mode, the internal mechanism
1761 * will activate the slaves in the selected
1762 * aggregator
1763 */
1764 bond_set_slave_inactive_flags(new_slave);
1765 /* if this is the first slave */
1766 if (bond->slave_cnt == 1) {
1767 SLAVE_AD_INFO(new_slave).id = 1;
1768 /* Initialize AD with the number of times that the AD timer is called in 1 second
1769 * can be called only after the mac address of the bond is set
1770 */
1771 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1772 bond->params.lacp_fast);
1773 } else {
1774 SLAVE_AD_INFO(new_slave).id =
1775 SLAVE_AD_INFO(new_slave->prev).id + 1;
1776 }
1777
1778 bond_3ad_bind_slave(new_slave);
1779 break;
1780 case BOND_MODE_TLB:
1781 case BOND_MODE_ALB:
1782 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001783 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001784 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 break;
1786 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001787 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 /* always active in trunk mode */
1790 new_slave->state = BOND_STATE_ACTIVE;
1791
1792 /* In trunking mode there is little meaning to curr_active_slave
1793 * anyway (it holds no special properties of the bond device),
1794 * so we can change it without calling change_active_interface()
1795 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001796 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 break;
1800 } /* switch(bond_mode) */
1801
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001802 write_unlock_bh(&bond->curr_slave_lock);
1803
Jay Vosburghff59c452006-03-27 13:27:43 -08001804 bond_set_carrier(bond);
1805
WANG Congf6dc31a2010-05-06 00:48:51 -07001806#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Horman45b0cb82010-10-13 16:01:53 +00001807 if (slaves_support_netpoll(bond_dev)) {
1808 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1809 if (bond_dev->npinfo)
1810 slave_dev->npinfo = bond_dev->npinfo;
1811 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001812 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Neil Horman45b0cb82010-10-13 16:01:53 +00001813 pr_info("New slave device %s does not support netpoll\n",
1814 slave_dev->name);
1815 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
WANG Congf6dc31a2010-05-06 00:48:51 -07001816 }
1817#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001818 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001820 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1821 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001822 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001823
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001824 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1825 bond_dev->name, slave_dev->name,
1826 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1827 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 /* enslave is successful */
1830 return 0;
1831
1832/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833err_close:
1834 dev_close(slave_dev);
1835
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001836err_unset_master:
1837 netdev_set_master(slave_dev, NULL);
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001840 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001841 /* XXX TODO - fom follow mode needs to change master's
1842 * MAC if this slave's MAC is in use by the bond, or at
1843 * least print a warning.
1844 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001845 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1846 addr.sa_family = slave_dev->type;
1847 dev_set_mac_address(slave_dev, &addr);
1848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001850err_restore_mtu:
1851 dev_set_mtu(slave_dev, new_slave->original_mtu);
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853err_free:
1854 kfree(new_slave);
1855
1856err_undo_flags:
1857 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 return res;
1860}
1861
1862/*
1863 * Try to release the slave device <slave> from the bond device <master>
1864 * It is legal to access curr_active_slave without a lock because all the function
1865 * is write-locked.
1866 *
1867 * The rules for slave state should be:
1868 * for Active/Backup:
1869 * Active stays on all backups go down
1870 * for Bonded connections:
1871 * The first up interface should be left on and all others downed.
1872 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001873int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Wang Chen454d7c92008-11-12 23:37:49 -08001875 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 struct slave *slave, *oldcurrent;
1877 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 /* slave is not a slave or master is not master of this slave */
1880 if (!(slave_dev->flags & IFF_SLAVE) ||
1881 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001882 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 bond_dev->name, slave_dev->name);
1884 return -EINVAL;
1885 }
1886
Neil Hormane843fa52010-10-13 16:01:50 +00001887 block_netpoll_tx();
WANG Congf6dc31a2010-05-06 00:48:51 -07001888 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 write_lock_bh(&bond->lock);
1890
1891 slave = bond_get_slave_by_dev(bond, slave_dev);
1892 if (!slave) {
1893 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001894 pr_info("%s: %s not enslaved\n",
1895 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001896 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001897 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return -EINVAL;
1899 }
1900
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001901 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001902 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1903 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001904 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",
1905 bond_dev->name, slave_dev->name,
1906 slave->perm_hwaddr,
1907 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
1909
1910 /* Inform AD package of unbinding of slave. */
1911 if (bond->params.mode == BOND_MODE_8023AD) {
1912 /* must be called before the slave is
1913 * detached from the list
1914 */
1915 bond_3ad_unbind_slave(slave);
1916 }
1917
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001918 pr_info("%s: releasing %s interface %s\n",
1919 bond_dev->name,
1920 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1921 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 oldcurrent = bond->curr_active_slave;
1924
1925 bond->current_arp_slave = NULL;
1926
1927 /* release the slave from its bond */
1928 bond_detach_slave(bond, slave);
1929
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001930 bond_compute_features(bond);
1931
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001932 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001935 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Holger Eitzenberger58402052008-12-09 23:07:13 -08001938 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /* Must be called only after the slave has been
1940 * detached from the list and the curr_active_slave
1941 * has been cleared (if our_slave == old_current),
1942 * but before a new active slave is selected.
1943 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001944 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001946 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
1948
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001949 if (oldcurrent == slave) {
1950 /*
1951 * Note that we hold RTNL over this sequence, so there
1952 * is no concern that another slave add/remove event
1953 * will interfere.
1954 */
1955 write_unlock_bh(&bond->lock);
1956 read_lock(&bond->lock);
1957 write_lock_bh(&bond->curr_slave_lock);
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 bond_select_active_slave(bond);
1960
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001961 write_unlock_bh(&bond->curr_slave_lock);
1962 read_unlock(&bond->lock);
1963 write_lock_bh(&bond->lock);
1964 }
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001967 bond_set_carrier(bond);
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 /* if the last slave was removed, zero the mac address
1970 * of the master so it will be set by the application
1971 * to the mac address of the first slave
1972 */
1973 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1974
Jay Vosburghf35188f2010-07-21 12:14:47 +00001975 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1977 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001978 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1979 bond_dev->name, bond_dev->name);
1980 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1981 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1984 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001985 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1986 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1988 }
1989
1990 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001991 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001993 /* must do this from outside any spinlocks */
1994 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 bond_del_vlans_from_slave(bond, slave_dev);
1997
1998 /* If the mode USES_PRIMARY, then we should only remove its
1999 * promisc and mc settings if it was the curr_active_slave, but that was
2000 * already taken care of above when we detached the slave
2001 */
2002 if (!USES_PRIMARY(bond->params.mode)) {
2003 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002004 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002008 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002012 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002014 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
2016
2017 netdev_set_master(slave_dev, NULL);
2018
WANG Congf6dc31a2010-05-06 00:48:51 -07002019#ifdef CONFIG_NET_POLL_CONTROLLER
2020 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00002021
Neil Horman45b0cb82010-10-13 16:01:53 +00002022 if (slaves_support_netpoll(bond_dev))
2023 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002024 read_unlock_bh(&bond->lock);
2025 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2026 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2027 else
2028 slave_dev->npinfo = NULL;
2029#endif
2030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 /* close slave before restoring its mac address */
2032 dev_close(slave_dev);
2033
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002034 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002035 /* restore original ("permanent") mac address */
2036 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2037 addr.sa_family = slave_dev->type;
2038 dev_set_mac_address(slave_dev, &addr);
2039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002041 dev_set_mtu(slave_dev, slave->original_mtu);
2042
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002043 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002044 IFF_SLAVE_INACTIVE | IFF_BONDING |
2045 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 kfree(slave);
2048
2049 return 0; /* deletion OK */
2050}
2051
2052/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002053* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002054* Must be under rtnl_lock when this function is called.
2055*/
stephen hemminger26d8ee72010-10-15 05:09:34 +00002056static int bond_release_and_destroy(struct net_device *bond_dev,
2057 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002058{
Wang Chen454d7c92008-11-12 23:37:49 -08002059 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002060 int ret;
2061
2062 ret = bond_release(bond_dev, slave_dev);
2063 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002064 pr_info("%s: destroying bond %s.\n",
2065 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002066 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002067 }
2068 return ret;
2069}
2070
2071/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 * This function releases all slaves.
2073 */
2074static int bond_release_all(struct net_device *bond_dev)
2075{
Wang Chen454d7c92008-11-12 23:37:49 -08002076 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 struct slave *slave;
2078 struct net_device *slave_dev;
2079 struct sockaddr addr;
2080
2081 write_lock_bh(&bond->lock);
2082
Jay Vosburghff59c452006-03-27 13:27:43 -08002083 netif_carrier_off(bond_dev);
2084
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002085 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088 bond->current_arp_slave = NULL;
2089 bond->primary_slave = NULL;
2090 bond_change_active_slave(bond, NULL);
2091
2092 while ((slave = bond->first_slave) != NULL) {
2093 /* Inform AD package of unbinding of slave
2094 * before slave is detached from the list.
2095 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002096 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 slave_dev = slave->dev;
2100 bond_detach_slave(bond, slave);
2101
Jay Vosburgh25433312008-01-17 16:24:59 -08002102 /* now that the slave is detached, unlock and perform
2103 * all the undo steps that should not be called from
2104 * within a lock.
2105 */
2106 write_unlock_bh(&bond->lock);
2107
Holger Eitzenberger58402052008-12-09 23:07:13 -08002108 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 /* must be called only after the slave
2110 * has been detached from the list
2111 */
2112 bond_alb_deinit_slave(bond, slave);
2113 }
2114
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002115 bond_compute_features(bond);
2116
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002117 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 bond_del_vlans_from_slave(bond, slave_dev);
2119
2120 /* If the mode USES_PRIMARY, then we should only remove its
2121 * promisc and mc settings if it was the curr_active_slave, but that was
2122 * already taken care of above when we detached the slave
2123 */
2124 if (!USES_PRIMARY(bond->params.mode)) {
2125 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002126 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002130 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002134 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002136 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
2138
2139 netdev_set_master(slave_dev, NULL);
2140
2141 /* close slave before restoring its mac address */
2142 dev_close(slave_dev);
2143
Jay Vosburghdd957c52007-10-09 19:57:24 -07002144 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002145 /* restore original ("permanent") mac address*/
2146 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2147 addr.sa_family = slave_dev->type;
2148 dev_set_mac_address(slave_dev, &addr);
2149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002151 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2152 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154 kfree(slave);
2155
2156 /* re-acquire the lock before getting the next slave */
2157 write_lock_bh(&bond->lock);
2158 }
2159
2160 /* zero the mac address of the master so it will be
2161 * set by the application to the mac address of the
2162 * first slave
2163 */
2164 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2165
Jay Vosburghf35188f2010-07-21 12:14:47 +00002166 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002168 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002169 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2170 bond_dev->name, bond_dev->name);
2171 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2172 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002175 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177out:
2178 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return 0;
2180}
2181
2182/*
2183 * This function changes the active slave to slave <slave_dev>.
2184 * It returns -EINVAL in the following cases.
2185 * - <slave_dev> is not found in the list.
2186 * - There is not active slave now.
2187 * - <slave_dev> is already active.
2188 * - The link state of <slave_dev> is not BOND_LINK_UP.
2189 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002190 * In these cases, this function does nothing.
2191 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 */
2193static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2194{
Wang Chen454d7c92008-11-12 23:37:49 -08002195 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 struct slave *old_active = NULL;
2197 struct slave *new_active = NULL;
2198 int res = 0;
2199
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002200 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002204 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002207 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002209 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002211 read_unlock(&bond->curr_slave_lock);
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 new_active = bond_get_slave_by_dev(bond, slave_dev);
2214
2215 /*
2216 * Changing to the current active: do nothing; return success.
2217 */
2218 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002219 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return 0;
2221 }
2222
2223 if ((new_active) &&
2224 (old_active) &&
2225 (new_active->link == BOND_LINK_UP) &&
2226 IS_UP(new_active->dev)) {
Neil Hormane843fa52010-10-13 16:01:50 +00002227 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002228 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002230 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002231 unblock_netpoll_tx();
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002232 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002235 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 return res;
2238}
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2241{
Wang Chen454d7c92008-11-12 23:37:49 -08002242 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 info->bond_mode = bond->params.mode;
2245 info->miimon = bond->params.miimon;
2246
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002247 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002249 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 return 0;
2252}
2253
2254static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2255{
Wang Chen454d7c92008-11-12 23:37:49 -08002256 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002258 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002260 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 bond_for_each_slave(bond, slave, i) {
2263 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002264 res = 0;
2265 strcpy(info->slave_name, slave->dev->name);
2266 info->link = slave->link;
2267 info->state = slave->state;
2268 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 break;
2270 }
2271 }
2272
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002273 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Eric Dumazet689c96c2009-04-23 03:39:04 +00002275 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278/*-------------------------------- Monitoring -------------------------------*/
2279
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002280
2281static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002283 struct slave *slave;
2284 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002285 bool ignore_updelay;
2286
2287 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002290 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002292 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
2294 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002295 case BOND_LINK_UP:
2296 if (link_state)
2297 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002299 slave->link = BOND_LINK_FAIL;
2300 slave->delay = bond->params.downdelay;
2301 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002302 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2303 bond->dev->name,
2304 (bond->params.mode ==
2305 BOND_MODE_ACTIVEBACKUP) ?
2306 ((slave->state == BOND_STATE_ACTIVE) ?
2307 "active " : "backup ") : "",
2308 slave->dev->name,
2309 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002311 /*FALLTHRU*/
2312 case BOND_LINK_FAIL:
2313 if (link_state) {
2314 /*
2315 * recovered before downdelay expired
2316 */
2317 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002319 pr_info("%s: link status up again after %d ms for interface %s.\n",
2320 bond->dev->name,
2321 (bond->params.downdelay - slave->delay) *
2322 bond->params.miimon,
2323 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002324 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002326
2327 if (slave->delay <= 0) {
2328 slave->new_link = BOND_LINK_DOWN;
2329 commit++;
2330 continue;
2331 }
2332
2333 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002336 case BOND_LINK_DOWN:
2337 if (!link_state)
2338 continue;
2339
2340 slave->link = BOND_LINK_BACK;
2341 slave->delay = bond->params.updelay;
2342
2343 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002344 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2345 bond->dev->name, slave->dev->name,
2346 ignore_updelay ? 0 :
2347 bond->params.updelay *
2348 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002350 /*FALLTHRU*/
2351 case BOND_LINK_BACK:
2352 if (!link_state) {
2353 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002354 pr_info("%s: link status down again after %d ms for interface %s.\n",
2355 bond->dev->name,
2356 (bond->params.updelay - slave->delay) *
2357 bond->params.miimon,
2358 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002359
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002360 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002362
Jiri Pirko41f89102009-04-24 03:57:29 +00002363 if (ignore_updelay)
2364 slave->delay = 0;
2365
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002366 if (slave->delay <= 0) {
2367 slave->new_link = BOND_LINK_UP;
2368 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002369 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002370 continue;
2371 }
2372
2373 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002375 }
2376 }
2377
2378 return commit;
2379}
2380
2381static void bond_miimon_commit(struct bonding *bond)
2382{
2383 struct slave *slave;
2384 int i;
2385
2386 bond_for_each_slave(bond, slave, i) {
2387 switch (slave->new_link) {
2388 case BOND_LINK_NOCHANGE:
2389 continue;
2390
2391 case BOND_LINK_UP:
2392 slave->link = BOND_LINK_UP;
2393 slave->jiffies = jiffies;
2394
2395 if (bond->params.mode == BOND_MODE_8023AD) {
2396 /* prevent it from being the active one */
2397 slave->state = BOND_STATE_BACKUP;
2398 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2399 /* make it immediately active */
2400 slave->state = BOND_STATE_ACTIVE;
2401 } else if (slave != bond->primary_slave) {
2402 /* prevent it from being the active one */
2403 slave->state = BOND_STATE_BACKUP;
2404 }
2405
Krzysztof Piotr Oledzki546add72010-10-06 14:28:22 -07002406 bond_update_speed_duplex(slave);
2407
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002408 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2409 bond->dev->name, slave->dev->name,
2410 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002411
2412 /* notify ad that the link status has changed */
2413 if (bond->params.mode == BOND_MODE_8023AD)
2414 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2415
Holger Eitzenberger58402052008-12-09 23:07:13 -08002416 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002417 bond_alb_handle_link_change(bond, slave,
2418 BOND_LINK_UP);
2419
2420 if (!bond->curr_active_slave ||
2421 (slave == bond->primary_slave))
2422 goto do_failover;
2423
2424 continue;
2425
2426 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002427 if (slave->link_failure_count < UINT_MAX)
2428 slave->link_failure_count++;
2429
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002430 slave->link = BOND_LINK_DOWN;
2431
2432 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2433 bond->params.mode == BOND_MODE_8023AD)
2434 bond_set_slave_inactive_flags(slave);
2435
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002436 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2437 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002438
2439 if (bond->params.mode == BOND_MODE_8023AD)
2440 bond_3ad_handle_link_change(slave,
2441 BOND_LINK_DOWN);
2442
Jiri Pirkoae63e802009-05-27 05:42:36 +00002443 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002444 bond_alb_handle_link_change(bond, slave,
2445 BOND_LINK_DOWN);
2446
2447 if (slave == bond->curr_active_slave)
2448 goto do_failover;
2449
2450 continue;
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002453 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002454 bond->dev->name, slave->new_link,
2455 slave->dev->name);
2456 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002458 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
2460
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002461do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002462 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00002463 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002464 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002466 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002467 unblock_netpoll_tx();
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002468 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002469
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002470 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002473/*
2474 * bond_mii_monitor
2475 *
2476 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002477 * inspection, then (if inspection indicates something needs to be done)
2478 * an acquisition of appropriate locks followed by a commit phase to
2479 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002480 */
2481void bond_mii_monitor(struct work_struct *work)
2482{
2483 struct bonding *bond = container_of(work, struct bonding,
2484 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002485
2486 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002487 if (bond->kill_timers)
2488 goto out;
2489
2490 if (bond->slave_cnt == 0)
2491 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002492
2493 if (bond->send_grat_arp) {
2494 read_lock(&bond->curr_slave_lock);
2495 bond_send_gratuitous_arp(bond);
2496 read_unlock(&bond->curr_slave_lock);
2497 }
2498
Brian Haley305d5522008-11-04 17:51:14 -08002499 if (bond->send_unsol_na) {
2500 read_lock(&bond->curr_slave_lock);
2501 bond_send_unsolicited_na(bond);
2502 read_unlock(&bond->curr_slave_lock);
2503 }
2504
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002505 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002506 read_unlock(&bond->lock);
2507 rtnl_lock();
2508 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002509
2510 bond_miimon_commit(bond);
2511
Jay Vosburgh56556622008-01-17 16:25:03 -08002512 read_unlock(&bond->lock);
2513 rtnl_unlock(); /* might sleep, hold no other locks */
2514 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002515 }
2516
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002517re_arm:
2518 if (bond->params.miimon)
2519 queue_delayed_work(bond->wq, &bond->mii_work,
2520 msecs_to_jiffies(bond->params.miimon));
2521out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002522 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002523}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002524
Al Virod3bb52b2007-08-22 20:06:58 -04002525static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002526{
2527 struct in_device *idev;
2528 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002529 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002530
2531 if (!dev)
2532 return 0;
2533
2534 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002535 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002536 if (!idev)
2537 goto out;
2538
2539 ifa = idev->ifa_list;
2540 if (!ifa)
2541 goto out;
2542
2543 addr = ifa->ifa_local;
2544out:
2545 rcu_read_unlock();
2546 return addr;
2547}
2548
Al Virod3bb52b2007-08-22 20:06:58 -04002549static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002550{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002551 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002552
2553 if (ip == bond->master_ip)
2554 return 1;
2555
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002556 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002557 if (ip == vlan->vlan_ip)
2558 return 1;
2559 }
2560
2561 return 0;
2562}
2563
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002564/*
2565 * We go to the (large) trouble of VLAN tagging ARP frames because
2566 * switches in VLAN mode (especially if ports are configured as
2567 * "native" to a VLAN) might not pass non-tagged frames.
2568 */
Al Virod3bb52b2007-08-22 20:06:58 -04002569static 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 -04002570{
2571 struct sk_buff *skb;
2572
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002573 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002574 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002575
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002576 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2577 NULL, slave_dev->dev_addr, NULL);
2578
2579 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002580 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002581 return;
2582 }
2583 if (vlan_id) {
2584 skb = vlan_put_tag(skb, vlan_id);
2585 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002586 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002587 return;
2588 }
2589 }
2590 arp_xmit(skb);
2591}
2592
2593
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2595{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002596 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002597 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002598 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002599 struct net_device *vlan_dev;
2600 struct flowi fl;
2601 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Mitch Williams6b780562005-11-09 10:36:19 -08002603 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2604 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002605 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002606 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002607 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002608 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002609 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2610 bond->master_ip, 0);
2611 continue;
2612 }
2613
2614 /*
2615 * If VLANs are configured, we do a route lookup to
2616 * determine which VLAN interface would be used, so we
2617 * can tag the ARP with the proper VLAN tag.
2618 */
2619 memset(&fl, 0, sizeof(fl));
2620 fl.fl4_dst = targets[i];
2621 fl.fl4_tos = RTO_ONLINK;
2622
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002623 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002624 if (rv) {
2625 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002626 pr_warning("%s: no route to arp_ip_target %pI4\n",
2627 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002628 }
2629 continue;
2630 }
2631
2632 /*
2633 * This target is not on a VLAN
2634 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002635 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002636 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002637 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002638 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2639 bond->master_ip, 0);
2640 continue;
2641 }
2642
2643 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002644 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002645 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002646 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002647 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002648 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002649 vlan_dev->name, vlan_id);
2650 break;
2651 }
2652 }
2653
2654 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002655 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002656 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2657 vlan->vlan_ip, vlan_id);
2658 continue;
2659 }
2660
2661 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002662 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2663 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002664 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002665 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002666 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002667 }
2668}
2669
2670/*
2671 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2672 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002673 *
2674 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002675 */
2676static void bond_send_gratuitous_arp(struct bonding *bond)
2677{
2678 struct slave *slave = bond->curr_active_slave;
2679 struct vlan_entry *vlan;
2680 struct net_device *vlan_dev;
2681
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002682 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2683 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002684
2685 if (!slave || !bond->send_grat_arp ||
2686 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002687 return;
2688
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002689 bond->send_grat_arp--;
2690
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002691 if (bond->master_ip) {
2692 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002693 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002694 }
2695
Jay Vosburghf35188f2010-07-21 12:14:47 +00002696 if (!bond->vlgrp)
2697 return;
2698
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002699 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002700 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002701 if (vlan->vlan_ip) {
2702 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2703 vlan->vlan_ip, vlan->vlan_id);
2704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
2706}
2707
Al Virod3bb52b2007-08-22 20:06:58 -04002708static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002709{
2710 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002711 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002712
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002713 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002714 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002715 &sip, &tip, i, &targets[i],
2716 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002717 if (sip == targets[i]) {
2718 if (bond_has_this_ip(bond, tip))
2719 slave->last_arp_rx = jiffies;
2720 return;
2721 }
2722 }
2723}
2724
2725static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2726{
2727 struct arphdr *arp;
2728 struct slave *slave;
2729 struct bonding *bond;
2730 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002731 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002732
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002733 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2734 /*
2735 * When using VLANS and bonding, dev and oriv_dev may be
2736 * incorrect if the physical interface supports VLAN
2737 * acceleration. With this change ARP validation now
2738 * works for hosts only reachable on the VLAN interface.
2739 */
2740 dev = vlan_dev_real_dev(dev);
2741 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2742 }
2743
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002744 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2745 goto out;
2746
Wang Chen454d7c92008-11-12 23:37:49 -08002747 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002748 read_lock(&bond->lock);
2749
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002750 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002751 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2752 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002753
2754 slave = bond_get_slave_by_dev(bond, orig_dev);
2755 if (!slave || !slave_do_arp_validate(bond, slave))
2756 goto out_unlock;
2757
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002758 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002759 goto out_unlock;
2760
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002761 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002762 if (arp->ar_hln != dev->addr_len ||
2763 skb->pkt_type == PACKET_OTHERHOST ||
2764 skb->pkt_type == PACKET_LOOPBACK ||
2765 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2766 arp->ar_pro != htons(ETH_P_IP) ||
2767 arp->ar_pln != 4)
2768 goto out_unlock;
2769
2770 arp_ptr = (unsigned char *)(arp + 1);
2771 arp_ptr += dev->addr_len;
2772 memcpy(&sip, arp_ptr, 4);
2773 arp_ptr += 4 + dev->addr_len;
2774 memcpy(&tip, arp_ptr, 4);
2775
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002776 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002777 bond->dev->name, slave->dev->name, slave->state,
2778 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2779 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002780
2781 /*
2782 * Backup slaves won't see the ARP reply, but do come through
2783 * here for each ARP probe (so we swap the sip/tip to validate
2784 * the probe). In a "redundant switch, common router" type of
2785 * configuration, the ARP probe will (hopefully) travel from
2786 * the active, through one switch, the router, then the other
2787 * switch before reaching the backup.
2788 */
2789 if (slave->state == BOND_STATE_ACTIVE)
2790 bond_validate_arp(bond, slave, sip, tip);
2791 else
2792 bond_validate_arp(bond, slave, tip, sip);
2793
2794out_unlock:
2795 read_unlock(&bond->lock);
2796out:
2797 dev_kfree_skb(skb);
2798 return NET_RX_SUCCESS;
2799}
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801/*
2802 * this function is called regularly to monitor each slave's link
2803 * ensuring that traffic is being sent and received when arp monitoring
2804 * is used in load-balancing mode. if the adapter has been dormant, then an
2805 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2806 * arp monitoring in active backup mode.
2807 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002808void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002810 struct bonding *bond = container_of(work, struct bonding,
2811 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 struct slave *slave, *oldcurrent;
2813 int do_failover = 0;
2814 int delta_in_ticks;
2815 int i;
2816
2817 read_lock(&bond->lock);
2818
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002819 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002821 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002824 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
2827 read_lock(&bond->curr_slave_lock);
2828 oldcurrent = bond->curr_active_slave;
2829 read_unlock(&bond->curr_slave_lock);
2830
2831 /* see if any of the previous devices are up now (i.e. they have
2832 * xmt and rcv traffic). the curr_active_slave does not come into
2833 * the picture unless it is null. also, slave->jiffies is not needed
2834 * here because we send an arp on each slave and give a slave as
2835 * long as it needs to get the tx/rx within the delta.
2836 * TODO: what about up/down delay in arp mode? it wasn't here before
2837 * so it can wait
2838 */
2839 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002840 unsigned long trans_start = dev_trans_start(slave->dev);
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002843 if (time_in_range(jiffies,
2844 trans_start - delta_in_ticks,
2845 trans_start + delta_in_ticks) &&
2846 time_in_range(jiffies,
2847 slave->dev->last_rx - delta_in_ticks,
2848 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
2850 slave->link = BOND_LINK_UP;
2851 slave->state = BOND_STATE_ACTIVE;
2852
2853 /* primary_slave has no meaning in round-robin
2854 * mode. the window of a slave being up and
2855 * curr_active_slave being null after enslaving
2856 * is closed.
2857 */
2858 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002859 pr_info("%s: link status definitely up for interface %s, ",
2860 bond->dev->name,
2861 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 do_failover = 1;
2863 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002864 pr_info("%s: interface %s is now up\n",
2865 bond->dev->name,
2866 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 }
2868 }
2869 } else {
2870 /* slave->link == BOND_LINK_UP */
2871
2872 /* not all switches will respond to an arp request
2873 * when the source ip is 0, so don't take the link down
2874 * if we don't know our ip yet
2875 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002876 if (!time_in_range(jiffies,
2877 trans_start - delta_in_ticks,
2878 trans_start + 2 * delta_in_ticks) ||
2879 !time_in_range(jiffies,
2880 slave->dev->last_rx - delta_in_ticks,
2881 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 slave->link = BOND_LINK_DOWN;
2884 slave->state = BOND_STATE_BACKUP;
2885
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002886 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002889 pr_info("%s: interface %s is now down.\n",
2890 bond->dev->name,
2891 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002893 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 }
2896 }
2897
2898 /* note: if switch is in round-robin mode, all links
2899 * must tx arp to ensure all links rx an arp - otherwise
2900 * links may oscillate or not come up at all; if switch is
2901 * in something like xor mode, there is nothing we can
2902 * do - all replies will be rx'ed on same link causing slaves
2903 * to be unstable during low/no traffic periods
2904 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002905 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
2908
2909 if (do_failover) {
Neil Hormane843fa52010-10-13 16:01:50 +00002910 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002911 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 bond_select_active_slave(bond);
2914
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002915 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002916 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 }
2918
2919re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002920 if (bond->params.arp_interval)
2921 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922out:
2923 read_unlock(&bond->lock);
2924}
2925
2926/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002927 * Called to inspect slaves for active-backup mode ARP monitor link state
2928 * changes. Sets new_link in slaves to specify what action should take
2929 * place for the slave. Returns 0 if no changes are found, >0 if changes
2930 * to link states must be committed.
2931 *
2932 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002934static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002937 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002938 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002941 slave->new_link = BOND_LINK_NOCHANGE;
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002944 if (time_in_range(jiffies,
2945 slave_last_rx(bond, slave) - delta_in_ticks,
2946 slave_last_rx(bond, slave) + delta_in_ticks)) {
2947
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002948 slave->new_link = BOND_LINK_UP;
2949 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002952 continue;
2953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002955 /*
2956 * Give slaves 2*delta after being enslaved or made
2957 * active. This avoids bouncing, as the last receive
2958 * times need a full ARP monitor cycle to be updated.
2959 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002960 if (time_in_range(jiffies,
2961 slave->jiffies - delta_in_ticks,
2962 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002963 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002965 /*
2966 * Backup slave is down if:
2967 * - No current_arp_slave AND
2968 * - more than 3*delta since last receive AND
2969 * - the bond has an IP address
2970 *
2971 * Note: a non-null current_arp_slave indicates
2972 * the curr_active_slave went down and we are
2973 * searching for a new one; under this condition
2974 * we only take the curr_active_slave down - this
2975 * gives each slave a chance to tx/rx traffic
2976 * before being taken out
2977 */
2978 if (slave->state == BOND_STATE_BACKUP &&
2979 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002980 !time_in_range(jiffies,
2981 slave_last_rx(bond, slave) - delta_in_ticks,
2982 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2983
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002984 slave->new_link = BOND_LINK_DOWN;
2985 commit++;
2986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002988 /*
2989 * Active slave is down if:
2990 * - more than 2*delta since transmitting OR
2991 * - (more than 2*delta since receive AND
2992 * the bond has an IP address)
2993 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002994 trans_start = dev_trans_start(slave->dev);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002995 if ((slave->state == BOND_STATE_ACTIVE) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002996 (!time_in_range(jiffies,
2997 trans_start - delta_in_ticks,
2998 trans_start + 2 * delta_in_ticks) ||
2999 !time_in_range(jiffies,
3000 slave_last_rx(bond, slave) - delta_in_ticks,
3001 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
3002
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003003 slave->new_link = BOND_LINK_DOWN;
3004 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
3006 }
3007
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003008 return commit;
3009}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003011/*
3012 * Called to commit link state changes noted by inspection step of
3013 * active-backup mode ARP monitor.
3014 *
3015 * Called with RTNL and bond->lock for read.
3016 */
3017static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
3018{
3019 struct slave *slave;
3020 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003021 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003023 bond_for_each_slave(bond, slave, i) {
3024 switch (slave->new_link) {
3025 case BOND_LINK_NOCHANGE:
3026 continue;
3027
3028 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003029 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003030 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003031 time_in_range(jiffies,
3032 trans_start - delta_in_ticks,
3033 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003034 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003035 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003036 bond->current_arp_slave = NULL;
3037
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003038 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003039 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003040
Jiri Pirkob9f60252009-08-31 11:09:38 +00003041 if (!bond->curr_active_slave ||
3042 (slave == bond->primary_slave))
3043 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003044
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003045 }
3046
Jiri Pirkob9f60252009-08-31 11:09:38 +00003047 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003048
3049 case BOND_LINK_DOWN:
3050 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003053 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003054 bond_set_slave_inactive_flags(slave);
3055
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003056 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003057 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003058
3059 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003060 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003061 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003062 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003063
3064 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003065
3066 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003067 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003068 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003070 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
Jiri Pirkob9f60252009-08-31 11:09:38 +00003073do_failover:
3074 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00003075 block_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003076 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003077 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003078 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00003079 unblock_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003080 }
3081
3082 bond_set_carrier(bond);
3083}
3084
3085/*
3086 * Send ARP probes for active-backup mode ARP monitor.
3087 *
3088 * Called with bond->lock held for read.
3089 */
3090static void bond_ab_arp_probe(struct bonding *bond)
3091{
3092 struct slave *slave;
3093 int i;
3094
3095 read_lock(&bond->curr_slave_lock);
3096
3097 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003098 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3099 bond->current_arp_slave->dev->name,
3100 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003101
3102 if (bond->curr_active_slave) {
3103 bond_arp_send_all(bond, bond->curr_active_slave);
3104 read_unlock(&bond->curr_slave_lock);
3105 return;
3106 }
3107
3108 read_unlock(&bond->curr_slave_lock);
3109
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 /* if we don't have a curr_active_slave, search for the next available
3111 * backup slave from the current_arp_slave and make it the candidate
3112 * for becoming the curr_active_slave
3113 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003114
3115 if (!bond->current_arp_slave) {
3116 bond->current_arp_slave = bond->first_slave;
3117 if (!bond->current_arp_slave)
3118 return;
3119 }
3120
3121 bond_set_slave_inactive_flags(bond->current_arp_slave);
3122
3123 /* search for next candidate */
3124 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3125 if (IS_UP(slave->dev)) {
3126 slave->link = BOND_LINK_BACK;
3127 bond_set_slave_active_flags(slave);
3128 bond_arp_send_all(bond, slave);
3129 slave->jiffies = jiffies;
3130 bond->current_arp_slave = slave;
3131 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 }
3133
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003134 /* if the link state is up at this point, we
3135 * mark it down - this can happen if we have
3136 * simultaneous link failures and
3137 * reselect_active_interface doesn't make this
3138 * one the current slave so it is still marked
3139 * up when it is actually down
3140 */
3141 if (slave->link == BOND_LINK_UP) {
3142 slave->link = BOND_LINK_DOWN;
3143 if (slave->link_failure_count < UINT_MAX)
3144 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003146 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003148 pr_info("%s: backup interface %s is now down.\n",
3149 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 }
3151 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003152}
3153
3154void bond_activebackup_arp_mon(struct work_struct *work)
3155{
3156 struct bonding *bond = container_of(work, struct bonding,
3157 arp_work.work);
3158 int delta_in_ticks;
3159
3160 read_lock(&bond->lock);
3161
3162 if (bond->kill_timers)
3163 goto out;
3164
3165 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3166
3167 if (bond->slave_cnt == 0)
3168 goto re_arm;
3169
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003170 if (bond->send_grat_arp) {
3171 read_lock(&bond->curr_slave_lock);
3172 bond_send_gratuitous_arp(bond);
3173 read_unlock(&bond->curr_slave_lock);
3174 }
3175
Brian Haley305d5522008-11-04 17:51:14 -08003176 if (bond->send_unsol_na) {
3177 read_lock(&bond->curr_slave_lock);
3178 bond_send_unsolicited_na(bond);
3179 read_unlock(&bond->curr_slave_lock);
3180 }
3181
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003182 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3183 read_unlock(&bond->lock);
3184 rtnl_lock();
3185 read_lock(&bond->lock);
3186
3187 bond_ab_arp_commit(bond, delta_in_ticks);
3188
3189 read_unlock(&bond->lock);
3190 rtnl_unlock();
3191 read_lock(&bond->lock);
3192 }
3193
3194 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
3196re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003197 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003198 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199out:
3200 read_unlock(&bond->lock);
3201}
3202
3203/*------------------------------ proc/seq_file-------------------------------*/
3204
3205#ifdef CONFIG_PROC_FS
3206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazete4a7b932010-10-29 01:52:46 +00003208 __acquires(RCU)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003209 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
3211 struct bonding *bond = seq->private;
3212 loff_t off = 0;
3213 struct slave *slave;
3214 int i;
3215
3216 /* make sure the bond won't be taken away */
Eric Dumazete4a7b932010-10-29 01:52:46 +00003217 rcu_read_lock();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003218 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003220 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
3223 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003224 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 }
3227
3228 return NULL;
3229}
3230
3231static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3232{
3233 struct bonding *bond = seq->private;
3234 struct slave *slave = v;
3235
3236 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003237 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240 slave = slave->next;
3241
3242 return (slave == bond->first_slave) ? NULL : slave;
3243}
3244
3245static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003246 __releases(&bond->lock)
Eric Dumazete4a7b932010-10-29 01:52:46 +00003247 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248{
3249 struct bonding *bond = seq->private;
3250
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003251 read_unlock(&bond->lock);
Eric Dumazete4a7b932010-10-29 01:52:46 +00003252 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253}
3254
3255static void bond_info_show_master(struct seq_file *seq)
3256{
3257 struct bonding *bond = seq->private;
3258 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003259 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
3261 read_lock(&bond->curr_slave_lock);
3262 curr = bond->curr_active_slave;
3263 read_unlock(&bond->curr_slave_lock);
3264
Jay Vosburghdd957c52007-10-09 19:57:24 -07003265 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 bond_mode_name(bond->params.mode));
3267
Jay Vosburghdd957c52007-10-09 19:57:24 -07003268 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3269 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003270 seq_printf(seq, " (fail_over_mac %s)",
3271 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003272
3273 seq_printf(seq, "\n");
3274
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003275 if (bond->params.mode == BOND_MODE_XOR ||
3276 bond->params.mode == BOND_MODE_8023AD) {
3277 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3278 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3279 bond->params.xmit_policy);
3280 }
3281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003283 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003284 (bond->primary_slave) ?
3285 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003286 if (bond->primary_slave)
3287 seq_printf(seq, " (primary_reselect %s)",
3288 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Jiri Pirkoa5499522009-09-25 03:28:09 +00003290 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 (curr) ? curr->dev->name : "None");
3292 }
3293
Jay Vosburghff59c452006-03-27 13:27:43 -08003294 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3295 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3297 seq_printf(seq, "Up Delay (ms): %d\n",
3298 bond->params.updelay * bond->params.miimon);
3299 seq_printf(seq, "Down Delay (ms): %d\n",
3300 bond->params.downdelay * bond->params.miimon);
3301
Mitch Williams4756b022005-11-09 10:36:25 -08003302
3303 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003304 if (bond->params.arp_interval > 0) {
3305 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003306 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3307 bond->params.arp_interval);
3308
3309 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3310
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003311 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003312 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003313 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003314 if (printed)
3315 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003316 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003317 printed = 1;
3318 }
3319 seq_printf(seq, "\n");
3320 }
3321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 if (bond->params.mode == BOND_MODE_8023AD) {
3323 struct ad_info ad_info;
3324
3325 seq_puts(seq, "\n802.3ad info\n");
3326 seq_printf(seq, "LACP rate: %s\n",
3327 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003328 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3329 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3332 seq_printf(seq, "bond %s has no active aggregator\n",
3333 bond->dev->name);
3334 } else {
3335 seq_printf(seq, "Active Aggregator Info:\n");
3336
3337 seq_printf(seq, "\tAggregator ID: %d\n",
3338 ad_info.aggregator_id);
3339 seq_printf(seq, "\tNumber of ports: %d\n",
3340 ad_info.ports);
3341 seq_printf(seq, "\tActor Key: %d\n",
3342 ad_info.actor_key);
3343 seq_printf(seq, "\tPartner Key: %d\n",
3344 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003345 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3346 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 }
3348 }
3349}
3350
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003351static void bond_info_show_slave(struct seq_file *seq,
3352 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353{
3354 struct bonding *bond = seq->private;
3355
3356 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3357 seq_printf(seq, "MII Status: %s\n",
3358 (slave->link == BOND_LINK_UP) ? "up" : "down");
Krzysztof Oledzkidd53df22010-09-30 06:19:04 +00003359 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
3360 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
Kenzo Iwami655096452006-09-22 21:53:08 -07003361 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 slave->link_failure_count);
3363
Johannes Berge1749612008-10-27 15:59:26 -07003364 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
3366 if (bond->params.mode == BOND_MODE_8023AD) {
3367 const struct aggregator *agg
3368 = SLAVE_AD_INFO(slave).port.aggregator;
3369
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003370 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 seq_printf(seq, "Aggregator ID: %d\n",
3372 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003373 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003376 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377}
3378
3379static int bond_info_seq_show(struct seq_file *seq, void *v)
3380{
3381 if (v == SEQ_START_TOKEN) {
3382 seq_printf(seq, "%s\n", version);
3383 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003384 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
3387 return 0;
3388}
3389
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003390static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 .start = bond_info_seq_start,
3392 .next = bond_info_seq_next,
3393 .stop = bond_info_seq_stop,
3394 .show = bond_info_seq_show,
3395};
3396
3397static int bond_info_open(struct inode *inode, struct file *file)
3398{
3399 struct seq_file *seq;
3400 struct proc_dir_entry *proc;
3401 int res;
3402
3403 res = seq_open(file, &bond_info_seq_ops);
3404 if (!res) {
3405 /* recover the pointer buried in proc_dir_entry data */
3406 seq = file->private_data;
3407 proc = PDE(inode);
3408 seq->private = proc->data;
3409 }
3410
3411 return res;
3412}
3413
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003414static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 .owner = THIS_MODULE,
3416 .open = bond_info_open,
3417 .read = seq_read,
3418 .llseek = seq_lseek,
3419 .release = seq_release,
3420};
3421
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003422static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423{
3424 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003425 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003427 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003428 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003429 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003430 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003431 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003432 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3433 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003434 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437}
3438
3439static void bond_remove_proc_entry(struct bonding *bond)
3440{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003441 struct net_device *bond_dev = bond->dev;
3442 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3443
3444 if (bn->proc_dir && bond->proc_entry) {
3445 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 memset(bond->proc_file_name, 0, IFNAMSIZ);
3447 bond->proc_entry = NULL;
3448 }
3449}
3450
3451/* Create the bonding directory under /proc/net, if doesn't exist yet.
3452 * Caller must hold rtnl_lock.
3453 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003454static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003456 if (!bn->proc_dir) {
3457 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3458 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003459 pr_warning("Warning: cannot create /proc/net/%s\n",
3460 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 }
3462}
3463
3464/* Destroy the bonding directory under /proc/net, if empty.
3465 * Caller must hold rtnl_lock.
3466 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003467static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003469 if (bn->proc_dir) {
3470 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3471 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 }
3473}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003474
3475#else /* !CONFIG_PROC_FS */
3476
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003477static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003478{
3479}
3480
3481static void bond_remove_proc_entry(struct bonding *bond)
3482{
3483}
3484
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003485static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003486{
3487}
3488
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003489static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003490{
3491}
3492
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493#endif /* CONFIG_PROC_FS */
3494
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003495
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496/*-------------------------- netdev event handling --------------------------*/
3497
3498/*
3499 * Change device name
3500 */
3501static int bond_event_changename(struct bonding *bond)
3502{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 bond_remove_proc_entry(bond);
3504 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003505
Taku Izumif073c7c2010-12-09 15:17:13 +00003506 bond_debug_reregister(bond);
3507
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 return NOTIFY_DONE;
3509}
3510
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003511static int bond_master_netdev_event(unsigned long event,
3512 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513{
Wang Chen454d7c92008-11-12 23:37:49 -08003514 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
3516 switch (event) {
3517 case NETDEV_CHANGENAME:
3518 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 default:
3520 break;
3521 }
3522
3523 return NOTIFY_DONE;
3524}
3525
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003526static int bond_slave_netdev_event(unsigned long event,
3527 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528{
3529 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003530 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531
3532 switch (event) {
3533 case NETDEV_UNREGISTER:
3534 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003535 if (bond->setup_by_slave)
3536 bond_release_and_destroy(bond_dev, slave_dev);
3537 else
3538 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 }
3540 break;
3541 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003542 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3543 struct slave *slave;
3544
3545 slave = bond_get_slave_by_dev(bond, slave_dev);
3546 if (slave) {
3547 u16 old_speed = slave->speed;
3548 u16 old_duplex = slave->duplex;
3549
3550 bond_update_speed_duplex(slave);
3551
3552 if (bond_is_lb(bond))
3553 break;
3554
3555 if (old_speed != slave->speed)
3556 bond_3ad_adapter_speed_changed(slave);
3557 if (old_duplex != slave->duplex)
3558 bond_3ad_adapter_duplex_changed(slave);
3559 }
3560 }
3561
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 break;
3563 case NETDEV_DOWN:
3564 /*
3565 * ... Or is it this?
3566 */
3567 break;
3568 case NETDEV_CHANGEMTU:
3569 /*
3570 * TODO: Should slaves be allowed to
3571 * independently alter their MTU? For
3572 * an active-backup bond, slaves need
3573 * not be the same type of device, so
3574 * MTUs may vary. For other modes,
3575 * slaves arguably should have the
3576 * same MTUs. To do this, we'd need to
3577 * take over the slave's change_mtu
3578 * function for the duration of their
3579 * servitude.
3580 */
3581 break;
3582 case NETDEV_CHANGENAME:
3583 /*
3584 * TODO: handle changing the primary's name
3585 */
3586 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003587 case NETDEV_FEAT_CHANGE:
3588 bond_compute_features(bond);
3589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 default:
3591 break;
3592 }
3593
3594 return NOTIFY_DONE;
3595}
3596
3597/*
3598 * bond_netdev_event: handle netdev notifier chain events.
3599 *
3600 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003601 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 * locks for us to safely manipulate the slave devices (RTNL lock,
3603 * dev_probe_lock).
3604 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003605static int bond_netdev_event(struct notifier_block *this,
3606 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607{
3608 struct net_device *event_dev = (struct net_device *)ptr;
3609
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003610 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003611 event_dev ? event_dev->name : "None",
3612 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003614 if (!(event_dev->priv_flags & IFF_BONDING))
3615 return NOTIFY_DONE;
3616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003618 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 return bond_master_netdev_event(event, event_dev);
3620 }
3621
3622 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003623 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 return bond_slave_netdev_event(event, event_dev);
3625 }
3626
3627 return NOTIFY_DONE;
3628}
3629
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003630/*
3631 * bond_inetaddr_event: handle inetaddr notifier chain events.
3632 *
3633 * We keep track of device IPs primarily to use as source addresses in
3634 * ARP monitor probes (rather than spewing out broadcasts all the time).
3635 *
3636 * We track one IP for the main device (if it has one), plus one per VLAN.
3637 */
3638static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3639{
3640 struct in_ifaddr *ifa = ptr;
3641 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003642 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003643 struct bonding *bond;
3644 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003645
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003646 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003647 if (bond->dev == event_dev) {
3648 switch (event) {
3649 case NETDEV_UP:
3650 bond->master_ip = ifa->ifa_local;
3651 return NOTIFY_OK;
3652 case NETDEV_DOWN:
3653 bond->master_ip = bond_glean_dev_ip(bond->dev);
3654 return NOTIFY_OK;
3655 default:
3656 return NOTIFY_DONE;
3657 }
3658 }
3659
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003660 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003661 if (!bond->vlgrp)
3662 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003663 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003664 if (vlan_dev == event_dev) {
3665 switch (event) {
3666 case NETDEV_UP:
3667 vlan->vlan_ip = ifa->ifa_local;
3668 return NOTIFY_OK;
3669 case NETDEV_DOWN:
3670 vlan->vlan_ip =
3671 bond_glean_dev_ip(vlan_dev);
3672 return NOTIFY_OK;
3673 default:
3674 return NOTIFY_DONE;
3675 }
3676 }
3677 }
3678 }
3679 return NOTIFY_DONE;
3680}
3681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682static struct notifier_block bond_netdev_notifier = {
3683 .notifier_call = bond_netdev_event,
3684};
3685
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003686static struct notifier_block bond_inetaddr_notifier = {
3687 .notifier_call = bond_inetaddr_event,
3688};
3689
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690/*-------------------------- Packet type handling ---------------------------*/
3691
3692/* register to receive lacpdus on a bond */
3693static void bond_register_lacpdu(struct bonding *bond)
3694{
3695 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3696
3697 /* initialize packet type */
3698 pk_type->type = PKT_TYPE_LACPDU;
3699 pk_type->dev = bond->dev;
3700 pk_type->func = bond_3ad_lacpdu_recv;
3701
3702 dev_add_pack(pk_type);
3703}
3704
3705/* unregister to receive lacpdus on a bond */
3706static void bond_unregister_lacpdu(struct bonding *bond)
3707{
3708 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3709}
3710
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003711void bond_register_arp(struct bonding *bond)
3712{
3713 struct packet_type *pt = &bond->arp_mon_pt;
3714
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003715 if (pt->type)
3716 return;
3717
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003718 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003719 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003720 pt->func = bond_arp_rcv;
3721 dev_add_pack(pt);
3722}
3723
3724void bond_unregister_arp(struct bonding *bond)
3725{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003726 struct packet_type *pt = &bond->arp_mon_pt;
3727
3728 dev_remove_pack(pt);
3729 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003730}
3731
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003732/*---------------------------- Hashing Policies -----------------------------*/
3733
3734/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003735 * Hash for the output device based upon layer 2 and layer 3 data. If
3736 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3737 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003738static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003739{
3740 struct ethhdr *data = (struct ethhdr *)skb->data;
3741 struct iphdr *iph = ip_hdr(skb);
3742
Brian Haleyf14c4e42008-09-02 10:08:08 -04003743 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003744 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003745 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003746 }
3747
Jasper Spaansd3da6832009-10-23 04:08:46 +00003748 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003749}
3750
3751/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003752 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003753 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3754 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3755 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003756static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003757{
3758 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003759 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003760 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003761 int layer4_xor = 0;
3762
Brian Haleyf14c4e42008-09-02 10:08:08 -04003763 if (skb->protocol == htons(ETH_P_IP)) {
3764 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003765 (iph->protocol == IPPROTO_TCP ||
3766 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003767 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003768 }
3769 return (layer4_xor ^
3770 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3771
3772 }
3773
Jasper Spaansd3da6832009-10-23 04:08:46 +00003774 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003775}
3776
3777/*
3778 * Hash for the output device based upon layer 2 data
3779 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003780static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003781{
3782 struct ethhdr *data = (struct ethhdr *)skb->data;
3783
Jasper Spaansd3da6832009-10-23 04:08:46 +00003784 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003785}
3786
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787/*-------------------------- Device entry points ----------------------------*/
3788
3789static int bond_open(struct net_device *bond_dev)
3790{
Wang Chen454d7c92008-11-12 23:37:49 -08003791 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
3793 bond->kill_timers = 0;
3794
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003795 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3796
Holger Eitzenberger58402052008-12-09 23:07:13 -08003797 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 /* bond_alb_initialize must be called before the timer
3799 * is started.
3800 */
3801 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3802 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003803 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 }
3805
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003806 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3807 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 }
3809
3810 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003811 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3812 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 }
3814
3815 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003816 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3817 INIT_DELAYED_WORK(&bond->arp_work,
3818 bond_activebackup_arp_mon);
3819 else
3820 INIT_DELAYED_WORK(&bond->arp_work,
3821 bond_loadbalance_arp_mon);
3822
3823 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003824 if (bond->params.arp_validate)
3825 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 }
3827
3828 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003829 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003830 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 /* register to receive LACPDUs */
3832 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003833 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 }
3835
3836 return 0;
3837}
3838
3839static int bond_close(struct net_device *bond_dev)
3840{
Wang Chen454d7c92008-11-12 23:37:49 -08003841 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
3843 if (bond->params.mode == BOND_MODE_8023AD) {
3844 /* Unregister the receive of LACPDUs */
3845 bond_unregister_lacpdu(bond);
3846 }
3847
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003848 if (bond->params.arp_validate)
3849 bond_unregister_arp(bond);
3850
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 write_lock_bh(&bond->lock);
3852
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003853 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003854 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
3856 /* signal timers not to re-arm */
3857 bond->kill_timers = 1;
3858
3859 write_unlock_bh(&bond->lock);
3860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003862 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 }
3864
3865 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003866 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 }
3868
3869 switch (bond->params.mode) {
3870 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003871 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 break;
3873 case BOND_MODE_TLB:
3874 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003875 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 break;
3877 default:
3878 break;
3879 }
3880
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003881 if (delayed_work_pending(&bond->mcast_work))
3882 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Holger Eitzenberger58402052008-12-09 23:07:13 -08003884 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 /* Must be called only after all
3886 * slaves have been released
3887 */
3888 bond_alb_deinitialize(bond);
3889 }
3890
3891 return 0;
3892}
3893
Eric Dumazet28172732010-07-07 14:58:56 -07003894static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3895 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896{
Wang Chen454d7c92008-11-12 23:37:49 -08003897 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003898 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 struct slave *slave;
3900 int i;
3901
Eric Dumazet28172732010-07-07 14:58:56 -07003902 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904 read_lock_bh(&bond->lock);
3905
3906 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003907 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003908 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003909
Eric Dumazet28172732010-07-07 14:58:56 -07003910 stats->rx_packets += sstats->rx_packets;
3911 stats->rx_bytes += sstats->rx_bytes;
3912 stats->rx_errors += sstats->rx_errors;
3913 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Eric Dumazet28172732010-07-07 14:58:56 -07003915 stats->tx_packets += sstats->tx_packets;
3916 stats->tx_bytes += sstats->tx_bytes;
3917 stats->tx_errors += sstats->tx_errors;
3918 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Eric Dumazet28172732010-07-07 14:58:56 -07003920 stats->multicast += sstats->multicast;
3921 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Eric Dumazet28172732010-07-07 14:58:56 -07003923 stats->rx_length_errors += sstats->rx_length_errors;
3924 stats->rx_over_errors += sstats->rx_over_errors;
3925 stats->rx_crc_errors += sstats->rx_crc_errors;
3926 stats->rx_frame_errors += sstats->rx_frame_errors;
3927 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3928 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Eric Dumazet28172732010-07-07 14:58:56 -07003930 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3931 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3932 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3933 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3934 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 }
3936
3937 read_unlock_bh(&bond->lock);
3938
3939 return stats;
3940}
3941
3942static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3943{
3944 struct net_device *slave_dev = NULL;
3945 struct ifbond k_binfo;
3946 struct ifbond __user *u_binfo = NULL;
3947 struct ifslave k_sinfo;
3948 struct ifslave __user *u_sinfo = NULL;
3949 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 int res = 0;
3951
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003952 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 case SIOCGMIIPHY:
3956 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003957 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 mii->phy_id = 0;
3961 /* Fall Through */
3962 case SIOCGMIIREG:
3963 /*
3964 * We do this again just in case we were called by SIOCGMIIREG
3965 * instead of SIOCGMIIPHY.
3966 */
3967 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003968 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003970
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
3972 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003973 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003975 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003977 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003979
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003981 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 }
3983
3984 return 0;
3985 case BOND_INFO_QUERY_OLD:
3986 case SIOCBONDINFOQUERY:
3987 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3988
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003989 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003993 if (res == 0 &&
3994 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3995 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
3997 return res;
3998 case BOND_SLAVE_INFO_QUERY_OLD:
3999 case SIOCBONDSLAVEINFOQUERY:
4000 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
4001
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004002 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
4005 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004006 if (res == 0 &&
4007 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
4008 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
4010 return res;
4011 default:
4012 /* Go on */
4013 break;
4014 }
4015
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004016 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004019 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004021 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004023 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004025 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004026 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 switch (cmd) {
4028 case BOND_ENSLAVE_OLD:
4029 case SIOCBONDENSLAVE:
4030 res = bond_enslave(bond_dev, slave_dev);
4031 break;
4032 case BOND_RELEASE_OLD:
4033 case SIOCBONDRELEASE:
4034 res = bond_release(bond_dev, slave_dev);
4035 break;
4036 case BOND_SETHWADDR_OLD:
4037 case SIOCBONDSETHWADDR:
4038 res = bond_sethwaddr(bond_dev, slave_dev);
4039 break;
4040 case BOND_CHANGE_ACTIVE_OLD:
4041 case SIOCBONDCHANGEACTIVE:
4042 res = bond_ioctl_change_active(bond_dev, slave_dev);
4043 break;
4044 default:
4045 res = -EOPNOTSUPP;
4046 }
4047
4048 dev_put(slave_dev);
4049 }
4050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 return res;
4052}
4053
Jiri Pirko22bedad32010-04-01 21:22:57 +00004054static bool bond_addr_in_mc_list(unsigned char *addr,
4055 struct netdev_hw_addr_list *list,
4056 int addrlen)
4057{
4058 struct netdev_hw_addr *ha;
4059
4060 netdev_hw_addr_list_for_each(ha, list)
4061 if (!memcmp(ha->addr, addr, addrlen))
4062 return true;
4063
4064 return false;
4065}
4066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067static void bond_set_multicast_list(struct net_device *bond_dev)
4068{
Wang Chen454d7c92008-11-12 23:37:49 -08004069 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004070 struct netdev_hw_addr *ha;
4071 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 /*
4074 * Do promisc before checking multicast_mode
4075 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004076 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004077 /*
4078 * FIXME: Need to handle the error when one of the multi-slaves
4079 * encounters error.
4080 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004083
4084 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004086
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
4088 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004089 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004090 /*
4091 * FIXME: Need to handle the error when one of the multi-slaves
4092 * encounters error.
4093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004096
4097 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004101 read_lock(&bond->lock);
4102
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 bond->flags = bond_dev->flags;
4104
4105 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004106 netdev_for_each_mc_addr(ha, bond_dev) {
4107 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4108 bond_dev->addr_len);
4109 if (!found)
4110 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 }
4112
4113 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004114 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4115 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4116 bond_dev->addr_len);
4117 if (!found)
4118 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 }
4120
4121 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004122 __hw_addr_flush(&bond->mc_list);
4123 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4124 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004126 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127}
4128
Stephen Hemminger00829822008-11-20 20:14:53 -08004129static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4130{
4131 struct bonding *bond = netdev_priv(dev);
4132 struct slave *slave = bond->first_slave;
4133
4134 if (slave) {
4135 const struct net_device_ops *slave_ops
4136 = slave->dev->netdev_ops;
4137 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004138 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004139 }
4140 return 0;
4141}
4142
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143/*
4144 * Change the MTU of all of a master's slaves to match the master
4145 */
4146static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4147{
Wang Chen454d7c92008-11-12 23:37:49 -08004148 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 struct slave *slave, *stop_at;
4150 int res = 0;
4151 int i;
4152
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004153 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004154 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
4156 /* Can't hold bond->lock with bh disabled here since
4157 * some base drivers panic. On the other hand we can't
4158 * hold bond->lock without bh disabled because we'll
4159 * deadlock. The only solution is to rely on the fact
4160 * that we're under rtnl_lock here, and the slaves
4161 * list won't change. This doesn't solve the problem
4162 * of setting the slave's MTU while it is
4163 * transmitting, but the assumption is that the base
4164 * driver can handle that.
4165 *
4166 * TODO: figure out a way to safely iterate the slaves
4167 * list, but without holding a lock around the actual
4168 * call to the base driver.
4169 */
4170
4171 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004172 pr_debug("s %p s->p %p c_m %p\n",
4173 slave,
4174 slave->prev,
4175 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004176
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 res = dev_set_mtu(slave->dev, new_mtu);
4178
4179 if (res) {
4180 /* If we failed to set the slave's mtu to the new value
4181 * we must abort the operation even in ACTIVE_BACKUP
4182 * mode, because if we allow the backup slaves to have
4183 * different mtu values than the active slave we'll
4184 * need to change their mtu when doing a failover. That
4185 * means changing their mtu from timer context, which
4186 * is probably not a good idea.
4187 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004188 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 goto unwind;
4190 }
4191 }
4192
4193 bond_dev->mtu = new_mtu;
4194
4195 return 0;
4196
4197unwind:
4198 /* unwind from head to the slave that failed */
4199 stop_at = slave;
4200 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4201 int tmp_res;
4202
4203 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4204 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004205 pr_debug("unwind err %d dev %s\n",
4206 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 }
4208 }
4209
4210 return res;
4211}
4212
4213/*
4214 * Change HW address
4215 *
4216 * Note that many devices must be down to change the HW address, and
4217 * downing the master releases all slaves. We can make bonds full of
4218 * bonding devices to test this, however.
4219 */
4220static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4221{
Wang Chen454d7c92008-11-12 23:37:49 -08004222 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 struct sockaddr *sa = addr, tmp_sa;
4224 struct slave *slave, *stop_at;
4225 int res = 0;
4226 int i;
4227
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004228 if (bond->params.mode == BOND_MODE_ALB)
4229 return bond_alb_set_mac_address(bond_dev, addr);
4230
4231
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004232 pr_debug("bond=%p, name=%s\n",
4233 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Jay Vosburghdd957c52007-10-09 19:57:24 -07004235 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004236 * If fail_over_mac is set to active, do nothing and return
4237 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004238 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004239 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004240 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004241
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004242 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
4245 /* Can't hold bond->lock with bh disabled here since
4246 * some base drivers panic. On the other hand we can't
4247 * hold bond->lock without bh disabled because we'll
4248 * deadlock. The only solution is to rely on the fact
4249 * that we're under rtnl_lock here, and the slaves
4250 * list won't change. This doesn't solve the problem
4251 * of setting the slave's hw address while it is
4252 * transmitting, but the assumption is that the base
4253 * driver can handle that.
4254 *
4255 * TODO: figure out a way to safely iterate the slaves
4256 * list, but without holding a lock around the actual
4257 * call to the base driver.
4258 */
4259
4260 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004261 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004262 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004264 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004266 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 goto unwind;
4268 }
4269
4270 res = dev_set_mac_address(slave->dev, addr);
4271 if (res) {
4272 /* TODO: consider downing the slave
4273 * and retry ?
4274 * User should expect communications
4275 * breakage anyway until ARP finish
4276 * updating, so...
4277 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004278 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 goto unwind;
4280 }
4281 }
4282
4283 /* success */
4284 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4285 return 0;
4286
4287unwind:
4288 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4289 tmp_sa.sa_family = bond_dev->type;
4290
4291 /* unwind from head to the slave that failed */
4292 stop_at = slave;
4293 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4294 int tmp_res;
4295
4296 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4297 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004298 pr_debug("unwind err %d dev %s\n",
4299 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 }
4301 }
4302
4303 return res;
4304}
4305
4306static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4307{
Wang Chen454d7c92008-11-12 23:37:49 -08004308 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004310 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004311 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
4313 read_lock(&bond->lock);
4314
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004315 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004317 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004318 * Start with the curr_active_slave that joined the bond as the
4319 * default for sending IGMP traffic. For failover purposes one
4320 * needs to maintain some consistency for the interface that will
4321 * send the join/membership reports. The curr_active_slave found
4322 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004323 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004324 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004325 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004327 read_lock(&bond->curr_slave_lock);
4328 slave = bond->curr_active_slave;
4329 read_unlock(&bond->curr_slave_lock);
4330
4331 if (!slave)
4332 goto out;
4333 } else {
4334 /*
4335 * Concurrent TX may collide on rr_tx_counter; we accept
4336 * that as being rare enough not to justify using an
4337 * atomic op here.
4338 */
4339 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4340
4341 bond_for_each_slave(bond, slave, i) {
4342 slave_no--;
4343 if (slave_no < 0)
4344 break;
4345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 }
4347
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004348 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 bond_for_each_slave_from(bond, slave, i, start_at) {
4350 if (IS_UP(slave->dev) &&
4351 (slave->link == BOND_LINK_UP) &&
4352 (slave->state == BOND_STATE_ACTIVE)) {
4353 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 break;
4355 }
4356 }
4357
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358out:
4359 if (res) {
4360 /* no suitable interface, frame not sent */
4361 dev_kfree_skb(skb);
4362 }
4363 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004364 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365}
4366
John W. Linville075897c2005-09-28 17:50:53 -04004367
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368/*
4369 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4370 * the bond has a usable interface.
4371 */
4372static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4373{
Wang Chen454d7c92008-11-12 23:37:49 -08004374 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 int res = 1;
4376
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 read_lock(&bond->lock);
4378 read_lock(&bond->curr_slave_lock);
4379
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004380 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
John W. Linville075897c2005-09-28 17:50:53 -04004383 if (!bond->curr_active_slave)
4384 goto out;
4385
John W. Linville075897c2005-09-28 17:50:53 -04004386 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004389 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 /* no suitable interface, frame not sent */
4391 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004392
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 read_unlock(&bond->curr_slave_lock);
4394 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004395 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396}
4397
4398/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004399 * In bond_xmit_xor() , we determine the output device by using a pre-
4400 * determined xmit_hash_policy(), If the selected device is not enabled,
4401 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 */
4403static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4404{
Wang Chen454d7c92008-11-12 23:37:49 -08004405 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 struct slave *slave, *start_at;
4407 int slave_no;
4408 int i;
4409 int res = 1;
4410
4411 read_lock(&bond->lock);
4412
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004413 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415
Jasper Spaansa361c832009-10-23 04:09:24 +00004416 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
4418 bond_for_each_slave(bond, slave, i) {
4419 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004420 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 }
4423
4424 start_at = slave;
4425
4426 bond_for_each_slave_from(bond, slave, i, start_at) {
4427 if (IS_UP(slave->dev) &&
4428 (slave->link == BOND_LINK_UP) &&
4429 (slave->state == BOND_STATE_ACTIVE)) {
4430 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4431 break;
4432 }
4433 }
4434
4435out:
4436 if (res) {
4437 /* no suitable interface, frame not sent */
4438 dev_kfree_skb(skb);
4439 }
4440 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004441 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442}
4443
4444/*
4445 * in broadcast mode, we send everything to all usable interfaces.
4446 */
4447static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4448{
Wang Chen454d7c92008-11-12 23:37:49 -08004449 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 struct slave *slave, *start_at;
4451 struct net_device *tx_dev = NULL;
4452 int i;
4453 int res = 1;
4454
4455 read_lock(&bond->lock);
4456
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004457 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
4460 read_lock(&bond->curr_slave_lock);
4461 start_at = bond->curr_active_slave;
4462 read_unlock(&bond->curr_slave_lock);
4463
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004464 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
4467 bond_for_each_slave_from(bond, slave, i, start_at) {
4468 if (IS_UP(slave->dev) &&
4469 (slave->link == BOND_LINK_UP) &&
4470 (slave->state == BOND_STATE_ACTIVE)) {
4471 if (tx_dev) {
4472 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4473 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004474 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004475 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 continue;
4477 }
4478
4479 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4480 if (res) {
4481 dev_kfree_skb(skb2);
4482 continue;
4483 }
4484 }
4485 tx_dev = slave->dev;
4486 }
4487 }
4488
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004489 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
4492out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004493 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 /* no suitable interface, frame not sent */
4495 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 /* frame sent to all suitable interfaces */
4498 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004499 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500}
4501
4502/*------------------------- Device initialization ---------------------------*/
4503
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004504static void bond_set_xmit_hash_policy(struct bonding *bond)
4505{
4506 switch (bond->params.xmit_policy) {
4507 case BOND_XMIT_POLICY_LAYER23:
4508 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4509 break;
4510 case BOND_XMIT_POLICY_LAYER34:
4511 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4512 break;
4513 case BOND_XMIT_POLICY_LAYER2:
4514 default:
4515 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4516 break;
4517 }
4518}
4519
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004520/*
4521 * Lookup the slave that corresponds to a qid
4522 */
4523static inline int bond_slave_override(struct bonding *bond,
4524 struct sk_buff *skb)
4525{
4526 int i, res = 1;
4527 struct slave *slave = NULL;
4528 struct slave *check_slave;
4529
4530 read_lock(&bond->lock);
4531
4532 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4533 goto out;
4534
4535 /* Find out if any slaves have the same mapping as this skb. */
4536 bond_for_each_slave(bond, check_slave, i) {
4537 if (check_slave->queue_id == skb->queue_mapping) {
4538 slave = check_slave;
4539 break;
4540 }
4541 }
4542
4543 /* If the slave isn't UP, use default transmit policy. */
4544 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4545 (slave->link == BOND_LINK_UP)) {
4546 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4547 }
4548
4549out:
4550 read_unlock(&bond->lock);
4551 return res;
4552}
4553
4554static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4555{
4556 /*
4557 * This helper function exists to help dev_pick_tx get the correct
4558 * destination queue. Using a helper function skips the a call to
4559 * skb_tx_hash and will put the skbs in the queue we expect on their
4560 * way down to the bonding driver.
4561 */
4562 return skb->queue_mapping;
4563}
4564
Stephen Hemminger424efe92009-08-31 19:50:51 +00004565static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004566{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004567 struct bonding *bond = netdev_priv(dev);
4568
Neil Hormane843fa52010-10-13 16:01:50 +00004569 /*
4570 * If we risk deadlock from transmitting this in the
4571 * netpoll path, tell netpoll to queue the frame for later tx
4572 */
4573 if (is_netpoll_tx_blocked(dev))
4574 return NETDEV_TX_BUSY;
4575
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004576 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4577 if (!bond_slave_override(bond, skb))
4578 return NETDEV_TX_OK;
4579 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004580
4581 switch (bond->params.mode) {
4582 case BOND_MODE_ROUNDROBIN:
4583 return bond_xmit_roundrobin(skb, dev);
4584 case BOND_MODE_ACTIVEBACKUP:
4585 return bond_xmit_activebackup(skb, dev);
4586 case BOND_MODE_XOR:
4587 return bond_xmit_xor(skb, dev);
4588 case BOND_MODE_BROADCAST:
4589 return bond_xmit_broadcast(skb, dev);
4590 case BOND_MODE_8023AD:
4591 return bond_3ad_xmit_xor(skb, dev);
4592 case BOND_MODE_ALB:
4593 case BOND_MODE_TLB:
4594 return bond_alb_xmit(skb, dev);
4595 default:
4596 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004597 pr_err("%s: Error: Unknown bonding mode %d\n",
4598 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004599 WARN_ON_ONCE(1);
4600 dev_kfree_skb(skb);
4601 return NETDEV_TX_OK;
4602 }
4603}
4604
4605
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606/*
4607 * set bond mode specific net device operations
4608 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004609void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004611 struct net_device *bond_dev = bond->dev;
4612
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 switch (mode) {
4614 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 break;
4616 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 break;
4618 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004619 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 break;
4621 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 break;
4623 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004624 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004625 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004628 bond_set_master_alb_flags(bond);
4629 /* FALLTHRU */
4630 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 break;
4632 default:
4633 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004634 pr_err("%s: Error: Unknown bonding mode %d\n",
4635 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 break;
4637 }
4638}
4639
Jay Vosburgh217df672005-09-26 16:11:50 -07004640static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4641 struct ethtool_drvinfo *drvinfo)
4642{
4643 strncpy(drvinfo->driver, DRV_NAME, 32);
4644 strncpy(drvinfo->version, DRV_VERSION, 32);
4645 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4646}
4647
Jeff Garzik7282d492006-09-13 14:30:00 -04004648static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004649 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004650 .get_link = ethtool_op_get_link,
4651 .get_tx_csum = ethtool_op_get_tx_csum,
4652 .get_sg = ethtool_op_get_sg,
4653 .get_tso = ethtool_op_get_tso,
4654 .get_ufo = ethtool_op_get_ufo,
4655 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004656};
4657
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004658static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004659 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004660 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004661 .ndo_open = bond_open,
4662 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004663 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004664 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004665 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004666 .ndo_do_ioctl = bond_do_ioctl,
4667 .ndo_set_multicast_list = bond_set_multicast_list,
4668 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004669 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004670 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004671 .ndo_vlan_rx_register = bond_vlan_rx_register,
4672 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4673 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004674#ifdef CONFIG_NET_POLL_CONTROLLER
4675 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4676 .ndo_poll_controller = bond_poll_controller,
4677#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004678};
4679
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004680static void bond_destructor(struct net_device *bond_dev)
4681{
4682 struct bonding *bond = netdev_priv(bond_dev);
4683 if (bond->wq)
4684 destroy_workqueue(bond->wq);
4685 free_netdev(bond_dev);
4686}
4687
Stephen Hemminger181470f2009-06-12 19:02:52 +00004688static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689{
Wang Chen454d7c92008-11-12 23:37:49 -08004690 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 /* initialize rwlocks */
4693 rwlock_init(&bond->lock);
4694 rwlock_init(&bond->curr_slave_lock);
4695
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004696 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
4698 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 bond->dev = bond_dev;
4700 INIT_LIST_HEAD(&bond->vlan_list);
4701
4702 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004703 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004704 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004705 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004706 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004708 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709
4710 /* Initialize the device options */
4711 bond_dev->tx_queue_len = 0;
4712 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004713 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004714 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4715
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004716 if (bond->params.arp_interval)
4717 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
4719 /* At first, we block adding VLANs. That's the only way to
4720 * prevent problems that occur when adding VLANs over an
4721 * empty bond. The block will be removed once non-challenged
4722 * slaves are enslaved.
4723 */
4724 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4725
Herbert Xu932ff272006-06-09 12:20:56 -07004726 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727 * transmitting */
4728 bond_dev->features |= NETIF_F_LLTX;
4729
4730 /* By default, we declare the bond to be fully
4731 * VLAN hardware accelerated capable. Special
4732 * care is taken in the various xmit functions
4733 * when there are slaves that are not hw accel
4734 * capable
4735 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4737 NETIF_F_HW_VLAN_RX |
4738 NETIF_F_HW_VLAN_FILTER);
4739
Eric Dumazete6599c22010-09-17 09:25:07 +00004740 /* By default, we enable GRO on bonding devices.
4741 * Actual support requires lowlevel drivers are GRO ready.
4742 */
4743 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744}
4745
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004746static void bond_work_cancel_all(struct bonding *bond)
4747{
4748 write_lock_bh(&bond->lock);
4749 bond->kill_timers = 1;
4750 write_unlock_bh(&bond->lock);
4751
4752 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4753 cancel_delayed_work(&bond->mii_work);
4754
4755 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4756 cancel_delayed_work(&bond->arp_work);
4757
4758 if (bond->params.mode == BOND_MODE_ALB &&
4759 delayed_work_pending(&bond->alb_work))
4760 cancel_delayed_work(&bond->alb_work);
4761
4762 if (bond->params.mode == BOND_MODE_8023AD &&
4763 delayed_work_pending(&bond->ad_work))
4764 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004765
4766 if (delayed_work_pending(&bond->mcast_work))
4767 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004768}
4769
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004770/*
4771* Destroy a bonding device.
4772* Must be under rtnl_lock when this function is called.
4773*/
4774static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004775{
Wang Chen454d7c92008-11-12 23:37:49 -08004776 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004777 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004778
WANG Congf6dc31a2010-05-06 00:48:51 -07004779 bond_netpoll_cleanup(bond_dev);
4780
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004781 /* Release the bonded slaves */
4782 bond_release_all(bond_dev);
4783
Jay Vosburgha434e432008-10-30 17:41:15 -07004784 list_del(&bond->bond_list);
4785
4786 bond_work_cancel_all(bond);
4787
Jay Vosburgha434e432008-10-30 17:41:15 -07004788 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004789
Taku Izumif073c7c2010-12-09 15:17:13 +00004790 bond_debug_unregister(bond);
4791
Jiri Pirko22bedad32010-04-01 21:22:57 +00004792 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004793
4794 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4795 list_del(&vlan->vlan_list);
4796 kfree(vlan);
4797 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004798}
4799
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800/*------------------------- Module initialization ---------------------------*/
4801
4802/*
4803 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004804 * number of the mode or its string name. A bit complicated because
4805 * some mode names are substrings of other names, and calls from sysfs
4806 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004808int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809{
Hannes Eder54b87322009-02-14 11:15:49 +00004810 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004811 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004812
Jay Vosburgha42e5342008-01-29 18:07:43 -08004813 for (p = (char *)buf; *p; p++)
4814 if (!(isdigit(*p) || isspace(*p)))
4815 break;
4816
4817 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004818 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004819 else
Hannes Eder54b87322009-02-14 11:15:49 +00004820 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004821
4822 if (!rv)
4823 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
4825 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004826 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004828 if (strcmp(modestr, tbl[i].modename) == 0)
4829 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 }
4831
4832 return -1;
4833}
4834
4835static int bond_check_params(struct bond_params *params)
4836{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004837 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 /*
4840 * Convert string parameters.
4841 */
4842 if (mode) {
4843 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4844 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004845 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846 mode == NULL ? "NULL" : mode);
4847 return -EINVAL;
4848 }
4849 }
4850
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004851 if (xmit_hash_policy) {
4852 if ((bond_mode != BOND_MODE_XOR) &&
4853 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004854 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004855 bond_mode_name(bond_mode));
4856 } else {
4857 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4858 xmit_hashtype_tbl);
4859 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004860 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004861 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004862 xmit_hash_policy);
4863 return -EINVAL;
4864 }
4865 }
4866 }
4867
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 if (lacp_rate) {
4869 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004870 pr_info("lacp_rate param is irrelevant in mode %s\n",
4871 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 } else {
4873 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4874 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004875 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 lacp_rate == NULL ? "NULL" : lacp_rate);
4877 return -EINVAL;
4878 }
4879 }
4880 }
4881
Jay Vosburghfd989c82008-11-04 17:51:16 -08004882 if (ad_select) {
4883 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4884 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004885 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004886 ad_select == NULL ? "NULL" : ad_select);
4887 return -EINVAL;
4888 }
4889
4890 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004891 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004892 }
4893 } else {
4894 params->ad_select = BOND_AD_STABLE;
4895 }
4896
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004897 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004898 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4899 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 max_bonds = BOND_DEFAULT_MAX_BONDS;
4901 }
4902
4903 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004904 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4905 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 miimon = BOND_LINK_MON_INTERV;
4907 }
4908
4909 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004910 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4911 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 updelay = 0;
4913 }
4914
4915 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004916 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4917 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 downdelay = 0;
4919 }
4920
4921 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004922 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4923 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 use_carrier = 1;
4925 }
4926
Moni Shoua7893b242008-05-17 21:10:12 -07004927 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004928 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 -08004929 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004930 num_grat_arp = 1;
4931 }
4932
Brian Haley305d5522008-11-04 17:51:14 -08004933 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004934 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 -08004935 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004936 num_unsol_na = 1;
4937 }
4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 /* reset values for 802.3ad */
4940 if (bond_mode == BOND_MODE_8023AD) {
4941 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004942 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 +00004943 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 miimon = 100;
4945 }
4946 }
4947
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004948 if (tx_queues < 1 || tx_queues > 255) {
4949 pr_warning("Warning: tx_queues (%d) should be between "
4950 "1 and 255, resetting to %d\n",
4951 tx_queues, BOND_DEFAULT_TX_QUEUES);
4952 tx_queues = BOND_DEFAULT_TX_QUEUES;
4953 }
4954
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004955 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4956 pr_warning("Warning: all_slaves_active module parameter (%d), "
4957 "not of valid value (0/1), so it was set to "
4958 "0\n", all_slaves_active);
4959 all_slaves_active = 0;
4960 }
4961
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004962 if (resend_igmp < 0 || resend_igmp > 255) {
4963 pr_warning("Warning: resend_igmp (%d) should be between "
4964 "0 and 255, resetting to %d\n",
4965 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4966 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4967 }
4968
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 /* reset values for TLB/ALB */
4970 if ((bond_mode == BOND_MODE_TLB) ||
4971 (bond_mode == BOND_MODE_ALB)) {
4972 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004973 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 +00004974 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 miimon = 100;
4976 }
4977 }
4978
4979 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004980 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",
4981 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982 }
4983
4984 if (!miimon) {
4985 if (updelay || downdelay) {
4986 /* just warn the user the up/down delay will have
4987 * no effect since miimon is zero...
4988 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004989 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",
4990 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 }
4992 } else {
4993 /* don't allow arp monitoring */
4994 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004995 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4996 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 arp_interval = 0;
4998 }
4999
5000 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005001 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
5002 updelay, miimon,
5003 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 }
5005
5006 updelay /= miimon;
5007
5008 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005009 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
5010 downdelay, miimon,
5011 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 }
5013
5014 downdelay /= miimon;
5015 }
5016
5017 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005018 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
5019 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 arp_interval = BOND_LINK_ARP_INTERV;
5021 }
5022
5023 for (arp_ip_count = 0;
5024 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5025 arp_ip_count++) {
5026 /* not complete check, but should be good enough to
5027 catch mistakes */
5028 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005029 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5030 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 arp_interval = 0;
5032 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04005033 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 arp_target[arp_ip_count] = ip;
5035 }
5036 }
5037
5038 if (arp_interval && !arp_ip_count) {
5039 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005040 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5041 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 arp_interval = 0;
5043 }
5044
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005045 if (arp_validate) {
5046 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005047 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005048 return -EINVAL;
5049 }
5050 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005051 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005052 return -EINVAL;
5053 }
5054
5055 arp_validate_value = bond_parse_parm(arp_validate,
5056 arp_validate_tbl);
5057 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005058 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005059 arp_validate == NULL ? "NULL" : arp_validate);
5060 return -EINVAL;
5061 }
5062 } else
5063 arp_validate_value = 0;
5064
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005066 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 } else if (arp_interval) {
5068 int i;
5069
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005070 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5071 arp_interval,
5072 arp_validate_tbl[arp_validate_value].modename,
5073 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
5075 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005076 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005078 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
Jay Vosburghb8a97872008-06-13 18:12:04 -07005080 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081 /* miimon and arp_interval not set, we need one so things
5082 * work as expected, see bonding.txt for details
5083 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005084 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 -07005085 }
5086
5087 if (primary && !USES_PRIMARY(bond_mode)) {
5088 /* currently, using a primary only makes sense
5089 * in active backup, TLB or ALB modes
5090 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005091 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5092 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 primary = NULL;
5094 }
5095
Jiri Pirkoa5499522009-09-25 03:28:09 +00005096 if (primary && primary_reselect) {
5097 primary_reselect_value = bond_parse_parm(primary_reselect,
5098 pri_reselect_tbl);
5099 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005100 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005101 primary_reselect ==
5102 NULL ? "NULL" : primary_reselect);
5103 return -EINVAL;
5104 }
5105 } else {
5106 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5107 }
5108
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005109 if (fail_over_mac) {
5110 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5111 fail_over_mac_tbl);
5112 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005113 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005114 arp_validate == NULL ? "NULL" : arp_validate);
5115 return -EINVAL;
5116 }
5117
5118 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005119 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005120 } else {
5121 fail_over_mac_value = BOND_FOM_NONE;
5122 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005123
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 /* fill params struct with the proper values */
5125 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005126 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005128 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005129 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005131 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 params->updelay = updelay;
5133 params->downdelay = downdelay;
5134 params->use_carrier = use_carrier;
5135 params->lacp_fast = lacp_fast;
5136 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005137 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005138 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005139 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005140 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00005141 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142
5143 if (primary) {
5144 strncpy(params->primary, primary, IFNAMSIZ);
5145 params->primary[IFNAMSIZ - 1] = 0;
5146 }
5147
5148 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5149
5150 return 0;
5151}
5152
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005153static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005154static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005155
David S. Millere8a04642008-07-17 00:34:19 -07005156static void bond_set_lockdep_class_one(struct net_device *dev,
5157 struct netdev_queue *txq,
5158 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005159{
5160 lockdep_set_class(&txq->_xmit_lock,
5161 &bonding_netdev_xmit_lock_key);
5162}
5163
5164static void bond_set_lockdep_class(struct net_device *dev)
5165{
David S. Millercf508b12008-07-22 14:16:42 -07005166 lockdep_set_class(&dev->addr_list_lock,
5167 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005168 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005169}
5170
Stephen Hemminger181470f2009-06-12 19:02:52 +00005171/*
5172 * Called from registration process
5173 */
5174static int bond_init(struct net_device *bond_dev)
5175{
5176 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005177 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005178
5179 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5180
5181 bond->wq = create_singlethread_workqueue(bond_dev->name);
5182 if (!bond->wq)
5183 return -ENOMEM;
5184
5185 bond_set_lockdep_class(bond_dev);
5186
5187 netif_carrier_off(bond_dev);
5188
5189 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005190 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005191
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005192 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005193
Taku Izumif073c7c2010-12-09 15:17:13 +00005194 bond_debug_register(bond);
5195
Jiri Pirko22bedad32010-04-01 21:22:57 +00005196 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005197 return 0;
5198}
5199
Eric W. Biederman88ead972009-10-29 14:18:25 +00005200static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5201{
5202 if (tb[IFLA_ADDRESS]) {
5203 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5204 return -EINVAL;
5205 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5206 return -EADDRNOTAVAIL;
5207 }
5208 return 0;
5209}
5210
5211static struct rtnl_link_ops bond_link_ops __read_mostly = {
5212 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005213 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005214 .setup = bond_setup,
5215 .validate = bond_validate,
5216};
5217
Mitch Williamsdfe60392005-11-09 10:36:04 -08005218/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005219 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005220 * Caller must NOT hold rtnl_lock; we need to release it here before we
5221 * set up our sysfs entries.
5222 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005223int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005224{
5225 struct net_device *bond_dev;
5226 int res;
5227
5228 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005229
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005230 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5231 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005232 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005233 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005234 rtnl_unlock();
5235 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005236 }
5237
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005238 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005239 bond_dev->rtnl_link_ops = &bond_link_ops;
5240
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005241 if (!name) {
5242 res = dev_alloc_name(bond_dev, "bond%d");
5243 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005244 goto out;
Neil Horman27e6f062010-10-05 03:39:21 +00005245 } else {
5246 /*
5247 * If we're given a name to register
5248 * we need to ensure that its not already
5249 * registered
5250 */
5251 res = -EEXIST;
5252 if (__dev_get_by_name(net, name) != NULL)
5253 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005254 }
5255
Mitch Williamsdfe60392005-11-09 10:36:04 -08005256 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005257
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005258out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005259 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005260 if (res < 0)
5261 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005262 return res;
5263}
5264
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005265static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005266{
Eric W. Biederman15449742009-11-29 15:46:04 +00005267 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005268
5269 bn->net = net;
5270 INIT_LIST_HEAD(&bn->dev_list);
5271
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005272 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005273
5274 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005275}
5276
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005277static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005278{
Eric W. Biederman15449742009-11-29 15:46:04 +00005279 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005280
5281 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005282}
5283
5284static struct pernet_operations bond_net_ops = {
5285 .init = bond_net_init,
5286 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005287 .id = &bond_net_id,
5288 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005289};
5290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291static int __init bonding_init(void)
5292{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293 int i;
5294 int res;
5295
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005296 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
Mitch Williamsdfe60392005-11-09 10:36:04 -08005298 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005299 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301
Neil Hormane843fa52010-10-13 16:01:50 +00005302#ifdef CONFIG_NET_POLL_CONTROLLER
5303 if (!alloc_cpumask_var(&netpoll_block_tx, GFP_KERNEL)) {
5304 res = -ENOMEM;
5305 goto out;
5306 }
5307#endif
5308
Eric W. Biederman15449742009-11-29 15:46:04 +00005309 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005310 if (res)
5311 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005312
Eric W. Biederman88ead972009-10-29 14:18:25 +00005313 res = rtnl_link_register(&bond_link_ops);
5314 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005315 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005316
Taku Izumif073c7c2010-12-09 15:17:13 +00005317 bond_create_debugfs();
5318
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005320 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005321 if (res)
5322 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 }
5324
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005325 res = bond_create_sysfs();
5326 if (res)
5327 goto err;
5328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005330 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005331 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005332out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005334err:
5335 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005336err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005337 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005338#ifdef CONFIG_NET_POLL_CONTROLLER
5339 free_cpumask_var(netpoll_block_tx);
5340#endif
Eric W. Biederman88ead972009-10-29 14:18:25 +00005341 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005342
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343}
5344
5345static void __exit bonding_exit(void)
5346{
5347 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005348 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005349 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005351 bond_destroy_sysfs();
Taku Izumif073c7c2010-12-09 15:17:13 +00005352 bond_destroy_debugfs();
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005353
Eric W. Biederman88ead972009-10-29 14:18:25 +00005354 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005355 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005356
5357#ifdef CONFIG_NET_POLL_CONTROLLER
5358 free_cpumask_var(netpoll_block_tx);
5359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360}
5361
5362module_init(bonding_init);
5363module_exit(bonding_exit);
5364MODULE_LICENSE("GPL");
5365MODULE_VERSION(DRV_VERSION);
5366MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5367MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005368MODULE_ALIAS_RTNL_LINK("bond");