blob: c3d98dde2f86a5812067b2ef8ee52659b66dcda5 [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;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000109static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111module_param(max_bonds, int, 0);
112MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Moni Shoua7893b242008-05-17 21:10:12 -0700113module_param(num_grat_arp, int, 0644);
114MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800115module_param(num_unsol_na, int, 0644);
116MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117module_param(miimon, int, 0);
118MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
119module_param(updelay, int, 0);
120MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
121module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800122MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
123 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800125MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
126 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800128MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
129 "1 for active-backup, 2 for balance-xor, "
130 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
131 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132module_param(primary, charp, 0);
133MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000134module_param(primary_reselect, charp, 0);
135MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
136 "once it comes up; "
137 "0 for always (default), "
138 "1 for only if speed of primary is "
139 "better, "
140 "2 for only on active slave "
141 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800143MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
144 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800145module_param(ad_select, charp, 0);
146MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400147module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800148MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
149 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150module_param(arp_interval, int, 0);
151MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
152module_param_array(arp_ip_target, charp, NULL, 0);
153MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700154module_param(arp_validate, charp, 0);
155MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700156module_param(fail_over_mac, charp, 0);
157MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/*----------------------------- Global variables ----------------------------*/
160
Arjan van de Venf71e1302006-03-03 21:33:57 -0500161static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
163
Eric Dumazetf99189b2009-11-17 10:42:49 +0000164int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000166static __be32 arp_target[BOND_MAX_ARP_TARGETS];
167static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000169static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
170static int lacp_fast;
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +0000171static int disable_netpoll = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800173const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{ "slow", AD_LACP_SLOW},
175{ "fast", AD_LACP_FAST},
176{ NULL, -1},
177};
178
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800179const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{ "balance-rr", BOND_MODE_ROUNDROBIN},
181{ "active-backup", BOND_MODE_ACTIVEBACKUP},
182{ "balance-xor", BOND_MODE_XOR},
183{ "broadcast", BOND_MODE_BROADCAST},
184{ "802.3ad", BOND_MODE_8023AD},
185{ "balance-tlb", BOND_MODE_TLB},
186{ "balance-alb", BOND_MODE_ALB},
187{ NULL, -1},
188};
189
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800190const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400191{ "layer2", BOND_XMIT_POLICY_LAYER2},
192{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800193{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400194{ NULL, -1},
195};
196
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800197const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700198{ "none", BOND_ARP_VALIDATE_NONE},
199{ "active", BOND_ARP_VALIDATE_ACTIVE},
200{ "backup", BOND_ARP_VALIDATE_BACKUP},
201{ "all", BOND_ARP_VALIDATE_ALL},
202{ NULL, -1},
203};
204
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800205const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700206{ "none", BOND_FOM_NONE},
207{ "active", BOND_FOM_ACTIVE},
208{ "follow", BOND_FOM_FOLLOW},
209{ NULL, -1},
210};
211
Jiri Pirkoa5499522009-09-25 03:28:09 +0000212const struct bond_parm_tbl pri_reselect_tbl[] = {
213{ "always", BOND_PRI_RESELECT_ALWAYS},
214{ "better", BOND_PRI_RESELECT_BETTER},
215{ "failure", BOND_PRI_RESELECT_FAILURE},
216{ NULL, -1},
217};
218
Jay Vosburghfd989c82008-11-04 17:51:16 -0800219struct bond_parm_tbl ad_select_tbl[] = {
220{ "stable", BOND_AD_STABLE},
221{ "bandwidth", BOND_AD_BANDWIDTH},
222{ "count", BOND_AD_COUNT},
223{ NULL, -1},
224};
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/*-------------------------- Forward declarations ---------------------------*/
227
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400228static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000229static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000230static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232/*---------------------------- General routines -----------------------------*/
233
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700234static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800236 static const char *names[] = {
237 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
238 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
239 [BOND_MODE_XOR] = "load balancing (xor)",
240 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000241 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800242 [BOND_MODE_TLB] = "transmit load balancing",
243 [BOND_MODE_ALB] = "adaptive load balancing",
244 };
245
246 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800248
249 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/*---------------------------------- VLAN -----------------------------------*/
253
254/**
255 * bond_add_vlan - add a new vlan id on bond
256 * @bond: bond that got the notification
257 * @vlan_id: the vlan id to add
258 *
259 * Returns -ENOMEM if allocation failed.
260 */
261static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
262{
263 struct vlan_entry *vlan;
264
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800265 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800266 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Brian Haley305d5522008-11-04 17:51:14 -0800268 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000269 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 INIT_LIST_HEAD(&vlan->vlan_list);
273 vlan->vlan_id = vlan_id;
274
275 write_lock_bh(&bond->lock);
276
277 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
278
279 write_unlock_bh(&bond->lock);
280
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800281 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 return 0;
284}
285
286/**
287 * bond_del_vlan - delete a vlan id from bond
288 * @bond: bond that got the notification
289 * @vlan_id: the vlan id to delete
290 *
291 * returns -ENODEV if @vlan_id was not found in @bond.
292 */
293static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
294{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700295 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int res = -ENODEV;
297
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800298 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 write_lock_bh(&bond->lock);
301
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700302 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (vlan->vlan_id == vlan_id) {
304 list_del(&vlan->vlan_list);
305
Holger Eitzenberger58402052008-12-09 23:07:13 -0800306 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800309 pr_debug("removed VLAN ID %d from bond %s\n",
310 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 kfree(vlan);
313
314 if (list_empty(&bond->vlan_list) &&
315 (bond->slave_cnt == 0)) {
316 /* Last VLAN removed and no slaves, so
317 * restore block on adding VLANs. This will
318 * be removed once new slaves that are not
319 * VLAN challenged will be added.
320 */
321 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
322 }
323
324 res = 0;
325 goto out;
326 }
327 }
328
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800329 pr_debug("couldn't find VLAN ID %d in bond %s\n",
330 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332out:
333 write_unlock_bh(&bond->lock);
334 return res;
335}
336
337/**
338 * bond_has_challenged_slaves
339 * @bond: the bond we're working on
340 *
341 * Searches the slave list. Returns 1 if a vlan challenged slave
342 * was found, 0 otherwise.
343 *
344 * Assumes bond->lock is held.
345 */
346static int bond_has_challenged_slaves(struct bonding *bond)
347{
348 struct slave *slave;
349 int i;
350
351 bond_for_each_slave(bond, slave, i) {
352 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800353 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800354 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return 1;
356 }
357 }
358
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800359 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361}
362
363/**
364 * bond_next_vlan - safely skip to the next item in the vlans list.
365 * @bond: the bond we're working on
366 * @curr: item we're advancing from
367 *
368 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
369 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000370 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * Caller must hold bond->lock
372 */
373struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
374{
375 struct vlan_entry *next, *last;
376
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000377 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (!curr) {
381 next = list_entry(bond->vlan_list.next,
382 struct vlan_entry, vlan_list);
383 } else {
384 last = list_entry(bond->vlan_list.prev,
385 struct vlan_entry, vlan_list);
386 if (last == curr) {
387 next = list_entry(bond->vlan_list.next,
388 struct vlan_entry, vlan_list);
389 } else {
390 next = list_entry(curr->vlan_list.next,
391 struct vlan_entry, vlan_list);
392 }
393 }
394
395 return next;
396}
397
398/**
399 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000400 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * @bond: bond device that got this skb for tx.
402 * @skb: hw accel VLAN tagged skb to transmit
403 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000404 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * When the bond gets an skb to transmit that is
406 * already hardware accelerated VLAN tagged, and it
407 * needs to relay this skb to a slave that is not
408 * hw accel capable, the skb needs to be "unaccelerated",
409 * i.e. strip the hwaccel tag and re-insert it as part
410 * of the payload.
411 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000412int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
413 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700415 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 if (!list_empty(&bond->vlan_list) &&
418 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
419 vlan_get_tag(skb, &vlan_id) == 0) {
420 skb->dev = slave_dev;
421 skb = vlan_put_tag(skb, vlan_id);
422 if (!skb) {
423 /* vlan_put_tag() frees the skb in case of error,
424 * so return success here so the calling functions
425 * won't attempt to free is again.
426 */
427 return 0;
428 }
429 } else {
430 skb->dev = slave_dev;
431 }
432
433 skb->priority = 1;
WANG Congf6dc31a2010-05-06 00:48:51 -0700434#ifdef CONFIG_NET_POLL_CONTROLLER
435 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
436 struct netpoll *np = bond->dev->npinfo->netpoll;
437 slave_dev->npinfo = bond->dev->npinfo;
438 np->real_dev = np->dev = skb->dev;
439 slave_dev->priv_flags |= IFF_IN_NETPOLL;
440 netpoll_send_skb(np, skb);
441 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
442 np->dev = bond->dev;
443 } else
444#endif
445 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 return 0;
448}
449
450/*
451 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
452 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
453 * lock because:
454 * a. This operation is performed in IOCTL context,
455 * b. The operation is protected by the RTNL semaphore in the 8021q code,
456 * c. Holding a lock with BH disabled while directly calling a base driver
457 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000458 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * The design of synchronization/protection for this operation in the 8021q
460 * module is good for one or more VLAN devices over a single physical device
461 * and cannot be extended for a teaming solution like bonding, so there is a
462 * potential race condition here where a net device from the vlan group might
463 * be referenced (either by a base driver or the 8021q code) while it is being
464 * removed from the system. However, it turns out we're not making matters
465 * worse, and if it works for regular VLAN usage it will work here too.
466*/
467
468/**
469 * bond_vlan_rx_register - Propagates registration to slaves
470 * @bond_dev: bonding net device that got called
471 * @grp: vlan group being registered
472 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000473static void bond_vlan_rx_register(struct net_device *bond_dev,
474 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Wang Chen454d7c92008-11-12 23:37:49 -0800476 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct slave *slave;
478 int i;
479
480 bond->vlgrp = grp;
481
482 bond_for_each_slave(bond, slave, i) {
483 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800484 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800487 slave_ops->ndo_vlan_rx_register) {
488 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 }
491}
492
493/**
494 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
495 * @bond_dev: bonding net device that got called
496 * @vid: vlan id being added
497 */
498static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
499{
Wang Chen454d7c92008-11-12 23:37:49 -0800500 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct slave *slave;
502 int i, res;
503
504 bond_for_each_slave(bond, slave, i) {
505 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800506 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800509 slave_ops->ndo_vlan_rx_add_vid) {
510 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 }
513
514 res = bond_add_vlan(bond, vid);
515 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800516 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 bond_dev->name, vid);
518 }
519}
520
521/**
522 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
523 * @bond_dev: bonding net device that got called
524 * @vid: vlan id being removed
525 */
526static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
527{
Wang Chen454d7c92008-11-12 23:37:49 -0800528 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 struct slave *slave;
530 struct net_device *vlan_dev;
531 int i, res;
532
533 bond_for_each_slave(bond, slave, i) {
534 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800535 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800538 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /* Save and then restore vlan_dev in the grp array,
540 * since the slave's driver might clear it.
541 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800542 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800543 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800544 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546 }
547
548 res = bond_del_vlan(bond, vid);
549 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800550 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 bond_dev->name, vid);
552 }
553}
554
555static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
556{
557 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800558 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 write_lock_bh(&bond->lock);
561
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800562 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800566 slave_ops->ndo_vlan_rx_register)
567 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800570 !(slave_ops->ndo_vlan_rx_add_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800573 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
574 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576out:
577 write_unlock_bh(&bond->lock);
578}
579
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000580static void bond_del_vlans_from_slave(struct bonding *bond,
581 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800583 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct vlan_entry *vlan;
585 struct net_device *vlan_dev;
586
587 write_lock_bh(&bond->lock);
588
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800593 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
597 /* Save and then restore vlan_dev in the grp array,
598 * since the slave's driver might clear it.
599 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800600 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800601 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800602 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
605unreg:
606 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800607 slave_ops->ndo_vlan_rx_register)
608 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610out:
611 write_unlock_bh(&bond->lock);
612}
613
614/*------------------------------- Link status -------------------------------*/
615
616/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800617 * Set the carrier state for the master according to the state of its
618 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
619 * do special 802.3ad magic.
620 *
621 * Returns zero if carrier state does not change, nonzero if it does.
622 */
623static int bond_set_carrier(struct bonding *bond)
624{
625 struct slave *slave;
626 int i;
627
628 if (bond->slave_cnt == 0)
629 goto down;
630
631 if (bond->params.mode == BOND_MODE_8023AD)
632 return bond_3ad_set_carrier(bond);
633
634 bond_for_each_slave(bond, slave, i) {
635 if (slave->link == BOND_LINK_UP) {
636 if (!netif_carrier_ok(bond->dev)) {
637 netif_carrier_on(bond->dev);
638 return 1;
639 }
640 return 0;
641 }
642 }
643
644down:
645 if (netif_carrier_ok(bond->dev)) {
646 netif_carrier_off(bond->dev);
647 return 1;
648 }
649 return 0;
650}
651
652/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * Get link speed and duplex from the slave's base driver
654 * using ethtool. If for some reason the call fails or the
655 * values are invalid, fake speed and duplex to 100/Full
656 * and return error.
657 */
658static int bond_update_speed_duplex(struct slave *slave)
659{
660 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700662 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 /* Fake speed and duplex */
665 slave->speed = SPEED_100;
666 slave->duplex = DUPLEX_FULL;
667
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700668 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700671 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
672 if (res < 0)
673 return -1;
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 switch (etool.speed) {
676 case SPEED_10:
677 case SPEED_100:
678 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700679 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 break;
681 default:
682 return -1;
683 }
684
685 switch (etool.duplex) {
686 case DUPLEX_FULL:
687 case DUPLEX_HALF:
688 break;
689 default:
690 return -1;
691 }
692
693 slave->speed = etool.speed;
694 slave->duplex = etool.duplex;
695
696 return 0;
697}
698
699/*
700 * if <dev> supports MII link status reporting, check its link status.
701 *
702 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000703 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 *
705 * Return either BMSR_LSTATUS, meaning that the link is up (or we
706 * can't tell and just pretend it is), or 0, meaning that the link is
707 * down.
708 *
709 * If reporting is non-zero, instead of faking link up, return -1 if
710 * both ETHTOOL and MII ioctls fail (meaning the device does not
711 * support them). If use_carrier is set, return whatever it says.
712 * It'd be nice if there was a good way to tell if a driver supports
713 * netif_carrier, but there really isn't.
714 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000715static int bond_check_dev_link(struct bonding *bond,
716 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800718 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700719 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 struct ifreq ifr;
721 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Petri Gynther6c988852009-08-28 12:05:15 +0000723 if (!reporting && !netif_running(slave_dev))
724 return 0;
725
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800726 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jiri Pirko29112f42009-04-24 01:58:23 +0000729 /* Try to get link status using Ethtool first. */
730 if (slave_dev->ethtool_ops) {
731 if (slave_dev->ethtool_ops->get_link) {
732 u32 link;
733
734 link = slave_dev->ethtool_ops->get_link(slave_dev);
735
736 return link ? BMSR_LSTATUS : 0;
737 }
738 }
739
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000740 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800741 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (ioctl) {
743 /* TODO: set pointer to correct ioctl on a per team member */
744 /* bases to make this more efficient. that is, once */
745 /* we determine the correct ioctl, we will always */
746 /* call it and not the others for that team */
747 /* member. */
748
749 /*
750 * We cannot assume that SIOCGMIIPHY will also read a
751 * register; not all network drivers (e.g., e100)
752 * support that.
753 */
754
755 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
756 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
757 mii = if_mii(&ifr);
758 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
759 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000760 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
761 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763 }
764
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700765 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700767 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * cannot report link status). If not reporting, pretend
769 * we're ok.
770 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000771 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/*----------------------------- Multicast list ------------------------------*/
775
776/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * Push the promiscuity flag down to appropriate slaves
778 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700779static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700781 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (USES_PRIMARY(bond->params.mode)) {
783 /* write lock already acquired */
784 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700785 err = dev_set_promiscuity(bond->curr_active_slave->dev,
786 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788 } else {
789 struct slave *slave;
790 int i;
791 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700792 err = dev_set_promiscuity(slave->dev, inc);
793 if (err)
794 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700797 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
800/*
801 * Push the allmulti flag down to all slaves
802 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700803static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700805 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (USES_PRIMARY(bond->params.mode)) {
807 /* write lock already acquired */
808 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700809 err = dev_set_allmulti(bond->curr_active_slave->dev,
810 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812 } else {
813 struct slave *slave;
814 int i;
815 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700816 err = dev_set_allmulti(slave->dev, inc);
817 if (err)
818 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700821 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824/*
825 * Add a Multicast address to slaves
826 * according to mode
827 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000828static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 if (USES_PRIMARY(bond->params.mode)) {
831 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000832 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000833 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 } else {
835 struct slave *slave;
836 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000837
838 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000839 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841}
842
843/*
844 * Remove a multicast address from slave
845 * according to mode
846 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000847static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 if (USES_PRIMARY(bond->params.mode)) {
850 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000851 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000852 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 } else {
854 struct slave *slave;
855 int i;
856 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad2010-04-01 21:22:57 +0000857 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859 }
860}
861
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800862
863/*
864 * Retrieve the list of registered multicast addresses for the bonding
865 * device and retransmit an IGMP JOIN request to the current active
866 * slave.
867 */
868static void bond_resend_igmp_join_requests(struct bonding *bond)
869{
870 struct in_device *in_dev;
871 struct ip_mc_list *im;
872
873 rcu_read_lock();
874 in_dev = __in_dev_get_rcu(bond->dev);
875 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000876 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800877 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800878 }
879
880 rcu_read_unlock();
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * flush all members of flush->mc_list from device dev->mc_list
885 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000886static void bond_mc_list_flush(struct net_device *bond_dev,
887 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Wang Chen454d7c92008-11-12 23:37:49 -0800889 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +0000890 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Jiri Pirko22bedad2010-04-01 21:22:57 +0000892 netdev_for_each_mc_addr(ha, bond_dev)
893 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (bond->params.mode == BOND_MODE_8023AD) {
896 /* del lacpdu mc addr from mc list */
897 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
898
Jiri Pirko22bedad2010-04-01 21:22:57 +0000899 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901}
902
903/*--------------------------- Active slave change ---------------------------*/
904
905/*
906 * Update the mc list and multicast-related flags for the new and
907 * old active slaves (if any) according to the multicast mode, and
908 * promiscuous flags unconditionally.
909 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000910static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
911 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Jiri Pirko22bedad2010-04-01 21:22:57 +0000913 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000915 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* nothing to do - mc list is already up-to-date on
917 * all slaves
918 */
919 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000922 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000925 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Jiri Pirko22bedad2010-04-01 21:22:57 +0000928 netdev_for_each_mc_addr(ha, bond->dev)
929 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700933 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000934 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000937 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Jiri Pirko22bedad2010-04-01 21:22:57 +0000940 netdev_for_each_mc_addr(ha, bond->dev)
941 dev_mc_add(new_active->dev, ha->addr);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800942 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944}
945
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700946/*
947 * bond_do_fail_over_mac
948 *
949 * Perform special MAC address swapping for fail_over_mac settings
950 *
951 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
952 */
953static void bond_do_fail_over_mac(struct bonding *bond,
954 struct slave *new_active,
955 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000956 __releases(&bond->curr_slave_lock)
957 __releases(&bond->lock)
958 __acquires(&bond->lock)
959 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700960{
961 u8 tmp_mac[ETH_ALEN];
962 struct sockaddr saddr;
963 int rv;
964
965 switch (bond->params.fail_over_mac) {
966 case BOND_FOM_ACTIVE:
967 if (new_active)
968 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
969 new_active->dev->addr_len);
970 break;
971 case BOND_FOM_FOLLOW:
972 /*
973 * if new_active && old_active, swap them
974 * if just old_active, do nothing (going to no active slave)
975 * if just new_active, set new_active to bond's MAC
976 */
977 if (!new_active)
978 return;
979
980 write_unlock_bh(&bond->curr_slave_lock);
981 read_unlock(&bond->lock);
982
983 if (old_active) {
984 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
985 memcpy(saddr.sa_data, old_active->dev->dev_addr,
986 ETH_ALEN);
987 saddr.sa_family = new_active->dev->type;
988 } else {
989 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
990 saddr.sa_family = bond->dev->type;
991 }
992
993 rv = dev_set_mac_address(new_active->dev, &saddr);
994 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800995 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700996 bond->dev->name, -rv, new_active->dev->name);
997 goto out;
998 }
999
1000 if (!old_active)
1001 goto out;
1002
1003 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1004 saddr.sa_family = old_active->dev->type;
1005
1006 rv = dev_set_mac_address(old_active->dev, &saddr);
1007 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001008 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001009 bond->dev->name, -rv, new_active->dev->name);
1010out:
1011 read_lock(&bond->lock);
1012 write_lock_bh(&bond->curr_slave_lock);
1013 break;
1014 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001015 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001016 bond->dev->name, bond->params.fail_over_mac);
1017 break;
1018 }
1019
1020}
1021
Jiri Pirkoa5499522009-09-25 03:28:09 +00001022static bool bond_should_change_active(struct bonding *bond)
1023{
1024 struct slave *prim = bond->primary_slave;
1025 struct slave *curr = bond->curr_active_slave;
1026
1027 if (!prim || !curr || curr->link != BOND_LINK_UP)
1028 return true;
1029 if (bond->force_primary) {
1030 bond->force_primary = false;
1031 return true;
1032 }
1033 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1034 (prim->speed < curr->speed ||
1035 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1036 return false;
1037 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1038 return false;
1039 return true;
1040}
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042/**
1043 * find_best_interface - select the best available slave to be the active one
1044 * @bond: our bonding struct
1045 *
1046 * Warning: Caller must hold curr_slave_lock for writing.
1047 */
1048static struct slave *bond_find_best_slave(struct bonding *bond)
1049{
1050 struct slave *new_active, *old_active;
1051 struct slave *bestslave = NULL;
1052 int mintime = bond->params.updelay;
1053 int i;
1054
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001055 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001058 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001060 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001065 bond->primary_slave->link == BOND_LINK_UP &&
1066 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 new_active = bond->primary_slave;
1068 }
1069
1070 /* remember where to stop iterating over the slaves */
1071 old_active = new_active;
1072
1073 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001074 if (new_active->link == BOND_LINK_UP) {
1075 return new_active;
1076 } else if (new_active->link == BOND_LINK_BACK &&
1077 IS_UP(new_active->dev)) {
1078 /* link up, but waiting for stabilization */
1079 if (new_active->delay < mintime) {
1080 mintime = new_active->delay;
1081 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 }
1084 }
1085
1086 return bestslave;
1087}
1088
1089/**
1090 * change_active_interface - change the active slave into the specified one
1091 * @bond: our bonding struct
1092 * @new: the new slave to make the active one
1093 *
1094 * Set the new slave to the bond's settings and unset them on the old
1095 * curr_active_slave.
1096 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1097 *
1098 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1099 * because it is apparently the best available slave we have, even though its
1100 * updelay hasn't timed out yet.
1101 *
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001102 * If new_active is not NULL, caller must hold bond->lock for read and
1103 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001105void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct slave *old_active = bond->curr_active_slave;
1108
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001109 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001113 new_active->jiffies = jiffies;
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (new_active->link == BOND_LINK_BACK) {
1116 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001117 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1118 bond->dev->name, new_active->dev->name,
1119 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121
1122 new_active->delay = 0;
1123 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001125 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Holger Eitzenberger58402052008-12-09 23:07:13 -08001128 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 } else {
1131 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001132 pr_info("%s: making interface %s the new active one.\n",
1133 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135 }
1136 }
1137
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001138 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Holger Eitzenberger58402052008-12-09 23:07:13 -08001141 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001143 if (old_active)
1144 bond_set_slave_inactive_flags(old_active);
1145 if (new_active)
1146 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 } else {
1148 bond->curr_active_slave = new_active;
1149 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001150
1151 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001152 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001153 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001154
1155 if (new_active) {
1156 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001157
Or Gerlitz709f8a42008-06-13 18:12:01 -07001158 if (bond->params.fail_over_mac)
1159 bond_do_fail_over_mac(bond, new_active,
1160 old_active);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001161
Or Gerlitz709f8a42008-06-13 18:12:01 -07001162 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001163 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001164
Brian Haley305d5522008-11-04 17:51:14 -08001165 bond->send_unsol_na = bond->params.num_unsol_na;
1166 bond_send_unsolicited_na(bond);
1167
Or Gerlitz01f31092008-06-13 18:12:02 -07001168 write_unlock_bh(&bond->curr_slave_lock);
1169 read_unlock(&bond->lock);
1170
Moni Shoua75c78502009-09-15 02:37:40 -07001171 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001172
1173 read_lock(&bond->lock);
1174 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001175 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001176 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001177
1178 /* resend IGMP joins since all were sent on curr_active_slave */
1179 if (bond->params.mode == BOND_MODE_ROUNDROBIN) {
1180 bond_resend_igmp_join_requests(bond);
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
1184/**
1185 * bond_select_active_slave - select a new active slave, if needed
1186 * @bond: our bonding struct
1187 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001188 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 * - The old curr_active_slave has been released or lost its link.
1190 * - The primary_slave has got its link back.
1191 * - A slave has got its link back and there's no old curr_active_slave.
1192 *
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001193 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001195void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001198 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 best_slave = bond_find_best_slave(bond);
1201 if (best_slave != bond->curr_active_slave) {
1202 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001203 rv = bond_set_carrier(bond);
1204 if (!rv)
1205 return;
1206
1207 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001208 pr_info("%s: first active interface up!\n",
1209 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001210 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001211 pr_info("%s: now running without any active interface !\n",
1212 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215}
1216
1217/*--------------------------- slave list handling ---------------------------*/
1218
1219/*
1220 * This function attaches the slave to the end of list.
1221 *
1222 * bond->lock held for writing by caller.
1223 */
1224static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1225{
1226 if (bond->first_slave == NULL) { /* attaching the first slave */
1227 new_slave->next = new_slave;
1228 new_slave->prev = new_slave;
1229 bond->first_slave = new_slave;
1230 } else {
1231 new_slave->next = bond->first_slave;
1232 new_slave->prev = bond->first_slave->prev;
1233 new_slave->next->prev = new_slave;
1234 new_slave->prev->next = new_slave;
1235 }
1236
1237 bond->slave_cnt++;
1238}
1239
1240/*
1241 * This function detaches the slave from the list.
1242 * WARNING: no check is made to verify if the slave effectively
1243 * belongs to <bond>.
1244 * Nothing is freed on return, structures are just unchained.
1245 * If any slave pointer in bond was pointing to <slave>,
1246 * it should be changed by the calling function.
1247 *
1248 * bond->lock held for writing by caller.
1249 */
1250static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1251{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001252 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001255 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 if (bond->first_slave == slave) { /* slave is the first slave */
1259 if (bond->slave_cnt > 1) { /* there are more slave */
1260 bond->first_slave = slave->next;
1261 } else {
1262 bond->first_slave = NULL; /* slave was the last one */
1263 }
1264 }
1265
1266 slave->next = NULL;
1267 slave->prev = NULL;
1268 bond->slave_cnt--;
1269}
1270
WANG Congf6dc31a2010-05-06 00:48:51 -07001271#ifdef CONFIG_NET_POLL_CONTROLLER
1272/*
1273 * You must hold read lock on bond->lock before calling this.
1274 */
1275static bool slaves_support_netpoll(struct net_device *bond_dev)
1276{
1277 struct bonding *bond = netdev_priv(bond_dev);
1278 struct slave *slave;
1279 int i = 0;
1280 bool ret = true;
1281
1282 bond_for_each_slave(bond, slave, i) {
1283 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1284 !slave->dev->netdev_ops->ndo_poll_controller)
1285 ret = false;
1286 }
1287 return i != 0 && ret;
1288}
1289
1290static void bond_poll_controller(struct net_device *bond_dev)
1291{
1292 struct net_device *dev = bond_dev->npinfo->netpoll->real_dev;
1293 if (dev != bond_dev)
1294 netpoll_poll_dev(dev);
1295}
1296
1297static void bond_netpoll_cleanup(struct net_device *bond_dev)
1298{
1299 struct bonding *bond = netdev_priv(bond_dev);
1300 struct slave *slave;
1301 const struct net_device_ops *ops;
1302 int i;
1303
1304 read_lock(&bond->lock);
1305 bond_dev->npinfo = NULL;
1306 bond_for_each_slave(bond, slave, i) {
1307 if (slave->dev) {
1308 ops = slave->dev->netdev_ops;
1309 if (ops->ndo_netpoll_cleanup)
1310 ops->ndo_netpoll_cleanup(slave->dev);
1311 else
1312 slave->dev->npinfo = NULL;
1313 }
1314 }
1315 read_unlock(&bond->lock);
1316}
1317
1318#else
1319
1320static void bond_netpoll_cleanup(struct net_device *bond_dev)
1321{
1322}
1323
1324#endif
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326/*---------------------------------- IOCTL ----------------------------------*/
1327
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001328static int bond_sethwaddr(struct net_device *bond_dev,
1329 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001331 pr_debug("bond_dev=%p\n", bond_dev);
1332 pr_debug("slave_dev=%p\n", slave_dev);
1333 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1335 return 0;
1336}
1337
Herbert Xu7f353bf2007-08-10 15:47:58 -07001338#define BOND_VLAN_FEATURES \
1339 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1340 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001341
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001342/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001343 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001344 * feature bits are managed elsewhere, so preserve those feature bits
1345 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001346 */
1347static int bond_compute_features(struct bonding *bond)
1348{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001349 struct slave *slave;
1350 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001351 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001352 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001353 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1354 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001355 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001356
Herbert Xu7f353bf2007-08-10 15:47:58 -07001357 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001358 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1359
1360 if (!bond->first_slave)
1361 goto done;
1362
1363 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001364
Jay Vosburgh278339a2009-08-28 12:05:12 +00001365 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001366 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001367 features = netdev_increment_features(features,
1368 slave->dev->features,
1369 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001370 vlan_features = netdev_increment_features(vlan_features,
1371 slave->dev->vlan_features,
1372 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001373 if (slave->dev->hard_header_len > max_hard_header_len)
1374 max_hard_header_len = slave->dev->hard_header_len;
1375 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001376
Herbert Xub63365a2008-10-23 01:11:29 -07001377done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001378 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001379 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001380 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001381 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001382
1383 return 0;
1384}
1385
Moni Shoua872254d2007-10-09 19:43:38 -07001386static void bond_setup_by_slave(struct net_device *bond_dev,
1387 struct net_device *slave_dev)
1388{
Wang Chen454d7c92008-11-12 23:37:49 -08001389 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001390
Stephen Hemminger00829822008-11-20 20:14:53 -08001391 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001392
1393 bond_dev->type = slave_dev->type;
1394 bond_dev->hard_header_len = slave_dev->hard_header_len;
1395 bond_dev->addr_len = slave_dev->addr_len;
1396
1397 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1398 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001399 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001400}
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001403int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Wang Chen454d7c92008-11-12 23:37:49 -08001405 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001406 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 struct slave *new_slave = NULL;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001408 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 struct sockaddr addr;
1410 int link_reporting;
1411 int old_features = bond_dev->features;
1412 int res = 0;
1413
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001414 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001415 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001416 pr_warning("%s: Warning: no link monitoring support for %s\n",
1417 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419
1420 /* bond must be initialized by bond_open() before enslaving */
1421 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001422 pr_warning("%s: master_dev is not up in bond_enslave\n",
1423 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425
1426 /* already enslaved */
1427 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001428 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 return -EBUSY;
1430 }
1431
1432 /* vlan challenged mutual exclusion */
1433 /* no need to lock since we're protected by rtnl_lock */
1434 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001435 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (!list_empty(&bond->vlan_list)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001437 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1438 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return -EPERM;
1440 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001441 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1442 bond_dev->name, slave_dev->name,
1443 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1445 }
1446 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001447 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (bond->slave_cnt == 0) {
1449 /* First slave, and it is not VLAN challenged,
1450 * so remove the block of adding VLANs over the bond.
1451 */
1452 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1453 }
1454 }
1455
Jay Vosburgh217df672005-09-26 16:11:50 -07001456 /*
1457 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001458 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001459 * the current ifenslave will set the interface down prior to
1460 * enslaving it; the old ifenslave will not.
1461 */
1462 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001463 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001464 slave_dev->name);
1465 res = -EPERM;
1466 goto err_undo_flags;
1467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Moni Shoua872254d2007-10-09 19:43:38 -07001469 /* set bonding device ether type by slave - bonding netdevices are
1470 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1471 * there is a need to override some of the type dependent attribs/funcs.
1472 *
1473 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1474 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1475 */
1476 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001477 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001478 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001479 bond_dev->name,
1480 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001481
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001482 res = netdev_bonding_change(bond_dev,
1483 NETDEV_PRE_TYPE_CHANGE);
1484 res = notifier_to_errno(res);
1485 if (res) {
1486 pr_err("%s: refused to change device type\n",
1487 bond_dev->name);
1488 res = -EBUSY;
1489 goto err_undo_flags;
1490 }
Moni Shoua75c78502009-09-15 02:37:40 -07001491
Jiri Pirko32a806c2010-03-19 04:00:23 +00001492 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001493 dev_uc_flush(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00001494 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001495
Moni Shouae36b9d12009-07-15 04:56:31 +00001496 if (slave_dev->type != ARPHRD_ETHER)
1497 bond_setup_by_slave(bond_dev, slave_dev);
1498 else
1499 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001500
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001501 netdev_bonding_change(bond_dev,
1502 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001503 }
Moni Shoua872254d2007-10-09 19:43:38 -07001504 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001505 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1506 slave_dev->name,
1507 slave_dev->type, bond_dev->type);
1508 res = -EINVAL;
1509 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001510 }
1511
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001512 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001513 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001514 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1515 bond_dev->name);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001516 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1517 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001518 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",
1519 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001520 res = -EOPNOTSUPP;
1521 goto err_undo_flags;
1522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
Joe Jin243cb4e2007-02-06 14:16:40 -08001525 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (!new_slave) {
1527 res = -ENOMEM;
1528 goto err_undo_flags;
1529 }
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 /* save slave's original flags before calling
1532 * netdev_set_master and dev_open
1533 */
1534 new_slave->original_flags = slave_dev->flags;
1535
Jay Vosburgh217df672005-09-26 16:11:50 -07001536 /*
1537 * Save slave's original ("permanent") mac address for modes
1538 * that need it, and for restoring it upon release, and then
1539 * set it to the master's address
1540 */
1541 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Jay Vosburghdd957c52007-10-09 19:57:24 -07001543 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001544 /*
1545 * Set slave to master's mac address. The application already
1546 * set the master's mac address to that of the first slave
1547 */
1548 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1549 addr.sa_family = slave_dev->type;
1550 res = dev_set_mac_address(slave_dev, &addr);
1551 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001552 pr_debug("Error %d calling set_mac_address\n", res);
Moni Shoua2ab82852007-10-09 19:43:39 -07001553 goto err_free;
1554 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001557 res = netdev_set_master(slave_dev, bond_dev);
1558 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001559 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001560 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001561 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001562 /* open the slave since the application closed it */
1563 res = dev_open(slave_dev);
1564 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001565 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001566 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001570 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Holger Eitzenberger58402052008-12-09 23:07:13 -08001572 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /* bond_alb_init_slave() must be called before all other stages since
1574 * it might fail and we do not want to have to undo everything
1575 */
1576 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001577 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001578 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
1581 /* If the mode USES_PRIMARY, then the new slave gets the
1582 * master's promisc (and mc) settings only if it becomes the
1583 * curr_active_slave, and that is taken care of later when calling
1584 * bond_change_active()
1585 */
1586 if (!USES_PRIMARY(bond->params.mode)) {
1587 /* set promiscuity level to new slave */
1588 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001589 res = dev_set_promiscuity(slave_dev, 1);
1590 if (res)
1591 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
1593
1594 /* set allmulti level to new slave */
1595 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001596 res = dev_set_allmulti(slave_dev, 1);
1597 if (res)
1598 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
David S. Millerb9e40852008-07-15 00:15:08 -07001601 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /* upload master's mc_list to new slave */
Jiri Pirko22bedad2010-04-01 21:22:57 +00001603 netdev_for_each_mc_addr(ha, bond_dev)
1604 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001605 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607
1608 if (bond->params.mode == BOND_MODE_8023AD) {
1609 /* add lacpdu mc addr to mc list */
1610 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1611
Jiri Pirko22bedad2010-04-01 21:22:57 +00001612 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 }
1614
1615 bond_add_vlans_on_slave(bond, slave_dev);
1616
1617 write_lock_bh(&bond->lock);
1618
1619 bond_attach_slave(bond, new_slave);
1620
1621 new_slave->delay = 0;
1622 new_slave->link_failure_count = 0;
1623
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001624 bond_compute_features(bond);
1625
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001626 write_unlock_bh(&bond->lock);
1627
1628 read_lock(&bond->lock);
1629
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001630 new_slave->last_arp_rx = jiffies;
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (bond->params.miimon && !bond->params.use_carrier) {
1633 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1634
1635 if ((link_reporting == -1) && !bond->params.arp_interval) {
1636 /*
1637 * miimon is set but a bonded network driver
1638 * does not support ETHTOOL/MII and
1639 * arp_interval is not set. Note: if
1640 * use_carrier is enabled, we will never go
1641 * here (because netif_carrier is always
1642 * supported); thus, we don't need to change
1643 * the messages for netif_carrier.
1644 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001645 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 -08001646 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 } else if (link_reporting == -1) {
1648 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001649 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",
1650 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652 }
1653
1654 /* check for initial state */
1655 if (!bond->params.miimon ||
1656 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1657 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001658 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 new_slave->link = BOND_LINK_BACK;
1660 new_slave->delay = bond->params.updelay;
1661 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001662 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 new_slave->link = BOND_LINK_UP;
1664 }
1665 new_slave->jiffies = jiffies;
1666 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001667 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 new_slave->link = BOND_LINK_DOWN;
1669 }
1670
1671 if (bond_update_speed_duplex(new_slave) &&
1672 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001673 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1674 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001677 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1678 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
1680 }
1681
1682 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1683 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001684 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001686 bond->force_primary = true;
1687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001690 write_lock_bh(&bond->curr_slave_lock);
1691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 switch (bond->params.mode) {
1693 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001694 bond_set_slave_inactive_flags(new_slave);
1695 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 break;
1697 case BOND_MODE_8023AD:
1698 /* in 802.3ad mode, the internal mechanism
1699 * will activate the slaves in the selected
1700 * aggregator
1701 */
1702 bond_set_slave_inactive_flags(new_slave);
1703 /* if this is the first slave */
1704 if (bond->slave_cnt == 1) {
1705 SLAVE_AD_INFO(new_slave).id = 1;
1706 /* Initialize AD with the number of times that the AD timer is called in 1 second
1707 * can be called only after the mac address of the bond is set
1708 */
1709 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1710 bond->params.lacp_fast);
1711 } else {
1712 SLAVE_AD_INFO(new_slave).id =
1713 SLAVE_AD_INFO(new_slave->prev).id + 1;
1714 }
1715
1716 bond_3ad_bind_slave(new_slave);
1717 break;
1718 case BOND_MODE_TLB:
1719 case BOND_MODE_ALB:
1720 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001721 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001722 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 break;
1724 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001725 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 /* always active in trunk mode */
1728 new_slave->state = BOND_STATE_ACTIVE;
1729
1730 /* In trunking mode there is little meaning to curr_active_slave
1731 * anyway (it holds no special properties of the bond device),
1732 * so we can change it without calling change_active_interface()
1733 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001734 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 break;
1738 } /* switch(bond_mode) */
1739
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001740 write_unlock_bh(&bond->curr_slave_lock);
1741
Jay Vosburghff59c452006-03-27 13:27:43 -08001742 bond_set_carrier(bond);
1743
WANG Congf6dc31a2010-05-06 00:48:51 -07001744#ifdef CONFIG_NET_POLL_CONTROLLER
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001745 /*
1746 * Netpoll and bonding is broken, make sure it is not initialized
1747 * until it is fixed.
1748 */
1749 if (disable_netpoll) {
WANG Congf6dc31a2010-05-06 00:48:51 -07001750 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001751 } else {
1752 if (slaves_support_netpoll(bond_dev)) {
1753 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1754 if (bond_dev->npinfo)
1755 slave_dev->npinfo = bond_dev->npinfo;
1756 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
1757 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
1758 pr_info("New slave device %s does not support netpoll\n",
1759 slave_dev->name);
1760 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
1761 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001762 }
1763#endif
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001764 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001766 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1767 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001768 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001769
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001770 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1771 bond_dev->name, slave_dev->name,
1772 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1773 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 /* enslave is successful */
1776 return 0;
1777
1778/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779err_close:
1780 dev_close(slave_dev);
1781
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001782err_unset_master:
1783 netdev_set_master(slave_dev, NULL);
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001786 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001787 /* XXX TODO - fom follow mode needs to change master's
1788 * MAC if this slave's MAC is in use by the bond, or at
1789 * least print a warning.
1790 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001791 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1792 addr.sa_family = slave_dev->type;
1793 dev_set_mac_address(slave_dev, &addr);
1794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796err_free:
1797 kfree(new_slave);
1798
1799err_undo_flags:
1800 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return res;
1803}
1804
1805/*
1806 * Try to release the slave device <slave> from the bond device <master>
1807 * It is legal to access curr_active_slave without a lock because all the function
1808 * is write-locked.
1809 *
1810 * The rules for slave state should be:
1811 * for Active/Backup:
1812 * Active stays on all backups go down
1813 * for Bonded connections:
1814 * The first up interface should be left on and all others downed.
1815 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001816int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Wang Chen454d7c92008-11-12 23:37:49 -08001818 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 struct slave *slave, *oldcurrent;
1820 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 /* slave is not a slave or master is not master of this slave */
1823 if (!(slave_dev->flags & IFF_SLAVE) ||
1824 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001825 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 bond_dev->name, slave_dev->name);
1827 return -EINVAL;
1828 }
1829
WANG Congf6dc31a2010-05-06 00:48:51 -07001830 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 write_lock_bh(&bond->lock);
1832
1833 slave = bond_get_slave_by_dev(bond, slave_dev);
1834 if (!slave) {
1835 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001836 pr_info("%s: %s not enslaved\n",
1837 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001838 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 return -EINVAL;
1840 }
1841
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001842 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001843 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1844 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001845 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",
1846 bond_dev->name, slave_dev->name,
1847 slave->perm_hwaddr,
1848 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850
1851 /* Inform AD package of unbinding of slave. */
1852 if (bond->params.mode == BOND_MODE_8023AD) {
1853 /* must be called before the slave is
1854 * detached from the list
1855 */
1856 bond_3ad_unbind_slave(slave);
1857 }
1858
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001859 pr_info("%s: releasing %s interface %s\n",
1860 bond_dev->name,
1861 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1862 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 oldcurrent = bond->curr_active_slave;
1865
1866 bond->current_arp_slave = NULL;
1867
1868 /* release the slave from its bond */
1869 bond_detach_slave(bond, slave);
1870
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001871 bond_compute_features(bond);
1872
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001873 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001876 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Holger Eitzenberger58402052008-12-09 23:07:13 -08001879 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 /* Must be called only after the slave has been
1881 * detached from the list and the curr_active_slave
1882 * has been cleared (if our_slave == old_current),
1883 * but before a new active slave is selected.
1884 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001885 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001887 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001890 if (oldcurrent == slave) {
1891 /*
1892 * Note that we hold RTNL over this sequence, so there
1893 * is no concern that another slave add/remove event
1894 * will interfere.
1895 */
1896 write_unlock_bh(&bond->lock);
1897 read_lock(&bond->lock);
1898 write_lock_bh(&bond->curr_slave_lock);
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 bond_select_active_slave(bond);
1901
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001902 write_unlock_bh(&bond->curr_slave_lock);
1903 read_unlock(&bond->lock);
1904 write_lock_bh(&bond->lock);
1905 }
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001908 bond_set_carrier(bond);
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 /* if the last slave was removed, zero the mac address
1911 * of the master so it will be set by the application
1912 * to the mac address of the first slave
1913 */
1914 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1915
1916 if (list_empty(&bond->vlan_list)) {
1917 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1918 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001919 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1920 bond_dev->name, bond_dev->name);
1921 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1922 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1925 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001926 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1927 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1929 }
1930
1931 write_unlock_bh(&bond->lock);
1932
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001933 /* must do this from outside any spinlocks */
1934 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 bond_del_vlans_from_slave(bond, slave_dev);
1937
1938 /* If the mode USES_PRIMARY, then we should only remove its
1939 * promisc and mc settings if it was the curr_active_slave, but that was
1940 * already taken care of above when we detached the slave
1941 */
1942 if (!USES_PRIMARY(bond->params.mode)) {
1943 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001944 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001948 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001952 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001954 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956
1957 netdev_set_master(slave_dev, NULL);
1958
WANG Congf6dc31a2010-05-06 00:48:51 -07001959#ifdef CONFIG_NET_POLL_CONTROLLER
1960 read_lock_bh(&bond->lock);
Andy Gospodarekc22d7ac2010-06-25 09:50:44 +00001961
1962 /* Make sure netpoll over stays disabled until fixed. */
1963 if (!disable_netpoll)
1964 if (slaves_support_netpoll(bond_dev))
1965 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
WANG Congf6dc31a2010-05-06 00:48:51 -07001966 read_unlock_bh(&bond->lock);
1967 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
1968 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
1969 else
1970 slave_dev->npinfo = NULL;
1971#endif
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 /* close slave before restoring its mac address */
1974 dev_close(slave_dev);
1975
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001976 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001977 /* restore original ("permanent") mac address */
1978 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1979 addr.sa_family = slave_dev->type;
1980 dev_set_mac_address(slave_dev, &addr);
1981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001983 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001984 IFF_SLAVE_INACTIVE | IFF_BONDING |
1985 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 kfree(slave);
1988
1989 return 0; /* deletion OK */
1990}
1991
1992/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001993* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07001994* Must be under rtnl_lock when this function is called.
1995*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001996int bond_release_and_destroy(struct net_device *bond_dev,
1997 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07001998{
Wang Chen454d7c92008-11-12 23:37:49 -08001999 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002000 int ret;
2001
2002 ret = bond_release(bond_dev, slave_dev);
2003 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002004 pr_info("%s: destroying bond %s.\n",
2005 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002006 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002007 }
2008 return ret;
2009}
2010
2011/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 * This function releases all slaves.
2013 */
2014static int bond_release_all(struct net_device *bond_dev)
2015{
Wang Chen454d7c92008-11-12 23:37:49 -08002016 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 struct slave *slave;
2018 struct net_device *slave_dev;
2019 struct sockaddr addr;
2020
2021 write_lock_bh(&bond->lock);
2022
Jay Vosburghff59c452006-03-27 13:27:43 -08002023 netif_carrier_off(bond_dev);
2024
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002025 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 bond->current_arp_slave = NULL;
2029 bond->primary_slave = NULL;
2030 bond_change_active_slave(bond, NULL);
2031
2032 while ((slave = bond->first_slave) != NULL) {
2033 /* Inform AD package of unbinding of slave
2034 * before slave is detached from the list.
2035 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002036 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 slave_dev = slave->dev;
2040 bond_detach_slave(bond, slave);
2041
Jay Vosburgh25433312008-01-17 16:24:59 -08002042 /* now that the slave is detached, unlock and perform
2043 * all the undo steps that should not be called from
2044 * within a lock.
2045 */
2046 write_unlock_bh(&bond->lock);
2047
Holger Eitzenberger58402052008-12-09 23:07:13 -08002048 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 /* must be called only after the slave
2050 * has been detached from the list
2051 */
2052 bond_alb_deinit_slave(bond, slave);
2053 }
2054
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002055 bond_compute_features(bond);
2056
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002057 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 bond_del_vlans_from_slave(bond, slave_dev);
2059
2060 /* If the mode USES_PRIMARY, then we should only remove its
2061 * promisc and mc settings if it was the curr_active_slave, but that was
2062 * already taken care of above when we detached the slave
2063 */
2064 if (!USES_PRIMARY(bond->params.mode)) {
2065 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002066 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002070 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002074 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002076 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
2078
2079 netdev_set_master(slave_dev, NULL);
2080
2081 /* close slave before restoring its mac address */
2082 dev_close(slave_dev);
2083
Jay Vosburghdd957c52007-10-09 19:57:24 -07002084 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002085 /* restore original ("permanent") mac address*/
2086 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2087 addr.sa_family = slave_dev->type;
2088 dev_set_mac_address(slave_dev, &addr);
2089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002091 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2092 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 kfree(slave);
2095
2096 /* re-acquire the lock before getting the next slave */
2097 write_lock_bh(&bond->lock);
2098 }
2099
2100 /* zero the mac address of the master so it will be
2101 * set by the application to the mac address of the
2102 * first slave
2103 */
2104 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2105
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002106 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002108 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002109 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2110 bond_dev->name, bond_dev->name);
2111 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2112 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 }
2114
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002115 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117out:
2118 write_unlock_bh(&bond->lock);
2119
2120 return 0;
2121}
2122
2123/*
2124 * This function changes the active slave to slave <slave_dev>.
2125 * It returns -EINVAL in the following cases.
2126 * - <slave_dev> is not found in the list.
2127 * - There is not active slave now.
2128 * - <slave_dev> is already active.
2129 * - The link state of <slave_dev> is not BOND_LINK_UP.
2130 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002131 * In these cases, this function does nothing.
2132 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 */
2134static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2135{
Wang Chen454d7c92008-11-12 23:37:49 -08002136 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 struct slave *old_active = NULL;
2138 struct slave *new_active = NULL;
2139 int res = 0;
2140
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002141 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002145 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002148 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002150 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002152 read_unlock(&bond->curr_slave_lock);
2153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 new_active = bond_get_slave_by_dev(bond, slave_dev);
2155
2156 /*
2157 * Changing to the current active: do nothing; return success.
2158 */
2159 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002160 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return 0;
2162 }
2163
2164 if ((new_active) &&
2165 (old_active) &&
2166 (new_active->link == BOND_LINK_UP) &&
2167 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002168 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002170 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002171 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002174 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 return res;
2177}
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2180{
Wang Chen454d7c92008-11-12 23:37:49 -08002181 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183 info->bond_mode = bond->params.mode;
2184 info->miimon = bond->params.miimon;
2185
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002186 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002188 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 return 0;
2191}
2192
2193static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2194{
Wang Chen454d7c92008-11-12 23:37:49 -08002195 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002197 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002199 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 bond_for_each_slave(bond, slave, i) {
2202 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002203 res = 0;
2204 strcpy(info->slave_name, slave->dev->name);
2205 info->link = slave->link;
2206 info->state = slave->state;
2207 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 break;
2209 }
2210 }
2211
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002212 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Eric Dumazet689c96c2009-04-23 03:39:04 +00002214 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
2217/*-------------------------------- Monitoring -------------------------------*/
2218
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002219
2220static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002222 struct slave *slave;
2223 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002224 bool ignore_updelay;
2225
2226 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002229 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002231 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002234 case BOND_LINK_UP:
2235 if (link_state)
2236 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002238 slave->link = BOND_LINK_FAIL;
2239 slave->delay = bond->params.downdelay;
2240 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002241 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2242 bond->dev->name,
2243 (bond->params.mode ==
2244 BOND_MODE_ACTIVEBACKUP) ?
2245 ((slave->state == BOND_STATE_ACTIVE) ?
2246 "active " : "backup ") : "",
2247 slave->dev->name,
2248 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002250 /*FALLTHRU*/
2251 case BOND_LINK_FAIL:
2252 if (link_state) {
2253 /*
2254 * recovered before downdelay expired
2255 */
2256 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002258 pr_info("%s: link status up again after %d ms for interface %s.\n",
2259 bond->dev->name,
2260 (bond->params.downdelay - slave->delay) *
2261 bond->params.miimon,
2262 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002263 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002265
2266 if (slave->delay <= 0) {
2267 slave->new_link = BOND_LINK_DOWN;
2268 commit++;
2269 continue;
2270 }
2271
2272 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002275 case BOND_LINK_DOWN:
2276 if (!link_state)
2277 continue;
2278
2279 slave->link = BOND_LINK_BACK;
2280 slave->delay = bond->params.updelay;
2281
2282 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002283 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2284 bond->dev->name, slave->dev->name,
2285 ignore_updelay ? 0 :
2286 bond->params.updelay *
2287 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002289 /*FALLTHRU*/
2290 case BOND_LINK_BACK:
2291 if (!link_state) {
2292 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002293 pr_info("%s: link status down again after %d ms for interface %s.\n",
2294 bond->dev->name,
2295 (bond->params.updelay - slave->delay) *
2296 bond->params.miimon,
2297 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002298
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002299 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002301
Jiri Pirko41f89102009-04-24 03:57:29 +00002302 if (ignore_updelay)
2303 slave->delay = 0;
2304
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002305 if (slave->delay <= 0) {
2306 slave->new_link = BOND_LINK_UP;
2307 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002308 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002309 continue;
2310 }
2311
2312 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002314 }
2315 }
2316
2317 return commit;
2318}
2319
2320static void bond_miimon_commit(struct bonding *bond)
2321{
2322 struct slave *slave;
2323 int i;
2324
2325 bond_for_each_slave(bond, slave, i) {
2326 switch (slave->new_link) {
2327 case BOND_LINK_NOCHANGE:
2328 continue;
2329
2330 case BOND_LINK_UP:
2331 slave->link = BOND_LINK_UP;
2332 slave->jiffies = jiffies;
2333
2334 if (bond->params.mode == BOND_MODE_8023AD) {
2335 /* prevent it from being the active one */
2336 slave->state = BOND_STATE_BACKUP;
2337 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2338 /* make it immediately active */
2339 slave->state = BOND_STATE_ACTIVE;
2340 } else if (slave != bond->primary_slave) {
2341 /* prevent it from being the active one */
2342 slave->state = BOND_STATE_BACKUP;
2343 }
2344
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002345 pr_info("%s: link status definitely up for interface %s.\n",
2346 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002347
2348 /* notify ad that the link status has changed */
2349 if (bond->params.mode == BOND_MODE_8023AD)
2350 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2351
Holger Eitzenberger58402052008-12-09 23:07:13 -08002352 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002353 bond_alb_handle_link_change(bond, slave,
2354 BOND_LINK_UP);
2355
2356 if (!bond->curr_active_slave ||
2357 (slave == bond->primary_slave))
2358 goto do_failover;
2359
2360 continue;
2361
2362 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002363 if (slave->link_failure_count < UINT_MAX)
2364 slave->link_failure_count++;
2365
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002366 slave->link = BOND_LINK_DOWN;
2367
2368 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2369 bond->params.mode == BOND_MODE_8023AD)
2370 bond_set_slave_inactive_flags(slave);
2371
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002372 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2373 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002374
2375 if (bond->params.mode == BOND_MODE_8023AD)
2376 bond_3ad_handle_link_change(slave,
2377 BOND_LINK_DOWN);
2378
Jiri Pirkoae63e802009-05-27 05:42:36 +00002379 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002380 bond_alb_handle_link_change(bond, slave,
2381 BOND_LINK_DOWN);
2382
2383 if (slave == bond->curr_active_slave)
2384 goto do_failover;
2385
2386 continue;
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002389 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002390 bond->dev->name, slave->new_link,
2391 slave->dev->name);
2392 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002394 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 }
2396
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002397do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002398 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002399 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002401 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002402 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002403
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002404 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405}
2406
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002407/*
2408 * bond_mii_monitor
2409 *
2410 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002411 * inspection, then (if inspection indicates something needs to be done)
2412 * an acquisition of appropriate locks followed by a commit phase to
2413 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002414 */
2415void bond_mii_monitor(struct work_struct *work)
2416{
2417 struct bonding *bond = container_of(work, struct bonding,
2418 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002419
2420 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002421 if (bond->kill_timers)
2422 goto out;
2423
2424 if (bond->slave_cnt == 0)
2425 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002426
2427 if (bond->send_grat_arp) {
2428 read_lock(&bond->curr_slave_lock);
2429 bond_send_gratuitous_arp(bond);
2430 read_unlock(&bond->curr_slave_lock);
2431 }
2432
Brian Haley305d5522008-11-04 17:51:14 -08002433 if (bond->send_unsol_na) {
2434 read_lock(&bond->curr_slave_lock);
2435 bond_send_unsolicited_na(bond);
2436 read_unlock(&bond->curr_slave_lock);
2437 }
2438
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002439 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002440 read_unlock(&bond->lock);
2441 rtnl_lock();
2442 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002443
2444 bond_miimon_commit(bond);
2445
Jay Vosburgh56556622008-01-17 16:25:03 -08002446 read_unlock(&bond->lock);
2447 rtnl_unlock(); /* might sleep, hold no other locks */
2448 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002449 }
2450
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002451re_arm:
2452 if (bond->params.miimon)
2453 queue_delayed_work(bond->wq, &bond->mii_work,
2454 msecs_to_jiffies(bond->params.miimon));
2455out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002456 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002457}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002458
Al Virod3bb52b2007-08-22 20:06:58 -04002459static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002460{
2461 struct in_device *idev;
2462 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002463 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002464
2465 if (!dev)
2466 return 0;
2467
2468 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002469 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002470 if (!idev)
2471 goto out;
2472
2473 ifa = idev->ifa_list;
2474 if (!ifa)
2475 goto out;
2476
2477 addr = ifa->ifa_local;
2478out:
2479 rcu_read_unlock();
2480 return addr;
2481}
2482
Al Virod3bb52b2007-08-22 20:06:58 -04002483static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002484{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002485 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002486
2487 if (ip == bond->master_ip)
2488 return 1;
2489
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002490 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002491 if (ip == vlan->vlan_ip)
2492 return 1;
2493 }
2494
2495 return 0;
2496}
2497
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002498/*
2499 * We go to the (large) trouble of VLAN tagging ARP frames because
2500 * switches in VLAN mode (especially if ports are configured as
2501 * "native" to a VLAN) might not pass non-tagged frames.
2502 */
Al Virod3bb52b2007-08-22 20:06:58 -04002503static 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 -04002504{
2505 struct sk_buff *skb;
2506
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002507 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002508 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002509
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002510 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2511 NULL, slave_dev->dev_addr, NULL);
2512
2513 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002514 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002515 return;
2516 }
2517 if (vlan_id) {
2518 skb = vlan_put_tag(skb, vlan_id);
2519 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002520 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002521 return;
2522 }
2523 }
2524 arp_xmit(skb);
2525}
2526
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2529{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002530 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002531 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002532 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002533 struct net_device *vlan_dev;
2534 struct flowi fl;
2535 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Mitch Williams6b780562005-11-09 10:36:19 -08002537 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2538 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002539 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002540 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002541 if (list_empty(&bond->vlan_list)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002542 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002543 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2544 bond->master_ip, 0);
2545 continue;
2546 }
2547
2548 /*
2549 * If VLANs are configured, we do a route lookup to
2550 * determine which VLAN interface would be used, so we
2551 * can tag the ARP with the proper VLAN tag.
2552 */
2553 memset(&fl, 0, sizeof(fl));
2554 fl.fl4_dst = targets[i];
2555 fl.fl4_tos = RTO_ONLINK;
2556
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002557 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002558 if (rv) {
2559 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002560 pr_warning("%s: no route to arp_ip_target %pI4\n",
2561 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002562 }
2563 continue;
2564 }
2565
2566 /*
2567 * This target is not on a VLAN
2568 */
2569 if (rt->u.dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002570 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002571 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002572 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2573 bond->master_ip, 0);
2574 continue;
2575 }
2576
2577 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002578 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002579 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002580 if (vlan_dev == rt->u.dst.dev) {
2581 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002582 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002583 vlan_dev->name, vlan_id);
2584 break;
2585 }
2586 }
2587
2588 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002589 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002590 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2591 vlan->vlan_ip, vlan_id);
2592 continue;
2593 }
2594
2595 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002596 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2597 bond->dev->name, &fl.fl4_dst,
2598 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002599 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002600 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002601 }
2602}
2603
2604/*
2605 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2606 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002607 *
2608 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002609 */
2610static void bond_send_gratuitous_arp(struct bonding *bond)
2611{
2612 struct slave *slave = bond->curr_active_slave;
2613 struct vlan_entry *vlan;
2614 struct net_device *vlan_dev;
2615
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002616 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2617 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002618
2619 if (!slave || !bond->send_grat_arp ||
2620 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002621 return;
2622
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002623 bond->send_grat_arp--;
2624
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002625 if (bond->master_ip) {
2626 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002627 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002628 }
2629
2630 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002631 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002632 if (vlan->vlan_ip) {
2633 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2634 vlan->vlan_ip, vlan->vlan_id);
2635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
2637}
2638
Al Virod3bb52b2007-08-22 20:06:58 -04002639static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002640{
2641 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002642 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002643
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002644 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002645 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002646 &sip, &tip, i, &targets[i],
2647 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002648 if (sip == targets[i]) {
2649 if (bond_has_this_ip(bond, tip))
2650 slave->last_arp_rx = jiffies;
2651 return;
2652 }
2653 }
2654}
2655
2656static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2657{
2658 struct arphdr *arp;
2659 struct slave *slave;
2660 struct bonding *bond;
2661 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002662 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002663
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002664 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2665 /*
2666 * When using VLANS and bonding, dev and oriv_dev may be
2667 * incorrect if the physical interface supports VLAN
2668 * acceleration. With this change ARP validation now
2669 * works for hosts only reachable on the VLAN interface.
2670 */
2671 dev = vlan_dev_real_dev(dev);
2672 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2673 }
2674
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002675 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2676 goto out;
2677
Wang Chen454d7c92008-11-12 23:37:49 -08002678 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002679 read_lock(&bond->lock);
2680
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002681 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002682 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2683 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002684
2685 slave = bond_get_slave_by_dev(bond, orig_dev);
2686 if (!slave || !slave_do_arp_validate(bond, slave))
2687 goto out_unlock;
2688
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002689 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002690 goto out_unlock;
2691
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002692 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002693 if (arp->ar_hln != dev->addr_len ||
2694 skb->pkt_type == PACKET_OTHERHOST ||
2695 skb->pkt_type == PACKET_LOOPBACK ||
2696 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2697 arp->ar_pro != htons(ETH_P_IP) ||
2698 arp->ar_pln != 4)
2699 goto out_unlock;
2700
2701 arp_ptr = (unsigned char *)(arp + 1);
2702 arp_ptr += dev->addr_len;
2703 memcpy(&sip, arp_ptr, 4);
2704 arp_ptr += 4 + dev->addr_len;
2705 memcpy(&tip, arp_ptr, 4);
2706
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002707 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002708 bond->dev->name, slave->dev->name, slave->state,
2709 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2710 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002711
2712 /*
2713 * Backup slaves won't see the ARP reply, but do come through
2714 * here for each ARP probe (so we swap the sip/tip to validate
2715 * the probe). In a "redundant switch, common router" type of
2716 * configuration, the ARP probe will (hopefully) travel from
2717 * the active, through one switch, the router, then the other
2718 * switch before reaching the backup.
2719 */
2720 if (slave->state == BOND_STATE_ACTIVE)
2721 bond_validate_arp(bond, slave, sip, tip);
2722 else
2723 bond_validate_arp(bond, slave, tip, sip);
2724
2725out_unlock:
2726 read_unlock(&bond->lock);
2727out:
2728 dev_kfree_skb(skb);
2729 return NET_RX_SUCCESS;
2730}
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732/*
2733 * this function is called regularly to monitor each slave's link
2734 * ensuring that traffic is being sent and received when arp monitoring
2735 * is used in load-balancing mode. if the adapter has been dormant, then an
2736 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2737 * arp monitoring in active backup mode.
2738 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002739void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002741 struct bonding *bond = container_of(work, struct bonding,
2742 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 struct slave *slave, *oldcurrent;
2744 int do_failover = 0;
2745 int delta_in_ticks;
2746 int i;
2747
2748 read_lock(&bond->lock);
2749
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002750 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002752 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002755 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758 read_lock(&bond->curr_slave_lock);
2759 oldcurrent = bond->curr_active_slave;
2760 read_unlock(&bond->curr_slave_lock);
2761
2762 /* see if any of the previous devices are up now (i.e. they have
2763 * xmt and rcv traffic). the curr_active_slave does not come into
2764 * the picture unless it is null. also, slave->jiffies is not needed
2765 * here because we send an arp on each slave and give a slave as
2766 * long as it needs to get the tx/rx within the delta.
2767 * TODO: what about up/down delay in arp mode? it wasn't here before
2768 * so it can wait
2769 */
2770 bond_for_each_slave(bond, slave, i) {
2771 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002772 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002773 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 slave->link = BOND_LINK_UP;
2776 slave->state = BOND_STATE_ACTIVE;
2777
2778 /* primary_slave has no meaning in round-robin
2779 * mode. the window of a slave being up and
2780 * curr_active_slave being null after enslaving
2781 * is closed.
2782 */
2783 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002784 pr_info("%s: link status definitely up for interface %s, ",
2785 bond->dev->name,
2786 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 do_failover = 1;
2788 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002789 pr_info("%s: interface %s is now up\n",
2790 bond->dev->name,
2791 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 }
2793 }
2794 } else {
2795 /* slave->link == BOND_LINK_UP */
2796
2797 /* not all switches will respond to an arp request
2798 * when the source ip is 0, so don't take the link down
2799 * if we don't know our ip yet
2800 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002801 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002802 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804 slave->link = BOND_LINK_DOWN;
2805 slave->state = BOND_STATE_BACKUP;
2806
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002807 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002810 pr_info("%s: interface %s is now down.\n",
2811 bond->dev->name,
2812 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002814 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 }
2817 }
2818
2819 /* note: if switch is in round-robin mode, all links
2820 * must tx arp to ensure all links rx an arp - otherwise
2821 * links may oscillate or not come up at all; if switch is
2822 * in something like xor mode, there is nothing we can
2823 * do - all replies will be rx'ed on same link causing slaves
2824 * to be unstable during low/no traffic periods
2825 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002826 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 }
2829
2830 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002831 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 bond_select_active_slave(bond);
2834
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002835 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
2837
2838re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002839 if (bond->params.arp_interval)
2840 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841out:
2842 read_unlock(&bond->lock);
2843}
2844
2845/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002846 * Called to inspect slaves for active-backup mode ARP monitor link state
2847 * changes. Sets new_link in slaves to specify what action should take
2848 * place for the slave. Returns 0 if no changes are found, >0 if changes
2849 * to link states must be committed.
2850 *
2851 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002853static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002856 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002859 slave->new_link = BOND_LINK_NOCHANGE;
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002862 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2863 delta_in_ticks)) {
2864 slave->new_link = BOND_LINK_UP;
2865 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002868 continue;
2869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002871 /*
2872 * Give slaves 2*delta after being enslaved or made
2873 * active. This avoids bouncing, as the last receive
2874 * times need a full ARP monitor cycle to be updated.
2875 */
2876 if (!time_after_eq(jiffies, slave->jiffies +
2877 2 * delta_in_ticks))
2878 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002880 /*
2881 * Backup slave is down if:
2882 * - No current_arp_slave AND
2883 * - more than 3*delta since last receive AND
2884 * - the bond has an IP address
2885 *
2886 * Note: a non-null current_arp_slave indicates
2887 * the curr_active_slave went down and we are
2888 * searching for a new one; under this condition
2889 * we only take the curr_active_slave down - this
2890 * gives each slave a chance to tx/rx traffic
2891 * before being taken out
2892 */
2893 if (slave->state == BOND_STATE_BACKUP &&
2894 !bond->current_arp_slave &&
2895 time_after(jiffies, slave_last_rx(bond, slave) +
2896 3 * delta_in_ticks)) {
2897 slave->new_link = BOND_LINK_DOWN;
2898 commit++;
2899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002901 /*
2902 * Active slave is down if:
2903 * - more than 2*delta since transmitting OR
2904 * - (more than 2*delta since receive AND
2905 * the bond has an IP address)
2906 */
2907 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002908 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002909 2 * delta_in_ticks) ||
2910 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2911 + 2 * delta_in_ticks)))) {
2912 slave->new_link = BOND_LINK_DOWN;
2913 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 }
2915 }
2916
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002917 return commit;
2918}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002920/*
2921 * Called to commit link state changes noted by inspection step of
2922 * active-backup mode ARP monitor.
2923 *
2924 * Called with RTNL and bond->lock for read.
2925 */
2926static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2927{
2928 struct slave *slave;
2929 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002931 bond_for_each_slave(bond, slave, i) {
2932 switch (slave->new_link) {
2933 case BOND_LINK_NOCHANGE:
2934 continue;
2935
2936 case BOND_LINK_UP:
Jiri Pirkob9f60252009-08-31 11:09:38 +00002937 if ((!bond->curr_active_slave &&
2938 time_before_eq(jiffies,
2939 dev_trans_start(slave->dev) +
2940 delta_in_ticks)) ||
2941 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002942 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002943 bond->current_arp_slave = NULL;
2944
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002945 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002946 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002947
Jiri Pirkob9f60252009-08-31 11:09:38 +00002948 if (!bond->curr_active_slave ||
2949 (slave == bond->primary_slave))
2950 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002951
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002952 }
2953
Jiri Pirkob9f60252009-08-31 11:09:38 +00002954 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002955
2956 case BOND_LINK_DOWN:
2957 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002960 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002961 bond_set_slave_inactive_flags(slave);
2962
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002963 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002964 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002965
2966 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002967 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002968 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002969 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00002970
2971 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002972
2973 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002974 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002975 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00002977 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Jiri Pirkob9f60252009-08-31 11:09:38 +00002980do_failover:
2981 ASSERT_RTNL();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002982 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00002983 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002984 write_unlock_bh(&bond->curr_slave_lock);
2985 }
2986
2987 bond_set_carrier(bond);
2988}
2989
2990/*
2991 * Send ARP probes for active-backup mode ARP monitor.
2992 *
2993 * Called with bond->lock held for read.
2994 */
2995static void bond_ab_arp_probe(struct bonding *bond)
2996{
2997 struct slave *slave;
2998 int i;
2999
3000 read_lock(&bond->curr_slave_lock);
3001
3002 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003003 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3004 bond->current_arp_slave->dev->name,
3005 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003006
3007 if (bond->curr_active_slave) {
3008 bond_arp_send_all(bond, bond->curr_active_slave);
3009 read_unlock(&bond->curr_slave_lock);
3010 return;
3011 }
3012
3013 read_unlock(&bond->curr_slave_lock);
3014
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 /* if we don't have a curr_active_slave, search for the next available
3016 * backup slave from the current_arp_slave and make it the candidate
3017 * for becoming the curr_active_slave
3018 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003019
3020 if (!bond->current_arp_slave) {
3021 bond->current_arp_slave = bond->first_slave;
3022 if (!bond->current_arp_slave)
3023 return;
3024 }
3025
3026 bond_set_slave_inactive_flags(bond->current_arp_slave);
3027
3028 /* search for next candidate */
3029 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3030 if (IS_UP(slave->dev)) {
3031 slave->link = BOND_LINK_BACK;
3032 bond_set_slave_active_flags(slave);
3033 bond_arp_send_all(bond, slave);
3034 slave->jiffies = jiffies;
3035 bond->current_arp_slave = slave;
3036 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 }
3038
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003039 /* if the link state is up at this point, we
3040 * mark it down - this can happen if we have
3041 * simultaneous link failures and
3042 * reselect_active_interface doesn't make this
3043 * one the current slave so it is still marked
3044 * up when it is actually down
3045 */
3046 if (slave->link == BOND_LINK_UP) {
3047 slave->link = BOND_LINK_DOWN;
3048 if (slave->link_failure_count < UINT_MAX)
3049 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003051 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003053 pr_info("%s: backup interface %s is now down.\n",
3054 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 }
3056 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003057}
3058
3059void bond_activebackup_arp_mon(struct work_struct *work)
3060{
3061 struct bonding *bond = container_of(work, struct bonding,
3062 arp_work.work);
3063 int delta_in_ticks;
3064
3065 read_lock(&bond->lock);
3066
3067 if (bond->kill_timers)
3068 goto out;
3069
3070 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3071
3072 if (bond->slave_cnt == 0)
3073 goto re_arm;
3074
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003075 if (bond->send_grat_arp) {
3076 read_lock(&bond->curr_slave_lock);
3077 bond_send_gratuitous_arp(bond);
3078 read_unlock(&bond->curr_slave_lock);
3079 }
3080
Brian Haley305d5522008-11-04 17:51:14 -08003081 if (bond->send_unsol_na) {
3082 read_lock(&bond->curr_slave_lock);
3083 bond_send_unsolicited_na(bond);
3084 read_unlock(&bond->curr_slave_lock);
3085 }
3086
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003087 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3088 read_unlock(&bond->lock);
3089 rtnl_lock();
3090 read_lock(&bond->lock);
3091
3092 bond_ab_arp_commit(bond, delta_in_ticks);
3093
3094 read_unlock(&bond->lock);
3095 rtnl_unlock();
3096 read_lock(&bond->lock);
3097 }
3098
3099 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003102 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003103 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104out:
3105 read_unlock(&bond->lock);
3106}
3107
3108/*------------------------------ proc/seq_file-------------------------------*/
3109
3110#ifdef CONFIG_PROC_FS
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003113 __acquires(&dev_base_lock)
3114 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115{
3116 struct bonding *bond = seq->private;
3117 loff_t off = 0;
3118 struct slave *slave;
3119 int i;
3120
3121 /* make sure the bond won't be taken away */
3122 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003123 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003125 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003129 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
3132
3133 return NULL;
3134}
3135
3136static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3137{
3138 struct bonding *bond = seq->private;
3139 struct slave *slave = v;
3140
3141 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003142 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 slave = slave->next;
3146
3147 return (slave == bond->first_slave) ? NULL : slave;
3148}
3149
3150static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003151 __releases(&bond->lock)
3152 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153{
3154 struct bonding *bond = seq->private;
3155
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003156 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 read_unlock(&dev_base_lock);
3158}
3159
3160static void bond_info_show_master(struct seq_file *seq)
3161{
3162 struct bonding *bond = seq->private;
3163 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003164 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
3166 read_lock(&bond->curr_slave_lock);
3167 curr = bond->curr_active_slave;
3168 read_unlock(&bond->curr_slave_lock);
3169
Jay Vosburghdd957c52007-10-09 19:57:24 -07003170 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 bond_mode_name(bond->params.mode));
3172
Jay Vosburghdd957c52007-10-09 19:57:24 -07003173 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3174 bond->params.fail_over_mac)
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07003175 seq_printf(seq, " (fail_over_mac %s)",
3176 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003177
3178 seq_printf(seq, "\n");
3179
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003180 if (bond->params.mode == BOND_MODE_XOR ||
3181 bond->params.mode == BOND_MODE_8023AD) {
3182 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3183 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3184 bond->params.xmit_policy);
3185 }
3186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003188 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003189 (bond->primary_slave) ?
3190 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003191 if (bond->primary_slave)
3192 seq_printf(seq, " (primary_reselect %s)",
3193 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Jiri Pirkoa5499522009-09-25 03:28:09 +00003195 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 (curr) ? curr->dev->name : "None");
3197 }
3198
Jay Vosburghff59c452006-03-27 13:27:43 -08003199 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3200 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3202 seq_printf(seq, "Up Delay (ms): %d\n",
3203 bond->params.updelay * bond->params.miimon);
3204 seq_printf(seq, "Down Delay (ms): %d\n",
3205 bond->params.downdelay * bond->params.miimon);
3206
Mitch Williams4756b022005-11-09 10:36:25 -08003207
3208 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003209 if (bond->params.arp_interval > 0) {
3210 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003211 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3212 bond->params.arp_interval);
3213
3214 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3215
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003216 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003217 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003218 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003219 if (printed)
3220 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003221 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003222 printed = 1;
3223 }
3224 seq_printf(seq, "\n");
3225 }
3226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 if (bond->params.mode == BOND_MODE_8023AD) {
3228 struct ad_info ad_info;
3229
3230 seq_puts(seq, "\n802.3ad info\n");
3231 seq_printf(seq, "LACP rate: %s\n",
3232 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003233 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3234 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
3236 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3237 seq_printf(seq, "bond %s has no active aggregator\n",
3238 bond->dev->name);
3239 } else {
3240 seq_printf(seq, "Active Aggregator Info:\n");
3241
3242 seq_printf(seq, "\tAggregator ID: %d\n",
3243 ad_info.aggregator_id);
3244 seq_printf(seq, "\tNumber of ports: %d\n",
3245 ad_info.ports);
3246 seq_printf(seq, "\tActor Key: %d\n",
3247 ad_info.actor_key);
3248 seq_printf(seq, "\tPartner Key: %d\n",
3249 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003250 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3251 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 }
3253 }
3254}
3255
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003256static void bond_info_show_slave(struct seq_file *seq,
3257 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
3259 struct bonding *bond = seq->private;
3260
3261 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3262 seq_printf(seq, "MII Status: %s\n",
3263 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami65509642006-09-22 21:53:08 -07003264 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 slave->link_failure_count);
3266
Johannes Berge1749612008-10-27 15:59:26 -07003267 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269 if (bond->params.mode == BOND_MODE_8023AD) {
3270 const struct aggregator *agg
3271 = SLAVE_AD_INFO(slave).port.aggregator;
3272
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003273 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 seq_printf(seq, "Aggregator ID: %d\n",
3275 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003276 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
3279}
3280
3281static int bond_info_seq_show(struct seq_file *seq, void *v)
3282{
3283 if (v == SEQ_START_TOKEN) {
3284 seq_printf(seq, "%s\n", version);
3285 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003286 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289 return 0;
3290}
3291
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003292static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 .start = bond_info_seq_start,
3294 .next = bond_info_seq_next,
3295 .stop = bond_info_seq_stop,
3296 .show = bond_info_seq_show,
3297};
3298
3299static int bond_info_open(struct inode *inode, struct file *file)
3300{
3301 struct seq_file *seq;
3302 struct proc_dir_entry *proc;
3303 int res;
3304
3305 res = seq_open(file, &bond_info_seq_ops);
3306 if (!res) {
3307 /* recover the pointer buried in proc_dir_entry data */
3308 seq = file->private_data;
3309 proc = PDE(inode);
3310 seq->private = proc->data;
3311 }
3312
3313 return res;
3314}
3315
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003316static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 .owner = THIS_MODULE,
3318 .open = bond_info_open,
3319 .read = seq_read,
3320 .llseek = seq_lseek,
3321 .release = seq_release,
3322};
3323
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003324static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325{
3326 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003327 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003329 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003330 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003331 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003332 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003333 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003334 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3335 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003336 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339}
3340
3341static void bond_remove_proc_entry(struct bonding *bond)
3342{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003343 struct net_device *bond_dev = bond->dev;
3344 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3345
3346 if (bn->proc_dir && bond->proc_entry) {
3347 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 memset(bond->proc_file_name, 0, IFNAMSIZ);
3349 bond->proc_entry = NULL;
3350 }
3351}
3352
3353/* Create the bonding directory under /proc/net, if doesn't exist yet.
3354 * Caller must hold rtnl_lock.
3355 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003356static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003358 if (!bn->proc_dir) {
3359 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3360 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003361 pr_warning("Warning: cannot create /proc/net/%s\n",
3362 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 }
3364}
3365
3366/* Destroy the bonding directory under /proc/net, if empty.
3367 * Caller must hold rtnl_lock.
3368 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003369static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003371 if (bn->proc_dir) {
3372 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3373 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 }
3375}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003376
3377#else /* !CONFIG_PROC_FS */
3378
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003379static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003380{
3381}
3382
3383static void bond_remove_proc_entry(struct bonding *bond)
3384{
3385}
3386
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003387static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003388{
3389}
3390
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003391static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003392{
3393}
3394
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395#endif /* CONFIG_PROC_FS */
3396
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398/*-------------------------- netdev event handling --------------------------*/
3399
3400/*
3401 * Change device name
3402 */
3403static int bond_event_changename(struct bonding *bond)
3404{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 bond_remove_proc_entry(bond);
3406 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003407
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 return NOTIFY_DONE;
3409}
3410
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003411static int bond_master_netdev_event(unsigned long event,
3412 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413{
Wang Chen454d7c92008-11-12 23:37:49 -08003414 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
3416 switch (event) {
3417 case NETDEV_CHANGENAME:
3418 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 default:
3420 break;
3421 }
3422
3423 return NOTIFY_DONE;
3424}
3425
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003426static int bond_slave_netdev_event(unsigned long event,
3427 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428{
3429 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003430 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
3432 switch (event) {
3433 case NETDEV_UNREGISTER:
3434 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003435 if (bond->setup_by_slave)
3436 bond_release_and_destroy(bond_dev, slave_dev);
3437 else
3438 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 }
3440 break;
3441 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003442 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3443 struct slave *slave;
3444
3445 slave = bond_get_slave_by_dev(bond, slave_dev);
3446 if (slave) {
3447 u16 old_speed = slave->speed;
3448 u16 old_duplex = slave->duplex;
3449
3450 bond_update_speed_duplex(slave);
3451
3452 if (bond_is_lb(bond))
3453 break;
3454
3455 if (old_speed != slave->speed)
3456 bond_3ad_adapter_speed_changed(slave);
3457 if (old_duplex != slave->duplex)
3458 bond_3ad_adapter_duplex_changed(slave);
3459 }
3460 }
3461
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 break;
3463 case NETDEV_DOWN:
3464 /*
3465 * ... Or is it this?
3466 */
3467 break;
3468 case NETDEV_CHANGEMTU:
3469 /*
3470 * TODO: Should slaves be allowed to
3471 * independently alter their MTU? For
3472 * an active-backup bond, slaves need
3473 * not be the same type of device, so
3474 * MTUs may vary. For other modes,
3475 * slaves arguably should have the
3476 * same MTUs. To do this, we'd need to
3477 * take over the slave's change_mtu
3478 * function for the duration of their
3479 * servitude.
3480 */
3481 break;
3482 case NETDEV_CHANGENAME:
3483 /*
3484 * TODO: handle changing the primary's name
3485 */
3486 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003487 case NETDEV_FEAT_CHANGE:
3488 bond_compute_features(bond);
3489 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 default:
3491 break;
3492 }
3493
3494 return NOTIFY_DONE;
3495}
3496
3497/*
3498 * bond_netdev_event: handle netdev notifier chain events.
3499 *
3500 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003501 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 * locks for us to safely manipulate the slave devices (RTNL lock,
3503 * dev_probe_lock).
3504 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003505static int bond_netdev_event(struct notifier_block *this,
3506 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507{
3508 struct net_device *event_dev = (struct net_device *)ptr;
3509
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003510 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003511 event_dev ? event_dev->name : "None",
3512 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003514 if (!(event_dev->priv_flags & IFF_BONDING))
3515 return NOTIFY_DONE;
3516
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003518 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 return bond_master_netdev_event(event, event_dev);
3520 }
3521
3522 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003523 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 return bond_slave_netdev_event(event, event_dev);
3525 }
3526
3527 return NOTIFY_DONE;
3528}
3529
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003530/*
3531 * bond_inetaddr_event: handle inetaddr notifier chain events.
3532 *
3533 * We keep track of device IPs primarily to use as source addresses in
3534 * ARP monitor probes (rather than spewing out broadcasts all the time).
3535 *
3536 * We track one IP for the main device (if it has one), plus one per VLAN.
3537 */
3538static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3539{
3540 struct in_ifaddr *ifa = ptr;
3541 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003542 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003543 struct bonding *bond;
3544 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003545
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003546 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003547 if (bond->dev == event_dev) {
3548 switch (event) {
3549 case NETDEV_UP:
3550 bond->master_ip = ifa->ifa_local;
3551 return NOTIFY_OK;
3552 case NETDEV_DOWN:
3553 bond->master_ip = bond_glean_dev_ip(bond->dev);
3554 return NOTIFY_OK;
3555 default:
3556 return NOTIFY_DONE;
3557 }
3558 }
3559
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003560 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08003561 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003562 if (vlan_dev == event_dev) {
3563 switch (event) {
3564 case NETDEV_UP:
3565 vlan->vlan_ip = ifa->ifa_local;
3566 return NOTIFY_OK;
3567 case NETDEV_DOWN:
3568 vlan->vlan_ip =
3569 bond_glean_dev_ip(vlan_dev);
3570 return NOTIFY_OK;
3571 default:
3572 return NOTIFY_DONE;
3573 }
3574 }
3575 }
3576 }
3577 return NOTIFY_DONE;
3578}
3579
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580static struct notifier_block bond_netdev_notifier = {
3581 .notifier_call = bond_netdev_event,
3582};
3583
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003584static struct notifier_block bond_inetaddr_notifier = {
3585 .notifier_call = bond_inetaddr_event,
3586};
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588/*-------------------------- Packet type handling ---------------------------*/
3589
3590/* register to receive lacpdus on a bond */
3591static void bond_register_lacpdu(struct bonding *bond)
3592{
3593 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3594
3595 /* initialize packet type */
3596 pk_type->type = PKT_TYPE_LACPDU;
3597 pk_type->dev = bond->dev;
3598 pk_type->func = bond_3ad_lacpdu_recv;
3599
3600 dev_add_pack(pk_type);
3601}
3602
3603/* unregister to receive lacpdus on a bond */
3604static void bond_unregister_lacpdu(struct bonding *bond)
3605{
3606 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3607}
3608
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003609void bond_register_arp(struct bonding *bond)
3610{
3611 struct packet_type *pt = &bond->arp_mon_pt;
3612
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003613 if (pt->type)
3614 return;
3615
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003616 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003617 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003618 pt->func = bond_arp_rcv;
3619 dev_add_pack(pt);
3620}
3621
3622void bond_unregister_arp(struct bonding *bond)
3623{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003624 struct packet_type *pt = &bond->arp_mon_pt;
3625
3626 dev_remove_pack(pt);
3627 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003628}
3629
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003630/*---------------------------- Hashing Policies -----------------------------*/
3631
3632/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003633 * Hash for the output device based upon layer 2 and layer 3 data. If
3634 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3635 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003636static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003637{
3638 struct ethhdr *data = (struct ethhdr *)skb->data;
3639 struct iphdr *iph = ip_hdr(skb);
3640
Brian Haleyf14c4e42008-09-02 10:08:08 -04003641 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003642 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003643 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003644 }
3645
Jasper Spaansd3da6832009-10-23 04:08:46 +00003646 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003647}
3648
3649/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003650 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003651 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3652 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3653 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003654static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003655{
3656 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003657 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003658 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003659 int layer4_xor = 0;
3660
Brian Haleyf14c4e42008-09-02 10:08:08 -04003661 if (skb->protocol == htons(ETH_P_IP)) {
3662 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003663 (iph->protocol == IPPROTO_TCP ||
3664 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003665 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003666 }
3667 return (layer4_xor ^
3668 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3669
3670 }
3671
Jasper Spaansd3da6832009-10-23 04:08:46 +00003672 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003673}
3674
3675/*
3676 * Hash for the output device based upon layer 2 data
3677 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003678static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003679{
3680 struct ethhdr *data = (struct ethhdr *)skb->data;
3681
Jasper Spaansd3da6832009-10-23 04:08:46 +00003682 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003683}
3684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685/*-------------------------- Device entry points ----------------------------*/
3686
3687static int bond_open(struct net_device *bond_dev)
3688{
Wang Chen454d7c92008-11-12 23:37:49 -08003689 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 bond->kill_timers = 0;
3692
Holger Eitzenberger58402052008-12-09 23:07:13 -08003693 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 /* bond_alb_initialize must be called before the timer
3695 * is started.
3696 */
3697 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3698 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003699 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 }
3701
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003702 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3703 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 }
3705
3706 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003707 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3708 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 }
3710
3711 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003712 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3713 INIT_DELAYED_WORK(&bond->arp_work,
3714 bond_activebackup_arp_mon);
3715 else
3716 INIT_DELAYED_WORK(&bond->arp_work,
3717 bond_loadbalance_arp_mon);
3718
3719 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003720 if (bond->params.arp_validate)
3721 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 }
3723
3724 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003725 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003726 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 /* register to receive LACPDUs */
3728 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003729 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 }
3731
3732 return 0;
3733}
3734
3735static int bond_close(struct net_device *bond_dev)
3736{
Wang Chen454d7c92008-11-12 23:37:49 -08003737 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
3739 if (bond->params.mode == BOND_MODE_8023AD) {
3740 /* Unregister the receive of LACPDUs */
3741 bond_unregister_lacpdu(bond);
3742 }
3743
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003744 if (bond->params.arp_validate)
3745 bond_unregister_arp(bond);
3746
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 write_lock_bh(&bond->lock);
3748
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003749 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003750 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752 /* signal timers not to re-arm */
3753 bond->kill_timers = 1;
3754
3755 write_unlock_bh(&bond->lock);
3756
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003758 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 }
3760
3761 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003762 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 }
3764
3765 switch (bond->params.mode) {
3766 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003767 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 break;
3769 case BOND_MODE_TLB:
3770 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003771 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 break;
3773 default:
3774 break;
3775 }
3776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Holger Eitzenberger58402052008-12-09 23:07:13 -08003778 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 /* Must be called only after all
3780 * slaves have been released
3781 */
3782 bond_alb_deinitialize(bond);
3783 }
3784
3785 return 0;
3786}
3787
3788static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3789{
Wang Chen454d7c92008-11-12 23:37:49 -08003790 struct bonding *bond = netdev_priv(bond_dev);
Ajit Khaparde35cfabd2010-02-01 14:06:52 +00003791 struct net_device_stats *stats = &bond_dev->stats;
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003792 struct net_device_stats local_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 struct slave *slave;
3794 int i;
3795
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003796 memset(&local_stats, 0, sizeof(struct net_device_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 read_lock_bh(&bond->lock);
3799
3800 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003801 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3802
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003803 local_stats.rx_packets += sstats->rx_packets;
3804 local_stats.rx_bytes += sstats->rx_bytes;
3805 local_stats.rx_errors += sstats->rx_errors;
3806 local_stats.rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003808 local_stats.tx_packets += sstats->tx_packets;
3809 local_stats.tx_bytes += sstats->tx_bytes;
3810 local_stats.tx_errors += sstats->tx_errors;
3811 local_stats.tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003813 local_stats.multicast += sstats->multicast;
3814 local_stats.collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003816 local_stats.rx_length_errors += sstats->rx_length_errors;
3817 local_stats.rx_over_errors += sstats->rx_over_errors;
3818 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3819 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3820 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3821 local_stats.rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003823 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3824 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3825 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3826 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3827 local_stats.tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 }
3829
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003830 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
3831
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 read_unlock_bh(&bond->lock);
3833
3834 return stats;
3835}
3836
3837static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3838{
3839 struct net_device *slave_dev = NULL;
3840 struct ifbond k_binfo;
3841 struct ifbond __user *u_binfo = NULL;
3842 struct ifslave k_sinfo;
3843 struct ifslave __user *u_sinfo = NULL;
3844 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 int res = 0;
3846
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003847 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 case SIOCGMIIPHY:
3851 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003852 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003854
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 mii->phy_id = 0;
3856 /* Fall Through */
3857 case SIOCGMIIREG:
3858 /*
3859 * We do this again just in case we were called by SIOCGMIIREG
3860 * instead of SIOCGMIIPHY.
3861 */
3862 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003863 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
3867 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003868 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003870 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003872 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003876 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 }
3878
3879 return 0;
3880 case BOND_INFO_QUERY_OLD:
3881 case SIOCBONDINFOQUERY:
3882 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3883
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003884 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
3887 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003888 if (res == 0 &&
3889 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3890 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
3892 return res;
3893 case BOND_SLAVE_INFO_QUERY_OLD:
3894 case SIOCBONDSLAVEINFOQUERY:
3895 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3896
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003897 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
3900 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003901 if (res == 0 &&
3902 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3903 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
3905 return res;
3906 default:
3907 /* Go on */
3908 break;
3909 }
3910
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003911 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003914 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003916 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003918 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003920 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003921 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 switch (cmd) {
3923 case BOND_ENSLAVE_OLD:
3924 case SIOCBONDENSLAVE:
3925 res = bond_enslave(bond_dev, slave_dev);
3926 break;
3927 case BOND_RELEASE_OLD:
3928 case SIOCBONDRELEASE:
3929 res = bond_release(bond_dev, slave_dev);
3930 break;
3931 case BOND_SETHWADDR_OLD:
3932 case SIOCBONDSETHWADDR:
3933 res = bond_sethwaddr(bond_dev, slave_dev);
3934 break;
3935 case BOND_CHANGE_ACTIVE_OLD:
3936 case SIOCBONDCHANGEACTIVE:
3937 res = bond_ioctl_change_active(bond_dev, slave_dev);
3938 break;
3939 default:
3940 res = -EOPNOTSUPP;
3941 }
3942
3943 dev_put(slave_dev);
3944 }
3945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 return res;
3947}
3948
Jiri Pirko22bedad2010-04-01 21:22:57 +00003949static bool bond_addr_in_mc_list(unsigned char *addr,
3950 struct netdev_hw_addr_list *list,
3951 int addrlen)
3952{
3953 struct netdev_hw_addr *ha;
3954
3955 netdev_hw_addr_list_for_each(ha, list)
3956 if (!memcmp(ha->addr, addr, addrlen))
3957 return true;
3958
3959 return false;
3960}
3961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962static void bond_set_multicast_list(struct net_device *bond_dev)
3963{
Wang Chen454d7c92008-11-12 23:37:49 -08003964 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00003965 struct netdev_hw_addr *ha;
3966 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 /*
3969 * Do promisc before checking multicast_mode
3970 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003971 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003972 /*
3973 * FIXME: Need to handle the error when one of the multi-slaves
3974 * encounters error.
3975 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003978
3979 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003981
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
3983 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003984 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003985 /*
3986 * FIXME: Need to handle the error when one of the multi-slaves
3987 * encounters error.
3988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003991
3992 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08003996 read_lock(&bond->lock);
3997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 bond->flags = bond_dev->flags;
3999
4000 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004001 netdev_for_each_mc_addr(ha, bond_dev) {
4002 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4003 bond_dev->addr_len);
4004 if (!found)
4005 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 }
4007
4008 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004009 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4010 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4011 bond_dev->addr_len);
4012 if (!found)
4013 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 }
4015
4016 /* save master's multicast list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00004017 __hw_addr_flush(&bond->mc_list);
4018 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4019 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004021 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022}
4023
Stephen Hemminger00829822008-11-20 20:14:53 -08004024static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4025{
4026 struct bonding *bond = netdev_priv(dev);
4027 struct slave *slave = bond->first_slave;
4028
4029 if (slave) {
4030 const struct net_device_ops *slave_ops
4031 = slave->dev->netdev_ops;
4032 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004033 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004034 }
4035 return 0;
4036}
4037
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038/*
4039 * Change the MTU of all of a master's slaves to match the master
4040 */
4041static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4042{
Wang Chen454d7c92008-11-12 23:37:49 -08004043 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 struct slave *slave, *stop_at;
4045 int res = 0;
4046 int i;
4047
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004048 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004049 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
4051 /* Can't hold bond->lock with bh disabled here since
4052 * some base drivers panic. On the other hand we can't
4053 * hold bond->lock without bh disabled because we'll
4054 * deadlock. The only solution is to rely on the fact
4055 * that we're under rtnl_lock here, and the slaves
4056 * list won't change. This doesn't solve the problem
4057 * of setting the slave's MTU while it is
4058 * transmitting, but the assumption is that the base
4059 * driver can handle that.
4060 *
4061 * TODO: figure out a way to safely iterate the slaves
4062 * list, but without holding a lock around the actual
4063 * call to the base driver.
4064 */
4065
4066 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004067 pr_debug("s %p s->p %p c_m %p\n",
4068 slave,
4069 slave->prev,
4070 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 res = dev_set_mtu(slave->dev, new_mtu);
4073
4074 if (res) {
4075 /* If we failed to set the slave's mtu to the new value
4076 * we must abort the operation even in ACTIVE_BACKUP
4077 * mode, because if we allow the backup slaves to have
4078 * different mtu values than the active slave we'll
4079 * need to change their mtu when doing a failover. That
4080 * means changing their mtu from timer context, which
4081 * is probably not a good idea.
4082 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004083 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 goto unwind;
4085 }
4086 }
4087
4088 bond_dev->mtu = new_mtu;
4089
4090 return 0;
4091
4092unwind:
4093 /* unwind from head to the slave that failed */
4094 stop_at = slave;
4095 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4096 int tmp_res;
4097
4098 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4099 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004100 pr_debug("unwind err %d dev %s\n",
4101 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 }
4103 }
4104
4105 return res;
4106}
4107
4108/*
4109 * Change HW address
4110 *
4111 * Note that many devices must be down to change the HW address, and
4112 * downing the master releases all slaves. We can make bonds full of
4113 * bonding devices to test this, however.
4114 */
4115static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4116{
Wang Chen454d7c92008-11-12 23:37:49 -08004117 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 struct sockaddr *sa = addr, tmp_sa;
4119 struct slave *slave, *stop_at;
4120 int res = 0;
4121 int i;
4122
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004123 if (bond->params.mode == BOND_MODE_ALB)
4124 return bond_alb_set_mac_address(bond_dev, addr);
4125
4126
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004127 pr_debug("bond=%p, name=%s\n",
4128 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
Jay Vosburghdd957c52007-10-09 19:57:24 -07004130 /*
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004131 * If fail_over_mac is set to active, do nothing and return
4132 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004133 */
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004134 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004135 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004136
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004137 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 /* Can't hold bond->lock with bh disabled here since
4141 * some base drivers panic. On the other hand we can't
4142 * hold bond->lock without bh disabled because we'll
4143 * deadlock. The only solution is to rely on the fact
4144 * that we're under rtnl_lock here, and the slaves
4145 * list won't change. This doesn't solve the problem
4146 * of setting the slave's hw address while it is
4147 * transmitting, but the assumption is that the base
4148 * driver can handle that.
4149 *
4150 * TODO: figure out a way to safely iterate the slaves
4151 * list, but without holding a lock around the actual
4152 * call to the base driver.
4153 */
4154
4155 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004156 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004157 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004159 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004161 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 goto unwind;
4163 }
4164
4165 res = dev_set_mac_address(slave->dev, addr);
4166 if (res) {
4167 /* TODO: consider downing the slave
4168 * and retry ?
4169 * User should expect communications
4170 * breakage anyway until ARP finish
4171 * updating, so...
4172 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004173 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 goto unwind;
4175 }
4176 }
4177
4178 /* success */
4179 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4180 return 0;
4181
4182unwind:
4183 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4184 tmp_sa.sa_family = bond_dev->type;
4185
4186 /* unwind from head to the slave that failed */
4187 stop_at = slave;
4188 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4189 int tmp_res;
4190
4191 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4192 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004193 pr_debug("unwind err %d dev %s\n",
4194 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 }
4196 }
4197
4198 return res;
4199}
4200
4201static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4202{
Wang Chen454d7c92008-11-12 23:37:49 -08004203 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004205 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004206 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
4208 read_lock(&bond->lock);
4209
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004210 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 goto out;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004212 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004213 * Start with the curr_active_slave that joined the bond as the
4214 * default for sending IGMP traffic. For failover purposes one
4215 * needs to maintain some consistency for the interface that will
4216 * send the join/membership reports. The curr_active_slave found
4217 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004218 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004219 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004220 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004222 read_lock(&bond->curr_slave_lock);
4223 slave = bond->curr_active_slave;
4224 read_unlock(&bond->curr_slave_lock);
4225
4226 if (!slave)
4227 goto out;
4228 } else {
4229 /*
4230 * Concurrent TX may collide on rr_tx_counter; we accept
4231 * that as being rare enough not to justify using an
4232 * atomic op here.
4233 */
4234 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4235
4236 bond_for_each_slave(bond, slave, i) {
4237 slave_no--;
4238 if (slave_no < 0)
4239 break;
4240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 }
4242
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004243 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 bond_for_each_slave_from(bond, slave, i, start_at) {
4245 if (IS_UP(slave->dev) &&
4246 (slave->link == BOND_LINK_UP) &&
4247 (slave->state == BOND_STATE_ACTIVE)) {
4248 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 break;
4250 }
4251 }
4252
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253out:
4254 if (res) {
4255 /* no suitable interface, frame not sent */
4256 dev_kfree_skb(skb);
4257 }
4258 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004259 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260}
4261
John W. Linville075897c2005-09-28 17:50:53 -04004262
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263/*
4264 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4265 * the bond has a usable interface.
4266 */
4267static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4268{
Wang Chen454d7c92008-11-12 23:37:49 -08004269 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 int res = 1;
4271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 read_lock(&bond->lock);
4273 read_lock(&bond->curr_slave_lock);
4274
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004275 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
John W. Linville075897c2005-09-28 17:50:53 -04004278 if (!bond->curr_active_slave)
4279 goto out;
4280
John W. Linville075897c2005-09-28 17:50:53 -04004281 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004284 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 /* no suitable interface, frame not sent */
4286 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 read_unlock(&bond->curr_slave_lock);
4289 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004290 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291}
4292
4293/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004294 * In bond_xmit_xor() , we determine the output device by using a pre-
4295 * determined xmit_hash_policy(), If the selected device is not enabled,
4296 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 */
4298static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4299{
Wang Chen454d7c92008-11-12 23:37:49 -08004300 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 struct slave *slave, *start_at;
4302 int slave_no;
4303 int i;
4304 int res = 1;
4305
4306 read_lock(&bond->lock);
4307
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004308 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310
Jasper Spaansa361c832009-10-23 04:09:24 +00004311 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
4313 bond_for_each_slave(bond, slave, i) {
4314 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004315 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 }
4318
4319 start_at = slave;
4320
4321 bond_for_each_slave_from(bond, slave, i, start_at) {
4322 if (IS_UP(slave->dev) &&
4323 (slave->link == BOND_LINK_UP) &&
4324 (slave->state == BOND_STATE_ACTIVE)) {
4325 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4326 break;
4327 }
4328 }
4329
4330out:
4331 if (res) {
4332 /* no suitable interface, frame not sent */
4333 dev_kfree_skb(skb);
4334 }
4335 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004336 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337}
4338
4339/*
4340 * in broadcast mode, we send everything to all usable interfaces.
4341 */
4342static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4343{
Wang Chen454d7c92008-11-12 23:37:49 -08004344 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 struct slave *slave, *start_at;
4346 struct net_device *tx_dev = NULL;
4347 int i;
4348 int res = 1;
4349
4350 read_lock(&bond->lock);
4351
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004352 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
4355 read_lock(&bond->curr_slave_lock);
4356 start_at = bond->curr_active_slave;
4357 read_unlock(&bond->curr_slave_lock);
4358
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004359 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
4362 bond_for_each_slave_from(bond, slave, i, start_at) {
4363 if (IS_UP(slave->dev) &&
4364 (slave->link == BOND_LINK_UP) &&
4365 (slave->state == BOND_STATE_ACTIVE)) {
4366 if (tx_dev) {
4367 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4368 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004369 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004370 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 continue;
4372 }
4373
4374 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4375 if (res) {
4376 dev_kfree_skb(skb2);
4377 continue;
4378 }
4379 }
4380 tx_dev = slave->dev;
4381 }
4382 }
4383
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004384 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
4387out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004388 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 /* no suitable interface, frame not sent */
4390 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004391
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 /* frame sent to all suitable interfaces */
4393 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004394 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395}
4396
4397/*------------------------- Device initialization ---------------------------*/
4398
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004399static void bond_set_xmit_hash_policy(struct bonding *bond)
4400{
4401 switch (bond->params.xmit_policy) {
4402 case BOND_XMIT_POLICY_LAYER23:
4403 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4404 break;
4405 case BOND_XMIT_POLICY_LAYER34:
4406 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4407 break;
4408 case BOND_XMIT_POLICY_LAYER2:
4409 default:
4410 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4411 break;
4412 }
4413}
4414
Stephen Hemminger424efe92009-08-31 19:50:51 +00004415static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004416{
4417 const struct bonding *bond = netdev_priv(dev);
4418
4419 switch (bond->params.mode) {
4420 case BOND_MODE_ROUNDROBIN:
4421 return bond_xmit_roundrobin(skb, dev);
4422 case BOND_MODE_ACTIVEBACKUP:
4423 return bond_xmit_activebackup(skb, dev);
4424 case BOND_MODE_XOR:
4425 return bond_xmit_xor(skb, dev);
4426 case BOND_MODE_BROADCAST:
4427 return bond_xmit_broadcast(skb, dev);
4428 case BOND_MODE_8023AD:
4429 return bond_3ad_xmit_xor(skb, dev);
4430 case BOND_MODE_ALB:
4431 case BOND_MODE_TLB:
4432 return bond_alb_xmit(skb, dev);
4433 default:
4434 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004435 pr_err("%s: Error: Unknown bonding mode %d\n",
4436 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004437 WARN_ON_ONCE(1);
4438 dev_kfree_skb(skb);
4439 return NETDEV_TX_OK;
4440 }
4441}
4442
4443
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444/*
4445 * set bond mode specific net device operations
4446 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004447void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004449 struct net_device *bond_dev = bond->dev;
4450
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 switch (mode) {
4452 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 break;
4454 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 break;
4456 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004457 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 break;
4459 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 break;
4461 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004462 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004463 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004466 bond_set_master_alb_flags(bond);
4467 /* FALLTHRU */
4468 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 break;
4470 default:
4471 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004472 pr_err("%s: Error: Unknown bonding mode %d\n",
4473 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 break;
4475 }
4476}
4477
Jay Vosburgh217df672005-09-26 16:11:50 -07004478static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4479 struct ethtool_drvinfo *drvinfo)
4480{
4481 strncpy(drvinfo->driver, DRV_NAME, 32);
4482 strncpy(drvinfo->version, DRV_VERSION, 32);
4483 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4484}
4485
Jeff Garzik7282d492006-09-13 14:30:00 -04004486static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004487 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004488 .get_link = ethtool_op_get_link,
4489 .get_tx_csum = ethtool_op_get_tx_csum,
4490 .get_sg = ethtool_op_get_sg,
4491 .get_tso = ethtool_op_get_tso,
4492 .get_ufo = ethtool_op_get_ufo,
4493 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004494};
4495
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004496static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004497 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004498 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004499 .ndo_open = bond_open,
4500 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004501 .ndo_start_xmit = bond_start_xmit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004502 .ndo_get_stats = bond_get_stats,
4503 .ndo_do_ioctl = bond_do_ioctl,
4504 .ndo_set_multicast_list = bond_set_multicast_list,
4505 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004506 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004507 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004508 .ndo_vlan_rx_register = bond_vlan_rx_register,
4509 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4510 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004511#ifdef CONFIG_NET_POLL_CONTROLLER
4512 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4513 .ndo_poll_controller = bond_poll_controller,
4514#endif
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004515};
4516
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004517static void bond_destructor(struct net_device *bond_dev)
4518{
4519 struct bonding *bond = netdev_priv(bond_dev);
4520 if (bond->wq)
4521 destroy_workqueue(bond->wq);
4522 free_netdev(bond_dev);
4523}
4524
Stephen Hemminger181470f2009-06-12 19:02:52 +00004525static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526{
Wang Chen454d7c92008-11-12 23:37:49 -08004527 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529 /* initialize rwlocks */
4530 rwlock_init(&bond->lock);
4531 rwlock_init(&bond->curr_slave_lock);
4532
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004533 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534
4535 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 bond->dev = bond_dev;
4537 INIT_LIST_HEAD(&bond->vlan_list);
4538
4539 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004540 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004541 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004542 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004543 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004545 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
4547 /* Initialize the device options */
4548 bond_dev->tx_queue_len = 0;
4549 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004550 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004551 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4552
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004553 if (bond->params.arp_interval)
4554 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
4556 /* At first, we block adding VLANs. That's the only way to
4557 * prevent problems that occur when adding VLANs over an
4558 * empty bond. The block will be removed once non-challenged
4559 * slaves are enslaved.
4560 */
4561 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4562
Herbert Xu932ff272006-06-09 12:20:56 -07004563 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 * transmitting */
4565 bond_dev->features |= NETIF_F_LLTX;
4566
4567 /* By default, we declare the bond to be fully
4568 * VLAN hardware accelerated capable. Special
4569 * care is taken in the various xmit functions
4570 * when there are slaves that are not hw accel
4571 * capable
4572 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4574 NETIF_F_HW_VLAN_RX |
4575 NETIF_F_HW_VLAN_FILTER);
4576
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577}
4578
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004579static void bond_work_cancel_all(struct bonding *bond)
4580{
4581 write_lock_bh(&bond->lock);
4582 bond->kill_timers = 1;
4583 write_unlock_bh(&bond->lock);
4584
4585 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4586 cancel_delayed_work(&bond->mii_work);
4587
4588 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4589 cancel_delayed_work(&bond->arp_work);
4590
4591 if (bond->params.mode == BOND_MODE_ALB &&
4592 delayed_work_pending(&bond->alb_work))
4593 cancel_delayed_work(&bond->alb_work);
4594
4595 if (bond->params.mode == BOND_MODE_8023AD &&
4596 delayed_work_pending(&bond->ad_work))
4597 cancel_delayed_work(&bond->ad_work);
4598}
4599
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004600/*
4601* Destroy a bonding device.
4602* Must be under rtnl_lock when this function is called.
4603*/
4604static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004605{
Wang Chen454d7c92008-11-12 23:37:49 -08004606 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004607
WANG Congf6dc31a2010-05-06 00:48:51 -07004608 bond_netpoll_cleanup(bond_dev);
4609
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004610 /* Release the bonded slaves */
4611 bond_release_all(bond_dev);
4612
Jay Vosburgha434e432008-10-30 17:41:15 -07004613 list_del(&bond->bond_list);
4614
4615 bond_work_cancel_all(bond);
4616
Jay Vosburgha434e432008-10-30 17:41:15 -07004617 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004618
Jiri Pirko22bedad2010-04-01 21:22:57 +00004619 __hw_addr_flush(&bond->mc_list);
Jay Vosburgha434e432008-10-30 17:41:15 -07004620}
4621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622/*------------------------- Module initialization ---------------------------*/
4623
4624/*
4625 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004626 * number of the mode or its string name. A bit complicated because
4627 * some mode names are substrings of other names, and calls from sysfs
4628 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004630int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631{
Hannes Eder54b87322009-02-14 11:15:49 +00004632 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004633 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004634
Jay Vosburgha42e5342008-01-29 18:07:43 -08004635 for (p = (char *)buf; *p; p++)
4636 if (!(isdigit(*p) || isspace(*p)))
4637 break;
4638
4639 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004640 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004641 else
Hannes Eder54b87322009-02-14 11:15:49 +00004642 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004643
4644 if (!rv)
4645 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
4647 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004648 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004650 if (strcmp(modestr, tbl[i].modename) == 0)
4651 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 }
4653
4654 return -1;
4655}
4656
4657static int bond_check_params(struct bond_params *params)
4658{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004659 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004660
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 /*
4662 * Convert string parameters.
4663 */
4664 if (mode) {
4665 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4666 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004667 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 mode == NULL ? "NULL" : mode);
4669 return -EINVAL;
4670 }
4671 }
4672
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004673 if (xmit_hash_policy) {
4674 if ((bond_mode != BOND_MODE_XOR) &&
4675 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004676 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004677 bond_mode_name(bond_mode));
4678 } else {
4679 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4680 xmit_hashtype_tbl);
4681 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004682 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004683 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004684 xmit_hash_policy);
4685 return -EINVAL;
4686 }
4687 }
4688 }
4689
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 if (lacp_rate) {
4691 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004692 pr_info("lacp_rate param is irrelevant in mode %s\n",
4693 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 } else {
4695 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4696 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004697 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 lacp_rate == NULL ? "NULL" : lacp_rate);
4699 return -EINVAL;
4700 }
4701 }
4702 }
4703
Jay Vosburghfd989c82008-11-04 17:51:16 -08004704 if (ad_select) {
4705 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4706 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004707 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004708 ad_select == NULL ? "NULL" : ad_select);
4709 return -EINVAL;
4710 }
4711
4712 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004713 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004714 }
4715 } else {
4716 params->ad_select = BOND_AD_STABLE;
4717 }
4718
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004719 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004720 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4721 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 max_bonds = BOND_DEFAULT_MAX_BONDS;
4723 }
4724
4725 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004726 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4727 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 miimon = BOND_LINK_MON_INTERV;
4729 }
4730
4731 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004732 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4733 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 updelay = 0;
4735 }
4736
4737 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004738 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4739 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 downdelay = 0;
4741 }
4742
4743 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004744 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4745 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 use_carrier = 1;
4747 }
4748
Moni Shoua7893b242008-05-17 21:10:12 -07004749 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004750 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 -08004751 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004752 num_grat_arp = 1;
4753 }
4754
Brian Haley305d5522008-11-04 17:51:14 -08004755 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004756 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 -08004757 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004758 num_unsol_na = 1;
4759 }
4760
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 /* reset values for 802.3ad */
4762 if (bond_mode == BOND_MODE_8023AD) {
4763 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004764 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 +00004765 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 miimon = 100;
4767 }
4768 }
4769
4770 /* reset values for TLB/ALB */
4771 if ((bond_mode == BOND_MODE_TLB) ||
4772 (bond_mode == BOND_MODE_ALB)) {
4773 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004774 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 +00004775 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 miimon = 100;
4777 }
4778 }
4779
4780 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004781 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",
4782 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 }
4784
4785 if (!miimon) {
4786 if (updelay || downdelay) {
4787 /* just warn the user the up/down delay will have
4788 * no effect since miimon is zero...
4789 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004790 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",
4791 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 }
4793 } else {
4794 /* don't allow arp monitoring */
4795 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004796 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4797 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 arp_interval = 0;
4799 }
4800
4801 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004802 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4803 updelay, miimon,
4804 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805 }
4806
4807 updelay /= miimon;
4808
4809 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004810 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4811 downdelay, miimon,
4812 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 }
4814
4815 downdelay /= miimon;
4816 }
4817
4818 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004819 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4820 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 arp_interval = BOND_LINK_ARP_INTERV;
4822 }
4823
4824 for (arp_ip_count = 0;
4825 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4826 arp_ip_count++) {
4827 /* not complete check, but should be good enough to
4828 catch mistakes */
4829 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004830 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4831 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 arp_interval = 0;
4833 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004834 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 arp_target[arp_ip_count] = ip;
4836 }
4837 }
4838
4839 if (arp_interval && !arp_ip_count) {
4840 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004841 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4842 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 arp_interval = 0;
4844 }
4845
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004846 if (arp_validate) {
4847 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004848 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004849 return -EINVAL;
4850 }
4851 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004852 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004853 return -EINVAL;
4854 }
4855
4856 arp_validate_value = bond_parse_parm(arp_validate,
4857 arp_validate_tbl);
4858 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004859 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004860 arp_validate == NULL ? "NULL" : arp_validate);
4861 return -EINVAL;
4862 }
4863 } else
4864 arp_validate_value = 0;
4865
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004867 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 } else if (arp_interval) {
4869 int i;
4870
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004871 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4872 arp_interval,
4873 arp_validate_tbl[arp_validate_value].modename,
4874 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875
4876 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004877 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004879 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Jay Vosburghb8a97872008-06-13 18:12:04 -07004881 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 /* miimon and arp_interval not set, we need one so things
4883 * work as expected, see bonding.txt for details
4884 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004885 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 -07004886 }
4887
4888 if (primary && !USES_PRIMARY(bond_mode)) {
4889 /* currently, using a primary only makes sense
4890 * in active backup, TLB or ALB modes
4891 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004892 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
4893 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 primary = NULL;
4895 }
4896
Jiri Pirkoa5499522009-09-25 03:28:09 +00004897 if (primary && primary_reselect) {
4898 primary_reselect_value = bond_parse_parm(primary_reselect,
4899 pri_reselect_tbl);
4900 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004901 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00004902 primary_reselect ==
4903 NULL ? "NULL" : primary_reselect);
4904 return -EINVAL;
4905 }
4906 } else {
4907 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4908 }
4909
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004910 if (fail_over_mac) {
4911 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4912 fail_over_mac_tbl);
4913 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004914 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004915 arp_validate == NULL ? "NULL" : arp_validate);
4916 return -EINVAL;
4917 }
4918
4919 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004920 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004921 } else {
4922 fail_over_mac_value = BOND_FOM_NONE;
4923 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07004924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 /* fill params struct with the proper values */
4926 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004927 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07004929 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08004930 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004932 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 params->updelay = updelay;
4934 params->downdelay = downdelay;
4935 params->use_carrier = use_carrier;
4936 params->lacp_fast = lacp_fast;
4937 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00004938 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004939 params->fail_over_mac = fail_over_mac_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940
4941 if (primary) {
4942 strncpy(params->primary, primary, IFNAMSIZ);
4943 params->primary[IFNAMSIZ - 1] = 0;
4944 }
4945
4946 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4947
4948 return 0;
4949}
4950
Peter Zijlstra0daa2302006-11-08 19:51:01 -08004951static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07004952static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa2302006-11-08 19:51:01 -08004953
David S. Millere8a04642008-07-17 00:34:19 -07004954static void bond_set_lockdep_class_one(struct net_device *dev,
4955 struct netdev_queue *txq,
4956 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07004957{
4958 lockdep_set_class(&txq->_xmit_lock,
4959 &bonding_netdev_xmit_lock_key);
4960}
4961
4962static void bond_set_lockdep_class(struct net_device *dev)
4963{
David S. Millercf508b12008-07-22 14:16:42 -07004964 lockdep_set_class(&dev->addr_list_lock,
4965 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07004966 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07004967}
4968
Stephen Hemminger181470f2009-06-12 19:02:52 +00004969/*
4970 * Called from registration process
4971 */
4972static int bond_init(struct net_device *bond_dev)
4973{
4974 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004975 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004976
4977 pr_debug("Begin bond_init for %s\n", bond_dev->name);
4978
4979 bond->wq = create_singlethread_workqueue(bond_dev->name);
4980 if (!bond->wq)
4981 return -ENOMEM;
4982
4983 bond_set_lockdep_class(bond_dev);
4984
4985 netif_carrier_off(bond_dev);
4986
4987 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004988 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004989
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00004990 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad2010-04-01 21:22:57 +00004991
4992 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004993 return 0;
4994}
4995
Eric W. Biederman88ead972009-10-29 14:18:25 +00004996static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
4997{
4998 if (tb[IFLA_ADDRESS]) {
4999 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5000 return -EINVAL;
5001 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5002 return -EADDRNOTAVAIL;
5003 }
5004 return 0;
5005}
5006
5007static struct rtnl_link_ops bond_link_ops __read_mostly = {
5008 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005009 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005010 .setup = bond_setup,
5011 .validate = bond_validate,
5012};
5013
Mitch Williamsdfe60392005-11-09 10:36:04 -08005014/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005015 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005016 * Caller must NOT hold rtnl_lock; we need to release it here before we
5017 * set up our sysfs entries.
5018 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005019int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005020{
5021 struct net_device *bond_dev;
5022 int res;
5023
5024 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005025
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005026 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
Stephen Hemminger181470f2009-06-12 19:02:52 +00005027 bond_setup);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005028 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08005029 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005030 rtnl_unlock();
5031 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005032 }
5033
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005034 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005035 bond_dev->rtnl_link_ops = &bond_link_ops;
5036
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005037 if (!name) {
5038 res = dev_alloc_name(bond_dev, "bond%d");
5039 if (res < 0)
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005040 goto out;
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005041 }
5042
Mitch Williamsdfe60392005-11-09 10:36:04 -08005043 res = register_netdevice(bond_dev);
Peter Zijlstra0daa2302006-11-08 19:51:01 -08005044
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005045out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005046 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00005047 if (res < 0)
5048 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005049 return res;
5050}
5051
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005052static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005053{
Eric W. Biederman15449742009-11-29 15:46:04 +00005054 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005055
5056 bn->net = net;
5057 INIT_LIST_HEAD(&bn->dev_list);
5058
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005059 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005060
5061 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005062}
5063
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005064static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005065{
Eric W. Biederman15449742009-11-29 15:46:04 +00005066 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005067
5068 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005069}
5070
5071static struct pernet_operations bond_net_ops = {
5072 .init = bond_net_init,
5073 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005074 .id = &bond_net_id,
5075 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005076};
5077
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078static int __init bonding_init(void)
5079{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 int i;
5081 int res;
5082
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005083 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Mitch Williamsdfe60392005-11-09 10:36:04 -08005085 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005086 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
Eric W. Biederman15449742009-11-29 15:46:04 +00005089 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005090 if (res)
5091 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005092
Eric W. Biederman88ead972009-10-29 14:18:25 +00005093 res = rtnl_link_register(&bond_link_ops);
5094 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005095 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005098 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005099 if (res)
5100 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 }
5102
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005103 res = bond_create_sysfs();
5104 if (res)
5105 goto err;
5106
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005108 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005109 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005110out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005112err:
5113 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005114err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005115 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005116 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005117
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118}
5119
5120static void __exit bonding_exit(void)
5121{
5122 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005123 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005124 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005126 bond_destroy_sysfs();
5127
Eric W. Biederman88ead972009-10-29 14:18:25 +00005128 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005129 unregister_pernet_subsys(&bond_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130}
5131
5132module_init(bonding_init);
5133module_exit(bonding_exit);
5134MODULE_LICENSE("GPL");
5135MODULE_VERSION(DRV_VERSION);
5136MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5137MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005138MODULE_ALIAS_RTNL_LINK("bond");