blob: ef370c92334150a9f0239f1999b4ee465db1c3fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * originally based on the dummy device.
3 *
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
6 *
7 * bonding.c: an Ethernet Bonding driver
8 *
9 * This is useful to talk to a Cisco EtherChannel compatible equipment:
10 * Cisco 5500
11 * Sun Trunking (Solaris)
12 * Alteon AceDirector Trunks
13 * Linux Bonding
14 * and probably many L2 switches ...
15 *
16 * How it works:
17 * ifconfig bond0 ipaddress netmask up
18 * will setup a network device, with an ip address. No mac address
19 * will be assigned at this time. The hw mac address will come from
20 * the first slave bonded to the channel. All slaves will then use
21 * this hw mac address.
22 *
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
25 *
26 * ifenslave bond0 eth0
27 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
28 * a: be used as initial mac address
29 * b: if a hw mac address already is there, eth0's hw mac address
30 * will then be set from bond0.
31 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Joe Perchesa4aee5c2009-12-13 20:06:07 -080034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/kernel.h>
37#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/types.h>
39#include <linux/fcntl.h>
40#include <linux/interrupt.h>
41#include <linux/ptrace.h>
42#include <linux/ioport.h>
43#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040046#include <linux/tcp.h>
47#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000059#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/errno.h>
61#include <linux/netdevice.h>
WANG Congf6dc31a2010-05-06 00:48:51 -070062#include <linux/netpoll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080064#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/etherdevice.h>
66#include <linux/skbuff.h>
67#include <net/sock.h>
68#include <linux/rtnetlink.h>
69#include <linux/proc_fs.h>
70#include <linux/seq_file.h>
71#include <linux/smp.h>
72#include <linux/if_ether.h>
73#include <net/arp.h>
74#include <linux/mii.h>
75#include <linux/ethtool.h>
76#include <linux/if_vlan.h>
77#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080078#include <linux/jiffies.h>
Neil Hormane843fa52010-10-13 16:01:50 +000079#include <linux/preempt.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040080#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020081#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000082#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include "bonding.h"
84#include "bond_3ad.h"
85#include "bond_alb.h"
86
87/*---------------------------- Module parameters ----------------------------*/
88
89/* monitor all links that often (in milliseconds). <=0 disables monitoring */
90#define BOND_LINK_MON_INTERV 0
91#define BOND_LINK_ARP_INTERV 0
92
93static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +000094static int tx_queues = BOND_DEFAULT_TX_QUEUES;
Moni Shoua7893b242008-05-17 21:10:12 -070095static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080096static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000098static int updelay;
99static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *mode;
102static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000103static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000104static char *lacp_rate;
105static char *ad_select;
106static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000108static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
109static char *arp_validate;
110static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000111static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000112static struct bond_params bonding_defaults;
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000113static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115module_param(max_bonds, int, 0);
116MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000117module_param(tx_queues, int, 0);
118MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Moni Shoua7893b242008-05-17 21:10:12 -0700119module_param(num_grat_arp, int, 0644);
120MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800121module_param(num_unsol_na, int, 0644);
122MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123module_param(miimon, int, 0);
124MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
125module_param(updelay, int, 0);
126MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
127module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800128MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
129 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800131MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
132 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800134MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
135 "1 for active-backup, 2 for balance-xor, "
136 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
137 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138module_param(primary, charp, 0);
139MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000140module_param(primary_reselect, charp, 0);
141MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
142 "once it comes up; "
143 "0 for always (default), "
144 "1 for only if speed of primary is "
145 "better, "
146 "2 for only on active slave "
147 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800149MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
150 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800151module_param(ad_select, charp, 0);
152MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400153module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800154MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
155 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156module_param(arp_interval, int, 0);
157MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
158module_param_array(arp_ip_target, charp, NULL, 0);
159MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700160module_param(arp_validate, charp, 0);
161MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700162module_param(fail_over_mac, charp, 0);
163MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000164module_param(all_slaves_active, int, 0);
165MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
166 "by setting active flag for all slaves. "
167 "0 for never (default), 1 for always.");
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000168module_param(resend_igmp, int, 0);
169MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/*----------------------------- Global variables ----------------------------*/
172
Neil Hormane843fa52010-10-13 16:01:50 +0000173#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +0000174atomic_t netpoll_block_tx = ATOMIC_INIT(0);
Neil Hormane843fa52010-10-13 16:01:50 +0000175#endif
176
Arjan van de Venf71e1302006-03-03 21:33:57 -0500177static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
179
Eric Dumazetf99189b2009-11-17 10:42:49 +0000180int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000182static __be32 arp_target[BOND_MAX_ARP_TARGETS];
183static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000185static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
186static int lacp_fast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800188const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{ "slow", AD_LACP_SLOW},
190{ "fast", AD_LACP_FAST},
191{ NULL, -1},
192};
193
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800194const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{ "balance-rr", BOND_MODE_ROUNDROBIN},
196{ "active-backup", BOND_MODE_ACTIVEBACKUP},
197{ "balance-xor", BOND_MODE_XOR},
198{ "broadcast", BOND_MODE_BROADCAST},
199{ "802.3ad", BOND_MODE_8023AD},
200{ "balance-tlb", BOND_MODE_TLB},
201{ "balance-alb", BOND_MODE_ALB},
202{ NULL, -1},
203};
204
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800205const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400206{ "layer2", BOND_XMIT_POLICY_LAYER2},
207{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800208{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400209{ NULL, -1},
210};
211
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800212const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700213{ "none", BOND_ARP_VALIDATE_NONE},
214{ "active", BOND_ARP_VALIDATE_ACTIVE},
215{ "backup", BOND_ARP_VALIDATE_BACKUP},
216{ "all", BOND_ARP_VALIDATE_ALL},
217{ NULL, -1},
218};
219
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800220const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700221{ "none", BOND_FOM_NONE},
222{ "active", BOND_FOM_ACTIVE},
223{ "follow", BOND_FOM_FOLLOW},
224{ NULL, -1},
225};
226
Jiri Pirkoa5499522009-09-25 03:28:09 +0000227const struct bond_parm_tbl pri_reselect_tbl[] = {
228{ "always", BOND_PRI_RESELECT_ALWAYS},
229{ "better", BOND_PRI_RESELECT_BETTER},
230{ "failure", BOND_PRI_RESELECT_FAILURE},
231{ NULL, -1},
232};
233
Jay Vosburghfd989c82008-11-04 17:51:16 -0800234struct bond_parm_tbl ad_select_tbl[] = {
235{ "stable", BOND_AD_STABLE},
236{ "bandwidth", BOND_AD_BANDWIDTH},
237{ "count", BOND_AD_COUNT},
238{ NULL, -1},
239};
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*-------------------------- Forward declarations ---------------------------*/
242
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400243static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000244static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000245static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*---------------------------- General routines -----------------------------*/
248
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700249static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800251 static const char *names[] = {
252 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
253 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
254 [BOND_MODE_XOR] = "load balancing (xor)",
255 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000256 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800257 [BOND_MODE_TLB] = "transmit load balancing",
258 [BOND_MODE_ALB] = "adaptive load balancing",
259 };
260
261 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800263
264 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267/*---------------------------------- VLAN -----------------------------------*/
268
269/**
270 * bond_add_vlan - add a new vlan id on bond
271 * @bond: bond that got the notification
272 * @vlan_id: the vlan id to add
273 *
274 * Returns -ENOMEM if allocation failed.
275 */
276static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
277{
278 struct vlan_entry *vlan;
279
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800280 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800281 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Brian Haley305d5522008-11-04 17:51:14 -0800283 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000284 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 INIT_LIST_HEAD(&vlan->vlan_list);
288 vlan->vlan_id = vlan_id;
289
290 write_lock_bh(&bond->lock);
291
292 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
293
294 write_unlock_bh(&bond->lock);
295
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800296 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return 0;
299}
300
301/**
302 * bond_del_vlan - delete a vlan id from bond
303 * @bond: bond that got the notification
304 * @vlan_id: the vlan id to delete
305 *
306 * returns -ENODEV if @vlan_id was not found in @bond.
307 */
308static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
309{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700310 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int res = -ENODEV;
312
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800313 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Neil Hormane843fa52010-10-13 16:01:50 +0000315 block_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 write_lock_bh(&bond->lock);
317
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700318 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (vlan->vlan_id == vlan_id) {
320 list_del(&vlan->vlan_list);
321
Holger Eitzenberger58402052008-12-09 23:07:13 -0800322 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800325 pr_debug("removed VLAN ID %d from bond %s\n",
326 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 kfree(vlan);
329
330 if (list_empty(&bond->vlan_list) &&
331 (bond->slave_cnt == 0)) {
332 /* Last VLAN removed and no slaves, so
333 * restore block on adding VLANs. This will
334 * be removed once new slaves that are not
335 * VLAN challenged will be added.
336 */
337 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
338 }
339
340 res = 0;
341 goto out;
342 }
343 }
344
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800345 pr_debug("couldn't find VLAN ID %d in bond %s\n",
346 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348out:
349 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +0000350 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return res;
352}
353
354/**
355 * bond_has_challenged_slaves
356 * @bond: the bond we're working on
357 *
358 * Searches the slave list. Returns 1 if a vlan challenged slave
359 * was found, 0 otherwise.
360 *
361 * Assumes bond->lock is held.
362 */
363static int bond_has_challenged_slaves(struct bonding *bond)
364{
365 struct slave *slave;
366 int i;
367
368 bond_for_each_slave(bond, slave, i) {
369 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800370 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800371 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 1;
373 }
374 }
375
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800376 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 0;
378}
379
380/**
381 * bond_next_vlan - safely skip to the next item in the vlans list.
382 * @bond: the bond we're working on
383 * @curr: item we're advancing from
384 *
385 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
386 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * Caller must hold bond->lock
389 */
390struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
391{
392 struct vlan_entry *next, *last;
393
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000394 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (!curr) {
398 next = list_entry(bond->vlan_list.next,
399 struct vlan_entry, vlan_list);
400 } else {
401 last = list_entry(bond->vlan_list.prev,
402 struct vlan_entry, vlan_list);
403 if (last == curr) {
404 next = list_entry(bond->vlan_list.next,
405 struct vlan_entry, vlan_list);
406 } else {
407 next = list_entry(curr->vlan_list.next,
408 struct vlan_entry, vlan_list);
409 }
410 }
411
412 return next;
413}
414
415/**
416 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000417 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @bond: bond device that got this skb for tx.
419 * @skb: hw accel VLAN tagged skb to transmit
420 * @slave_dev: slave that is supposed to xmit this skbuff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000422int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
423 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Ben Hutchings83874512010-12-13 08:19:28 +0000425 skb->dev = slave_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700427#ifdef CONFIG_NET_POLL_CONTROLLER
428 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
429 struct netpoll *np = bond->dev->npinfo->netpoll;
430 slave_dev->npinfo = bond->dev->npinfo;
WANG Congf6dc31a2010-05-06 00:48:51 -0700431 slave_dev->priv_flags |= IFF_IN_NETPOLL;
Neil Hormanc2355e12010-10-13 16:01:49 +0000432 netpoll_send_skb_on_dev(np, skb, slave_dev);
WANG Congf6dc31a2010-05-06 00:48:51 -0700433 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -0700434 } else
435#endif
436 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 return 0;
439}
440
441/*
442 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
443 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
444 * lock because:
445 * a. This operation is performed in IOCTL context,
446 * b. The operation is protected by the RTNL semaphore in the 8021q code,
447 * c. Holding a lock with BH disabled while directly calling a base driver
448 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000449 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * The design of synchronization/protection for this operation in the 8021q
451 * module is good for one or more VLAN devices over a single physical device
452 * and cannot be extended for a teaming solution like bonding, so there is a
453 * potential race condition here where a net device from the vlan group might
454 * be referenced (either by a base driver or the 8021q code) while it is being
455 * removed from the system. However, it turns out we're not making matters
456 * worse, and if it works for regular VLAN usage it will work here too.
457*/
458
459/**
460 * bond_vlan_rx_register - Propagates registration to slaves
461 * @bond_dev: bonding net device that got called
462 * @grp: vlan group being registered
463 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000464static void bond_vlan_rx_register(struct net_device *bond_dev,
465 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Wang Chen454d7c92008-11-12 23:37:49 -0800467 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct slave *slave;
469 int i;
470
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000471 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 bond->vlgrp = grp;
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000473 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 bond_for_each_slave(bond, slave, i) {
476 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800477 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800480 slave_ops->ndo_vlan_rx_register) {
481 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483 }
484}
485
486/**
487 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
488 * @bond_dev: bonding net device that got called
489 * @vid: vlan id being added
490 */
491static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
492{
Wang Chen454d7c92008-11-12 23:37:49 -0800493 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct slave *slave;
495 int i, res;
496
497 bond_for_each_slave(bond, slave, i) {
498 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800499 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800502 slave_ops->ndo_vlan_rx_add_vid) {
503 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
506
507 res = bond_add_vlan(bond, vid);
508 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800509 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 bond_dev->name, vid);
511 }
512}
513
514/**
515 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
516 * @bond_dev: bonding net device that got called
517 * @vid: vlan id being removed
518 */
519static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
520{
Wang Chen454d7c92008-11-12 23:37:49 -0800521 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct slave *slave;
523 struct net_device *vlan_dev;
524 int i, res;
525
526 bond_for_each_slave(bond, slave, i) {
527 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800528 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800531 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* Save and then restore vlan_dev in the grp array,
533 * since the slave's driver might clear it.
534 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800535 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800536 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800537 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539 }
540
541 res = bond_del_vlan(bond, vid);
542 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800543 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 bond_dev->name, vid);
545 }
546}
547
548static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
549{
550 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800551 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Jay Vosburghf35188f2010-07-21 12:14:47 +0000553 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800557 slave_ops->ndo_vlan_rx_register)
558 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800561 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800564 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
565 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000568static void bond_del_vlans_from_slave(struct bonding *bond,
569 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct vlan_entry *vlan;
573 struct net_device *vlan_dev;
574
Jay Vosburghf35188f2010-07-21 12:14:47 +0000575 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000576 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800579 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000583 if (!vlan->vlan_id)
584 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Save and then restore vlan_dev in the grp array,
586 * since the slave's driver might clear it.
587 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800590 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593unreg:
594 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800595 slave_ops->ndo_vlan_rx_register)
596 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599/*------------------------------- Link status -------------------------------*/
600
601/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800602 * Set the carrier state for the master according to the state of its
603 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
604 * do special 802.3ad magic.
605 *
606 * Returns zero if carrier state does not change, nonzero if it does.
607 */
608static int bond_set_carrier(struct bonding *bond)
609{
610 struct slave *slave;
611 int i;
612
613 if (bond->slave_cnt == 0)
614 goto down;
615
616 if (bond->params.mode == BOND_MODE_8023AD)
617 return bond_3ad_set_carrier(bond);
618
619 bond_for_each_slave(bond, slave, i) {
620 if (slave->link == BOND_LINK_UP) {
621 if (!netif_carrier_ok(bond->dev)) {
622 netif_carrier_on(bond->dev);
623 return 1;
624 }
625 return 0;
626 }
627 }
628
629down:
630 if (netif_carrier_ok(bond->dev)) {
631 netif_carrier_off(bond->dev);
632 return 1;
633 }
634 return 0;
635}
636
637/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * Get link speed and duplex from the slave's base driver
639 * using ethtool. If for some reason the call fails or the
640 * values are invalid, fake speed and duplex to 100/Full
641 * and return error.
642 */
643static int bond_update_speed_duplex(struct slave *slave)
644{
645 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700647 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 /* Fake speed and duplex */
650 slave->speed = SPEED_100;
651 slave->duplex = DUPLEX_FULL;
652
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700653 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700656 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
657 if (res < 0)
658 return -1;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 switch (etool.speed) {
661 case SPEED_10:
662 case SPEED_100:
663 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700664 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666 default:
667 return -1;
668 }
669
670 switch (etool.duplex) {
671 case DUPLEX_FULL:
672 case DUPLEX_HALF:
673 break;
674 default:
675 return -1;
676 }
677
678 slave->speed = etool.speed;
679 slave->duplex = etool.duplex;
680
681 return 0;
682}
683
684/*
685 * if <dev> supports MII link status reporting, check its link status.
686 *
687 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000688 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
690 * Return either BMSR_LSTATUS, meaning that the link is up (or we
691 * can't tell and just pretend it is), or 0, meaning that the link is
692 * down.
693 *
694 * If reporting is non-zero, instead of faking link up, return -1 if
695 * both ETHTOOL and MII ioctls fail (meaning the device does not
696 * support them). If use_carrier is set, return whatever it says.
697 * It'd be nice if there was a good way to tell if a driver supports
698 * netif_carrier, but there really isn't.
699 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000700static int bond_check_dev_link(struct bonding *bond,
701 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800703 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700704 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct ifreq ifr;
706 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Petri Gynther6c988852009-08-28 12:05:15 +0000708 if (!reporting && !netif_running(slave_dev))
709 return 0;
710
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800711 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Jiri Pirko29112f42009-04-24 01:58:23 +0000714 /* Try to get link status using Ethtool first. */
715 if (slave_dev->ethtool_ops) {
716 if (slave_dev->ethtool_ops->get_link) {
717 u32 link;
718
719 link = slave_dev->ethtool_ops->get_link(slave_dev);
720
721 return link ? BMSR_LSTATUS : 0;
722 }
723 }
724
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000725 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800726 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (ioctl) {
728 /* TODO: set pointer to correct ioctl on a per team member */
729 /* bases to make this more efficient. that is, once */
730 /* we determine the correct ioctl, we will always */
731 /* call it and not the others for that team */
732 /* member. */
733
734 /*
735 * We cannot assume that SIOCGMIIPHY will also read a
736 * register; not all network drivers (e.g., e100)
737 * support that.
738 */
739
740 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
741 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
742 mii = if_mii(&ifr);
743 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
744 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000745 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
746 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748 }
749
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700750 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700752 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * cannot report link status). If not reporting, pretend
754 * we're ok.
755 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000756 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/*----------------------------- Multicast list ------------------------------*/
760
761/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * Push the promiscuity flag down to appropriate slaves
763 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700764static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700766 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (USES_PRIMARY(bond->params.mode)) {
768 /* write lock already acquired */
769 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700770 err = dev_set_promiscuity(bond->curr_active_slave->dev,
771 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 } else {
774 struct slave *slave;
775 int i;
776 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700777 err = dev_set_promiscuity(slave->dev, inc);
778 if (err)
779 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700782 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785/*
786 * Push the allmulti flag down to all slaves
787 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700788static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700790 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (USES_PRIMARY(bond->params.mode)) {
792 /* write lock already acquired */
793 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700794 err = dev_set_allmulti(bond->curr_active_slave->dev,
795 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 } else {
798 struct slave *slave;
799 int i;
800 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700801 err = dev_set_allmulti(slave->dev, inc);
802 if (err)
803 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700806 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809/*
810 * Add a Multicast address to slaves
811 * according to mode
812 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000813static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 if (USES_PRIMARY(bond->params.mode)) {
816 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000817 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000818 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 } else {
820 struct slave *slave;
821 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000822
823 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000824 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826}
827
828/*
829 * Remove a multicast address from slave
830 * according to mode
831 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000832static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 if (USES_PRIMARY(bond->params.mode)) {
835 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000836 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000837 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 } else {
839 struct slave *slave;
840 int i;
841 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000842 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 }
845}
846
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800847
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000848static void __bond_resend_igmp_join_requests(struct net_device *dev)
849{
850 struct in_device *in_dev;
851 struct ip_mc_list *im;
852
853 rcu_read_lock();
854 in_dev = __in_dev_get_rcu(dev);
855 if (in_dev) {
Eric Dumazet3006bc32010-11-18 09:30:42 -0800856 read_lock(&in_dev->mc_list_lock);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000857 for (im = in_dev->mc_list; im; im = im->next)
858 ip_mc_rejoin_group(im);
Eric Dumazet3006bc32010-11-18 09:30:42 -0800859 read_unlock(&in_dev->mc_list_lock);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000860 }
861
862 rcu_read_unlock();
863}
864
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800865/*
866 * Retrieve the list of registered multicast addresses for the bonding
867 * device and retransmit an IGMP JOIN request to the current active
868 * slave.
869 */
870static void bond_resend_igmp_join_requests(struct bonding *bond)
871{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000872 struct net_device *vlan_dev;
873 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800874
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000875 read_lock(&bond->lock);
876
877 /* rejoin all groups on bond device */
878 __bond_resend_igmp_join_requests(bond->dev);
879
880 /* rejoin all groups on vlan devices */
881 if (bond->vlgrp) {
882 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
883 vlan_dev = vlan_group_get_device(bond->vlgrp,
884 vlan->vlan_id);
885 if (vlan_dev)
886 __bond_resend_igmp_join_requests(vlan_dev);
887 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800888 }
889
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000890 if (--bond->igmp_retrans > 0)
891 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
892
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000893 read_unlock(&bond->lock);
894}
895
stephen hemminger379b7382010-10-15 11:02:56 +0000896static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000897{
898 struct bonding *bond = container_of(work, struct bonding,
899 mcast_work.work);
900 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * flush all members of flush->mc_list from device dev->mc_list
905 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000906static void bond_mc_list_flush(struct net_device *bond_dev,
907 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Wang Chen454d7c92008-11-12 23:37:49 -0800909 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000910 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Jiri Pirko22bedad32010-04-01 21:22:57 +0000912 netdev_for_each_mc_addr(ha, bond_dev)
913 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if (bond->params.mode == BOND_MODE_8023AD) {
916 /* del lacpdu mc addr from mc list */
917 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
918
Jiri Pirko22bedad32010-04-01 21:22:57 +0000919 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921}
922
923/*--------------------------- Active slave change ---------------------------*/
924
925/*
926 * Update the mc list and multicast-related flags for the new and
927 * old active slaves (if any) according to the multicast mode, and
928 * promiscuous flags unconditionally.
929 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000930static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
931 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000933 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000935 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* nothing to do - mc list is already up-to-date on
937 * all slaves
938 */
939 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000942 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000945 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Jiri Pirko22bedad32010-04-01 21:22:57 +0000948 netdev_for_each_mc_addr(ha, bond->dev)
949 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
952 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700953 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000954 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000957 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jiri Pirko22bedad32010-04-01 21:22:57 +0000960 netdev_for_each_mc_addr(ha, bond->dev)
961 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963}
964
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700965/*
966 * bond_do_fail_over_mac
967 *
968 * Perform special MAC address swapping for fail_over_mac settings
969 *
970 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
971 */
972static void bond_do_fail_over_mac(struct bonding *bond,
973 struct slave *new_active,
974 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000975 __releases(&bond->curr_slave_lock)
976 __releases(&bond->lock)
977 __acquires(&bond->lock)
978 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700979{
980 u8 tmp_mac[ETH_ALEN];
981 struct sockaddr saddr;
982 int rv;
983
984 switch (bond->params.fail_over_mac) {
985 case BOND_FOM_ACTIVE:
986 if (new_active)
987 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
988 new_active->dev->addr_len);
989 break;
990 case BOND_FOM_FOLLOW:
991 /*
992 * if new_active && old_active, swap them
993 * if just old_active, do nothing (going to no active slave)
994 * if just new_active, set new_active to bond's MAC
995 */
996 if (!new_active)
997 return;
998
999 write_unlock_bh(&bond->curr_slave_lock);
1000 read_unlock(&bond->lock);
1001
1002 if (old_active) {
1003 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1004 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1005 ETH_ALEN);
1006 saddr.sa_family = new_active->dev->type;
1007 } else {
1008 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1009 saddr.sa_family = bond->dev->type;
1010 }
1011
1012 rv = dev_set_mac_address(new_active->dev, &saddr);
1013 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001014 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001015 bond->dev->name, -rv, new_active->dev->name);
1016 goto out;
1017 }
1018
1019 if (!old_active)
1020 goto out;
1021
1022 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1023 saddr.sa_family = old_active->dev->type;
1024
1025 rv = dev_set_mac_address(old_active->dev, &saddr);
1026 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001027 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001028 bond->dev->name, -rv, new_active->dev->name);
1029out:
1030 read_lock(&bond->lock);
1031 write_lock_bh(&bond->curr_slave_lock);
1032 break;
1033 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001034 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001035 bond->dev->name, bond->params.fail_over_mac);
1036 break;
1037 }
1038
1039}
1040
Jiri Pirkoa5499522009-09-25 03:28:09 +00001041static bool bond_should_change_active(struct bonding *bond)
1042{
1043 struct slave *prim = bond->primary_slave;
1044 struct slave *curr = bond->curr_active_slave;
1045
1046 if (!prim || !curr || curr->link != BOND_LINK_UP)
1047 return true;
1048 if (bond->force_primary) {
1049 bond->force_primary = false;
1050 return true;
1051 }
1052 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1053 (prim->speed < curr->speed ||
1054 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1055 return false;
1056 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1057 return false;
1058 return true;
1059}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061/**
1062 * find_best_interface - select the best available slave to be the active one
1063 * @bond: our bonding struct
1064 *
1065 * Warning: Caller must hold curr_slave_lock for writing.
1066 */
1067static struct slave *bond_find_best_slave(struct bonding *bond)
1068{
1069 struct slave *new_active, *old_active;
1070 struct slave *bestslave = NULL;
1071 int mintime = bond->params.updelay;
1072 int i;
1073
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001074 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001077 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001079 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 }
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001084 bond->primary_slave->link == BOND_LINK_UP &&
1085 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 new_active = bond->primary_slave;
1087 }
1088
1089 /* remember where to stop iterating over the slaves */
1090 old_active = new_active;
1091
1092 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001093 if (new_active->link == BOND_LINK_UP) {
1094 return new_active;
1095 } else if (new_active->link == BOND_LINK_BACK &&
1096 IS_UP(new_active->dev)) {
1097 /* link up, but waiting for stabilization */
1098 if (new_active->delay < mintime) {
1099 mintime = new_active->delay;
1100 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 }
1103 }
1104
1105 return bestslave;
1106}
1107
1108/**
1109 * change_active_interface - change the active slave into the specified one
1110 * @bond: our bonding struct
1111 * @new: the new slave to make the active one
1112 *
1113 * Set the new slave to the bond's settings and unset them on the old
1114 * curr_active_slave.
1115 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1116 *
1117 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1118 * because it is apparently the best available slave we have, even though its
1119 * updelay hasn't timed out yet.
1120 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001121 * If new_active is not NULL, caller must hold bond->lock for read and
1122 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001124void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 struct slave *old_active = bond->curr_active_slave;
1127
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001128 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001132 new_active->jiffies = jiffies;
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (new_active->link == BOND_LINK_BACK) {
1135 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001136 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1137 bond->dev->name, new_active->dev->name,
1138 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
1141 new_active->delay = 0;
1142 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001144 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Holger Eitzenberger58402052008-12-09 23:07:13 -08001147 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 } else {
1150 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001151 pr_info("%s: making interface %s the new active one.\n",
1152 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154 }
1155 }
1156
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001157 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Holger Eitzenberger58402052008-12-09 23:07:13 -08001160 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001162 if (old_active)
1163 bond_set_slave_inactive_flags(old_active);
1164 if (new_active)
1165 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 } else {
1167 bond->curr_active_slave = new_active;
1168 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001169
1170 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001171 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001172 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001173
1174 if (new_active) {
1175 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001176
Or Gerlitz709f8a42008-06-13 18:12:01 -07001177 if (bond->params.fail_over_mac)
1178 bond_do_fail_over_mac(bond, new_active,
1179 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001180
Or Gerlitz709f8a42008-06-13 18:12:01 -07001181 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001182 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001183
Brian Haley305d5522008-11-04 17:51:14 -08001184 bond->send_unsol_na = bond->params.num_unsol_na;
1185 bond_send_unsolicited_na(bond);
1186
Or Gerlitz01f31092008-06-13 18:12:02 -07001187 write_unlock_bh(&bond->curr_slave_lock);
1188 read_unlock(&bond->lock);
1189
Moni Shoua75c78502009-09-15 02:37:40 -07001190 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001191
1192 read_lock(&bond->lock);
1193 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001194 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001195 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001196
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001197 /* resend IGMP joins since active slave has changed or
1198 * all were sent on curr_active_slave */
1199 if ((USES_PRIMARY(bond->params.mode) && new_active) ||
1200 bond->params.mode == BOND_MODE_ROUNDROBIN) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001201 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001202 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
1206/**
1207 * bond_select_active_slave - select a new active slave, if needed
1208 * @bond: our bonding struct
1209 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001210 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 * - The old curr_active_slave has been released or lost its link.
1212 * - The primary_slave has got its link back.
1213 * - A slave has got its link back and there's no old curr_active_slave.
1214 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001215 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001217void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001220 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 best_slave = bond_find_best_slave(bond);
1223 if (best_slave != bond->curr_active_slave) {
1224 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001225 rv = bond_set_carrier(bond);
1226 if (!rv)
1227 return;
1228
1229 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001230 pr_info("%s: first active interface up!\n",
1231 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001232 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001233 pr_info("%s: now running without any active interface !\n",
1234 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237}
1238
1239/*--------------------------- slave list handling ---------------------------*/
1240
1241/*
1242 * This function attaches the slave to the end of list.
1243 *
1244 * bond->lock held for writing by caller.
1245 */
1246static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1247{
1248 if (bond->first_slave == NULL) { /* attaching the first slave */
1249 new_slave->next = new_slave;
1250 new_slave->prev = new_slave;
1251 bond->first_slave = new_slave;
1252 } else {
1253 new_slave->next = bond->first_slave;
1254 new_slave->prev = bond->first_slave->prev;
1255 new_slave->next->prev = new_slave;
1256 new_slave->prev->next = new_slave;
1257 }
1258
1259 bond->slave_cnt++;
1260}
1261
1262/*
1263 * This function detaches the slave from the list.
1264 * WARNING: no check is made to verify if the slave effectively
1265 * belongs to <bond>.
1266 * Nothing is freed on return, structures are just unchained.
1267 * If any slave pointer in bond was pointing to <slave>,
1268 * it should be changed by the calling function.
1269 *
1270 * bond->lock held for writing by caller.
1271 */
1272static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1273{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001274 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001277 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 if (bond->first_slave == slave) { /* slave is the first slave */
1281 if (bond->slave_cnt > 1) { /* there are more slave */
1282 bond->first_slave = slave->next;
1283 } else {
1284 bond->first_slave = NULL; /* slave was the last one */
1285 }
1286 }
1287
1288 slave->next = NULL;
1289 slave->prev = NULL;
1290 bond->slave_cnt--;
1291}
1292
WANG Congf6dc31a2010-05-06 00:48:51 -07001293#ifdef CONFIG_NET_POLL_CONTROLLER
1294/*
1295 * You must hold read lock on bond->lock before calling this.
1296 */
1297static bool slaves_support_netpoll(struct net_device *bond_dev)
1298{
1299 struct bonding *bond = netdev_priv(bond_dev);
1300 struct slave *slave;
1301 int i = 0;
1302 bool ret = true;
1303
1304 bond_for_each_slave(bond, slave, i) {
1305 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1306 !slave->dev->netdev_ops->ndo_poll_controller)
1307 ret = false;
1308 }
1309 return i != 0 && ret;
1310}
1311
1312static void bond_poll_controller(struct net_device *bond_dev)
1313{
Neil Hormanc2355e12010-10-13 16:01:49 +00001314 struct bonding *bond = netdev_priv(bond_dev);
1315 struct slave *slave;
1316 int i;
1317
1318 bond_for_each_slave(bond, slave, i) {
1319 if (slave->dev && IS_UP(slave->dev))
1320 netpoll_poll_dev(slave->dev);
1321 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001322}
1323
1324static void bond_netpoll_cleanup(struct net_device *bond_dev)
1325{
1326 struct bonding *bond = netdev_priv(bond_dev);
1327 struct slave *slave;
1328 const struct net_device_ops *ops;
1329 int i;
1330
1331 read_lock(&bond->lock);
1332 bond_dev->npinfo = NULL;
1333 bond_for_each_slave(bond, slave, i) {
1334 if (slave->dev) {
1335 ops = slave->dev->netdev_ops;
1336 if (ops->ndo_netpoll_cleanup)
1337 ops->ndo_netpoll_cleanup(slave->dev);
1338 else
1339 slave->dev->npinfo = NULL;
1340 }
1341 }
1342 read_unlock(&bond->lock);
1343}
1344
1345#else
1346
1347static void bond_netpoll_cleanup(struct net_device *bond_dev)
1348{
1349}
1350
1351#endif
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353/*---------------------------------- IOCTL ----------------------------------*/
1354
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001355static int bond_sethwaddr(struct net_device *bond_dev,
1356 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001358 pr_debug("bond_dev=%p\n", bond_dev);
1359 pr_debug("slave_dev=%p\n", slave_dev);
1360 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1362 return 0;
1363}
1364
Herbert Xu7f353bf2007-08-10 15:47:58 -07001365#define BOND_VLAN_FEATURES \
1366 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1367 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001368
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001369/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001370 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001371 * feature bits are managed elsewhere, so preserve those feature bits
1372 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001373 */
1374static int bond_compute_features(struct bonding *bond)
1375{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001376 struct slave *slave;
1377 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001378 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001379 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001380 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1381 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001382 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001383
Herbert Xu7f353bf2007-08-10 15:47:58 -07001384 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001385 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1386
1387 if (!bond->first_slave)
1388 goto done;
1389
1390 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001391
Jay Vosburgh278339a2009-08-28 12:05:12 +00001392 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001393 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001394 features = netdev_increment_features(features,
1395 slave->dev->features,
1396 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001397 vlan_features = netdev_increment_features(vlan_features,
1398 slave->dev->vlan_features,
1399 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001400 if (slave->dev->hard_header_len > max_hard_header_len)
1401 max_hard_header_len = slave->dev->hard_header_len;
1402 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001403
Herbert Xub63365a2008-10-23 01:11:29 -07001404done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001405 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001406 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001407 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001408 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001409
1410 return 0;
1411}
1412
Moni Shoua872254d2007-10-09 19:43:38 -07001413static void bond_setup_by_slave(struct net_device *bond_dev,
1414 struct net_device *slave_dev)
1415{
Wang Chen454d7c92008-11-12 23:37:49 -08001416 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001417
Stephen Hemminger00829822008-11-20 20:14:53 -08001418 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001419
1420 bond_dev->type = slave_dev->type;
1421 bond_dev->hard_header_len = slave_dev->hard_header_len;
1422 bond_dev->addr_len = slave_dev->addr_len;
1423
1424 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1425 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001426 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001427}
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001430int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Wang Chen454d7c92008-11-12 23:37:49 -08001432 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001433 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001435 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 struct sockaddr addr;
1437 int link_reporting;
1438 int old_features = bond_dev->features;
1439 int res = 0;
1440
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001441 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001442 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001443 pr_warning("%s: Warning: no link monitoring support for %s\n",
1444 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
1446
1447 /* bond must be initialized by bond_open() before enslaving */
1448 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001449 pr_warning("%s: master_dev is not up in bond_enslave\n",
1450 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
1453 /* already enslaved */
1454 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001455 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return -EBUSY;
1457 }
1458
1459 /* vlan challenged mutual exclusion */
1460 /* no need to lock since we're protected by rtnl_lock */
1461 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001462 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001463 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001464 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1465 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return -EPERM;
1467 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001468 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1469 bond_dev->name, slave_dev->name,
1470 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1472 }
1473 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001474 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (bond->slave_cnt == 0) {
1476 /* First slave, and it is not VLAN challenged,
1477 * so remove the block of adding VLANs over the bond.
1478 */
1479 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1480 }
1481 }
1482
Jay Vosburgh217df672005-09-26 16:11:50 -07001483 /*
1484 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001485 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001486 * the current ifenslave will set the interface down prior to
1487 * enslaving it; the old ifenslave will not.
1488 */
1489 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001490 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001491 slave_dev->name);
1492 res = -EPERM;
1493 goto err_undo_flags;
1494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Moni Shoua872254d2007-10-09 19:43:38 -07001496 /* set bonding device ether type by slave - bonding netdevices are
1497 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1498 * there is a need to override some of the type dependent attribs/funcs.
1499 *
1500 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1501 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1502 */
1503 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001504 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001505 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001506 bond_dev->name,
1507 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001508
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001509 res = netdev_bonding_change(bond_dev,
1510 NETDEV_PRE_TYPE_CHANGE);
1511 res = notifier_to_errno(res);
1512 if (res) {
1513 pr_err("%s: refused to change device type\n",
1514 bond_dev->name);
1515 res = -EBUSY;
1516 goto err_undo_flags;
1517 }
Moni Shoua75c78502009-09-15 02:37:40 -07001518
Jiri Pirko32a806c2010-03-19 04:00:23 +00001519 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001520 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001521 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001522
Moni Shouae36b9d12009-07-15 04:56:31 +00001523 if (slave_dev->type != ARPHRD_ETHER)
1524 bond_setup_by_slave(bond_dev, slave_dev);
1525 else
1526 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001527
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001528 netdev_bonding_change(bond_dev,
1529 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001530 }
Moni Shoua872254d2007-10-09 19:43:38 -07001531 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001532 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1533 slave_dev->name,
1534 slave_dev->type, bond_dev->type);
1535 res = -EINVAL;
1536 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001537 }
1538
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001539 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001540 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001541 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1542 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001543 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1544 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001545 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",
1546 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001547 res = -EOPNOTSUPP;
1548 goto err_undo_flags;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
1551
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001552 /* If this is the first slave, then we need to set the master's hardware
1553 * address to be the same as the slave's. */
David Strandd13a2cb2010-12-01 11:43:08 -08001554 if (is_zero_ether_addr(bond->dev->dev_addr))
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001555 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1556 slave_dev->addr_len);
1557
1558
Joe Jin243cb4e2007-02-06 14:16:40 -08001559 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (!new_slave) {
1561 res = -ENOMEM;
1562 goto err_undo_flags;
1563 }
1564
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001565 /*
1566 * Set the new_slave's queue_id to be zero. Queue ID mapping
1567 * is set via sysfs or module option if desired.
1568 */
1569 new_slave->queue_id = 0;
1570
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001571 /* Save slave's original mtu and then set it to match the bond */
1572 new_slave->original_mtu = slave_dev->mtu;
1573 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1574 if (res) {
1575 pr_debug("Error %d calling dev_set_mtu\n", res);
1576 goto err_free;
1577 }
1578
Jay Vosburgh217df672005-09-26 16:11:50 -07001579 /*
1580 * Save slave's original ("permanent") mac address for modes
1581 * that need it, and for restoring it upon release, and then
1582 * set it to the master's address
1583 */
1584 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Jay Vosburghdd957c52007-10-09 19:57:24 -07001586 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001587 /*
1588 * Set slave to master's mac address. The application already
1589 * set the master's mac address to that of the first slave
1590 */
1591 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1592 addr.sa_family = slave_dev->type;
1593 res = dev_set_mac_address(slave_dev, &addr);
1594 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001595 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001596 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001597 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001600 res = netdev_set_master(slave_dev, bond_dev);
1601 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001602 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001603 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001604 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001605 /* open the slave since the application closed it */
1606 res = dev_open(slave_dev);
1607 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001608 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001609 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 }
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001613 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Holger Eitzenberger58402052008-12-09 23:07:13 -08001615 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 /* bond_alb_init_slave() must be called before all other stages since
1617 * it might fail and we do not want to have to undo everything
1618 */
1619 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001620 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001621 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
1623
1624 /* If the mode USES_PRIMARY, then the new slave gets the
1625 * master's promisc (and mc) settings only if it becomes the
1626 * curr_active_slave, and that is taken care of later when calling
1627 * bond_change_active()
1628 */
1629 if (!USES_PRIMARY(bond->params.mode)) {
1630 /* set promiscuity level to new slave */
1631 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001632 res = dev_set_promiscuity(slave_dev, 1);
1633 if (res)
1634 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
1636
1637 /* set allmulti level to new slave */
1638 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001639 res = dev_set_allmulti(slave_dev, 1);
1640 if (res)
1641 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643
David S. Millerb9e40852008-07-15 00:15:08 -07001644 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001646 netdev_for_each_mc_addr(ha, bond_dev)
1647 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001648 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
1651 if (bond->params.mode == BOND_MODE_8023AD) {
1652 /* add lacpdu mc addr to mc list */
1653 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1654
Jiri Pirko22bedad32010-04-01 21:22:57 +00001655 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657
1658 bond_add_vlans_on_slave(bond, slave_dev);
1659
1660 write_lock_bh(&bond->lock);
1661
1662 bond_attach_slave(bond, new_slave);
1663
1664 new_slave->delay = 0;
1665 new_slave->link_failure_count = 0;
1666
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001667 bond_compute_features(bond);
1668
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001669 write_unlock_bh(&bond->lock);
1670
1671 read_lock(&bond->lock);
1672
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001673 new_slave->last_arp_rx = jiffies;
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (bond->params.miimon && !bond->params.use_carrier) {
1676 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1677
1678 if ((link_reporting == -1) && !bond->params.arp_interval) {
1679 /*
1680 * miimon is set but a bonded network driver
1681 * does not support ETHTOOL/MII and
1682 * arp_interval is not set. Note: if
1683 * use_carrier is enabled, we will never go
1684 * here (because netif_carrier is always
1685 * supported); thus, we don't need to change
1686 * the messages for netif_carrier.
1687 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001688 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 -08001689 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 } else if (link_reporting == -1) {
1691 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001692 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",
1693 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
1695 }
1696
1697 /* check for initial state */
1698 if (!bond->params.miimon ||
1699 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1700 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001701 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 new_slave->link = BOND_LINK_BACK;
1703 new_slave->delay = bond->params.updelay;
1704 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001705 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 new_slave->link = BOND_LINK_UP;
1707 }
1708 new_slave->jiffies = jiffies;
1709 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001710 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 new_slave->link = BOND_LINK_DOWN;
1712 }
1713
1714 if (bond_update_speed_duplex(new_slave) &&
1715 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001716 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1717 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001720 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1721 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723 }
1724
1725 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1726 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001727 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001729 bond->force_primary = true;
1730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001733 write_lock_bh(&bond->curr_slave_lock);
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 switch (bond->params.mode) {
1736 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001737 bond_set_slave_inactive_flags(new_slave);
1738 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 break;
1740 case BOND_MODE_8023AD:
1741 /* in 802.3ad mode, the internal mechanism
1742 * will activate the slaves in the selected
1743 * aggregator
1744 */
1745 bond_set_slave_inactive_flags(new_slave);
1746 /* if this is the first slave */
1747 if (bond->slave_cnt == 1) {
1748 SLAVE_AD_INFO(new_slave).id = 1;
1749 /* Initialize AD with the number of times that the AD timer is called in 1 second
1750 * can be called only after the mac address of the bond is set
1751 */
1752 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1753 bond->params.lacp_fast);
1754 } else {
1755 SLAVE_AD_INFO(new_slave).id =
1756 SLAVE_AD_INFO(new_slave->prev).id + 1;
1757 }
1758
1759 bond_3ad_bind_slave(new_slave);
1760 break;
1761 case BOND_MODE_TLB:
1762 case BOND_MODE_ALB:
1763 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001764 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001765 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 break;
1767 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001768 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 /* always active in trunk mode */
1771 new_slave->state = BOND_STATE_ACTIVE;
1772
1773 /* In trunking mode there is little meaning to curr_active_slave
1774 * anyway (it holds no special properties of the bond device),
1775 * so we can change it without calling change_active_interface()
1776 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001777 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 break;
1781 } /* switch(bond_mode) */
1782
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001783 write_unlock_bh(&bond->curr_slave_lock);
1784
Jay Vosburghff59c452006-03-27 13:27:43 -08001785 bond_set_carrier(bond);
1786
WANG Congf6dc31a2010-05-06 00:48:51 -07001787#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Horman45b0cb82010-10-13 16:01:53 +00001788 if (slaves_support_netpoll(bond_dev)) {
1789 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1790 if (bond_dev->npinfo)
1791 slave_dev->npinfo = bond_dev->npinfo;
1792 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001793 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Neil Horman45b0cb82010-10-13 16:01:53 +00001794 pr_info("New slave device %s does not support netpoll\n",
1795 slave_dev->name);
1796 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
WANG Congf6dc31a2010-05-06 00:48:51 -07001797 }
1798#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001799 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001801 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1802 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001803 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001804
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001805 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1806 bond_dev->name, slave_dev->name,
1807 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1808 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810 /* enslave is successful */
1811 return 0;
1812
1813/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814err_close:
1815 dev_close(slave_dev);
1816
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001817err_unset_master:
1818 netdev_set_master(slave_dev, NULL);
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001821 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001822 /* XXX TODO - fom follow mode needs to change master's
1823 * MAC if this slave's MAC is in use by the bond, or at
1824 * least print a warning.
1825 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001826 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1827 addr.sa_family = slave_dev->type;
1828 dev_set_mac_address(slave_dev, &addr);
1829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001831err_restore_mtu:
1832 dev_set_mtu(slave_dev, new_slave->original_mtu);
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834err_free:
1835 kfree(new_slave);
1836
1837err_undo_flags:
1838 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return res;
1841}
1842
1843/*
1844 * Try to release the slave device <slave> from the bond device <master>
1845 * It is legal to access curr_active_slave without a lock because all the function
1846 * is write-locked.
1847 *
1848 * The rules for slave state should be:
1849 * for Active/Backup:
1850 * Active stays on all backups go down
1851 * for Bonded connections:
1852 * The first up interface should be left on and all others downed.
1853 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001854int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
Wang Chen454d7c92008-11-12 23:37:49 -08001856 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 struct slave *slave, *oldcurrent;
1858 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /* slave is not a slave or master is not master of this slave */
1861 if (!(slave_dev->flags & IFF_SLAVE) ||
1862 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001863 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 bond_dev->name, slave_dev->name);
1865 return -EINVAL;
1866 }
1867
Neil Hormane843fa52010-10-13 16:01:50 +00001868 block_netpoll_tx();
WANG Congf6dc31a2010-05-06 00:48:51 -07001869 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 write_lock_bh(&bond->lock);
1871
1872 slave = bond_get_slave_by_dev(bond, slave_dev);
1873 if (!slave) {
1874 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001875 pr_info("%s: %s not enslaved\n",
1876 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001877 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001878 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return -EINVAL;
1880 }
1881
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001882 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001883 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1884 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001885 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",
1886 bond_dev->name, slave_dev->name,
1887 slave->perm_hwaddr,
1888 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
1890
1891 /* Inform AD package of unbinding of slave. */
1892 if (bond->params.mode == BOND_MODE_8023AD) {
1893 /* must be called before the slave is
1894 * detached from the list
1895 */
1896 bond_3ad_unbind_slave(slave);
1897 }
1898
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001899 pr_info("%s: releasing %s interface %s\n",
1900 bond_dev->name,
1901 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1902 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 oldcurrent = bond->curr_active_slave;
1905
1906 bond->current_arp_slave = NULL;
1907
1908 /* release the slave from its bond */
1909 bond_detach_slave(bond, slave);
1910
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001911 bond_compute_features(bond);
1912
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001913 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001916 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Holger Eitzenberger58402052008-12-09 23:07:13 -08001919 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 /* Must be called only after the slave has been
1921 * detached from the list and the curr_active_slave
1922 * has been cleared (if our_slave == old_current),
1923 * but before a new active slave is selected.
1924 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001925 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001927 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
1929
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001930 if (oldcurrent == slave) {
1931 /*
1932 * Note that we hold RTNL over this sequence, so there
1933 * is no concern that another slave add/remove event
1934 * will interfere.
1935 */
1936 write_unlock_bh(&bond->lock);
1937 read_lock(&bond->lock);
1938 write_lock_bh(&bond->curr_slave_lock);
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 bond_select_active_slave(bond);
1941
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001942 write_unlock_bh(&bond->curr_slave_lock);
1943 read_unlock(&bond->lock);
1944 write_lock_bh(&bond->lock);
1945 }
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001948 bond_set_carrier(bond);
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 /* if the last slave was removed, zero the mac address
1951 * of the master so it will be set by the application
1952 * to the mac address of the first slave
1953 */
1954 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1955
Jay Vosburghf35188f2010-07-21 12:14:47 +00001956 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1958 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001959 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1960 bond_dev->name, bond_dev->name);
1961 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1962 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1965 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001966 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1967 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1969 }
1970
1971 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001972 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001974 /* must do this from outside any spinlocks */
1975 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 bond_del_vlans_from_slave(bond, slave_dev);
1978
1979 /* If the mode USES_PRIMARY, then we should only remove its
1980 * promisc and mc settings if it was the curr_active_slave, but that was
1981 * already taken care of above when we detached the slave
1982 */
1983 if (!USES_PRIMARY(bond->params.mode)) {
1984 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001985 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001989 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001993 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001995 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997
1998 netdev_set_master(slave_dev, NULL);
1999
WANG Congf6dc31a2010-05-06 00:48:51 -07002000#ifdef CONFIG_NET_POLL_CONTROLLER
2001 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00002002
Neil Horman45b0cb82010-10-13 16:01:53 +00002003 if (slaves_support_netpoll(bond_dev))
2004 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07002005 read_unlock_bh(&bond->lock);
2006 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
2007 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
2008 else
2009 slave_dev->npinfo = NULL;
2010#endif
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* close slave before restoring its mac address */
2013 dev_close(slave_dev);
2014
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002015 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002016 /* restore original ("permanent") mac address */
2017 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2018 addr.sa_family = slave_dev->type;
2019 dev_set_mac_address(slave_dev, &addr);
2020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002022 dev_set_mtu(slave_dev, slave->original_mtu);
2023
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002024 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002025 IFF_SLAVE_INACTIVE | IFF_BONDING |
2026 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 kfree(slave);
2029
2030 return 0; /* deletion OK */
2031}
2032
2033/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002034* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002035* Must be under rtnl_lock when this function is called.
2036*/
stephen hemminger26d8ee72010-10-15 05:09:34 +00002037static int bond_release_and_destroy(struct net_device *bond_dev,
2038 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002039{
Wang Chen454d7c92008-11-12 23:37:49 -08002040 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002041 int ret;
2042
2043 ret = bond_release(bond_dev, slave_dev);
2044 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002045 pr_info("%s: destroying bond %s.\n",
2046 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002047 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002048 }
2049 return ret;
2050}
2051
2052/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 * This function releases all slaves.
2054 */
2055static int bond_release_all(struct net_device *bond_dev)
2056{
Wang Chen454d7c92008-11-12 23:37:49 -08002057 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 struct slave *slave;
2059 struct net_device *slave_dev;
2060 struct sockaddr addr;
2061
2062 write_lock_bh(&bond->lock);
2063
Jay Vosburghff59c452006-03-27 13:27:43 -08002064 netif_carrier_off(bond_dev);
2065
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002066 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 bond->current_arp_slave = NULL;
2070 bond->primary_slave = NULL;
2071 bond_change_active_slave(bond, NULL);
2072
2073 while ((slave = bond->first_slave) != NULL) {
2074 /* Inform AD package of unbinding of slave
2075 * before slave is detached from the list.
2076 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002077 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 slave_dev = slave->dev;
2081 bond_detach_slave(bond, slave);
2082
Jay Vosburgh25433312008-01-17 16:24:59 -08002083 /* now that the slave is detached, unlock and perform
2084 * all the undo steps that should not be called from
2085 * within a lock.
2086 */
2087 write_unlock_bh(&bond->lock);
2088
Holger Eitzenberger58402052008-12-09 23:07:13 -08002089 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 /* must be called only after the slave
2091 * has been detached from the list
2092 */
2093 bond_alb_deinit_slave(bond, slave);
2094 }
2095
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002096 bond_compute_features(bond);
2097
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002098 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 bond_del_vlans_from_slave(bond, slave_dev);
2100
2101 /* If the mode USES_PRIMARY, then we should only remove its
2102 * promisc and mc settings if it was the curr_active_slave, but that was
2103 * already taken care of above when we detached the slave
2104 */
2105 if (!USES_PRIMARY(bond->params.mode)) {
2106 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002107 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002111 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002115 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002117 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119
2120 netdev_set_master(slave_dev, NULL);
2121
2122 /* close slave before restoring its mac address */
2123 dev_close(slave_dev);
2124
Jay Vosburghdd957c52007-10-09 19:57:24 -07002125 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002126 /* restore original ("permanent") mac address*/
2127 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2128 addr.sa_family = slave_dev->type;
2129 dev_set_mac_address(slave_dev, &addr);
2130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002132 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2133 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135 kfree(slave);
2136
2137 /* re-acquire the lock before getting the next slave */
2138 write_lock_bh(&bond->lock);
2139 }
2140
2141 /* zero the mac address of the master so it will be
2142 * set by the application to the mac address of the
2143 * first slave
2144 */
2145 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2146
Jay Vosburghf35188f2010-07-21 12:14:47 +00002147 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002149 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002150 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2151 bond_dev->name, bond_dev->name);
2152 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2153 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
2155
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002156 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158out:
2159 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return 0;
2161}
2162
2163/*
2164 * This function changes the active slave to slave <slave_dev>.
2165 * It returns -EINVAL in the following cases.
2166 * - <slave_dev> is not found in the list.
2167 * - There is not active slave now.
2168 * - <slave_dev> is already active.
2169 * - The link state of <slave_dev> is not BOND_LINK_UP.
2170 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002171 * In these cases, this function does nothing.
2172 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 */
2174static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2175{
Wang Chen454d7c92008-11-12 23:37:49 -08002176 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 struct slave *old_active = NULL;
2178 struct slave *new_active = NULL;
2179 int res = 0;
2180
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002181 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002185 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002188 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002190 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002192 read_unlock(&bond->curr_slave_lock);
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 new_active = bond_get_slave_by_dev(bond, slave_dev);
2195
2196 /*
2197 * Changing to the current active: do nothing; return success.
2198 */
2199 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002200 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 return 0;
2202 }
2203
2204 if ((new_active) &&
2205 (old_active) &&
2206 (new_active->link == BOND_LINK_UP) &&
2207 IS_UP(new_active->dev)) {
Neil Hormane843fa52010-10-13 16:01:50 +00002208 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002209 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002211 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002212 unblock_netpoll_tx();
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002213 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002216 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 return res;
2219}
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2222{
Wang Chen454d7c92008-11-12 23:37:49 -08002223 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 info->bond_mode = bond->params.mode;
2226 info->miimon = bond->params.miimon;
2227
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002228 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002230 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 return 0;
2233}
2234
2235static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2236{
Wang Chen454d7c92008-11-12 23:37:49 -08002237 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002239 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002241 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243 bond_for_each_slave(bond, slave, i) {
2244 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002245 res = 0;
2246 strcpy(info->slave_name, slave->dev->name);
2247 info->link = slave->link;
2248 info->state = slave->state;
2249 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 break;
2251 }
2252 }
2253
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002254 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
Eric Dumazet689c96c2009-04-23 03:39:04 +00002256 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258
2259/*-------------------------------- Monitoring -------------------------------*/
2260
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002261
2262static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002264 struct slave *slave;
2265 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002266 bool ignore_updelay;
2267
2268 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002271 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002273 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002276 case BOND_LINK_UP:
2277 if (link_state)
2278 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002280 slave->link = BOND_LINK_FAIL;
2281 slave->delay = bond->params.downdelay;
2282 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002283 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2284 bond->dev->name,
2285 (bond->params.mode ==
2286 BOND_MODE_ACTIVEBACKUP) ?
2287 ((slave->state == BOND_STATE_ACTIVE) ?
2288 "active " : "backup ") : "",
2289 slave->dev->name,
2290 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002292 /*FALLTHRU*/
2293 case BOND_LINK_FAIL:
2294 if (link_state) {
2295 /*
2296 * recovered before downdelay expired
2297 */
2298 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002300 pr_info("%s: link status up again after %d ms for interface %s.\n",
2301 bond->dev->name,
2302 (bond->params.downdelay - slave->delay) *
2303 bond->params.miimon,
2304 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002305 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002307
2308 if (slave->delay <= 0) {
2309 slave->new_link = BOND_LINK_DOWN;
2310 commit++;
2311 continue;
2312 }
2313
2314 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002317 case BOND_LINK_DOWN:
2318 if (!link_state)
2319 continue;
2320
2321 slave->link = BOND_LINK_BACK;
2322 slave->delay = bond->params.updelay;
2323
2324 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002325 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2326 bond->dev->name, slave->dev->name,
2327 ignore_updelay ? 0 :
2328 bond->params.updelay *
2329 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002331 /*FALLTHRU*/
2332 case BOND_LINK_BACK:
2333 if (!link_state) {
2334 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002335 pr_info("%s: link status down again after %d ms for interface %s.\n",
2336 bond->dev->name,
2337 (bond->params.updelay - slave->delay) *
2338 bond->params.miimon,
2339 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002340
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002341 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002343
Jiri Pirko41f89102009-04-24 03:57:29 +00002344 if (ignore_updelay)
2345 slave->delay = 0;
2346
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002347 if (slave->delay <= 0) {
2348 slave->new_link = BOND_LINK_UP;
2349 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002350 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002351 continue;
2352 }
2353
2354 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002356 }
2357 }
2358
2359 return commit;
2360}
2361
2362static void bond_miimon_commit(struct bonding *bond)
2363{
2364 struct slave *slave;
2365 int i;
2366
2367 bond_for_each_slave(bond, slave, i) {
2368 switch (slave->new_link) {
2369 case BOND_LINK_NOCHANGE:
2370 continue;
2371
2372 case BOND_LINK_UP:
2373 slave->link = BOND_LINK_UP;
2374 slave->jiffies = jiffies;
2375
2376 if (bond->params.mode == BOND_MODE_8023AD) {
2377 /* prevent it from being the active one */
2378 slave->state = BOND_STATE_BACKUP;
2379 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2380 /* make it immediately active */
2381 slave->state = BOND_STATE_ACTIVE;
2382 } else if (slave != bond->primary_slave) {
2383 /* prevent it from being the active one */
2384 slave->state = BOND_STATE_BACKUP;
2385 }
2386
Krzysztof Piotr Oledzki546add72010-10-06 14:28:22 -07002387 bond_update_speed_duplex(slave);
2388
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002389 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2390 bond->dev->name, slave->dev->name,
2391 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002392
2393 /* notify ad that the link status has changed */
2394 if (bond->params.mode == BOND_MODE_8023AD)
2395 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2396
Holger Eitzenberger58402052008-12-09 23:07:13 -08002397 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002398 bond_alb_handle_link_change(bond, slave,
2399 BOND_LINK_UP);
2400
2401 if (!bond->curr_active_slave ||
2402 (slave == bond->primary_slave))
2403 goto do_failover;
2404
2405 continue;
2406
2407 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002408 if (slave->link_failure_count < UINT_MAX)
2409 slave->link_failure_count++;
2410
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002411 slave->link = BOND_LINK_DOWN;
2412
2413 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2414 bond->params.mode == BOND_MODE_8023AD)
2415 bond_set_slave_inactive_flags(slave);
2416
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002417 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2418 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002419
2420 if (bond->params.mode == BOND_MODE_8023AD)
2421 bond_3ad_handle_link_change(slave,
2422 BOND_LINK_DOWN);
2423
Jiri Pirkoae63e802009-05-27 05:42:36 +00002424 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002425 bond_alb_handle_link_change(bond, slave,
2426 BOND_LINK_DOWN);
2427
2428 if (slave == bond->curr_active_slave)
2429 goto do_failover;
2430
2431 continue;
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002434 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002435 bond->dev->name, slave->new_link,
2436 slave->dev->name);
2437 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002439 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
2441
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002442do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002443 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00002444 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002445 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002447 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002448 unblock_netpoll_tx();
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002449 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002450
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002451 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002454/*
2455 * bond_mii_monitor
2456 *
2457 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002458 * inspection, then (if inspection indicates something needs to be done)
2459 * an acquisition of appropriate locks followed by a commit phase to
2460 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002461 */
2462void bond_mii_monitor(struct work_struct *work)
2463{
2464 struct bonding *bond = container_of(work, struct bonding,
2465 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002466
2467 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002468 if (bond->kill_timers)
2469 goto out;
2470
2471 if (bond->slave_cnt == 0)
2472 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002473
2474 if (bond->send_grat_arp) {
2475 read_lock(&bond->curr_slave_lock);
2476 bond_send_gratuitous_arp(bond);
2477 read_unlock(&bond->curr_slave_lock);
2478 }
2479
Brian Haley305d5522008-11-04 17:51:14 -08002480 if (bond->send_unsol_na) {
2481 read_lock(&bond->curr_slave_lock);
2482 bond_send_unsolicited_na(bond);
2483 read_unlock(&bond->curr_slave_lock);
2484 }
2485
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002486 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002487 read_unlock(&bond->lock);
2488 rtnl_lock();
2489 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002490
2491 bond_miimon_commit(bond);
2492
Jay Vosburgh56556622008-01-17 16:25:03 -08002493 read_unlock(&bond->lock);
2494 rtnl_unlock(); /* might sleep, hold no other locks */
2495 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002496 }
2497
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002498re_arm:
2499 if (bond->params.miimon)
2500 queue_delayed_work(bond->wq, &bond->mii_work,
2501 msecs_to_jiffies(bond->params.miimon));
2502out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002503 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002504}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002505
Al Virod3bb52b2007-08-22 20:06:58 -04002506static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002507{
2508 struct in_device *idev;
2509 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002510 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002511
2512 if (!dev)
2513 return 0;
2514
2515 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002516 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002517 if (!idev)
2518 goto out;
2519
2520 ifa = idev->ifa_list;
2521 if (!ifa)
2522 goto out;
2523
2524 addr = ifa->ifa_local;
2525out:
2526 rcu_read_unlock();
2527 return addr;
2528}
2529
Al Virod3bb52b2007-08-22 20:06:58 -04002530static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002531{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002532 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002533
2534 if (ip == bond->master_ip)
2535 return 1;
2536
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002537 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002538 if (ip == vlan->vlan_ip)
2539 return 1;
2540 }
2541
2542 return 0;
2543}
2544
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002545/*
2546 * We go to the (large) trouble of VLAN tagging ARP frames because
2547 * switches in VLAN mode (especially if ports are configured as
2548 * "native" to a VLAN) might not pass non-tagged frames.
2549 */
Al Virod3bb52b2007-08-22 20:06:58 -04002550static 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 -04002551{
2552 struct sk_buff *skb;
2553
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002554 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002555 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002556
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002557 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2558 NULL, slave_dev->dev_addr, NULL);
2559
2560 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002561 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002562 return;
2563 }
2564 if (vlan_id) {
2565 skb = vlan_put_tag(skb, vlan_id);
2566 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002567 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002568 return;
2569 }
2570 }
2571 arp_xmit(skb);
2572}
2573
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2576{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002577 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002578 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002579 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002580 struct net_device *vlan_dev;
2581 struct flowi fl;
2582 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Mitch Williams6b780562005-11-09 10:36:19 -08002584 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2585 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002586 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002587 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002588 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002589 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002590 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2591 bond->master_ip, 0);
2592 continue;
2593 }
2594
2595 /*
2596 * If VLANs are configured, we do a route lookup to
2597 * determine which VLAN interface would be used, so we
2598 * can tag the ARP with the proper VLAN tag.
2599 */
2600 memset(&fl, 0, sizeof(fl));
2601 fl.fl4_dst = targets[i];
2602 fl.fl4_tos = RTO_ONLINK;
2603
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002604 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002605 if (rv) {
2606 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002607 pr_warning("%s: no route to arp_ip_target %pI4\n",
2608 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002609 }
2610 continue;
2611 }
2612
2613 /*
2614 * This target is not on a VLAN
2615 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002616 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002617 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002618 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002619 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2620 bond->master_ip, 0);
2621 continue;
2622 }
2623
2624 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002625 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002626 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002627 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002628 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002629 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002630 vlan_dev->name, vlan_id);
2631 break;
2632 }
2633 }
2634
2635 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002636 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002637 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2638 vlan->vlan_ip, vlan_id);
2639 continue;
2640 }
2641
2642 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002643 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2644 bond->dev->name, &fl.fl4_dst,
Changli Gaod8d1f302010-06-10 23:31:35 -07002645 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002646 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002647 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002648 }
2649}
2650
2651/*
2652 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2653 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002654 *
2655 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002656 */
2657static void bond_send_gratuitous_arp(struct bonding *bond)
2658{
2659 struct slave *slave = bond->curr_active_slave;
2660 struct vlan_entry *vlan;
2661 struct net_device *vlan_dev;
2662
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002663 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2664 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002665
2666 if (!slave || !bond->send_grat_arp ||
2667 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002668 return;
2669
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002670 bond->send_grat_arp--;
2671
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002672 if (bond->master_ip) {
2673 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002674 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002675 }
2676
Jay Vosburghf35188f2010-07-21 12:14:47 +00002677 if (!bond->vlgrp)
2678 return;
2679
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002680 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002681 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002682 if (vlan->vlan_ip) {
2683 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2684 vlan->vlan_ip, vlan->vlan_id);
2685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 }
2687}
2688
Al Virod3bb52b2007-08-22 20:06:58 -04002689static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002690{
2691 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002692 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002693
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002694 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002695 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002696 &sip, &tip, i, &targets[i],
2697 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002698 if (sip == targets[i]) {
2699 if (bond_has_this_ip(bond, tip))
2700 slave->last_arp_rx = jiffies;
2701 return;
2702 }
2703 }
2704}
2705
2706static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2707{
2708 struct arphdr *arp;
2709 struct slave *slave;
2710 struct bonding *bond;
2711 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002712 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002713
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002714 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2715 /*
2716 * When using VLANS and bonding, dev and oriv_dev may be
2717 * incorrect if the physical interface supports VLAN
2718 * acceleration. With this change ARP validation now
2719 * works for hosts only reachable on the VLAN interface.
2720 */
2721 dev = vlan_dev_real_dev(dev);
2722 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2723 }
2724
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002725 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2726 goto out;
2727
Wang Chen454d7c92008-11-12 23:37:49 -08002728 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002729 read_lock(&bond->lock);
2730
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002731 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002732 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2733 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002734
2735 slave = bond_get_slave_by_dev(bond, orig_dev);
2736 if (!slave || !slave_do_arp_validate(bond, slave))
2737 goto out_unlock;
2738
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002739 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002740 goto out_unlock;
2741
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002742 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002743 if (arp->ar_hln != dev->addr_len ||
2744 skb->pkt_type == PACKET_OTHERHOST ||
2745 skb->pkt_type == PACKET_LOOPBACK ||
2746 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2747 arp->ar_pro != htons(ETH_P_IP) ||
2748 arp->ar_pln != 4)
2749 goto out_unlock;
2750
2751 arp_ptr = (unsigned char *)(arp + 1);
2752 arp_ptr += dev->addr_len;
2753 memcpy(&sip, arp_ptr, 4);
2754 arp_ptr += 4 + dev->addr_len;
2755 memcpy(&tip, arp_ptr, 4);
2756
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002757 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002758 bond->dev->name, slave->dev->name, slave->state,
2759 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2760 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002761
2762 /*
2763 * Backup slaves won't see the ARP reply, but do come through
2764 * here for each ARP probe (so we swap the sip/tip to validate
2765 * the probe). In a "redundant switch, common router" type of
2766 * configuration, the ARP probe will (hopefully) travel from
2767 * the active, through one switch, the router, then the other
2768 * switch before reaching the backup.
2769 */
2770 if (slave->state == BOND_STATE_ACTIVE)
2771 bond_validate_arp(bond, slave, sip, tip);
2772 else
2773 bond_validate_arp(bond, slave, tip, sip);
2774
2775out_unlock:
2776 read_unlock(&bond->lock);
2777out:
2778 dev_kfree_skb(skb);
2779 return NET_RX_SUCCESS;
2780}
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782/*
2783 * this function is called regularly to monitor each slave's link
2784 * ensuring that traffic is being sent and received when arp monitoring
2785 * is used in load-balancing mode. if the adapter has been dormant, then an
2786 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2787 * arp monitoring in active backup mode.
2788 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002789void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002791 struct bonding *bond = container_of(work, struct bonding,
2792 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 struct slave *slave, *oldcurrent;
2794 int do_failover = 0;
2795 int delta_in_ticks;
2796 int i;
2797
2798 read_lock(&bond->lock);
2799
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002800 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002802 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002805 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 read_lock(&bond->curr_slave_lock);
2809 oldcurrent = bond->curr_active_slave;
2810 read_unlock(&bond->curr_slave_lock);
2811
2812 /* see if any of the previous devices are up now (i.e. they have
2813 * xmt and rcv traffic). the curr_active_slave does not come into
2814 * the picture unless it is null. also, slave->jiffies is not needed
2815 * here because we send an arp on each slave and give a slave as
2816 * long as it needs to get the tx/rx within the delta.
2817 * TODO: what about up/down delay in arp mode? it wasn't here before
2818 * so it can wait
2819 */
2820 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002821 unsigned long trans_start = dev_trans_start(slave->dev);
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002824 if (time_in_range(jiffies,
2825 trans_start - delta_in_ticks,
2826 trans_start + delta_in_ticks) &&
2827 time_in_range(jiffies,
2828 slave->dev->last_rx - delta_in_ticks,
2829 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 slave->link = BOND_LINK_UP;
2832 slave->state = BOND_STATE_ACTIVE;
2833
2834 /* primary_slave has no meaning in round-robin
2835 * mode. the window of a slave being up and
2836 * curr_active_slave being null after enslaving
2837 * is closed.
2838 */
2839 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002840 pr_info("%s: link status definitely up for interface %s, ",
2841 bond->dev->name,
2842 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 do_failover = 1;
2844 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002845 pr_info("%s: interface %s is now up\n",
2846 bond->dev->name,
2847 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 }
2849 }
2850 } else {
2851 /* slave->link == BOND_LINK_UP */
2852
2853 /* not all switches will respond to an arp request
2854 * when the source ip is 0, so don't take the link down
2855 * if we don't know our ip yet
2856 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002857 if (!time_in_range(jiffies,
2858 trans_start - delta_in_ticks,
2859 trans_start + 2 * delta_in_ticks) ||
2860 !time_in_range(jiffies,
2861 slave->dev->last_rx - delta_in_ticks,
2862 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864 slave->link = BOND_LINK_DOWN;
2865 slave->state = BOND_STATE_BACKUP;
2866
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002867 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002870 pr_info("%s: interface %s is now down.\n",
2871 bond->dev->name,
2872 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002874 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 }
2877 }
2878
2879 /* note: if switch is in round-robin mode, all links
2880 * must tx arp to ensure all links rx an arp - otherwise
2881 * links may oscillate or not come up at all; if switch is
2882 * in something like xor mode, there is nothing we can
2883 * do - all replies will be rx'ed on same link causing slaves
2884 * to be unstable during low/no traffic periods
2885 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002886 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
2889
2890 if (do_failover) {
Neil Hormane843fa52010-10-13 16:01:50 +00002891 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002892 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894 bond_select_active_slave(bond);
2895
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002896 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002897 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
2899
2900re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002901 if (bond->params.arp_interval)
2902 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903out:
2904 read_unlock(&bond->lock);
2905}
2906
2907/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002908 * Called to inspect slaves for active-backup mode ARP monitor link state
2909 * changes. Sets new_link in slaves to specify what action should take
2910 * place for the slave. Returns 0 if no changes are found, >0 if changes
2911 * to link states must be committed.
2912 *
2913 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002915static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002918 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002919 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002922 slave->new_link = BOND_LINK_NOCHANGE;
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002925 if (time_in_range(jiffies,
2926 slave_last_rx(bond, slave) - delta_in_ticks,
2927 slave_last_rx(bond, slave) + delta_in_ticks)) {
2928
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002929 slave->new_link = BOND_LINK_UP;
2930 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002933 continue;
2934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002936 /*
2937 * Give slaves 2*delta after being enslaved or made
2938 * active. This avoids bouncing, as the last receive
2939 * times need a full ARP monitor cycle to be updated.
2940 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002941 if (time_in_range(jiffies,
2942 slave->jiffies - delta_in_ticks,
2943 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002944 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002946 /*
2947 * Backup slave is down if:
2948 * - No current_arp_slave AND
2949 * - more than 3*delta since last receive AND
2950 * - the bond has an IP address
2951 *
2952 * Note: a non-null current_arp_slave indicates
2953 * the curr_active_slave went down and we are
2954 * searching for a new one; under this condition
2955 * we only take the curr_active_slave down - this
2956 * gives each slave a chance to tx/rx traffic
2957 * before being taken out
2958 */
2959 if (slave->state == BOND_STATE_BACKUP &&
2960 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002961 !time_in_range(jiffies,
2962 slave_last_rx(bond, slave) - delta_in_ticks,
2963 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2964
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002965 slave->new_link = BOND_LINK_DOWN;
2966 commit++;
2967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002969 /*
2970 * Active slave is down if:
2971 * - more than 2*delta since transmitting OR
2972 * - (more than 2*delta since receive AND
2973 * the bond has an IP address)
2974 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002975 trans_start = dev_trans_start(slave->dev);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002976 if ((slave->state == BOND_STATE_ACTIVE) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002977 (!time_in_range(jiffies,
2978 trans_start - delta_in_ticks,
2979 trans_start + 2 * delta_in_ticks) ||
2980 !time_in_range(jiffies,
2981 slave_last_rx(bond, slave) - delta_in_ticks,
2982 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
2983
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002984 slave->new_link = BOND_LINK_DOWN;
2985 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 }
2987 }
2988
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002989 return commit;
2990}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002992/*
2993 * Called to commit link state changes noted by inspection step of
2994 * active-backup mode ARP monitor.
2995 *
2996 * Called with RTNL and bond->lock for read.
2997 */
2998static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2999{
3000 struct slave *slave;
3001 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003002 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003004 bond_for_each_slave(bond, slave, i) {
3005 switch (slave->new_link) {
3006 case BOND_LINK_NOCHANGE:
3007 continue;
3008
3009 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003010 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003011 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003012 time_in_range(jiffies,
3013 trans_start - delta_in_ticks,
3014 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003015 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003016 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003017 bond->current_arp_slave = NULL;
3018
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003019 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003020 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003021
Jiri Pirkob9f60252009-08-31 11:09:38 +00003022 if (!bond->curr_active_slave ||
3023 (slave == bond->primary_slave))
3024 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003025
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003026 }
3027
Jiri Pirkob9f60252009-08-31 11:09:38 +00003028 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003029
3030 case BOND_LINK_DOWN:
3031 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003034 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003035 bond_set_slave_inactive_flags(slave);
3036
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003037 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003038 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003039
3040 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003041 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003042 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003043 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003044
3045 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003046
3047 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003048 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003049 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003051 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Jiri Pirkob9f60252009-08-31 11:09:38 +00003054do_failover:
3055 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00003056 block_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003057 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003058 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003059 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00003060 unblock_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003061 }
3062
3063 bond_set_carrier(bond);
3064}
3065
3066/*
3067 * Send ARP probes for active-backup mode ARP monitor.
3068 *
3069 * Called with bond->lock held for read.
3070 */
3071static void bond_ab_arp_probe(struct bonding *bond)
3072{
3073 struct slave *slave;
3074 int i;
3075
3076 read_lock(&bond->curr_slave_lock);
3077
3078 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003079 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3080 bond->current_arp_slave->dev->name,
3081 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003082
3083 if (bond->curr_active_slave) {
3084 bond_arp_send_all(bond, bond->curr_active_slave);
3085 read_unlock(&bond->curr_slave_lock);
3086 return;
3087 }
3088
3089 read_unlock(&bond->curr_slave_lock);
3090
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 /* if we don't have a curr_active_slave, search for the next available
3092 * backup slave from the current_arp_slave and make it the candidate
3093 * for becoming the curr_active_slave
3094 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003095
3096 if (!bond->current_arp_slave) {
3097 bond->current_arp_slave = bond->first_slave;
3098 if (!bond->current_arp_slave)
3099 return;
3100 }
3101
3102 bond_set_slave_inactive_flags(bond->current_arp_slave);
3103
3104 /* search for next candidate */
3105 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3106 if (IS_UP(slave->dev)) {
3107 slave->link = BOND_LINK_BACK;
3108 bond_set_slave_active_flags(slave);
3109 bond_arp_send_all(bond, slave);
3110 slave->jiffies = jiffies;
3111 bond->current_arp_slave = slave;
3112 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 }
3114
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003115 /* if the link state is up at this point, we
3116 * mark it down - this can happen if we have
3117 * simultaneous link failures and
3118 * reselect_active_interface doesn't make this
3119 * one the current slave so it is still marked
3120 * up when it is actually down
3121 */
3122 if (slave->link == BOND_LINK_UP) {
3123 slave->link = BOND_LINK_DOWN;
3124 if (slave->link_failure_count < UINT_MAX)
3125 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003127 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003129 pr_info("%s: backup interface %s is now down.\n",
3130 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
3132 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003133}
3134
3135void bond_activebackup_arp_mon(struct work_struct *work)
3136{
3137 struct bonding *bond = container_of(work, struct bonding,
3138 arp_work.work);
3139 int delta_in_ticks;
3140
3141 read_lock(&bond->lock);
3142
3143 if (bond->kill_timers)
3144 goto out;
3145
3146 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3147
3148 if (bond->slave_cnt == 0)
3149 goto re_arm;
3150
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003151 if (bond->send_grat_arp) {
3152 read_lock(&bond->curr_slave_lock);
3153 bond_send_gratuitous_arp(bond);
3154 read_unlock(&bond->curr_slave_lock);
3155 }
3156
Brian Haley305d5522008-11-04 17:51:14 -08003157 if (bond->send_unsol_na) {
3158 read_lock(&bond->curr_slave_lock);
3159 bond_send_unsolicited_na(bond);
3160 read_unlock(&bond->curr_slave_lock);
3161 }
3162
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003163 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3164 read_unlock(&bond->lock);
3165 rtnl_lock();
3166 read_lock(&bond->lock);
3167
3168 bond_ab_arp_commit(bond, delta_in_ticks);
3169
3170 read_unlock(&bond->lock);
3171 rtnl_unlock();
3172 read_lock(&bond->lock);
3173 }
3174
3175 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
3177re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003178 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003179 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180out:
3181 read_unlock(&bond->lock);
3182}
3183
3184/*------------------------------ proc/seq_file-------------------------------*/
3185
3186#ifdef CONFIG_PROC_FS
3187
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003189 __acquires(&dev_base_lock)
3190 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191{
3192 struct bonding *bond = seq->private;
3193 loff_t off = 0;
3194 struct slave *slave;
3195 int i;
3196
3197 /* make sure the bond won't be taken away */
3198 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003199 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003201 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
3204 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003205 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 }
3208
3209 return NULL;
3210}
3211
3212static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3213{
3214 struct bonding *bond = seq->private;
3215 struct slave *slave = v;
3216
3217 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003218 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221 slave = slave->next;
3222
3223 return (slave == bond->first_slave) ? NULL : slave;
3224}
3225
3226static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003227 __releases(&bond->lock)
3228 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229{
3230 struct bonding *bond = seq->private;
3231
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003232 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 read_unlock(&dev_base_lock);
3234}
3235
3236static void bond_info_show_master(struct seq_file *seq)
3237{
3238 struct bonding *bond = seq->private;
3239 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003240 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
3242 read_lock(&bond->curr_slave_lock);
3243 curr = bond->curr_active_slave;
3244 read_unlock(&bond->curr_slave_lock);
3245
Jay Vosburghdd957c52007-10-09 19:57:24 -07003246 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 bond_mode_name(bond->params.mode));
3248
Jay Vosburghdd957c52007-10-09 19:57:24 -07003249 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3250 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003251 seq_printf(seq, " (fail_over_mac %s)",
3252 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003253
3254 seq_printf(seq, "\n");
3255
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003256 if (bond->params.mode == BOND_MODE_XOR ||
3257 bond->params.mode == BOND_MODE_8023AD) {
3258 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3259 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3260 bond->params.xmit_policy);
3261 }
3262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003264 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003265 (bond->primary_slave) ?
3266 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003267 if (bond->primary_slave)
3268 seq_printf(seq, " (primary_reselect %s)",
3269 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
Jiri Pirkoa5499522009-09-25 03:28:09 +00003271 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 (curr) ? curr->dev->name : "None");
3273 }
3274
Jay Vosburghff59c452006-03-27 13:27:43 -08003275 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3276 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3278 seq_printf(seq, "Up Delay (ms): %d\n",
3279 bond->params.updelay * bond->params.miimon);
3280 seq_printf(seq, "Down Delay (ms): %d\n",
3281 bond->params.downdelay * bond->params.miimon);
3282
Mitch Williams4756b022005-11-09 10:36:25 -08003283
3284 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003285 if (bond->params.arp_interval > 0) {
3286 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003287 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3288 bond->params.arp_interval);
3289
3290 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3291
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003292 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003293 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003294 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003295 if (printed)
3296 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003297 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003298 printed = 1;
3299 }
3300 seq_printf(seq, "\n");
3301 }
3302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (bond->params.mode == BOND_MODE_8023AD) {
3304 struct ad_info ad_info;
3305
3306 seq_puts(seq, "\n802.3ad info\n");
3307 seq_printf(seq, "LACP rate: %s\n",
3308 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003309 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3310 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
3312 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3313 seq_printf(seq, "bond %s has no active aggregator\n",
3314 bond->dev->name);
3315 } else {
3316 seq_printf(seq, "Active Aggregator Info:\n");
3317
3318 seq_printf(seq, "\tAggregator ID: %d\n",
3319 ad_info.aggregator_id);
3320 seq_printf(seq, "\tNumber of ports: %d\n",
3321 ad_info.ports);
3322 seq_printf(seq, "\tActor Key: %d\n",
3323 ad_info.actor_key);
3324 seq_printf(seq, "\tPartner Key: %d\n",
3325 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003326 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3327 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 }
3329 }
3330}
3331
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003332static void bond_info_show_slave(struct seq_file *seq,
3333 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
3335 struct bonding *bond = seq->private;
3336
3337 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3338 seq_printf(seq, "MII Status: %s\n",
3339 (slave->link == BOND_LINK_UP) ? "up" : "down");
Krzysztof Oledzkidd53df22010-09-30 06:19:04 +00003340 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
3341 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
Kenzo Iwami655096452006-09-22 21:53:08 -07003342 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 slave->link_failure_count);
3344
Johannes Berge1749612008-10-27 15:59:26 -07003345 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
3347 if (bond->params.mode == BOND_MODE_8023AD) {
3348 const struct aggregator *agg
3349 = SLAVE_AD_INFO(slave).port.aggregator;
3350
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003351 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 seq_printf(seq, "Aggregator ID: %d\n",
3353 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003354 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00003357 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358}
3359
3360static int bond_info_seq_show(struct seq_file *seq, void *v)
3361{
3362 if (v == SEQ_START_TOKEN) {
3363 seq_printf(seq, "%s\n", version);
3364 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003365 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
3368 return 0;
3369}
3370
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003371static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 .start = bond_info_seq_start,
3373 .next = bond_info_seq_next,
3374 .stop = bond_info_seq_stop,
3375 .show = bond_info_seq_show,
3376};
3377
3378static int bond_info_open(struct inode *inode, struct file *file)
3379{
3380 struct seq_file *seq;
3381 struct proc_dir_entry *proc;
3382 int res;
3383
3384 res = seq_open(file, &bond_info_seq_ops);
3385 if (!res) {
3386 /* recover the pointer buried in proc_dir_entry data */
3387 seq = file->private_data;
3388 proc = PDE(inode);
3389 seq->private = proc->data;
3390 }
3391
3392 return res;
3393}
3394
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003395static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 .owner = THIS_MODULE,
3397 .open = bond_info_open,
3398 .read = seq_read,
3399 .llseek = seq_lseek,
3400 .release = seq_release,
3401};
3402
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003403static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404{
3405 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003406 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003408 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003409 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003410 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003411 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003412 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003413 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3414 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003415 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418}
3419
3420static void bond_remove_proc_entry(struct bonding *bond)
3421{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003422 struct net_device *bond_dev = bond->dev;
3423 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3424
3425 if (bn->proc_dir && bond->proc_entry) {
3426 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 memset(bond->proc_file_name, 0, IFNAMSIZ);
3428 bond->proc_entry = NULL;
3429 }
3430}
3431
3432/* Create the bonding directory under /proc/net, if doesn't exist yet.
3433 * Caller must hold rtnl_lock.
3434 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003435static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003437 if (!bn->proc_dir) {
3438 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3439 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003440 pr_warning("Warning: cannot create /proc/net/%s\n",
3441 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 }
3443}
3444
3445/* Destroy the bonding directory under /proc/net, if empty.
3446 * Caller must hold rtnl_lock.
3447 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003448static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003450 if (bn->proc_dir) {
3451 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3452 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 }
3454}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003455
3456#else /* !CONFIG_PROC_FS */
3457
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003458static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003459{
3460}
3461
3462static void bond_remove_proc_entry(struct bonding *bond)
3463{
3464}
3465
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003466static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003467{
3468}
3469
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003470static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003471{
3472}
3473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474#endif /* CONFIG_PROC_FS */
3475
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003476
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477/*-------------------------- netdev event handling --------------------------*/
3478
3479/*
3480 * Change device name
3481 */
3482static int bond_event_changename(struct bonding *bond)
3483{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 bond_remove_proc_entry(bond);
3485 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 return NOTIFY_DONE;
3488}
3489
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003490static int bond_master_netdev_event(unsigned long event,
3491 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492{
Wang Chen454d7c92008-11-12 23:37:49 -08003493 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
3495 switch (event) {
3496 case NETDEV_CHANGENAME:
3497 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 default:
3499 break;
3500 }
3501
3502 return NOTIFY_DONE;
3503}
3504
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003505static int bond_slave_netdev_event(unsigned long event,
3506 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507{
3508 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003509 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
3511 switch (event) {
3512 case NETDEV_UNREGISTER:
3513 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003514 if (bond->setup_by_slave)
3515 bond_release_and_destroy(bond_dev, slave_dev);
3516 else
3517 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
3519 break;
3520 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003521 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3522 struct slave *slave;
3523
3524 slave = bond_get_slave_by_dev(bond, slave_dev);
3525 if (slave) {
3526 u16 old_speed = slave->speed;
3527 u16 old_duplex = slave->duplex;
3528
3529 bond_update_speed_duplex(slave);
3530
3531 if (bond_is_lb(bond))
3532 break;
3533
3534 if (old_speed != slave->speed)
3535 bond_3ad_adapter_speed_changed(slave);
3536 if (old_duplex != slave->duplex)
3537 bond_3ad_adapter_duplex_changed(slave);
3538 }
3539 }
3540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 break;
3542 case NETDEV_DOWN:
3543 /*
3544 * ... Or is it this?
3545 */
3546 break;
3547 case NETDEV_CHANGEMTU:
3548 /*
3549 * TODO: Should slaves be allowed to
3550 * independently alter their MTU? For
3551 * an active-backup bond, slaves need
3552 * not be the same type of device, so
3553 * MTUs may vary. For other modes,
3554 * slaves arguably should have the
3555 * same MTUs. To do this, we'd need to
3556 * take over the slave's change_mtu
3557 * function for the duration of their
3558 * servitude.
3559 */
3560 break;
3561 case NETDEV_CHANGENAME:
3562 /*
3563 * TODO: handle changing the primary's name
3564 */
3565 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003566 case NETDEV_FEAT_CHANGE:
3567 bond_compute_features(bond);
3568 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 default:
3570 break;
3571 }
3572
3573 return NOTIFY_DONE;
3574}
3575
3576/*
3577 * bond_netdev_event: handle netdev notifier chain events.
3578 *
3579 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003580 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 * locks for us to safely manipulate the slave devices (RTNL lock,
3582 * dev_probe_lock).
3583 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003584static int bond_netdev_event(struct notifier_block *this,
3585 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586{
3587 struct net_device *event_dev = (struct net_device *)ptr;
3588
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003589 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003590 event_dev ? event_dev->name : "None",
3591 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003593 if (!(event_dev->priv_flags & IFF_BONDING))
3594 return NOTIFY_DONE;
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003597 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 return bond_master_netdev_event(event, event_dev);
3599 }
3600
3601 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003602 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 return bond_slave_netdev_event(event, event_dev);
3604 }
3605
3606 return NOTIFY_DONE;
3607}
3608
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003609/*
3610 * bond_inetaddr_event: handle inetaddr notifier chain events.
3611 *
3612 * We keep track of device IPs primarily to use as source addresses in
3613 * ARP monitor probes (rather than spewing out broadcasts all the time).
3614 *
3615 * We track one IP for the main device (if it has one), plus one per VLAN.
3616 */
3617static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3618{
3619 struct in_ifaddr *ifa = ptr;
3620 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003621 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003622 struct bonding *bond;
3623 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003624
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003625 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003626 if (bond->dev == event_dev) {
3627 switch (event) {
3628 case NETDEV_UP:
3629 bond->master_ip = ifa->ifa_local;
3630 return NOTIFY_OK;
3631 case NETDEV_DOWN:
3632 bond->master_ip = bond_glean_dev_ip(bond->dev);
3633 return NOTIFY_OK;
3634 default:
3635 return NOTIFY_DONE;
3636 }
3637 }
3638
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003639 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003640 if (!bond->vlgrp)
3641 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003642 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003643 if (vlan_dev == event_dev) {
3644 switch (event) {
3645 case NETDEV_UP:
3646 vlan->vlan_ip = ifa->ifa_local;
3647 return NOTIFY_OK;
3648 case NETDEV_DOWN:
3649 vlan->vlan_ip =
3650 bond_glean_dev_ip(vlan_dev);
3651 return NOTIFY_OK;
3652 default:
3653 return NOTIFY_DONE;
3654 }
3655 }
3656 }
3657 }
3658 return NOTIFY_DONE;
3659}
3660
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661static struct notifier_block bond_netdev_notifier = {
3662 .notifier_call = bond_netdev_event,
3663};
3664
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003665static struct notifier_block bond_inetaddr_notifier = {
3666 .notifier_call = bond_inetaddr_event,
3667};
3668
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669/*-------------------------- Packet type handling ---------------------------*/
3670
3671/* register to receive lacpdus on a bond */
3672static void bond_register_lacpdu(struct bonding *bond)
3673{
3674 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3675
3676 /* initialize packet type */
3677 pk_type->type = PKT_TYPE_LACPDU;
3678 pk_type->dev = bond->dev;
3679 pk_type->func = bond_3ad_lacpdu_recv;
3680
3681 dev_add_pack(pk_type);
3682}
3683
3684/* unregister to receive lacpdus on a bond */
3685static void bond_unregister_lacpdu(struct bonding *bond)
3686{
3687 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3688}
3689
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003690void bond_register_arp(struct bonding *bond)
3691{
3692 struct packet_type *pt = &bond->arp_mon_pt;
3693
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003694 if (pt->type)
3695 return;
3696
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003697 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003698 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003699 pt->func = bond_arp_rcv;
3700 dev_add_pack(pt);
3701}
3702
3703void bond_unregister_arp(struct bonding *bond)
3704{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003705 struct packet_type *pt = &bond->arp_mon_pt;
3706
3707 dev_remove_pack(pt);
3708 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003709}
3710
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003711/*---------------------------- Hashing Policies -----------------------------*/
3712
3713/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003714 * Hash for the output device based upon layer 2 and layer 3 data. If
3715 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3716 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003717static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003718{
3719 struct ethhdr *data = (struct ethhdr *)skb->data;
3720 struct iphdr *iph = ip_hdr(skb);
3721
Brian Haleyf14c4e42008-09-02 10:08:08 -04003722 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003723 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003724 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003725 }
3726
Jasper Spaansd3da6832009-10-23 04:08:46 +00003727 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003728}
3729
3730/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003731 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003732 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3733 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3734 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003735static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003736{
3737 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003738 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003739 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003740 int layer4_xor = 0;
3741
Brian Haleyf14c4e42008-09-02 10:08:08 -04003742 if (skb->protocol == htons(ETH_P_IP)) {
3743 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003744 (iph->protocol == IPPROTO_TCP ||
3745 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003746 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003747 }
3748 return (layer4_xor ^
3749 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3750
3751 }
3752
Jasper Spaansd3da6832009-10-23 04:08:46 +00003753 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003754}
3755
3756/*
3757 * Hash for the output device based upon layer 2 data
3758 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003759static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003760{
3761 struct ethhdr *data = (struct ethhdr *)skb->data;
3762
Jasper Spaansd3da6832009-10-23 04:08:46 +00003763 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003764}
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766/*-------------------------- Device entry points ----------------------------*/
3767
3768static int bond_open(struct net_device *bond_dev)
3769{
Wang Chen454d7c92008-11-12 23:37:49 -08003770 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
3772 bond->kill_timers = 0;
3773
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003774 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3775
Holger Eitzenberger58402052008-12-09 23:07:13 -08003776 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 /* bond_alb_initialize must be called before the timer
3778 * is started.
3779 */
3780 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3781 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003782 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 }
3784
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003785 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3786 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 }
3788
3789 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003790 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3791 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 }
3793
3794 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003795 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3796 INIT_DELAYED_WORK(&bond->arp_work,
3797 bond_activebackup_arp_mon);
3798 else
3799 INIT_DELAYED_WORK(&bond->arp_work,
3800 bond_loadbalance_arp_mon);
3801
3802 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003803 if (bond->params.arp_validate)
3804 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 }
3806
3807 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003808 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003809 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 /* register to receive LACPDUs */
3811 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003812 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 }
3814
3815 return 0;
3816}
3817
3818static int bond_close(struct net_device *bond_dev)
3819{
Wang Chen454d7c92008-11-12 23:37:49 -08003820 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
3822 if (bond->params.mode == BOND_MODE_8023AD) {
3823 /* Unregister the receive of LACPDUs */
3824 bond_unregister_lacpdu(bond);
3825 }
3826
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003827 if (bond->params.arp_validate)
3828 bond_unregister_arp(bond);
3829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 write_lock_bh(&bond->lock);
3831
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003832 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003833 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
3835 /* signal timers not to re-arm */
3836 bond->kill_timers = 1;
3837
3838 write_unlock_bh(&bond->lock);
3839
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003841 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 }
3843
3844 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003845 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 }
3847
3848 switch (bond->params.mode) {
3849 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003850 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 break;
3852 case BOND_MODE_TLB:
3853 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003854 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 break;
3856 default:
3857 break;
3858 }
3859
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003860 if (delayed_work_pending(&bond->mcast_work))
3861 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
Holger Eitzenberger58402052008-12-09 23:07:13 -08003863 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 /* Must be called only after all
3865 * slaves have been released
3866 */
3867 bond_alb_deinitialize(bond);
3868 }
3869
3870 return 0;
3871}
3872
Eric Dumazet28172732010-07-07 14:58:56 -07003873static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3874 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875{
Wang Chen454d7c92008-11-12 23:37:49 -08003876 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003877 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 struct slave *slave;
3879 int i;
3880
Eric Dumazet28172732010-07-07 14:58:56 -07003881 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
3883 read_lock_bh(&bond->lock);
3884
3885 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003886 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003887 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003888
Eric Dumazet28172732010-07-07 14:58:56 -07003889 stats->rx_packets += sstats->rx_packets;
3890 stats->rx_bytes += sstats->rx_bytes;
3891 stats->rx_errors += sstats->rx_errors;
3892 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Eric Dumazet28172732010-07-07 14:58:56 -07003894 stats->tx_packets += sstats->tx_packets;
3895 stats->tx_bytes += sstats->tx_bytes;
3896 stats->tx_errors += sstats->tx_errors;
3897 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Eric Dumazet28172732010-07-07 14:58:56 -07003899 stats->multicast += sstats->multicast;
3900 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Eric Dumazet28172732010-07-07 14:58:56 -07003902 stats->rx_length_errors += sstats->rx_length_errors;
3903 stats->rx_over_errors += sstats->rx_over_errors;
3904 stats->rx_crc_errors += sstats->rx_crc_errors;
3905 stats->rx_frame_errors += sstats->rx_frame_errors;
3906 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3907 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Eric Dumazet28172732010-07-07 14:58:56 -07003909 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3910 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3911 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3912 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3913 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 }
3915
3916 read_unlock_bh(&bond->lock);
3917
3918 return stats;
3919}
3920
3921static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3922{
3923 struct net_device *slave_dev = NULL;
3924 struct ifbond k_binfo;
3925 struct ifbond __user *u_binfo = NULL;
3926 struct ifslave k_sinfo;
3927 struct ifslave __user *u_sinfo = NULL;
3928 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 int res = 0;
3930
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003931 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
3933 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 case SIOCGMIIPHY:
3935 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003936 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 mii->phy_id = 0;
3940 /* Fall Through */
3941 case SIOCGMIIREG:
3942 /*
3943 * We do this again just in case we were called by SIOCGMIIREG
3944 * instead of SIOCGMIIPHY.
3945 */
3946 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003947 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003949
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003952 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003954 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003956 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003958
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003960 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 }
3962
3963 return 0;
3964 case BOND_INFO_QUERY_OLD:
3965 case SIOCBONDINFOQUERY:
3966 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3967
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003968 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
3971 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003972 if (res == 0 &&
3973 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3974 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
3976 return res;
3977 case BOND_SLAVE_INFO_QUERY_OLD:
3978 case SIOCBONDSLAVEINFOQUERY:
3979 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3980
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003981 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
3984 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003985 if (res == 0 &&
3986 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3987 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
3989 return res;
3990 default:
3991 /* Go on */
3992 break;
3993 }
3994
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003995 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003998 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004000 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004002 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004004 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004005 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 switch (cmd) {
4007 case BOND_ENSLAVE_OLD:
4008 case SIOCBONDENSLAVE:
4009 res = bond_enslave(bond_dev, slave_dev);
4010 break;
4011 case BOND_RELEASE_OLD:
4012 case SIOCBONDRELEASE:
4013 res = bond_release(bond_dev, slave_dev);
4014 break;
4015 case BOND_SETHWADDR_OLD:
4016 case SIOCBONDSETHWADDR:
4017 res = bond_sethwaddr(bond_dev, slave_dev);
4018 break;
4019 case BOND_CHANGE_ACTIVE_OLD:
4020 case SIOCBONDCHANGEACTIVE:
4021 res = bond_ioctl_change_active(bond_dev, slave_dev);
4022 break;
4023 default:
4024 res = -EOPNOTSUPP;
4025 }
4026
4027 dev_put(slave_dev);
4028 }
4029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 return res;
4031}
4032
Jiri Pirko22bedad32010-04-01 21:22:57 +00004033static bool bond_addr_in_mc_list(unsigned char *addr,
4034 struct netdev_hw_addr_list *list,
4035 int addrlen)
4036{
4037 struct netdev_hw_addr *ha;
4038
4039 netdev_hw_addr_list_for_each(ha, list)
4040 if (!memcmp(ha->addr, addr, addrlen))
4041 return true;
4042
4043 return false;
4044}
4045
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046static void bond_set_multicast_list(struct net_device *bond_dev)
4047{
Wang Chen454d7c92008-11-12 23:37:49 -08004048 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004049 struct netdev_hw_addr *ha;
4050 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 /*
4053 * Do promisc before checking multicast_mode
4054 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004055 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004056 /*
4057 * FIXME: Need to handle the error when one of the multi-slaves
4058 * encounters error.
4059 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004062
4063 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004065
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
4067 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004068 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004069 /*
4070 * FIXME: Need to handle the error when one of the multi-slaves
4071 * encounters error.
4072 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004075
4076 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004078
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004080 read_lock(&bond->lock);
4081
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 bond->flags = bond_dev->flags;
4083
4084 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004085 netdev_for_each_mc_addr(ha, bond_dev) {
4086 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4087 bond_dev->addr_len);
4088 if (!found)
4089 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 }
4091
4092 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004093 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4094 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4095 bond_dev->addr_len);
4096 if (!found)
4097 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 }
4099
4100 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004101 __hw_addr_flush(&bond->mc_list);
4102 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4103 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004105 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106}
4107
Stephen Hemminger00829822008-11-20 20:14:53 -08004108static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4109{
4110 struct bonding *bond = netdev_priv(dev);
4111 struct slave *slave = bond->first_slave;
4112
4113 if (slave) {
4114 const struct net_device_ops *slave_ops
4115 = slave->dev->netdev_ops;
4116 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004117 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004118 }
4119 return 0;
4120}
4121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122/*
4123 * Change the MTU of all of a master's slaves to match the master
4124 */
4125static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4126{
Wang Chen454d7c92008-11-12 23:37:49 -08004127 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 struct slave *slave, *stop_at;
4129 int res = 0;
4130 int i;
4131
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004132 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004133 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
4135 /* Can't hold bond->lock with bh disabled here since
4136 * some base drivers panic. On the other hand we can't
4137 * hold bond->lock without bh disabled because we'll
4138 * deadlock. The only solution is to rely on the fact
4139 * that we're under rtnl_lock here, and the slaves
4140 * list won't change. This doesn't solve the problem
4141 * of setting the slave's MTU while it is
4142 * transmitting, but the assumption is that the base
4143 * driver can handle that.
4144 *
4145 * TODO: figure out a way to safely iterate the slaves
4146 * list, but without holding a lock around the actual
4147 * call to the base driver.
4148 */
4149
4150 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004151 pr_debug("s %p s->p %p c_m %p\n",
4152 slave,
4153 slave->prev,
4154 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004155
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 res = dev_set_mtu(slave->dev, new_mtu);
4157
4158 if (res) {
4159 /* If we failed to set the slave's mtu to the new value
4160 * we must abort the operation even in ACTIVE_BACKUP
4161 * mode, because if we allow the backup slaves to have
4162 * different mtu values than the active slave we'll
4163 * need to change their mtu when doing a failover. That
4164 * means changing their mtu from timer context, which
4165 * is probably not a good idea.
4166 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004167 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 goto unwind;
4169 }
4170 }
4171
4172 bond_dev->mtu = new_mtu;
4173
4174 return 0;
4175
4176unwind:
4177 /* unwind from head to the slave that failed */
4178 stop_at = slave;
4179 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4180 int tmp_res;
4181
4182 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4183 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004184 pr_debug("unwind err %d dev %s\n",
4185 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 }
4187 }
4188
4189 return res;
4190}
4191
4192/*
4193 * Change HW address
4194 *
4195 * Note that many devices must be down to change the HW address, and
4196 * downing the master releases all slaves. We can make bonds full of
4197 * bonding devices to test this, however.
4198 */
4199static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4200{
Wang Chen454d7c92008-11-12 23:37:49 -08004201 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 struct sockaddr *sa = addr, tmp_sa;
4203 struct slave *slave, *stop_at;
4204 int res = 0;
4205 int i;
4206
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004207 if (bond->params.mode == BOND_MODE_ALB)
4208 return bond_alb_set_mac_address(bond_dev, addr);
4209
4210
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004211 pr_debug("bond=%p, name=%s\n",
4212 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
Jay Vosburghdd957c52007-10-09 19:57:24 -07004214 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004215 * If fail_over_mac is set to active, do nothing and return
4216 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004217 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004218 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004219 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004220
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004221 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
4224 /* Can't hold bond->lock with bh disabled here since
4225 * some base drivers panic. On the other hand we can't
4226 * hold bond->lock without bh disabled because we'll
4227 * deadlock. The only solution is to rely on the fact
4228 * that we're under rtnl_lock here, and the slaves
4229 * list won't change. This doesn't solve the problem
4230 * of setting the slave's hw address while it is
4231 * transmitting, but the assumption is that the base
4232 * driver can handle that.
4233 *
4234 * TODO: figure out a way to safely iterate the slaves
4235 * list, but without holding a lock around the actual
4236 * call to the base driver.
4237 */
4238
4239 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004240 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004241 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004243 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004245 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 goto unwind;
4247 }
4248
4249 res = dev_set_mac_address(slave->dev, addr);
4250 if (res) {
4251 /* TODO: consider downing the slave
4252 * and retry ?
4253 * User should expect communications
4254 * breakage anyway until ARP finish
4255 * updating, so...
4256 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004257 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 goto unwind;
4259 }
4260 }
4261
4262 /* success */
4263 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4264 return 0;
4265
4266unwind:
4267 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4268 tmp_sa.sa_family = bond_dev->type;
4269
4270 /* unwind from head to the slave that failed */
4271 stop_at = slave;
4272 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4273 int tmp_res;
4274
4275 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4276 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004277 pr_debug("unwind err %d dev %s\n",
4278 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 }
4280 }
4281
4282 return res;
4283}
4284
4285static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4286{
Wang Chen454d7c92008-11-12 23:37:49 -08004287 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004289 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004290 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291
4292 read_lock(&bond->lock);
4293
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004294 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004296 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004297 * Start with the curr_active_slave that joined the bond as the
4298 * default for sending IGMP traffic. For failover purposes one
4299 * needs to maintain some consistency for the interface that will
4300 * send the join/membership reports. The curr_active_slave found
4301 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004302 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004303 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004304 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004306 read_lock(&bond->curr_slave_lock);
4307 slave = bond->curr_active_slave;
4308 read_unlock(&bond->curr_slave_lock);
4309
4310 if (!slave)
4311 goto out;
4312 } else {
4313 /*
4314 * Concurrent TX may collide on rr_tx_counter; we accept
4315 * that as being rare enough not to justify using an
4316 * atomic op here.
4317 */
4318 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4319
4320 bond_for_each_slave(bond, slave, i) {
4321 slave_no--;
4322 if (slave_no < 0)
4323 break;
4324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 }
4326
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004327 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 bond_for_each_slave_from(bond, slave, i, start_at) {
4329 if (IS_UP(slave->dev) &&
4330 (slave->link == BOND_LINK_UP) &&
4331 (slave->state == BOND_STATE_ACTIVE)) {
4332 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 break;
4334 }
4335 }
4336
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337out:
4338 if (res) {
4339 /* no suitable interface, frame not sent */
4340 dev_kfree_skb(skb);
4341 }
4342 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004343 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344}
4345
John W. Linville075897c2005-09-28 17:50:53 -04004346
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347/*
4348 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4349 * the bond has a usable interface.
4350 */
4351static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4352{
Wang Chen454d7c92008-11-12 23:37:49 -08004353 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 int res = 1;
4355
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 read_lock(&bond->lock);
4357 read_lock(&bond->curr_slave_lock);
4358
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004359 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
John W. Linville075897c2005-09-28 17:50:53 -04004362 if (!bond->curr_active_slave)
4363 goto out;
4364
John W. Linville075897c2005-09-28 17:50:53 -04004365 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004368 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 /* no suitable interface, frame not sent */
4370 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004371
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 read_unlock(&bond->curr_slave_lock);
4373 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004374 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375}
4376
4377/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004378 * In bond_xmit_xor() , we determine the output device by using a pre-
4379 * determined xmit_hash_policy(), If the selected device is not enabled,
4380 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 */
4382static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4383{
Wang Chen454d7c92008-11-12 23:37:49 -08004384 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 struct slave *slave, *start_at;
4386 int slave_no;
4387 int i;
4388 int res = 1;
4389
4390 read_lock(&bond->lock);
4391
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004392 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394
Jasper Spaansa361c832009-10-23 04:09:24 +00004395 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 bond_for_each_slave(bond, slave, i) {
4398 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004399 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 }
4402
4403 start_at = slave;
4404
4405 bond_for_each_slave_from(bond, slave, i, start_at) {
4406 if (IS_UP(slave->dev) &&
4407 (slave->link == BOND_LINK_UP) &&
4408 (slave->state == BOND_STATE_ACTIVE)) {
4409 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4410 break;
4411 }
4412 }
4413
4414out:
4415 if (res) {
4416 /* no suitable interface, frame not sent */
4417 dev_kfree_skb(skb);
4418 }
4419 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004420 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421}
4422
4423/*
4424 * in broadcast mode, we send everything to all usable interfaces.
4425 */
4426static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4427{
Wang Chen454d7c92008-11-12 23:37:49 -08004428 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 struct slave *slave, *start_at;
4430 struct net_device *tx_dev = NULL;
4431 int i;
4432 int res = 1;
4433
4434 read_lock(&bond->lock);
4435
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004436 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
4439 read_lock(&bond->curr_slave_lock);
4440 start_at = bond->curr_active_slave;
4441 read_unlock(&bond->curr_slave_lock);
4442
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004443 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
4446 bond_for_each_slave_from(bond, slave, i, start_at) {
4447 if (IS_UP(slave->dev) &&
4448 (slave->link == BOND_LINK_UP) &&
4449 (slave->state == BOND_STATE_ACTIVE)) {
4450 if (tx_dev) {
4451 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4452 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004453 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004454 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 continue;
4456 }
4457
4458 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4459 if (res) {
4460 dev_kfree_skb(skb2);
4461 continue;
4462 }
4463 }
4464 tx_dev = slave->dev;
4465 }
4466 }
4467
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004468 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470
4471out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004472 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 /* no suitable interface, frame not sent */
4474 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004475
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 /* frame sent to all suitable interfaces */
4477 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004478 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479}
4480
4481/*------------------------- Device initialization ---------------------------*/
4482
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004483static void bond_set_xmit_hash_policy(struct bonding *bond)
4484{
4485 switch (bond->params.xmit_policy) {
4486 case BOND_XMIT_POLICY_LAYER23:
4487 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4488 break;
4489 case BOND_XMIT_POLICY_LAYER34:
4490 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4491 break;
4492 case BOND_XMIT_POLICY_LAYER2:
4493 default:
4494 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4495 break;
4496 }
4497}
4498
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004499/*
4500 * Lookup the slave that corresponds to a qid
4501 */
4502static inline int bond_slave_override(struct bonding *bond,
4503 struct sk_buff *skb)
4504{
4505 int i, res = 1;
4506 struct slave *slave = NULL;
4507 struct slave *check_slave;
4508
4509 read_lock(&bond->lock);
4510
4511 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4512 goto out;
4513
4514 /* Find out if any slaves have the same mapping as this skb. */
4515 bond_for_each_slave(bond, check_slave, i) {
4516 if (check_slave->queue_id == skb->queue_mapping) {
4517 slave = check_slave;
4518 break;
4519 }
4520 }
4521
4522 /* If the slave isn't UP, use default transmit policy. */
4523 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4524 (slave->link == BOND_LINK_UP)) {
4525 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4526 }
4527
4528out:
4529 read_unlock(&bond->lock);
4530 return res;
4531}
4532
4533static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4534{
4535 /*
4536 * This helper function exists to help dev_pick_tx get the correct
4537 * destination queue. Using a helper function skips the a call to
4538 * skb_tx_hash and will put the skbs in the queue we expect on their
4539 * way down to the bonding driver.
4540 */
4541 return skb->queue_mapping;
4542}
4543
Stephen Hemminger424efe92009-08-31 19:50:51 +00004544static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004545{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004546 struct bonding *bond = netdev_priv(dev);
4547
Neil Hormane843fa52010-10-13 16:01:50 +00004548 /*
4549 * If we risk deadlock from transmitting this in the
4550 * netpoll path, tell netpoll to queue the frame for later tx
4551 */
4552 if (is_netpoll_tx_blocked(dev))
4553 return NETDEV_TX_BUSY;
4554
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004555 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4556 if (!bond_slave_override(bond, skb))
4557 return NETDEV_TX_OK;
4558 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004559
4560 switch (bond->params.mode) {
4561 case BOND_MODE_ROUNDROBIN:
4562 return bond_xmit_roundrobin(skb, dev);
4563 case BOND_MODE_ACTIVEBACKUP:
4564 return bond_xmit_activebackup(skb, dev);
4565 case BOND_MODE_XOR:
4566 return bond_xmit_xor(skb, dev);
4567 case BOND_MODE_BROADCAST:
4568 return bond_xmit_broadcast(skb, dev);
4569 case BOND_MODE_8023AD:
4570 return bond_3ad_xmit_xor(skb, dev);
4571 case BOND_MODE_ALB:
4572 case BOND_MODE_TLB:
4573 return bond_alb_xmit(skb, dev);
4574 default:
4575 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004576 pr_err("%s: Error: Unknown bonding mode %d\n",
4577 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004578 WARN_ON_ONCE(1);
4579 dev_kfree_skb(skb);
4580 return NETDEV_TX_OK;
4581 }
4582}
4583
4584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585/*
4586 * set bond mode specific net device operations
4587 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004588void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004590 struct net_device *bond_dev = bond->dev;
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 switch (mode) {
4593 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 break;
4595 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 break;
4597 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004598 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 break;
4600 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 break;
4602 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004603 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004604 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004607 bond_set_master_alb_flags(bond);
4608 /* FALLTHRU */
4609 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 break;
4611 default:
4612 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004613 pr_err("%s: Error: Unknown bonding mode %d\n",
4614 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 break;
4616 }
4617}
4618
Jay Vosburgh217df672005-09-26 16:11:50 -07004619static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4620 struct ethtool_drvinfo *drvinfo)
4621{
4622 strncpy(drvinfo->driver, DRV_NAME, 32);
4623 strncpy(drvinfo->version, DRV_VERSION, 32);
4624 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4625}
4626
Jeff Garzik7282d492006-09-13 14:30:00 -04004627static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004628 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004629 .get_link = ethtool_op_get_link,
4630 .get_tx_csum = ethtool_op_get_tx_csum,
4631 .get_sg = ethtool_op_get_sg,
4632 .get_tso = ethtool_op_get_tso,
4633 .get_ufo = ethtool_op_get_ufo,
4634 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004635};
4636
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004637static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004638 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004639 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004640 .ndo_open = bond_open,
4641 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004642 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004643 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004644 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004645 .ndo_do_ioctl = bond_do_ioctl,
4646 .ndo_set_multicast_list = bond_set_multicast_list,
4647 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004648 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004649 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004650 .ndo_vlan_rx_register = bond_vlan_rx_register,
4651 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4652 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004653#ifdef CONFIG_NET_POLL_CONTROLLER
4654 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4655 .ndo_poll_controller = bond_poll_controller,
4656#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004657};
4658
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004659static void bond_destructor(struct net_device *bond_dev)
4660{
4661 struct bonding *bond = netdev_priv(bond_dev);
4662 if (bond->wq)
4663 destroy_workqueue(bond->wq);
4664 free_netdev(bond_dev);
4665}
4666
Stephen Hemminger181470f2009-06-12 19:02:52 +00004667static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668{
Wang Chen454d7c92008-11-12 23:37:49 -08004669 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 /* initialize rwlocks */
4672 rwlock_init(&bond->lock);
4673 rwlock_init(&bond->curr_slave_lock);
4674
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004675 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676
4677 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 bond->dev = bond_dev;
4679 INIT_LIST_HEAD(&bond->vlan_list);
4680
4681 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004682 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004683 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004684 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004685 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004687 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
4689 /* Initialize the device options */
4690 bond_dev->tx_queue_len = 0;
4691 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004692 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004693 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4694
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004695 if (bond->params.arp_interval)
4696 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
4698 /* At first, we block adding VLANs. That's the only way to
4699 * prevent problems that occur when adding VLANs over an
4700 * empty bond. The block will be removed once non-challenged
4701 * slaves are enslaved.
4702 */
4703 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4704
Herbert Xu932ff272006-06-09 12:20:56 -07004705 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 * transmitting */
4707 bond_dev->features |= NETIF_F_LLTX;
4708
4709 /* By default, we declare the bond to be fully
4710 * VLAN hardware accelerated capable. Special
4711 * care is taken in the various xmit functions
4712 * when there are slaves that are not hw accel
4713 * capable
4714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4716 NETIF_F_HW_VLAN_RX |
4717 NETIF_F_HW_VLAN_FILTER);
4718
Eric Dumazete6599c22010-09-17 09:25:07 +00004719 /* By default, we enable GRO on bonding devices.
4720 * Actual support requires lowlevel drivers are GRO ready.
4721 */
4722 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723}
4724
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004725static void bond_work_cancel_all(struct bonding *bond)
4726{
4727 write_lock_bh(&bond->lock);
4728 bond->kill_timers = 1;
4729 write_unlock_bh(&bond->lock);
4730
4731 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4732 cancel_delayed_work(&bond->mii_work);
4733
4734 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4735 cancel_delayed_work(&bond->arp_work);
4736
4737 if (bond->params.mode == BOND_MODE_ALB &&
4738 delayed_work_pending(&bond->alb_work))
4739 cancel_delayed_work(&bond->alb_work);
4740
4741 if (bond->params.mode == BOND_MODE_8023AD &&
4742 delayed_work_pending(&bond->ad_work))
4743 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004744
4745 if (delayed_work_pending(&bond->mcast_work))
4746 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004747}
4748
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004749/*
4750* Destroy a bonding device.
4751* Must be under rtnl_lock when this function is called.
4752*/
4753static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004754{
Wang Chen454d7c92008-11-12 23:37:49 -08004755 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004756 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004757
WANG Congf6dc31a2010-05-06 00:48:51 -07004758 bond_netpoll_cleanup(bond_dev);
4759
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004760 /* Release the bonded slaves */
4761 bond_release_all(bond_dev);
4762
Jay Vosburgha434e432008-10-30 17:41:15 -07004763 list_del(&bond->bond_list);
4764
4765 bond_work_cancel_all(bond);
4766
Jay Vosburgha434e432008-10-30 17:41:15 -07004767 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004768
Jiri Pirko22bedad32010-04-01 21:22:57 +00004769 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004770
4771 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4772 list_del(&vlan->vlan_list);
4773 kfree(vlan);
4774 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004775}
4776
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777/*------------------------- Module initialization ---------------------------*/
4778
4779/*
4780 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004781 * number of the mode or its string name. A bit complicated because
4782 * some mode names are substrings of other names, and calls from sysfs
4783 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004785int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786{
Hannes Eder54b87322009-02-14 11:15:49 +00004787 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004788 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004789
Jay Vosburgha42e5342008-01-29 18:07:43 -08004790 for (p = (char *)buf; *p; p++)
4791 if (!(isdigit(*p) || isspace(*p)))
4792 break;
4793
4794 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004795 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004796 else
Hannes Eder54b87322009-02-14 11:15:49 +00004797 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004798
4799 if (!rv)
4800 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
4802 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004803 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004805 if (strcmp(modestr, tbl[i].modename) == 0)
4806 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 }
4808
4809 return -1;
4810}
4811
4812static int bond_check_params(struct bond_params *params)
4813{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004814 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004815
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 /*
4817 * Convert string parameters.
4818 */
4819 if (mode) {
4820 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4821 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004822 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 mode == NULL ? "NULL" : mode);
4824 return -EINVAL;
4825 }
4826 }
4827
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004828 if (xmit_hash_policy) {
4829 if ((bond_mode != BOND_MODE_XOR) &&
4830 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004831 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004832 bond_mode_name(bond_mode));
4833 } else {
4834 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4835 xmit_hashtype_tbl);
4836 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004837 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004838 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004839 xmit_hash_policy);
4840 return -EINVAL;
4841 }
4842 }
4843 }
4844
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 if (lacp_rate) {
4846 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004847 pr_info("lacp_rate param is irrelevant in mode %s\n",
4848 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 } else {
4850 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4851 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004852 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 lacp_rate == NULL ? "NULL" : lacp_rate);
4854 return -EINVAL;
4855 }
4856 }
4857 }
4858
Jay Vosburghfd989c82008-11-04 17:51:16 -08004859 if (ad_select) {
4860 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4861 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004862 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004863 ad_select == NULL ? "NULL" : ad_select);
4864 return -EINVAL;
4865 }
4866
4867 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004868 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004869 }
4870 } else {
4871 params->ad_select = BOND_AD_STABLE;
4872 }
4873
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004874 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004875 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4876 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877 max_bonds = BOND_DEFAULT_MAX_BONDS;
4878 }
4879
4880 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004881 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4882 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 miimon = BOND_LINK_MON_INTERV;
4884 }
4885
4886 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004887 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4888 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 updelay = 0;
4890 }
4891
4892 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004893 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4894 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 downdelay = 0;
4896 }
4897
4898 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004899 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4900 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 use_carrier = 1;
4902 }
4903
Moni Shoua7893b242008-05-17 21:10:12 -07004904 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004905 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 -08004906 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004907 num_grat_arp = 1;
4908 }
4909
Brian Haley305d5522008-11-04 17:51:14 -08004910 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004911 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 -08004912 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004913 num_unsol_na = 1;
4914 }
4915
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 /* reset values for 802.3ad */
4917 if (bond_mode == BOND_MODE_8023AD) {
4918 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004919 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 +00004920 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 miimon = 100;
4922 }
4923 }
4924
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004925 if (tx_queues < 1 || tx_queues > 255) {
4926 pr_warning("Warning: tx_queues (%d) should be between "
4927 "1 and 255, resetting to %d\n",
4928 tx_queues, BOND_DEFAULT_TX_QUEUES);
4929 tx_queues = BOND_DEFAULT_TX_QUEUES;
4930 }
4931
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004932 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4933 pr_warning("Warning: all_slaves_active module parameter (%d), "
4934 "not of valid value (0/1), so it was set to "
4935 "0\n", all_slaves_active);
4936 all_slaves_active = 0;
4937 }
4938
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004939 if (resend_igmp < 0 || resend_igmp > 255) {
4940 pr_warning("Warning: resend_igmp (%d) should be between "
4941 "0 and 255, resetting to %d\n",
4942 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4943 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4944 }
4945
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 /* reset values for TLB/ALB */
4947 if ((bond_mode == BOND_MODE_TLB) ||
4948 (bond_mode == BOND_MODE_ALB)) {
4949 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004950 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 +00004951 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952 miimon = 100;
4953 }
4954 }
4955
4956 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004957 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",
4958 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 }
4960
4961 if (!miimon) {
4962 if (updelay || downdelay) {
4963 /* just warn the user the up/down delay will have
4964 * no effect since miimon is zero...
4965 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004966 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",
4967 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 }
4969 } else {
4970 /* don't allow arp monitoring */
4971 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004972 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4973 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 arp_interval = 0;
4975 }
4976
4977 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004978 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4979 updelay, miimon,
4980 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 }
4982
4983 updelay /= miimon;
4984
4985 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004986 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4987 downdelay, miimon,
4988 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 }
4990
4991 downdelay /= miimon;
4992 }
4993
4994 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004995 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4996 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 arp_interval = BOND_LINK_ARP_INTERV;
4998 }
4999
5000 for (arp_ip_count = 0;
5001 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5002 arp_ip_count++) {
5003 /* not complete check, but should be good enough to
5004 catch mistakes */
5005 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005006 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5007 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008 arp_interval = 0;
5009 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04005010 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 arp_target[arp_ip_count] = ip;
5012 }
5013 }
5014
5015 if (arp_interval && !arp_ip_count) {
5016 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005017 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5018 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 arp_interval = 0;
5020 }
5021
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005022 if (arp_validate) {
5023 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005024 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005025 return -EINVAL;
5026 }
5027 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005028 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005029 return -EINVAL;
5030 }
5031
5032 arp_validate_value = bond_parse_parm(arp_validate,
5033 arp_validate_tbl);
5034 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005035 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005036 arp_validate == NULL ? "NULL" : arp_validate);
5037 return -EINVAL;
5038 }
5039 } else
5040 arp_validate_value = 0;
5041
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005043 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 } else if (arp_interval) {
5045 int i;
5046
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005047 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5048 arp_interval,
5049 arp_validate_tbl[arp_validate_value].modename,
5050 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
5052 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005053 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00005055 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
Jay Vosburghb8a97872008-06-13 18:12:04 -07005057 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 /* miimon and arp_interval not set, we need one so things
5059 * work as expected, see bonding.txt for details
5060 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005061 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 -07005062 }
5063
5064 if (primary && !USES_PRIMARY(bond_mode)) {
5065 /* currently, using a primary only makes sense
5066 * in active backup, TLB or ALB modes
5067 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005068 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5069 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070 primary = NULL;
5071 }
5072
Jiri Pirkoa5499522009-09-25 03:28:09 +00005073 if (primary && primary_reselect) {
5074 primary_reselect_value = bond_parse_parm(primary_reselect,
5075 pri_reselect_tbl);
5076 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005077 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00005078 primary_reselect ==
5079 NULL ? "NULL" : primary_reselect);
5080 return -EINVAL;
5081 }
5082 } else {
5083 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5084 }
5085
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005086 if (fail_over_mac) {
5087 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5088 fail_over_mac_tbl);
5089 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005090 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005091 arp_validate == NULL ? "NULL" : arp_validate);
5092 return -EINVAL;
5093 }
5094
5095 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005096 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005097 } else {
5098 fail_over_mac_value = BOND_FOM_NONE;
5099 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005100
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 /* fill params struct with the proper values */
5102 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005103 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005105 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005106 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005108 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 params->updelay = updelay;
5110 params->downdelay = downdelay;
5111 params->use_carrier = use_carrier;
5112 params->lacp_fast = lacp_fast;
5113 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00005114 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005115 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005116 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00005117 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00005118 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
5120 if (primary) {
5121 strncpy(params->primary, primary, IFNAMSIZ);
5122 params->primary[IFNAMSIZ - 1] = 0;
5123 }
5124
5125 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5126
5127 return 0;
5128}
5129
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005130static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005131static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005132
David S. Millere8a04642008-07-17 00:34:19 -07005133static void bond_set_lockdep_class_one(struct net_device *dev,
5134 struct netdev_queue *txq,
5135 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005136{
5137 lockdep_set_class(&txq->_xmit_lock,
5138 &bonding_netdev_xmit_lock_key);
5139}
5140
5141static void bond_set_lockdep_class(struct net_device *dev)
5142{
David S. Millercf508b12008-07-22 14:16:42 -07005143 lockdep_set_class(&dev->addr_list_lock,
5144 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005145 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005146}
5147
Stephen Hemminger181470f2009-06-12 19:02:52 +00005148/*
5149 * Called from registration process
5150 */
5151static int bond_init(struct net_device *bond_dev)
5152{
5153 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005154 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005155
5156 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5157
5158 bond->wq = create_singlethread_workqueue(bond_dev->name);
5159 if (!bond->wq)
5160 return -ENOMEM;
5161
5162 bond_set_lockdep_class(bond_dev);
5163
5164 netif_carrier_off(bond_dev);
5165
5166 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005167 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005168
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005169 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005170
5171 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005172 return 0;
5173}
5174
Eric W. Biederman88ead972009-10-29 14:18:25 +00005175static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5176{
5177 if (tb[IFLA_ADDRESS]) {
5178 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5179 return -EINVAL;
5180 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5181 return -EADDRNOTAVAIL;
5182 }
5183 return 0;
5184}
5185
5186static struct rtnl_link_ops bond_link_ops __read_mostly = {
5187 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005188 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005189 .setup = bond_setup,
5190 .validate = bond_validate,
5191};
5192
Mitch Williamsdfe60392005-11-09 10:36:04 -08005193/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005194 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005195 * Caller must NOT hold rtnl_lock; we need to release it here before we
5196 * set up our sysfs entries.
5197 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005198int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005199{
5200 struct net_device *bond_dev;
5201 int res;
5202
5203 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005204
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00005205 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5206 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005207 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005208 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005209 rtnl_unlock();
5210 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005211 }
5212
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005213 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005214 bond_dev->rtnl_link_ops = &bond_link_ops;
5215
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005216 if (!name) {
5217 res = dev_alloc_name(bond_dev, "bond%d");
5218 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005219 goto out;
Neil Horman27e6f062010-10-05 03:39:21 +00005220 } else {
5221 /*
5222 * If we're given a name to register
5223 * we need to ensure that its not already
5224 * registered
5225 */
5226 res = -EEXIST;
5227 if (__dev_get_by_name(net, name) != NULL)
5228 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005229 }
5230
Mitch Williamsdfe60392005-11-09 10:36:04 -08005231 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005232
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005233out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005234 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005235 if (res < 0)
5236 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005237 return res;
5238}
5239
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005240static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005241{
Eric W. Biederman15449742009-11-29 15:46:04 +00005242 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005243
5244 bn->net = net;
5245 INIT_LIST_HEAD(&bn->dev_list);
5246
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005247 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005248
5249 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005250}
5251
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005252static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005253{
Eric W. Biederman15449742009-11-29 15:46:04 +00005254 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005255
5256 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005257}
5258
5259static struct pernet_operations bond_net_ops = {
5260 .init = bond_net_init,
5261 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005262 .id = &bond_net_id,
5263 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005264};
5265
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266static int __init bonding_init(void)
5267{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 int i;
5269 int res;
5270
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005271 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272
Mitch Williamsdfe60392005-11-09 10:36:04 -08005273 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005274 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005275 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
Eric W. Biederman15449742009-11-29 15:46:04 +00005277 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005278 if (res)
5279 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005280
Eric W. Biederman88ead972009-10-29 14:18:25 +00005281 res = rtnl_link_register(&bond_link_ops);
5282 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005283 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005284
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005286 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005287 if (res)
5288 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 }
5290
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005291 res = bond_create_sysfs();
5292 if (res)
5293 goto err;
5294
Neil Hormane843fa52010-10-13 16:01:50 +00005295
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005297 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005298 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005299out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005301err:
5302 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005303err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005304 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005305 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005306
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307}
5308
5309static void __exit bonding_exit(void)
5310{
5311 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005312 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005313 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005315 bond_destroy_sysfs();
5316
Eric W. Biederman88ead972009-10-29 14:18:25 +00005317 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005318 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005319
5320#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +00005321 /*
5322 * Make sure we don't have an imbalance on our netpoll blocking
5323 */
5324 WARN_ON(atomic_read(&netpoll_block_tx));
Neil Hormane843fa52010-10-13 16:01:50 +00005325#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326}
5327
5328module_init(bonding_init);
5329module_exit(bonding_exit);
5330MODULE_LICENSE("GPL");
5331MODULE_VERSION(DRV_VERSION);
5332MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5333MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005334MODULE_ALIAS_RTNL_LINK("bond");