blob: 3b16c34ed86e93ddfacd0338ef42f687ab70fce7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * originally based on the dummy device.
3 *
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
6 *
7 * bonding.c: an Ethernet Bonding driver
8 *
9 * This is useful to talk to a Cisco EtherChannel compatible equipment:
10 * Cisco 5500
11 * Sun Trunking (Solaris)
12 * Alteon AceDirector Trunks
13 * Linux Bonding
14 * and probably many L2 switches ...
15 *
16 * How it works:
17 * ifconfig bond0 ipaddress netmask up
18 * will setup a network device, with an ip address. No mac address
19 * will be assigned at this time. The hw mac address will come from
20 * the first slave bonded to the channel. All slaves will then use
21 * this hw mac address.
22 *
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
25 *
26 * ifenslave bond0 eth0
27 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
28 * a: be used as initial mac address
29 * b: if a hw mac address already is there, eth0's hw mac address
30 * will then be set from bond0.
31 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Joe Perchesa4aee5c2009-12-13 20:06:07 -080034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/kernel.h>
37#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/types.h>
39#include <linux/fcntl.h>
40#include <linux/interrupt.h>
41#include <linux/ptrace.h>
42#include <linux/ioport.h>
43#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040046#include <linux/tcp.h>
47#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000059#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/errno.h>
61#include <linux/netdevice.h>
WANG Congf6dc31a2010-05-06 00:48:51 -070062#include <linux/netpoll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080064#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/etherdevice.h>
66#include <linux/skbuff.h>
67#include <net/sock.h>
68#include <linux/rtnetlink.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
71#include <linux/smp.h>
72#include <linux/if_ether.h>
73#include <net/arp.h>
74#include <linux/mii.h>
75#include <linux/ethtool.h>
76#include <linux/if_vlan.h>
77#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080078#include <linux/jiffies.h>
Neil Hormane843fa52010-10-13 16:01:50 +000079#include <linux/preempt.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040080#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020081#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000082#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include "bonding.h"
84#include "bond_3ad.h"
85#include "bond_alb.h"
86
87/*---------------------------- Module parameters ----------------------------*/
88
89/* monitor all links that often (in milliseconds). <=0 disables monitoring */
90#define BOND_LINK_MON_INTERV 0
91#define BOND_LINK_ARP_INTERV 0
92
93static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +000094static int tx_queues = BOND_DEFAULT_TX_QUEUES;
Moni Shoua7893b242008-05-17 21:10:12 -070095static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080096static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000098static int updelay;
99static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *mode;
102static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000103static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000104static char *lacp_rate;
105static char *ad_select;
106static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000108static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
109static char *arp_validate;
110static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000111static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000112static struct bond_params bonding_defaults;
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000113static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115module_param(max_bonds, int, 0);
116MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000117module_param(tx_queues, int, 0);
118MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Moni Shoua7893b242008-05-17 21:10:12 -0700119module_param(num_grat_arp, int, 0644);
120MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800121module_param(num_unsol_na, int, 0644);
122MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123module_param(miimon, int, 0);
124MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
125module_param(updelay, int, 0);
126MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
127module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800128MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
129 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800131MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
132 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800134MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
135 "1 for active-backup, 2 for balance-xor, "
136 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
137 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138module_param(primary, charp, 0);
139MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000140module_param(primary_reselect, charp, 0);
141MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
142 "once it comes up; "
143 "0 for always (default), "
144 "1 for only if speed of primary is "
145 "better, "
146 "2 for only on active slave "
147 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800149MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
150 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800151module_param(ad_select, charp, 0);
152MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400153module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800154MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
155 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156module_param(arp_interval, int, 0);
157MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
158module_param_array(arp_ip_target, charp, NULL, 0);
159MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700160module_param(arp_validate, charp, 0);
161MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700162module_param(fail_over_mac, charp, 0);
163MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000164module_param(all_slaves_active, int, 0);
165MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
166 "by setting active flag for all slaves. "
167 "0 for never (default), 1 for always.");
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000168module_param(resend_igmp, int, 0);
169MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*----------------------------- Global variables ----------------------------*/
172
Neil Hormane843fa52010-10-13 16:01:50 +0000173#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +0000174atomic_t netpoll_block_tx = ATOMIC_INIT(0);
Neil Hormane843fa52010-10-13 16:01:50 +0000175#endif
176
Arjan van de Venf71e1302006-03-03 21:33:57 -0500177static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
179
Eric Dumazetf99189b2009-11-17 10:42:49 +0000180int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000182static __be32 arp_target[BOND_MAX_ARP_TARGETS];
183static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000185static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
186static int lacp_fast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800188const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{ "slow", AD_LACP_SLOW},
190{ "fast", AD_LACP_FAST},
191{ NULL, -1},
192};
193
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800194const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{ "balance-rr", BOND_MODE_ROUNDROBIN},
196{ "active-backup", BOND_MODE_ACTIVEBACKUP},
197{ "balance-xor", BOND_MODE_XOR},
198{ "broadcast", BOND_MODE_BROADCAST},
199{ "802.3ad", BOND_MODE_8023AD},
200{ "balance-tlb", BOND_MODE_TLB},
201{ "balance-alb", BOND_MODE_ALB},
202{ NULL, -1},
203};
204
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800205const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400206{ "layer2", BOND_XMIT_POLICY_LAYER2},
207{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800208{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400209{ NULL, -1},
210};
211
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800212const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700213{ "none", BOND_ARP_VALIDATE_NONE},
214{ "active", BOND_ARP_VALIDATE_ACTIVE},
215{ "backup", BOND_ARP_VALIDATE_BACKUP},
216{ "all", BOND_ARP_VALIDATE_ALL},
217{ NULL, -1},
218};
219
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800220const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700221{ "none", BOND_FOM_NONE},
222{ "active", BOND_FOM_ACTIVE},
223{ "follow", BOND_FOM_FOLLOW},
224{ NULL, -1},
225};
226
Jiri Pirkoa5499522009-09-25 03:28:09 +0000227const struct bond_parm_tbl pri_reselect_tbl[] = {
228{ "always", BOND_PRI_RESELECT_ALWAYS},
229{ "better", BOND_PRI_RESELECT_BETTER},
230{ "failure", BOND_PRI_RESELECT_FAILURE},
231{ NULL, -1},
232};
233
Jay Vosburghfd989c82008-11-04 17:51:16 -0800234struct bond_parm_tbl ad_select_tbl[] = {
235{ "stable", BOND_AD_STABLE},
236{ "bandwidth", BOND_AD_BANDWIDTH},
237{ "count", BOND_AD_COUNT},
238{ NULL, -1},
239};
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*-------------------------- Forward declarations ---------------------------*/
242
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400243static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000244static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000245static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*---------------------------- General routines -----------------------------*/
248
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700249static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800251 static const char *names[] = {
252 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
253 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
254 [BOND_MODE_XOR] = "load balancing (xor)",
255 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000256 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800257 [BOND_MODE_TLB] = "transmit load balancing",
258 [BOND_MODE_ALB] = "adaptive load balancing",
259 };
260
261 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800263
264 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/*---------------------------------- VLAN -----------------------------------*/
268
269/**
270 * bond_add_vlan - add a new vlan id on bond
271 * @bond: bond that got the notification
272 * @vlan_id: the vlan id to add
273 *
274 * Returns -ENOMEM if allocation failed.
275 */
276static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
277{
278 struct vlan_entry *vlan;
279
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800280 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800281 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Brian Haley305d5522008-11-04 17:51:14 -0800283 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000284 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 INIT_LIST_HEAD(&vlan->vlan_list);
288 vlan->vlan_id = vlan_id;
289
290 write_lock_bh(&bond->lock);
291
292 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
293
294 write_unlock_bh(&bond->lock);
295
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800296 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return 0;
299}
300
301/**
302 * bond_del_vlan - delete a vlan id from bond
303 * @bond: bond that got the notification
304 * @vlan_id: the vlan id to delete
305 *
306 * returns -ENODEV if @vlan_id was not found in @bond.
307 */
308static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
309{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700310 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int res = -ENODEV;
312
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800313 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Neil Hormane843fa52010-10-13 16:01:50 +0000315 block_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 write_lock_bh(&bond->lock);
317
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700318 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (vlan->vlan_id == vlan_id) {
320 list_del(&vlan->vlan_list);
321
Holger Eitzenberger58402052008-12-09 23:07:13 -0800322 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800325 pr_debug("removed VLAN ID %d from bond %s\n",
326 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 kfree(vlan);
329
330 if (list_empty(&bond->vlan_list) &&
331 (bond->slave_cnt == 0)) {
332 /* Last VLAN removed and no slaves, so
333 * restore block on adding VLANs. This will
334 * be removed once new slaves that are not
335 * VLAN challenged will be added.
336 */
337 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
338 }
339
340 res = 0;
341 goto out;
342 }
343 }
344
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800345 pr_debug("couldn't find VLAN ID %d in bond %s\n",
346 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348out:
349 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +0000350 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return res;
352}
353
354/**
355 * bond_has_challenged_slaves
356 * @bond: the bond we're working on
357 *
358 * Searches the slave list. Returns 1 if a vlan challenged slave
359 * was found, 0 otherwise.
360 *
361 * Assumes bond->lock is held.
362 */
363static int bond_has_challenged_slaves(struct bonding *bond)
364{
365 struct slave *slave;
366 int i;
367
368 bond_for_each_slave(bond, slave, i) {
369 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800370 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800371 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 1;
373 }
374 }
375
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800376 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378}
379
380/**
381 * bond_next_vlan - safely skip to the next item in the vlans list.
382 * @bond: the bond we're working on
383 * @curr: item we're advancing from
384 *
385 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
386 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * Caller must hold bond->lock
389 */
390struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
391{
392 struct vlan_entry *next, *last;
393
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000394 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (!curr) {
398 next = list_entry(bond->vlan_list.next,
399 struct vlan_entry, vlan_list);
400 } else {
401 last = list_entry(bond->vlan_list.prev,
402 struct vlan_entry, vlan_list);
403 if (last == curr) {
404 next = list_entry(bond->vlan_list.next,
405 struct vlan_entry, vlan_list);
406 } else {
407 next = list_entry(curr->vlan_list.next,
408 struct vlan_entry, vlan_list);
409 }
410 }
411
412 return next;
413}
414
415/**
416 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000417 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @bond: bond device that got this skb for tx.
419 * @skb: hw accel VLAN tagged skb to transmit
420 * @slave_dev: slave that is supposed to xmit this skbuff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000422int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
423 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Ben Hutchings83874512010-12-13 08:19:28 +0000425 skb->dev = slave_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700427#ifdef CONFIG_NET_POLL_CONTROLLER
428 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
429 struct netpoll *np = bond->dev->npinfo->netpoll;
430 slave_dev->npinfo = bond->dev->npinfo;
WANG Congf6dc31a2010-05-06 00:48:51 -0700431 slave_dev->priv_flags |= IFF_IN_NETPOLL;
Neil Hormanc2355e12010-10-13 16:01:49 +0000432 netpoll_send_skb_on_dev(np, skb, slave_dev);
WANG Congf6dc31a2010-05-06 00:48:51 -0700433 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -0700434 } else
435#endif
436 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 return 0;
439}
440
441/*
442 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
443 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
444 * lock because:
445 * a. This operation is performed in IOCTL context,
446 * b. The operation is protected by the RTNL semaphore in the 8021q code,
447 * c. Holding a lock with BH disabled while directly calling a base driver
448 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000449 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * The design of synchronization/protection for this operation in the 8021q
451 * module is good for one or more VLAN devices over a single physical device
452 * and cannot be extended for a teaming solution like bonding, so there is a
453 * potential race condition here where a net device from the vlan group might
454 * be referenced (either by a base driver or the 8021q code) while it is being
455 * removed from the system. However, it turns out we're not making matters
456 * worse, and if it works for regular VLAN usage it will work here too.
457*/
458
459/**
460 * bond_vlan_rx_register - Propagates registration to slaves
461 * @bond_dev: bonding net device that got called
462 * @grp: vlan group being registered
463 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000464static void bond_vlan_rx_register(struct net_device *bond_dev,
465 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Wang Chen454d7c92008-11-12 23:37:49 -0800467 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct slave *slave;
469 int i;
470
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000471 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 bond->vlgrp = grp;
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000473 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 bond_for_each_slave(bond, slave, i) {
476 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800477 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800480 slave_ops->ndo_vlan_rx_register) {
481 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483 }
484}
485
486/**
487 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
488 * @bond_dev: bonding net device that got called
489 * @vid: vlan id being added
490 */
491static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
492{
Wang Chen454d7c92008-11-12 23:37:49 -0800493 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct slave *slave;
495 int i, res;
496
497 bond_for_each_slave(bond, slave, i) {
498 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800499 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800502 slave_ops->ndo_vlan_rx_add_vid) {
503 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
506
507 res = bond_add_vlan(bond, vid);
508 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800509 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 bond_dev->name, vid);
511 }
512}
513
514/**
515 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
516 * @bond_dev: bonding net device that got called
517 * @vid: vlan id being removed
518 */
519static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
520{
Wang Chen454d7c92008-11-12 23:37:49 -0800521 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct slave *slave;
523 struct net_device *vlan_dev;
524 int i, res;
525
526 bond_for_each_slave(bond, slave, i) {
527 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800528 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800531 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* Save and then restore vlan_dev in the grp array,
533 * since the slave's driver might clear it.
534 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800535 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800536 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800537 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539 }
540
541 res = bond_del_vlan(bond, vid);
542 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800543 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 bond_dev->name, vid);
545 }
546}
547
548static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
549{
550 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800551 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Jay Vosburghf35188f2010-07-21 12:14:47 +0000553 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800557 slave_ops->ndo_vlan_rx_register)
558 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800561 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800564 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
565 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000568static void bond_del_vlans_from_slave(struct bonding *bond,
569 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct vlan_entry *vlan;
573 struct net_device *vlan_dev;
574
Jay Vosburghf35188f2010-07-21 12:14:47 +0000575 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000576 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800579 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000583 if (!vlan->vlan_id)
584 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Save and then restore vlan_dev in the grp array,
586 * since the slave's driver might clear it.
587 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800590 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593unreg:
594 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800595 slave_ops->ndo_vlan_rx_register)
596 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599/*------------------------------- Link status -------------------------------*/
600
601/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800602 * Set the carrier state for the master according to the state of its
603 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
604 * do special 802.3ad magic.
605 *
606 * Returns zero if carrier state does not change, nonzero if it does.
607 */
608static int bond_set_carrier(struct bonding *bond)
609{
610 struct slave *slave;
611 int i;
612
613 if (bond->slave_cnt == 0)
614 goto down;
615
616 if (bond->params.mode == BOND_MODE_8023AD)
617 return bond_3ad_set_carrier(bond);
618
619 bond_for_each_slave(bond, slave, i) {
620 if (slave->link == BOND_LINK_UP) {
621 if (!netif_carrier_ok(bond->dev)) {
622 netif_carrier_on(bond->dev);
623 return 1;
624 }
625 return 0;
626 }
627 }
628
629down:
630 if (netif_carrier_ok(bond->dev)) {
631 netif_carrier_off(bond->dev);
632 return 1;
633 }
634 return 0;
635}
636
637/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * Get link speed and duplex from the slave's base driver
639 * using ethtool. If for some reason the call fails or the
640 * values are invalid, fake speed and duplex to 100/Full
641 * and return error.
642 */
643static int bond_update_speed_duplex(struct slave *slave)
644{
645 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700647 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 /* Fake speed and duplex */
650 slave->speed = SPEED_100;
651 slave->duplex = DUPLEX_FULL;
652
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700653 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700656 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
657 if (res < 0)
658 return -1;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 switch (etool.speed) {
661 case SPEED_10:
662 case SPEED_100:
663 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700664 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666 default:
667 return -1;
668 }
669
670 switch (etool.duplex) {
671 case DUPLEX_FULL:
672 case DUPLEX_HALF:
673 break;
674 default:
675 return -1;
676 }
677
678 slave->speed = etool.speed;
679 slave->duplex = etool.duplex;
680
681 return 0;
682}
683
684/*
685 * if <dev> supports MII link status reporting, check its link status.
686 *
687 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000688 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
690 * Return either BMSR_LSTATUS, meaning that the link is up (or we
691 * can't tell and just pretend it is), or 0, meaning that the link is
692 * down.
693 *
694 * If reporting is non-zero, instead of faking link up, return -1 if
695 * both ETHTOOL and MII ioctls fail (meaning the device does not
696 * support them). If use_carrier is set, return whatever it says.
697 * It'd be nice if there was a good way to tell if a driver supports
698 * netif_carrier, but there really isn't.
699 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000700static int bond_check_dev_link(struct bonding *bond,
701 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800703 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700704 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct ifreq ifr;
706 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Petri Gynther6c988852009-08-28 12:05:15 +0000708 if (!reporting && !netif_running(slave_dev))
709 return 0;
710
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800711 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Jiri Pirko29112f42009-04-24 01:58:23 +0000714 /* Try to get link status using Ethtool first. */
715 if (slave_dev->ethtool_ops) {
716 if (slave_dev->ethtool_ops->get_link) {
717 u32 link;
718
719 link = slave_dev->ethtool_ops->get_link(slave_dev);
720
721 return link ? BMSR_LSTATUS : 0;
722 }
723 }
724
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000725 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800726 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (ioctl) {
728 /* TODO: set pointer to correct ioctl on a per team member */
729 /* bases to make this more efficient. that is, once */
730 /* we determine the correct ioctl, we will always */
731 /* call it and not the others for that team */
732 /* member. */
733
734 /*
735 * We cannot assume that SIOCGMIIPHY will also read a
736 * register; not all network drivers (e.g., e100)
737 * support that.
738 */
739
740 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
741 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
742 mii = if_mii(&ifr);
743 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
744 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000745 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
746 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 }
749
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700750 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700752 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * cannot report link status). If not reporting, pretend
754 * we're ok.
755 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000756 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/*----------------------------- Multicast list ------------------------------*/
760
761/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * Push the promiscuity flag down to appropriate slaves
763 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700764static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700766 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (USES_PRIMARY(bond->params.mode)) {
768 /* write lock already acquired */
769 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700770 err = dev_set_promiscuity(bond->curr_active_slave->dev,
771 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 } else {
774 struct slave *slave;
775 int i;
776 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700777 err = dev_set_promiscuity(slave->dev, inc);
778 if (err)
779 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700782 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785/*
786 * Push the allmulti flag down to all slaves
787 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700788static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700790 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (USES_PRIMARY(bond->params.mode)) {
792 /* write lock already acquired */
793 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700794 err = dev_set_allmulti(bond->curr_active_slave->dev,
795 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 } else {
798 struct slave *slave;
799 int i;
800 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700801 err = dev_set_allmulti(slave->dev, inc);
802 if (err)
803 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700806 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809/*
810 * Add a Multicast address to slaves
811 * according to mode
812 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000813static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 if (USES_PRIMARY(bond->params.mode)) {
816 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000817 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000818 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 } else {
820 struct slave *slave;
821 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000822
823 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000824 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826}
827
828/*
829 * Remove a multicast address from slave
830 * according to mode
831 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000832static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 if (USES_PRIMARY(bond->params.mode)) {
835 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000836 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000837 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 } else {
839 struct slave *slave;
840 int i;
841 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000842 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 }
845}
846
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800847
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000848static void __bond_resend_igmp_join_requests(struct net_device *dev)
849{
850 struct in_device *in_dev;
851 struct ip_mc_list *im;
852
853 rcu_read_lock();
854 in_dev = __in_dev_get_rcu(dev);
855 if (in_dev) {
Eric Dumazet3006bc32010-11-18 09:30:42 -0800856 read_lock(&in_dev->mc_list_lock);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000857 for (im = in_dev->mc_list; im; im = im->next)
858 ip_mc_rejoin_group(im);
Eric Dumazet3006bc32010-11-18 09:30:42 -0800859 read_unlock(&in_dev->mc_list_lock);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000860 }
861
862 rcu_read_unlock();
863}
864
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800865/*
866 * Retrieve the list of registered multicast addresses for the bonding
867 * device and retransmit an IGMP JOIN request to the current active
868 * slave.
869 */
870static void bond_resend_igmp_join_requests(struct bonding *bond)
871{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000872 struct net_device *vlan_dev;
873 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800874
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000875 read_lock(&bond->lock);
876
877 /* rejoin all groups on bond device */
878 __bond_resend_igmp_join_requests(bond->dev);
879
880 /* rejoin all groups on vlan devices */
881 if (bond->vlgrp) {
882 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
883 vlan_dev = vlan_group_get_device(bond->vlgrp,
884 vlan->vlan_id);
885 if (vlan_dev)
886 __bond_resend_igmp_join_requests(vlan_dev);
887 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800888 }
889
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000890 if (--bond->igmp_retrans > 0)
891 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
892
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000893 read_unlock(&bond->lock);
894}
895
stephen hemminger379b7382010-10-15 11:02:56 +0000896static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000897{
898 struct bonding *bond = container_of(work, struct bonding,
899 mcast_work.work);
900 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * flush all members of flush->mc_list from device dev->mc_list
905 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000906static void bond_mc_list_flush(struct net_device *bond_dev,
907 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Wang Chen454d7c92008-11-12 23:37:49 -0800909 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000910 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Jiri Pirko22bedad32010-04-01 21:22:57 +0000912 netdev_for_each_mc_addr(ha, bond_dev)
913 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if (bond->params.mode == BOND_MODE_8023AD) {
916 /* del lacpdu mc addr from mc list */
917 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
918
Jiri Pirko22bedad32010-04-01 21:22:57 +0000919 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921}
922
923/*--------------------------- Active slave change ---------------------------*/
924
925/*
926 * Update the mc list and multicast-related flags for the new and
927 * old active slaves (if any) according to the multicast mode, and
928 * promiscuous flags unconditionally.
929 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000930static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
931 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000933 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000935 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* nothing to do - mc list is already up-to-date on
937 * all slaves
938 */
939 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000942 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000945 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Jiri Pirko22bedad32010-04-01 21:22:57 +0000948 netdev_for_each_mc_addr(ha, bond->dev)
949 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
952 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700953 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000954 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000957 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jiri Pirko22bedad32010-04-01 21:22:57 +0000960 netdev_for_each_mc_addr(ha, bond->dev)
961 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963}
964
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700965/*
966 * bond_do_fail_over_mac
967 *
968 * Perform special MAC address swapping for fail_over_mac settings
969 *
970 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
971 */
972static void bond_do_fail_over_mac(struct bonding *bond,
973 struct slave *new_active,
974 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000975 __releases(&bond->curr_slave_lock)
976 __releases(&bond->lock)
977 __acquires(&bond->lock)
978 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700979{
980 u8 tmp_mac[ETH_ALEN];
981 struct sockaddr saddr;
982 int rv;
983
984 switch (bond->params.fail_over_mac) {
985 case BOND_FOM_ACTIVE:
986 if (new_active)
987 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
988 new_active->dev->addr_len);
989 break;
990 case BOND_FOM_FOLLOW:
991 /*
992 * if new_active && old_active, swap them
993 * if just old_active, do nothing (going to no active slave)
994 * if just new_active, set new_active to bond's MAC
995 */
996 if (!new_active)
997 return;
998
999 write_unlock_bh(&bond->curr_slave_lock);
1000 read_unlock(&bond->lock);
1001
1002 if (old_active) {
1003 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1004 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1005 ETH_ALEN);
1006 saddr.sa_family = new_active->dev->type;
1007 } else {
1008 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1009 saddr.sa_family = bond->dev->type;
1010 }
1011
1012 rv = dev_set_mac_address(new_active->dev, &saddr);
1013 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001014 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001015 bond->dev->name, -rv, new_active->dev->name);
1016 goto out;
1017 }
1018
1019 if (!old_active)
1020 goto out;
1021
1022 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1023 saddr.sa_family = old_active->dev->type;
1024
1025 rv = dev_set_mac_address(old_active->dev, &saddr);
1026 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001027 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001028 bond->dev->name, -rv, new_active->dev->name);
1029out:
1030 read_lock(&bond->lock);
1031 write_lock_bh(&bond->curr_slave_lock);
1032 break;
1033 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001034 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001035 bond->dev->name, bond->params.fail_over_mac);
1036 break;
1037 }
1038
1039}
1040
Jiri Pirkoa5499522009-09-25 03:28:09 +00001041static bool bond_should_change_active(struct bonding *bond)
1042{
1043 struct slave *prim = bond->primary_slave;
1044 struct slave *curr = bond->curr_active_slave;
1045
1046 if (!prim || !curr || curr->link != BOND_LINK_UP)
1047 return true;
1048 if (bond->force_primary) {
1049 bond->force_primary = false;
1050 return true;
1051 }
1052 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1053 (prim->speed < curr->speed ||
1054 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1055 return false;
1056 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1057 return false;
1058 return true;
1059}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/**
1062 * find_best_interface - select the best available slave to be the active one
1063 * @bond: our bonding struct
1064 *
1065 * Warning: Caller must hold curr_slave_lock for writing.
1066 */
1067static struct slave *bond_find_best_slave(struct bonding *bond)
1068{
1069 struct slave *new_active, *old_active;
1070 struct slave *bestslave = NULL;
1071 int mintime = bond->params.updelay;
1072 int i;
1073
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001074 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001077 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001079 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001084 bond->primary_slave->link == BOND_LINK_UP &&
1085 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 new_active = bond->primary_slave;
1087 }
1088
1089 /* remember where to stop iterating over the slaves */
1090 old_active = new_active;
1091
1092 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001093 if (new_active->link == BOND_LINK_UP) {
1094 return new_active;
1095 } else if (new_active->link == BOND_LINK_BACK &&
1096 IS_UP(new_active->dev)) {
1097 /* link up, but waiting for stabilization */
1098 if (new_active->delay < mintime) {
1099 mintime = new_active->delay;
1100 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 }
1103 }
1104
1105 return bestslave;
1106}
1107
1108/**
1109 * change_active_interface - change the active slave into the specified one
1110 * @bond: our bonding struct
1111 * @new: the new slave to make the active one
1112 *
1113 * Set the new slave to the bond's settings and unset them on the old
1114 * curr_active_slave.
1115 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1116 *
1117 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1118 * because it is apparently the best available slave we have, even though its
1119 * updelay hasn't timed out yet.
1120 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001121 * If new_active is not NULL, caller must hold bond->lock for read and
1122 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001124void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 struct slave *old_active = bond->curr_active_slave;
1127
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001128 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001132 new_active->jiffies = jiffies;
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (new_active->link == BOND_LINK_BACK) {
1135 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001136 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1137 bond->dev->name, new_active->dev->name,
1138 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
1141 new_active->delay = 0;
1142 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001144 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Holger Eitzenberger58402052008-12-09 23:07:13 -08001147 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 } else {
1150 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001151 pr_info("%s: making interface %s the new active one.\n",
1152 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154 }
1155 }
1156
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001157 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Holger Eitzenberger58402052008-12-09 23:07:13 -08001160 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001162 if (old_active)
1163 bond_set_slave_inactive_flags(old_active);
1164 if (new_active)
1165 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 } else {
1167 bond->curr_active_slave = new_active;
1168 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001169
1170 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001171 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001172 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001173
1174 if (new_active) {
1175 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001176
Or Gerlitz709f8a42008-06-13 18:12:01 -07001177 if (bond->params.fail_over_mac)
1178 bond_do_fail_over_mac(bond, new_active,
1179 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001180
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001181 if (netif_running(bond->dev)) {
1182 bond->send_grat_arp = bond->params.num_grat_arp;
1183 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001184
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001185 bond->send_unsol_na = bond->params.num_unsol_na;
1186 bond_send_unsolicited_na(bond);
1187 }
Brian Haley305d5522008-11-04 17:51:14 -08001188
Or Gerlitz01f31092008-06-13 18:12:02 -07001189 write_unlock_bh(&bond->curr_slave_lock);
1190 read_unlock(&bond->lock);
1191
Moni Shoua75c78502009-09-15 02:37:40 -07001192 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001193
1194 read_lock(&bond->lock);
1195 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001196 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001197 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001198
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001199 /* resend IGMP joins since active slave has changed or
1200 * all were sent on curr_active_slave */
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001201 if (((USES_PRIMARY(bond->params.mode) && new_active) ||
1202 bond->params.mode == BOND_MODE_ROUNDROBIN) &&
1203 netif_running(bond->dev)) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001204 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001205 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
1209/**
1210 * bond_select_active_slave - select a new active slave, if needed
1211 * @bond: our bonding struct
1212 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001213 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * - The old curr_active_slave has been released or lost its link.
1215 * - The primary_slave has got its link back.
1216 * - A slave has got its link back and there's no old curr_active_slave.
1217 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001218 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001220void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001223 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 best_slave = bond_find_best_slave(bond);
1226 if (best_slave != bond->curr_active_slave) {
1227 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001228 rv = bond_set_carrier(bond);
1229 if (!rv)
1230 return;
1231
1232 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001233 pr_info("%s: first active interface up!\n",
1234 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001235 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001236 pr_info("%s: now running without any active interface !\n",
1237 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240}
1241
1242/*--------------------------- slave list handling ---------------------------*/
1243
1244/*
1245 * This function attaches the slave to the end of list.
1246 *
1247 * bond->lock held for writing by caller.
1248 */
1249static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1250{
1251 if (bond->first_slave == NULL) { /* attaching the first slave */
1252 new_slave->next = new_slave;
1253 new_slave->prev = new_slave;
1254 bond->first_slave = new_slave;
1255 } else {
1256 new_slave->next = bond->first_slave;
1257 new_slave->prev = bond->first_slave->prev;
1258 new_slave->next->prev = new_slave;
1259 new_slave->prev->next = new_slave;
1260 }
1261
1262 bond->slave_cnt++;
1263}
1264
1265/*
1266 * This function detaches the slave from the list.
1267 * WARNING: no check is made to verify if the slave effectively
1268 * belongs to <bond>.
1269 * Nothing is freed on return, structures are just unchained.
1270 * If any slave pointer in bond was pointing to <slave>,
1271 * it should be changed by the calling function.
1272 *
1273 * bond->lock held for writing by caller.
1274 */
1275static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1276{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001277 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001280 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (bond->first_slave == slave) { /* slave is the first slave */
1284 if (bond->slave_cnt > 1) { /* there are more slave */
1285 bond->first_slave = slave->next;
1286 } else {
1287 bond->first_slave = NULL; /* slave was the last one */
1288 }
1289 }
1290
1291 slave->next = NULL;
1292 slave->prev = NULL;
1293 bond->slave_cnt--;
1294}
1295
WANG Congf6dc31a2010-05-06 00:48:51 -07001296#ifdef CONFIG_NET_POLL_CONTROLLER
1297/*
1298 * You must hold read lock on bond->lock before calling this.
1299 */
1300static bool slaves_support_netpoll(struct net_device *bond_dev)
1301{
1302 struct bonding *bond = netdev_priv(bond_dev);
1303 struct slave *slave;
1304 int i = 0;
1305 bool ret = true;
1306
1307 bond_for_each_slave(bond, slave, i) {
1308 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1309 !slave->dev->netdev_ops->ndo_poll_controller)
1310 ret = false;
1311 }
1312 return i != 0 && ret;
1313}
1314
1315static void bond_poll_controller(struct net_device *bond_dev)
1316{
Neil Hormanc2355e12010-10-13 16:01:49 +00001317 struct bonding *bond = netdev_priv(bond_dev);
1318 struct slave *slave;
1319 int i;
1320
1321 bond_for_each_slave(bond, slave, i) {
1322 if (slave->dev && IS_UP(slave->dev))
1323 netpoll_poll_dev(slave->dev);
1324 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001325}
1326
1327static void bond_netpoll_cleanup(struct net_device *bond_dev)
1328{
1329 struct bonding *bond = netdev_priv(bond_dev);
1330 struct slave *slave;
1331 const struct net_device_ops *ops;
1332 int i;
1333
1334 read_lock(&bond->lock);
1335 bond_dev->npinfo = NULL;
1336 bond_for_each_slave(bond, slave, i) {
1337 if (slave->dev) {
1338 ops = slave->dev->netdev_ops;
1339 if (ops->ndo_netpoll_cleanup)
1340 ops->ndo_netpoll_cleanup(slave->dev);
1341 else
1342 slave->dev->npinfo = NULL;
1343 }
1344 }
1345 read_unlock(&bond->lock);
1346}
1347
1348#else
1349
1350static void bond_netpoll_cleanup(struct net_device *bond_dev)
1351{
1352}
1353
1354#endif
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/*---------------------------------- IOCTL ----------------------------------*/
1357
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001358static int bond_sethwaddr(struct net_device *bond_dev,
1359 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001361 pr_debug("bond_dev=%p\n", bond_dev);
1362 pr_debug("slave_dev=%p\n", slave_dev);
1363 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1365 return 0;
1366}
1367
Herbert Xu7f353bf2007-08-10 15:47:58 -07001368#define BOND_VLAN_FEATURES \
1369 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1370 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001371
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001372/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001373 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001374 * feature bits are managed elsewhere, so preserve those feature bits
1375 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001376 */
1377static int bond_compute_features(struct bonding *bond)
1378{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001379 struct slave *slave;
1380 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001381 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001382 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001383 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1384 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001385 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001386
Herbert Xu7f353bf2007-08-10 15:47:58 -07001387 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001388 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1389
1390 if (!bond->first_slave)
1391 goto done;
1392
1393 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001394
Jay Vosburgh278339a2009-08-28 12:05:12 +00001395 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001396 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001397 features = netdev_increment_features(features,
1398 slave->dev->features,
1399 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001400 vlan_features = netdev_increment_features(vlan_features,
1401 slave->dev->vlan_features,
1402 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001403 if (slave->dev->hard_header_len > max_hard_header_len)
1404 max_hard_header_len = slave->dev->hard_header_len;
1405 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001406
Herbert Xub63365a2008-10-23 01:11:29 -07001407done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001408 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001409 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001410 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001411 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001412
1413 return 0;
1414}
1415
Moni Shoua872254d2007-10-09 19:43:38 -07001416static void bond_setup_by_slave(struct net_device *bond_dev,
1417 struct net_device *slave_dev)
1418{
Wang Chen454d7c92008-11-12 23:37:49 -08001419 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001420
Stephen Hemminger00829822008-11-20 20:14:53 -08001421 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001422
1423 bond_dev->type = slave_dev->type;
1424 bond_dev->hard_header_len = slave_dev->hard_header_len;
1425 bond_dev->addr_len = slave_dev->addr_len;
1426
1427 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1428 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001429 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001430}
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001433int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Wang Chen454d7c92008-11-12 23:37:49 -08001435 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001436 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001438 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct sockaddr addr;
1440 int link_reporting;
1441 int old_features = bond_dev->features;
1442 int res = 0;
1443
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001444 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001445 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001446 pr_warning("%s: Warning: no link monitoring support for %s\n",
1447 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450 /* bond must be initialized by bond_open() before enslaving */
1451 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001452 pr_warning("%s: master_dev is not up in bond_enslave\n",
1453 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455
1456 /* already enslaved */
1457 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001458 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 return -EBUSY;
1460 }
1461
1462 /* vlan challenged mutual exclusion */
1463 /* no need to lock since we're protected by rtnl_lock */
1464 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001465 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001466 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001467 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1468 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -EPERM;
1470 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001471 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1472 bond_dev->name, slave_dev->name,
1473 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1475 }
1476 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001477 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (bond->slave_cnt == 0) {
1479 /* First slave, and it is not VLAN challenged,
1480 * so remove the block of adding VLANs over the bond.
1481 */
1482 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1483 }
1484 }
1485
Jay Vosburgh217df672005-09-26 16:11:50 -07001486 /*
1487 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001488 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001489 * the current ifenslave will set the interface down prior to
1490 * enslaving it; the old ifenslave will not.
1491 */
1492 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001493 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001494 slave_dev->name);
1495 res = -EPERM;
1496 goto err_undo_flags;
1497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Moni Shoua872254d2007-10-09 19:43:38 -07001499 /* set bonding device ether type by slave - bonding netdevices are
1500 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1501 * there is a need to override some of the type dependent attribs/funcs.
1502 *
1503 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1504 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1505 */
1506 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001507 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001508 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001509 bond_dev->name,
1510 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001511
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001512 res = netdev_bonding_change(bond_dev,
1513 NETDEV_PRE_TYPE_CHANGE);
1514 res = notifier_to_errno(res);
1515 if (res) {
1516 pr_err("%s: refused to change device type\n",
1517 bond_dev->name);
1518 res = -EBUSY;
1519 goto err_undo_flags;
1520 }
Moni Shoua75c78502009-09-15 02:37:40 -07001521
Jiri Pirko32a806c2010-03-19 04:00:23 +00001522 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001523 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001524 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001525
Moni Shouae36b9d12009-07-15 04:56:31 +00001526 if (slave_dev->type != ARPHRD_ETHER)
1527 bond_setup_by_slave(bond_dev, slave_dev);
1528 else
1529 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001530
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001531 netdev_bonding_change(bond_dev,
1532 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001533 }
Moni Shoua872254d2007-10-09 19:43:38 -07001534 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001535 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1536 slave_dev->name,
1537 slave_dev->type, bond_dev->type);
1538 res = -EINVAL;
1539 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001540 }
1541
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001542 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001543 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001544 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1545 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001546 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1547 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001548 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",
1549 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001550 res = -EOPNOTSUPP;
1551 goto err_undo_flags;
1552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001555 /* If this is the first slave, then we need to set the master's hardware
1556 * address to be the same as the slave's. */
David Strandd13a2cb2010-12-01 11:43:08 -08001557 if (is_zero_ether_addr(bond->dev->dev_addr))
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001558 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1559 slave_dev->addr_len);
1560
1561
Joe Jin243cb4e2007-02-06 14:16:40 -08001562 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (!new_slave) {
1564 res = -ENOMEM;
1565 goto err_undo_flags;
1566 }
1567
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001568 /*
1569 * Set the new_slave's queue_id to be zero. Queue ID mapping
1570 * is set via sysfs or module option if desired.
1571 */
1572 new_slave->queue_id = 0;
1573
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001574 /* Save slave's original mtu and then set it to match the bond */
1575 new_slave->original_mtu = slave_dev->mtu;
1576 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1577 if (res) {
1578 pr_debug("Error %d calling dev_set_mtu\n", res);
1579 goto err_free;
1580 }
1581
Jay Vosburgh217df672005-09-26 16:11:50 -07001582 /*
1583 * Save slave's original ("permanent") mac address for modes
1584 * that need it, and for restoring it upon release, and then
1585 * set it to the master's address
1586 */
1587 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Jay Vosburghdd957c52007-10-09 19:57:24 -07001589 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001590 /*
1591 * Set slave to master's mac address. The application already
1592 * set the master's mac address to that of the first slave
1593 */
1594 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1595 addr.sa_family = slave_dev->type;
1596 res = dev_set_mac_address(slave_dev, &addr);
1597 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001598 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001599 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001600 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001603 res = netdev_set_master(slave_dev, bond_dev);
1604 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001605 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001606 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001607 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001608 /* open the slave since the application closed it */
1609 res = dev_open(slave_dev);
1610 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001611 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001612 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 }
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001616 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Holger Eitzenberger58402052008-12-09 23:07:13 -08001618 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 /* bond_alb_init_slave() must be called before all other stages since
1620 * it might fail and we do not want to have to undo everything
1621 */
1622 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001623 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001624 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
1626
1627 /* If the mode USES_PRIMARY, then the new slave gets the
1628 * master's promisc (and mc) settings only if it becomes the
1629 * curr_active_slave, and that is taken care of later when calling
1630 * bond_change_active()
1631 */
1632 if (!USES_PRIMARY(bond->params.mode)) {
1633 /* set promiscuity level to new slave */
1634 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001635 res = dev_set_promiscuity(slave_dev, 1);
1636 if (res)
1637 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
1640 /* set allmulti level to new slave */
1641 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001642 res = dev_set_allmulti(slave_dev, 1);
1643 if (res)
1644 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
David S. Millerb9e40852008-07-15 00:15:08 -07001647 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001649 netdev_for_each_mc_addr(ha, bond_dev)
1650 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001651 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653
1654 if (bond->params.mode == BOND_MODE_8023AD) {
1655 /* add lacpdu mc addr to mc list */
1656 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1657
Jiri Pirko22bedad32010-04-01 21:22:57 +00001658 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
1661 bond_add_vlans_on_slave(bond, slave_dev);
1662
1663 write_lock_bh(&bond->lock);
1664
1665 bond_attach_slave(bond, new_slave);
1666
1667 new_slave->delay = 0;
1668 new_slave->link_failure_count = 0;
1669
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001670 bond_compute_features(bond);
1671
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001672 write_unlock_bh(&bond->lock);
1673
1674 read_lock(&bond->lock);
1675
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001676 new_slave->last_arp_rx = jiffies;
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 if (bond->params.miimon && !bond->params.use_carrier) {
1679 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1680
1681 if ((link_reporting == -1) && !bond->params.arp_interval) {
1682 /*
1683 * miimon is set but a bonded network driver
1684 * does not support ETHTOOL/MII and
1685 * arp_interval is not set. Note: if
1686 * use_carrier is enabled, we will never go
1687 * here (because netif_carrier is always
1688 * supported); thus, we don't need to change
1689 * the messages for netif_carrier.
1690 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001691 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 -08001692 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 } else if (link_reporting == -1) {
1694 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001695 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",
1696 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 }
1699
1700 /* check for initial state */
1701 if (!bond->params.miimon ||
1702 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1703 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001704 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 new_slave->link = BOND_LINK_BACK;
1706 new_slave->delay = bond->params.updelay;
1707 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001708 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 new_slave->link = BOND_LINK_UP;
1710 }
1711 new_slave->jiffies = jiffies;
1712 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001713 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 new_slave->link = BOND_LINK_DOWN;
1715 }
1716
1717 if (bond_update_speed_duplex(new_slave) &&
1718 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001719 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1720 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001723 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1724 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 }
1727
1728 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1729 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001730 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001732 bond->force_primary = true;
1733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001736 write_lock_bh(&bond->curr_slave_lock);
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 switch (bond->params.mode) {
1739 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001740 bond_set_slave_inactive_flags(new_slave);
1741 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 break;
1743 case BOND_MODE_8023AD:
1744 /* in 802.3ad mode, the internal mechanism
1745 * will activate the slaves in the selected
1746 * aggregator
1747 */
1748 bond_set_slave_inactive_flags(new_slave);
1749 /* if this is the first slave */
1750 if (bond->slave_cnt == 1) {
1751 SLAVE_AD_INFO(new_slave).id = 1;
1752 /* Initialize AD with the number of times that the AD timer is called in 1 second
1753 * can be called only after the mac address of the bond is set
1754 */
1755 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1756 bond->params.lacp_fast);
1757 } else {
1758 SLAVE_AD_INFO(new_slave).id =
1759 SLAVE_AD_INFO(new_slave->prev).id + 1;
1760 }
1761
1762 bond_3ad_bind_slave(new_slave);
1763 break;
1764 case BOND_MODE_TLB:
1765 case BOND_MODE_ALB:
1766 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001767 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001768 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 break;
1770 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001771 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 /* always active in trunk mode */
1774 new_slave->state = BOND_STATE_ACTIVE;
1775
1776 /* In trunking mode there is little meaning to curr_active_slave
1777 * anyway (it holds no special properties of the bond device),
1778 * so we can change it without calling change_active_interface()
1779 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001780 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 break;
1784 } /* switch(bond_mode) */
1785
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001786 write_unlock_bh(&bond->curr_slave_lock);
1787
Jay Vosburghff59c452006-03-27 13:27:43 -08001788 bond_set_carrier(bond);
1789
WANG Congf6dc31a2010-05-06 00:48:51 -07001790#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Horman45b0cb82010-10-13 16:01:53 +00001791 if (slaves_support_netpoll(bond_dev)) {
1792 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1793 if (bond_dev->npinfo)
1794 slave_dev->npinfo = bond_dev->npinfo;
1795 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001796 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Neil Horman45b0cb82010-10-13 16:01:53 +00001797 pr_info("New slave device %s does not support netpoll\n",
1798 slave_dev->name);
1799 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
WANG Congf6dc31a2010-05-06 00:48:51 -07001800 }
1801#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001802 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001804 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1805 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001806 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001807
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001808 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1809 bond_dev->name, slave_dev->name,
1810 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1811 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 /* enslave is successful */
1814 return 0;
1815
1816/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817err_close:
1818 dev_close(slave_dev);
1819
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001820err_unset_master:
1821 netdev_set_master(slave_dev, NULL);
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001824 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001825 /* XXX TODO - fom follow mode needs to change master's
1826 * MAC if this slave's MAC is in use by the bond, or at
1827 * least print a warning.
1828 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001829 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1830 addr.sa_family = slave_dev->type;
1831 dev_set_mac_address(slave_dev, &addr);
1832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001834err_restore_mtu:
1835 dev_set_mtu(slave_dev, new_slave->original_mtu);
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837err_free:
1838 kfree(new_slave);
1839
1840err_undo_flags:
1841 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return res;
1844}
1845
1846/*
1847 * Try to release the slave device <slave> from the bond device <master>
1848 * It is legal to access curr_active_slave without a lock because all the function
1849 * is write-locked.
1850 *
1851 * The rules for slave state should be:
1852 * for Active/Backup:
1853 * Active stays on all backups go down
1854 * for Bonded connections:
1855 * The first up interface should be left on and all others downed.
1856 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001857int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
Wang Chen454d7c92008-11-12 23:37:49 -08001859 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 struct slave *slave, *oldcurrent;
1861 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /* slave is not a slave or master is not master of this slave */
1864 if (!(slave_dev->flags & IFF_SLAVE) ||
1865 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001866 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 bond_dev->name, slave_dev->name);
1868 return -EINVAL;
1869 }
1870
Neil Hormane843fa52010-10-13 16:01:50 +00001871 block_netpoll_tx();
WANG Congf6dc31a2010-05-06 00:48:51 -07001872 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 write_lock_bh(&bond->lock);
1874
1875 slave = bond_get_slave_by_dev(bond, slave_dev);
1876 if (!slave) {
1877 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001878 pr_info("%s: %s not enslaved\n",
1879 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001880 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001881 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return -EINVAL;
1883 }
1884
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001885 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001886 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1887 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001888 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",
1889 bond_dev->name, slave_dev->name,
1890 slave->perm_hwaddr,
1891 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893
1894 /* Inform AD package of unbinding of slave. */
1895 if (bond->params.mode == BOND_MODE_8023AD) {
1896 /* must be called before the slave is
1897 * detached from the list
1898 */
1899 bond_3ad_unbind_slave(slave);
1900 }
1901
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001902 pr_info("%s: releasing %s interface %s\n",
1903 bond_dev->name,
1904 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1905 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907 oldcurrent = bond->curr_active_slave;
1908
1909 bond->current_arp_slave = NULL;
1910
1911 /* release the slave from its bond */
1912 bond_detach_slave(bond, slave);
1913
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001914 bond_compute_features(bond);
1915
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001916 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001919 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Holger Eitzenberger58402052008-12-09 23:07:13 -08001922 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 /* Must be called only after the slave has been
1924 * detached from the list and the curr_active_slave
1925 * has been cleared (if our_slave == old_current),
1926 * but before a new active slave is selected.
1927 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001928 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001930 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001933 if (oldcurrent == slave) {
1934 /*
1935 * Note that we hold RTNL over this sequence, so there
1936 * is no concern that another slave add/remove event
1937 * will interfere.
1938 */
1939 write_unlock_bh(&bond->lock);
1940 read_lock(&bond->lock);
1941 write_lock_bh(&bond->curr_slave_lock);
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 bond_select_active_slave(bond);
1944
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001945 write_unlock_bh(&bond->curr_slave_lock);
1946 read_unlock(&bond->lock);
1947 write_lock_bh(&bond->lock);
1948 }
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001951 bond_set_carrier(bond);
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 /* if the last slave was removed, zero the mac address
1954 * of the master so it will be set by the application
1955 * to the mac address of the first slave
1956 */
1957 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1958
Jay Vosburghf35188f2010-07-21 12:14:47 +00001959 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1961 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001962 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1963 bond_dev->name, bond_dev->name);
1964 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1965 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1968 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001969 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1970 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1972 }
1973
1974 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001975 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001977 /* must do this from outside any spinlocks */
1978 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 bond_del_vlans_from_slave(bond, slave_dev);
1981
1982 /* If the mode USES_PRIMARY, then we should only remove its
1983 * promisc and mc settings if it was the curr_active_slave, but that was
1984 * already taken care of above when we detached the slave
1985 */
1986 if (!USES_PRIMARY(bond->params.mode)) {
1987 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001988 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001992 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001996 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001998 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
2000
2001 netdev_set_master(slave_dev, NULL);
2002
WANG Congf6dc31a2010-05-06 00:48:51 -07002003#ifdef CONFIG_NET_POLL_CONTROLLER
2004 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00002005
Neil Horman45b0cb82010-10-13 16:01:53 +00002006 if (slaves_support_netpoll(bond_dev))
2007 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002008 read_unlock_bh(&bond->lock);
2009 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2010 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2011 else
2012 slave_dev->npinfo = NULL;
2013#endif
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 /* close slave before restoring its mac address */
2016 dev_close(slave_dev);
2017
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002018 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002019 /* restore original ("permanent") mac address */
2020 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2021 addr.sa_family = slave_dev->type;
2022 dev_set_mac_address(slave_dev, &addr);
2023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002025 dev_set_mtu(slave_dev, slave->original_mtu);
2026
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002027 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002028 IFF_SLAVE_INACTIVE | IFF_BONDING |
2029 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 kfree(slave);
2032
2033 return 0; /* deletion OK */
2034}
2035
2036/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002037* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002038* Must be under rtnl_lock when this function is called.
2039*/
stephen hemminger26d8ee72010-10-15 05:09:34 +00002040static int bond_release_and_destroy(struct net_device *bond_dev,
2041 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002042{
Wang Chen454d7c92008-11-12 23:37:49 -08002043 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002044 int ret;
2045
2046 ret = bond_release(bond_dev, slave_dev);
2047 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002048 pr_info("%s: destroying bond %s.\n",
2049 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002050 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002051 }
2052 return ret;
2053}
2054
2055/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 * This function releases all slaves.
2057 */
2058static int bond_release_all(struct net_device *bond_dev)
2059{
Wang Chen454d7c92008-11-12 23:37:49 -08002060 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 struct slave *slave;
2062 struct net_device *slave_dev;
2063 struct sockaddr addr;
2064
2065 write_lock_bh(&bond->lock);
2066
Jay Vosburghff59c452006-03-27 13:27:43 -08002067 netif_carrier_off(bond_dev);
2068
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002069 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 bond->current_arp_slave = NULL;
2073 bond->primary_slave = NULL;
2074 bond_change_active_slave(bond, NULL);
2075
2076 while ((slave = bond->first_slave) != NULL) {
2077 /* Inform AD package of unbinding of slave
2078 * before slave is detached from the list.
2079 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002080 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 slave_dev = slave->dev;
2084 bond_detach_slave(bond, slave);
2085
Jay Vosburgh25433312008-01-17 16:24:59 -08002086 /* now that the slave is detached, unlock and perform
2087 * all the undo steps that should not be called from
2088 * within a lock.
2089 */
2090 write_unlock_bh(&bond->lock);
2091
Holger Eitzenberger58402052008-12-09 23:07:13 -08002092 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 /* must be called only after the slave
2094 * has been detached from the list
2095 */
2096 bond_alb_deinit_slave(bond, slave);
2097 }
2098
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002099 bond_compute_features(bond);
2100
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002101 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 bond_del_vlans_from_slave(bond, slave_dev);
2103
2104 /* If the mode USES_PRIMARY, then we should only remove its
2105 * promisc and mc settings if it was the curr_active_slave, but that was
2106 * already taken care of above when we detached the slave
2107 */
2108 if (!USES_PRIMARY(bond->params.mode)) {
2109 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002110 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002114 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002118 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002120 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
2122
2123 netdev_set_master(slave_dev, NULL);
2124
2125 /* close slave before restoring its mac address */
2126 dev_close(slave_dev);
2127
Jay Vosburghdd957c52007-10-09 19:57:24 -07002128 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002129 /* restore original ("permanent") mac address*/
2130 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2131 addr.sa_family = slave_dev->type;
2132 dev_set_mac_address(slave_dev, &addr);
2133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002135 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2136 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 kfree(slave);
2139
2140 /* re-acquire the lock before getting the next slave */
2141 write_lock_bh(&bond->lock);
2142 }
2143
2144 /* zero the mac address of the master so it will be
2145 * set by the application to the mac address of the
2146 * first slave
2147 */
2148 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2149
Jay Vosburghf35188f2010-07-21 12:14:47 +00002150 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002152 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002153 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2154 bond_dev->name, bond_dev->name);
2155 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2156 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
2158
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002159 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161out:
2162 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return 0;
2164}
2165
2166/*
2167 * This function changes the active slave to slave <slave_dev>.
2168 * It returns -EINVAL in the following cases.
2169 * - <slave_dev> is not found in the list.
2170 * - There is not active slave now.
2171 * - <slave_dev> is already active.
2172 * - The link state of <slave_dev> is not BOND_LINK_UP.
2173 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002174 * In these cases, this function does nothing.
2175 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 */
2177static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2178{
Wang Chen454d7c92008-11-12 23:37:49 -08002179 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 struct slave *old_active = NULL;
2181 struct slave *new_active = NULL;
2182 int res = 0;
2183
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002184 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002188 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002191 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002193 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002195 read_unlock(&bond->curr_slave_lock);
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 new_active = bond_get_slave_by_dev(bond, slave_dev);
2198
2199 /*
2200 * Changing to the current active: do nothing; return success.
2201 */
2202 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002203 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return 0;
2205 }
2206
2207 if ((new_active) &&
2208 (old_active) &&
2209 (new_active->link == BOND_LINK_UP) &&
2210 IS_UP(new_active->dev)) {
Neil Hormane843fa52010-10-13 16:01:50 +00002211 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002212 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002214 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002215 unblock_netpoll_tx();
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002216 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002219 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 return res;
2222}
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2225{
Wang Chen454d7c92008-11-12 23:37:49 -08002226 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 info->bond_mode = bond->params.mode;
2229 info->miimon = bond->params.miimon;
2230
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002231 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002233 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 return 0;
2236}
2237
2238static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2239{
Wang Chen454d7c92008-11-12 23:37:49 -08002240 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002242 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002244 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 bond_for_each_slave(bond, slave, i) {
2247 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002248 res = 0;
2249 strcpy(info->slave_name, slave->dev->name);
2250 info->link = slave->link;
2251 info->state = slave->state;
2252 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 break;
2254 }
2255 }
2256
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002257 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Eric Dumazet689c96c2009-04-23 03:39:04 +00002259 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
2261
2262/*-------------------------------- Monitoring -------------------------------*/
2263
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002264
2265static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002267 struct slave *slave;
2268 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002269 bool ignore_updelay;
2270
2271 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
2273 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002274 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002276 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002279 case BOND_LINK_UP:
2280 if (link_state)
2281 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002283 slave->link = BOND_LINK_FAIL;
2284 slave->delay = bond->params.downdelay;
2285 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002286 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2287 bond->dev->name,
2288 (bond->params.mode ==
2289 BOND_MODE_ACTIVEBACKUP) ?
2290 ((slave->state == BOND_STATE_ACTIVE) ?
2291 "active " : "backup ") : "",
2292 slave->dev->name,
2293 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002295 /*FALLTHRU*/
2296 case BOND_LINK_FAIL:
2297 if (link_state) {
2298 /*
2299 * recovered before downdelay expired
2300 */
2301 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002303 pr_info("%s: link status up again after %d ms for interface %s.\n",
2304 bond->dev->name,
2305 (bond->params.downdelay - slave->delay) *
2306 bond->params.miimon,
2307 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002308 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002310
2311 if (slave->delay <= 0) {
2312 slave->new_link = BOND_LINK_DOWN;
2313 commit++;
2314 continue;
2315 }
2316
2317 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002320 case BOND_LINK_DOWN:
2321 if (!link_state)
2322 continue;
2323
2324 slave->link = BOND_LINK_BACK;
2325 slave->delay = bond->params.updelay;
2326
2327 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002328 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2329 bond->dev->name, slave->dev->name,
2330 ignore_updelay ? 0 :
2331 bond->params.updelay *
2332 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002334 /*FALLTHRU*/
2335 case BOND_LINK_BACK:
2336 if (!link_state) {
2337 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002338 pr_info("%s: link status down again after %d ms for interface %s.\n",
2339 bond->dev->name,
2340 (bond->params.updelay - slave->delay) *
2341 bond->params.miimon,
2342 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002343
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002344 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002346
Jiri Pirko41f89102009-04-24 03:57:29 +00002347 if (ignore_updelay)
2348 slave->delay = 0;
2349
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002350 if (slave->delay <= 0) {
2351 slave->new_link = BOND_LINK_UP;
2352 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002353 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002354 continue;
2355 }
2356
2357 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002359 }
2360 }
2361
2362 return commit;
2363}
2364
2365static void bond_miimon_commit(struct bonding *bond)
2366{
2367 struct slave *slave;
2368 int i;
2369
2370 bond_for_each_slave(bond, slave, i) {
2371 switch (slave->new_link) {
2372 case BOND_LINK_NOCHANGE:
2373 continue;
2374
2375 case BOND_LINK_UP:
2376 slave->link = BOND_LINK_UP;
2377 slave->jiffies = jiffies;
2378
2379 if (bond->params.mode == BOND_MODE_8023AD) {
2380 /* prevent it from being the active one */
2381 slave->state = BOND_STATE_BACKUP;
2382 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2383 /* make it immediately active */
2384 slave->state = BOND_STATE_ACTIVE;
2385 } else if (slave != bond->primary_slave) {
2386 /* prevent it from being the active one */
2387 slave->state = BOND_STATE_BACKUP;
2388 }
2389
Krzysztof Piotr Oledzki546add72010-10-06 14:28:22 -07002390 bond_update_speed_duplex(slave);
2391
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002392 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2393 bond->dev->name, slave->dev->name,
2394 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002395
2396 /* notify ad that the link status has changed */
2397 if (bond->params.mode == BOND_MODE_8023AD)
2398 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2399
Holger Eitzenberger58402052008-12-09 23:07:13 -08002400 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002401 bond_alb_handle_link_change(bond, slave,
2402 BOND_LINK_UP);
2403
2404 if (!bond->curr_active_slave ||
2405 (slave == bond->primary_slave))
2406 goto do_failover;
2407
2408 continue;
2409
2410 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002411 if (slave->link_failure_count < UINT_MAX)
2412 slave->link_failure_count++;
2413
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002414 slave->link = BOND_LINK_DOWN;
2415
2416 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2417 bond->params.mode == BOND_MODE_8023AD)
2418 bond_set_slave_inactive_flags(slave);
2419
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002420 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2421 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002422
2423 if (bond->params.mode == BOND_MODE_8023AD)
2424 bond_3ad_handle_link_change(slave,
2425 BOND_LINK_DOWN);
2426
Jiri Pirkoae63e802009-05-27 05:42:36 +00002427 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002428 bond_alb_handle_link_change(bond, slave,
2429 BOND_LINK_DOWN);
2430
2431 if (slave == bond->curr_active_slave)
2432 goto do_failover;
2433
2434 continue;
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002437 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002438 bond->dev->name, slave->new_link,
2439 slave->dev->name);
2440 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002442 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
2444
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002445do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002446 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00002447 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002448 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002450 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002451 unblock_netpoll_tx();
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002452 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002453
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002454 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
2456
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002457/*
2458 * bond_mii_monitor
2459 *
2460 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002461 * inspection, then (if inspection indicates something needs to be done)
2462 * an acquisition of appropriate locks followed by a commit phase to
2463 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002464 */
2465void bond_mii_monitor(struct work_struct *work)
2466{
2467 struct bonding *bond = container_of(work, struct bonding,
2468 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002469
2470 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002471 if (bond->kill_timers)
2472 goto out;
2473
2474 if (bond->slave_cnt == 0)
2475 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002476
2477 if (bond->send_grat_arp) {
2478 read_lock(&bond->curr_slave_lock);
2479 bond_send_gratuitous_arp(bond);
2480 read_unlock(&bond->curr_slave_lock);
2481 }
2482
Brian Haley305d5522008-11-04 17:51:14 -08002483 if (bond->send_unsol_na) {
2484 read_lock(&bond->curr_slave_lock);
2485 bond_send_unsolicited_na(bond);
2486 read_unlock(&bond->curr_slave_lock);
2487 }
2488
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002489 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002490 read_unlock(&bond->lock);
2491 rtnl_lock();
2492 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002493
2494 bond_miimon_commit(bond);
2495
Jay Vosburgh56556622008-01-17 16:25:03 -08002496 read_unlock(&bond->lock);
2497 rtnl_unlock(); /* might sleep, hold no other locks */
2498 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002499 }
2500
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002501re_arm:
2502 if (bond->params.miimon)
2503 queue_delayed_work(bond->wq, &bond->mii_work,
2504 msecs_to_jiffies(bond->params.miimon));
2505out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002506 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002507}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002508
Al Virod3bb52b2007-08-22 20:06:58 -04002509static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002510{
2511 struct in_device *idev;
2512 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002513 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002514
2515 if (!dev)
2516 return 0;
2517
2518 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002519 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002520 if (!idev)
2521 goto out;
2522
2523 ifa = idev->ifa_list;
2524 if (!ifa)
2525 goto out;
2526
2527 addr = ifa->ifa_local;
2528out:
2529 rcu_read_unlock();
2530 return addr;
2531}
2532
Al Virod3bb52b2007-08-22 20:06:58 -04002533static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002534{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002535 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002536
2537 if (ip == bond->master_ip)
2538 return 1;
2539
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002540 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002541 if (ip == vlan->vlan_ip)
2542 return 1;
2543 }
2544
2545 return 0;
2546}
2547
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002548/*
2549 * We go to the (large) trouble of VLAN tagging ARP frames because
2550 * switches in VLAN mode (especially if ports are configured as
2551 * "native" to a VLAN) might not pass non-tagged frames.
2552 */
Al Virod3bb52b2007-08-22 20:06:58 -04002553static 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 -04002554{
2555 struct sk_buff *skb;
2556
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002557 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002558 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002559
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002560 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2561 NULL, slave_dev->dev_addr, NULL);
2562
2563 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002564 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002565 return;
2566 }
2567 if (vlan_id) {
2568 skb = vlan_put_tag(skb, vlan_id);
2569 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002570 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002571 return;
2572 }
2573 }
2574 arp_xmit(skb);
2575}
2576
2577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2579{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002580 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002581 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002582 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002583 struct net_device *vlan_dev;
2584 struct flowi fl;
2585 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Mitch Williams6b780562005-11-09 10:36:19 -08002587 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2588 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002589 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002590 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002591 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002592 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002593 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2594 bond->master_ip, 0);
2595 continue;
2596 }
2597
2598 /*
2599 * If VLANs are configured, we do a route lookup to
2600 * determine which VLAN interface would be used, so we
2601 * can tag the ARP with the proper VLAN tag.
2602 */
2603 memset(&fl, 0, sizeof(fl));
2604 fl.fl4_dst = targets[i];
2605 fl.fl4_tos = RTO_ONLINK;
2606
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002607 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002608 if (rv) {
2609 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002610 pr_warning("%s: no route to arp_ip_target %pI4\n",
2611 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002612 }
2613 continue;
2614 }
2615
2616 /*
2617 * This target is not on a VLAN
2618 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002619 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002620 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002621 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002622 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2623 bond->master_ip, 0);
2624 continue;
2625 }
2626
2627 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002628 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002629 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002630 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002631 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002632 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002633 vlan_dev->name, vlan_id);
2634 break;
2635 }
2636 }
2637
2638 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002639 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002640 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2641 vlan->vlan_ip, vlan_id);
2642 continue;
2643 }
2644
2645 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002646 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2647 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002648 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002649 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002650 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002651 }
2652}
2653
2654/*
2655 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2656 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002657 *
2658 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002659 */
2660static void bond_send_gratuitous_arp(struct bonding *bond)
2661{
2662 struct slave *slave = bond->curr_active_slave;
2663 struct vlan_entry *vlan;
2664 struct net_device *vlan_dev;
2665
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002666 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2667 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002668
2669 if (!slave || !bond->send_grat_arp ||
2670 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002671 return;
2672
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002673 bond->send_grat_arp--;
2674
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002675 if (bond->master_ip) {
2676 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002677 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002678 }
2679
Jay Vosburghf35188f2010-07-21 12:14:47 +00002680 if (!bond->vlgrp)
2681 return;
2682
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002683 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002684 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002685 if (vlan->vlan_ip) {
2686 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2687 vlan->vlan_ip, vlan->vlan_id);
2688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
2690}
2691
Al Virod3bb52b2007-08-22 20:06:58 -04002692static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002693{
2694 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002695 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002696
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002697 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002698 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002699 &sip, &tip, i, &targets[i],
2700 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002701 if (sip == targets[i]) {
2702 if (bond_has_this_ip(bond, tip))
2703 slave->last_arp_rx = jiffies;
2704 return;
2705 }
2706 }
2707}
2708
2709static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2710{
2711 struct arphdr *arp;
2712 struct slave *slave;
2713 struct bonding *bond;
2714 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002715 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002716
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002717 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2718 /*
2719 * When using VLANS and bonding, dev and oriv_dev may be
2720 * incorrect if the physical interface supports VLAN
2721 * acceleration. With this change ARP validation now
2722 * works for hosts only reachable on the VLAN interface.
2723 */
2724 dev = vlan_dev_real_dev(dev);
2725 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2726 }
2727
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002728 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2729 goto out;
2730
Wang Chen454d7c92008-11-12 23:37:49 -08002731 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002732 read_lock(&bond->lock);
2733
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002734 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002735 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2736 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002737
2738 slave = bond_get_slave_by_dev(bond, orig_dev);
2739 if (!slave || !slave_do_arp_validate(bond, slave))
2740 goto out_unlock;
2741
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002742 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002743 goto out_unlock;
2744
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002745 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002746 if (arp->ar_hln != dev->addr_len ||
2747 skb->pkt_type == PACKET_OTHERHOST ||
2748 skb->pkt_type == PACKET_LOOPBACK ||
2749 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2750 arp->ar_pro != htons(ETH_P_IP) ||
2751 arp->ar_pln != 4)
2752 goto out_unlock;
2753
2754 arp_ptr = (unsigned char *)(arp + 1);
2755 arp_ptr += dev->addr_len;
2756 memcpy(&sip, arp_ptr, 4);
2757 arp_ptr += 4 + dev->addr_len;
2758 memcpy(&tip, arp_ptr, 4);
2759
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002760 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002761 bond->dev->name, slave->dev->name, slave->state,
2762 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2763 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002764
2765 /*
2766 * Backup slaves won't see the ARP reply, but do come through
2767 * here for each ARP probe (so we swap the sip/tip to validate
2768 * the probe). In a "redundant switch, common router" type of
2769 * configuration, the ARP probe will (hopefully) travel from
2770 * the active, through one switch, the router, then the other
2771 * switch before reaching the backup.
2772 */
2773 if (slave->state == BOND_STATE_ACTIVE)
2774 bond_validate_arp(bond, slave, sip, tip);
2775 else
2776 bond_validate_arp(bond, slave, tip, sip);
2777
2778out_unlock:
2779 read_unlock(&bond->lock);
2780out:
2781 dev_kfree_skb(skb);
2782 return NET_RX_SUCCESS;
2783}
2784
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785/*
2786 * this function is called regularly to monitor each slave's link
2787 * ensuring that traffic is being sent and received when arp monitoring
2788 * is used in load-balancing mode. if the adapter has been dormant, then an
2789 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2790 * arp monitoring in active backup mode.
2791 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002792void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002794 struct bonding *bond = container_of(work, struct bonding,
2795 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 struct slave *slave, *oldcurrent;
2797 int do_failover = 0;
2798 int delta_in_ticks;
2799 int i;
2800
2801 read_lock(&bond->lock);
2802
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002803 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002805 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002808 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811 read_lock(&bond->curr_slave_lock);
2812 oldcurrent = bond->curr_active_slave;
2813 read_unlock(&bond->curr_slave_lock);
2814
2815 /* see if any of the previous devices are up now (i.e. they have
2816 * xmt and rcv traffic). the curr_active_slave does not come into
2817 * the picture unless it is null. also, slave->jiffies is not needed
2818 * here because we send an arp on each slave and give a slave as
2819 * long as it needs to get the tx/rx within the delta.
2820 * TODO: what about up/down delay in arp mode? it wasn't here before
2821 * so it can wait
2822 */
2823 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002824 unsigned long trans_start = dev_trans_start(slave->dev);
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002827 if (time_in_range(jiffies,
2828 trans_start - delta_in_ticks,
2829 trans_start + delta_in_ticks) &&
2830 time_in_range(jiffies,
2831 slave->dev->last_rx - delta_in_ticks,
2832 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
2834 slave->link = BOND_LINK_UP;
2835 slave->state = BOND_STATE_ACTIVE;
2836
2837 /* primary_slave has no meaning in round-robin
2838 * mode. the window of a slave being up and
2839 * curr_active_slave being null after enslaving
2840 * is closed.
2841 */
2842 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002843 pr_info("%s: link status definitely up for interface %s, ",
2844 bond->dev->name,
2845 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 do_failover = 1;
2847 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002848 pr_info("%s: interface %s is now up\n",
2849 bond->dev->name,
2850 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852 }
2853 } else {
2854 /* slave->link == BOND_LINK_UP */
2855
2856 /* not all switches will respond to an arp request
2857 * when the source ip is 0, so don't take the link down
2858 * if we don't know our ip yet
2859 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002860 if (!time_in_range(jiffies,
2861 trans_start - delta_in_ticks,
2862 trans_start + 2 * delta_in_ticks) ||
2863 !time_in_range(jiffies,
2864 slave->dev->last_rx - delta_in_ticks,
2865 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 slave->link = BOND_LINK_DOWN;
2868 slave->state = BOND_STATE_BACKUP;
2869
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002870 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002873 pr_info("%s: interface %s is now down.\n",
2874 bond->dev->name,
2875 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002877 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 }
2880 }
2881
2882 /* note: if switch is in round-robin mode, all links
2883 * must tx arp to ensure all links rx an arp - otherwise
2884 * links may oscillate or not come up at all; if switch is
2885 * in something like xor mode, there is nothing we can
2886 * do - all replies will be rx'ed on same link causing slaves
2887 * to be unstable during low/no traffic periods
2888 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002889 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 }
2892
2893 if (do_failover) {
Neil Hormane843fa52010-10-13 16:01:50 +00002894 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002895 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897 bond_select_active_slave(bond);
2898
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002899 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002900 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
2902
2903re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002904 if (bond->params.arp_interval)
2905 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906out:
2907 read_unlock(&bond->lock);
2908}
2909
2910/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002911 * Called to inspect slaves for active-backup mode ARP monitor link state
2912 * changes. Sets new_link in slaves to specify what action should take
2913 * place for the slave. Returns 0 if no changes are found, >0 if changes
2914 * to link states must be committed.
2915 *
2916 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002918static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002921 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002922 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002925 slave->new_link = BOND_LINK_NOCHANGE;
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002928 if (time_in_range(jiffies,
2929 slave_last_rx(bond, slave) - delta_in_ticks,
2930 slave_last_rx(bond, slave) + delta_in_ticks)) {
2931
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002932 slave->new_link = BOND_LINK_UP;
2933 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002936 continue;
2937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002939 /*
2940 * Give slaves 2*delta after being enslaved or made
2941 * active. This avoids bouncing, as the last receive
2942 * times need a full ARP monitor cycle to be updated.
2943 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002944 if (time_in_range(jiffies,
2945 slave->jiffies - delta_in_ticks,
2946 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002947 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002949 /*
2950 * Backup slave is down if:
2951 * - No current_arp_slave AND
2952 * - more than 3*delta since last receive AND
2953 * - the bond has an IP address
2954 *
2955 * Note: a non-null current_arp_slave indicates
2956 * the curr_active_slave went down and we are
2957 * searching for a new one; under this condition
2958 * we only take the curr_active_slave down - this
2959 * gives each slave a chance to tx/rx traffic
2960 * before being taken out
2961 */
2962 if (slave->state == BOND_STATE_BACKUP &&
2963 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002964 !time_in_range(jiffies,
2965 slave_last_rx(bond, slave) - delta_in_ticks,
2966 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2967
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002968 slave->new_link = BOND_LINK_DOWN;
2969 commit++;
2970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002972 /*
2973 * Active slave is down if:
2974 * - more than 2*delta since transmitting OR
2975 * - (more than 2*delta since receive AND
2976 * the bond has an IP address)
2977 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002978 trans_start = dev_trans_start(slave->dev);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002979 if ((slave->state == BOND_STATE_ACTIVE) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002980 (!time_in_range(jiffies,
2981 trans_start - delta_in_ticks,
2982 trans_start + 2 * delta_in_ticks) ||
2983 !time_in_range(jiffies,
2984 slave_last_rx(bond, slave) - delta_in_ticks,
2985 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
2986
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002987 slave->new_link = BOND_LINK_DOWN;
2988 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 }
2990 }
2991
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002992 return commit;
2993}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002995/*
2996 * Called to commit link state changes noted by inspection step of
2997 * active-backup mode ARP monitor.
2998 *
2999 * Called with RTNL and bond->lock for read.
3000 */
3001static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
3002{
3003 struct slave *slave;
3004 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003005 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003007 bond_for_each_slave(bond, slave, i) {
3008 switch (slave->new_link) {
3009 case BOND_LINK_NOCHANGE:
3010 continue;
3011
3012 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003013 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003014 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003015 time_in_range(jiffies,
3016 trans_start - delta_in_ticks,
3017 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003018 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003019 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003020 bond->current_arp_slave = NULL;
3021
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003022 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003023 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003024
Jiri Pirkob9f60252009-08-31 11:09:38 +00003025 if (!bond->curr_active_slave ||
3026 (slave == bond->primary_slave))
3027 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003028
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003029 }
3030
Jiri Pirkob9f60252009-08-31 11:09:38 +00003031 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003032
3033 case BOND_LINK_DOWN:
3034 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003037 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003038 bond_set_slave_inactive_flags(slave);
3039
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003040 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003041 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003042
3043 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003044 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003045 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003046 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003047
3048 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003049
3050 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003051 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003052 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003054 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Jiri Pirkob9f60252009-08-31 11:09:38 +00003057do_failover:
3058 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00003059 block_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003060 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003061 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003062 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00003063 unblock_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003064 }
3065
3066 bond_set_carrier(bond);
3067}
3068
3069/*
3070 * Send ARP probes for active-backup mode ARP monitor.
3071 *
3072 * Called with bond->lock held for read.
3073 */
3074static void bond_ab_arp_probe(struct bonding *bond)
3075{
3076 struct slave *slave;
3077 int i;
3078
3079 read_lock(&bond->curr_slave_lock);
3080
3081 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003082 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3083 bond->current_arp_slave->dev->name,
3084 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003085
3086 if (bond->curr_active_slave) {
3087 bond_arp_send_all(bond, bond->curr_active_slave);
3088 read_unlock(&bond->curr_slave_lock);
3089 return;
3090 }
3091
3092 read_unlock(&bond->curr_slave_lock);
3093
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 /* if we don't have a curr_active_slave, search for the next available
3095 * backup slave from the current_arp_slave and make it the candidate
3096 * for becoming the curr_active_slave
3097 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003098
3099 if (!bond->current_arp_slave) {
3100 bond->current_arp_slave = bond->first_slave;
3101 if (!bond->current_arp_slave)
3102 return;
3103 }
3104
3105 bond_set_slave_inactive_flags(bond->current_arp_slave);
3106
3107 /* search for next candidate */
3108 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3109 if (IS_UP(slave->dev)) {
3110 slave->link = BOND_LINK_BACK;
3111 bond_set_slave_active_flags(slave);
3112 bond_arp_send_all(bond, slave);
3113 slave->jiffies = jiffies;
3114 bond->current_arp_slave = slave;
3115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 }
3117
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003118 /* if the link state is up at this point, we
3119 * mark it down - this can happen if we have
3120 * simultaneous link failures and
3121 * reselect_active_interface doesn't make this
3122 * one the current slave so it is still marked
3123 * up when it is actually down
3124 */
3125 if (slave->link == BOND_LINK_UP) {
3126 slave->link = BOND_LINK_DOWN;
3127 if (slave->link_failure_count < UINT_MAX)
3128 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003130 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003132 pr_info("%s: backup interface %s is now down.\n",
3133 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 }
3135 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003136}
3137
3138void bond_activebackup_arp_mon(struct work_struct *work)
3139{
3140 struct bonding *bond = container_of(work, struct bonding,
3141 arp_work.work);
3142 int delta_in_ticks;
3143
3144 read_lock(&bond->lock);
3145
3146 if (bond->kill_timers)
3147 goto out;
3148
3149 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3150
3151 if (bond->slave_cnt == 0)
3152 goto re_arm;
3153
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003154 if (bond->send_grat_arp) {
3155 read_lock(&bond->curr_slave_lock);
3156 bond_send_gratuitous_arp(bond);
3157 read_unlock(&bond->curr_slave_lock);
3158 }
3159
Brian Haley305d5522008-11-04 17:51:14 -08003160 if (bond->send_unsol_na) {
3161 read_lock(&bond->curr_slave_lock);
3162 bond_send_unsolicited_na(bond);
3163 read_unlock(&bond->curr_slave_lock);
3164 }
3165
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003166 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3167 read_unlock(&bond->lock);
3168 rtnl_lock();
3169 read_lock(&bond->lock);
3170
3171 bond_ab_arp_commit(bond, delta_in_ticks);
3172
3173 read_unlock(&bond->lock);
3174 rtnl_unlock();
3175 read_lock(&bond->lock);
3176 }
3177
3178 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003181 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003182 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183out:
3184 read_unlock(&bond->lock);
3185}
3186
3187/*------------------------------ proc/seq_file-------------------------------*/
3188
3189#ifdef CONFIG_PROC_FS
3190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003192 __acquires(&dev_base_lock)
3193 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194{
3195 struct bonding *bond = seq->private;
3196 loff_t off = 0;
3197 struct slave *slave;
3198 int i;
3199
3200 /* make sure the bond won't be taken away */
3201 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003202 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003204 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003208 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 }
3211
3212 return NULL;
3213}
3214
3215static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3216{
3217 struct bonding *bond = seq->private;
3218 struct slave *slave = v;
3219
3220 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003221 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224 slave = slave->next;
3225
3226 return (slave == bond->first_slave) ? NULL : slave;
3227}
3228
3229static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003230 __releases(&bond->lock)
3231 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232{
3233 struct bonding *bond = seq->private;
3234
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003235 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 read_unlock(&dev_base_lock);
3237}
3238
3239static void bond_info_show_master(struct seq_file *seq)
3240{
3241 struct bonding *bond = seq->private;
3242 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003243 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 read_lock(&bond->curr_slave_lock);
3246 curr = bond->curr_active_slave;
3247 read_unlock(&bond->curr_slave_lock);
3248
Jay Vosburghdd957c52007-10-09 19:57:24 -07003249 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 bond_mode_name(bond->params.mode));
3251
Jay Vosburghdd957c52007-10-09 19:57:24 -07003252 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3253 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003254 seq_printf(seq, " (fail_over_mac %s)",
3255 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003256
3257 seq_printf(seq, "\n");
3258
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003259 if (bond->params.mode == BOND_MODE_XOR ||
3260 bond->params.mode == BOND_MODE_8023AD) {
3261 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3262 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3263 bond->params.xmit_policy);
3264 }
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003267 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003268 (bond->primary_slave) ?
3269 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003270 if (bond->primary_slave)
3271 seq_printf(seq, " (primary_reselect %s)",
3272 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Jiri Pirkoa5499522009-09-25 03:28:09 +00003274 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 (curr) ? curr->dev->name : "None");
3276 }
3277
Jay Vosburghff59c452006-03-27 13:27:43 -08003278 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3279 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3281 seq_printf(seq, "Up Delay (ms): %d\n",
3282 bond->params.updelay * bond->params.miimon);
3283 seq_printf(seq, "Down Delay (ms): %d\n",
3284 bond->params.downdelay * bond->params.miimon);
3285
Mitch Williams4756b022005-11-09 10:36:25 -08003286
3287 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003288 if (bond->params.arp_interval > 0) {
3289 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003290 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3291 bond->params.arp_interval);
3292
3293 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3294
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003295 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003296 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003297 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003298 if (printed)
3299 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003300 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003301 printed = 1;
3302 }
3303 seq_printf(seq, "\n");
3304 }
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 if (bond->params.mode == BOND_MODE_8023AD) {
3307 struct ad_info ad_info;
3308
3309 seq_puts(seq, "\n802.3ad info\n");
3310 seq_printf(seq, "LACP rate: %s\n",
3311 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003312 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3313 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3316 seq_printf(seq, "bond %s has no active aggregator\n",
3317 bond->dev->name);
3318 } else {
3319 seq_printf(seq, "Active Aggregator Info:\n");
3320
3321 seq_printf(seq, "\tAggregator ID: %d\n",
3322 ad_info.aggregator_id);
3323 seq_printf(seq, "\tNumber of ports: %d\n",
3324 ad_info.ports);
3325 seq_printf(seq, "\tActor Key: %d\n",
3326 ad_info.actor_key);
3327 seq_printf(seq, "\tPartner Key: %d\n",
3328 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003329 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3330 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 }
3332 }
3333}
3334
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003335static void bond_info_show_slave(struct seq_file *seq,
3336 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337{
3338 struct bonding *bond = seq->private;
3339
3340 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3341 seq_printf(seq, "MII Status: %s\n",
3342 (slave->link == BOND_LINK_UP) ? "up" : "down");
Krzysztof Oledzkidd53df22010-09-30 06:19:04 +00003343 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
3344 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
Kenzo Iwami655096452006-09-22 21:53:08 -07003345 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 slave->link_failure_count);
3347
Johannes Berge1749612008-10-27 15:59:26 -07003348 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
3350 if (bond->params.mode == BOND_MODE_8023AD) {
3351 const struct aggregator *agg
3352 = SLAVE_AD_INFO(slave).port.aggregator;
3353
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003354 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 seq_printf(seq, "Aggregator ID: %d\n",
3356 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003357 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003360 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361}
3362
3363static int bond_info_seq_show(struct seq_file *seq, void *v)
3364{
3365 if (v == SEQ_START_TOKEN) {
3366 seq_printf(seq, "%s\n", version);
3367 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003368 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
3371 return 0;
3372}
3373
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003374static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 .start = bond_info_seq_start,
3376 .next = bond_info_seq_next,
3377 .stop = bond_info_seq_stop,
3378 .show = bond_info_seq_show,
3379};
3380
3381static int bond_info_open(struct inode *inode, struct file *file)
3382{
3383 struct seq_file *seq;
3384 struct proc_dir_entry *proc;
3385 int res;
3386
3387 res = seq_open(file, &bond_info_seq_ops);
3388 if (!res) {
3389 /* recover the pointer buried in proc_dir_entry data */
3390 seq = file->private_data;
3391 proc = PDE(inode);
3392 seq->private = proc->data;
3393 }
3394
3395 return res;
3396}
3397
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003398static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 .owner = THIS_MODULE,
3400 .open = bond_info_open,
3401 .read = seq_read,
3402 .llseek = seq_lseek,
3403 .release = seq_release,
3404};
3405
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003406static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407{
3408 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003409 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003411 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003412 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003413 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003414 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003415 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003416 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3417 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003418 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421}
3422
3423static void bond_remove_proc_entry(struct bonding *bond)
3424{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003425 struct net_device *bond_dev = bond->dev;
3426 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3427
3428 if (bn->proc_dir && bond->proc_entry) {
3429 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 memset(bond->proc_file_name, 0, IFNAMSIZ);
3431 bond->proc_entry = NULL;
3432 }
3433}
3434
3435/* Create the bonding directory under /proc/net, if doesn't exist yet.
3436 * Caller must hold rtnl_lock.
3437 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003438static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003440 if (!bn->proc_dir) {
3441 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3442 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003443 pr_warning("Warning: cannot create /proc/net/%s\n",
3444 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 }
3446}
3447
3448/* Destroy the bonding directory under /proc/net, if empty.
3449 * Caller must hold rtnl_lock.
3450 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003451static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003453 if (bn->proc_dir) {
3454 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3455 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 }
3457}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003458
3459#else /* !CONFIG_PROC_FS */
3460
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003461static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003462{
3463}
3464
3465static void bond_remove_proc_entry(struct bonding *bond)
3466{
3467}
3468
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003469static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003470{
3471}
3472
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003473static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003474{
3475}
3476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477#endif /* CONFIG_PROC_FS */
3478
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003479
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480/*-------------------------- netdev event handling --------------------------*/
3481
3482/*
3483 * Change device name
3484 */
3485static int bond_event_changename(struct bonding *bond)
3486{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 bond_remove_proc_entry(bond);
3488 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003489
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 return NOTIFY_DONE;
3491}
3492
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003493static int bond_master_netdev_event(unsigned long event,
3494 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495{
Wang Chen454d7c92008-11-12 23:37:49 -08003496 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
3498 switch (event) {
3499 case NETDEV_CHANGENAME:
3500 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 default:
3502 break;
3503 }
3504
3505 return NOTIFY_DONE;
3506}
3507
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003508static int bond_slave_netdev_event(unsigned long event,
3509 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510{
3511 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003512 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
3514 switch (event) {
3515 case NETDEV_UNREGISTER:
3516 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003517 if (bond->setup_by_slave)
3518 bond_release_and_destroy(bond_dev, slave_dev);
3519 else
3520 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 }
3522 break;
3523 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003524 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3525 struct slave *slave;
3526
3527 slave = bond_get_slave_by_dev(bond, slave_dev);
3528 if (slave) {
3529 u16 old_speed = slave->speed;
3530 u16 old_duplex = slave->duplex;
3531
3532 bond_update_speed_duplex(slave);
3533
3534 if (bond_is_lb(bond))
3535 break;
3536
3537 if (old_speed != slave->speed)
3538 bond_3ad_adapter_speed_changed(slave);
3539 if (old_duplex != slave->duplex)
3540 bond_3ad_adapter_duplex_changed(slave);
3541 }
3542 }
3543
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 break;
3545 case NETDEV_DOWN:
3546 /*
3547 * ... Or is it this?
3548 */
3549 break;
3550 case NETDEV_CHANGEMTU:
3551 /*
3552 * TODO: Should slaves be allowed to
3553 * independently alter their MTU? For
3554 * an active-backup bond, slaves need
3555 * not be the same type of device, so
3556 * MTUs may vary. For other modes,
3557 * slaves arguably should have the
3558 * same MTUs. To do this, we'd need to
3559 * take over the slave's change_mtu
3560 * function for the duration of their
3561 * servitude.
3562 */
3563 break;
3564 case NETDEV_CHANGENAME:
3565 /*
3566 * TODO: handle changing the primary's name
3567 */
3568 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003569 case NETDEV_FEAT_CHANGE:
3570 bond_compute_features(bond);
3571 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 default:
3573 break;
3574 }
3575
3576 return NOTIFY_DONE;
3577}
3578
3579/*
3580 * bond_netdev_event: handle netdev notifier chain events.
3581 *
3582 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003583 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 * locks for us to safely manipulate the slave devices (RTNL lock,
3585 * dev_probe_lock).
3586 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003587static int bond_netdev_event(struct notifier_block *this,
3588 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589{
3590 struct net_device *event_dev = (struct net_device *)ptr;
3591
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003592 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003593 event_dev ? event_dev->name : "None",
3594 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003596 if (!(event_dev->priv_flags & IFF_BONDING))
3597 return NOTIFY_DONE;
3598
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003600 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 return bond_master_netdev_event(event, event_dev);
3602 }
3603
3604 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003605 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 return bond_slave_netdev_event(event, event_dev);
3607 }
3608
3609 return NOTIFY_DONE;
3610}
3611
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003612/*
3613 * bond_inetaddr_event: handle inetaddr notifier chain events.
3614 *
3615 * We keep track of device IPs primarily to use as source addresses in
3616 * ARP monitor probes (rather than spewing out broadcasts all the time).
3617 *
3618 * We track one IP for the main device (if it has one), plus one per VLAN.
3619 */
3620static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3621{
3622 struct in_ifaddr *ifa = ptr;
3623 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003624 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003625 struct bonding *bond;
3626 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003627
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003628 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003629 if (bond->dev == event_dev) {
3630 switch (event) {
3631 case NETDEV_UP:
3632 bond->master_ip = ifa->ifa_local;
3633 return NOTIFY_OK;
3634 case NETDEV_DOWN:
3635 bond->master_ip = bond_glean_dev_ip(bond->dev);
3636 return NOTIFY_OK;
3637 default:
3638 return NOTIFY_DONE;
3639 }
3640 }
3641
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003642 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003643 if (!bond->vlgrp)
3644 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003645 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003646 if (vlan_dev == event_dev) {
3647 switch (event) {
3648 case NETDEV_UP:
3649 vlan->vlan_ip = ifa->ifa_local;
3650 return NOTIFY_OK;
3651 case NETDEV_DOWN:
3652 vlan->vlan_ip =
3653 bond_glean_dev_ip(vlan_dev);
3654 return NOTIFY_OK;
3655 default:
3656 return NOTIFY_DONE;
3657 }
3658 }
3659 }
3660 }
3661 return NOTIFY_DONE;
3662}
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664static struct notifier_block bond_netdev_notifier = {
3665 .notifier_call = bond_netdev_event,
3666};
3667
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003668static struct notifier_block bond_inetaddr_notifier = {
3669 .notifier_call = bond_inetaddr_event,
3670};
3671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672/*-------------------------- Packet type handling ---------------------------*/
3673
3674/* register to receive lacpdus on a bond */
3675static void bond_register_lacpdu(struct bonding *bond)
3676{
3677 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3678
3679 /* initialize packet type */
3680 pk_type->type = PKT_TYPE_LACPDU;
3681 pk_type->dev = bond->dev;
3682 pk_type->func = bond_3ad_lacpdu_recv;
3683
3684 dev_add_pack(pk_type);
3685}
3686
3687/* unregister to receive lacpdus on a bond */
3688static void bond_unregister_lacpdu(struct bonding *bond)
3689{
3690 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3691}
3692
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003693void bond_register_arp(struct bonding *bond)
3694{
3695 struct packet_type *pt = &bond->arp_mon_pt;
3696
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003697 if (pt->type)
3698 return;
3699
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003700 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003701 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003702 pt->func = bond_arp_rcv;
3703 dev_add_pack(pt);
3704}
3705
3706void bond_unregister_arp(struct bonding *bond)
3707{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003708 struct packet_type *pt = &bond->arp_mon_pt;
3709
3710 dev_remove_pack(pt);
3711 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003712}
3713
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003714/*---------------------------- Hashing Policies -----------------------------*/
3715
3716/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003717 * Hash for the output device based upon layer 2 and layer 3 data. If
3718 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3719 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003720static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003721{
3722 struct ethhdr *data = (struct ethhdr *)skb->data;
3723 struct iphdr *iph = ip_hdr(skb);
3724
Brian Haleyf14c4e42008-09-02 10:08:08 -04003725 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003726 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003727 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003728 }
3729
Jasper Spaansd3da6832009-10-23 04:08:46 +00003730 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003731}
3732
3733/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003734 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003735 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3736 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3737 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003738static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003739{
3740 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003741 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003742 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003743 int layer4_xor = 0;
3744
Brian Haleyf14c4e42008-09-02 10:08:08 -04003745 if (skb->protocol == htons(ETH_P_IP)) {
3746 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003747 (iph->protocol == IPPROTO_TCP ||
3748 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003749 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003750 }
3751 return (layer4_xor ^
3752 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3753
3754 }
3755
Jasper Spaansd3da6832009-10-23 04:08:46 +00003756 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003757}
3758
3759/*
3760 * Hash for the output device based upon layer 2 data
3761 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003762static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003763{
3764 struct ethhdr *data = (struct ethhdr *)skb->data;
3765
Jasper Spaansd3da6832009-10-23 04:08:46 +00003766 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003767}
3768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769/*-------------------------- Device entry points ----------------------------*/
3770
3771static int bond_open(struct net_device *bond_dev)
3772{
Wang Chen454d7c92008-11-12 23:37:49 -08003773 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
3775 bond->kill_timers = 0;
3776
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003777 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3778
Holger Eitzenberger58402052008-12-09 23:07:13 -08003779 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 /* bond_alb_initialize must be called before the timer
3781 * is started.
3782 */
3783 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3784 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003785 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 }
3787
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003788 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3789 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 }
3791
3792 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003793 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3794 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 }
3796
3797 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003798 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3799 INIT_DELAYED_WORK(&bond->arp_work,
3800 bond_activebackup_arp_mon);
3801 else
3802 INIT_DELAYED_WORK(&bond->arp_work,
3803 bond_loadbalance_arp_mon);
3804
3805 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003806 if (bond->params.arp_validate)
3807 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 }
3809
3810 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003811 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003812 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 /* register to receive LACPDUs */
3814 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003815 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 }
3817
3818 return 0;
3819}
3820
3821static int bond_close(struct net_device *bond_dev)
3822{
Wang Chen454d7c92008-11-12 23:37:49 -08003823 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 if (bond->params.mode == BOND_MODE_8023AD) {
3826 /* Unregister the receive of LACPDUs */
3827 bond_unregister_lacpdu(bond);
3828 }
3829
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003830 if (bond->params.arp_validate)
3831 bond_unregister_arp(bond);
3832
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 write_lock_bh(&bond->lock);
3834
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003835 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003836 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838 /* signal timers not to re-arm */
3839 bond->kill_timers = 1;
3840
3841 write_unlock_bh(&bond->lock);
3842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003844 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 }
3846
3847 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003848 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 }
3850
3851 switch (bond->params.mode) {
3852 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003853 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 break;
3855 case BOND_MODE_TLB:
3856 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003857 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 break;
3859 default:
3860 break;
3861 }
3862
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003863 if (delayed_work_pending(&bond->mcast_work))
3864 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Holger Eitzenberger58402052008-12-09 23:07:13 -08003866 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 /* Must be called only after all
3868 * slaves have been released
3869 */
3870 bond_alb_deinitialize(bond);
3871 }
3872
3873 return 0;
3874}
3875
Eric Dumazet28172732010-07-07 14:58:56 -07003876static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3877 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
Wang Chen454d7c92008-11-12 23:37:49 -08003879 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003880 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 struct slave *slave;
3882 int i;
3883
Eric Dumazet28172732010-07-07 14:58:56 -07003884 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
3886 read_lock_bh(&bond->lock);
3887
3888 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003889 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003890 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003891
Eric Dumazet28172732010-07-07 14:58:56 -07003892 stats->rx_packets += sstats->rx_packets;
3893 stats->rx_bytes += sstats->rx_bytes;
3894 stats->rx_errors += sstats->rx_errors;
3895 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896
Eric Dumazet28172732010-07-07 14:58:56 -07003897 stats->tx_packets += sstats->tx_packets;
3898 stats->tx_bytes += sstats->tx_bytes;
3899 stats->tx_errors += sstats->tx_errors;
3900 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Eric Dumazet28172732010-07-07 14:58:56 -07003902 stats->multicast += sstats->multicast;
3903 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Eric Dumazet28172732010-07-07 14:58:56 -07003905 stats->rx_length_errors += sstats->rx_length_errors;
3906 stats->rx_over_errors += sstats->rx_over_errors;
3907 stats->rx_crc_errors += sstats->rx_crc_errors;
3908 stats->rx_frame_errors += sstats->rx_frame_errors;
3909 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3910 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Eric Dumazet28172732010-07-07 14:58:56 -07003912 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3913 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3914 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3915 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3916 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 }
3918
3919 read_unlock_bh(&bond->lock);
3920
3921 return stats;
3922}
3923
3924static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3925{
3926 struct net_device *slave_dev = NULL;
3927 struct ifbond k_binfo;
3928 struct ifbond __user *u_binfo = NULL;
3929 struct ifslave k_sinfo;
3930 struct ifslave __user *u_sinfo = NULL;
3931 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 int res = 0;
3933
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003934 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
3936 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 case SIOCGMIIPHY:
3938 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003939 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 mii->phy_id = 0;
3943 /* Fall Through */
3944 case SIOCGMIIREG:
3945 /*
3946 * We do this again just in case we were called by SIOCGMIIREG
3947 * instead of SIOCGMIIPHY.
3948 */
3949 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003950 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003952
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003955 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003957 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003959 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003963 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 }
3965
3966 return 0;
3967 case BOND_INFO_QUERY_OLD:
3968 case SIOCBONDINFOQUERY:
3969 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3970
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003971 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
3974 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003975 if (res == 0 &&
3976 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3977 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
3979 return res;
3980 case BOND_SLAVE_INFO_QUERY_OLD:
3981 case SIOCBONDSLAVEINFOQUERY:
3982 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3983
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003984 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
3987 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003988 if (res == 0 &&
3989 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3990 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992 return res;
3993 default:
3994 /* Go on */
3995 break;
3996 }
3997
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003998 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004001 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004003 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004005 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004007 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004008 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 switch (cmd) {
4010 case BOND_ENSLAVE_OLD:
4011 case SIOCBONDENSLAVE:
4012 res = bond_enslave(bond_dev, slave_dev);
4013 break;
4014 case BOND_RELEASE_OLD:
4015 case SIOCBONDRELEASE:
4016 res = bond_release(bond_dev, slave_dev);
4017 break;
4018 case BOND_SETHWADDR_OLD:
4019 case SIOCBONDSETHWADDR:
4020 res = bond_sethwaddr(bond_dev, slave_dev);
4021 break;
4022 case BOND_CHANGE_ACTIVE_OLD:
4023 case SIOCBONDCHANGEACTIVE:
4024 res = bond_ioctl_change_active(bond_dev, slave_dev);
4025 break;
4026 default:
4027 res = -EOPNOTSUPP;
4028 }
4029
4030 dev_put(slave_dev);
4031 }
4032
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 return res;
4034}
4035
Jiri Pirko22bedad32010-04-01 21:22:57 +00004036static bool bond_addr_in_mc_list(unsigned char *addr,
4037 struct netdev_hw_addr_list *list,
4038 int addrlen)
4039{
4040 struct netdev_hw_addr *ha;
4041
4042 netdev_hw_addr_list_for_each(ha, list)
4043 if (!memcmp(ha->addr, addr, addrlen))
4044 return true;
4045
4046 return false;
4047}
4048
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049static void bond_set_multicast_list(struct net_device *bond_dev)
4050{
Wang Chen454d7c92008-11-12 23:37:49 -08004051 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004052 struct netdev_hw_addr *ha;
4053 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 /*
4056 * Do promisc before checking multicast_mode
4057 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004058 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004059 /*
4060 * FIXME: Need to handle the error when one of the multi-slaves
4061 * encounters error.
4062 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004065
4066 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004068
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
4070 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004071 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004072 /*
4073 * FIXME: Need to handle the error when one of the multi-slaves
4074 * encounters error.
4075 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004078
4079 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004081
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004083 read_lock(&bond->lock);
4084
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 bond->flags = bond_dev->flags;
4086
4087 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004088 netdev_for_each_mc_addr(ha, bond_dev) {
4089 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4090 bond_dev->addr_len);
4091 if (!found)
4092 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 }
4094
4095 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004096 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4097 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4098 bond_dev->addr_len);
4099 if (!found)
4100 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 }
4102
4103 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004104 __hw_addr_flush(&bond->mc_list);
4105 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4106 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004108 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109}
4110
Stephen Hemminger00829822008-11-20 20:14:53 -08004111static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4112{
4113 struct bonding *bond = netdev_priv(dev);
4114 struct slave *slave = bond->first_slave;
4115
4116 if (slave) {
4117 const struct net_device_ops *slave_ops
4118 = slave->dev->netdev_ops;
4119 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004120 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004121 }
4122 return 0;
4123}
4124
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125/*
4126 * Change the MTU of all of a master's slaves to match the master
4127 */
4128static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4129{
Wang Chen454d7c92008-11-12 23:37:49 -08004130 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 struct slave *slave, *stop_at;
4132 int res = 0;
4133 int i;
4134
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004135 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004136 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
4138 /* Can't hold bond->lock with bh disabled here since
4139 * some base drivers panic. On the other hand we can't
4140 * hold bond->lock without bh disabled because we'll
4141 * deadlock. The only solution is to rely on the fact
4142 * that we're under rtnl_lock here, and the slaves
4143 * list won't change. This doesn't solve the problem
4144 * of setting the slave's MTU while it is
4145 * transmitting, but the assumption is that the base
4146 * driver can handle that.
4147 *
4148 * TODO: figure out a way to safely iterate the slaves
4149 * list, but without holding a lock around the actual
4150 * call to the base driver.
4151 */
4152
4153 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004154 pr_debug("s %p s->p %p c_m %p\n",
4155 slave,
4156 slave->prev,
4157 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004158
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 res = dev_set_mtu(slave->dev, new_mtu);
4160
4161 if (res) {
4162 /* If we failed to set the slave's mtu to the new value
4163 * we must abort the operation even in ACTIVE_BACKUP
4164 * mode, because if we allow the backup slaves to have
4165 * different mtu values than the active slave we'll
4166 * need to change their mtu when doing a failover. That
4167 * means changing their mtu from timer context, which
4168 * is probably not a good idea.
4169 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004170 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 goto unwind;
4172 }
4173 }
4174
4175 bond_dev->mtu = new_mtu;
4176
4177 return 0;
4178
4179unwind:
4180 /* unwind from head to the slave that failed */
4181 stop_at = slave;
4182 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4183 int tmp_res;
4184
4185 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4186 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004187 pr_debug("unwind err %d dev %s\n",
4188 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 }
4190 }
4191
4192 return res;
4193}
4194
4195/*
4196 * Change HW address
4197 *
4198 * Note that many devices must be down to change the HW address, and
4199 * downing the master releases all slaves. We can make bonds full of
4200 * bonding devices to test this, however.
4201 */
4202static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4203{
Wang Chen454d7c92008-11-12 23:37:49 -08004204 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 struct sockaddr *sa = addr, tmp_sa;
4206 struct slave *slave, *stop_at;
4207 int res = 0;
4208 int i;
4209
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004210 if (bond->params.mode == BOND_MODE_ALB)
4211 return bond_alb_set_mac_address(bond_dev, addr);
4212
4213
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004214 pr_debug("bond=%p, name=%s\n",
4215 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Jay Vosburghdd957c52007-10-09 19:57:24 -07004217 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004218 * If fail_over_mac is set to active, do nothing and return
4219 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004220 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004221 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004222 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004223
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004224 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
4227 /* Can't hold bond->lock with bh disabled here since
4228 * some base drivers panic. On the other hand we can't
4229 * hold bond->lock without bh disabled because we'll
4230 * deadlock. The only solution is to rely on the fact
4231 * that we're under rtnl_lock here, and the slaves
4232 * list won't change. This doesn't solve the problem
4233 * of setting the slave's hw address while it is
4234 * transmitting, but the assumption is that the base
4235 * driver can handle that.
4236 *
4237 * TODO: figure out a way to safely iterate the slaves
4238 * list, but without holding a lock around the actual
4239 * call to the base driver.
4240 */
4241
4242 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004243 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004244 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004246 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004248 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 goto unwind;
4250 }
4251
4252 res = dev_set_mac_address(slave->dev, addr);
4253 if (res) {
4254 /* TODO: consider downing the slave
4255 * and retry ?
4256 * User should expect communications
4257 * breakage anyway until ARP finish
4258 * updating, so...
4259 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004260 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 goto unwind;
4262 }
4263 }
4264
4265 /* success */
4266 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4267 return 0;
4268
4269unwind:
4270 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4271 tmp_sa.sa_family = bond_dev->type;
4272
4273 /* unwind from head to the slave that failed */
4274 stop_at = slave;
4275 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4276 int tmp_res;
4277
4278 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4279 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004280 pr_debug("unwind err %d dev %s\n",
4281 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 }
4283 }
4284
4285 return res;
4286}
4287
4288static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4289{
Wang Chen454d7c92008-11-12 23:37:49 -08004290 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004292 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004293 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
4295 read_lock(&bond->lock);
4296
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004297 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004299 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004300 * Start with the curr_active_slave that joined the bond as the
4301 * default for sending IGMP traffic. For failover purposes one
4302 * needs to maintain some consistency for the interface that will
4303 * send the join/membership reports. The curr_active_slave found
4304 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004305 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004306 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004307 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004309 read_lock(&bond->curr_slave_lock);
4310 slave = bond->curr_active_slave;
4311 read_unlock(&bond->curr_slave_lock);
4312
4313 if (!slave)
4314 goto out;
4315 } else {
4316 /*
4317 * Concurrent TX may collide on rr_tx_counter; we accept
4318 * that as being rare enough not to justify using an
4319 * atomic op here.
4320 */
4321 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4322
4323 bond_for_each_slave(bond, slave, i) {
4324 slave_no--;
4325 if (slave_no < 0)
4326 break;
4327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 }
4329
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004330 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 bond_for_each_slave_from(bond, slave, i, start_at) {
4332 if (IS_UP(slave->dev) &&
4333 (slave->link == BOND_LINK_UP) &&
4334 (slave->state == BOND_STATE_ACTIVE)) {
4335 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 break;
4337 }
4338 }
4339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340out:
4341 if (res) {
4342 /* no suitable interface, frame not sent */
4343 dev_kfree_skb(skb);
4344 }
4345 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004346 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347}
4348
John W. Linville075897c2005-09-28 17:50:53 -04004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350/*
4351 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4352 * the bond has a usable interface.
4353 */
4354static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4355{
Wang Chen454d7c92008-11-12 23:37:49 -08004356 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 int res = 1;
4358
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 read_lock(&bond->lock);
4360 read_lock(&bond->curr_slave_lock);
4361
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004362 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364
John W. Linville075897c2005-09-28 17:50:53 -04004365 if (!bond->curr_active_slave)
4366 goto out;
4367
John W. Linville075897c2005-09-28 17:50:53 -04004368 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004371 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 /* no suitable interface, frame not sent */
4373 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 read_unlock(&bond->curr_slave_lock);
4376 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004377 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378}
4379
4380/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004381 * In bond_xmit_xor() , we determine the output device by using a pre-
4382 * determined xmit_hash_policy(), If the selected device is not enabled,
4383 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 */
4385static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4386{
Wang Chen454d7c92008-11-12 23:37:49 -08004387 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 struct slave *slave, *start_at;
4389 int slave_no;
4390 int i;
4391 int res = 1;
4392
4393 read_lock(&bond->lock);
4394
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004395 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
Jasper Spaansa361c832009-10-23 04:09:24 +00004398 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
4400 bond_for_each_slave(bond, slave, i) {
4401 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004402 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 }
4405
4406 start_at = slave;
4407
4408 bond_for_each_slave_from(bond, slave, i, start_at) {
4409 if (IS_UP(slave->dev) &&
4410 (slave->link == BOND_LINK_UP) &&
4411 (slave->state == BOND_STATE_ACTIVE)) {
4412 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4413 break;
4414 }
4415 }
4416
4417out:
4418 if (res) {
4419 /* no suitable interface, frame not sent */
4420 dev_kfree_skb(skb);
4421 }
4422 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004423 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424}
4425
4426/*
4427 * in broadcast mode, we send everything to all usable interfaces.
4428 */
4429static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4430{
Wang Chen454d7c92008-11-12 23:37:49 -08004431 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 struct slave *slave, *start_at;
4433 struct net_device *tx_dev = NULL;
4434 int i;
4435 int res = 1;
4436
4437 read_lock(&bond->lock);
4438
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004439 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
4442 read_lock(&bond->curr_slave_lock);
4443 start_at = bond->curr_active_slave;
4444 read_unlock(&bond->curr_slave_lock);
4445
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004446 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
4449 bond_for_each_slave_from(bond, slave, i, start_at) {
4450 if (IS_UP(slave->dev) &&
4451 (slave->link == BOND_LINK_UP) &&
4452 (slave->state == BOND_STATE_ACTIVE)) {
4453 if (tx_dev) {
4454 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4455 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004456 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004457 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 continue;
4459 }
4460
4461 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4462 if (res) {
4463 dev_kfree_skb(skb2);
4464 continue;
4465 }
4466 }
4467 tx_dev = slave->dev;
4468 }
4469 }
4470
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004471 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
4474out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004475 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 /* no suitable interface, frame not sent */
4477 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 /* frame sent to all suitable interfaces */
4480 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004481 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482}
4483
4484/*------------------------- Device initialization ---------------------------*/
4485
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004486static void bond_set_xmit_hash_policy(struct bonding *bond)
4487{
4488 switch (bond->params.xmit_policy) {
4489 case BOND_XMIT_POLICY_LAYER23:
4490 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4491 break;
4492 case BOND_XMIT_POLICY_LAYER34:
4493 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4494 break;
4495 case BOND_XMIT_POLICY_LAYER2:
4496 default:
4497 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4498 break;
4499 }
4500}
4501
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004502/*
4503 * Lookup the slave that corresponds to a qid
4504 */
4505static inline int bond_slave_override(struct bonding *bond,
4506 struct sk_buff *skb)
4507{
4508 int i, res = 1;
4509 struct slave *slave = NULL;
4510 struct slave *check_slave;
4511
4512 read_lock(&bond->lock);
4513
4514 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4515 goto out;
4516
4517 /* Find out if any slaves have the same mapping as this skb. */
4518 bond_for_each_slave(bond, check_slave, i) {
4519 if (check_slave->queue_id == skb->queue_mapping) {
4520 slave = check_slave;
4521 break;
4522 }
4523 }
4524
4525 /* If the slave isn't UP, use default transmit policy. */
4526 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4527 (slave->link == BOND_LINK_UP)) {
4528 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4529 }
4530
4531out:
4532 read_unlock(&bond->lock);
4533 return res;
4534}
4535
4536static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4537{
4538 /*
4539 * This helper function exists to help dev_pick_tx get the correct
4540 * destination queue. Using a helper function skips the a call to
4541 * skb_tx_hash and will put the skbs in the queue we expect on their
4542 * way down to the bonding driver.
4543 */
4544 return skb->queue_mapping;
4545}
4546
Stephen Hemminger424efe92009-08-31 19:50:51 +00004547static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004548{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004549 struct bonding *bond = netdev_priv(dev);
4550
Neil Hormane843fa52010-10-13 16:01:50 +00004551 /*
4552 * If we risk deadlock from transmitting this in the
4553 * netpoll path, tell netpoll to queue the frame for later tx
4554 */
4555 if (is_netpoll_tx_blocked(dev))
4556 return NETDEV_TX_BUSY;
4557
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004558 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4559 if (!bond_slave_override(bond, skb))
4560 return NETDEV_TX_OK;
4561 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004562
4563 switch (bond->params.mode) {
4564 case BOND_MODE_ROUNDROBIN:
4565 return bond_xmit_roundrobin(skb, dev);
4566 case BOND_MODE_ACTIVEBACKUP:
4567 return bond_xmit_activebackup(skb, dev);
4568 case BOND_MODE_XOR:
4569 return bond_xmit_xor(skb, dev);
4570 case BOND_MODE_BROADCAST:
4571 return bond_xmit_broadcast(skb, dev);
4572 case BOND_MODE_8023AD:
4573 return bond_3ad_xmit_xor(skb, dev);
4574 case BOND_MODE_ALB:
4575 case BOND_MODE_TLB:
4576 return bond_alb_xmit(skb, dev);
4577 default:
4578 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004579 pr_err("%s: Error: Unknown bonding mode %d\n",
4580 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004581 WARN_ON_ONCE(1);
4582 dev_kfree_skb(skb);
4583 return NETDEV_TX_OK;
4584 }
4585}
4586
4587
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588/*
4589 * set bond mode specific net device operations
4590 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004591void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004593 struct net_device *bond_dev = bond->dev;
4594
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 switch (mode) {
4596 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 break;
4598 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 break;
4600 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004601 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 break;
4603 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 break;
4605 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004606 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004607 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004610 bond_set_master_alb_flags(bond);
4611 /* FALLTHRU */
4612 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 break;
4614 default:
4615 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004616 pr_err("%s: Error: Unknown bonding mode %d\n",
4617 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 break;
4619 }
4620}
4621
Jay Vosburgh217df672005-09-26 16:11:50 -07004622static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4623 struct ethtool_drvinfo *drvinfo)
4624{
4625 strncpy(drvinfo->driver, DRV_NAME, 32);
4626 strncpy(drvinfo->version, DRV_VERSION, 32);
4627 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4628}
4629
Jeff Garzik7282d492006-09-13 14:30:00 -04004630static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004631 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004632 .get_link = ethtool_op_get_link,
4633 .get_tx_csum = ethtool_op_get_tx_csum,
4634 .get_sg = ethtool_op_get_sg,
4635 .get_tso = ethtool_op_get_tso,
4636 .get_ufo = ethtool_op_get_ufo,
4637 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004638};
4639
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004640static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004641 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004642 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004643 .ndo_open = bond_open,
4644 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004645 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004646 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004647 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004648 .ndo_do_ioctl = bond_do_ioctl,
4649 .ndo_set_multicast_list = bond_set_multicast_list,
4650 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004651 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004652 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004653 .ndo_vlan_rx_register = bond_vlan_rx_register,
4654 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4655 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004656#ifdef CONFIG_NET_POLL_CONTROLLER
4657 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4658 .ndo_poll_controller = bond_poll_controller,
4659#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004660};
4661
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004662static void bond_destructor(struct net_device *bond_dev)
4663{
4664 struct bonding *bond = netdev_priv(bond_dev);
4665 if (bond->wq)
4666 destroy_workqueue(bond->wq);
4667 free_netdev(bond_dev);
4668}
4669
Stephen Hemminger181470f2009-06-12 19:02:52 +00004670static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671{
Wang Chen454d7c92008-11-12 23:37:49 -08004672 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 /* initialize rwlocks */
4675 rwlock_init(&bond->lock);
4676 rwlock_init(&bond->curr_slave_lock);
4677
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004678 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
4680 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 bond->dev = bond_dev;
4682 INIT_LIST_HEAD(&bond->vlan_list);
4683
4684 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004685 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004686 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004687 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004688 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004690 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
4692 /* Initialize the device options */
4693 bond_dev->tx_queue_len = 0;
4694 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004695 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004696 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4697
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004698 if (bond->params.arp_interval)
4699 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
4701 /* At first, we block adding VLANs. That's the only way to
4702 * prevent problems that occur when adding VLANs over an
4703 * empty bond. The block will be removed once non-challenged
4704 * slaves are enslaved.
4705 */
4706 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4707
Herbert Xu932ff272006-06-09 12:20:56 -07004708 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 * transmitting */
4710 bond_dev->features |= NETIF_F_LLTX;
4711
4712 /* By default, we declare the bond to be fully
4713 * VLAN hardware accelerated capable. Special
4714 * care is taken in the various xmit functions
4715 * when there are slaves that are not hw accel
4716 * capable
4717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4719 NETIF_F_HW_VLAN_RX |
4720 NETIF_F_HW_VLAN_FILTER);
4721
Eric Dumazete6599c22010-09-17 09:25:07 +00004722 /* By default, we enable GRO on bonding devices.
4723 * Actual support requires lowlevel drivers are GRO ready.
4724 */
4725 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726}
4727
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004728static void bond_work_cancel_all(struct bonding *bond)
4729{
4730 write_lock_bh(&bond->lock);
4731 bond->kill_timers = 1;
4732 write_unlock_bh(&bond->lock);
4733
4734 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4735 cancel_delayed_work(&bond->mii_work);
4736
4737 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4738 cancel_delayed_work(&bond->arp_work);
4739
4740 if (bond->params.mode == BOND_MODE_ALB &&
4741 delayed_work_pending(&bond->alb_work))
4742 cancel_delayed_work(&bond->alb_work);
4743
4744 if (bond->params.mode == BOND_MODE_8023AD &&
4745 delayed_work_pending(&bond->ad_work))
4746 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004747
4748 if (delayed_work_pending(&bond->mcast_work))
4749 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004750}
4751
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004752/*
4753* Destroy a bonding device.
4754* Must be under rtnl_lock when this function is called.
4755*/
4756static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004757{
Wang Chen454d7c92008-11-12 23:37:49 -08004758 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004759 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004760
WANG Congf6dc31a2010-05-06 00:48:51 -07004761 bond_netpoll_cleanup(bond_dev);
4762
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004763 /* Release the bonded slaves */
4764 bond_release_all(bond_dev);
4765
Jay Vosburgha434e432008-10-30 17:41:15 -07004766 list_del(&bond->bond_list);
4767
4768 bond_work_cancel_all(bond);
4769
Jay Vosburgha434e432008-10-30 17:41:15 -07004770 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004771
Jiri Pirko22bedad32010-04-01 21:22:57 +00004772 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004773
4774 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4775 list_del(&vlan->vlan_list);
4776 kfree(vlan);
4777 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004778}
4779
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780/*------------------------- Module initialization ---------------------------*/
4781
4782/*
4783 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004784 * number of the mode or its string name. A bit complicated because
4785 * some mode names are substrings of other names, and calls from sysfs
4786 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004788int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789{
Hannes Eder54b87322009-02-14 11:15:49 +00004790 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004791 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004792
Jay Vosburgha42e5342008-01-29 18:07:43 -08004793 for (p = (char *)buf; *p; p++)
4794 if (!(isdigit(*p) || isspace(*p)))
4795 break;
4796
4797 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004798 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004799 else
Hannes Eder54b87322009-02-14 11:15:49 +00004800 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004801
4802 if (!rv)
4803 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804
4805 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004806 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004808 if (strcmp(modestr, tbl[i].modename) == 0)
4809 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 }
4811
4812 return -1;
4813}
4814
4815static int bond_check_params(struct bond_params *params)
4816{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004817 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004818
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 /*
4820 * Convert string parameters.
4821 */
4822 if (mode) {
4823 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4824 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004825 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 mode == NULL ? "NULL" : mode);
4827 return -EINVAL;
4828 }
4829 }
4830
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004831 if (xmit_hash_policy) {
4832 if ((bond_mode != BOND_MODE_XOR) &&
4833 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004834 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004835 bond_mode_name(bond_mode));
4836 } else {
4837 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4838 xmit_hashtype_tbl);
4839 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004840 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004841 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004842 xmit_hash_policy);
4843 return -EINVAL;
4844 }
4845 }
4846 }
4847
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 if (lacp_rate) {
4849 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004850 pr_info("lacp_rate param is irrelevant in mode %s\n",
4851 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 } else {
4853 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4854 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004855 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 lacp_rate == NULL ? "NULL" : lacp_rate);
4857 return -EINVAL;
4858 }
4859 }
4860 }
4861
Jay Vosburghfd989c82008-11-04 17:51:16 -08004862 if (ad_select) {
4863 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4864 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004865 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004866 ad_select == NULL ? "NULL" : ad_select);
4867 return -EINVAL;
4868 }
4869
4870 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004871 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004872 }
4873 } else {
4874 params->ad_select = BOND_AD_STABLE;
4875 }
4876
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004877 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004878 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4879 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 max_bonds = BOND_DEFAULT_MAX_BONDS;
4881 }
4882
4883 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004884 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4885 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 miimon = BOND_LINK_MON_INTERV;
4887 }
4888
4889 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004890 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4891 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 updelay = 0;
4893 }
4894
4895 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004896 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4897 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 downdelay = 0;
4899 }
4900
4901 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004902 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4903 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 use_carrier = 1;
4905 }
4906
Moni Shoua7893b242008-05-17 21:10:12 -07004907 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004908 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 -08004909 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004910 num_grat_arp = 1;
4911 }
4912
Brian Haley305d5522008-11-04 17:51:14 -08004913 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004914 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 -08004915 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004916 num_unsol_na = 1;
4917 }
4918
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 /* reset values for 802.3ad */
4920 if (bond_mode == BOND_MODE_8023AD) {
4921 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004922 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 +00004923 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 miimon = 100;
4925 }
4926 }
4927
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004928 if (tx_queues < 1 || tx_queues > 255) {
4929 pr_warning("Warning: tx_queues (%d) should be between "
4930 "1 and 255, resetting to %d\n",
4931 tx_queues, BOND_DEFAULT_TX_QUEUES);
4932 tx_queues = BOND_DEFAULT_TX_QUEUES;
4933 }
4934
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004935 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4936 pr_warning("Warning: all_slaves_active module parameter (%d), "
4937 "not of valid value (0/1), so it was set to "
4938 "0\n", all_slaves_active);
4939 all_slaves_active = 0;
4940 }
4941
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004942 if (resend_igmp < 0 || resend_igmp > 255) {
4943 pr_warning("Warning: resend_igmp (%d) should be between "
4944 "0 and 255, resetting to %d\n",
4945 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4946 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4947 }
4948
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949 /* reset values for TLB/ALB */
4950 if ((bond_mode == BOND_MODE_TLB) ||
4951 (bond_mode == BOND_MODE_ALB)) {
4952 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004953 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 +00004954 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955 miimon = 100;
4956 }
4957 }
4958
4959 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004960 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",
4961 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 }
4963
4964 if (!miimon) {
4965 if (updelay || downdelay) {
4966 /* just warn the user the up/down delay will have
4967 * no effect since miimon is zero...
4968 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004969 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",
4970 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 }
4972 } else {
4973 /* don't allow arp monitoring */
4974 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004975 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4976 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 arp_interval = 0;
4978 }
4979
4980 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004981 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4982 updelay, miimon,
4983 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 }
4985
4986 updelay /= miimon;
4987
4988 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004989 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4990 downdelay, miimon,
4991 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 }
4993
4994 downdelay /= miimon;
4995 }
4996
4997 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004998 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4999 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 arp_interval = BOND_LINK_ARP_INTERV;
5001 }
5002
5003 for (arp_ip_count = 0;
5004 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5005 arp_ip_count++) {
5006 /* not complete check, but should be good enough to
5007 catch mistakes */
5008 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005009 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5010 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 arp_interval = 0;
5012 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04005013 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 arp_target[arp_ip_count] = ip;
5015 }
5016 }
5017
5018 if (arp_interval && !arp_ip_count) {
5019 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005020 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5021 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 arp_interval = 0;
5023 }
5024
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005025 if (arp_validate) {
5026 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005027 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005028 return -EINVAL;
5029 }
5030 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005031 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005032 return -EINVAL;
5033 }
5034
5035 arp_validate_value = bond_parse_parm(arp_validate,
5036 arp_validate_tbl);
5037 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005038 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005039 arp_validate == NULL ? "NULL" : arp_validate);
5040 return -EINVAL;
5041 }
5042 } else
5043 arp_validate_value = 0;
5044
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005046 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 } else if (arp_interval) {
5048 int i;
5049
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005050 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5051 arp_interval,
5052 arp_validate_tbl[arp_validate_value].modename,
5053 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
5055 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005056 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005058 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
Jay Vosburghb8a97872008-06-13 18:12:04 -07005060 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 /* miimon and arp_interval not set, we need one so things
5062 * work as expected, see bonding.txt for details
5063 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005064 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 -07005065 }
5066
5067 if (primary && !USES_PRIMARY(bond_mode)) {
5068 /* currently, using a primary only makes sense
5069 * in active backup, TLB or ALB modes
5070 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005071 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5072 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 primary = NULL;
5074 }
5075
Jiri Pirkoa5499522009-09-25 03:28:09 +00005076 if (primary && primary_reselect) {
5077 primary_reselect_value = bond_parse_parm(primary_reselect,
5078 pri_reselect_tbl);
5079 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005080 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005081 primary_reselect ==
5082 NULL ? "NULL" : primary_reselect);
5083 return -EINVAL;
5084 }
5085 } else {
5086 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5087 }
5088
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005089 if (fail_over_mac) {
5090 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5091 fail_over_mac_tbl);
5092 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005093 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005094 arp_validate == NULL ? "NULL" : arp_validate);
5095 return -EINVAL;
5096 }
5097
5098 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005099 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005100 } else {
5101 fail_over_mac_value = BOND_FOM_NONE;
5102 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005103
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 /* fill params struct with the proper values */
5105 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005106 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005108 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005109 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005111 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 params->updelay = updelay;
5113 params->downdelay = downdelay;
5114 params->use_carrier = use_carrier;
5115 params->lacp_fast = lacp_fast;
5116 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005117 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005118 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005119 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005120 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00005121 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123 if (primary) {
5124 strncpy(params->primary, primary, IFNAMSIZ);
5125 params->primary[IFNAMSIZ - 1] = 0;
5126 }
5127
5128 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5129
5130 return 0;
5131}
5132
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005133static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005134static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005135
David S. Millere8a04642008-07-17 00:34:19 -07005136static void bond_set_lockdep_class_one(struct net_device *dev,
5137 struct netdev_queue *txq,
5138 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005139{
5140 lockdep_set_class(&txq->_xmit_lock,
5141 &bonding_netdev_xmit_lock_key);
5142}
5143
5144static void bond_set_lockdep_class(struct net_device *dev)
5145{
David S. Millercf508b12008-07-22 14:16:42 -07005146 lockdep_set_class(&dev->addr_list_lock,
5147 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005148 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005149}
5150
Stephen Hemminger181470f2009-06-12 19:02:52 +00005151/*
5152 * Called from registration process
5153 */
5154static int bond_init(struct net_device *bond_dev)
5155{
5156 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005157 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005158
5159 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5160
5161 bond->wq = create_singlethread_workqueue(bond_dev->name);
5162 if (!bond->wq)
5163 return -ENOMEM;
5164
5165 bond_set_lockdep_class(bond_dev);
5166
5167 netif_carrier_off(bond_dev);
5168
5169 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005170 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005171
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005172 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005173
5174 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005175 return 0;
5176}
5177
Eric W. Biederman88ead972009-10-29 14:18:25 +00005178static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5179{
5180 if (tb[IFLA_ADDRESS]) {
5181 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5182 return -EINVAL;
5183 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5184 return -EADDRNOTAVAIL;
5185 }
5186 return 0;
5187}
5188
5189static struct rtnl_link_ops bond_link_ops __read_mostly = {
5190 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005191 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005192 .setup = bond_setup,
5193 .validate = bond_validate,
5194};
5195
Mitch Williamsdfe60392005-11-09 10:36:04 -08005196/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005197 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005198 * Caller must NOT hold rtnl_lock; we need to release it here before we
5199 * set up our sysfs entries.
5200 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005201int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005202{
5203 struct net_device *bond_dev;
5204 int res;
5205
5206 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005207
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005208 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5209 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005210 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005211 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005212 rtnl_unlock();
5213 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005214 }
5215
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005216 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005217 bond_dev->rtnl_link_ops = &bond_link_ops;
5218
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005219 if (!name) {
5220 res = dev_alloc_name(bond_dev, "bond%d");
5221 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005222 goto out;
Neil Horman27e6f062010-10-05 03:39:21 +00005223 } else {
5224 /*
5225 * If we're given a name to register
5226 * we need to ensure that its not already
5227 * registered
5228 */
5229 res = -EEXIST;
5230 if (__dev_get_by_name(net, name) != NULL)
5231 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005232 }
5233
Mitch Williamsdfe60392005-11-09 10:36:04 -08005234 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005235
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005236out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005237 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005238 if (res < 0)
5239 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005240 return res;
5241}
5242
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005243static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005244{
Eric W. Biederman15449742009-11-29 15:46:04 +00005245 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005246
5247 bn->net = net;
5248 INIT_LIST_HEAD(&bn->dev_list);
5249
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005250 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005251
5252 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005253}
5254
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005255static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005256{
Eric W. Biederman15449742009-11-29 15:46:04 +00005257 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005258
5259 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005260}
5261
5262static struct pernet_operations bond_net_ops = {
5263 .init = bond_net_init,
5264 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005265 .id = &bond_net_id,
5266 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005267};
5268
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269static int __init bonding_init(void)
5270{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 int i;
5272 int res;
5273
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005274 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Mitch Williamsdfe60392005-11-09 10:36:04 -08005276 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005277 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005278 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279
Eric W. Biederman15449742009-11-29 15:46:04 +00005280 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005281 if (res)
5282 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005283
Eric W. Biederman88ead972009-10-29 14:18:25 +00005284 res = rtnl_link_register(&bond_link_ops);
5285 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005286 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005287
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005289 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005290 if (res)
5291 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292 }
5293
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005294 res = bond_create_sysfs();
5295 if (res)
5296 goto err;
5297
Neil Hormane843fa52010-10-13 16:01:50 +00005298
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005300 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005301 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005302out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005304err:
5305 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005306err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005307 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005308 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005309
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310}
5311
5312static void __exit bonding_exit(void)
5313{
5314 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005315 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005316 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005318 bond_destroy_sysfs();
5319
Eric W. Biederman88ead972009-10-29 14:18:25 +00005320 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005321 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005322
5323#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +00005324 /*
5325 * Make sure we don't have an imbalance on our netpoll blocking
5326 */
5327 WARN_ON(atomic_read(&netpoll_block_tx));
Neil Hormane843fa52010-10-13 16:01:50 +00005328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329}
5330
5331module_init(bonding_init);
5332module_exit(bonding_exit);
5333MODULE_LICENSE("GPL");
5334MODULE_VERSION(DRV_VERSION);
5335MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5336MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005337MODULE_ALIAS_RTNL_LINK("bond");