blob: f22f6bf438581e735e1d418dc41c7bdb8f2f386a [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>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040079#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020080#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000081#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include "bonding.h"
83#include "bond_3ad.h"
84#include "bond_alb.h"
85
86/*---------------------------- Module parameters ----------------------------*/
87
88/* monitor all links that often (in milliseconds). <=0 disables monitoring */
89#define BOND_LINK_MON_INTERV 0
90#define BOND_LINK_ARP_INTERV 0
91
92static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Moni Shoua7893b242008-05-17 21:10:12 -070093static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080094static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000096static int updelay;
97static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000099static char *mode;
100static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000101static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000102static char *lacp_rate;
103static char *ad_select;
104static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000106static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
107static char *arp_validate;
108static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000109static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000110static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112module_param(max_bonds, int, 0);
113MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Moni Shoua7893b242008-05-17 21:10:12 -0700114module_param(num_grat_arp, int, 0644);
115MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800116module_param(num_unsol_na, int, 0644);
117MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118module_param(miimon, int, 0);
119MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
120module_param(updelay, int, 0);
121MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
122module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800123MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
124 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800126MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
127 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800129MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
130 "1 for active-backup, 2 for balance-xor, "
131 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
132 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133module_param(primary, charp, 0);
134MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000135module_param(primary_reselect, charp, 0);
136MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
137 "once it comes up; "
138 "0 for always (default), "
139 "1 for only if speed of primary is "
140 "better, "
141 "2 for only on active slave "
142 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800144MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
145 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800146module_param(ad_select, charp, 0);
147MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400148module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800149MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
150 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151module_param(arp_interval, int, 0);
152MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
153module_param_array(arp_ip_target, charp, NULL, 0);
154MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700155module_param(arp_validate, charp, 0);
156MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700157module_param(fail_over_mac, charp, 0);
158MODULE_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 +0000159module_param(all_slaves_active, int, 0);
160MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
161 "by setting active flag for all slaves. "
162 "0 for never (default), 1 for always.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/*----------------------------- Global variables ----------------------------*/
165
Arjan van de Venf71e1302006-03-03 21:33:57 -0500166static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
168
Eric Dumazetf99189b2009-11-17 10:42:49 +0000169int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000171static __be32 arp_target[BOND_MAX_ARP_TARGETS];
172static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000174static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
175static int lacp_fast;
Jay Vosburgh217df672005-09-26 16:11:50 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800178const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{ "slow", AD_LACP_SLOW},
180{ "fast", AD_LACP_FAST},
181{ NULL, -1},
182};
183
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800184const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{ "balance-rr", BOND_MODE_ROUNDROBIN},
186{ "active-backup", BOND_MODE_ACTIVEBACKUP},
187{ "balance-xor", BOND_MODE_XOR},
188{ "broadcast", BOND_MODE_BROADCAST},
189{ "802.3ad", BOND_MODE_8023AD},
190{ "balance-tlb", BOND_MODE_TLB},
191{ "balance-alb", BOND_MODE_ALB},
192{ NULL, -1},
193};
194
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800195const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400196{ "layer2", BOND_XMIT_POLICY_LAYER2},
197{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800198{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400199{ NULL, -1},
200};
201
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800202const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700203{ "none", BOND_ARP_VALIDATE_NONE},
204{ "active", BOND_ARP_VALIDATE_ACTIVE},
205{ "backup", BOND_ARP_VALIDATE_BACKUP},
206{ "all", BOND_ARP_VALIDATE_ALL},
207{ NULL, -1},
208};
209
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800210const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700211{ "none", BOND_FOM_NONE},
212{ "active", BOND_FOM_ACTIVE},
213{ "follow", BOND_FOM_FOLLOW},
214{ NULL, -1},
215};
216
Jiri Pirkoa5499522009-09-25 03:28:09 +0000217const struct bond_parm_tbl pri_reselect_tbl[] = {
218{ "always", BOND_PRI_RESELECT_ALWAYS},
219{ "better", BOND_PRI_RESELECT_BETTER},
220{ "failure", BOND_PRI_RESELECT_FAILURE},
221{ NULL, -1},
222};
223
Jay Vosburghfd989c82008-11-04 17:51:16 -0800224struct bond_parm_tbl ad_select_tbl[] = {
225{ "stable", BOND_AD_STABLE},
226{ "bandwidth", BOND_AD_BANDWIDTH},
227{ "count", BOND_AD_COUNT},
228{ NULL, -1},
229};
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*-------------------------- Forward declarations ---------------------------*/
232
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400233static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000234static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000235static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237/*---------------------------- General routines -----------------------------*/
238
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700239static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800241 static const char *names[] = {
242 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
243 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
244 [BOND_MODE_XOR] = "load balancing (xor)",
245 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000246 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800247 [BOND_MODE_TLB] = "transmit load balancing",
248 [BOND_MODE_ALB] = "adaptive load balancing",
249 };
250
251 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800253
254 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257/*---------------------------------- VLAN -----------------------------------*/
258
259/**
260 * bond_add_vlan - add a new vlan id on bond
261 * @bond: bond that got the notification
262 * @vlan_id: the vlan id to add
263 *
264 * Returns -ENOMEM if allocation failed.
265 */
266static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
267{
268 struct vlan_entry *vlan;
269
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800270 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800271 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Brian Haley305d5522008-11-04 17:51:14 -0800273 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000274 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 INIT_LIST_HEAD(&vlan->vlan_list);
278 vlan->vlan_id = vlan_id;
279
280 write_lock_bh(&bond->lock);
281
282 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
283
284 write_unlock_bh(&bond->lock);
285
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800286 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return 0;
289}
290
291/**
292 * bond_del_vlan - delete a vlan id from bond
293 * @bond: bond that got the notification
294 * @vlan_id: the vlan id to delete
295 *
296 * returns -ENODEV if @vlan_id was not found in @bond.
297 */
298static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
299{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700300 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 int res = -ENODEV;
302
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800303 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 write_lock_bh(&bond->lock);
306
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700307 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (vlan->vlan_id == vlan_id) {
309 list_del(&vlan->vlan_list);
310
Holger Eitzenberger58402052008-12-09 23:07:13 -0800311 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800314 pr_debug("removed VLAN ID %d from bond %s\n",
315 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 kfree(vlan);
318
319 if (list_empty(&bond->vlan_list) &&
320 (bond->slave_cnt == 0)) {
321 /* Last VLAN removed and no slaves, so
322 * restore block on adding VLANs. This will
323 * be removed once new slaves that are not
324 * VLAN challenged will be added.
325 */
326 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
327 }
328
329 res = 0;
330 goto out;
331 }
332 }
333
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800334 pr_debug("couldn't find VLAN ID %d in bond %s\n",
335 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337out:
338 write_unlock_bh(&bond->lock);
339 return res;
340}
341
342/**
343 * bond_has_challenged_slaves
344 * @bond: the bond we're working on
345 *
346 * Searches the slave list. Returns 1 if a vlan challenged slave
347 * was found, 0 otherwise.
348 *
349 * Assumes bond->lock is held.
350 */
351static int bond_has_challenged_slaves(struct bonding *bond)
352{
353 struct slave *slave;
354 int i;
355
356 bond_for_each_slave(bond, slave, i) {
357 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800358 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800359 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 1;
361 }
362 }
363
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800364 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return 0;
366}
367
368/**
369 * bond_next_vlan - safely skip to the next item in the vlans list.
370 * @bond: the bond we're working on
371 * @curr: item we're advancing from
372 *
373 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
374 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000375 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * Caller must hold bond->lock
377 */
378struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
379{
380 struct vlan_entry *next, *last;
381
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000382 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (!curr) {
386 next = list_entry(bond->vlan_list.next,
387 struct vlan_entry, vlan_list);
388 } else {
389 last = list_entry(bond->vlan_list.prev,
390 struct vlan_entry, vlan_list);
391 if (last == curr) {
392 next = list_entry(bond->vlan_list.next,
393 struct vlan_entry, vlan_list);
394 } else {
395 next = list_entry(curr->vlan_list.next,
396 struct vlan_entry, vlan_list);
397 }
398 }
399
400 return next;
401}
402
403/**
404 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000405 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * @bond: bond device that got this skb for tx.
407 * @skb: hw accel VLAN tagged skb to transmit
408 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000409 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * When the bond gets an skb to transmit that is
411 * already hardware accelerated VLAN tagged, and it
412 * needs to relay this skb to a slave that is not
413 * hw accel capable, the skb needs to be "unaccelerated",
414 * i.e. strip the hwaccel tag and re-insert it as part
415 * of the payload.
416 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000417int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
418 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700420 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 if (!list_empty(&bond->vlan_list) &&
423 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
424 vlan_get_tag(skb, &vlan_id) == 0) {
425 skb->dev = slave_dev;
426 skb = vlan_put_tag(skb, vlan_id);
427 if (!skb) {
428 /* vlan_put_tag() frees the skb in case of error,
429 * so return success here so the calling functions
430 * won't attempt to free is again.
431 */
432 return 0;
433 }
434 } else {
435 skb->dev = slave_dev;
436 }
437
438 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700439#ifdef CONFIG_NET_POLL_CONTROLLER
440 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
441 struct netpoll *np = bond->dev->npinfo->netpoll;
442 slave_dev->npinfo = bond->dev->npinfo;
443 np->real_dev = np->dev = skb->dev;
444 slave_dev->priv_flags |= IFF_IN_NETPOLL;
445 netpoll_send_skb(np, skb);
446 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
447 np->dev = bond->dev;
448 } else
449#endif
450 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 return 0;
453}
454
455/*
456 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
457 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
458 * lock because:
459 * a. This operation is performed in IOCTL context,
460 * b. The operation is protected by the RTNL semaphore in the 8021q code,
461 * c. Holding a lock with BH disabled while directly calling a base driver
462 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000463 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * The design of synchronization/protection for this operation in the 8021q
465 * module is good for one or more VLAN devices over a single physical device
466 * and cannot be extended for a teaming solution like bonding, so there is a
467 * potential race condition here where a net device from the vlan group might
468 * be referenced (either by a base driver or the 8021q code) while it is being
469 * removed from the system. However, it turns out we're not making matters
470 * worse, and if it works for regular VLAN usage it will work here too.
471*/
472
473/**
474 * bond_vlan_rx_register - Propagates registration to slaves
475 * @bond_dev: bonding net device that got called
476 * @grp: vlan group being registered
477 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000478static void bond_vlan_rx_register(struct net_device *bond_dev,
479 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Wang Chen454d7c92008-11-12 23:37:49 -0800481 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct slave *slave;
483 int i;
484
485 bond->vlgrp = grp;
486
487 bond_for_each_slave(bond, slave, i) {
488 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800489 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800492 slave_ops->ndo_vlan_rx_register) {
493 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495 }
496}
497
498/**
499 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
500 * @bond_dev: bonding net device that got called
501 * @vid: vlan id being added
502 */
503static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
504{
Wang Chen454d7c92008-11-12 23:37:49 -0800505 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct slave *slave;
507 int i, res;
508
509 bond_for_each_slave(bond, slave, i) {
510 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800511 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800514 slave_ops->ndo_vlan_rx_add_vid) {
515 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 }
518
519 res = bond_add_vlan(bond, vid);
520 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800521 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 bond_dev->name, vid);
523 }
524}
525
526/**
527 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
528 * @bond_dev: bonding net device that got called
529 * @vid: vlan id being removed
530 */
531static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
532{
Wang Chen454d7c92008-11-12 23:37:49 -0800533 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct slave *slave;
535 struct net_device *vlan_dev;
536 int i, res;
537
538 bond_for_each_slave(bond, slave, i) {
539 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800540 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800543 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* Save and then restore vlan_dev in the grp array,
545 * since the slave's driver might clear it.
546 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800547 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800548 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800549 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551 }
552
553 res = bond_del_vlan(bond, vid);
554 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800555 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 bond_dev->name, vid);
557 }
558}
559
560static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
561{
562 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800563 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 write_lock_bh(&bond->lock);
566
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800567 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800571 slave_ops->ndo_vlan_rx_register)
572 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800575 !(slave_ops->ndo_vlan_rx_add_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800578 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
579 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581out:
582 write_unlock_bh(&bond->lock);
583}
584
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000585static void bond_del_vlans_from_slave(struct bonding *bond,
586 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800588 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 struct vlan_entry *vlan;
590 struct net_device *vlan_dev;
591
592 write_lock_bh(&bond->lock);
593
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800594 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800598 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
602 /* Save and then restore vlan_dev in the grp array,
603 * since the slave's driver might clear it.
604 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800605 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800606 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800607 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609
610unreg:
611 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800612 slave_ops->ndo_vlan_rx_register)
613 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615out:
616 write_unlock_bh(&bond->lock);
617}
618
619/*------------------------------- Link status -------------------------------*/
620
621/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800622 * Set the carrier state for the master according to the state of its
623 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
624 * do special 802.3ad magic.
625 *
626 * Returns zero if carrier state does not change, nonzero if it does.
627 */
628static int bond_set_carrier(struct bonding *bond)
629{
630 struct slave *slave;
631 int i;
632
633 if (bond->slave_cnt == 0)
634 goto down;
635
636 if (bond->params.mode == BOND_MODE_8023AD)
637 return bond_3ad_set_carrier(bond);
638
639 bond_for_each_slave(bond, slave, i) {
640 if (slave->link == BOND_LINK_UP) {
641 if (!netif_carrier_ok(bond->dev)) {
642 netif_carrier_on(bond->dev);
643 return 1;
644 }
645 return 0;
646 }
647 }
648
649down:
650 if (netif_carrier_ok(bond->dev)) {
651 netif_carrier_off(bond->dev);
652 return 1;
653 }
654 return 0;
655}
656
657/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 * Get link speed and duplex from the slave's base driver
659 * using ethtool. If for some reason the call fails or the
660 * values are invalid, fake speed and duplex to 100/Full
661 * and return error.
662 */
663static int bond_update_speed_duplex(struct slave *slave)
664{
665 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700667 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* Fake speed and duplex */
670 slave->speed = SPEED_100;
671 slave->duplex = DUPLEX_FULL;
672
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700673 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700676 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
677 if (res < 0)
678 return -1;
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 switch (etool.speed) {
681 case SPEED_10:
682 case SPEED_100:
683 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700684 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 break;
686 default:
687 return -1;
688 }
689
690 switch (etool.duplex) {
691 case DUPLEX_FULL:
692 case DUPLEX_HALF:
693 break;
694 default:
695 return -1;
696 }
697
698 slave->speed = etool.speed;
699 slave->duplex = etool.duplex;
700
701 return 0;
702}
703
704/*
705 * if <dev> supports MII link status reporting, check its link status.
706 *
707 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000708 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 *
710 * Return either BMSR_LSTATUS, meaning that the link is up (or we
711 * can't tell and just pretend it is), or 0, meaning that the link is
712 * down.
713 *
714 * If reporting is non-zero, instead of faking link up, return -1 if
715 * both ETHTOOL and MII ioctls fail (meaning the device does not
716 * support them). If use_carrier is set, return whatever it says.
717 * It'd be nice if there was a good way to tell if a driver supports
718 * netif_carrier, but there really isn't.
719 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000720static int bond_check_dev_link(struct bonding *bond,
721 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800723 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700724 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct ifreq ifr;
726 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Petri Gynther6c988852009-08-28 12:05:15 +0000728 if (!reporting && !netif_running(slave_dev))
729 return 0;
730
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800731 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jiri Pirko29112f42009-04-24 01:58:23 +0000734 /* Try to get link status using Ethtool first. */
735 if (slave_dev->ethtool_ops) {
736 if (slave_dev->ethtool_ops->get_link) {
737 u32 link;
738
739 link = slave_dev->ethtool_ops->get_link(slave_dev);
740
741 return link ? BMSR_LSTATUS : 0;
742 }
743 }
744
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000745 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800746 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (ioctl) {
748 /* TODO: set pointer to correct ioctl on a per team member */
749 /* bases to make this more efficient. that is, once */
750 /* we determine the correct ioctl, we will always */
751 /* call it and not the others for that team */
752 /* member. */
753
754 /*
755 * We cannot assume that SIOCGMIIPHY will also read a
756 * register; not all network drivers (e.g., e100)
757 * support that.
758 */
759
760 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
761 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
762 mii = if_mii(&ifr);
763 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
764 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000765 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
766 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768 }
769
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700770 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700772 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * cannot report link status). If not reporting, pretend
774 * we're ok.
775 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000776 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
779/*----------------------------- Multicast list ------------------------------*/
780
781/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * Push the promiscuity flag down to appropriate slaves
783 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700784static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700786 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (USES_PRIMARY(bond->params.mode)) {
788 /* write lock already acquired */
789 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700790 err = dev_set_promiscuity(bond->curr_active_slave->dev,
791 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793 } else {
794 struct slave *slave;
795 int i;
796 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700797 err = dev_set_promiscuity(slave->dev, inc);
798 if (err)
799 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700802 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805/*
806 * Push the allmulti flag down to all slaves
807 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700808static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700810 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (USES_PRIMARY(bond->params.mode)) {
812 /* write lock already acquired */
813 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700814 err = dev_set_allmulti(bond->curr_active_slave->dev,
815 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 } else {
818 struct slave *slave;
819 int i;
820 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700821 err = dev_set_allmulti(slave->dev, inc);
822 if (err)
823 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700826 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829/*
830 * Add a Multicast address to slaves
831 * according to mode
832 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000833static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 if (USES_PRIMARY(bond->params.mode)) {
836 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000837 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000838 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 } else {
840 struct slave *slave;
841 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000842
843 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000844 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846}
847
848/*
849 * Remove a multicast address from slave
850 * according to mode
851 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000852static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
854 if (USES_PRIMARY(bond->params.mode)) {
855 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000856 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000857 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 } else {
859 struct slave *slave;
860 int i;
861 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000862 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864 }
865}
866
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800867
868/*
869 * Retrieve the list of registered multicast addresses for the bonding
870 * device and retransmit an IGMP JOIN request to the current active
871 * slave.
872 */
873static void bond_resend_igmp_join_requests(struct bonding *bond)
874{
875 struct in_device *in_dev;
876 struct ip_mc_list *im;
877
878 rcu_read_lock();
879 in_dev = __in_dev_get_rcu(bond->dev);
880 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000881 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800882 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800883 }
884
885 rcu_read_unlock();
886}
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 * flush all members of flush->mc_list from device dev->mc_list
890 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000891static void bond_mc_list_flush(struct net_device *bond_dev,
892 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Wang Chen454d7c92008-11-12 23:37:49 -0800894 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000895 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Jiri Pirko22bedad32010-04-01 21:22:57 +0000897 netdev_for_each_mc_addr(ha, bond_dev)
898 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (bond->params.mode == BOND_MODE_8023AD) {
901 /* del lacpdu mc addr from mc list */
902 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
903
Jiri Pirko22bedad32010-04-01 21:22:57 +0000904 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906}
907
908/*--------------------------- Active slave change ---------------------------*/
909
910/*
911 * Update the mc list and multicast-related flags for the new and
912 * old active slaves (if any) according to the multicast mode, and
913 * promiscuous flags unconditionally.
914 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000915static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
916 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000918 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000920 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 /* nothing to do - mc list is already up-to-date on
922 * all slaves
923 */
924 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000927 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000930 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Jiri Pirko22bedad32010-04-01 21:22:57 +0000933 netdev_for_each_mc_addr(ha, bond->dev)
934 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936
937 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700938 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000939 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000942 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Jiri Pirko22bedad32010-04-01 21:22:57 +0000945 netdev_for_each_mc_addr(ha, bond->dev)
946 dev_mc_add(new_active->dev, ha->addr);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800947 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949}
950
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700951/*
952 * bond_do_fail_over_mac
953 *
954 * Perform special MAC address swapping for fail_over_mac settings
955 *
956 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
957 */
958static void bond_do_fail_over_mac(struct bonding *bond,
959 struct slave *new_active,
960 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000961 __releases(&bond->curr_slave_lock)
962 __releases(&bond->lock)
963 __acquires(&bond->lock)
964 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700965{
966 u8 tmp_mac[ETH_ALEN];
967 struct sockaddr saddr;
968 int rv;
969
970 switch (bond->params.fail_over_mac) {
971 case BOND_FOM_ACTIVE:
972 if (new_active)
973 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
974 new_active->dev->addr_len);
975 break;
976 case BOND_FOM_FOLLOW:
977 /*
978 * if new_active && old_active, swap them
979 * if just old_active, do nothing (going to no active slave)
980 * if just new_active, set new_active to bond's MAC
981 */
982 if (!new_active)
983 return;
984
985 write_unlock_bh(&bond->curr_slave_lock);
986 read_unlock(&bond->lock);
987
988 if (old_active) {
989 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
990 memcpy(saddr.sa_data, old_active->dev->dev_addr,
991 ETH_ALEN);
992 saddr.sa_family = new_active->dev->type;
993 } else {
994 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
995 saddr.sa_family = bond->dev->type;
996 }
997
998 rv = dev_set_mac_address(new_active->dev, &saddr);
999 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001000 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001001 bond->dev->name, -rv, new_active->dev->name);
1002 goto out;
1003 }
1004
1005 if (!old_active)
1006 goto out;
1007
1008 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1009 saddr.sa_family = old_active->dev->type;
1010
1011 rv = dev_set_mac_address(old_active->dev, &saddr);
1012 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001013 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001014 bond->dev->name, -rv, new_active->dev->name);
1015out:
1016 read_lock(&bond->lock);
1017 write_lock_bh(&bond->curr_slave_lock);
1018 break;
1019 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001020 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001021 bond->dev->name, bond->params.fail_over_mac);
1022 break;
1023 }
1024
1025}
1026
Jiri Pirkoa5499522009-09-25 03:28:09 +00001027static bool bond_should_change_active(struct bonding *bond)
1028{
1029 struct slave *prim = bond->primary_slave;
1030 struct slave *curr = bond->curr_active_slave;
1031
1032 if (!prim || !curr || curr->link != BOND_LINK_UP)
1033 return true;
1034 if (bond->force_primary) {
1035 bond->force_primary = false;
1036 return true;
1037 }
1038 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1039 (prim->speed < curr->speed ||
1040 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1041 return false;
1042 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1043 return false;
1044 return true;
1045}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047/**
1048 * find_best_interface - select the best available slave to be the active one
1049 * @bond: our bonding struct
1050 *
1051 * Warning: Caller must hold curr_slave_lock for writing.
1052 */
1053static struct slave *bond_find_best_slave(struct bonding *bond)
1054{
1055 struct slave *new_active, *old_active;
1056 struct slave *bestslave = NULL;
1057 int mintime = bond->params.updelay;
1058 int i;
1059
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001060 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001063 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001065 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 }
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001070 bond->primary_slave->link == BOND_LINK_UP &&
1071 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 new_active = bond->primary_slave;
1073 }
1074
1075 /* remember where to stop iterating over the slaves */
1076 old_active = new_active;
1077
1078 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001079 if (new_active->link == BOND_LINK_UP) {
1080 return new_active;
1081 } else if (new_active->link == BOND_LINK_BACK &&
1082 IS_UP(new_active->dev)) {
1083 /* link up, but waiting for stabilization */
1084 if (new_active->delay < mintime) {
1085 mintime = new_active->delay;
1086 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 }
1089 }
1090
1091 return bestslave;
1092}
1093
1094/**
1095 * change_active_interface - change the active slave into the specified one
1096 * @bond: our bonding struct
1097 * @new: the new slave to make the active one
1098 *
1099 * Set the new slave to the bond's settings and unset them on the old
1100 * curr_active_slave.
1101 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1102 *
1103 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1104 * because it is apparently the best available slave we have, even though its
1105 * updelay hasn't timed out yet.
1106 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001107 * If new_active is not NULL, caller must hold bond->lock for read and
1108 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001110void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 struct slave *old_active = bond->curr_active_slave;
1113
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001114 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001118 new_active->jiffies = jiffies;
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (new_active->link == BOND_LINK_BACK) {
1121 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001122 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1123 bond->dev->name, new_active->dev->name,
1124 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126
1127 new_active->delay = 0;
1128 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001130 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Holger Eitzenberger58402052008-12-09 23:07:13 -08001133 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 } else {
1136 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001137 pr_info("%s: making interface %s the new active one.\n",
1138 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140 }
1141 }
1142
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001143 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Holger Eitzenberger58402052008-12-09 23:07:13 -08001146 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001148 if (old_active)
1149 bond_set_slave_inactive_flags(old_active);
1150 if (new_active)
1151 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else {
1153 bond->curr_active_slave = new_active;
1154 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001155
1156 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001157 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001158 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001159
1160 if (new_active) {
1161 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001162
Or Gerlitz709f8a42008-06-13 18:12:01 -07001163 if (bond->params.fail_over_mac)
1164 bond_do_fail_over_mac(bond, new_active,
1165 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001166
Or Gerlitz709f8a42008-06-13 18:12:01 -07001167 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001168 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001169
Brian Haley305d5522008-11-04 17:51:14 -08001170 bond->send_unsol_na = bond->params.num_unsol_na;
1171 bond_send_unsolicited_na(bond);
1172
Or Gerlitz01f31092008-06-13 18:12:02 -07001173 write_unlock_bh(&bond->curr_slave_lock);
1174 read_unlock(&bond->lock);
1175
Moni Shoua75c78502009-09-15 02:37:40 -07001176 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001177
1178 read_lock(&bond->lock);
1179 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001180 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001181 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001182
1183 /* resend IGMP joins since all were sent on curr_active_slave */
1184 if (bond->params.mode == BOND_MODE_ROUNDROBIN) {
1185 bond_resend_igmp_join_requests(bond);
1186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
1189/**
1190 * bond_select_active_slave - select a new active slave, if needed
1191 * @bond: our bonding struct
1192 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001193 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * - The old curr_active_slave has been released or lost its link.
1195 * - The primary_slave has got its link back.
1196 * - A slave has got its link back and there's no old curr_active_slave.
1197 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001198 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001200void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001203 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 best_slave = bond_find_best_slave(bond);
1206 if (best_slave != bond->curr_active_slave) {
1207 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001208 rv = bond_set_carrier(bond);
1209 if (!rv)
1210 return;
1211
1212 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001213 pr_info("%s: first active interface up!\n",
1214 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001215 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001216 pr_info("%s: now running without any active interface !\n",
1217 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220}
1221
1222/*--------------------------- slave list handling ---------------------------*/
1223
1224/*
1225 * This function attaches the slave to the end of list.
1226 *
1227 * bond->lock held for writing by caller.
1228 */
1229static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1230{
1231 if (bond->first_slave == NULL) { /* attaching the first slave */
1232 new_slave->next = new_slave;
1233 new_slave->prev = new_slave;
1234 bond->first_slave = new_slave;
1235 } else {
1236 new_slave->next = bond->first_slave;
1237 new_slave->prev = bond->first_slave->prev;
1238 new_slave->next->prev = new_slave;
1239 new_slave->prev->next = new_slave;
1240 }
1241
1242 bond->slave_cnt++;
1243}
1244
1245/*
1246 * This function detaches the slave from the list.
1247 * WARNING: no check is made to verify if the slave effectively
1248 * belongs to <bond>.
1249 * Nothing is freed on return, structures are just unchained.
1250 * If any slave pointer in bond was pointing to <slave>,
1251 * it should be changed by the calling function.
1252 *
1253 * bond->lock held for writing by caller.
1254 */
1255static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1256{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001257 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001260 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 if (bond->first_slave == slave) { /* slave is the first slave */
1264 if (bond->slave_cnt > 1) { /* there are more slave */
1265 bond->first_slave = slave->next;
1266 } else {
1267 bond->first_slave = NULL; /* slave was the last one */
1268 }
1269 }
1270
1271 slave->next = NULL;
1272 slave->prev = NULL;
1273 bond->slave_cnt--;
1274}
1275
WANG Congf6dc31a2010-05-06 00:48:51 -07001276#ifdef CONFIG_NET_POLL_CONTROLLER
1277/*
1278 * You must hold read lock on bond->lock before calling this.
1279 */
1280static bool slaves_support_netpoll(struct net_device *bond_dev)
1281{
1282 struct bonding *bond = netdev_priv(bond_dev);
1283 struct slave *slave;
1284 int i = 0;
1285 bool ret = true;
1286
1287 bond_for_each_slave(bond, slave, i) {
1288 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1289 !slave->dev->netdev_ops->ndo_poll_controller)
1290 ret = false;
1291 }
1292 return i != 0 && ret;
1293}
1294
1295static void bond_poll_controller(struct net_device *bond_dev)
1296{
1297 struct net_device *dev = bond_dev->npinfo->netpoll->real_dev;
1298 if (dev != bond_dev)
1299 netpoll_poll_dev(dev);
1300}
1301
1302static void bond_netpoll_cleanup(struct net_device *bond_dev)
1303{
1304 struct bonding *bond = netdev_priv(bond_dev);
1305 struct slave *slave;
1306 const struct net_device_ops *ops;
1307 int i;
1308
1309 read_lock(&bond->lock);
1310 bond_dev->npinfo = NULL;
1311 bond_for_each_slave(bond, slave, i) {
1312 if (slave->dev) {
1313 ops = slave->dev->netdev_ops;
1314 if (ops->ndo_netpoll_cleanup)
1315 ops->ndo_netpoll_cleanup(slave->dev);
1316 else
1317 slave->dev->npinfo = NULL;
1318 }
1319 }
1320 read_unlock(&bond->lock);
1321}
1322
1323#else
1324
1325static void bond_netpoll_cleanup(struct net_device *bond_dev)
1326{
1327}
1328
1329#endif
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331/*---------------------------------- IOCTL ----------------------------------*/
1332
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001333static int bond_sethwaddr(struct net_device *bond_dev,
1334 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001336 pr_debug("bond_dev=%p\n", bond_dev);
1337 pr_debug("slave_dev=%p\n", slave_dev);
1338 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1340 return 0;
1341}
1342
Herbert Xu7f353bf2007-08-10 15:47:58 -07001343#define BOND_VLAN_FEATURES \
1344 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1345 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001346
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001347/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001348 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001349 * feature bits are managed elsewhere, so preserve those feature bits
1350 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001351 */
1352static int bond_compute_features(struct bonding *bond)
1353{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001354 struct slave *slave;
1355 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001356 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001357 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001358 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1359 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001360 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001361
Herbert Xu7f353bf2007-08-10 15:47:58 -07001362 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001363 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1364
1365 if (!bond->first_slave)
1366 goto done;
1367
1368 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001369
Jay Vosburgh278339a2009-08-28 12:05:12 +00001370 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001371 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001372 features = netdev_increment_features(features,
1373 slave->dev->features,
1374 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001375 vlan_features = netdev_increment_features(vlan_features,
1376 slave->dev->vlan_features,
1377 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001378 if (slave->dev->hard_header_len > max_hard_header_len)
1379 max_hard_header_len = slave->dev->hard_header_len;
1380 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001381
Herbert Xub63365a2008-10-23 01:11:29 -07001382done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001383 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001384 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001385 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001386 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001387
1388 return 0;
1389}
1390
Moni Shoua872254d2007-10-09 19:43:38 -07001391static void bond_setup_by_slave(struct net_device *bond_dev,
1392 struct net_device *slave_dev)
1393{
Wang Chen454d7c92008-11-12 23:37:49 -08001394 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001395
Stephen Hemminger00829822008-11-20 20:14:53 -08001396 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001397
1398 bond_dev->type = slave_dev->type;
1399 bond_dev->hard_header_len = slave_dev->hard_header_len;
1400 bond_dev->addr_len = slave_dev->addr_len;
1401
1402 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1403 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001404 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001405}
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001408int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Wang Chen454d7c92008-11-12 23:37:49 -08001410 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001411 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001413 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 struct sockaddr addr;
1415 int link_reporting;
1416 int old_features = bond_dev->features;
1417 int res = 0;
1418
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001419 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001420 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001421 pr_warning("%s: Warning: no link monitoring support for %s\n",
1422 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424
1425 /* bond must be initialized by bond_open() before enslaving */
1426 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001427 pr_warning("%s: master_dev is not up in bond_enslave\n",
1428 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430
1431 /* already enslaved */
1432 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001433 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 return -EBUSY;
1435 }
1436
1437 /* vlan challenged mutual exclusion */
1438 /* no need to lock since we're protected by rtnl_lock */
1439 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001440 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (!list_empty(&bond->vlan_list)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001442 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1443 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return -EPERM;
1445 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001446 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1447 bond_dev->name, slave_dev->name,
1448 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1450 }
1451 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001452 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (bond->slave_cnt == 0) {
1454 /* First slave, and it is not VLAN challenged,
1455 * so remove the block of adding VLANs over the bond.
1456 */
1457 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1458 }
1459 }
1460
Jay Vosburgh217df672005-09-26 16:11:50 -07001461 /*
1462 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001463 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001464 * the current ifenslave will set the interface down prior to
1465 * enslaving it; the old ifenslave will not.
1466 */
1467 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001468 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001469 slave_dev->name);
1470 res = -EPERM;
1471 goto err_undo_flags;
1472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Moni Shoua872254d2007-10-09 19:43:38 -07001474 /* set bonding device ether type by slave - bonding netdevices are
1475 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1476 * there is a need to override some of the type dependent attribs/funcs.
1477 *
1478 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1479 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1480 */
1481 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001482 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001483 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001484 bond_dev->name,
1485 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001486
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001487 res = netdev_bonding_change(bond_dev,
1488 NETDEV_PRE_TYPE_CHANGE);
1489 res = notifier_to_errno(res);
1490 if (res) {
1491 pr_err("%s: refused to change device type\n",
1492 bond_dev->name);
1493 res = -EBUSY;
1494 goto err_undo_flags;
1495 }
Moni Shoua75c78502009-09-15 02:37:40 -07001496
Jiri Pirko32a806c2010-03-19 04:00:23 +00001497 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001498 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001499 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001500
Moni Shouae36b9d12009-07-15 04:56:31 +00001501 if (slave_dev->type != ARPHRD_ETHER)
1502 bond_setup_by_slave(bond_dev, slave_dev);
1503 else
1504 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001505
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001506 netdev_bonding_change(bond_dev,
1507 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001508 }
Moni Shoua872254d2007-10-09 19:43:38 -07001509 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001510 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1511 slave_dev->name,
1512 slave_dev->type, bond_dev->type);
1513 res = -EINVAL;
1514 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001515 }
1516
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001517 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001518 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001519 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1520 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001521 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1522 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001523 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",
1524 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001525 res = -EOPNOTSUPP;
1526 goto err_undo_flags;
1527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001530 /* If this is the first slave, then we need to set the master's hardware
1531 * address to be the same as the slave's. */
1532 if (bond->slave_cnt == 0)
1533 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1534 slave_dev->addr_len);
1535
1536
Joe Jin243cb4e2007-02-06 14:16:40 -08001537 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (!new_slave) {
1539 res = -ENOMEM;
1540 goto err_undo_flags;
1541 }
1542
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001543 /* Save slave's original mtu and then set it to match the bond */
1544 new_slave->original_mtu = slave_dev->mtu;
1545 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1546 if (res) {
1547 pr_debug("Error %d calling dev_set_mtu\n", res);
1548 goto err_free;
1549 }
1550
Jay Vosburgh217df672005-09-26 16:11:50 -07001551 /*
1552 * Save slave's original ("permanent") mac address for modes
1553 * that need it, and for restoring it upon release, and then
1554 * set it to the master's address
1555 */
1556 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Jay Vosburghdd957c52007-10-09 19:57:24 -07001558 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001559 /*
1560 * Set slave to master's mac address. The application already
1561 * set the master's mac address to that of the first slave
1562 */
1563 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1564 addr.sa_family = slave_dev->type;
1565 res = dev_set_mac_address(slave_dev, &addr);
1566 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001567 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001568 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001569 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001572 res = netdev_set_master(slave_dev, bond_dev);
1573 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001574 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001575 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001576 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001577 /* open the slave since the application closed it */
1578 res = dev_open(slave_dev);
1579 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001580 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001581 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001585 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Holger Eitzenberger58402052008-12-09 23:07:13 -08001587 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /* bond_alb_init_slave() must be called before all other stages since
1589 * it might fail and we do not want to have to undo everything
1590 */
1591 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001592 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001593 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595
1596 /* If the mode USES_PRIMARY, then the new slave gets the
1597 * master's promisc (and mc) settings only if it becomes the
1598 * curr_active_slave, and that is taken care of later when calling
1599 * bond_change_active()
1600 */
1601 if (!USES_PRIMARY(bond->params.mode)) {
1602 /* set promiscuity level to new slave */
1603 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001604 res = dev_set_promiscuity(slave_dev, 1);
1605 if (res)
1606 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608
1609 /* set allmulti level to new slave */
1610 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001611 res = dev_set_allmulti(slave_dev, 1);
1612 if (res)
1613 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615
David S. Millerb9e40852008-07-15 00:15:08 -07001616 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001618 netdev_for_each_mc_addr(ha, bond_dev)
1619 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001620 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
1622
1623 if (bond->params.mode == BOND_MODE_8023AD) {
1624 /* add lacpdu mc addr to mc list */
1625 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1626
Jiri Pirko22bedad32010-04-01 21:22:57 +00001627 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629
1630 bond_add_vlans_on_slave(bond, slave_dev);
1631
1632 write_lock_bh(&bond->lock);
1633
1634 bond_attach_slave(bond, new_slave);
1635
1636 new_slave->delay = 0;
1637 new_slave->link_failure_count = 0;
1638
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001639 bond_compute_features(bond);
1640
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001641 write_unlock_bh(&bond->lock);
1642
1643 read_lock(&bond->lock);
1644
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001645 new_slave->last_arp_rx = jiffies;
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (bond->params.miimon && !bond->params.use_carrier) {
1648 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1649
1650 if ((link_reporting == -1) && !bond->params.arp_interval) {
1651 /*
1652 * miimon is set but a bonded network driver
1653 * does not support ETHTOOL/MII and
1654 * arp_interval is not set. Note: if
1655 * use_carrier is enabled, we will never go
1656 * here (because netif_carrier is always
1657 * supported); thus, we don't need to change
1658 * the messages for netif_carrier.
1659 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001660 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 -08001661 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 } else if (link_reporting == -1) {
1663 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001664 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",
1665 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667 }
1668
1669 /* check for initial state */
1670 if (!bond->params.miimon ||
1671 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1672 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001673 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 new_slave->link = BOND_LINK_BACK;
1675 new_slave->delay = bond->params.updelay;
1676 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001677 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 new_slave->link = BOND_LINK_UP;
1679 }
1680 new_slave->jiffies = jiffies;
1681 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001682 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 new_slave->link = BOND_LINK_DOWN;
1684 }
1685
1686 if (bond_update_speed_duplex(new_slave) &&
1687 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001688 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1689 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001692 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1693 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
1695 }
1696
1697 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1698 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001699 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001701 bond->force_primary = true;
1702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001705 write_lock_bh(&bond->curr_slave_lock);
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 switch (bond->params.mode) {
1708 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001709 bond_set_slave_inactive_flags(new_slave);
1710 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 break;
1712 case BOND_MODE_8023AD:
1713 /* in 802.3ad mode, the internal mechanism
1714 * will activate the slaves in the selected
1715 * aggregator
1716 */
1717 bond_set_slave_inactive_flags(new_slave);
1718 /* if this is the first slave */
1719 if (bond->slave_cnt == 1) {
1720 SLAVE_AD_INFO(new_slave).id = 1;
1721 /* Initialize AD with the number of times that the AD timer is called in 1 second
1722 * can be called only after the mac address of the bond is set
1723 */
1724 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1725 bond->params.lacp_fast);
1726 } else {
1727 SLAVE_AD_INFO(new_slave).id =
1728 SLAVE_AD_INFO(new_slave->prev).id + 1;
1729 }
1730
1731 bond_3ad_bind_slave(new_slave);
1732 break;
1733 case BOND_MODE_TLB:
1734 case BOND_MODE_ALB:
1735 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001736 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001737 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 break;
1739 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001740 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 /* always active in trunk mode */
1743 new_slave->state = BOND_STATE_ACTIVE;
1744
1745 /* In trunking mode there is little meaning to curr_active_slave
1746 * anyway (it holds no special properties of the bond device),
1747 * so we can change it without calling change_active_interface()
1748 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001749 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
1753 } /* switch(bond_mode) */
1754
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001755 write_unlock_bh(&bond->curr_slave_lock);
1756
Jay Vosburghff59c452006-03-27 13:27:43 -08001757 bond_set_carrier(bond);
1758
WANG Congf6dc31a2010-05-06 00:48:51 -07001759#ifdef CONFIG_NET_POLL_CONTROLLER
1760 if (slaves_support_netpoll(bond_dev)) {
1761 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1762 if (bond_dev->npinfo)
1763 slave_dev->npinfo = bond_dev->npinfo;
1764 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
1765 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
1766 pr_info("New slave device %s does not support netpoll\n",
1767 slave_dev->name);
1768 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
1769 }
1770#endif
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001771 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001773 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1774 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001775 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001776
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001777 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1778 bond_dev->name, slave_dev->name,
1779 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1780 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 /* enslave is successful */
1783 return 0;
1784
1785/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786err_close:
1787 dev_close(slave_dev);
1788
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001789err_unset_master:
1790 netdev_set_master(slave_dev, NULL);
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001793 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001794 /* XXX TODO - fom follow mode needs to change master's
1795 * MAC if this slave's MAC is in use by the bond, or at
1796 * least print a warning.
1797 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001798 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1799 addr.sa_family = slave_dev->type;
1800 dev_set_mac_address(slave_dev, &addr);
1801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001803err_restore_mtu:
1804 dev_set_mtu(slave_dev, new_slave->original_mtu);
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806err_free:
1807 kfree(new_slave);
1808
1809err_undo_flags:
1810 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return res;
1813}
1814
1815/*
1816 * Try to release the slave device <slave> from the bond device <master>
1817 * It is legal to access curr_active_slave without a lock because all the function
1818 * is write-locked.
1819 *
1820 * The rules for slave state should be:
1821 * for Active/Backup:
1822 * Active stays on all backups go down
1823 * for Bonded connections:
1824 * The first up interface should be left on and all others downed.
1825 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001826int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Wang Chen454d7c92008-11-12 23:37:49 -08001828 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 struct slave *slave, *oldcurrent;
1830 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 /* slave is not a slave or master is not master of this slave */
1833 if (!(slave_dev->flags & IFF_SLAVE) ||
1834 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001835 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 bond_dev->name, slave_dev->name);
1837 return -EINVAL;
1838 }
1839
WANG Congf6dc31a2010-05-06 00:48:51 -07001840 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 write_lock_bh(&bond->lock);
1842
1843 slave = bond_get_slave_by_dev(bond, slave_dev);
1844 if (!slave) {
1845 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001846 pr_info("%s: %s not enslaved\n",
1847 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001848 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return -EINVAL;
1850 }
1851
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001852 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001853 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1854 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001855 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",
1856 bond_dev->name, slave_dev->name,
1857 slave->perm_hwaddr,
1858 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
1860
1861 /* Inform AD package of unbinding of slave. */
1862 if (bond->params.mode == BOND_MODE_8023AD) {
1863 /* must be called before the slave is
1864 * detached from the list
1865 */
1866 bond_3ad_unbind_slave(slave);
1867 }
1868
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001869 pr_info("%s: releasing %s interface %s\n",
1870 bond_dev->name,
1871 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1872 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 oldcurrent = bond->curr_active_slave;
1875
1876 bond->current_arp_slave = NULL;
1877
1878 /* release the slave from its bond */
1879 bond_detach_slave(bond, slave);
1880
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001881 bond_compute_features(bond);
1882
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001883 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001886 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Holger Eitzenberger58402052008-12-09 23:07:13 -08001889 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 /* Must be called only after the slave has been
1891 * detached from the list and the curr_active_slave
1892 * has been cleared (if our_slave == old_current),
1893 * but before a new active slave is selected.
1894 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001895 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001897 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001900 if (oldcurrent == slave) {
1901 /*
1902 * Note that we hold RTNL over this sequence, so there
1903 * is no concern that another slave add/remove event
1904 * will interfere.
1905 */
1906 write_unlock_bh(&bond->lock);
1907 read_lock(&bond->lock);
1908 write_lock_bh(&bond->curr_slave_lock);
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 bond_select_active_slave(bond);
1911
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001912 write_unlock_bh(&bond->curr_slave_lock);
1913 read_unlock(&bond->lock);
1914 write_lock_bh(&bond->lock);
1915 }
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001918 bond_set_carrier(bond);
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 /* if the last slave was removed, zero the mac address
1921 * of the master so it will be set by the application
1922 * to the mac address of the first slave
1923 */
1924 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1925
1926 if (list_empty(&bond->vlan_list)) {
1927 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1928 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001929 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1930 bond_dev->name, bond_dev->name);
1931 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1932 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1935 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001936 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1937 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1939 }
1940
1941 write_unlock_bh(&bond->lock);
1942
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001943 /* must do this from outside any spinlocks */
1944 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 bond_del_vlans_from_slave(bond, slave_dev);
1947
1948 /* If the mode USES_PRIMARY, then we should only remove its
1949 * promisc and mc settings if it was the curr_active_slave, but that was
1950 * already taken care of above when we detached the slave
1951 */
1952 if (!USES_PRIMARY(bond->params.mode)) {
1953 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001954 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001958 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001962 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001964 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 }
1966
1967 netdev_set_master(slave_dev, NULL);
1968
WANG Congf6dc31a2010-05-06 00:48:51 -07001969#ifdef CONFIG_NET_POLL_CONTROLLER
1970 read_lock_bh(&bond->lock);
1971 if (slaves_support_netpoll(bond_dev))
1972 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1973 read_unlock_bh(&bond->lock);
1974 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
1975 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
1976 else
1977 slave_dev->npinfo = NULL;
1978#endif
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /* close slave before restoring its mac address */
1981 dev_close(slave_dev);
1982
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001983 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001984 /* restore original ("permanent") mac address */
1985 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1986 addr.sa_family = slave_dev->type;
1987 dev_set_mac_address(slave_dev, &addr);
1988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001990 dev_set_mtu(slave_dev, slave->original_mtu);
1991
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001992 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001993 IFF_SLAVE_INACTIVE | IFF_BONDING |
1994 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 kfree(slave);
1997
1998 return 0; /* deletion OK */
1999}
2000
2001/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002002* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002003* Must be under rtnl_lock when this function is called.
2004*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002005int bond_release_and_destroy(struct net_device *bond_dev,
2006 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002007{
Wang Chen454d7c92008-11-12 23:37:49 -08002008 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002009 int ret;
2010
2011 ret = bond_release(bond_dev, slave_dev);
2012 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002013 pr_info("%s: destroying bond %s.\n",
2014 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002015 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002016 }
2017 return ret;
2018}
2019
2020/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 * This function releases all slaves.
2022 */
2023static int bond_release_all(struct net_device *bond_dev)
2024{
Wang Chen454d7c92008-11-12 23:37:49 -08002025 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 struct slave *slave;
2027 struct net_device *slave_dev;
2028 struct sockaddr addr;
2029
2030 write_lock_bh(&bond->lock);
2031
Jay Vosburghff59c452006-03-27 13:27:43 -08002032 netif_carrier_off(bond_dev);
2033
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002034 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 bond->current_arp_slave = NULL;
2038 bond->primary_slave = NULL;
2039 bond_change_active_slave(bond, NULL);
2040
2041 while ((slave = bond->first_slave) != NULL) {
2042 /* Inform AD package of unbinding of slave
2043 * before slave is detached from the list.
2044 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002045 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 slave_dev = slave->dev;
2049 bond_detach_slave(bond, slave);
2050
Jay Vosburgh25433312008-01-17 16:24:59 -08002051 /* now that the slave is detached, unlock and perform
2052 * all the undo steps that should not be called from
2053 * within a lock.
2054 */
2055 write_unlock_bh(&bond->lock);
2056
Holger Eitzenberger58402052008-12-09 23:07:13 -08002057 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 /* must be called only after the slave
2059 * has been detached from the list
2060 */
2061 bond_alb_deinit_slave(bond, slave);
2062 }
2063
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002064 bond_compute_features(bond);
2065
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002066 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 bond_del_vlans_from_slave(bond, slave_dev);
2068
2069 /* If the mode USES_PRIMARY, then we should only remove its
2070 * promisc and mc settings if it was the curr_active_slave, but that was
2071 * already taken care of above when we detached the slave
2072 */
2073 if (!USES_PRIMARY(bond->params.mode)) {
2074 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002075 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002079 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002083 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002085 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087
2088 netdev_set_master(slave_dev, NULL);
2089
2090 /* close slave before restoring its mac address */
2091 dev_close(slave_dev);
2092
Jay Vosburghdd957c52007-10-09 19:57:24 -07002093 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002094 /* restore original ("permanent") mac address*/
2095 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2096 addr.sa_family = slave_dev->type;
2097 dev_set_mac_address(slave_dev, &addr);
2098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002100 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2101 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 kfree(slave);
2104
2105 /* re-acquire the lock before getting the next slave */
2106 write_lock_bh(&bond->lock);
2107 }
2108
2109 /* zero the mac address of the master so it will be
2110 * set by the application to the mac address of the
2111 * first slave
2112 */
2113 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2114
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002115 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002117 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002118 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2119 bond_dev->name, bond_dev->name);
2120 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2121 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
2123
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002124 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126out:
2127 write_unlock_bh(&bond->lock);
2128
2129 return 0;
2130}
2131
2132/*
2133 * This function changes the active slave to slave <slave_dev>.
2134 * It returns -EINVAL in the following cases.
2135 * - <slave_dev> is not found in the list.
2136 * - There is not active slave now.
2137 * - <slave_dev> is already active.
2138 * - The link state of <slave_dev> is not BOND_LINK_UP.
2139 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002140 * In these cases, this function does nothing.
2141 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 */
2143static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2144{
Wang Chen454d7c92008-11-12 23:37:49 -08002145 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 struct slave *old_active = NULL;
2147 struct slave *new_active = NULL;
2148 int res = 0;
2149
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002150 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002154 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002157 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002159 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002161 read_unlock(&bond->curr_slave_lock);
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 new_active = bond_get_slave_by_dev(bond, slave_dev);
2164
2165 /*
2166 * Changing to the current active: do nothing; return success.
2167 */
2168 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002169 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return 0;
2171 }
2172
2173 if ((new_active) &&
2174 (old_active) &&
2175 (new_active->link == BOND_LINK_UP) &&
2176 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002177 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002179 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002180 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002183 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 return res;
2186}
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2189{
Wang Chen454d7c92008-11-12 23:37:49 -08002190 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 info->bond_mode = bond->params.mode;
2193 info->miimon = bond->params.miimon;
2194
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002195 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002197 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 return 0;
2200}
2201
2202static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2203{
Wang Chen454d7c92008-11-12 23:37:49 -08002204 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002206 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002208 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 bond_for_each_slave(bond, slave, i) {
2211 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002212 res = 0;
2213 strcpy(info->slave_name, slave->dev->name);
2214 info->link = slave->link;
2215 info->state = slave->state;
2216 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 break;
2218 }
2219 }
2220
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002221 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Eric Dumazet689c96c2009-04-23 03:39:04 +00002223 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
2225
2226/*-------------------------------- Monitoring -------------------------------*/
2227
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002228
2229static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002231 struct slave *slave;
2232 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002233 bool ignore_updelay;
2234
2235 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002238 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002240 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002243 case BOND_LINK_UP:
2244 if (link_state)
2245 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002247 slave->link = BOND_LINK_FAIL;
2248 slave->delay = bond->params.downdelay;
2249 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002250 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2251 bond->dev->name,
2252 (bond->params.mode ==
2253 BOND_MODE_ACTIVEBACKUP) ?
2254 ((slave->state == BOND_STATE_ACTIVE) ?
2255 "active " : "backup ") : "",
2256 slave->dev->name,
2257 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002259 /*FALLTHRU*/
2260 case BOND_LINK_FAIL:
2261 if (link_state) {
2262 /*
2263 * recovered before downdelay expired
2264 */
2265 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002267 pr_info("%s: link status up again after %d ms for interface %s.\n",
2268 bond->dev->name,
2269 (bond->params.downdelay - slave->delay) *
2270 bond->params.miimon,
2271 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002272 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002274
2275 if (slave->delay <= 0) {
2276 slave->new_link = BOND_LINK_DOWN;
2277 commit++;
2278 continue;
2279 }
2280
2281 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002284 case BOND_LINK_DOWN:
2285 if (!link_state)
2286 continue;
2287
2288 slave->link = BOND_LINK_BACK;
2289 slave->delay = bond->params.updelay;
2290
2291 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002292 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2293 bond->dev->name, slave->dev->name,
2294 ignore_updelay ? 0 :
2295 bond->params.updelay *
2296 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002298 /*FALLTHRU*/
2299 case BOND_LINK_BACK:
2300 if (!link_state) {
2301 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002302 pr_info("%s: link status down again after %d ms for interface %s.\n",
2303 bond->dev->name,
2304 (bond->params.updelay - slave->delay) *
2305 bond->params.miimon,
2306 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002307
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002308 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002310
Jiri Pirko41f89102009-04-24 03:57:29 +00002311 if (ignore_updelay)
2312 slave->delay = 0;
2313
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002314 if (slave->delay <= 0) {
2315 slave->new_link = BOND_LINK_UP;
2316 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002317 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002318 continue;
2319 }
2320
2321 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002323 }
2324 }
2325
2326 return commit;
2327}
2328
2329static void bond_miimon_commit(struct bonding *bond)
2330{
2331 struct slave *slave;
2332 int i;
2333
2334 bond_for_each_slave(bond, slave, i) {
2335 switch (slave->new_link) {
2336 case BOND_LINK_NOCHANGE:
2337 continue;
2338
2339 case BOND_LINK_UP:
2340 slave->link = BOND_LINK_UP;
2341 slave->jiffies = jiffies;
2342
2343 if (bond->params.mode == BOND_MODE_8023AD) {
2344 /* prevent it from being the active one */
2345 slave->state = BOND_STATE_BACKUP;
2346 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2347 /* make it immediately active */
2348 slave->state = BOND_STATE_ACTIVE;
2349 } else if (slave != bond->primary_slave) {
2350 /* prevent it from being the active one */
2351 slave->state = BOND_STATE_BACKUP;
2352 }
2353
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002354 pr_info("%s: link status definitely up for interface %s.\n",
2355 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002356
2357 /* notify ad that the link status has changed */
2358 if (bond->params.mode == BOND_MODE_8023AD)
2359 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2360
Holger Eitzenberger58402052008-12-09 23:07:13 -08002361 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002362 bond_alb_handle_link_change(bond, slave,
2363 BOND_LINK_UP);
2364
2365 if (!bond->curr_active_slave ||
2366 (slave == bond->primary_slave))
2367 goto do_failover;
2368
2369 continue;
2370
2371 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002372 if (slave->link_failure_count < UINT_MAX)
2373 slave->link_failure_count++;
2374
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002375 slave->link = BOND_LINK_DOWN;
2376
2377 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2378 bond->params.mode == BOND_MODE_8023AD)
2379 bond_set_slave_inactive_flags(slave);
2380
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002381 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2382 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002383
2384 if (bond->params.mode == BOND_MODE_8023AD)
2385 bond_3ad_handle_link_change(slave,
2386 BOND_LINK_DOWN);
2387
Jiri Pirkoae63e802009-05-27 05:42:36 +00002388 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002389 bond_alb_handle_link_change(bond, slave,
2390 BOND_LINK_DOWN);
2391
2392 if (slave == bond->curr_active_slave)
2393 goto do_failover;
2394
2395 continue;
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002398 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002399 bond->dev->name, slave->new_link,
2400 slave->dev->name);
2401 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002403 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 }
2405
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002406do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002407 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002408 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002410 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002411 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002412
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002413 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414}
2415
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002416/*
2417 * bond_mii_monitor
2418 *
2419 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002420 * inspection, then (if inspection indicates something needs to be done)
2421 * an acquisition of appropriate locks followed by a commit phase to
2422 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002423 */
2424void bond_mii_monitor(struct work_struct *work)
2425{
2426 struct bonding *bond = container_of(work, struct bonding,
2427 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002428
2429 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002430 if (bond->kill_timers)
2431 goto out;
2432
2433 if (bond->slave_cnt == 0)
2434 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002435
2436 if (bond->send_grat_arp) {
2437 read_lock(&bond->curr_slave_lock);
2438 bond_send_gratuitous_arp(bond);
2439 read_unlock(&bond->curr_slave_lock);
2440 }
2441
Brian Haley305d5522008-11-04 17:51:14 -08002442 if (bond->send_unsol_na) {
2443 read_lock(&bond->curr_slave_lock);
2444 bond_send_unsolicited_na(bond);
2445 read_unlock(&bond->curr_slave_lock);
2446 }
2447
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002448 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002449 read_unlock(&bond->lock);
2450 rtnl_lock();
2451 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002452
2453 bond_miimon_commit(bond);
2454
Jay Vosburgh56556622008-01-17 16:25:03 -08002455 read_unlock(&bond->lock);
2456 rtnl_unlock(); /* might sleep, hold no other locks */
2457 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002458 }
2459
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002460re_arm:
2461 if (bond->params.miimon)
2462 queue_delayed_work(bond->wq, &bond->mii_work,
2463 msecs_to_jiffies(bond->params.miimon));
2464out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002465 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002466}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002467
Al Virod3bb52b2007-08-22 20:06:58 -04002468static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002469{
2470 struct in_device *idev;
2471 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002472 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002473
2474 if (!dev)
2475 return 0;
2476
2477 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002478 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002479 if (!idev)
2480 goto out;
2481
2482 ifa = idev->ifa_list;
2483 if (!ifa)
2484 goto out;
2485
2486 addr = ifa->ifa_local;
2487out:
2488 rcu_read_unlock();
2489 return addr;
2490}
2491
Al Virod3bb52b2007-08-22 20:06:58 -04002492static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002493{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002494 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002495
2496 if (ip == bond->master_ip)
2497 return 1;
2498
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002499 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002500 if (ip == vlan->vlan_ip)
2501 return 1;
2502 }
2503
2504 return 0;
2505}
2506
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002507/*
2508 * We go to the (large) trouble of VLAN tagging ARP frames because
2509 * switches in VLAN mode (especially if ports are configured as
2510 * "native" to a VLAN) might not pass non-tagged frames.
2511 */
Al Virod3bb52b2007-08-22 20:06:58 -04002512static 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 -04002513{
2514 struct sk_buff *skb;
2515
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002516 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002517 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002518
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002519 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2520 NULL, slave_dev->dev_addr, NULL);
2521
2522 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002523 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002524 return;
2525 }
2526 if (vlan_id) {
2527 skb = vlan_put_tag(skb, vlan_id);
2528 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002529 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002530 return;
2531 }
2532 }
2533 arp_xmit(skb);
2534}
2535
2536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2538{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002539 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002540 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002541 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002542 struct net_device *vlan_dev;
2543 struct flowi fl;
2544 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Mitch Williams6b780562005-11-09 10:36:19 -08002546 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2547 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002548 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002549 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002550 if (list_empty(&bond->vlan_list)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002551 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002552 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2553 bond->master_ip, 0);
2554 continue;
2555 }
2556
2557 /*
2558 * If VLANs are configured, we do a route lookup to
2559 * determine which VLAN interface would be used, so we
2560 * can tag the ARP with the proper VLAN tag.
2561 */
2562 memset(&fl, 0, sizeof(fl));
2563 fl.fl4_dst = targets[i];
2564 fl.fl4_tos = RTO_ONLINK;
2565
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002566 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002567 if (rv) {
2568 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002569 pr_warning("%s: no route to arp_ip_target %pI4\n",
2570 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002571 }
2572 continue;
2573 }
2574
2575 /*
2576 * This target is not on a VLAN
2577 */
2578 if (rt->u.dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002579 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002580 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002581 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2582 bond->master_ip, 0);
2583 continue;
2584 }
2585
2586 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002587 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002589 if (vlan_dev == rt->u.dst.dev) {
2590 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002591 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002592 vlan_dev->name, vlan_id);
2593 break;
2594 }
2595 }
2596
2597 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002598 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002599 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2600 vlan->vlan_ip, vlan_id);
2601 continue;
2602 }
2603
2604 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002605 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2606 bond->dev->name, &fl.fl4_dst,
2607 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002608 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002609 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002610 }
2611}
2612
2613/*
2614 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2615 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002616 *
2617 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002618 */
2619static void bond_send_gratuitous_arp(struct bonding *bond)
2620{
2621 struct slave *slave = bond->curr_active_slave;
2622 struct vlan_entry *vlan;
2623 struct net_device *vlan_dev;
2624
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002625 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2626 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002627
2628 if (!slave || !bond->send_grat_arp ||
2629 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002630 return;
2631
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002632 bond->send_grat_arp--;
2633
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002634 if (bond->master_ip) {
2635 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002636 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002637 }
2638
2639 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002640 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002641 if (vlan->vlan_ip) {
2642 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2643 vlan->vlan_ip, vlan->vlan_id);
2644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
2646}
2647
Al Virod3bb52b2007-08-22 20:06:58 -04002648static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002649{
2650 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002651 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002652
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002653 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002654 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002655 &sip, &tip, i, &targets[i],
2656 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002657 if (sip == targets[i]) {
2658 if (bond_has_this_ip(bond, tip))
2659 slave->last_arp_rx = jiffies;
2660 return;
2661 }
2662 }
2663}
2664
2665static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2666{
2667 struct arphdr *arp;
2668 struct slave *slave;
2669 struct bonding *bond;
2670 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002671 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002672
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002673 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2674 /*
2675 * When using VLANS and bonding, dev and oriv_dev may be
2676 * incorrect if the physical interface supports VLAN
2677 * acceleration. With this change ARP validation now
2678 * works for hosts only reachable on the VLAN interface.
2679 */
2680 dev = vlan_dev_real_dev(dev);
2681 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2682 }
2683
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002684 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2685 goto out;
2686
Wang Chen454d7c92008-11-12 23:37:49 -08002687 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002688 read_lock(&bond->lock);
2689
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002690 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002691 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2692 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002693
2694 slave = bond_get_slave_by_dev(bond, orig_dev);
2695 if (!slave || !slave_do_arp_validate(bond, slave))
2696 goto out_unlock;
2697
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002698 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002699 goto out_unlock;
2700
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002701 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002702 if (arp->ar_hln != dev->addr_len ||
2703 skb->pkt_type == PACKET_OTHERHOST ||
2704 skb->pkt_type == PACKET_LOOPBACK ||
2705 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2706 arp->ar_pro != htons(ETH_P_IP) ||
2707 arp->ar_pln != 4)
2708 goto out_unlock;
2709
2710 arp_ptr = (unsigned char *)(arp + 1);
2711 arp_ptr += dev->addr_len;
2712 memcpy(&sip, arp_ptr, 4);
2713 arp_ptr += 4 + dev->addr_len;
2714 memcpy(&tip, arp_ptr, 4);
2715
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002716 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002717 bond->dev->name, slave->dev->name, slave->state,
2718 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2719 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002720
2721 /*
2722 * Backup slaves won't see the ARP reply, but do come through
2723 * here for each ARP probe (so we swap the sip/tip to validate
2724 * the probe). In a "redundant switch, common router" type of
2725 * configuration, the ARP probe will (hopefully) travel from
2726 * the active, through one switch, the router, then the other
2727 * switch before reaching the backup.
2728 */
2729 if (slave->state == BOND_STATE_ACTIVE)
2730 bond_validate_arp(bond, slave, sip, tip);
2731 else
2732 bond_validate_arp(bond, slave, tip, sip);
2733
2734out_unlock:
2735 read_unlock(&bond->lock);
2736out:
2737 dev_kfree_skb(skb);
2738 return NET_RX_SUCCESS;
2739}
2740
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741/*
2742 * this function is called regularly to monitor each slave's link
2743 * ensuring that traffic is being sent and received when arp monitoring
2744 * is used in load-balancing mode. if the adapter has been dormant, then an
2745 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2746 * arp monitoring in active backup mode.
2747 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002748void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002750 struct bonding *bond = container_of(work, struct bonding,
2751 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 struct slave *slave, *oldcurrent;
2753 int do_failover = 0;
2754 int delta_in_ticks;
2755 int i;
2756
2757 read_lock(&bond->lock);
2758
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002759 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002761 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002764 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767 read_lock(&bond->curr_slave_lock);
2768 oldcurrent = bond->curr_active_slave;
2769 read_unlock(&bond->curr_slave_lock);
2770
2771 /* see if any of the previous devices are up now (i.e. they have
2772 * xmt and rcv traffic). the curr_active_slave does not come into
2773 * the picture unless it is null. also, slave->jiffies is not needed
2774 * here because we send an arp on each slave and give a slave as
2775 * long as it needs to get the tx/rx within the delta.
2776 * TODO: what about up/down delay in arp mode? it wasn't here before
2777 * so it can wait
2778 */
2779 bond_for_each_slave(bond, slave, i) {
2780 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002781 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002782 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 slave->link = BOND_LINK_UP;
2785 slave->state = BOND_STATE_ACTIVE;
2786
2787 /* primary_slave has no meaning in round-robin
2788 * mode. the window of a slave being up and
2789 * curr_active_slave being null after enslaving
2790 * is closed.
2791 */
2792 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002793 pr_info("%s: link status definitely up for interface %s, ",
2794 bond->dev->name,
2795 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 do_failover = 1;
2797 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002798 pr_info("%s: interface %s is now up\n",
2799 bond->dev->name,
2800 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 }
2802 }
2803 } else {
2804 /* slave->link == BOND_LINK_UP */
2805
2806 /* not all switches will respond to an arp request
2807 * when the source ip is 0, so don't take the link down
2808 * if we don't know our ip yet
2809 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002810 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002811 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 slave->link = BOND_LINK_DOWN;
2814 slave->state = BOND_STATE_BACKUP;
2815
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002816 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002819 pr_info("%s: interface %s is now down.\n",
2820 bond->dev->name,
2821 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002823 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 }
2826 }
2827
2828 /* note: if switch is in round-robin mode, all links
2829 * must tx arp to ensure all links rx an arp - otherwise
2830 * links may oscillate or not come up at all; if switch is
2831 * in something like xor mode, there is nothing we can
2832 * do - all replies will be rx'ed on same link causing slaves
2833 * to be unstable during low/no traffic periods
2834 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002835 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
2838
2839 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002840 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842 bond_select_active_slave(bond);
2843
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002844 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 }
2846
2847re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002848 if (bond->params.arp_interval)
2849 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850out:
2851 read_unlock(&bond->lock);
2852}
2853
2854/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002855 * Called to inspect slaves for active-backup mode ARP monitor link state
2856 * changes. Sets new_link in slaves to specify what action should take
2857 * place for the slave. Returns 0 if no changes are found, >0 if changes
2858 * to link states must be committed.
2859 *
2860 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002862static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002865 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002868 slave->new_link = BOND_LINK_NOCHANGE;
2869
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002871 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2872 delta_in_ticks)) {
2873 slave->new_link = BOND_LINK_UP;
2874 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002877 continue;
2878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002880 /*
2881 * Give slaves 2*delta after being enslaved or made
2882 * active. This avoids bouncing, as the last receive
2883 * times need a full ARP monitor cycle to be updated.
2884 */
2885 if (!time_after_eq(jiffies, slave->jiffies +
2886 2 * delta_in_ticks))
2887 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002889 /*
2890 * Backup slave is down if:
2891 * - No current_arp_slave AND
2892 * - more than 3*delta since last receive AND
2893 * - the bond has an IP address
2894 *
2895 * Note: a non-null current_arp_slave indicates
2896 * the curr_active_slave went down and we are
2897 * searching for a new one; under this condition
2898 * we only take the curr_active_slave down - this
2899 * gives each slave a chance to tx/rx traffic
2900 * before being taken out
2901 */
2902 if (slave->state == BOND_STATE_BACKUP &&
2903 !bond->current_arp_slave &&
2904 time_after(jiffies, slave_last_rx(bond, slave) +
2905 3 * delta_in_ticks)) {
2906 slave->new_link = BOND_LINK_DOWN;
2907 commit++;
2908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002910 /*
2911 * Active slave is down if:
2912 * - more than 2*delta since transmitting OR
2913 * - (more than 2*delta since receive AND
2914 * the bond has an IP address)
2915 */
2916 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002917 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002918 2 * delta_in_ticks) ||
2919 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2920 + 2 * delta_in_ticks)))) {
2921 slave->new_link = BOND_LINK_DOWN;
2922 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 }
2924 }
2925
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002926 return commit;
2927}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002929/*
2930 * Called to commit link state changes noted by inspection step of
2931 * active-backup mode ARP monitor.
2932 *
2933 * Called with RTNL and bond->lock for read.
2934 */
2935static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2936{
2937 struct slave *slave;
2938 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002940 bond_for_each_slave(bond, slave, i) {
2941 switch (slave->new_link) {
2942 case BOND_LINK_NOCHANGE:
2943 continue;
2944
2945 case BOND_LINK_UP:
Jiri Pirkob9f60252009-08-31 11:09:38 +00002946 if ((!bond->curr_active_slave &&
2947 time_before_eq(jiffies,
2948 dev_trans_start(slave->dev) +
2949 delta_in_ticks)) ||
2950 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002951 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002952 bond->current_arp_slave = NULL;
2953
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002954 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002955 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002956
Jiri Pirkob9f60252009-08-31 11:09:38 +00002957 if (!bond->curr_active_slave ||
2958 (slave == bond->primary_slave))
2959 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002960
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002961 }
2962
Jiri Pirkob9f60252009-08-31 11:09:38 +00002963 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002964
2965 case BOND_LINK_DOWN:
2966 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002969 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002970 bond_set_slave_inactive_flags(slave);
2971
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002972 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002973 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002974
2975 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002976 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002977 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002978 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00002979
2980 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002981
2982 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002983 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002984 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00002986 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Jiri Pirkob9f60252009-08-31 11:09:38 +00002989do_failover:
2990 ASSERT_RTNL();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002991 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00002992 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002993 write_unlock_bh(&bond->curr_slave_lock);
2994 }
2995
2996 bond_set_carrier(bond);
2997}
2998
2999/*
3000 * Send ARP probes for active-backup mode ARP monitor.
3001 *
3002 * Called with bond->lock held for read.
3003 */
3004static void bond_ab_arp_probe(struct bonding *bond)
3005{
3006 struct slave *slave;
3007 int i;
3008
3009 read_lock(&bond->curr_slave_lock);
3010
3011 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003012 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3013 bond->current_arp_slave->dev->name,
3014 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003015
3016 if (bond->curr_active_slave) {
3017 bond_arp_send_all(bond, bond->curr_active_slave);
3018 read_unlock(&bond->curr_slave_lock);
3019 return;
3020 }
3021
3022 read_unlock(&bond->curr_slave_lock);
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 /* if we don't have a curr_active_slave, search for the next available
3025 * backup slave from the current_arp_slave and make it the candidate
3026 * for becoming the curr_active_slave
3027 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003028
3029 if (!bond->current_arp_slave) {
3030 bond->current_arp_slave = bond->first_slave;
3031 if (!bond->current_arp_slave)
3032 return;
3033 }
3034
3035 bond_set_slave_inactive_flags(bond->current_arp_slave);
3036
3037 /* search for next candidate */
3038 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3039 if (IS_UP(slave->dev)) {
3040 slave->link = BOND_LINK_BACK;
3041 bond_set_slave_active_flags(slave);
3042 bond_arp_send_all(bond, slave);
3043 slave->jiffies = jiffies;
3044 bond->current_arp_slave = slave;
3045 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
3047
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003048 /* if the link state is up at this point, we
3049 * mark it down - this can happen if we have
3050 * simultaneous link failures and
3051 * reselect_active_interface doesn't make this
3052 * one the current slave so it is still marked
3053 * up when it is actually down
3054 */
3055 if (slave->link == BOND_LINK_UP) {
3056 slave->link = BOND_LINK_DOWN;
3057 if (slave->link_failure_count < UINT_MAX)
3058 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003060 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003062 pr_info("%s: backup interface %s is now down.\n",
3063 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
3065 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003066}
3067
3068void bond_activebackup_arp_mon(struct work_struct *work)
3069{
3070 struct bonding *bond = container_of(work, struct bonding,
3071 arp_work.work);
3072 int delta_in_ticks;
3073
3074 read_lock(&bond->lock);
3075
3076 if (bond->kill_timers)
3077 goto out;
3078
3079 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3080
3081 if (bond->slave_cnt == 0)
3082 goto re_arm;
3083
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003084 if (bond->send_grat_arp) {
3085 read_lock(&bond->curr_slave_lock);
3086 bond_send_gratuitous_arp(bond);
3087 read_unlock(&bond->curr_slave_lock);
3088 }
3089
Brian Haley305d5522008-11-04 17:51:14 -08003090 if (bond->send_unsol_na) {
3091 read_lock(&bond->curr_slave_lock);
3092 bond_send_unsolicited_na(bond);
3093 read_unlock(&bond->curr_slave_lock);
3094 }
3095
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003096 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3097 read_unlock(&bond->lock);
3098 rtnl_lock();
3099 read_lock(&bond->lock);
3100
3101 bond_ab_arp_commit(bond, delta_in_ticks);
3102
3103 read_unlock(&bond->lock);
3104 rtnl_unlock();
3105 read_lock(&bond->lock);
3106 }
3107
3108 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
3110re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003111 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003112 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113out:
3114 read_unlock(&bond->lock);
3115}
3116
3117/*------------------------------ proc/seq_file-------------------------------*/
3118
3119#ifdef CONFIG_PROC_FS
3120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003122 __acquires(&dev_base_lock)
3123 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
3125 struct bonding *bond = seq->private;
3126 loff_t off = 0;
3127 struct slave *slave;
3128 int i;
3129
3130 /* make sure the bond won't be taken away */
3131 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003132 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003134 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003138 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 }
3141
3142 return NULL;
3143}
3144
3145static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3146{
3147 struct bonding *bond = seq->private;
3148 struct slave *slave = v;
3149
3150 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003151 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154 slave = slave->next;
3155
3156 return (slave == bond->first_slave) ? NULL : slave;
3157}
3158
3159static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003160 __releases(&bond->lock)
3161 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162{
3163 struct bonding *bond = seq->private;
3164
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003165 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 read_unlock(&dev_base_lock);
3167}
3168
3169static void bond_info_show_master(struct seq_file *seq)
3170{
3171 struct bonding *bond = seq->private;
3172 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003173 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175 read_lock(&bond->curr_slave_lock);
3176 curr = bond->curr_active_slave;
3177 read_unlock(&bond->curr_slave_lock);
3178
Jay Vosburghdd957c52007-10-09 19:57:24 -07003179 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 bond_mode_name(bond->params.mode));
3181
Jay Vosburghdd957c52007-10-09 19:57:24 -07003182 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3183 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003184 seq_printf(seq, " (fail_over_mac %s)",
3185 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003186
3187 seq_printf(seq, "\n");
3188
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003189 if (bond->params.mode == BOND_MODE_XOR ||
3190 bond->params.mode == BOND_MODE_8023AD) {
3191 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3192 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3193 bond->params.xmit_policy);
3194 }
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003197 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003198 (bond->primary_slave) ?
3199 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003200 if (bond->primary_slave)
3201 seq_printf(seq, " (primary_reselect %s)",
3202 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Jiri Pirkoa5499522009-09-25 03:28:09 +00003204 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 (curr) ? curr->dev->name : "None");
3206 }
3207
Jay Vosburghff59c452006-03-27 13:27:43 -08003208 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3209 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3211 seq_printf(seq, "Up Delay (ms): %d\n",
3212 bond->params.updelay * bond->params.miimon);
3213 seq_printf(seq, "Down Delay (ms): %d\n",
3214 bond->params.downdelay * bond->params.miimon);
3215
Mitch Williams4756b022005-11-09 10:36:25 -08003216
3217 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003218 if (bond->params.arp_interval > 0) {
3219 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003220 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3221 bond->params.arp_interval);
3222
3223 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3224
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003225 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003226 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003227 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003228 if (printed)
3229 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003230 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003231 printed = 1;
3232 }
3233 seq_printf(seq, "\n");
3234 }
3235
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 if (bond->params.mode == BOND_MODE_8023AD) {
3237 struct ad_info ad_info;
3238
3239 seq_puts(seq, "\n802.3ad info\n");
3240 seq_printf(seq, "LACP rate: %s\n",
3241 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003242 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3243 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
3245 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3246 seq_printf(seq, "bond %s has no active aggregator\n",
3247 bond->dev->name);
3248 } else {
3249 seq_printf(seq, "Active Aggregator Info:\n");
3250
3251 seq_printf(seq, "\tAggregator ID: %d\n",
3252 ad_info.aggregator_id);
3253 seq_printf(seq, "\tNumber of ports: %d\n",
3254 ad_info.ports);
3255 seq_printf(seq, "\tActor Key: %d\n",
3256 ad_info.actor_key);
3257 seq_printf(seq, "\tPartner Key: %d\n",
3258 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003259 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3260 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 }
3262 }
3263}
3264
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003265static void bond_info_show_slave(struct seq_file *seq,
3266 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267{
3268 struct bonding *bond = seq->private;
3269
3270 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3271 seq_printf(seq, "MII Status: %s\n",
3272 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami655096452006-09-22 21:53:08 -07003273 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 slave->link_failure_count);
3275
Johannes Berge1749612008-10-27 15:59:26 -07003276 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 if (bond->params.mode == BOND_MODE_8023AD) {
3279 const struct aggregator *agg
3280 = SLAVE_AD_INFO(slave).port.aggregator;
3281
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003282 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 seq_printf(seq, "Aggregator ID: %d\n",
3284 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003285 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 }
3288}
3289
3290static int bond_info_seq_show(struct seq_file *seq, void *v)
3291{
3292 if (v == SEQ_START_TOKEN) {
3293 seq_printf(seq, "%s\n", version);
3294 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003295 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298 return 0;
3299}
3300
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003301static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 .start = bond_info_seq_start,
3303 .next = bond_info_seq_next,
3304 .stop = bond_info_seq_stop,
3305 .show = bond_info_seq_show,
3306};
3307
3308static int bond_info_open(struct inode *inode, struct file *file)
3309{
3310 struct seq_file *seq;
3311 struct proc_dir_entry *proc;
3312 int res;
3313
3314 res = seq_open(file, &bond_info_seq_ops);
3315 if (!res) {
3316 /* recover the pointer buried in proc_dir_entry data */
3317 seq = file->private_data;
3318 proc = PDE(inode);
3319 seq->private = proc->data;
3320 }
3321
3322 return res;
3323}
3324
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003325static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 .owner = THIS_MODULE,
3327 .open = bond_info_open,
3328 .read = seq_read,
3329 .llseek = seq_lseek,
3330 .release = seq_release,
3331};
3332
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003333static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
3335 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003336 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003338 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003339 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003340 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003341 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003342 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003343 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3344 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003345 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348}
3349
3350static void bond_remove_proc_entry(struct bonding *bond)
3351{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003352 struct net_device *bond_dev = bond->dev;
3353 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3354
3355 if (bn->proc_dir && bond->proc_entry) {
3356 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 memset(bond->proc_file_name, 0, IFNAMSIZ);
3358 bond->proc_entry = NULL;
3359 }
3360}
3361
3362/* Create the bonding directory under /proc/net, if doesn't exist yet.
3363 * Caller must hold rtnl_lock.
3364 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003365static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003367 if (!bn->proc_dir) {
3368 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3369 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003370 pr_warning("Warning: cannot create /proc/net/%s\n",
3371 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
3373}
3374
3375/* Destroy the bonding directory under /proc/net, if empty.
3376 * Caller must hold rtnl_lock.
3377 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003378static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003380 if (bn->proc_dir) {
3381 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3382 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 }
3384}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003385
3386#else /* !CONFIG_PROC_FS */
3387
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003388static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003389{
3390}
3391
3392static void bond_remove_proc_entry(struct bonding *bond)
3393{
3394}
3395
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003396static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003397{
3398}
3399
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003400static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003401{
3402}
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404#endif /* CONFIG_PROC_FS */
3405
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407/*-------------------------- netdev event handling --------------------------*/
3408
3409/*
3410 * Change device name
3411 */
3412static int bond_event_changename(struct bonding *bond)
3413{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 bond_remove_proc_entry(bond);
3415 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 return NOTIFY_DONE;
3418}
3419
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003420static int bond_master_netdev_event(unsigned long event,
3421 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422{
Wang Chen454d7c92008-11-12 23:37:49 -08003423 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
3425 switch (event) {
3426 case NETDEV_CHANGENAME:
3427 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 default:
3429 break;
3430 }
3431
3432 return NOTIFY_DONE;
3433}
3434
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003435static int bond_slave_netdev_event(unsigned long event,
3436 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
3438 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003439 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441 switch (event) {
3442 case NETDEV_UNREGISTER:
3443 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003444 if (bond->setup_by_slave)
3445 bond_release_and_destroy(bond_dev, slave_dev);
3446 else
3447 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 }
3449 break;
3450 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003451 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3452 struct slave *slave;
3453
3454 slave = bond_get_slave_by_dev(bond, slave_dev);
3455 if (slave) {
3456 u16 old_speed = slave->speed;
3457 u16 old_duplex = slave->duplex;
3458
3459 bond_update_speed_duplex(slave);
3460
3461 if (bond_is_lb(bond))
3462 break;
3463
3464 if (old_speed != slave->speed)
3465 bond_3ad_adapter_speed_changed(slave);
3466 if (old_duplex != slave->duplex)
3467 bond_3ad_adapter_duplex_changed(slave);
3468 }
3469 }
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 break;
3472 case NETDEV_DOWN:
3473 /*
3474 * ... Or is it this?
3475 */
3476 break;
3477 case NETDEV_CHANGEMTU:
3478 /*
3479 * TODO: Should slaves be allowed to
3480 * independently alter their MTU? For
3481 * an active-backup bond, slaves need
3482 * not be the same type of device, so
3483 * MTUs may vary. For other modes,
3484 * slaves arguably should have the
3485 * same MTUs. To do this, we'd need to
3486 * take over the slave's change_mtu
3487 * function for the duration of their
3488 * servitude.
3489 */
3490 break;
3491 case NETDEV_CHANGENAME:
3492 /*
3493 * TODO: handle changing the primary's name
3494 */
3495 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003496 case NETDEV_FEAT_CHANGE:
3497 bond_compute_features(bond);
3498 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 default:
3500 break;
3501 }
3502
3503 return NOTIFY_DONE;
3504}
3505
3506/*
3507 * bond_netdev_event: handle netdev notifier chain events.
3508 *
3509 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003510 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 * locks for us to safely manipulate the slave devices (RTNL lock,
3512 * dev_probe_lock).
3513 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003514static int bond_netdev_event(struct notifier_block *this,
3515 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516{
3517 struct net_device *event_dev = (struct net_device *)ptr;
3518
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003519 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003520 event_dev ? event_dev->name : "None",
3521 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003523 if (!(event_dev->priv_flags & IFF_BONDING))
3524 return NOTIFY_DONE;
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003527 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 return bond_master_netdev_event(event, event_dev);
3529 }
3530
3531 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003532 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 return bond_slave_netdev_event(event, event_dev);
3534 }
3535
3536 return NOTIFY_DONE;
3537}
3538
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003539/*
3540 * bond_inetaddr_event: handle inetaddr notifier chain events.
3541 *
3542 * We keep track of device IPs primarily to use as source addresses in
3543 * ARP monitor probes (rather than spewing out broadcasts all the time).
3544 *
3545 * We track one IP for the main device (if it has one), plus one per VLAN.
3546 */
3547static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3548{
3549 struct in_ifaddr *ifa = ptr;
3550 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003551 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003552 struct bonding *bond;
3553 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003554
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003555 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003556 if (bond->dev == event_dev) {
3557 switch (event) {
3558 case NETDEV_UP:
3559 bond->master_ip = ifa->ifa_local;
3560 return NOTIFY_OK;
3561 case NETDEV_DOWN:
3562 bond->master_ip = bond_glean_dev_ip(bond->dev);
3563 return NOTIFY_OK;
3564 default:
3565 return NOTIFY_DONE;
3566 }
3567 }
3568
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003569 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08003570 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003571 if (vlan_dev == event_dev) {
3572 switch (event) {
3573 case NETDEV_UP:
3574 vlan->vlan_ip = ifa->ifa_local;
3575 return NOTIFY_OK;
3576 case NETDEV_DOWN:
3577 vlan->vlan_ip =
3578 bond_glean_dev_ip(vlan_dev);
3579 return NOTIFY_OK;
3580 default:
3581 return NOTIFY_DONE;
3582 }
3583 }
3584 }
3585 }
3586 return NOTIFY_DONE;
3587}
3588
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589static struct notifier_block bond_netdev_notifier = {
3590 .notifier_call = bond_netdev_event,
3591};
3592
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003593static struct notifier_block bond_inetaddr_notifier = {
3594 .notifier_call = bond_inetaddr_event,
3595};
3596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597/*-------------------------- Packet type handling ---------------------------*/
3598
3599/* register to receive lacpdus on a bond */
3600static void bond_register_lacpdu(struct bonding *bond)
3601{
3602 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3603
3604 /* initialize packet type */
3605 pk_type->type = PKT_TYPE_LACPDU;
3606 pk_type->dev = bond->dev;
3607 pk_type->func = bond_3ad_lacpdu_recv;
3608
3609 dev_add_pack(pk_type);
3610}
3611
3612/* unregister to receive lacpdus on a bond */
3613static void bond_unregister_lacpdu(struct bonding *bond)
3614{
3615 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3616}
3617
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003618void bond_register_arp(struct bonding *bond)
3619{
3620 struct packet_type *pt = &bond->arp_mon_pt;
3621
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003622 if (pt->type)
3623 return;
3624
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003625 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003626 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003627 pt->func = bond_arp_rcv;
3628 dev_add_pack(pt);
3629}
3630
3631void bond_unregister_arp(struct bonding *bond)
3632{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003633 struct packet_type *pt = &bond->arp_mon_pt;
3634
3635 dev_remove_pack(pt);
3636 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003637}
3638
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003639/*---------------------------- Hashing Policies -----------------------------*/
3640
3641/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003642 * Hash for the output device based upon layer 2 and layer 3 data. If
3643 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3644 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003645static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003646{
3647 struct ethhdr *data = (struct ethhdr *)skb->data;
3648 struct iphdr *iph = ip_hdr(skb);
3649
Brian Haleyf14c4e42008-09-02 10:08:08 -04003650 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003651 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003652 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003653 }
3654
Jasper Spaansd3da6832009-10-23 04:08:46 +00003655 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003656}
3657
3658/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003659 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003660 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3661 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3662 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003663static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003664{
3665 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003666 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003667 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003668 int layer4_xor = 0;
3669
Brian Haleyf14c4e42008-09-02 10:08:08 -04003670 if (skb->protocol == htons(ETH_P_IP)) {
3671 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003672 (iph->protocol == IPPROTO_TCP ||
3673 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003674 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003675 }
3676 return (layer4_xor ^
3677 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3678
3679 }
3680
Jasper Spaansd3da6832009-10-23 04:08:46 +00003681 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003682}
3683
3684/*
3685 * Hash for the output device based upon layer 2 data
3686 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003687static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003688{
3689 struct ethhdr *data = (struct ethhdr *)skb->data;
3690
Jasper Spaansd3da6832009-10-23 04:08:46 +00003691 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003692}
3693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694/*-------------------------- Device entry points ----------------------------*/
3695
3696static int bond_open(struct net_device *bond_dev)
3697{
Wang Chen454d7c92008-11-12 23:37:49 -08003698 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
3700 bond->kill_timers = 0;
3701
Holger Eitzenberger58402052008-12-09 23:07:13 -08003702 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 /* bond_alb_initialize must be called before the timer
3704 * is started.
3705 */
3706 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3707 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003708 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 }
3710
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003711 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3712 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 }
3714
3715 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003716 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3717 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 }
3719
3720 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003721 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3722 INIT_DELAYED_WORK(&bond->arp_work,
3723 bond_activebackup_arp_mon);
3724 else
3725 INIT_DELAYED_WORK(&bond->arp_work,
3726 bond_loadbalance_arp_mon);
3727
3728 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003729 if (bond->params.arp_validate)
3730 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 }
3732
3733 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003734 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003735 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 /* register to receive LACPDUs */
3737 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003738 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 }
3740
3741 return 0;
3742}
3743
3744static int bond_close(struct net_device *bond_dev)
3745{
Wang Chen454d7c92008-11-12 23:37:49 -08003746 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
3748 if (bond->params.mode == BOND_MODE_8023AD) {
3749 /* Unregister the receive of LACPDUs */
3750 bond_unregister_lacpdu(bond);
3751 }
3752
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003753 if (bond->params.arp_validate)
3754 bond_unregister_arp(bond);
3755
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 write_lock_bh(&bond->lock);
3757
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003758 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003759 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
3761 /* signal timers not to re-arm */
3762 bond->kill_timers = 1;
3763
3764 write_unlock_bh(&bond->lock);
3765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003767 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 }
3769
3770 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003771 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 }
3773
3774 switch (bond->params.mode) {
3775 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003776 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 break;
3778 case BOND_MODE_TLB:
3779 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003780 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 break;
3782 default:
3783 break;
3784 }
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Holger Eitzenberger58402052008-12-09 23:07:13 -08003787 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 /* Must be called only after all
3789 * slaves have been released
3790 */
3791 bond_alb_deinitialize(bond);
3792 }
3793
3794 return 0;
3795}
3796
3797static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3798{
Wang Chen454d7c92008-11-12 23:37:49 -08003799 struct bonding *bond = netdev_priv(bond_dev);
Ajit Khaparde35cfabd2010-02-01 14:06:52 +00003800 struct net_device_stats *stats = &bond_dev->stats;
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003801 struct net_device_stats local_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 struct slave *slave;
3803 int i;
3804
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003805 memset(&local_stats, 0, sizeof(struct net_device_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
3807 read_lock_bh(&bond->lock);
3808
3809 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003810 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3811
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003812 local_stats.rx_packets += sstats->rx_packets;
3813 local_stats.rx_bytes += sstats->rx_bytes;
3814 local_stats.rx_errors += sstats->rx_errors;
3815 local_stats.rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003817 local_stats.tx_packets += sstats->tx_packets;
3818 local_stats.tx_bytes += sstats->tx_bytes;
3819 local_stats.tx_errors += sstats->tx_errors;
3820 local_stats.tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003822 local_stats.multicast += sstats->multicast;
3823 local_stats.collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003825 local_stats.rx_length_errors += sstats->rx_length_errors;
3826 local_stats.rx_over_errors += sstats->rx_over_errors;
3827 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3828 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3829 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3830 local_stats.rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003832 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3833 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3834 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3835 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3836 local_stats.tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 }
3838
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003839 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
3840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 read_unlock_bh(&bond->lock);
3842
3843 return stats;
3844}
3845
3846static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3847{
3848 struct net_device *slave_dev = NULL;
3849 struct ifbond k_binfo;
3850 struct ifbond __user *u_binfo = NULL;
3851 struct ifslave k_sinfo;
3852 struct ifslave __user *u_sinfo = NULL;
3853 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 int res = 0;
3855
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003856 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
3858 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 case SIOCGMIIPHY:
3860 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003861 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003863
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 mii->phy_id = 0;
3865 /* Fall Through */
3866 case SIOCGMIIREG:
3867 /*
3868 * We do this again just in case we were called by SIOCGMIIREG
3869 * instead of SIOCGMIIPHY.
3870 */
3871 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003872 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
3876 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003877 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003879 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003881 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003885 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 }
3887
3888 return 0;
3889 case BOND_INFO_QUERY_OLD:
3890 case SIOCBONDINFOQUERY:
3891 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3892
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003893 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
3896 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003897 if (res == 0 &&
3898 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3899 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
3901 return res;
3902 case BOND_SLAVE_INFO_QUERY_OLD:
3903 case SIOCBONDSLAVEINFOQUERY:
3904 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3905
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003906 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
3909 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003910 if (res == 0 &&
3911 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3912 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
3914 return res;
3915 default:
3916 /* Go on */
3917 break;
3918 }
3919
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003920 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003923 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003925 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003927 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003929 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003930 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 switch (cmd) {
3932 case BOND_ENSLAVE_OLD:
3933 case SIOCBONDENSLAVE:
3934 res = bond_enslave(bond_dev, slave_dev);
3935 break;
3936 case BOND_RELEASE_OLD:
3937 case SIOCBONDRELEASE:
3938 res = bond_release(bond_dev, slave_dev);
3939 break;
3940 case BOND_SETHWADDR_OLD:
3941 case SIOCBONDSETHWADDR:
3942 res = bond_sethwaddr(bond_dev, slave_dev);
3943 break;
3944 case BOND_CHANGE_ACTIVE_OLD:
3945 case SIOCBONDCHANGEACTIVE:
3946 res = bond_ioctl_change_active(bond_dev, slave_dev);
3947 break;
3948 default:
3949 res = -EOPNOTSUPP;
3950 }
3951
3952 dev_put(slave_dev);
3953 }
3954
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 return res;
3956}
3957
Jiri Pirko22bedad32010-04-01 21:22:57 +00003958static bool bond_addr_in_mc_list(unsigned char *addr,
3959 struct netdev_hw_addr_list *list,
3960 int addrlen)
3961{
3962 struct netdev_hw_addr *ha;
3963
3964 netdev_hw_addr_list_for_each(ha, list)
3965 if (!memcmp(ha->addr, addr, addrlen))
3966 return true;
3967
3968 return false;
3969}
3970
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971static void bond_set_multicast_list(struct net_device *bond_dev)
3972{
Wang Chen454d7c92008-11-12 23:37:49 -08003973 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00003974 struct netdev_hw_addr *ha;
3975 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 /*
3978 * Do promisc before checking multicast_mode
3979 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003980 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003981 /*
3982 * FIXME: Need to handle the error when one of the multi-slaves
3983 * encounters error.
3984 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003987
3988 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003990
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003993 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003994 /*
3995 * FIXME: Need to handle the error when one of the multi-slaves
3996 * encounters error.
3997 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004000
4001 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004005 read_lock(&bond->lock);
4006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 bond->flags = bond_dev->flags;
4008
4009 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004010 netdev_for_each_mc_addr(ha, bond_dev) {
4011 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4012 bond_dev->addr_len);
4013 if (!found)
4014 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 }
4016
4017 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004018 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4019 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4020 bond_dev->addr_len);
4021 if (!found)
4022 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 }
4024
4025 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00004026 __hw_addr_flush(&bond->mc_list);
4027 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4028 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004030 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031}
4032
Stephen Hemminger00829822008-11-20 20:14:53 -08004033static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4034{
4035 struct bonding *bond = netdev_priv(dev);
4036 struct slave *slave = bond->first_slave;
4037
4038 if (slave) {
4039 const struct net_device_ops *slave_ops
4040 = slave->dev->netdev_ops;
4041 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004042 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004043 }
4044 return 0;
4045}
4046
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047/*
4048 * Change the MTU of all of a master's slaves to match the master
4049 */
4050static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4051{
Wang Chen454d7c92008-11-12 23:37:49 -08004052 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 struct slave *slave, *stop_at;
4054 int res = 0;
4055 int i;
4056
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004057 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004058 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
4060 /* Can't hold bond->lock with bh disabled here since
4061 * some base drivers panic. On the other hand we can't
4062 * hold bond->lock without bh disabled because we'll
4063 * deadlock. The only solution is to rely on the fact
4064 * that we're under rtnl_lock here, and the slaves
4065 * list won't change. This doesn't solve the problem
4066 * of setting the slave's MTU while it is
4067 * transmitting, but the assumption is that the base
4068 * driver can handle that.
4069 *
4070 * TODO: figure out a way to safely iterate the slaves
4071 * list, but without holding a lock around the actual
4072 * call to the base driver.
4073 */
4074
4075 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004076 pr_debug("s %p s->p %p c_m %p\n",
4077 slave,
4078 slave->prev,
4079 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004080
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 res = dev_set_mtu(slave->dev, new_mtu);
4082
4083 if (res) {
4084 /* If we failed to set the slave's mtu to the new value
4085 * we must abort the operation even in ACTIVE_BACKUP
4086 * mode, because if we allow the backup slaves to have
4087 * different mtu values than the active slave we'll
4088 * need to change their mtu when doing a failover. That
4089 * means changing their mtu from timer context, which
4090 * is probably not a good idea.
4091 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004092 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 goto unwind;
4094 }
4095 }
4096
4097 bond_dev->mtu = new_mtu;
4098
4099 return 0;
4100
4101unwind:
4102 /* unwind from head to the slave that failed */
4103 stop_at = slave;
4104 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4105 int tmp_res;
4106
4107 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4108 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004109 pr_debug("unwind err %d dev %s\n",
4110 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 }
4112 }
4113
4114 return res;
4115}
4116
4117/*
4118 * Change HW address
4119 *
4120 * Note that many devices must be down to change the HW address, and
4121 * downing the master releases all slaves. We can make bonds full of
4122 * bonding devices to test this, however.
4123 */
4124static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4125{
Wang Chen454d7c92008-11-12 23:37:49 -08004126 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 struct sockaddr *sa = addr, tmp_sa;
4128 struct slave *slave, *stop_at;
4129 int res = 0;
4130 int i;
4131
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004132 if (bond->params.mode == BOND_MODE_ALB)
4133 return bond_alb_set_mac_address(bond_dev, addr);
4134
4135
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004136 pr_debug("bond=%p, name=%s\n",
4137 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
Jay Vosburghdd957c52007-10-09 19:57:24 -07004139 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004140 * If fail_over_mac is set to active, do nothing and return
4141 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004142 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004143 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004144 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004145
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004146 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
4149 /* Can't hold bond->lock with bh disabled here since
4150 * some base drivers panic. On the other hand we can't
4151 * hold bond->lock without bh disabled because we'll
4152 * deadlock. The only solution is to rely on the fact
4153 * that we're under rtnl_lock here, and the slaves
4154 * list won't change. This doesn't solve the problem
4155 * of setting the slave's hw address while it is
4156 * transmitting, but the assumption is that the base
4157 * driver can handle that.
4158 *
4159 * TODO: figure out a way to safely iterate the slaves
4160 * list, but without holding a lock around the actual
4161 * call to the base driver.
4162 */
4163
4164 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004165 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004166 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004168 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004170 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 goto unwind;
4172 }
4173
4174 res = dev_set_mac_address(slave->dev, addr);
4175 if (res) {
4176 /* TODO: consider downing the slave
4177 * and retry ?
4178 * User should expect communications
4179 * breakage anyway until ARP finish
4180 * updating, so...
4181 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004182 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 goto unwind;
4184 }
4185 }
4186
4187 /* success */
4188 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4189 return 0;
4190
4191unwind:
4192 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4193 tmp_sa.sa_family = bond_dev->type;
4194
4195 /* unwind from head to the slave that failed */
4196 stop_at = slave;
4197 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4198 int tmp_res;
4199
4200 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4201 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004202 pr_debug("unwind err %d dev %s\n",
4203 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 }
4205 }
4206
4207 return res;
4208}
4209
4210static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4211{
Wang Chen454d7c92008-11-12 23:37:49 -08004212 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004214 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004215 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
4217 read_lock(&bond->lock);
4218
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004219 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004221 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004222 * Start with the curr_active_slave that joined the bond as the
4223 * default for sending IGMP traffic. For failover purposes one
4224 * needs to maintain some consistency for the interface that will
4225 * send the join/membership reports. The curr_active_slave found
4226 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004227 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004228 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004229 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004231 read_lock(&bond->curr_slave_lock);
4232 slave = bond->curr_active_slave;
4233 read_unlock(&bond->curr_slave_lock);
4234
4235 if (!slave)
4236 goto out;
4237 } else {
4238 /*
4239 * Concurrent TX may collide on rr_tx_counter; we accept
4240 * that as being rare enough not to justify using an
4241 * atomic op here.
4242 */
4243 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4244
4245 bond_for_each_slave(bond, slave, i) {
4246 slave_no--;
4247 if (slave_no < 0)
4248 break;
4249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 }
4251
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004252 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 bond_for_each_slave_from(bond, slave, i, start_at) {
4254 if (IS_UP(slave->dev) &&
4255 (slave->link == BOND_LINK_UP) &&
4256 (slave->state == BOND_STATE_ACTIVE)) {
4257 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 break;
4259 }
4260 }
4261
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262out:
4263 if (res) {
4264 /* no suitable interface, frame not sent */
4265 dev_kfree_skb(skb);
4266 }
4267 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004268 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269}
4270
John W. Linville075897c2005-09-28 17:50:53 -04004271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272/*
4273 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4274 * the bond has a usable interface.
4275 */
4276static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4277{
Wang Chen454d7c92008-11-12 23:37:49 -08004278 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 int res = 1;
4280
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 read_lock(&bond->lock);
4282 read_lock(&bond->curr_slave_lock);
4283
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004284 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
John W. Linville075897c2005-09-28 17:50:53 -04004287 if (!bond->curr_active_slave)
4288 goto out;
4289
John W. Linville075897c2005-09-28 17:50:53 -04004290 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4291
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004293 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 /* no suitable interface, frame not sent */
4295 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004296
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 read_unlock(&bond->curr_slave_lock);
4298 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004299 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300}
4301
4302/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004303 * In bond_xmit_xor() , we determine the output device by using a pre-
4304 * determined xmit_hash_policy(), If the selected device is not enabled,
4305 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 */
4307static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4308{
Wang Chen454d7c92008-11-12 23:37:49 -08004309 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 struct slave *slave, *start_at;
4311 int slave_no;
4312 int i;
4313 int res = 1;
4314
4315 read_lock(&bond->lock);
4316
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004317 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Jasper Spaansa361c832009-10-23 04:09:24 +00004320 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
4322 bond_for_each_slave(bond, slave, i) {
4323 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004324 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 }
4327
4328 start_at = slave;
4329
4330 bond_for_each_slave_from(bond, slave, i, start_at) {
4331 if (IS_UP(slave->dev) &&
4332 (slave->link == BOND_LINK_UP) &&
4333 (slave->state == BOND_STATE_ACTIVE)) {
4334 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4335 break;
4336 }
4337 }
4338
4339out:
4340 if (res) {
4341 /* no suitable interface, frame not sent */
4342 dev_kfree_skb(skb);
4343 }
4344 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004345 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346}
4347
4348/*
4349 * in broadcast mode, we send everything to all usable interfaces.
4350 */
4351static int bond_xmit_broadcast(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 struct slave *slave, *start_at;
4355 struct net_device *tx_dev = NULL;
4356 int i;
4357 int res = 1;
4358
4359 read_lock(&bond->lock);
4360
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004361 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
4364 read_lock(&bond->curr_slave_lock);
4365 start_at = bond->curr_active_slave;
4366 read_unlock(&bond->curr_slave_lock);
4367
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004368 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
4371 bond_for_each_slave_from(bond, slave, i, start_at) {
4372 if (IS_UP(slave->dev) &&
4373 (slave->link == BOND_LINK_UP) &&
4374 (slave->state == BOND_STATE_ACTIVE)) {
4375 if (tx_dev) {
4376 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4377 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004378 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004379 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 continue;
4381 }
4382
4383 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4384 if (res) {
4385 dev_kfree_skb(skb2);
4386 continue;
4387 }
4388 }
4389 tx_dev = slave->dev;
4390 }
4391 }
4392
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004393 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395
4396out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004397 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 /* no suitable interface, frame not sent */
4399 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004400
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 /* frame sent to all suitable interfaces */
4402 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004403 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404}
4405
4406/*------------------------- Device initialization ---------------------------*/
4407
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004408static void bond_set_xmit_hash_policy(struct bonding *bond)
4409{
4410 switch (bond->params.xmit_policy) {
4411 case BOND_XMIT_POLICY_LAYER23:
4412 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4413 break;
4414 case BOND_XMIT_POLICY_LAYER34:
4415 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4416 break;
4417 case BOND_XMIT_POLICY_LAYER2:
4418 default:
4419 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4420 break;
4421 }
4422}
4423
Stephen Hemminger424efe92009-08-31 19:50:51 +00004424static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004425{
4426 const struct bonding *bond = netdev_priv(dev);
4427
4428 switch (bond->params.mode) {
4429 case BOND_MODE_ROUNDROBIN:
4430 return bond_xmit_roundrobin(skb, dev);
4431 case BOND_MODE_ACTIVEBACKUP:
4432 return bond_xmit_activebackup(skb, dev);
4433 case BOND_MODE_XOR:
4434 return bond_xmit_xor(skb, dev);
4435 case BOND_MODE_BROADCAST:
4436 return bond_xmit_broadcast(skb, dev);
4437 case BOND_MODE_8023AD:
4438 return bond_3ad_xmit_xor(skb, dev);
4439 case BOND_MODE_ALB:
4440 case BOND_MODE_TLB:
4441 return bond_alb_xmit(skb, dev);
4442 default:
4443 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004444 pr_err("%s: Error: Unknown bonding mode %d\n",
4445 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004446 WARN_ON_ONCE(1);
4447 dev_kfree_skb(skb);
4448 return NETDEV_TX_OK;
4449 }
4450}
4451
4452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453/*
4454 * set bond mode specific net device operations
4455 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004456void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004458 struct net_device *bond_dev = bond->dev;
4459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 switch (mode) {
4461 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 break;
4463 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 break;
4465 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004466 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 break;
4468 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 break;
4470 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004471 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004472 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004475 bond_set_master_alb_flags(bond);
4476 /* FALLTHRU */
4477 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 break;
4479 default:
4480 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004481 pr_err("%s: Error: Unknown bonding mode %d\n",
4482 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 break;
4484 }
4485}
4486
Jay Vosburgh217df672005-09-26 16:11:50 -07004487static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4488 struct ethtool_drvinfo *drvinfo)
4489{
4490 strncpy(drvinfo->driver, DRV_NAME, 32);
4491 strncpy(drvinfo->version, DRV_VERSION, 32);
4492 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4493}
4494
Jeff Garzik7282d492006-09-13 14:30:00 -04004495static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004496 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004497 .get_link = ethtool_op_get_link,
4498 .get_tx_csum = ethtool_op_get_tx_csum,
4499 .get_sg = ethtool_op_get_sg,
4500 .get_tso = ethtool_op_get_tso,
4501 .get_ufo = ethtool_op_get_ufo,
4502 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004503};
4504
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004505static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004506 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004507 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004508 .ndo_open = bond_open,
4509 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004510 .ndo_start_xmit = bond_start_xmit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004511 .ndo_get_stats = bond_get_stats,
4512 .ndo_do_ioctl = bond_do_ioctl,
4513 .ndo_set_multicast_list = bond_set_multicast_list,
4514 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004515 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004516 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004517 .ndo_vlan_rx_register = bond_vlan_rx_register,
4518 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4519 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004520#ifdef CONFIG_NET_POLL_CONTROLLER
4521 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4522 .ndo_poll_controller = bond_poll_controller,
4523#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004524};
4525
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004526static void bond_destructor(struct net_device *bond_dev)
4527{
4528 struct bonding *bond = netdev_priv(bond_dev);
4529 if (bond->wq)
4530 destroy_workqueue(bond->wq);
4531 free_netdev(bond_dev);
4532}
4533
Stephen Hemminger181470f2009-06-12 19:02:52 +00004534static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535{
Wang Chen454d7c92008-11-12 23:37:49 -08004536 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 /* initialize rwlocks */
4539 rwlock_init(&bond->lock);
4540 rwlock_init(&bond->curr_slave_lock);
4541
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004542 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
4544 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 bond->dev = bond_dev;
4546 INIT_LIST_HEAD(&bond->vlan_list);
4547
4548 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004549 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004550 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004551 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004552 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004554 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556 /* Initialize the device options */
4557 bond_dev->tx_queue_len = 0;
4558 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004559 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004560 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4561
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004562 if (bond->params.arp_interval)
4563 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
4565 /* At first, we block adding VLANs. That's the only way to
4566 * prevent problems that occur when adding VLANs over an
4567 * empty bond. The block will be removed once non-challenged
4568 * slaves are enslaved.
4569 */
4570 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4571
Herbert Xu932ff272006-06-09 12:20:56 -07004572 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 * transmitting */
4574 bond_dev->features |= NETIF_F_LLTX;
4575
4576 /* By default, we declare the bond to be fully
4577 * VLAN hardware accelerated capable. Special
4578 * care is taken in the various xmit functions
4579 * when there are slaves that are not hw accel
4580 * capable
4581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4583 NETIF_F_HW_VLAN_RX |
4584 NETIF_F_HW_VLAN_FILTER);
4585
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586}
4587
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004588static void bond_work_cancel_all(struct bonding *bond)
4589{
4590 write_lock_bh(&bond->lock);
4591 bond->kill_timers = 1;
4592 write_unlock_bh(&bond->lock);
4593
4594 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4595 cancel_delayed_work(&bond->mii_work);
4596
4597 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4598 cancel_delayed_work(&bond->arp_work);
4599
4600 if (bond->params.mode == BOND_MODE_ALB &&
4601 delayed_work_pending(&bond->alb_work))
4602 cancel_delayed_work(&bond->alb_work);
4603
4604 if (bond->params.mode == BOND_MODE_8023AD &&
4605 delayed_work_pending(&bond->ad_work))
4606 cancel_delayed_work(&bond->ad_work);
4607}
4608
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004609/*
4610* Destroy a bonding device.
4611* Must be under rtnl_lock when this function is called.
4612*/
4613static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004614{
Wang Chen454d7c92008-11-12 23:37:49 -08004615 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004616
WANG Congf6dc31a2010-05-06 00:48:51 -07004617 bond_netpoll_cleanup(bond_dev);
4618
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004619 /* Release the bonded slaves */
4620 bond_release_all(bond_dev);
4621
Jay Vosburgha434e432008-10-30 17:41:15 -07004622 list_del(&bond->bond_list);
4623
4624 bond_work_cancel_all(bond);
4625
Jay Vosburgha434e432008-10-30 17:41:15 -07004626 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004627
Jiri Pirko22bedad32010-04-01 21:22:57 +00004628 __hw_addr_flush(&bond->mc_list);
Jay Vosburgha434e432008-10-30 17:41:15 -07004629}
4630
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631/*------------------------- Module initialization ---------------------------*/
4632
4633/*
4634 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004635 * number of the mode or its string name. A bit complicated because
4636 * some mode names are substrings of other names, and calls from sysfs
4637 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004639int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640{
Hannes Eder54b87322009-02-14 11:15:49 +00004641 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004642 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004643
Jay Vosburgha42e5342008-01-29 18:07:43 -08004644 for (p = (char *)buf; *p; p++)
4645 if (!(isdigit(*p) || isspace(*p)))
4646 break;
4647
4648 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004649 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004650 else
Hannes Eder54b87322009-02-14 11:15:49 +00004651 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004652
4653 if (!rv)
4654 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
4656 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004657 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004659 if (strcmp(modestr, tbl[i].modename) == 0)
4660 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 }
4662
4663 return -1;
4664}
4665
4666static int bond_check_params(struct bond_params *params)
4667{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004668 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004669
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 /*
4671 * Convert string parameters.
4672 */
4673 if (mode) {
4674 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4675 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004676 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 mode == NULL ? "NULL" : mode);
4678 return -EINVAL;
4679 }
4680 }
4681
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004682 if (xmit_hash_policy) {
4683 if ((bond_mode != BOND_MODE_XOR) &&
4684 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004685 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004686 bond_mode_name(bond_mode));
4687 } else {
4688 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4689 xmit_hashtype_tbl);
4690 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004691 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004692 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004693 xmit_hash_policy);
4694 return -EINVAL;
4695 }
4696 }
4697 }
4698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 if (lacp_rate) {
4700 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004701 pr_info("lacp_rate param is irrelevant in mode %s\n",
4702 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 } else {
4704 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4705 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004706 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 lacp_rate == NULL ? "NULL" : lacp_rate);
4708 return -EINVAL;
4709 }
4710 }
4711 }
4712
Jay Vosburghfd989c82008-11-04 17:51:16 -08004713 if (ad_select) {
4714 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4715 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004716 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004717 ad_select == NULL ? "NULL" : ad_select);
4718 return -EINVAL;
4719 }
4720
4721 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004722 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004723 }
4724 } else {
4725 params->ad_select = BOND_AD_STABLE;
4726 }
4727
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004728 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004729 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4730 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 max_bonds = BOND_DEFAULT_MAX_BONDS;
4732 }
4733
4734 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004735 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4736 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 miimon = BOND_LINK_MON_INTERV;
4738 }
4739
4740 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004741 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4742 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 updelay = 0;
4744 }
4745
4746 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004747 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4748 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 downdelay = 0;
4750 }
4751
4752 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004753 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4754 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755 use_carrier = 1;
4756 }
4757
Moni Shoua7893b242008-05-17 21:10:12 -07004758 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004759 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 -08004760 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004761 num_grat_arp = 1;
4762 }
4763
Brian Haley305d5522008-11-04 17:51:14 -08004764 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004765 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 -08004766 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004767 num_unsol_na = 1;
4768 }
4769
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770 /* reset values for 802.3ad */
4771 if (bond_mode == BOND_MODE_8023AD) {
4772 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004773 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 +00004774 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 miimon = 100;
4776 }
4777 }
4778
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004779 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4780 pr_warning("Warning: all_slaves_active module parameter (%d), "
4781 "not of valid value (0/1), so it was set to "
4782 "0\n", all_slaves_active);
4783 all_slaves_active = 0;
4784 }
4785
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 /* reset values for TLB/ALB */
4787 if ((bond_mode == BOND_MODE_TLB) ||
4788 (bond_mode == BOND_MODE_ALB)) {
4789 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004790 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 +00004791 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 miimon = 100;
4793 }
4794 }
4795
4796 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004797 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",
4798 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 }
4800
4801 if (!miimon) {
4802 if (updelay || downdelay) {
4803 /* just warn the user the up/down delay will have
4804 * no effect since miimon is zero...
4805 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004806 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",
4807 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 }
4809 } else {
4810 /* don't allow arp monitoring */
4811 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004812 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4813 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 arp_interval = 0;
4815 }
4816
4817 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004818 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4819 updelay, miimon,
4820 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 }
4822
4823 updelay /= miimon;
4824
4825 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004826 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4827 downdelay, miimon,
4828 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 }
4830
4831 downdelay /= miimon;
4832 }
4833
4834 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004835 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4836 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 arp_interval = BOND_LINK_ARP_INTERV;
4838 }
4839
4840 for (arp_ip_count = 0;
4841 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4842 arp_ip_count++) {
4843 /* not complete check, but should be good enough to
4844 catch mistakes */
4845 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004846 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4847 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 arp_interval = 0;
4849 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004850 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851 arp_target[arp_ip_count] = ip;
4852 }
4853 }
4854
4855 if (arp_interval && !arp_ip_count) {
4856 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004857 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4858 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 arp_interval = 0;
4860 }
4861
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004862 if (arp_validate) {
4863 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004864 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004865 return -EINVAL;
4866 }
4867 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004868 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004869 return -EINVAL;
4870 }
4871
4872 arp_validate_value = bond_parse_parm(arp_validate,
4873 arp_validate_tbl);
4874 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004875 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004876 arp_validate == NULL ? "NULL" : arp_validate);
4877 return -EINVAL;
4878 }
4879 } else
4880 arp_validate_value = 0;
4881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004883 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 } else if (arp_interval) {
4885 int i;
4886
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004887 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4888 arp_interval,
4889 arp_validate_tbl[arp_validate_value].modename,
4890 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891
4892 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004893 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004895 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
Jay Vosburghb8a97872008-06-13 18:12:04 -07004897 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 /* miimon and arp_interval not set, we need one so things
4899 * work as expected, see bonding.txt for details
4900 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004901 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 -07004902 }
4903
4904 if (primary && !USES_PRIMARY(bond_mode)) {
4905 /* currently, using a primary only makes sense
4906 * in active backup, TLB or ALB modes
4907 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004908 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
4909 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 primary = NULL;
4911 }
4912
Jiri Pirkoa5499522009-09-25 03:28:09 +00004913 if (primary && primary_reselect) {
4914 primary_reselect_value = bond_parse_parm(primary_reselect,
4915 pri_reselect_tbl);
4916 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004917 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00004918 primary_reselect ==
4919 NULL ? "NULL" : primary_reselect);
4920 return -EINVAL;
4921 }
4922 } else {
4923 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4924 }
4925
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004926 if (fail_over_mac) {
4927 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4928 fail_over_mac_tbl);
4929 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004930 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004931 arp_validate == NULL ? "NULL" : arp_validate);
4932 return -EINVAL;
4933 }
4934
4935 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004936 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004937 } else {
4938 fail_over_mac_value = BOND_FOM_NONE;
4939 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07004940
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 /* fill params struct with the proper values */
4942 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004943 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07004945 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08004946 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004948 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949 params->updelay = updelay;
4950 params->downdelay = downdelay;
4951 params->use_carrier = use_carrier;
4952 params->lacp_fast = lacp_fast;
4953 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00004954 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004955 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004956 params->all_slaves_active = all_slaves_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
4958 if (primary) {
4959 strncpy(params->primary, primary, IFNAMSIZ);
4960 params->primary[IFNAMSIZ - 1] = 0;
4961 }
4962
4963 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4964
4965 return 0;
4966}
4967
Peter Zijlstra0daa23032006-11-08 19:51:01 -08004968static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07004969static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08004970
David S. Millere8a04642008-07-17 00:34:19 -07004971static void bond_set_lockdep_class_one(struct net_device *dev,
4972 struct netdev_queue *txq,
4973 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07004974{
4975 lockdep_set_class(&txq->_xmit_lock,
4976 &bonding_netdev_xmit_lock_key);
4977}
4978
4979static void bond_set_lockdep_class(struct net_device *dev)
4980{
David S. Millercf508b12008-07-22 14:16:42 -07004981 lockdep_set_class(&dev->addr_list_lock,
4982 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07004983 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07004984}
4985
Stephen Hemminger181470f2009-06-12 19:02:52 +00004986/*
4987 * Called from registration process
4988 */
4989static int bond_init(struct net_device *bond_dev)
4990{
4991 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004992 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004993
4994 pr_debug("Begin bond_init for %s\n", bond_dev->name);
4995
4996 bond->wq = create_singlethread_workqueue(bond_dev->name);
4997 if (!bond->wq)
4998 return -ENOMEM;
4999
5000 bond_set_lockdep_class(bond_dev);
5001
5002 netif_carrier_off(bond_dev);
5003
5004 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005005 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005006
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005007 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005008
5009 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005010 return 0;
5011}
5012
Eric W. Biederman88ead972009-10-29 14:18:25 +00005013static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5014{
5015 if (tb[IFLA_ADDRESS]) {
5016 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5017 return -EINVAL;
5018 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5019 return -EADDRNOTAVAIL;
5020 }
5021 return 0;
5022}
5023
5024static struct rtnl_link_ops bond_link_ops __read_mostly = {
5025 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005026 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005027 .setup = bond_setup,
5028 .validate = bond_validate,
5029};
5030
Mitch Williamsdfe60392005-11-09 10:36:04 -08005031/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005032 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005033 * Caller must NOT hold rtnl_lock; we need to release it here before we
5034 * set up our sysfs entries.
5035 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005036int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005037{
5038 struct net_device *bond_dev;
5039 int res;
5040
5041 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005042
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005043 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
Stephen Hemminger181470f2009-06-12 19:02:52 +00005044 bond_setup);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005045 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005046 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005047 rtnl_unlock();
5048 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005049 }
5050
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005051 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005052 bond_dev->rtnl_link_ops = &bond_link_ops;
5053
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005054 if (!name) {
5055 res = dev_alloc_name(bond_dev, "bond%d");
5056 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005057 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005058 }
5059
Mitch Williamsdfe60392005-11-09 10:36:04 -08005060 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005061
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005062out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005063 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005064 if (res < 0)
5065 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005066 return res;
5067}
5068
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005069static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005070{
Eric W. Biederman15449742009-11-29 15:46:04 +00005071 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005072
5073 bn->net = net;
5074 INIT_LIST_HEAD(&bn->dev_list);
5075
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005076 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005077
5078 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005079}
5080
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005081static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005082{
Eric W. Biederman15449742009-11-29 15:46:04 +00005083 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005084
5085 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005086}
5087
5088static struct pernet_operations bond_net_ops = {
5089 .init = bond_net_init,
5090 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005091 .id = &bond_net_id,
5092 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005093};
5094
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095static int __init bonding_init(void)
5096{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 int i;
5098 int res;
5099
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005100 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
Mitch Williamsdfe60392005-11-09 10:36:04 -08005102 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005103 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005104 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Eric W. Biederman15449742009-11-29 15:46:04 +00005106 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005107 if (res)
5108 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005109
Eric W. Biederman88ead972009-10-29 14:18:25 +00005110 res = rtnl_link_register(&bond_link_ops);
5111 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005112 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005115 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005116 if (res)
5117 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 }
5119
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005120 res = bond_create_sysfs();
5121 if (res)
5122 goto err;
5123
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005125 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005126 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005127out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005129err:
5130 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005131err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005132 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005133 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005134
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135}
5136
5137static void __exit bonding_exit(void)
5138{
5139 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005140 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005141 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005143 bond_destroy_sysfs();
5144
Eric W. Biederman88ead972009-10-29 14:18:25 +00005145 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005146 unregister_pernet_subsys(&bond_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147}
5148
5149module_init(bonding_init);
5150module_exit(bonding_exit);
5151MODULE_LICENSE("GPL");
5152MODULE_VERSION(DRV_VERSION);
5153MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5154MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005155MODULE_ALIAS_RTNL_LINK("bond");