blob: ecbe206f90d1601df9735ce44922459e1f9bac45 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * originally based on the dummy device.
3 *
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
6 *
7 * bonding.c: an Ethernet Bonding driver
8 *
9 * This is useful to talk to a Cisco EtherChannel compatible equipment:
10 * Cisco 5500
11 * Sun Trunking (Solaris)
12 * Alteon AceDirector Trunks
13 * Linux Bonding
14 * and probably many L2 switches ...
15 *
16 * How it works:
17 * ifconfig bond0 ipaddress netmask up
18 * will setup a network device, with an ip address. No mac address
19 * will be assigned at this time. The hw mac address will come from
20 * the first slave bonded to the channel. All slaves will then use
21 * this hw mac address.
22 *
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
25 *
26 * ifenslave bond0 eth0
27 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
28 * a: be used as initial mac address
29 * b: if a hw mac address already is there, eth0's hw mac address
30 * will then be set from bond0.
31 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Joe Perchesa4aee5c2009-12-13 20:06:07 -080034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/kernel.h>
37#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/types.h>
39#include <linux/fcntl.h>
40#include <linux/interrupt.h>
41#include <linux/ptrace.h>
42#include <linux/ioport.h>
43#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040046#include <linux/tcp.h>
47#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000059#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/errno.h>
61#include <linux/netdevice.h>
WANG Congf6dc31a2010-05-06 00:48:51 -070062#include <linux/netpoll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080064#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/etherdevice.h>
66#include <linux/skbuff.h>
67#include <net/sock.h>
68#include <linux/rtnetlink.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
71#include <linux/smp.h>
72#include <linux/if_ether.h>
73#include <net/arp.h>
74#include <linux/mii.h>
75#include <linux/ethtool.h>
76#include <linux/if_vlan.h>
77#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080078#include <linux/jiffies.h>
Neil Hormane843fa52010-10-13 16:01:50 +000079#include <linux/preempt.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040080#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020081#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000082#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include "bonding.h"
84#include "bond_3ad.h"
85#include "bond_alb.h"
86
87/*---------------------------- Module parameters ----------------------------*/
88
89/* monitor all links that often (in milliseconds). <=0 disables monitoring */
90#define BOND_LINK_MON_INTERV 0
91#define BOND_LINK_ARP_INTERV 0
92
93static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +000094static int tx_queues = BOND_DEFAULT_TX_QUEUES;
Moni Shoua7893b242008-05-17 21:10:12 -070095static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080096static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000098static int updelay;
99static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *mode;
102static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000103static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000104static char *lacp_rate;
105static char *ad_select;
106static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000108static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
109static char *arp_validate;
110static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000111static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000112static struct bond_params bonding_defaults;
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000113static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115module_param(max_bonds, int, 0);
116MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000117module_param(tx_queues, int, 0);
118MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Moni Shoua7893b242008-05-17 21:10:12 -0700119module_param(num_grat_arp, int, 0644);
120MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800121module_param(num_unsol_na, int, 0644);
122MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123module_param(miimon, int, 0);
124MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
125module_param(updelay, int, 0);
126MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
127module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800128MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
129 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800131MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
132 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800134MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
135 "1 for active-backup, 2 for balance-xor, "
136 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
137 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138module_param(primary, charp, 0);
139MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000140module_param(primary_reselect, charp, 0);
141MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
142 "once it comes up; "
143 "0 for always (default), "
144 "1 for only if speed of primary is "
145 "better, "
146 "2 for only on active slave "
147 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800149MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
150 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800151module_param(ad_select, charp, 0);
152MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400153module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800154MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
155 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156module_param(arp_interval, int, 0);
157MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
158module_param_array(arp_ip_target, charp, NULL, 0);
159MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700160module_param(arp_validate, charp, 0);
161MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700162module_param(fail_over_mac, charp, 0);
163MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000164module_param(all_slaves_active, int, 0);
165MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
166 "by setting active flag for all slaves. "
167 "0 for never (default), 1 for always.");
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000168module_param(resend_igmp, int, 0);
169MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*----------------------------- Global variables ----------------------------*/
172
Neil Hormane843fa52010-10-13 16:01:50 +0000173#ifdef CONFIG_NET_POLL_CONTROLLER
174cpumask_var_t netpoll_block_tx;
175#endif
176
Arjan van de Venf71e1302006-03-03 21:33:57 -0500177static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
179
Eric Dumazetf99189b2009-11-17 10:42:49 +0000180int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000182static __be32 arp_target[BOND_MAX_ARP_TARGETS];
183static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000185static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
186static int lacp_fast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800188const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{ "slow", AD_LACP_SLOW},
190{ "fast", AD_LACP_FAST},
191{ NULL, -1},
192};
193
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800194const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{ "balance-rr", BOND_MODE_ROUNDROBIN},
196{ "active-backup", BOND_MODE_ACTIVEBACKUP},
197{ "balance-xor", BOND_MODE_XOR},
198{ "broadcast", BOND_MODE_BROADCAST},
199{ "802.3ad", BOND_MODE_8023AD},
200{ "balance-tlb", BOND_MODE_TLB},
201{ "balance-alb", BOND_MODE_ALB},
202{ NULL, -1},
203};
204
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800205const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400206{ "layer2", BOND_XMIT_POLICY_LAYER2},
207{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800208{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400209{ NULL, -1},
210};
211
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800212const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700213{ "none", BOND_ARP_VALIDATE_NONE},
214{ "active", BOND_ARP_VALIDATE_ACTIVE},
215{ "backup", BOND_ARP_VALIDATE_BACKUP},
216{ "all", BOND_ARP_VALIDATE_ALL},
217{ NULL, -1},
218};
219
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800220const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700221{ "none", BOND_FOM_NONE},
222{ "active", BOND_FOM_ACTIVE},
223{ "follow", BOND_FOM_FOLLOW},
224{ NULL, -1},
225};
226
Jiri Pirkoa5499522009-09-25 03:28:09 +0000227const struct bond_parm_tbl pri_reselect_tbl[] = {
228{ "always", BOND_PRI_RESELECT_ALWAYS},
229{ "better", BOND_PRI_RESELECT_BETTER},
230{ "failure", BOND_PRI_RESELECT_FAILURE},
231{ NULL, -1},
232};
233
Jay Vosburghfd989c82008-11-04 17:51:16 -0800234struct bond_parm_tbl ad_select_tbl[] = {
235{ "stable", BOND_AD_STABLE},
236{ "bandwidth", BOND_AD_BANDWIDTH},
237{ "count", BOND_AD_COUNT},
238{ NULL, -1},
239};
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*-------------------------- Forward declarations ---------------------------*/
242
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400243static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000244static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000245static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*---------------------------- General routines -----------------------------*/
248
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700249static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800251 static const char *names[] = {
252 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
253 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
254 [BOND_MODE_XOR] = "load balancing (xor)",
255 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000256 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800257 [BOND_MODE_TLB] = "transmit load balancing",
258 [BOND_MODE_ALB] = "adaptive load balancing",
259 };
260
261 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800263
264 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/*---------------------------------- VLAN -----------------------------------*/
268
269/**
270 * bond_add_vlan - add a new vlan id on bond
271 * @bond: bond that got the notification
272 * @vlan_id: the vlan id to add
273 *
274 * Returns -ENOMEM if allocation failed.
275 */
276static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
277{
278 struct vlan_entry *vlan;
279
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800280 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800281 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Brian Haley305d5522008-11-04 17:51:14 -0800283 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000284 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 INIT_LIST_HEAD(&vlan->vlan_list);
288 vlan->vlan_id = vlan_id;
289
290 write_lock_bh(&bond->lock);
291
292 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
293
294 write_unlock_bh(&bond->lock);
295
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800296 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return 0;
299}
300
301/**
302 * bond_del_vlan - delete a vlan id from bond
303 * @bond: bond that got the notification
304 * @vlan_id: the vlan id to delete
305 *
306 * returns -ENODEV if @vlan_id was not found in @bond.
307 */
308static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
309{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700310 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int res = -ENODEV;
312
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800313 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Neil Hormane843fa52010-10-13 16:01:50 +0000315 block_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 write_lock_bh(&bond->lock);
317
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700318 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (vlan->vlan_id == vlan_id) {
320 list_del(&vlan->vlan_list);
321
Holger Eitzenberger58402052008-12-09 23:07:13 -0800322 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800325 pr_debug("removed VLAN ID %d from bond %s\n",
326 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 kfree(vlan);
329
330 if (list_empty(&bond->vlan_list) &&
331 (bond->slave_cnt == 0)) {
332 /* Last VLAN removed and no slaves, so
333 * restore block on adding VLANs. This will
334 * be removed once new slaves that are not
335 * VLAN challenged will be added.
336 */
337 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
338 }
339
340 res = 0;
341 goto out;
342 }
343 }
344
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800345 pr_debug("couldn't find VLAN ID %d in bond %s\n",
346 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348out:
349 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +0000350 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return res;
352}
353
354/**
355 * bond_has_challenged_slaves
356 * @bond: the bond we're working on
357 *
358 * Searches the slave list. Returns 1 if a vlan challenged slave
359 * was found, 0 otherwise.
360 *
361 * Assumes bond->lock is held.
362 */
363static int bond_has_challenged_slaves(struct bonding *bond)
364{
365 struct slave *slave;
366 int i;
367
368 bond_for_each_slave(bond, slave, i) {
369 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800370 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800371 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 1;
373 }
374 }
375
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800376 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378}
379
380/**
381 * bond_next_vlan - safely skip to the next item in the vlans list.
382 * @bond: the bond we're working on
383 * @curr: item we're advancing from
384 *
385 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
386 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * Caller must hold bond->lock
389 */
390struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
391{
392 struct vlan_entry *next, *last;
393
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000394 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (!curr) {
398 next = list_entry(bond->vlan_list.next,
399 struct vlan_entry, vlan_list);
400 } else {
401 last = list_entry(bond->vlan_list.prev,
402 struct vlan_entry, vlan_list);
403 if (last == curr) {
404 next = list_entry(bond->vlan_list.next,
405 struct vlan_entry, vlan_list);
406 } else {
407 next = list_entry(curr->vlan_list.next,
408 struct vlan_entry, vlan_list);
409 }
410 }
411
412 return next;
413}
414
415/**
416 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000417 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @bond: bond device that got this skb for tx.
419 * @skb: hw accel VLAN tagged skb to transmit
420 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000421 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * When the bond gets an skb to transmit that is
423 * already hardware accelerated VLAN tagged, and it
424 * needs to relay this skb to a slave that is not
425 * hw accel capable, the skb needs to be "unaccelerated",
426 * i.e. strip the hwaccel tag and re-insert it as part
427 * of the payload.
428 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000429int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
430 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700432 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Jay Vosburghf35188f2010-07-21 12:14:47 +0000434 /* Test vlan_list not vlgrp to catch and handle 802.1p tags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (!list_empty(&bond->vlan_list) &&
436 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
437 vlan_get_tag(skb, &vlan_id) == 0) {
438 skb->dev = slave_dev;
439 skb = vlan_put_tag(skb, vlan_id);
440 if (!skb) {
441 /* vlan_put_tag() frees the skb in case of error,
442 * so return success here so the calling functions
443 * won't attempt to free is again.
444 */
445 return 0;
446 }
447 } else {
448 skb->dev = slave_dev;
449 }
450
451 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700452#ifdef CONFIG_NET_POLL_CONTROLLER
453 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
454 struct netpoll *np = bond->dev->npinfo->netpoll;
455 slave_dev->npinfo = bond->dev->npinfo;
WANG Congf6dc31a2010-05-06 00:48:51 -0700456 slave_dev->priv_flags |= IFF_IN_NETPOLL;
Neil Hormanc2355e12010-10-13 16:01:49 +0000457 netpoll_send_skb_on_dev(np, skb, slave_dev);
WANG Congf6dc31a2010-05-06 00:48:51 -0700458 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -0700459 } else
460#endif
461 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 return 0;
464}
465
466/*
467 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
468 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
469 * lock because:
470 * a. This operation is performed in IOCTL context,
471 * b. The operation is protected by the RTNL semaphore in the 8021q code,
472 * c. Holding a lock with BH disabled while directly calling a base driver
473 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000474 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * The design of synchronization/protection for this operation in the 8021q
476 * module is good for one or more VLAN devices over a single physical device
477 * and cannot be extended for a teaming solution like bonding, so there is a
478 * potential race condition here where a net device from the vlan group might
479 * be referenced (either by a base driver or the 8021q code) while it is being
480 * removed from the system. However, it turns out we're not making matters
481 * worse, and if it works for regular VLAN usage it will work here too.
482*/
483
484/**
485 * bond_vlan_rx_register - Propagates registration to slaves
486 * @bond_dev: bonding net device that got called
487 * @grp: vlan group being registered
488 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000489static void bond_vlan_rx_register(struct net_device *bond_dev,
490 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Wang Chen454d7c92008-11-12 23:37:49 -0800492 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct slave *slave;
494 int i;
495
Jay Vosburghf35188f2010-07-21 12:14:47 +0000496 write_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 bond->vlgrp = grp;
Jay Vosburghf35188f2010-07-21 12:14:47 +0000498 write_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 bond_for_each_slave(bond, slave, i) {
501 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800502 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800505 slave_ops->ndo_vlan_rx_register) {
506 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 }
509}
510
511/**
512 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
513 * @bond_dev: bonding net device that got called
514 * @vid: vlan id being added
515 */
516static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
517{
Wang Chen454d7c92008-11-12 23:37:49 -0800518 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct slave *slave;
520 int i, res;
521
522 bond_for_each_slave(bond, slave, i) {
523 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800524 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800527 slave_ops->ndo_vlan_rx_add_vid) {
528 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 }
531
532 res = bond_add_vlan(bond, vid);
533 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800534 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 bond_dev->name, vid);
536 }
537}
538
539/**
540 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
541 * @bond_dev: bonding net device that got called
542 * @vid: vlan id being removed
543 */
544static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
545{
Wang Chen454d7c92008-11-12 23:37:49 -0800546 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct slave *slave;
548 struct net_device *vlan_dev;
549 int i, res;
550
551 bond_for_each_slave(bond, slave, i) {
552 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800553 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800556 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* Save and then restore vlan_dev in the grp array,
558 * since the slave's driver might clear it.
559 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800560 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800561 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800562 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 }
565
566 res = bond_del_vlan(bond, vid);
567 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800568 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 bond_dev->name, vid);
570 }
571}
572
573static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
574{
575 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800576 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jay Vosburghf35188f2010-07-21 12:14:47 +0000578 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000579 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800582 slave_ops->ndo_vlan_rx_register)
583 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800586 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000587 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
590 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000593static void bond_del_vlans_from_slave(struct bonding *bond,
594 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800596 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct vlan_entry *vlan;
598 struct net_device *vlan_dev;
599
Jay Vosburghf35188f2010-07-21 12:14:47 +0000600 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000601 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800604 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000608 if (!vlan->vlan_id)
609 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* Save and then restore vlan_dev in the grp array,
611 * since the slave's driver might clear it.
612 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800613 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800614 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800615 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618unreg:
619 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800620 slave_ops->ndo_vlan_rx_register)
621 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/*------------------------------- Link status -------------------------------*/
625
626/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800627 * Set the carrier state for the master according to the state of its
628 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
629 * do special 802.3ad magic.
630 *
631 * Returns zero if carrier state does not change, nonzero if it does.
632 */
633static int bond_set_carrier(struct bonding *bond)
634{
635 struct slave *slave;
636 int i;
637
638 if (bond->slave_cnt == 0)
639 goto down;
640
641 if (bond->params.mode == BOND_MODE_8023AD)
642 return bond_3ad_set_carrier(bond);
643
644 bond_for_each_slave(bond, slave, i) {
645 if (slave->link == BOND_LINK_UP) {
646 if (!netif_carrier_ok(bond->dev)) {
647 netif_carrier_on(bond->dev);
648 return 1;
649 }
650 return 0;
651 }
652 }
653
654down:
655 if (netif_carrier_ok(bond->dev)) {
656 netif_carrier_off(bond->dev);
657 return 1;
658 }
659 return 0;
660}
661
662/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * Get link speed and duplex from the slave's base driver
664 * using ethtool. If for some reason the call fails or the
665 * values are invalid, fake speed and duplex to 100/Full
666 * and return error.
667 */
668static int bond_update_speed_duplex(struct slave *slave)
669{
670 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700672 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /* Fake speed and duplex */
675 slave->speed = SPEED_100;
676 slave->duplex = DUPLEX_FULL;
677
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700678 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700681 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
682 if (res < 0)
683 return -1;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 switch (etool.speed) {
686 case SPEED_10:
687 case SPEED_100:
688 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700689 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 break;
691 default:
692 return -1;
693 }
694
695 switch (etool.duplex) {
696 case DUPLEX_FULL:
697 case DUPLEX_HALF:
698 break;
699 default:
700 return -1;
701 }
702
703 slave->speed = etool.speed;
704 slave->duplex = etool.duplex;
705
706 return 0;
707}
708
709/*
710 * if <dev> supports MII link status reporting, check its link status.
711 *
712 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000713 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *
715 * Return either BMSR_LSTATUS, meaning that the link is up (or we
716 * can't tell and just pretend it is), or 0, meaning that the link is
717 * down.
718 *
719 * If reporting is non-zero, instead of faking link up, return -1 if
720 * both ETHTOOL and MII ioctls fail (meaning the device does not
721 * support them). If use_carrier is set, return whatever it says.
722 * It'd be nice if there was a good way to tell if a driver supports
723 * netif_carrier, but there really isn't.
724 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000725static int bond_check_dev_link(struct bonding *bond,
726 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800728 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700729 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 struct ifreq ifr;
731 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Petri Gynther6c988852009-08-28 12:05:15 +0000733 if (!reporting && !netif_running(slave_dev))
734 return 0;
735
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800736 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Jiri Pirko29112f42009-04-24 01:58:23 +0000739 /* Try to get link status using Ethtool first. */
740 if (slave_dev->ethtool_ops) {
741 if (slave_dev->ethtool_ops->get_link) {
742 u32 link;
743
744 link = slave_dev->ethtool_ops->get_link(slave_dev);
745
746 return link ? BMSR_LSTATUS : 0;
747 }
748 }
749
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000750 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800751 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (ioctl) {
753 /* TODO: set pointer to correct ioctl on a per team member */
754 /* bases to make this more efficient. that is, once */
755 /* we determine the correct ioctl, we will always */
756 /* call it and not the others for that team */
757 /* member. */
758
759 /*
760 * We cannot assume that SIOCGMIIPHY will also read a
761 * register; not all network drivers (e.g., e100)
762 * support that.
763 */
764
765 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
766 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
767 mii = if_mii(&ifr);
768 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
769 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000770 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
771 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 }
774
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700775 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700777 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * cannot report link status). If not reporting, pretend
779 * we're ok.
780 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000781 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784/*----------------------------- Multicast list ------------------------------*/
785
786/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * Push the promiscuity flag down to appropriate slaves
788 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700789static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700791 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (USES_PRIMARY(bond->params.mode)) {
793 /* write lock already acquired */
794 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700795 err = dev_set_promiscuity(bond->curr_active_slave->dev,
796 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 } else {
799 struct slave *slave;
800 int i;
801 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700802 err = dev_set_promiscuity(slave->dev, inc);
803 if (err)
804 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700807 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810/*
811 * Push the allmulti flag down to all slaves
812 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700813static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700815 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (USES_PRIMARY(bond->params.mode)) {
817 /* write lock already acquired */
818 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700819 err = dev_set_allmulti(bond->curr_active_slave->dev,
820 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822 } else {
823 struct slave *slave;
824 int i;
825 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700826 err = dev_set_allmulti(slave->dev, inc);
827 if (err)
828 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700831 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/*
835 * Add a Multicast address to slaves
836 * according to mode
837 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000838static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 if (USES_PRIMARY(bond->params.mode)) {
841 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000842 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000843 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 } else {
845 struct slave *slave;
846 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000847
848 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000849 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851}
852
853/*
854 * Remove a multicast address from slave
855 * according to mode
856 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000857static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
859 if (USES_PRIMARY(bond->params.mode)) {
860 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000861 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000862 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 } else {
864 struct slave *slave;
865 int i;
866 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad2010-04-01 21:22:57 +0000867 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 }
870}
871
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800872
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000873static void __bond_resend_igmp_join_requests(struct net_device *dev)
874{
875 struct in_device *in_dev;
876 struct ip_mc_list *im;
877
878 rcu_read_lock();
879 in_dev = __in_dev_get_rcu(dev);
880 if (in_dev) {
881 for (im = in_dev->mc_list; im; im = im->next)
882 ip_mc_rejoin_group(im);
883 }
884
885 rcu_read_unlock();
886}
887
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800888/*
889 * Retrieve the list of registered multicast addresses for the bonding
890 * device and retransmit an IGMP JOIN request to the current active
891 * slave.
892 */
893static void bond_resend_igmp_join_requests(struct bonding *bond)
894{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000895 struct net_device *vlan_dev;
896 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800897
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000898 read_lock(&bond->lock);
899
900 /* rejoin all groups on bond device */
901 __bond_resend_igmp_join_requests(bond->dev);
902
903 /* rejoin all groups on vlan devices */
904 if (bond->vlgrp) {
905 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
906 vlan_dev = vlan_group_get_device(bond->vlgrp,
907 vlan->vlan_id);
908 if (vlan_dev)
909 __bond_resend_igmp_join_requests(vlan_dev);
910 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800911 }
912
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000913 if (--bond->igmp_retrans > 0)
914 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
915
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000916 read_unlock(&bond->lock);
917}
918
919void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
920{
921 struct bonding *bond = container_of(work, struct bonding,
922 mcast_work.work);
923 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 * flush all members of flush->mc_list from device dev->mc_list
928 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000929static void bond_mc_list_flush(struct net_device *bond_dev,
930 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Wang Chen454d7c92008-11-12 23:37:49 -0800932 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +0000933 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Jiri Pirko22bedad2010-04-01 21:22:57 +0000935 netdev_for_each_mc_addr(ha, bond_dev)
936 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (bond->params.mode == BOND_MODE_8023AD) {
939 /* del lacpdu mc addr from mc list */
940 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
941
Jiri Pirko22bedad2010-04-01 21:22:57 +0000942 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944}
945
946/*--------------------------- Active slave change ---------------------------*/
947
948/*
949 * Update the mc list and multicast-related flags for the new and
950 * old active slaves (if any) according to the multicast mode, and
951 * promiscuous flags unconditionally.
952 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000953static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
954 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jiri Pirko22bedad2010-04-01 21:22:57 +0000956 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000958 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /* nothing to do - mc list is already up-to-date on
960 * all slaves
961 */
962 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000965 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000968 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Jiri Pirko22bedad2010-04-01 21:22:57 +0000971 netdev_for_each_mc_addr(ha, bond->dev)
972 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
975 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700976 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000977 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000980 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Jiri Pirko22bedad2010-04-01 21:22:57 +0000983 netdev_for_each_mc_addr(ha, bond->dev)
984 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986}
987
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700988/*
989 * bond_do_fail_over_mac
990 *
991 * Perform special MAC address swapping for fail_over_mac settings
992 *
993 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
994 */
995static void bond_do_fail_over_mac(struct bonding *bond,
996 struct slave *new_active,
997 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000998 __releases(&bond->curr_slave_lock)
999 __releases(&bond->lock)
1000 __acquires(&bond->lock)
1001 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001002{
1003 u8 tmp_mac[ETH_ALEN];
1004 struct sockaddr saddr;
1005 int rv;
1006
1007 switch (bond->params.fail_over_mac) {
1008 case BOND_FOM_ACTIVE:
1009 if (new_active)
1010 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1011 new_active->dev->addr_len);
1012 break;
1013 case BOND_FOM_FOLLOW:
1014 /*
1015 * if new_active && old_active, swap them
1016 * if just old_active, do nothing (going to no active slave)
1017 * if just new_active, set new_active to bond's MAC
1018 */
1019 if (!new_active)
1020 return;
1021
1022 write_unlock_bh(&bond->curr_slave_lock);
1023 read_unlock(&bond->lock);
1024
1025 if (old_active) {
1026 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1027 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1028 ETH_ALEN);
1029 saddr.sa_family = new_active->dev->type;
1030 } else {
1031 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1032 saddr.sa_family = bond->dev->type;
1033 }
1034
1035 rv = dev_set_mac_address(new_active->dev, &saddr);
1036 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001037 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001038 bond->dev->name, -rv, new_active->dev->name);
1039 goto out;
1040 }
1041
1042 if (!old_active)
1043 goto out;
1044
1045 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1046 saddr.sa_family = old_active->dev->type;
1047
1048 rv = dev_set_mac_address(old_active->dev, &saddr);
1049 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001050 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001051 bond->dev->name, -rv, new_active->dev->name);
1052out:
1053 read_lock(&bond->lock);
1054 write_lock_bh(&bond->curr_slave_lock);
1055 break;
1056 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001057 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001058 bond->dev->name, bond->params.fail_over_mac);
1059 break;
1060 }
1061
1062}
1063
Jiri Pirkoa5499522009-09-25 03:28:09 +00001064static bool bond_should_change_active(struct bonding *bond)
1065{
1066 struct slave *prim = bond->primary_slave;
1067 struct slave *curr = bond->curr_active_slave;
1068
1069 if (!prim || !curr || curr->link != BOND_LINK_UP)
1070 return true;
1071 if (bond->force_primary) {
1072 bond->force_primary = false;
1073 return true;
1074 }
1075 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1076 (prim->speed < curr->speed ||
1077 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1078 return false;
1079 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1080 return false;
1081 return true;
1082}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084/**
1085 * find_best_interface - select the best available slave to be the active one
1086 * @bond: our bonding struct
1087 *
1088 * Warning: Caller must hold curr_slave_lock for writing.
1089 */
1090static struct slave *bond_find_best_slave(struct bonding *bond)
1091{
1092 struct slave *new_active, *old_active;
1093 struct slave *bestslave = NULL;
1094 int mintime = bond->params.updelay;
1095 int i;
1096
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001097 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001100 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001102 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001107 bond->primary_slave->link == BOND_LINK_UP &&
1108 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 new_active = bond->primary_slave;
1110 }
1111
1112 /* remember where to stop iterating over the slaves */
1113 old_active = new_active;
1114
1115 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001116 if (new_active->link == BOND_LINK_UP) {
1117 return new_active;
1118 } else if (new_active->link == BOND_LINK_BACK &&
1119 IS_UP(new_active->dev)) {
1120 /* link up, but waiting for stabilization */
1121 if (new_active->delay < mintime) {
1122 mintime = new_active->delay;
1123 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
1125 }
1126 }
1127
1128 return bestslave;
1129}
1130
1131/**
1132 * change_active_interface - change the active slave into the specified one
1133 * @bond: our bonding struct
1134 * @new: the new slave to make the active one
1135 *
1136 * Set the new slave to the bond's settings and unset them on the old
1137 * curr_active_slave.
1138 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1139 *
1140 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1141 * because it is apparently the best available slave we have, even though its
1142 * updelay hasn't timed out yet.
1143 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001144 * If new_active is not NULL, caller must hold bond->lock for read and
1145 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001147void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 struct slave *old_active = bond->curr_active_slave;
1150
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001151 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001155 new_active->jiffies = jiffies;
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (new_active->link == BOND_LINK_BACK) {
1158 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001159 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1160 bond->dev->name, new_active->dev->name,
1161 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 }
1163
1164 new_active->delay = 0;
1165 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001167 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Holger Eitzenberger58402052008-12-09 23:07:13 -08001170 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 } else {
1173 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001174 pr_info("%s: making interface %s the new active one.\n",
1175 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177 }
1178 }
1179
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001180 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Holger Eitzenberger58402052008-12-09 23:07:13 -08001183 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001185 if (old_active)
1186 bond_set_slave_inactive_flags(old_active);
1187 if (new_active)
1188 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 } else {
1190 bond->curr_active_slave = new_active;
1191 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001192
1193 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001194 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001195 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001196
1197 if (new_active) {
1198 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001199
Or Gerlitz709f8a42008-06-13 18:12:01 -07001200 if (bond->params.fail_over_mac)
1201 bond_do_fail_over_mac(bond, new_active,
1202 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001203
Or Gerlitz709f8a42008-06-13 18:12:01 -07001204 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001205 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001206
Brian Haley305d5522008-11-04 17:51:14 -08001207 bond->send_unsol_na = bond->params.num_unsol_na;
1208 bond_send_unsolicited_na(bond);
1209
Or Gerlitz01f31092008-06-13 18:12:02 -07001210 write_unlock_bh(&bond->curr_slave_lock);
1211 read_unlock(&bond->lock);
1212
Moni Shoua75c78502009-09-15 02:37:40 -07001213 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001214
1215 read_lock(&bond->lock);
1216 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001217 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001218 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001219
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001220 /* resend IGMP joins since active slave has changed or
1221 * all were sent on curr_active_slave */
1222 if ((USES_PRIMARY(bond->params.mode) && new_active) ||
1223 bond->params.mode == BOND_MODE_ROUNDROBIN) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001224 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001225 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
1229/**
1230 * bond_select_active_slave - select a new active slave, if needed
1231 * @bond: our bonding struct
1232 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001233 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 * - The old curr_active_slave has been released or lost its link.
1235 * - The primary_slave has got its link back.
1236 * - A slave has got its link back and there's no old curr_active_slave.
1237 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001238 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001240void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001243 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 best_slave = bond_find_best_slave(bond);
1246 if (best_slave != bond->curr_active_slave) {
1247 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001248 rv = bond_set_carrier(bond);
1249 if (!rv)
1250 return;
1251
1252 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001253 pr_info("%s: first active interface up!\n",
1254 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001255 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001256 pr_info("%s: now running without any active interface !\n",
1257 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260}
1261
1262/*--------------------------- slave list handling ---------------------------*/
1263
1264/*
1265 * This function attaches the slave to the end of list.
1266 *
1267 * bond->lock held for writing by caller.
1268 */
1269static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1270{
1271 if (bond->first_slave == NULL) { /* attaching the first slave */
1272 new_slave->next = new_slave;
1273 new_slave->prev = new_slave;
1274 bond->first_slave = new_slave;
1275 } else {
1276 new_slave->next = bond->first_slave;
1277 new_slave->prev = bond->first_slave->prev;
1278 new_slave->next->prev = new_slave;
1279 new_slave->prev->next = new_slave;
1280 }
1281
1282 bond->slave_cnt++;
1283}
1284
1285/*
1286 * This function detaches the slave from the list.
1287 * WARNING: no check is made to verify if the slave effectively
1288 * belongs to <bond>.
1289 * Nothing is freed on return, structures are just unchained.
1290 * If any slave pointer in bond was pointing to <slave>,
1291 * it should be changed by the calling function.
1292 *
1293 * bond->lock held for writing by caller.
1294 */
1295static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1296{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001297 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001300 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 if (bond->first_slave == slave) { /* slave is the first slave */
1304 if (bond->slave_cnt > 1) { /* there are more slave */
1305 bond->first_slave = slave->next;
1306 } else {
1307 bond->first_slave = NULL; /* slave was the last one */
1308 }
1309 }
1310
1311 slave->next = NULL;
1312 slave->prev = NULL;
1313 bond->slave_cnt--;
1314}
1315
WANG Congf6dc31a2010-05-06 00:48:51 -07001316#ifdef CONFIG_NET_POLL_CONTROLLER
1317/*
1318 * You must hold read lock on bond->lock before calling this.
1319 */
1320static bool slaves_support_netpoll(struct net_device *bond_dev)
1321{
1322 struct bonding *bond = netdev_priv(bond_dev);
1323 struct slave *slave;
1324 int i = 0;
1325 bool ret = true;
1326
1327 bond_for_each_slave(bond, slave, i) {
1328 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1329 !slave->dev->netdev_ops->ndo_poll_controller)
1330 ret = false;
1331 }
1332 return i != 0 && ret;
1333}
1334
1335static void bond_poll_controller(struct net_device *bond_dev)
1336{
Neil Hormanc2355e12010-10-13 16:01:49 +00001337 struct bonding *bond = netdev_priv(bond_dev);
1338 struct slave *slave;
1339 int i;
1340
1341 bond_for_each_slave(bond, slave, i) {
1342 if (slave->dev && IS_UP(slave->dev))
1343 netpoll_poll_dev(slave->dev);
1344 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001345}
1346
1347static void bond_netpoll_cleanup(struct net_device *bond_dev)
1348{
1349 struct bonding *bond = netdev_priv(bond_dev);
1350 struct slave *slave;
1351 const struct net_device_ops *ops;
1352 int i;
1353
1354 read_lock(&bond->lock);
1355 bond_dev->npinfo = NULL;
1356 bond_for_each_slave(bond, slave, i) {
1357 if (slave->dev) {
1358 ops = slave->dev->netdev_ops;
1359 if (ops->ndo_netpoll_cleanup)
1360 ops->ndo_netpoll_cleanup(slave->dev);
1361 else
1362 slave->dev->npinfo = NULL;
1363 }
1364 }
1365 read_unlock(&bond->lock);
1366}
1367
1368#else
1369
1370static void bond_netpoll_cleanup(struct net_device *bond_dev)
1371{
1372}
1373
1374#endif
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376/*---------------------------------- IOCTL ----------------------------------*/
1377
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001378static int bond_sethwaddr(struct net_device *bond_dev,
1379 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001381 pr_debug("bond_dev=%p\n", bond_dev);
1382 pr_debug("slave_dev=%p\n", slave_dev);
1383 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1385 return 0;
1386}
1387
Herbert Xu7f353bf2007-08-10 15:47:58 -07001388#define BOND_VLAN_FEATURES \
1389 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1390 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001391
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001392/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001393 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001394 * feature bits are managed elsewhere, so preserve those feature bits
1395 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001396 */
1397static int bond_compute_features(struct bonding *bond)
1398{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001399 struct slave *slave;
1400 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001401 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001402 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001403 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1404 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001405 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001406
Herbert Xu7f353bf2007-08-10 15:47:58 -07001407 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001408 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1409
1410 if (!bond->first_slave)
1411 goto done;
1412
1413 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001414
Jay Vosburgh278339a2009-08-28 12:05:12 +00001415 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001416 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001417 features = netdev_increment_features(features,
1418 slave->dev->features,
1419 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001420 vlan_features = netdev_increment_features(vlan_features,
1421 slave->dev->vlan_features,
1422 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001423 if (slave->dev->hard_header_len > max_hard_header_len)
1424 max_hard_header_len = slave->dev->hard_header_len;
1425 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001426
Herbert Xub63365a2008-10-23 01:11:29 -07001427done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001428 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001429 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001430 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001431 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001432
1433 return 0;
1434}
1435
Moni Shoua872254d2007-10-09 19:43:38 -07001436static void bond_setup_by_slave(struct net_device *bond_dev,
1437 struct net_device *slave_dev)
1438{
Wang Chen454d7c92008-11-12 23:37:49 -08001439 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001440
Stephen Hemminger00829822008-11-20 20:14:53 -08001441 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001442
1443 bond_dev->type = slave_dev->type;
1444 bond_dev->hard_header_len = slave_dev->hard_header_len;
1445 bond_dev->addr_len = slave_dev->addr_len;
1446
1447 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1448 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001449 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001450}
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001453int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Wang Chen454d7c92008-11-12 23:37:49 -08001455 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001456 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 struct slave *new_slave = NULL;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001458 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct sockaddr addr;
1460 int link_reporting;
1461 int old_features = bond_dev->features;
1462 int res = 0;
1463
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001464 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001465 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001466 pr_warning("%s: Warning: no link monitoring support for %s\n",
1467 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469
1470 /* bond must be initialized by bond_open() before enslaving */
1471 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001472 pr_warning("%s: master_dev is not up in bond_enslave\n",
1473 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
1475
1476 /* already enslaved */
1477 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001478 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return -EBUSY;
1480 }
1481
1482 /* vlan challenged mutual exclusion */
1483 /* no need to lock since we're protected by rtnl_lock */
1484 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001485 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001486 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001487 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1488 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return -EPERM;
1490 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001491 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1492 bond_dev->name, slave_dev->name,
1493 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1495 }
1496 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001497 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (bond->slave_cnt == 0) {
1499 /* First slave, and it is not VLAN challenged,
1500 * so remove the block of adding VLANs over the bond.
1501 */
1502 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1503 }
1504 }
1505
Jay Vosburgh217df672005-09-26 16:11:50 -07001506 /*
1507 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001508 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001509 * the current ifenslave will set the interface down prior to
1510 * enslaving it; the old ifenslave will not.
1511 */
1512 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001513 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001514 slave_dev->name);
1515 res = -EPERM;
1516 goto err_undo_flags;
1517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Moni Shoua872254d2007-10-09 19:43:38 -07001519 /* set bonding device ether type by slave - bonding netdevices are
1520 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1521 * there is a need to override some of the type dependent attribs/funcs.
1522 *
1523 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1524 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1525 */
1526 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001527 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001528 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001529 bond_dev->name,
1530 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001531
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001532 res = netdev_bonding_change(bond_dev,
1533 NETDEV_PRE_TYPE_CHANGE);
1534 res = notifier_to_errno(res);
1535 if (res) {
1536 pr_err("%s: refused to change device type\n",
1537 bond_dev->name);
1538 res = -EBUSY;
1539 goto err_undo_flags;
1540 }
Moni Shoua75c78502009-09-15 02:37:40 -07001541
Jiri Pirko32a806c2010-03-19 04:00:23 +00001542 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001543 dev_uc_flush(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00001544 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001545
Moni Shouae36b9d12009-07-15 04:56:31 +00001546 if (slave_dev->type != ARPHRD_ETHER)
1547 bond_setup_by_slave(bond_dev, slave_dev);
1548 else
1549 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001550
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001551 netdev_bonding_change(bond_dev,
1552 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001553 }
Moni Shoua872254d2007-10-09 19:43:38 -07001554 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001555 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1556 slave_dev->name,
1557 slave_dev->type, bond_dev->type);
1558 res = -EINVAL;
1559 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001560 }
1561
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001562 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001563 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001564 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1565 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001566 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1567 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001568 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",
1569 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001570 res = -EOPNOTSUPP;
1571 goto err_undo_flags;
1572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001575 /* If this is the first slave, then we need to set the master's hardware
1576 * address to be the same as the slave's. */
1577 if (bond->slave_cnt == 0)
1578 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1579 slave_dev->addr_len);
1580
1581
Joe Jin243cb4e2007-02-06 14:16:40 -08001582 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (!new_slave) {
1584 res = -ENOMEM;
1585 goto err_undo_flags;
1586 }
1587
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001588 /*
1589 * Set the new_slave's queue_id to be zero. Queue ID mapping
1590 * is set via sysfs or module option if desired.
1591 */
1592 new_slave->queue_id = 0;
1593
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001594 /* Save slave's original mtu and then set it to match the bond */
1595 new_slave->original_mtu = slave_dev->mtu;
1596 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1597 if (res) {
1598 pr_debug("Error %d calling dev_set_mtu\n", res);
1599 goto err_free;
1600 }
1601
Jay Vosburgh217df672005-09-26 16:11:50 -07001602 /*
1603 * Save slave's original ("permanent") mac address for modes
1604 * that need it, and for restoring it upon release, and then
1605 * set it to the master's address
1606 */
1607 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Jay Vosburghdd957c52007-10-09 19:57:24 -07001609 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001610 /*
1611 * Set slave to master's mac address. The application already
1612 * set the master's mac address to that of the first slave
1613 */
1614 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1615 addr.sa_family = slave_dev->type;
1616 res = dev_set_mac_address(slave_dev, &addr);
1617 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001618 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001619 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001620 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001623 res = netdev_set_master(slave_dev, bond_dev);
1624 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001625 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001626 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001627 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001628 /* open the slave since the application closed it */
1629 res = dev_open(slave_dev);
1630 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001631 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001632 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001636 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Holger Eitzenberger58402052008-12-09 23:07:13 -08001638 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /* bond_alb_init_slave() must be called before all other stages since
1640 * it might fail and we do not want to have to undo everything
1641 */
1642 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001643 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001644 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
1647 /* If the mode USES_PRIMARY, then the new slave gets the
1648 * master's promisc (and mc) settings only if it becomes the
1649 * curr_active_slave, and that is taken care of later when calling
1650 * bond_change_active()
1651 */
1652 if (!USES_PRIMARY(bond->params.mode)) {
1653 /* set promiscuity level to new slave */
1654 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001655 res = dev_set_promiscuity(slave_dev, 1);
1656 if (res)
1657 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
1660 /* set allmulti level to new slave */
1661 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001662 res = dev_set_allmulti(slave_dev, 1);
1663 if (res)
1664 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666
David S. Millerb9e40852008-07-15 00:15:08 -07001667 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /* upload master's mc_list to new slave */
Jiri Pirko22bedad2010-04-01 21:22:57 +00001669 netdev_for_each_mc_addr(ha, bond_dev)
1670 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001671 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673
1674 if (bond->params.mode == BOND_MODE_8023AD) {
1675 /* add lacpdu mc addr to mc list */
1676 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1677
Jiri Pirko22bedad2010-04-01 21:22:57 +00001678 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
1680
1681 bond_add_vlans_on_slave(bond, slave_dev);
1682
1683 write_lock_bh(&bond->lock);
1684
1685 bond_attach_slave(bond, new_slave);
1686
1687 new_slave->delay = 0;
1688 new_slave->link_failure_count = 0;
1689
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001690 bond_compute_features(bond);
1691
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001692 write_unlock_bh(&bond->lock);
1693
1694 read_lock(&bond->lock);
1695
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001696 new_slave->last_arp_rx = jiffies;
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (bond->params.miimon && !bond->params.use_carrier) {
1699 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1700
1701 if ((link_reporting == -1) && !bond->params.arp_interval) {
1702 /*
1703 * miimon is set but a bonded network driver
1704 * does not support ETHTOOL/MII and
1705 * arp_interval is not set. Note: if
1706 * use_carrier is enabled, we will never go
1707 * here (because netif_carrier is always
1708 * supported); thus, we don't need to change
1709 * the messages for netif_carrier.
1710 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001711 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 -08001712 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 } else if (link_reporting == -1) {
1714 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001715 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",
1716 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718 }
1719
1720 /* check for initial state */
1721 if (!bond->params.miimon ||
1722 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1723 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001724 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 new_slave->link = BOND_LINK_BACK;
1726 new_slave->delay = bond->params.updelay;
1727 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001728 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 new_slave->link = BOND_LINK_UP;
1730 }
1731 new_slave->jiffies = jiffies;
1732 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001733 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 new_slave->link = BOND_LINK_DOWN;
1735 }
1736
1737 if (bond_update_speed_duplex(new_slave) &&
1738 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001739 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1740 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001743 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1744 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
1746 }
1747
1748 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1749 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001750 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001752 bond->force_primary = true;
1753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001756 write_lock_bh(&bond->curr_slave_lock);
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 switch (bond->params.mode) {
1759 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001760 bond_set_slave_inactive_flags(new_slave);
1761 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 break;
1763 case BOND_MODE_8023AD:
1764 /* in 802.3ad mode, the internal mechanism
1765 * will activate the slaves in the selected
1766 * aggregator
1767 */
1768 bond_set_slave_inactive_flags(new_slave);
1769 /* if this is the first slave */
1770 if (bond->slave_cnt == 1) {
1771 SLAVE_AD_INFO(new_slave).id = 1;
1772 /* Initialize AD with the number of times that the AD timer is called in 1 second
1773 * can be called only after the mac address of the bond is set
1774 */
1775 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1776 bond->params.lacp_fast);
1777 } else {
1778 SLAVE_AD_INFO(new_slave).id =
1779 SLAVE_AD_INFO(new_slave->prev).id + 1;
1780 }
1781
1782 bond_3ad_bind_slave(new_slave);
1783 break;
1784 case BOND_MODE_TLB:
1785 case BOND_MODE_ALB:
1786 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001787 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001788 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 break;
1790 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001791 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /* always active in trunk mode */
1794 new_slave->state = BOND_STATE_ACTIVE;
1795
1796 /* In trunking mode there is little meaning to curr_active_slave
1797 * anyway (it holds no special properties of the bond device),
1798 * so we can change it without calling change_active_interface()
1799 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001800 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 break;
1804 } /* switch(bond_mode) */
1805
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001806 write_unlock_bh(&bond->curr_slave_lock);
1807
Jay Vosburghff59c452006-03-27 13:27:43 -08001808 bond_set_carrier(bond);
1809
WANG Congf6dc31a2010-05-06 00:48:51 -07001810#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Horman45b0cb82010-10-13 16:01:53 +00001811 if (slaves_support_netpoll(bond_dev)) {
1812 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1813 if (bond_dev->npinfo)
1814 slave_dev->npinfo = bond_dev->npinfo;
1815 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001816 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Neil Horman45b0cb82010-10-13 16:01:53 +00001817 pr_info("New slave device %s does not support netpoll\n",
1818 slave_dev->name);
1819 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
WANG Congf6dc31a2010-05-06 00:48:51 -07001820 }
1821#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001822 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001824 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1825 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001826 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001827
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001828 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1829 bond_dev->name, slave_dev->name,
1830 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1831 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 /* enslave is successful */
1834 return 0;
1835
1836/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837err_close:
1838 dev_close(slave_dev);
1839
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001840err_unset_master:
1841 netdev_set_master(slave_dev, NULL);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001844 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001845 /* XXX TODO - fom follow mode needs to change master's
1846 * MAC if this slave's MAC is in use by the bond, or at
1847 * least print a warning.
1848 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001849 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1850 addr.sa_family = slave_dev->type;
1851 dev_set_mac_address(slave_dev, &addr);
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001854err_restore_mtu:
1855 dev_set_mtu(slave_dev, new_slave->original_mtu);
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857err_free:
1858 kfree(new_slave);
1859
1860err_undo_flags:
1861 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 return res;
1864}
1865
1866/*
1867 * Try to release the slave device <slave> from the bond device <master>
1868 * It is legal to access curr_active_slave without a lock because all the function
1869 * is write-locked.
1870 *
1871 * The rules for slave state should be:
1872 * for Active/Backup:
1873 * Active stays on all backups go down
1874 * for Bonded connections:
1875 * The first up interface should be left on and all others downed.
1876 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001877int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
Wang Chen454d7c92008-11-12 23:37:49 -08001879 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 struct slave *slave, *oldcurrent;
1881 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 /* slave is not a slave or master is not master of this slave */
1884 if (!(slave_dev->flags & IFF_SLAVE) ||
1885 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001886 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 bond_dev->name, slave_dev->name);
1888 return -EINVAL;
1889 }
1890
Neil Hormane843fa52010-10-13 16:01:50 +00001891 block_netpoll_tx();
WANG Congf6dc31a2010-05-06 00:48:51 -07001892 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 write_lock_bh(&bond->lock);
1894
1895 slave = bond_get_slave_by_dev(bond, slave_dev);
1896 if (!slave) {
1897 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001898 pr_info("%s: %s not enslaved\n",
1899 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001900 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001901 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return -EINVAL;
1903 }
1904
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001905 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001906 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1907 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001908 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",
1909 bond_dev->name, slave_dev->name,
1910 slave->perm_hwaddr,
1911 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
1913
1914 /* Inform AD package of unbinding of slave. */
1915 if (bond->params.mode == BOND_MODE_8023AD) {
1916 /* must be called before the slave is
1917 * detached from the list
1918 */
1919 bond_3ad_unbind_slave(slave);
1920 }
1921
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001922 pr_info("%s: releasing %s interface %s\n",
1923 bond_dev->name,
1924 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1925 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 oldcurrent = bond->curr_active_slave;
1928
1929 bond->current_arp_slave = NULL;
1930
1931 /* release the slave from its bond */
1932 bond_detach_slave(bond, slave);
1933
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001934 bond_compute_features(bond);
1935
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001936 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001939 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Holger Eitzenberger58402052008-12-09 23:07:13 -08001942 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 /* Must be called only after the slave has been
1944 * detached from the list and the curr_active_slave
1945 * has been cleared (if our_slave == old_current),
1946 * but before a new active slave is selected.
1947 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001948 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001950 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
1952
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001953 if (oldcurrent == slave) {
1954 /*
1955 * Note that we hold RTNL over this sequence, so there
1956 * is no concern that another slave add/remove event
1957 * will interfere.
1958 */
1959 write_unlock_bh(&bond->lock);
1960 read_lock(&bond->lock);
1961 write_lock_bh(&bond->curr_slave_lock);
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 bond_select_active_slave(bond);
1964
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001965 write_unlock_bh(&bond->curr_slave_lock);
1966 read_unlock(&bond->lock);
1967 write_lock_bh(&bond->lock);
1968 }
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001971 bond_set_carrier(bond);
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 /* if the last slave was removed, zero the mac address
1974 * of the master so it will be set by the application
1975 * to the mac address of the first slave
1976 */
1977 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1978
Jay Vosburghf35188f2010-07-21 12:14:47 +00001979 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1981 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001982 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1983 bond_dev->name, bond_dev->name);
1984 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1985 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1988 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001989 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1990 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1992 }
1993
1994 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001995 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001997 /* must do this from outside any spinlocks */
1998 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 bond_del_vlans_from_slave(bond, slave_dev);
2001
2002 /* If the mode USES_PRIMARY, then we should only remove its
2003 * promisc and mc settings if it was the curr_active_slave, but that was
2004 * already taken care of above when we detached the slave
2005 */
2006 if (!USES_PRIMARY(bond->params.mode)) {
2007 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002008 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002012 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002016 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002018 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020
2021 netdev_set_master(slave_dev, NULL);
2022
WANG Congf6dc31a2010-05-06 00:48:51 -07002023#ifdef CONFIG_NET_POLL_CONTROLLER
2024 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00002025
Neil Horman45b0cb82010-10-13 16:01:53 +00002026 if (slaves_support_netpoll(bond_dev))
2027 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002028 read_unlock_bh(&bond->lock);
2029 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2030 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2031 else
2032 slave_dev->npinfo = NULL;
2033#endif
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /* close slave before restoring its mac address */
2036 dev_close(slave_dev);
2037
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002038 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002039 /* restore original ("permanent") mac address */
2040 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2041 addr.sa_family = slave_dev->type;
2042 dev_set_mac_address(slave_dev, &addr);
2043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002045 dev_set_mtu(slave_dev, slave->original_mtu);
2046
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002047 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002048 IFF_SLAVE_INACTIVE | IFF_BONDING |
2049 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 kfree(slave);
2052
2053 return 0; /* deletion OK */
2054}
2055
2056/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002057* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002058* Must be under rtnl_lock when this function is called.
2059*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002060int bond_release_and_destroy(struct net_device *bond_dev,
2061 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002062{
Wang Chen454d7c92008-11-12 23:37:49 -08002063 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002064 int ret;
2065
2066 ret = bond_release(bond_dev, slave_dev);
2067 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002068 pr_info("%s: destroying bond %s.\n",
2069 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002070 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002071 }
2072 return ret;
2073}
2074
2075/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 * This function releases all slaves.
2077 */
2078static int bond_release_all(struct net_device *bond_dev)
2079{
Wang Chen454d7c92008-11-12 23:37:49 -08002080 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct slave *slave;
2082 struct net_device *slave_dev;
2083 struct sockaddr addr;
2084
Neil Hormane843fa52010-10-13 16:01:50 +00002085 block_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 write_lock_bh(&bond->lock);
2087
Jay Vosburghff59c452006-03-27 13:27:43 -08002088 netif_carrier_off(bond_dev);
2089
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002090 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 bond->current_arp_slave = NULL;
2094 bond->primary_slave = NULL;
2095 bond_change_active_slave(bond, NULL);
2096
2097 while ((slave = bond->first_slave) != NULL) {
2098 /* Inform AD package of unbinding of slave
2099 * before slave is detached from the list.
2100 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002101 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 slave_dev = slave->dev;
2105 bond_detach_slave(bond, slave);
2106
Jay Vosburgh25433312008-01-17 16:24:59 -08002107 /* now that the slave is detached, unlock and perform
2108 * all the undo steps that should not be called from
2109 * within a lock.
2110 */
2111 write_unlock_bh(&bond->lock);
2112
Holger Eitzenberger58402052008-12-09 23:07:13 -08002113 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 /* must be called only after the slave
2115 * has been detached from the list
2116 */
2117 bond_alb_deinit_slave(bond, slave);
2118 }
2119
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002120 bond_compute_features(bond);
2121
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002122 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 bond_del_vlans_from_slave(bond, slave_dev);
2124
2125 /* If the mode USES_PRIMARY, then we should only remove its
2126 * promisc and mc settings if it was the curr_active_slave, but that was
2127 * already taken care of above when we detached the slave
2128 */
2129 if (!USES_PRIMARY(bond->params.mode)) {
2130 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002131 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002135 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002139 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002141 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143
2144 netdev_set_master(slave_dev, NULL);
2145
2146 /* close slave before restoring its mac address */
2147 dev_close(slave_dev);
2148
Jay Vosburghdd957c52007-10-09 19:57:24 -07002149 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002150 /* restore original ("permanent") mac address*/
2151 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2152 addr.sa_family = slave_dev->type;
2153 dev_set_mac_address(slave_dev, &addr);
2154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002156 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2157 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159 kfree(slave);
2160
2161 /* re-acquire the lock before getting the next slave */
2162 write_lock_bh(&bond->lock);
2163 }
2164
2165 /* zero the mac address of the master so it will be
2166 * set by the application to the mac address of the
2167 * first slave
2168 */
2169 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2170
Jay Vosburghf35188f2010-07-21 12:14:47 +00002171 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002173 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002174 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2175 bond_dev->name, bond_dev->name);
2176 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2177 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
2179
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002180 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182out:
2183 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002184 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 return 0;
2187}
2188
2189/*
2190 * This function changes the active slave to slave <slave_dev>.
2191 * It returns -EINVAL in the following cases.
2192 * - <slave_dev> is not found in the list.
2193 * - There is not active slave now.
2194 * - <slave_dev> is already active.
2195 * - The link state of <slave_dev> is not BOND_LINK_UP.
2196 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002197 * In these cases, this function does nothing.
2198 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 */
2200static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2201{
Wang Chen454d7c92008-11-12 23:37:49 -08002202 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 struct slave *old_active = NULL;
2204 struct slave *new_active = NULL;
2205 int res = 0;
2206
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002207 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002211 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002214 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002216 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002218 read_unlock(&bond->curr_slave_lock);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 new_active = bond_get_slave_by_dev(bond, slave_dev);
2221
2222 /*
2223 * Changing to the current active: do nothing; return success.
2224 */
2225 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002226 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 return 0;
2228 }
2229
2230 if ((new_active) &&
2231 (old_active) &&
2232 (new_active->link == BOND_LINK_UP) &&
2233 IS_UP(new_active->dev)) {
Neil Hormane843fa52010-10-13 16:01:50 +00002234 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002235 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002237 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002238 unblock_netpoll_tx();
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002239 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002242 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 return res;
2245}
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2248{
Wang Chen454d7c92008-11-12 23:37:49 -08002249 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 info->bond_mode = bond->params.mode;
2252 info->miimon = bond->params.miimon;
2253
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002254 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002256 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 return 0;
2259}
2260
2261static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2262{
Wang Chen454d7c92008-11-12 23:37:49 -08002263 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002265 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002267 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269 bond_for_each_slave(bond, slave, i) {
2270 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002271 res = 0;
2272 strcpy(info->slave_name, slave->dev->name);
2273 info->link = slave->link;
2274 info->state = slave->state;
2275 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 break;
2277 }
2278 }
2279
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002280 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Eric Dumazet689c96c2009-04-23 03:39:04 +00002282 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}
2284
2285/*-------------------------------- Monitoring -------------------------------*/
2286
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002287
2288static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002290 struct slave *slave;
2291 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002292 bool ignore_updelay;
2293
2294 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002297 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002299 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002302 case BOND_LINK_UP:
2303 if (link_state)
2304 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002306 slave->link = BOND_LINK_FAIL;
2307 slave->delay = bond->params.downdelay;
2308 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002309 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2310 bond->dev->name,
2311 (bond->params.mode ==
2312 BOND_MODE_ACTIVEBACKUP) ?
2313 ((slave->state == BOND_STATE_ACTIVE) ?
2314 "active " : "backup ") : "",
2315 slave->dev->name,
2316 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002318 /*FALLTHRU*/
2319 case BOND_LINK_FAIL:
2320 if (link_state) {
2321 /*
2322 * recovered before downdelay expired
2323 */
2324 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002326 pr_info("%s: link status up again after %d ms for interface %s.\n",
2327 bond->dev->name,
2328 (bond->params.downdelay - slave->delay) *
2329 bond->params.miimon,
2330 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002331 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002333
2334 if (slave->delay <= 0) {
2335 slave->new_link = BOND_LINK_DOWN;
2336 commit++;
2337 continue;
2338 }
2339
2340 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002343 case BOND_LINK_DOWN:
2344 if (!link_state)
2345 continue;
2346
2347 slave->link = BOND_LINK_BACK;
2348 slave->delay = bond->params.updelay;
2349
2350 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002351 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2352 bond->dev->name, slave->dev->name,
2353 ignore_updelay ? 0 :
2354 bond->params.updelay *
2355 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002357 /*FALLTHRU*/
2358 case BOND_LINK_BACK:
2359 if (!link_state) {
2360 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002361 pr_info("%s: link status down again after %d ms for interface %s.\n",
2362 bond->dev->name,
2363 (bond->params.updelay - slave->delay) *
2364 bond->params.miimon,
2365 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002366
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002367 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002369
Jiri Pirko41f89102009-04-24 03:57:29 +00002370 if (ignore_updelay)
2371 slave->delay = 0;
2372
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002373 if (slave->delay <= 0) {
2374 slave->new_link = BOND_LINK_UP;
2375 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002376 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002377 continue;
2378 }
2379
2380 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002382 }
2383 }
2384
2385 return commit;
2386}
2387
2388static void bond_miimon_commit(struct bonding *bond)
2389{
2390 struct slave *slave;
2391 int i;
2392
2393 bond_for_each_slave(bond, slave, i) {
2394 switch (slave->new_link) {
2395 case BOND_LINK_NOCHANGE:
2396 continue;
2397
2398 case BOND_LINK_UP:
2399 slave->link = BOND_LINK_UP;
2400 slave->jiffies = jiffies;
2401
2402 if (bond->params.mode == BOND_MODE_8023AD) {
2403 /* prevent it from being the active one */
2404 slave->state = BOND_STATE_BACKUP;
2405 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2406 /* make it immediately active */
2407 slave->state = BOND_STATE_ACTIVE;
2408 } else if (slave != bond->primary_slave) {
2409 /* prevent it from being the active one */
2410 slave->state = BOND_STATE_BACKUP;
2411 }
2412
Krzysztof Piotr Oledzki546add72010-10-06 14:28:22 -07002413 bond_update_speed_duplex(slave);
2414
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002415 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2416 bond->dev->name, slave->dev->name,
2417 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002418
2419 /* notify ad that the link status has changed */
2420 if (bond->params.mode == BOND_MODE_8023AD)
2421 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2422
Holger Eitzenberger58402052008-12-09 23:07:13 -08002423 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002424 bond_alb_handle_link_change(bond, slave,
2425 BOND_LINK_UP);
2426
2427 if (!bond->curr_active_slave ||
2428 (slave == bond->primary_slave))
2429 goto do_failover;
2430
2431 continue;
2432
2433 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002434 if (slave->link_failure_count < UINT_MAX)
2435 slave->link_failure_count++;
2436
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002437 slave->link = BOND_LINK_DOWN;
2438
2439 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2440 bond->params.mode == BOND_MODE_8023AD)
2441 bond_set_slave_inactive_flags(slave);
2442
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002443 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2444 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002445
2446 if (bond->params.mode == BOND_MODE_8023AD)
2447 bond_3ad_handle_link_change(slave,
2448 BOND_LINK_DOWN);
2449
Jiri Pirkoae63e802009-05-27 05:42:36 +00002450 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002451 bond_alb_handle_link_change(bond, slave,
2452 BOND_LINK_DOWN);
2453
2454 if (slave == bond->curr_active_slave)
2455 goto do_failover;
2456
2457 continue;
2458
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002460 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002461 bond->dev->name, slave->new_link,
2462 slave->dev->name);
2463 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002465 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
2467
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002468do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002469 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00002470 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002471 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002473 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002474 unblock_netpoll_tx();
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002475 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002476
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002477 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002480/*
2481 * bond_mii_monitor
2482 *
2483 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002484 * inspection, then (if inspection indicates something needs to be done)
2485 * an acquisition of appropriate locks followed by a commit phase to
2486 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002487 */
2488void bond_mii_monitor(struct work_struct *work)
2489{
2490 struct bonding *bond = container_of(work, struct bonding,
2491 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002492
2493 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002494 if (bond->kill_timers)
2495 goto out;
2496
2497 if (bond->slave_cnt == 0)
2498 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002499
2500 if (bond->send_grat_arp) {
2501 read_lock(&bond->curr_slave_lock);
2502 bond_send_gratuitous_arp(bond);
2503 read_unlock(&bond->curr_slave_lock);
2504 }
2505
Brian Haley305d5522008-11-04 17:51:14 -08002506 if (bond->send_unsol_na) {
2507 read_lock(&bond->curr_slave_lock);
2508 bond_send_unsolicited_na(bond);
2509 read_unlock(&bond->curr_slave_lock);
2510 }
2511
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002512 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002513 read_unlock(&bond->lock);
2514 rtnl_lock();
2515 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002516
2517 bond_miimon_commit(bond);
2518
Jay Vosburgh56556622008-01-17 16:25:03 -08002519 read_unlock(&bond->lock);
2520 rtnl_unlock(); /* might sleep, hold no other locks */
2521 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002522 }
2523
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002524re_arm:
2525 if (bond->params.miimon)
2526 queue_delayed_work(bond->wq, &bond->mii_work,
2527 msecs_to_jiffies(bond->params.miimon));
2528out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002529 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002530}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002531
Al Virod3bb52b2007-08-22 20:06:58 -04002532static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002533{
2534 struct in_device *idev;
2535 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002536 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002537
2538 if (!dev)
2539 return 0;
2540
2541 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002542 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002543 if (!idev)
2544 goto out;
2545
2546 ifa = idev->ifa_list;
2547 if (!ifa)
2548 goto out;
2549
2550 addr = ifa->ifa_local;
2551out:
2552 rcu_read_unlock();
2553 return addr;
2554}
2555
Al Virod3bb52b2007-08-22 20:06:58 -04002556static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002557{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002558 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002559
2560 if (ip == bond->master_ip)
2561 return 1;
2562
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002563 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002564 if (ip == vlan->vlan_ip)
2565 return 1;
2566 }
2567
2568 return 0;
2569}
2570
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002571/*
2572 * We go to the (large) trouble of VLAN tagging ARP frames because
2573 * switches in VLAN mode (especially if ports are configured as
2574 * "native" to a VLAN) might not pass non-tagged frames.
2575 */
Al Virod3bb52b2007-08-22 20:06:58 -04002576static 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 -04002577{
2578 struct sk_buff *skb;
2579
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002580 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002581 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002582
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002583 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2584 NULL, slave_dev->dev_addr, NULL);
2585
2586 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002587 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002588 return;
2589 }
2590 if (vlan_id) {
2591 skb = vlan_put_tag(skb, vlan_id);
2592 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002593 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002594 return;
2595 }
2596 }
2597 arp_xmit(skb);
2598}
2599
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2602{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002603 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002604 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002605 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002606 struct net_device *vlan_dev;
2607 struct flowi fl;
2608 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Mitch Williams6b780562005-11-09 10:36:19 -08002610 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2611 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002612 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002613 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002614 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002615 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002616 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2617 bond->master_ip, 0);
2618 continue;
2619 }
2620
2621 /*
2622 * If VLANs are configured, we do a route lookup to
2623 * determine which VLAN interface would be used, so we
2624 * can tag the ARP with the proper VLAN tag.
2625 */
2626 memset(&fl, 0, sizeof(fl));
2627 fl.fl4_dst = targets[i];
2628 fl.fl4_tos = RTO_ONLINK;
2629
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002630 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002631 if (rv) {
2632 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002633 pr_warning("%s: no route to arp_ip_target %pI4\n",
2634 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002635 }
2636 continue;
2637 }
2638
2639 /*
2640 * This target is not on a VLAN
2641 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002642 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002643 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002644 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002645 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2646 bond->master_ip, 0);
2647 continue;
2648 }
2649
2650 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002651 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002652 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002653 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002654 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002655 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002656 vlan_dev->name, vlan_id);
2657 break;
2658 }
2659 }
2660
2661 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002662 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002663 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2664 vlan->vlan_ip, vlan_id);
2665 continue;
2666 }
2667
2668 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002669 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2670 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002671 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002672 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002673 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002674 }
2675}
2676
2677/*
2678 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2679 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002680 *
2681 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002682 */
2683static void bond_send_gratuitous_arp(struct bonding *bond)
2684{
2685 struct slave *slave = bond->curr_active_slave;
2686 struct vlan_entry *vlan;
2687 struct net_device *vlan_dev;
2688
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002689 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2690 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002691
2692 if (!slave || !bond->send_grat_arp ||
2693 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002694 return;
2695
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002696 bond->send_grat_arp--;
2697
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002698 if (bond->master_ip) {
2699 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002700 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002701 }
2702
Jay Vosburghf35188f2010-07-21 12:14:47 +00002703 if (!bond->vlgrp)
2704 return;
2705
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002706 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002707 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002708 if (vlan->vlan_ip) {
2709 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2710 vlan->vlan_ip, vlan->vlan_id);
2711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
2713}
2714
Al Virod3bb52b2007-08-22 20:06:58 -04002715static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002716{
2717 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002718 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002719
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002720 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002721 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002722 &sip, &tip, i, &targets[i],
2723 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002724 if (sip == targets[i]) {
2725 if (bond_has_this_ip(bond, tip))
2726 slave->last_arp_rx = jiffies;
2727 return;
2728 }
2729 }
2730}
2731
2732static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2733{
2734 struct arphdr *arp;
2735 struct slave *slave;
2736 struct bonding *bond;
2737 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002738 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002739
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002740 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2741 /*
2742 * When using VLANS and bonding, dev and oriv_dev may be
2743 * incorrect if the physical interface supports VLAN
2744 * acceleration. With this change ARP validation now
2745 * works for hosts only reachable on the VLAN interface.
2746 */
2747 dev = vlan_dev_real_dev(dev);
2748 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2749 }
2750
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002751 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2752 goto out;
2753
Wang Chen454d7c92008-11-12 23:37:49 -08002754 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002755 read_lock(&bond->lock);
2756
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002757 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002758 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2759 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002760
2761 slave = bond_get_slave_by_dev(bond, orig_dev);
2762 if (!slave || !slave_do_arp_validate(bond, slave))
2763 goto out_unlock;
2764
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002765 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002766 goto out_unlock;
2767
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002768 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002769 if (arp->ar_hln != dev->addr_len ||
2770 skb->pkt_type == PACKET_OTHERHOST ||
2771 skb->pkt_type == PACKET_LOOPBACK ||
2772 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2773 arp->ar_pro != htons(ETH_P_IP) ||
2774 arp->ar_pln != 4)
2775 goto out_unlock;
2776
2777 arp_ptr = (unsigned char *)(arp + 1);
2778 arp_ptr += dev->addr_len;
2779 memcpy(&sip, arp_ptr, 4);
2780 arp_ptr += 4 + dev->addr_len;
2781 memcpy(&tip, arp_ptr, 4);
2782
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002783 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002784 bond->dev->name, slave->dev->name, slave->state,
2785 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2786 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002787
2788 /*
2789 * Backup slaves won't see the ARP reply, but do come through
2790 * here for each ARP probe (so we swap the sip/tip to validate
2791 * the probe). In a "redundant switch, common router" type of
2792 * configuration, the ARP probe will (hopefully) travel from
2793 * the active, through one switch, the router, then the other
2794 * switch before reaching the backup.
2795 */
2796 if (slave->state == BOND_STATE_ACTIVE)
2797 bond_validate_arp(bond, slave, sip, tip);
2798 else
2799 bond_validate_arp(bond, slave, tip, sip);
2800
2801out_unlock:
2802 read_unlock(&bond->lock);
2803out:
2804 dev_kfree_skb(skb);
2805 return NET_RX_SUCCESS;
2806}
2807
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808/*
2809 * this function is called regularly to monitor each slave's link
2810 * ensuring that traffic is being sent and received when arp monitoring
2811 * is used in load-balancing mode. if the adapter has been dormant, then an
2812 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2813 * arp monitoring in active backup mode.
2814 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002815void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002817 struct bonding *bond = container_of(work, struct bonding,
2818 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct slave *slave, *oldcurrent;
2820 int do_failover = 0;
2821 int delta_in_ticks;
2822 int i;
2823
2824 read_lock(&bond->lock);
2825
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002826 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002828 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002831 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
2834 read_lock(&bond->curr_slave_lock);
2835 oldcurrent = bond->curr_active_slave;
2836 read_unlock(&bond->curr_slave_lock);
2837
2838 /* see if any of the previous devices are up now (i.e. they have
2839 * xmt and rcv traffic). the curr_active_slave does not come into
2840 * the picture unless it is null. also, slave->jiffies is not needed
2841 * here because we send an arp on each slave and give a slave as
2842 * long as it needs to get the tx/rx within the delta.
2843 * TODO: what about up/down delay in arp mode? it wasn't here before
2844 * so it can wait
2845 */
2846 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002847 unsigned long trans_start = dev_trans_start(slave->dev);
2848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002850 if (time_in_range(jiffies,
2851 trans_start - delta_in_ticks,
2852 trans_start + delta_in_ticks) &&
2853 time_in_range(jiffies,
2854 slave->dev->last_rx - delta_in_ticks,
2855 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 slave->link = BOND_LINK_UP;
2858 slave->state = BOND_STATE_ACTIVE;
2859
2860 /* primary_slave has no meaning in round-robin
2861 * mode. the window of a slave being up and
2862 * curr_active_slave being null after enslaving
2863 * is closed.
2864 */
2865 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002866 pr_info("%s: link status definitely up for interface %s, ",
2867 bond->dev->name,
2868 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 do_failover = 1;
2870 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002871 pr_info("%s: interface %s is now up\n",
2872 bond->dev->name,
2873 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 }
2875 }
2876 } else {
2877 /* slave->link == BOND_LINK_UP */
2878
2879 /* not all switches will respond to an arp request
2880 * when the source ip is 0, so don't take the link down
2881 * if we don't know our ip yet
2882 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002883 if (!time_in_range(jiffies,
2884 trans_start - delta_in_ticks,
2885 trans_start + 2 * delta_in_ticks) ||
2886 !time_in_range(jiffies,
2887 slave->dev->last_rx - delta_in_ticks,
2888 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890 slave->link = BOND_LINK_DOWN;
2891 slave->state = BOND_STATE_BACKUP;
2892
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002893 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002896 pr_info("%s: interface %s is now down.\n",
2897 bond->dev->name,
2898 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002900 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 }
2903 }
2904
2905 /* note: if switch is in round-robin mode, all links
2906 * must tx arp to ensure all links rx an arp - otherwise
2907 * links may oscillate or not come up at all; if switch is
2908 * in something like xor mode, there is nothing we can
2909 * do - all replies will be rx'ed on same link causing slaves
2910 * to be unstable during low/no traffic periods
2911 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002912 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 }
2915
2916 if (do_failover) {
Neil Hormane843fa52010-10-13 16:01:50 +00002917 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002918 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920 bond_select_active_slave(bond);
2921
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002922 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002923 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 }
2925
2926re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002927 if (bond->params.arp_interval)
2928 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929out:
2930 read_unlock(&bond->lock);
2931}
2932
2933/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002934 * Called to inspect slaves for active-backup mode ARP monitor link state
2935 * changes. Sets new_link in slaves to specify what action should take
2936 * place for the slave. Returns 0 if no changes are found, >0 if changes
2937 * to link states must be committed.
2938 *
2939 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002941static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002944 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002945 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002948 slave->new_link = BOND_LINK_NOCHANGE;
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002951 if (time_in_range(jiffies,
2952 slave_last_rx(bond, slave) - delta_in_ticks,
2953 slave_last_rx(bond, slave) + delta_in_ticks)) {
2954
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002955 slave->new_link = BOND_LINK_UP;
2956 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002959 continue;
2960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002962 /*
2963 * Give slaves 2*delta after being enslaved or made
2964 * active. This avoids bouncing, as the last receive
2965 * times need a full ARP monitor cycle to be updated.
2966 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002967 if (time_in_range(jiffies,
2968 slave->jiffies - delta_in_ticks,
2969 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002970 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002972 /*
2973 * Backup slave is down if:
2974 * - No current_arp_slave AND
2975 * - more than 3*delta since last receive AND
2976 * - the bond has an IP address
2977 *
2978 * Note: a non-null current_arp_slave indicates
2979 * the curr_active_slave went down and we are
2980 * searching for a new one; under this condition
2981 * we only take the curr_active_slave down - this
2982 * gives each slave a chance to tx/rx traffic
2983 * before being taken out
2984 */
2985 if (slave->state == BOND_STATE_BACKUP &&
2986 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002987 !time_in_range(jiffies,
2988 slave_last_rx(bond, slave) - delta_in_ticks,
2989 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2990
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002991 slave->new_link = BOND_LINK_DOWN;
2992 commit++;
2993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002995 /*
2996 * Active slave is down if:
2997 * - more than 2*delta since transmitting OR
2998 * - (more than 2*delta since receive AND
2999 * the bond has an IP address)
3000 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003001 trans_start = dev_trans_start(slave->dev);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003002 if ((slave->state == BOND_STATE_ACTIVE) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003003 (!time_in_range(jiffies,
3004 trans_start - delta_in_ticks,
3005 trans_start + 2 * delta_in_ticks) ||
3006 !time_in_range(jiffies,
3007 slave_last_rx(bond, slave) - delta_in_ticks,
3008 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
3009
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003010 slave->new_link = BOND_LINK_DOWN;
3011 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 }
3013 }
3014
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003015 return commit;
3016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003018/*
3019 * Called to commit link state changes noted by inspection step of
3020 * active-backup mode ARP monitor.
3021 *
3022 * Called with RTNL and bond->lock for read.
3023 */
3024static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
3025{
3026 struct slave *slave;
3027 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003028 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003030 bond_for_each_slave(bond, slave, i) {
3031 switch (slave->new_link) {
3032 case BOND_LINK_NOCHANGE:
3033 continue;
3034
3035 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003036 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003037 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003038 time_in_range(jiffies,
3039 trans_start - delta_in_ticks,
3040 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003041 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003042 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003043 bond->current_arp_slave = NULL;
3044
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003045 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003046 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003047
Jiri Pirkob9f60252009-08-31 11:09:38 +00003048 if (!bond->curr_active_slave ||
3049 (slave == bond->primary_slave))
3050 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003051
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003052 }
3053
Jiri Pirkob9f60252009-08-31 11:09:38 +00003054 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003055
3056 case BOND_LINK_DOWN:
3057 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003060 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003061 bond_set_slave_inactive_flags(slave);
3062
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003063 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003064 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003065
3066 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003067 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003068 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003069 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003070
3071 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003072
3073 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003074 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003075 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003077 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Jiri Pirkob9f60252009-08-31 11:09:38 +00003080do_failover:
3081 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00003082 block_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003083 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003084 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003085 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00003086 unblock_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003087 }
3088
3089 bond_set_carrier(bond);
3090}
3091
3092/*
3093 * Send ARP probes for active-backup mode ARP monitor.
3094 *
3095 * Called with bond->lock held for read.
3096 */
3097static void bond_ab_arp_probe(struct bonding *bond)
3098{
3099 struct slave *slave;
3100 int i;
3101
3102 read_lock(&bond->curr_slave_lock);
3103
3104 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003105 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3106 bond->current_arp_slave->dev->name,
3107 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003108
3109 if (bond->curr_active_slave) {
3110 bond_arp_send_all(bond, bond->curr_active_slave);
3111 read_unlock(&bond->curr_slave_lock);
3112 return;
3113 }
3114
3115 read_unlock(&bond->curr_slave_lock);
3116
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 /* if we don't have a curr_active_slave, search for the next available
3118 * backup slave from the current_arp_slave and make it the candidate
3119 * for becoming the curr_active_slave
3120 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003121
3122 if (!bond->current_arp_slave) {
3123 bond->current_arp_slave = bond->first_slave;
3124 if (!bond->current_arp_slave)
3125 return;
3126 }
3127
3128 bond_set_slave_inactive_flags(bond->current_arp_slave);
3129
3130 /* search for next candidate */
3131 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3132 if (IS_UP(slave->dev)) {
3133 slave->link = BOND_LINK_BACK;
3134 bond_set_slave_active_flags(slave);
3135 bond_arp_send_all(bond, slave);
3136 slave->jiffies = jiffies;
3137 bond->current_arp_slave = slave;
3138 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 }
3140
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003141 /* if the link state is up at this point, we
3142 * mark it down - this can happen if we have
3143 * simultaneous link failures and
3144 * reselect_active_interface doesn't make this
3145 * one the current slave so it is still marked
3146 * up when it is actually down
3147 */
3148 if (slave->link == BOND_LINK_UP) {
3149 slave->link = BOND_LINK_DOWN;
3150 if (slave->link_failure_count < UINT_MAX)
3151 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003153 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003155 pr_info("%s: backup interface %s is now down.\n",
3156 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003159}
3160
3161void bond_activebackup_arp_mon(struct work_struct *work)
3162{
3163 struct bonding *bond = container_of(work, struct bonding,
3164 arp_work.work);
3165 int delta_in_ticks;
3166
3167 read_lock(&bond->lock);
3168
3169 if (bond->kill_timers)
3170 goto out;
3171
3172 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3173
3174 if (bond->slave_cnt == 0)
3175 goto re_arm;
3176
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003177 if (bond->send_grat_arp) {
3178 read_lock(&bond->curr_slave_lock);
3179 bond_send_gratuitous_arp(bond);
3180 read_unlock(&bond->curr_slave_lock);
3181 }
3182
Brian Haley305d5522008-11-04 17:51:14 -08003183 if (bond->send_unsol_na) {
3184 read_lock(&bond->curr_slave_lock);
3185 bond_send_unsolicited_na(bond);
3186 read_unlock(&bond->curr_slave_lock);
3187 }
3188
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003189 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3190 read_unlock(&bond->lock);
3191 rtnl_lock();
3192 read_lock(&bond->lock);
3193
3194 bond_ab_arp_commit(bond, delta_in_ticks);
3195
3196 read_unlock(&bond->lock);
3197 rtnl_unlock();
3198 read_lock(&bond->lock);
3199 }
3200
3201 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003204 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003205 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206out:
3207 read_unlock(&bond->lock);
3208}
3209
3210/*------------------------------ proc/seq_file-------------------------------*/
3211
3212#ifdef CONFIG_PROC_FS
3213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003215 __acquires(&dev_base_lock)
3216 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
3218 struct bonding *bond = seq->private;
3219 loff_t off = 0;
3220 struct slave *slave;
3221 int i;
3222
3223 /* make sure the bond won't be taken away */
3224 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003225 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003227 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003231 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 }
3234
3235 return NULL;
3236}
3237
3238static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3239{
3240 struct bonding *bond = seq->private;
3241 struct slave *slave = v;
3242
3243 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003244 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 slave = slave->next;
3248
3249 return (slave == bond->first_slave) ? NULL : slave;
3250}
3251
3252static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003253 __releases(&bond->lock)
3254 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255{
3256 struct bonding *bond = seq->private;
3257
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003258 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 read_unlock(&dev_base_lock);
3260}
3261
3262static void bond_info_show_master(struct seq_file *seq)
3263{
3264 struct bonding *bond = seq->private;
3265 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003266 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 read_lock(&bond->curr_slave_lock);
3269 curr = bond->curr_active_slave;
3270 read_unlock(&bond->curr_slave_lock);
3271
Jay Vosburghdd957c52007-10-09 19:57:24 -07003272 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 bond_mode_name(bond->params.mode));
3274
Jay Vosburghdd957c52007-10-09 19:57:24 -07003275 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3276 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003277 seq_printf(seq, " (fail_over_mac %s)",
3278 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003279
3280 seq_printf(seq, "\n");
3281
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003282 if (bond->params.mode == BOND_MODE_XOR ||
3283 bond->params.mode == BOND_MODE_8023AD) {
3284 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3285 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3286 bond->params.xmit_policy);
3287 }
3288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003290 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003291 (bond->primary_slave) ?
3292 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003293 if (bond->primary_slave)
3294 seq_printf(seq, " (primary_reselect %s)",
3295 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Jiri Pirkoa5499522009-09-25 03:28:09 +00003297 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 (curr) ? curr->dev->name : "None");
3299 }
3300
Jay Vosburghff59c452006-03-27 13:27:43 -08003301 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3302 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3304 seq_printf(seq, "Up Delay (ms): %d\n",
3305 bond->params.updelay * bond->params.miimon);
3306 seq_printf(seq, "Down Delay (ms): %d\n",
3307 bond->params.downdelay * bond->params.miimon);
3308
Mitch Williams4756b022005-11-09 10:36:25 -08003309
3310 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003311 if (bond->params.arp_interval > 0) {
3312 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003313 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3314 bond->params.arp_interval);
3315
3316 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3317
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003318 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003319 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003320 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003321 if (printed)
3322 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003323 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003324 printed = 1;
3325 }
3326 seq_printf(seq, "\n");
3327 }
3328
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 if (bond->params.mode == BOND_MODE_8023AD) {
3330 struct ad_info ad_info;
3331
3332 seq_puts(seq, "\n802.3ad info\n");
3333 seq_printf(seq, "LACP rate: %s\n",
3334 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003335 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3336 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
3338 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3339 seq_printf(seq, "bond %s has no active aggregator\n",
3340 bond->dev->name);
3341 } else {
3342 seq_printf(seq, "Active Aggregator Info:\n");
3343
3344 seq_printf(seq, "\tAggregator ID: %d\n",
3345 ad_info.aggregator_id);
3346 seq_printf(seq, "\tNumber of ports: %d\n",
3347 ad_info.ports);
3348 seq_printf(seq, "\tActor Key: %d\n",
3349 ad_info.actor_key);
3350 seq_printf(seq, "\tPartner Key: %d\n",
3351 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003352 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3353 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 }
3355 }
3356}
3357
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003358static void bond_info_show_slave(struct seq_file *seq,
3359 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360{
3361 struct bonding *bond = seq->private;
3362
3363 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3364 seq_printf(seq, "MII Status: %s\n",
3365 (slave->link == BOND_LINK_UP) ? "up" : "down");
Krzysztof Oledzkidd53df22010-09-30 06:19:04 +00003366 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
3367 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
Kenzo Iwami655096452006-09-22 21:53:08 -07003368 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 slave->link_failure_count);
3370
Johannes Berge1749612008-10-27 15:59:26 -07003371 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
3373 if (bond->params.mode == BOND_MODE_8023AD) {
3374 const struct aggregator *agg
3375 = SLAVE_AD_INFO(slave).port.aggregator;
3376
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003377 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 seq_printf(seq, "Aggregator ID: %d\n",
3379 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003380 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003383 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384}
3385
3386static int bond_info_seq_show(struct seq_file *seq, void *v)
3387{
3388 if (v == SEQ_START_TOKEN) {
3389 seq_printf(seq, "%s\n", version);
3390 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003391 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
3394 return 0;
3395}
3396
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003397static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 .start = bond_info_seq_start,
3399 .next = bond_info_seq_next,
3400 .stop = bond_info_seq_stop,
3401 .show = bond_info_seq_show,
3402};
3403
3404static int bond_info_open(struct inode *inode, struct file *file)
3405{
3406 struct seq_file *seq;
3407 struct proc_dir_entry *proc;
3408 int res;
3409
3410 res = seq_open(file, &bond_info_seq_ops);
3411 if (!res) {
3412 /* recover the pointer buried in proc_dir_entry data */
3413 seq = file->private_data;
3414 proc = PDE(inode);
3415 seq->private = proc->data;
3416 }
3417
3418 return res;
3419}
3420
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003421static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 .owner = THIS_MODULE,
3423 .open = bond_info_open,
3424 .read = seq_read,
3425 .llseek = seq_lseek,
3426 .release = seq_release,
3427};
3428
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003429static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430{
3431 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003432 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003434 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003435 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003436 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003437 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003438 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003439 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3440 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003441 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444}
3445
3446static void bond_remove_proc_entry(struct bonding *bond)
3447{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003448 struct net_device *bond_dev = bond->dev;
3449 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3450
3451 if (bn->proc_dir && bond->proc_entry) {
3452 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 memset(bond->proc_file_name, 0, IFNAMSIZ);
3454 bond->proc_entry = NULL;
3455 }
3456}
3457
3458/* Create the bonding directory under /proc/net, if doesn't exist yet.
3459 * Caller must hold rtnl_lock.
3460 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003461static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003463 if (!bn->proc_dir) {
3464 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3465 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003466 pr_warning("Warning: cannot create /proc/net/%s\n",
3467 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 }
3469}
3470
3471/* Destroy the bonding directory under /proc/net, if empty.
3472 * Caller must hold rtnl_lock.
3473 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003474static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003476 if (bn->proc_dir) {
3477 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3478 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 }
3480}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003481
3482#else /* !CONFIG_PROC_FS */
3483
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003484static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003485{
3486}
3487
3488static void bond_remove_proc_entry(struct bonding *bond)
3489{
3490}
3491
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003492static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003493{
3494}
3495
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003496static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003497{
3498}
3499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500#endif /* CONFIG_PROC_FS */
3501
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503/*-------------------------- netdev event handling --------------------------*/
3504
3505/*
3506 * Change device name
3507 */
3508static int bond_event_changename(struct bonding *bond)
3509{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 bond_remove_proc_entry(bond);
3511 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 return NOTIFY_DONE;
3514}
3515
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003516static int bond_master_netdev_event(unsigned long event,
3517 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518{
Wang Chen454d7c92008-11-12 23:37:49 -08003519 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
3521 switch (event) {
3522 case NETDEV_CHANGENAME:
3523 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 default:
3525 break;
3526 }
3527
3528 return NOTIFY_DONE;
3529}
3530
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003531static int bond_slave_netdev_event(unsigned long event,
3532 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533{
3534 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003535 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
3537 switch (event) {
3538 case NETDEV_UNREGISTER:
3539 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003540 if (bond->setup_by_slave)
3541 bond_release_and_destroy(bond_dev, slave_dev);
3542 else
3543 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 }
3545 break;
3546 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003547 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3548 struct slave *slave;
3549
3550 slave = bond_get_slave_by_dev(bond, slave_dev);
3551 if (slave) {
3552 u16 old_speed = slave->speed;
3553 u16 old_duplex = slave->duplex;
3554
3555 bond_update_speed_duplex(slave);
3556
3557 if (bond_is_lb(bond))
3558 break;
3559
3560 if (old_speed != slave->speed)
3561 bond_3ad_adapter_speed_changed(slave);
3562 if (old_duplex != slave->duplex)
3563 bond_3ad_adapter_duplex_changed(slave);
3564 }
3565 }
3566
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 break;
3568 case NETDEV_DOWN:
3569 /*
3570 * ... Or is it this?
3571 */
3572 break;
3573 case NETDEV_CHANGEMTU:
3574 /*
3575 * TODO: Should slaves be allowed to
3576 * independently alter their MTU? For
3577 * an active-backup bond, slaves need
3578 * not be the same type of device, so
3579 * MTUs may vary. For other modes,
3580 * slaves arguably should have the
3581 * same MTUs. To do this, we'd need to
3582 * take over the slave's change_mtu
3583 * function for the duration of their
3584 * servitude.
3585 */
3586 break;
3587 case NETDEV_CHANGENAME:
3588 /*
3589 * TODO: handle changing the primary's name
3590 */
3591 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003592 case NETDEV_FEAT_CHANGE:
3593 bond_compute_features(bond);
3594 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 default:
3596 break;
3597 }
3598
3599 return NOTIFY_DONE;
3600}
3601
3602/*
3603 * bond_netdev_event: handle netdev notifier chain events.
3604 *
3605 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003606 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 * locks for us to safely manipulate the slave devices (RTNL lock,
3608 * dev_probe_lock).
3609 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003610static int bond_netdev_event(struct notifier_block *this,
3611 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612{
3613 struct net_device *event_dev = (struct net_device *)ptr;
3614
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003615 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003616 event_dev ? event_dev->name : "None",
3617 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003619 if (!(event_dev->priv_flags & IFF_BONDING))
3620 return NOTIFY_DONE;
3621
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003623 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 return bond_master_netdev_event(event, event_dev);
3625 }
3626
3627 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003628 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 return bond_slave_netdev_event(event, event_dev);
3630 }
3631
3632 return NOTIFY_DONE;
3633}
3634
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003635/*
3636 * bond_inetaddr_event: handle inetaddr notifier chain events.
3637 *
3638 * We keep track of device IPs primarily to use as source addresses in
3639 * ARP monitor probes (rather than spewing out broadcasts all the time).
3640 *
3641 * We track one IP for the main device (if it has one), plus one per VLAN.
3642 */
3643static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3644{
3645 struct in_ifaddr *ifa = ptr;
3646 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003647 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003648 struct bonding *bond;
3649 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003650
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003651 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003652 if (bond->dev == event_dev) {
3653 switch (event) {
3654 case NETDEV_UP:
3655 bond->master_ip = ifa->ifa_local;
3656 return NOTIFY_OK;
3657 case NETDEV_DOWN:
3658 bond->master_ip = bond_glean_dev_ip(bond->dev);
3659 return NOTIFY_OK;
3660 default:
3661 return NOTIFY_DONE;
3662 }
3663 }
3664
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003665 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003666 if (!bond->vlgrp)
3667 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003668 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003669 if (vlan_dev == event_dev) {
3670 switch (event) {
3671 case NETDEV_UP:
3672 vlan->vlan_ip = ifa->ifa_local;
3673 return NOTIFY_OK;
3674 case NETDEV_DOWN:
3675 vlan->vlan_ip =
3676 bond_glean_dev_ip(vlan_dev);
3677 return NOTIFY_OK;
3678 default:
3679 return NOTIFY_DONE;
3680 }
3681 }
3682 }
3683 }
3684 return NOTIFY_DONE;
3685}
3686
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687static struct notifier_block bond_netdev_notifier = {
3688 .notifier_call = bond_netdev_event,
3689};
3690
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003691static struct notifier_block bond_inetaddr_notifier = {
3692 .notifier_call = bond_inetaddr_event,
3693};
3694
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695/*-------------------------- Packet type handling ---------------------------*/
3696
3697/* register to receive lacpdus on a bond */
3698static void bond_register_lacpdu(struct bonding *bond)
3699{
3700 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3701
3702 /* initialize packet type */
3703 pk_type->type = PKT_TYPE_LACPDU;
3704 pk_type->dev = bond->dev;
3705 pk_type->func = bond_3ad_lacpdu_recv;
3706
3707 dev_add_pack(pk_type);
3708}
3709
3710/* unregister to receive lacpdus on a bond */
3711static void bond_unregister_lacpdu(struct bonding *bond)
3712{
3713 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3714}
3715
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003716void bond_register_arp(struct bonding *bond)
3717{
3718 struct packet_type *pt = &bond->arp_mon_pt;
3719
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003720 if (pt->type)
3721 return;
3722
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003723 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003724 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003725 pt->func = bond_arp_rcv;
3726 dev_add_pack(pt);
3727}
3728
3729void bond_unregister_arp(struct bonding *bond)
3730{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003731 struct packet_type *pt = &bond->arp_mon_pt;
3732
3733 dev_remove_pack(pt);
3734 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003735}
3736
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003737/*---------------------------- Hashing Policies -----------------------------*/
3738
3739/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003740 * Hash for the output device based upon layer 2 and layer 3 data. If
3741 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3742 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003743static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003744{
3745 struct ethhdr *data = (struct ethhdr *)skb->data;
3746 struct iphdr *iph = ip_hdr(skb);
3747
Brian Haleyf14c4e42008-09-02 10:08:08 -04003748 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003749 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003750 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003751 }
3752
Jasper Spaansd3da6832009-10-23 04:08:46 +00003753 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003754}
3755
3756/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003757 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003758 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3759 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3760 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003761static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003762{
3763 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003764 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003765 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003766 int layer4_xor = 0;
3767
Brian Haleyf14c4e42008-09-02 10:08:08 -04003768 if (skb->protocol == htons(ETH_P_IP)) {
3769 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003770 (iph->protocol == IPPROTO_TCP ||
3771 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003772 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003773 }
3774 return (layer4_xor ^
3775 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3776
3777 }
3778
Jasper Spaansd3da6832009-10-23 04:08:46 +00003779 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003780}
3781
3782/*
3783 * Hash for the output device based upon layer 2 data
3784 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003785static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003786{
3787 struct ethhdr *data = (struct ethhdr *)skb->data;
3788
Jasper Spaansd3da6832009-10-23 04:08:46 +00003789 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003790}
3791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792/*-------------------------- Device entry points ----------------------------*/
3793
3794static int bond_open(struct net_device *bond_dev)
3795{
Wang Chen454d7c92008-11-12 23:37:49 -08003796 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 bond->kill_timers = 0;
3799
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003800 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3801
Holger Eitzenberger58402052008-12-09 23:07:13 -08003802 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 /* bond_alb_initialize must be called before the timer
3804 * is started.
3805 */
3806 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3807 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003808 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 }
3810
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003811 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3812 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 }
3814
3815 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003816 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3817 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 }
3819
3820 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003821 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3822 INIT_DELAYED_WORK(&bond->arp_work,
3823 bond_activebackup_arp_mon);
3824 else
3825 INIT_DELAYED_WORK(&bond->arp_work,
3826 bond_loadbalance_arp_mon);
3827
3828 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003829 if (bond->params.arp_validate)
3830 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 }
3832
3833 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003834 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003835 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 /* register to receive LACPDUs */
3837 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003838 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 }
3840
3841 return 0;
3842}
3843
3844static int bond_close(struct net_device *bond_dev)
3845{
Wang Chen454d7c92008-11-12 23:37:49 -08003846 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
3848 if (bond->params.mode == BOND_MODE_8023AD) {
3849 /* Unregister the receive of LACPDUs */
3850 bond_unregister_lacpdu(bond);
3851 }
3852
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003853 if (bond->params.arp_validate)
3854 bond_unregister_arp(bond);
3855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 write_lock_bh(&bond->lock);
3857
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003858 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003859 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
3861 /* signal timers not to re-arm */
3862 bond->kill_timers = 1;
3863
3864 write_unlock_bh(&bond->lock);
3865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003867 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 }
3869
3870 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003871 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 }
3873
3874 switch (bond->params.mode) {
3875 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003876 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 break;
3878 case BOND_MODE_TLB:
3879 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003880 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 break;
3882 default:
3883 break;
3884 }
3885
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003886 if (delayed_work_pending(&bond->mcast_work))
3887 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Holger Eitzenberger58402052008-12-09 23:07:13 -08003889 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 /* Must be called only after all
3891 * slaves have been released
3892 */
3893 bond_alb_deinitialize(bond);
3894 }
3895
3896 return 0;
3897}
3898
Eric Dumazet28172732010-07-07 14:58:56 -07003899static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3900 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
Wang Chen454d7c92008-11-12 23:37:49 -08003902 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003903 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 struct slave *slave;
3905 int i;
3906
Eric Dumazet28172732010-07-07 14:58:56 -07003907 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
3909 read_lock_bh(&bond->lock);
3910
3911 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003912 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003913 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003914
Eric Dumazet28172732010-07-07 14:58:56 -07003915 stats->rx_packets += sstats->rx_packets;
3916 stats->rx_bytes += sstats->rx_bytes;
3917 stats->rx_errors += sstats->rx_errors;
3918 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Eric Dumazet28172732010-07-07 14:58:56 -07003920 stats->tx_packets += sstats->tx_packets;
3921 stats->tx_bytes += sstats->tx_bytes;
3922 stats->tx_errors += sstats->tx_errors;
3923 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Eric Dumazet28172732010-07-07 14:58:56 -07003925 stats->multicast += sstats->multicast;
3926 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Eric Dumazet28172732010-07-07 14:58:56 -07003928 stats->rx_length_errors += sstats->rx_length_errors;
3929 stats->rx_over_errors += sstats->rx_over_errors;
3930 stats->rx_crc_errors += sstats->rx_crc_errors;
3931 stats->rx_frame_errors += sstats->rx_frame_errors;
3932 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3933 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
Eric Dumazet28172732010-07-07 14:58:56 -07003935 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3936 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3937 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3938 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3939 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 }
3941
3942 read_unlock_bh(&bond->lock);
3943
3944 return stats;
3945}
3946
3947static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3948{
3949 struct net_device *slave_dev = NULL;
3950 struct ifbond k_binfo;
3951 struct ifbond __user *u_binfo = NULL;
3952 struct ifslave k_sinfo;
3953 struct ifslave __user *u_sinfo = NULL;
3954 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 int res = 0;
3956
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003957 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
3959 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 case SIOCGMIIPHY:
3961 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003962 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003964
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 mii->phy_id = 0;
3966 /* Fall Through */
3967 case SIOCGMIIREG:
3968 /*
3969 * We do this again just in case we were called by SIOCGMIIREG
3970 * instead of SIOCGMIIPHY.
3971 */
3972 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003973 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003975
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
3977 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003978 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003980 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003982 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003984
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003986 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 }
3988
3989 return 0;
3990 case BOND_INFO_QUERY_OLD:
3991 case SIOCBONDINFOQUERY:
3992 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3993
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003994 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
3997 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003998 if (res == 0 &&
3999 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
4000 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
4002 return res;
4003 case BOND_SLAVE_INFO_QUERY_OLD:
4004 case SIOCBONDSLAVEINFOQUERY:
4005 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
4006
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004007 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
4010 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004011 if (res == 0 &&
4012 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
4013 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
4015 return res;
4016 default:
4017 /* Go on */
4018 break;
4019 }
4020
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004021 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004024 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004026 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004028 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004030 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004031 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 switch (cmd) {
4033 case BOND_ENSLAVE_OLD:
4034 case SIOCBONDENSLAVE:
4035 res = bond_enslave(bond_dev, slave_dev);
4036 break;
4037 case BOND_RELEASE_OLD:
4038 case SIOCBONDRELEASE:
4039 res = bond_release(bond_dev, slave_dev);
4040 break;
4041 case BOND_SETHWADDR_OLD:
4042 case SIOCBONDSETHWADDR:
4043 res = bond_sethwaddr(bond_dev, slave_dev);
4044 break;
4045 case BOND_CHANGE_ACTIVE_OLD:
4046 case SIOCBONDCHANGEACTIVE:
4047 res = bond_ioctl_change_active(bond_dev, slave_dev);
4048 break;
4049 default:
4050 res = -EOPNOTSUPP;
4051 }
4052
4053 dev_put(slave_dev);
4054 }
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 return res;
4057}
4058
Jiri Pirko22bedad2010-04-01 21:22:57 +00004059static bool bond_addr_in_mc_list(unsigned char *addr,
4060 struct netdev_hw_addr_list *list,
4061 int addrlen)
4062{
4063 struct netdev_hw_addr *ha;
4064
4065 netdev_hw_addr_list_for_each(ha, list)
4066 if (!memcmp(ha->addr, addr, addrlen))
4067 return true;
4068
4069 return false;
4070}
4071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072static void bond_set_multicast_list(struct net_device *bond_dev)
4073{
Wang Chen454d7c92008-11-12 23:37:49 -08004074 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00004075 struct netdev_hw_addr *ha;
4076 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 /*
4079 * Do promisc before checking multicast_mode
4080 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004081 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004082 /*
4083 * FIXME: Need to handle the error when one of the multi-slaves
4084 * encounters error.
4085 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004088
4089 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
4093 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004094 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004095 /*
4096 * FIXME: Need to handle the error when one of the multi-slaves
4097 * encounters error.
4098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004101
4102 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004106 read_lock(&bond->lock);
4107
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 bond->flags = bond_dev->flags;
4109
4110 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004111 netdev_for_each_mc_addr(ha, bond_dev) {
4112 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4113 bond_dev->addr_len);
4114 if (!found)
4115 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 }
4117
4118 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004119 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4120 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4121 bond_dev->addr_len);
4122 if (!found)
4123 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 }
4125
4126 /* save master's multicast list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004127 __hw_addr_flush(&bond->mc_list);
4128 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4129 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004131 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132}
4133
Stephen Hemminger00829822008-11-20 20:14:53 -08004134static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4135{
4136 struct bonding *bond = netdev_priv(dev);
4137 struct slave *slave = bond->first_slave;
4138
4139 if (slave) {
4140 const struct net_device_ops *slave_ops
4141 = slave->dev->netdev_ops;
4142 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004143 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004144 }
4145 return 0;
4146}
4147
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148/*
4149 * Change the MTU of all of a master's slaves to match the master
4150 */
4151static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4152{
Wang Chen454d7c92008-11-12 23:37:49 -08004153 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 struct slave *slave, *stop_at;
4155 int res = 0;
4156 int i;
4157
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004158 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004159 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
4161 /* Can't hold bond->lock with bh disabled here since
4162 * some base drivers panic. On the other hand we can't
4163 * hold bond->lock without bh disabled because we'll
4164 * deadlock. The only solution is to rely on the fact
4165 * that we're under rtnl_lock here, and the slaves
4166 * list won't change. This doesn't solve the problem
4167 * of setting the slave's MTU while it is
4168 * transmitting, but the assumption is that the base
4169 * driver can handle that.
4170 *
4171 * TODO: figure out a way to safely iterate the slaves
4172 * list, but without holding a lock around the actual
4173 * call to the base driver.
4174 */
4175
4176 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004177 pr_debug("s %p s->p %p c_m %p\n",
4178 slave,
4179 slave->prev,
4180 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 res = dev_set_mtu(slave->dev, new_mtu);
4183
4184 if (res) {
4185 /* If we failed to set the slave's mtu to the new value
4186 * we must abort the operation even in ACTIVE_BACKUP
4187 * mode, because if we allow the backup slaves to have
4188 * different mtu values than the active slave we'll
4189 * need to change their mtu when doing a failover. That
4190 * means changing their mtu from timer context, which
4191 * is probably not a good idea.
4192 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004193 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 goto unwind;
4195 }
4196 }
4197
4198 bond_dev->mtu = new_mtu;
4199
4200 return 0;
4201
4202unwind:
4203 /* unwind from head to the slave that failed */
4204 stop_at = slave;
4205 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4206 int tmp_res;
4207
4208 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4209 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004210 pr_debug("unwind err %d dev %s\n",
4211 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 }
4213 }
4214
4215 return res;
4216}
4217
4218/*
4219 * Change HW address
4220 *
4221 * Note that many devices must be down to change the HW address, and
4222 * downing the master releases all slaves. We can make bonds full of
4223 * bonding devices to test this, however.
4224 */
4225static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4226{
Wang Chen454d7c92008-11-12 23:37:49 -08004227 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 struct sockaddr *sa = addr, tmp_sa;
4229 struct slave *slave, *stop_at;
4230 int res = 0;
4231 int i;
4232
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004233 if (bond->params.mode == BOND_MODE_ALB)
4234 return bond_alb_set_mac_address(bond_dev, addr);
4235
4236
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004237 pr_debug("bond=%p, name=%s\n",
4238 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Jay Vosburghdd957c52007-10-09 19:57:24 -07004240 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004241 * If fail_over_mac is set to active, do nothing and return
4242 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004243 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004244 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004245 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004246
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004247 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
4250 /* Can't hold bond->lock with bh disabled here since
4251 * some base drivers panic. On the other hand we can't
4252 * hold bond->lock without bh disabled because we'll
4253 * deadlock. The only solution is to rely on the fact
4254 * that we're under rtnl_lock here, and the slaves
4255 * list won't change. This doesn't solve the problem
4256 * of setting the slave's hw address while it is
4257 * transmitting, but the assumption is that the base
4258 * driver can handle that.
4259 *
4260 * TODO: figure out a way to safely iterate the slaves
4261 * list, but without holding a lock around the actual
4262 * call to the base driver.
4263 */
4264
4265 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004266 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004267 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004269 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004271 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 goto unwind;
4273 }
4274
4275 res = dev_set_mac_address(slave->dev, addr);
4276 if (res) {
4277 /* TODO: consider downing the slave
4278 * and retry ?
4279 * User should expect communications
4280 * breakage anyway until ARP finish
4281 * updating, so...
4282 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004283 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 goto unwind;
4285 }
4286 }
4287
4288 /* success */
4289 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4290 return 0;
4291
4292unwind:
4293 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4294 tmp_sa.sa_family = bond_dev->type;
4295
4296 /* unwind from head to the slave that failed */
4297 stop_at = slave;
4298 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4299 int tmp_res;
4300
4301 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4302 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004303 pr_debug("unwind err %d dev %s\n",
4304 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 }
4306 }
4307
4308 return res;
4309}
4310
4311static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4312{
Wang Chen454d7c92008-11-12 23:37:49 -08004313 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004315 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004316 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318 read_lock(&bond->lock);
4319
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004320 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004322 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004323 * Start with the curr_active_slave that joined the bond as the
4324 * default for sending IGMP traffic. For failover purposes one
4325 * needs to maintain some consistency for the interface that will
4326 * send the join/membership reports. The curr_active_slave found
4327 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004328 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004329 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004330 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004332 read_lock(&bond->curr_slave_lock);
4333 slave = bond->curr_active_slave;
4334 read_unlock(&bond->curr_slave_lock);
4335
4336 if (!slave)
4337 goto out;
4338 } else {
4339 /*
4340 * Concurrent TX may collide on rr_tx_counter; we accept
4341 * that as being rare enough not to justify using an
4342 * atomic op here.
4343 */
4344 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4345
4346 bond_for_each_slave(bond, slave, i) {
4347 slave_no--;
4348 if (slave_no < 0)
4349 break;
4350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 }
4352
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004353 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 bond_for_each_slave_from(bond, slave, i, start_at) {
4355 if (IS_UP(slave->dev) &&
4356 (slave->link == BOND_LINK_UP) &&
4357 (slave->state == BOND_STATE_ACTIVE)) {
4358 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 break;
4360 }
4361 }
4362
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363out:
4364 if (res) {
4365 /* no suitable interface, frame not sent */
4366 dev_kfree_skb(skb);
4367 }
4368 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004369 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370}
4371
John W. Linville075897c2005-09-28 17:50:53 -04004372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373/*
4374 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4375 * the bond has a usable interface.
4376 */
4377static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4378{
Wang Chen454d7c92008-11-12 23:37:49 -08004379 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 int res = 1;
4381
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 read_lock(&bond->lock);
4383 read_lock(&bond->curr_slave_lock);
4384
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004385 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387
John W. Linville075897c2005-09-28 17:50:53 -04004388 if (!bond->curr_active_slave)
4389 goto out;
4390
John W. Linville075897c2005-09-28 17:50:53 -04004391 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4392
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004394 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 /* no suitable interface, frame not sent */
4396 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004397
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 read_unlock(&bond->curr_slave_lock);
4399 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004400 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401}
4402
4403/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004404 * In bond_xmit_xor() , we determine the output device by using a pre-
4405 * determined xmit_hash_policy(), If the selected device is not enabled,
4406 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 */
4408static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4409{
Wang Chen454d7c92008-11-12 23:37:49 -08004410 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 struct slave *slave, *start_at;
4412 int slave_no;
4413 int i;
4414 int res = 1;
4415
4416 read_lock(&bond->lock);
4417
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004418 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
Jasper Spaansa361c832009-10-23 04:09:24 +00004421 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422
4423 bond_for_each_slave(bond, slave, i) {
4424 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004425 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 }
4428
4429 start_at = slave;
4430
4431 bond_for_each_slave_from(bond, slave, i, start_at) {
4432 if (IS_UP(slave->dev) &&
4433 (slave->link == BOND_LINK_UP) &&
4434 (slave->state == BOND_STATE_ACTIVE)) {
4435 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4436 break;
4437 }
4438 }
4439
4440out:
4441 if (res) {
4442 /* no suitable interface, frame not sent */
4443 dev_kfree_skb(skb);
4444 }
4445 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004446 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447}
4448
4449/*
4450 * in broadcast mode, we send everything to all usable interfaces.
4451 */
4452static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4453{
Wang Chen454d7c92008-11-12 23:37:49 -08004454 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 struct slave *slave, *start_at;
4456 struct net_device *tx_dev = NULL;
4457 int i;
4458 int res = 1;
4459
4460 read_lock(&bond->lock);
4461
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004462 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
4465 read_lock(&bond->curr_slave_lock);
4466 start_at = bond->curr_active_slave;
4467 read_unlock(&bond->curr_slave_lock);
4468
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004469 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
4472 bond_for_each_slave_from(bond, slave, i, start_at) {
4473 if (IS_UP(slave->dev) &&
4474 (slave->link == BOND_LINK_UP) &&
4475 (slave->state == BOND_STATE_ACTIVE)) {
4476 if (tx_dev) {
4477 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4478 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004479 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004480 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 continue;
4482 }
4483
4484 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4485 if (res) {
4486 dev_kfree_skb(skb2);
4487 continue;
4488 }
4489 }
4490 tx_dev = slave->dev;
4491 }
4492 }
4493
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004494 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
4497out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004498 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 /* no suitable interface, frame not sent */
4500 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 /* frame sent to all suitable interfaces */
4503 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004504 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505}
4506
4507/*------------------------- Device initialization ---------------------------*/
4508
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004509static void bond_set_xmit_hash_policy(struct bonding *bond)
4510{
4511 switch (bond->params.xmit_policy) {
4512 case BOND_XMIT_POLICY_LAYER23:
4513 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4514 break;
4515 case BOND_XMIT_POLICY_LAYER34:
4516 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4517 break;
4518 case BOND_XMIT_POLICY_LAYER2:
4519 default:
4520 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4521 break;
4522 }
4523}
4524
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004525/*
4526 * Lookup the slave that corresponds to a qid
4527 */
4528static inline int bond_slave_override(struct bonding *bond,
4529 struct sk_buff *skb)
4530{
4531 int i, res = 1;
4532 struct slave *slave = NULL;
4533 struct slave *check_slave;
4534
4535 read_lock(&bond->lock);
4536
4537 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4538 goto out;
4539
4540 /* Find out if any slaves have the same mapping as this skb. */
4541 bond_for_each_slave(bond, check_slave, i) {
4542 if (check_slave->queue_id == skb->queue_mapping) {
4543 slave = check_slave;
4544 break;
4545 }
4546 }
4547
4548 /* If the slave isn't UP, use default transmit policy. */
4549 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4550 (slave->link == BOND_LINK_UP)) {
4551 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4552 }
4553
4554out:
4555 read_unlock(&bond->lock);
4556 return res;
4557}
4558
4559static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4560{
4561 /*
4562 * This helper function exists to help dev_pick_tx get the correct
4563 * destination queue. Using a helper function skips the a call to
4564 * skb_tx_hash and will put the skbs in the queue we expect on their
4565 * way down to the bonding driver.
4566 */
4567 return skb->queue_mapping;
4568}
4569
Stephen Hemminger424efe92009-08-31 19:50:51 +00004570static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004571{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004572 struct bonding *bond = netdev_priv(dev);
4573
Neil Hormane843fa52010-10-13 16:01:50 +00004574 /*
4575 * If we risk deadlock from transmitting this in the
4576 * netpoll path, tell netpoll to queue the frame for later tx
4577 */
4578 if (is_netpoll_tx_blocked(dev))
4579 return NETDEV_TX_BUSY;
4580
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004581 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4582 if (!bond_slave_override(bond, skb))
4583 return NETDEV_TX_OK;
4584 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004585
4586 switch (bond->params.mode) {
4587 case BOND_MODE_ROUNDROBIN:
4588 return bond_xmit_roundrobin(skb, dev);
4589 case BOND_MODE_ACTIVEBACKUP:
4590 return bond_xmit_activebackup(skb, dev);
4591 case BOND_MODE_XOR:
4592 return bond_xmit_xor(skb, dev);
4593 case BOND_MODE_BROADCAST:
4594 return bond_xmit_broadcast(skb, dev);
4595 case BOND_MODE_8023AD:
4596 return bond_3ad_xmit_xor(skb, dev);
4597 case BOND_MODE_ALB:
4598 case BOND_MODE_TLB:
4599 return bond_alb_xmit(skb, dev);
4600 default:
4601 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004602 pr_err("%s: Error: Unknown bonding mode %d\n",
4603 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004604 WARN_ON_ONCE(1);
4605 dev_kfree_skb(skb);
4606 return NETDEV_TX_OK;
4607 }
4608}
4609
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611/*
4612 * set bond mode specific net device operations
4613 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004614void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004616 struct net_device *bond_dev = bond->dev;
4617
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 switch (mode) {
4619 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 break;
4621 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 break;
4623 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004624 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 break;
4626 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 break;
4628 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004629 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004630 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004633 bond_set_master_alb_flags(bond);
4634 /* FALLTHRU */
4635 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 break;
4637 default:
4638 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004639 pr_err("%s: Error: Unknown bonding mode %d\n",
4640 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 break;
4642 }
4643}
4644
Jay Vosburgh217df672005-09-26 16:11:50 -07004645static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4646 struct ethtool_drvinfo *drvinfo)
4647{
4648 strncpy(drvinfo->driver, DRV_NAME, 32);
4649 strncpy(drvinfo->version, DRV_VERSION, 32);
4650 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4651}
4652
Jeff Garzik7282d492006-09-13 14:30:00 -04004653static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004654 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004655 .get_link = ethtool_op_get_link,
4656 .get_tx_csum = ethtool_op_get_tx_csum,
4657 .get_sg = ethtool_op_get_sg,
4658 .get_tso = ethtool_op_get_tso,
4659 .get_ufo = ethtool_op_get_ufo,
4660 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004661};
4662
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004663static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004664 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004665 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004666 .ndo_open = bond_open,
4667 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004668 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004669 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004670 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004671 .ndo_do_ioctl = bond_do_ioctl,
4672 .ndo_set_multicast_list = bond_set_multicast_list,
4673 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004674 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004675 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004676 .ndo_vlan_rx_register = bond_vlan_rx_register,
4677 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4678 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004679#ifdef CONFIG_NET_POLL_CONTROLLER
4680 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4681 .ndo_poll_controller = bond_poll_controller,
4682#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004683};
4684
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004685static void bond_destructor(struct net_device *bond_dev)
4686{
4687 struct bonding *bond = netdev_priv(bond_dev);
4688 if (bond->wq)
4689 destroy_workqueue(bond->wq);
4690 free_netdev(bond_dev);
4691}
4692
Stephen Hemminger181470f2009-06-12 19:02:52 +00004693static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694{
Wang Chen454d7c92008-11-12 23:37:49 -08004695 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 /* initialize rwlocks */
4698 rwlock_init(&bond->lock);
4699 rwlock_init(&bond->curr_slave_lock);
4700
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004701 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
4703 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 bond->dev = bond_dev;
4705 INIT_LIST_HEAD(&bond->vlan_list);
4706
4707 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004708 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004709 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004710 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004711 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004713 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
4715 /* Initialize the device options */
4716 bond_dev->tx_queue_len = 0;
4717 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004718 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004719 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4720
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004721 if (bond->params.arp_interval)
4722 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
4724 /* At first, we block adding VLANs. That's the only way to
4725 * prevent problems that occur when adding VLANs over an
4726 * empty bond. The block will be removed once non-challenged
4727 * slaves are enslaved.
4728 */
4729 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4730
Herbert Xu932ff272006-06-09 12:20:56 -07004731 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 * transmitting */
4733 bond_dev->features |= NETIF_F_LLTX;
4734
4735 /* By default, we declare the bond to be fully
4736 * VLAN hardware accelerated capable. Special
4737 * care is taken in the various xmit functions
4738 * when there are slaves that are not hw accel
4739 * capable
4740 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4742 NETIF_F_HW_VLAN_RX |
4743 NETIF_F_HW_VLAN_FILTER);
4744
Eric Dumazete6599c22010-09-17 09:25:07 +00004745 /* By default, we enable GRO on bonding devices.
4746 * Actual support requires lowlevel drivers are GRO ready.
4747 */
4748 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749}
4750
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004751static void bond_work_cancel_all(struct bonding *bond)
4752{
4753 write_lock_bh(&bond->lock);
4754 bond->kill_timers = 1;
4755 write_unlock_bh(&bond->lock);
4756
4757 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4758 cancel_delayed_work(&bond->mii_work);
4759
4760 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4761 cancel_delayed_work(&bond->arp_work);
4762
4763 if (bond->params.mode == BOND_MODE_ALB &&
4764 delayed_work_pending(&bond->alb_work))
4765 cancel_delayed_work(&bond->alb_work);
4766
4767 if (bond->params.mode == BOND_MODE_8023AD &&
4768 delayed_work_pending(&bond->ad_work))
4769 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004770
4771 if (delayed_work_pending(&bond->mcast_work))
4772 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004773}
4774
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004775/*
4776* Destroy a bonding device.
4777* Must be under rtnl_lock when this function is called.
4778*/
4779static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004780{
Wang Chen454d7c92008-11-12 23:37:49 -08004781 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004782 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004783
WANG Congf6dc31a2010-05-06 00:48:51 -07004784 bond_netpoll_cleanup(bond_dev);
4785
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004786 /* Release the bonded slaves */
4787 bond_release_all(bond_dev);
4788
Jay Vosburgha434e432008-10-30 17:41:15 -07004789 list_del(&bond->bond_list);
4790
4791 bond_work_cancel_all(bond);
4792
Jay Vosburgha434e432008-10-30 17:41:15 -07004793 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004794
Jiri Pirko22bedad2010-04-01 21:22:57 +00004795 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004796
4797 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4798 list_del(&vlan->vlan_list);
4799 kfree(vlan);
4800 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004801}
4802
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803/*------------------------- Module initialization ---------------------------*/
4804
4805/*
4806 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004807 * number of the mode or its string name. A bit complicated because
4808 * some mode names are substrings of other names, and calls from sysfs
4809 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004811int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812{
Hannes Eder54b87322009-02-14 11:15:49 +00004813 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004814 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004815
Jay Vosburgha42e5342008-01-29 18:07:43 -08004816 for (p = (char *)buf; *p; p++)
4817 if (!(isdigit(*p) || isspace(*p)))
4818 break;
4819
4820 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004821 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004822 else
Hannes Eder54b87322009-02-14 11:15:49 +00004823 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004824
4825 if (!rv)
4826 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
4828 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004829 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004831 if (strcmp(modestr, tbl[i].modename) == 0)
4832 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 }
4834
4835 return -1;
4836}
4837
4838static int bond_check_params(struct bond_params *params)
4839{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004840 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 /*
4843 * Convert string parameters.
4844 */
4845 if (mode) {
4846 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4847 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004848 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 mode == NULL ? "NULL" : mode);
4850 return -EINVAL;
4851 }
4852 }
4853
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004854 if (xmit_hash_policy) {
4855 if ((bond_mode != BOND_MODE_XOR) &&
4856 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004857 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004858 bond_mode_name(bond_mode));
4859 } else {
4860 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4861 xmit_hashtype_tbl);
4862 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004863 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004864 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004865 xmit_hash_policy);
4866 return -EINVAL;
4867 }
4868 }
4869 }
4870
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 if (lacp_rate) {
4872 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004873 pr_info("lacp_rate param is irrelevant in mode %s\n",
4874 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 } else {
4876 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4877 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004878 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 lacp_rate == NULL ? "NULL" : lacp_rate);
4880 return -EINVAL;
4881 }
4882 }
4883 }
4884
Jay Vosburghfd989c82008-11-04 17:51:16 -08004885 if (ad_select) {
4886 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4887 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004888 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004889 ad_select == NULL ? "NULL" : ad_select);
4890 return -EINVAL;
4891 }
4892
4893 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004894 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004895 }
4896 } else {
4897 params->ad_select = BOND_AD_STABLE;
4898 }
4899
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004900 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004901 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4902 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 max_bonds = BOND_DEFAULT_MAX_BONDS;
4904 }
4905
4906 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004907 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4908 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909 miimon = BOND_LINK_MON_INTERV;
4910 }
4911
4912 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004913 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4914 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 updelay = 0;
4916 }
4917
4918 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004919 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4920 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 downdelay = 0;
4922 }
4923
4924 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004925 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4926 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 use_carrier = 1;
4928 }
4929
Moni Shoua7893b242008-05-17 21:10:12 -07004930 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004931 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 -08004932 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004933 num_grat_arp = 1;
4934 }
4935
Brian Haley305d5522008-11-04 17:51:14 -08004936 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004937 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 -08004938 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004939 num_unsol_na = 1;
4940 }
4941
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942 /* reset values for 802.3ad */
4943 if (bond_mode == BOND_MODE_8023AD) {
4944 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004945 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 +00004946 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 miimon = 100;
4948 }
4949 }
4950
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004951 if (tx_queues < 1 || tx_queues > 255) {
4952 pr_warning("Warning: tx_queues (%d) should be between "
4953 "1 and 255, resetting to %d\n",
4954 tx_queues, BOND_DEFAULT_TX_QUEUES);
4955 tx_queues = BOND_DEFAULT_TX_QUEUES;
4956 }
4957
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004958 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4959 pr_warning("Warning: all_slaves_active module parameter (%d), "
4960 "not of valid value (0/1), so it was set to "
4961 "0\n", all_slaves_active);
4962 all_slaves_active = 0;
4963 }
4964
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004965 if (resend_igmp < 0 || resend_igmp > 255) {
4966 pr_warning("Warning: resend_igmp (%d) should be between "
4967 "0 and 255, resetting to %d\n",
4968 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4969 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4970 }
4971
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 /* reset values for TLB/ALB */
4973 if ((bond_mode == BOND_MODE_TLB) ||
4974 (bond_mode == BOND_MODE_ALB)) {
4975 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004976 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 +00004977 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978 miimon = 100;
4979 }
4980 }
4981
4982 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004983 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",
4984 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 }
4986
4987 if (!miimon) {
4988 if (updelay || downdelay) {
4989 /* just warn the user the up/down delay will have
4990 * no effect since miimon is zero...
4991 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004992 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",
4993 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 }
4995 } else {
4996 /* don't allow arp monitoring */
4997 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004998 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4999 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000 arp_interval = 0;
5001 }
5002
5003 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005004 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
5005 updelay, miimon,
5006 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007 }
5008
5009 updelay /= miimon;
5010
5011 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005012 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
5013 downdelay, miimon,
5014 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 }
5016
5017 downdelay /= miimon;
5018 }
5019
5020 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005021 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
5022 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 arp_interval = BOND_LINK_ARP_INTERV;
5024 }
5025
5026 for (arp_ip_count = 0;
5027 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5028 arp_ip_count++) {
5029 /* not complete check, but should be good enough to
5030 catch mistakes */
5031 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005032 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5033 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034 arp_interval = 0;
5035 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04005036 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 arp_target[arp_ip_count] = ip;
5038 }
5039 }
5040
5041 if (arp_interval && !arp_ip_count) {
5042 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005043 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5044 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 arp_interval = 0;
5046 }
5047
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005048 if (arp_validate) {
5049 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005050 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005051 return -EINVAL;
5052 }
5053 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005054 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005055 return -EINVAL;
5056 }
5057
5058 arp_validate_value = bond_parse_parm(arp_validate,
5059 arp_validate_tbl);
5060 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005061 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005062 arp_validate == NULL ? "NULL" : arp_validate);
5063 return -EINVAL;
5064 }
5065 } else
5066 arp_validate_value = 0;
5067
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005069 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 } else if (arp_interval) {
5071 int i;
5072
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005073 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5074 arp_interval,
5075 arp_validate_tbl[arp_validate_value].modename,
5076 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
5078 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005079 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005081 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Jay Vosburghb8a97872008-06-13 18:12:04 -07005083 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 /* miimon and arp_interval not set, we need one so things
5085 * work as expected, see bonding.txt for details
5086 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005087 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 -07005088 }
5089
5090 if (primary && !USES_PRIMARY(bond_mode)) {
5091 /* currently, using a primary only makes sense
5092 * in active backup, TLB or ALB modes
5093 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005094 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5095 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 primary = NULL;
5097 }
5098
Jiri Pirkoa5499522009-09-25 03:28:09 +00005099 if (primary && primary_reselect) {
5100 primary_reselect_value = bond_parse_parm(primary_reselect,
5101 pri_reselect_tbl);
5102 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005103 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005104 primary_reselect ==
5105 NULL ? "NULL" : primary_reselect);
5106 return -EINVAL;
5107 }
5108 } else {
5109 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5110 }
5111
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005112 if (fail_over_mac) {
5113 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5114 fail_over_mac_tbl);
5115 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005116 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005117 arp_validate == NULL ? "NULL" : arp_validate);
5118 return -EINVAL;
5119 }
5120
5121 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005122 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005123 } else {
5124 fail_over_mac_value = BOND_FOM_NONE;
5125 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005126
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 /* fill params struct with the proper values */
5128 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005129 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005131 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005132 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005134 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 params->updelay = updelay;
5136 params->downdelay = downdelay;
5137 params->use_carrier = use_carrier;
5138 params->lacp_fast = lacp_fast;
5139 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005140 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005141 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005142 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005143 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00005144 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
5146 if (primary) {
5147 strncpy(params->primary, primary, IFNAMSIZ);
5148 params->primary[IFNAMSIZ - 1] = 0;
5149 }
5150
5151 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5152
5153 return 0;
5154}
5155
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005156static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005157static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005158
David S. Millere8a04642008-07-17 00:34:19 -07005159static void bond_set_lockdep_class_one(struct net_device *dev,
5160 struct netdev_queue *txq,
5161 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005162{
5163 lockdep_set_class(&txq->_xmit_lock,
5164 &bonding_netdev_xmit_lock_key);
5165}
5166
5167static void bond_set_lockdep_class(struct net_device *dev)
5168{
David S. Millercf508b12008-07-22 14:16:42 -07005169 lockdep_set_class(&dev->addr_list_lock,
5170 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005171 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005172}
5173
Stephen Hemminger181470f2009-06-12 19:02:52 +00005174/*
5175 * Called from registration process
5176 */
5177static int bond_init(struct net_device *bond_dev)
5178{
5179 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005180 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005181
5182 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5183
5184 bond->wq = create_singlethread_workqueue(bond_dev->name);
5185 if (!bond->wq)
5186 return -ENOMEM;
5187
5188 bond_set_lockdep_class(bond_dev);
5189
5190 netif_carrier_off(bond_dev);
5191
5192 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005193 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005194
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005195 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad2010-04-01 21:22:57 +00005196
5197 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005198 return 0;
5199}
5200
Eric W. Biederman88ead972009-10-29 14:18:25 +00005201static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5202{
5203 if (tb[IFLA_ADDRESS]) {
5204 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5205 return -EINVAL;
5206 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5207 return -EADDRNOTAVAIL;
5208 }
5209 return 0;
5210}
5211
5212static struct rtnl_link_ops bond_link_ops __read_mostly = {
5213 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005214 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005215 .setup = bond_setup,
5216 .validate = bond_validate,
5217};
5218
Mitch Williamsdfe60392005-11-09 10:36:04 -08005219/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005220 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005221 * Caller must NOT hold rtnl_lock; we need to release it here before we
5222 * set up our sysfs entries.
5223 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005224int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005225{
5226 struct net_device *bond_dev;
5227 int res;
5228
5229 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005230
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005231 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5232 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005233 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005234 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005235 rtnl_unlock();
5236 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005237 }
5238
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005239 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005240 bond_dev->rtnl_link_ops = &bond_link_ops;
5241
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005242 if (!name) {
5243 res = dev_alloc_name(bond_dev, "bond%d");
5244 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005245 goto out;
Neil Horman27e6f062010-10-05 03:39:21 +00005246 } else {
5247 /*
5248 * If we're given a name to register
5249 * we need to ensure that its not already
5250 * registered
5251 */
5252 res = -EEXIST;
5253 if (__dev_get_by_name(net, name) != NULL)
5254 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005255 }
5256
Mitch Williamsdfe60392005-11-09 10:36:04 -08005257 res = register_netdevice(bond_dev);
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005258
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005259out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005260 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005261 if (res < 0)
5262 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005263 return res;
5264}
5265
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005266static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005267{
Eric W. Biederman15449742009-11-29 15:46:04 +00005268 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005269
5270 bn->net = net;
5271 INIT_LIST_HEAD(&bn->dev_list);
5272
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005273 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005274
5275 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005276}
5277
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005278static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005279{
Eric W. Biederman15449742009-11-29 15:46:04 +00005280 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005281
5282 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005283}
5284
5285static struct pernet_operations bond_net_ops = {
5286 .init = bond_net_init,
5287 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005288 .id = &bond_net_id,
5289 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005290};
5291
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292static int __init bonding_init(void)
5293{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 int i;
5295 int res;
5296
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005297 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298
Mitch Williamsdfe60392005-11-09 10:36:04 -08005299 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005300 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005301 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Neil Hormane843fa52010-10-13 16:01:50 +00005303#ifdef CONFIG_NET_POLL_CONTROLLER
5304 if (!alloc_cpumask_var(&netpoll_block_tx, GFP_KERNEL)) {
5305 res = -ENOMEM;
5306 goto out;
5307 }
5308#endif
5309
Eric W. Biederman15449742009-11-29 15:46:04 +00005310 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005311 if (res)
5312 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005313
Eric W. Biederman88ead972009-10-29 14:18:25 +00005314 res = rtnl_link_register(&bond_link_ops);
5315 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005316 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005317
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005319 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005320 if (res)
5321 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 }
5323
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005324 res = bond_create_sysfs();
5325 if (res)
5326 goto err;
5327
Neil Hormane843fa52010-10-13 16:01:50 +00005328
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005330 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005331 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005332out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005334err:
5335 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005336err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005337 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005338#ifdef CONFIG_NET_POLL_CONTROLLER
5339 free_cpumask_var(netpoll_block_tx);
5340#endif
Eric W. Biederman88ead972009-10-29 14:18:25 +00005341 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005342
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343}
5344
5345static void __exit bonding_exit(void)
5346{
5347 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005348 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005349 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005351 bond_destroy_sysfs();
5352
Eric W. Biederman88ead972009-10-29 14:18:25 +00005353 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005354 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005355
5356#ifdef CONFIG_NET_POLL_CONTROLLER
5357 free_cpumask_var(netpoll_block_tx);
5358#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359}
5360
5361module_init(bonding_init);
5362module_exit(bonding_exit);
5363MODULE_LICENSE("GPL");
5364MODULE_VERSION(DRV_VERSION);
5365MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5366MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005367MODULE_ALIAS_RTNL_LINK("bond");