blob: 1aeb36c51478ba3c6ef5410e77224022fb98cded [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/kernel.h>
35#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/types.h>
37#include <linux/fcntl.h>
38#include <linux/interrupt.h>
39#include <linux/ptrace.h>
40#include <linux/ioport.h>
41#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040042#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <linux/tcp.h>
45#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/slab.h>
47#include <linux/string.h>
48#include <linux/init.h>
49#include <linux/timer.h>
50#include <linux/socket.h>
51#include <linux/ctype.h>
52#include <linux/inet.h>
53#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000057#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/errno.h>
59#include <linux/netdevice.h>
60#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080061#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/etherdevice.h>
63#include <linux/skbuff.h>
64#include <net/sock.h>
65#include <linux/rtnetlink.h>
66#include <linux/proc_fs.h>
67#include <linux/seq_file.h>
68#include <linux/smp.h>
69#include <linux/if_ether.h>
70#include <net/arp.h>
71#include <linux/mii.h>
72#include <linux/ethtool.h>
73#include <linux/if_vlan.h>
74#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080075#include <linux/jiffies.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040076#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020077#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include "bonding.h"
79#include "bond_3ad.h"
80#include "bond_alb.h"
81
82/*---------------------------- Module parameters ----------------------------*/
83
84/* monitor all links that often (in milliseconds). <=0 disables monitoring */
85#define BOND_LINK_MON_INTERV 0
86#define BOND_LINK_ARP_INTERV 0
87
88static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Moni Shoua7893b242008-05-17 21:10:12 -070089static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080090static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000092static int updelay;
93static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000095static char *mode;
96static char *primary;
97static char *lacp_rate;
98static char *ad_select;
99static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
102static char *arp_validate;
103static char *fail_over_mac;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000104static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106module_param(max_bonds, int, 0);
107MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Moni Shoua7893b242008-05-17 21:10:12 -0700108module_param(num_grat_arp, int, 0644);
109MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800110module_param(num_unsol_na, int, 0644);
111MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112module_param(miimon, int, 0);
113MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
114module_param(updelay, int, 0);
115MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
116module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800117MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
118 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800120MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
121 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800123MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
124 "1 for active-backup, 2 for balance-xor, "
125 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
126 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127module_param(primary, charp, 0);
128MODULE_PARM_DESC(primary, "Primary network device to use");
129module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800130MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
131 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800132module_param(ad_select, charp, 0);
133MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400134module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800135MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
136 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137module_param(arp_interval, int, 0);
138MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
139module_param_array(arp_ip_target, charp, NULL, 0);
140MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700141module_param(arp_validate, charp, 0);
142MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700143module_param(fail_over_mac, charp, 0);
144MODULE_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 -0700145
146/*----------------------------- Global variables ----------------------------*/
147
Arjan van de Venf71e1302006-03-03 21:33:57 -0500148static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
150
Mitch Williams12479f92005-11-09 10:35:44 -0800151LIST_HEAD(bond_dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#ifdef CONFIG_PROC_FS
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000154static struct proc_dir_entry *bond_proc_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif
156
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000157static __be32 arp_target[BOND_MAX_ARP_TARGETS];
158static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000160static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
161static int lacp_fast;
Jay Vosburgh217df672005-09-26 16:11:50 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800164const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{ "slow", AD_LACP_SLOW},
166{ "fast", AD_LACP_FAST},
167{ NULL, -1},
168};
169
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800170const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{ "balance-rr", BOND_MODE_ROUNDROBIN},
172{ "active-backup", BOND_MODE_ACTIVEBACKUP},
173{ "balance-xor", BOND_MODE_XOR},
174{ "broadcast", BOND_MODE_BROADCAST},
175{ "802.3ad", BOND_MODE_8023AD},
176{ "balance-tlb", BOND_MODE_TLB},
177{ "balance-alb", BOND_MODE_ALB},
178{ NULL, -1},
179};
180
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800181const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400182{ "layer2", BOND_XMIT_POLICY_LAYER2},
183{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800184{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400185{ NULL, -1},
186};
187
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800188const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700189{ "none", BOND_ARP_VALIDATE_NONE},
190{ "active", BOND_ARP_VALIDATE_ACTIVE},
191{ "backup", BOND_ARP_VALIDATE_BACKUP},
192{ "all", BOND_ARP_VALIDATE_ALL},
193{ NULL, -1},
194};
195
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800196const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700197{ "none", BOND_FOM_NONE},
198{ "active", BOND_FOM_ACTIVE},
199{ "follow", BOND_FOM_FOLLOW},
200{ NULL, -1},
201};
202
Jay Vosburghfd989c82008-11-04 17:51:16 -0800203struct bond_parm_tbl ad_select_tbl[] = {
204{ "stable", BOND_AD_STABLE},
205{ "bandwidth", BOND_AD_BANDWIDTH},
206{ "count", BOND_AD_COUNT},
207{ NULL, -1},
208};
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/*-------------------------- Forward declarations ---------------------------*/
211
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400212static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000213static int bond_init(struct net_device *bond_dev);
Adrian Bunkc50b85d2007-10-24 18:23:17 +0200214static void bond_deinit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/*---------------------------- General routines -----------------------------*/
217
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700218static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800220 static const char *names[] = {
221 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
222 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
223 [BOND_MODE_XOR] = "load balancing (xor)",
224 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000225 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800226 [BOND_MODE_TLB] = "transmit load balancing",
227 [BOND_MODE_ALB] = "adaptive load balancing",
228 };
229
230 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800232
233 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/*---------------------------------- VLAN -----------------------------------*/
237
238/**
239 * bond_add_vlan - add a new vlan id on bond
240 * @bond: bond that got the notification
241 * @vlan_id: the vlan id to add
242 *
243 * Returns -ENOMEM if allocation failed.
244 */
245static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
246{
247 struct vlan_entry *vlan;
248
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800249 pr_debug("bond: %s, vlan id %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000250 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Brian Haley305d5522008-11-04 17:51:14 -0800252 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000253 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 INIT_LIST_HEAD(&vlan->vlan_list);
257 vlan->vlan_id = vlan_id;
258
259 write_lock_bh(&bond->lock);
260
261 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
262
263 write_unlock_bh(&bond->lock);
264
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800265 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 return 0;
268}
269
270/**
271 * bond_del_vlan - delete a vlan id from bond
272 * @bond: bond that got the notification
273 * @vlan_id: the vlan id to delete
274 *
275 * returns -ENODEV if @vlan_id was not found in @bond.
276 */
277static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
278{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700279 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int res = -ENODEV;
281
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800282 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 write_lock_bh(&bond->lock);
285
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700286 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (vlan->vlan_id == vlan_id) {
288 list_del(&vlan->vlan_list);
289
Holger Eitzenberger58402052008-12-09 23:07:13 -0800290 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800293 pr_debug("removed VLAN ID %d from bond %s\n", vlan_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 bond->dev->name);
295
296 kfree(vlan);
297
298 if (list_empty(&bond->vlan_list) &&
299 (bond->slave_cnt == 0)) {
300 /* Last VLAN removed and no slaves, so
301 * restore block on adding VLANs. This will
302 * be removed once new slaves that are not
303 * VLAN challenged will be added.
304 */
305 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
306 }
307
308 res = 0;
309 goto out;
310 }
311 }
312
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800313 pr_debug("couldn't find VLAN ID %d in bond %s\n", vlan_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 bond->dev->name);
315
316out:
317 write_unlock_bh(&bond->lock);
318 return res;
319}
320
321/**
322 * bond_has_challenged_slaves
323 * @bond: the bond we're working on
324 *
325 * Searches the slave list. Returns 1 if a vlan challenged slave
326 * was found, 0 otherwise.
327 *
328 * Assumes bond->lock is held.
329 */
330static int bond_has_challenged_slaves(struct bonding *bond)
331{
332 struct slave *slave;
333 int i;
334
335 bond_for_each_slave(bond, slave, i) {
336 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800337 pr_debug("found VLAN challenged slave - %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 slave->dev->name);
339 return 1;
340 }
341 }
342
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800343 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return 0;
345}
346
347/**
348 * bond_next_vlan - safely skip to the next item in the vlans list.
349 * @bond: the bond we're working on
350 * @curr: item we're advancing from
351 *
352 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
353 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000354 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * Caller must hold bond->lock
356 */
357struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
358{
359 struct vlan_entry *next, *last;
360
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000361 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 if (!curr) {
365 next = list_entry(bond->vlan_list.next,
366 struct vlan_entry, vlan_list);
367 } else {
368 last = list_entry(bond->vlan_list.prev,
369 struct vlan_entry, vlan_list);
370 if (last == curr) {
371 next = list_entry(bond->vlan_list.next,
372 struct vlan_entry, vlan_list);
373 } else {
374 next = list_entry(curr->vlan_list.next,
375 struct vlan_entry, vlan_list);
376 }
377 }
378
379 return next;
380}
381
382/**
383 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000384 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * @bond: bond device that got this skb for tx.
386 * @skb: hw accel VLAN tagged skb to transmit
387 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000388 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * When the bond gets an skb to transmit that is
390 * already hardware accelerated VLAN tagged, and it
391 * needs to relay this skb to a slave that is not
392 * hw accel capable, the skb needs to be "unaccelerated",
393 * i.e. strip the hwaccel tag and re-insert it as part
394 * of the payload.
395 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000396int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
397 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700399 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (!list_empty(&bond->vlan_list) &&
402 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
403 vlan_get_tag(skb, &vlan_id) == 0) {
404 skb->dev = slave_dev;
405 skb = vlan_put_tag(skb, vlan_id);
406 if (!skb) {
407 /* vlan_put_tag() frees the skb in case of error,
408 * so return success here so the calling functions
409 * won't attempt to free is again.
410 */
411 return 0;
412 }
413 } else {
414 skb->dev = slave_dev;
415 }
416
417 skb->priority = 1;
418 dev_queue_xmit(skb);
419
420 return 0;
421}
422
423/*
424 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
425 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
426 * lock because:
427 * a. This operation is performed in IOCTL context,
428 * b. The operation is protected by the RTNL semaphore in the 8021q code,
429 * c. Holding a lock with BH disabled while directly calling a base driver
430 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000431 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * The design of synchronization/protection for this operation in the 8021q
433 * module is good for one or more VLAN devices over a single physical device
434 * and cannot be extended for a teaming solution like bonding, so there is a
435 * potential race condition here where a net device from the vlan group might
436 * be referenced (either by a base driver or the 8021q code) while it is being
437 * removed from the system. However, it turns out we're not making matters
438 * worse, and if it works for regular VLAN usage it will work here too.
439*/
440
441/**
442 * bond_vlan_rx_register - Propagates registration to slaves
443 * @bond_dev: bonding net device that got called
444 * @grp: vlan group being registered
445 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000446static void bond_vlan_rx_register(struct net_device *bond_dev,
447 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Wang Chen454d7c92008-11-12 23:37:49 -0800449 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct slave *slave;
451 int i;
452
453 bond->vlgrp = grp;
454
455 bond_for_each_slave(bond, slave, i) {
456 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800457 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800460 slave_ops->ndo_vlan_rx_register) {
461 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463 }
464}
465
466/**
467 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
468 * @bond_dev: bonding net device that got called
469 * @vid: vlan id being added
470 */
471static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
472{
Wang Chen454d7c92008-11-12 23:37:49 -0800473 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct slave *slave;
475 int i, res;
476
477 bond_for_each_slave(bond, slave, i) {
478 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800479 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800482 slave_ops->ndo_vlan_rx_add_vid) {
483 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485 }
486
487 res = bond_add_vlan(bond, vid);
488 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000489 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800490 ": %s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 bond_dev->name, vid);
492 }
493}
494
495/**
496 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
497 * @bond_dev: bonding net device that got called
498 * @vid: vlan id being removed
499 */
500static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
501{
Wang Chen454d7c92008-11-12 23:37:49 -0800502 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct slave *slave;
504 struct net_device *vlan_dev;
505 int i, res;
506
507 bond_for_each_slave(bond, slave, i) {
508 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800509 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800512 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* Save and then restore vlan_dev in the grp array,
514 * since the slave's driver might clear it.
515 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800516 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800517 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800518 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 }
521
522 res = bond_del_vlan(bond, vid);
523 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000524 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800525 ": %s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 bond_dev->name, vid);
527 }
528}
529
530static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
531{
532 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800533 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 write_lock_bh(&bond->lock);
536
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800537 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800541 slave_ops->ndo_vlan_rx_register)
542 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800545 !(slave_ops->ndo_vlan_rx_add_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800548 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
549 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551out:
552 write_unlock_bh(&bond->lock);
553}
554
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000555static void bond_del_vlans_from_slave(struct bonding *bond,
556 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
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 struct vlan_entry *vlan;
560 struct net_device *vlan_dev;
561
562 write_lock_bh(&bond->lock);
563
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800564 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800568 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
572 /* Save and then restore vlan_dev in the grp array,
573 * since the slave's driver might clear it.
574 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800575 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800576 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800577 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580unreg:
581 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800582 slave_ops->ndo_vlan_rx_register)
583 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585out:
586 write_unlock_bh(&bond->lock);
587}
588
589/*------------------------------- Link status -------------------------------*/
590
591/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800592 * Set the carrier state for the master according to the state of its
593 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
594 * do special 802.3ad magic.
595 *
596 * Returns zero if carrier state does not change, nonzero if it does.
597 */
598static int bond_set_carrier(struct bonding *bond)
599{
600 struct slave *slave;
601 int i;
602
603 if (bond->slave_cnt == 0)
604 goto down;
605
606 if (bond->params.mode == BOND_MODE_8023AD)
607 return bond_3ad_set_carrier(bond);
608
609 bond_for_each_slave(bond, slave, i) {
610 if (slave->link == BOND_LINK_UP) {
611 if (!netif_carrier_ok(bond->dev)) {
612 netif_carrier_on(bond->dev);
613 return 1;
614 }
615 return 0;
616 }
617 }
618
619down:
620 if (netif_carrier_ok(bond->dev)) {
621 netif_carrier_off(bond->dev);
622 return 1;
623 }
624 return 0;
625}
626
627/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 * Get link speed and duplex from the slave's base driver
629 * using ethtool. If for some reason the call fails or the
630 * values are invalid, fake speed and duplex to 100/Full
631 * and return error.
632 */
633static int bond_update_speed_duplex(struct slave *slave)
634{
635 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700637 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 /* Fake speed and duplex */
640 slave->speed = SPEED_100;
641 slave->duplex = DUPLEX_FULL;
642
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700643 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700646 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
647 if (res < 0)
648 return -1;
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 switch (etool.speed) {
651 case SPEED_10:
652 case SPEED_100:
653 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700654 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
656 default:
657 return -1;
658 }
659
660 switch (etool.duplex) {
661 case DUPLEX_FULL:
662 case DUPLEX_HALF:
663 break;
664 default:
665 return -1;
666 }
667
668 slave->speed = etool.speed;
669 slave->duplex = etool.duplex;
670
671 return 0;
672}
673
674/*
675 * if <dev> supports MII link status reporting, check its link status.
676 *
677 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000678 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *
680 * Return either BMSR_LSTATUS, meaning that the link is up (or we
681 * can't tell and just pretend it is), or 0, meaning that the link is
682 * down.
683 *
684 * If reporting is non-zero, instead of faking link up, return -1 if
685 * both ETHTOOL and MII ioctls fail (meaning the device does not
686 * support them). If use_carrier is set, return whatever it says.
687 * It'd be nice if there was a good way to tell if a driver supports
688 * netif_carrier, but there really isn't.
689 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000690static int bond_check_dev_link(struct bonding *bond,
691 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800693 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000694 static int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 struct ifreq ifr;
696 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800698 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Jiri Pirko29112f42009-04-24 01:58:23 +0000701 /* Try to get link status using Ethtool first. */
702 if (slave_dev->ethtool_ops) {
703 if (slave_dev->ethtool_ops->get_link) {
704 u32 link;
705
706 link = slave_dev->ethtool_ops->get_link(slave_dev);
707
708 return link ? BMSR_LSTATUS : 0;
709 }
710 }
711
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000712 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800713 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (ioctl) {
715 /* TODO: set pointer to correct ioctl on a per team member */
716 /* bases to make this more efficient. that is, once */
717 /* we determine the correct ioctl, we will always */
718 /* call it and not the others for that team */
719 /* member. */
720
721 /*
722 * We cannot assume that SIOCGMIIPHY will also read a
723 * register; not all network drivers (e.g., e100)
724 * support that.
725 */
726
727 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
728 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
729 mii = if_mii(&ifr);
730 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
731 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000732 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
733 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 }
736
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700737 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700739 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 * cannot report link status). If not reporting, pretend
741 * we're ok.
742 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000743 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/*----------------------------- Multicast list ------------------------------*/
747
748/*
749 * Returns 0 if dmi1 and dmi2 are the same, non-0 otherwise
750 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000751static inline int bond_is_dmi_same(const struct dev_mc_list *dmi1,
752 const struct dev_mc_list *dmi2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 return memcmp(dmi1->dmi_addr, dmi2->dmi_addr, dmi1->dmi_addrlen) == 0 &&
755 dmi1->dmi_addrlen == dmi2->dmi_addrlen;
756}
757
758/*
759 * returns dmi entry if found, NULL otherwise
760 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000761static struct dev_mc_list *bond_mc_list_find_dmi(struct dev_mc_list *dmi,
762 struct dev_mc_list *mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 struct dev_mc_list *idmi;
765
766 for (idmi = mc_list; idmi; idmi = idmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000767 if (bond_is_dmi_same(dmi, idmi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return idmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
771 return NULL;
772}
773
774/*
775 * Push the promiscuity flag down to appropriate slaves
776 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700777static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700779 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (USES_PRIMARY(bond->params.mode)) {
781 /* write lock already acquired */
782 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700783 err = dev_set_promiscuity(bond->curr_active_slave->dev,
784 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 } else {
787 struct slave *slave;
788 int i;
789 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700790 err = dev_set_promiscuity(slave->dev, inc);
791 if (err)
792 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700795 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798/*
799 * Push the allmulti flag down to all slaves
800 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700801static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700803 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (USES_PRIMARY(bond->params.mode)) {
805 /* write lock already acquired */
806 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700807 err = dev_set_allmulti(bond->curr_active_slave->dev,
808 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 } else {
811 struct slave *slave;
812 int i;
813 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700814 err = dev_set_allmulti(slave->dev, inc);
815 if (err)
816 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700819 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
822/*
823 * Add a Multicast address to slaves
824 * according to mode
825 */
826static void bond_mc_add(struct bonding *bond, void *addr, int alen)
827{
828 if (USES_PRIMARY(bond->params.mode)) {
829 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000830 if (bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 dev_mc_add(bond->curr_active_slave->dev, addr, alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 } else {
833 struct slave *slave;
834 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000835
836 bond_for_each_slave(bond, slave, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 dev_mc_add(slave->dev, addr, alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839}
840
841/*
842 * Remove a multicast address from slave
843 * according to mode
844 */
845static void bond_mc_delete(struct bonding *bond, void *addr, int alen)
846{
847 if (USES_PRIMARY(bond->params.mode)) {
848 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000849 if (bond->curr_active_slave)
850 dev_mc_delete(bond->curr_active_slave->dev, addr,
851 alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 } else {
853 struct slave *slave;
854 int i;
855 bond_for_each_slave(bond, slave, i) {
856 dev_mc_delete(slave->dev, addr, alen, 0);
857 }
858 }
859}
860
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800861
862/*
863 * Retrieve the list of registered multicast addresses for the bonding
864 * device and retransmit an IGMP JOIN request to the current active
865 * slave.
866 */
867static void bond_resend_igmp_join_requests(struct bonding *bond)
868{
869 struct in_device *in_dev;
870 struct ip_mc_list *im;
871
872 rcu_read_lock();
873 in_dev = __in_dev_get_rcu(bond->dev);
874 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000875 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800876 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800877 }
878
879 rcu_read_unlock();
880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * Totally destroys the mc_list in bond
884 */
885static void bond_mc_list_destroy(struct bonding *bond)
886{
887 struct dev_mc_list *dmi;
888
889 dmi = bond->mc_list;
890 while (dmi) {
891 bond->mc_list = dmi->next;
892 kfree(dmi);
893 dmi = bond->mc_list;
894 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000895
896 bond->mc_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899/*
900 * Copy all the Multicast addresses from src to the bonding device dst
901 */
Randy Dunlapde54f392005-10-04 22:39:41 -0700902static int bond_mc_list_copy(struct dev_mc_list *mc_list, struct bonding *bond,
Al Virodd0fc662005-10-07 07:46:04 +0100903 gfp_t gfp_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct dev_mc_list *dmi, *new_dmi;
906
907 for (dmi = mc_list; dmi; dmi = dmi->next) {
Randy Dunlapde54f392005-10-04 22:39:41 -0700908 new_dmi = kmalloc(sizeof(struct dev_mc_list), gfp_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (!new_dmi) {
911 /* FIXME: Potential memory leak !!! */
912 return -ENOMEM;
913 }
914
915 new_dmi->next = bond->mc_list;
916 bond->mc_list = new_dmi;
917 new_dmi->dmi_addrlen = dmi->dmi_addrlen;
918 memcpy(new_dmi->dmi_addr, dmi->dmi_addr, dmi->dmi_addrlen);
919 new_dmi->dmi_users = dmi->dmi_users;
920 new_dmi->dmi_gusers = dmi->dmi_gusers;
921 }
922
923 return 0;
924}
925
926/*
927 * flush all members of flush->mc_list from device dev->mc_list
928 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000929static void bond_mc_list_flush(struct net_device *bond_dev,
930 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Wang Chen454d7c92008-11-12 23:37:49 -0800932 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 struct dev_mc_list *dmi;
934
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000935 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 dev_mc_delete(slave_dev, dmi->dmi_addr, dmi->dmi_addrlen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 if (bond->params.mode == BOND_MODE_8023AD) {
939 /* del lacpdu mc addr from mc list */
940 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
941
942 dev_mc_delete(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
943 }
944}
945
946/*--------------------------- Active slave change ---------------------------*/
947
948/*
949 * Update the mc list and multicast-related flags for the new and
950 * old active slaves (if any) according to the multicast mode, and
951 * promiscuous flags unconditionally.
952 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000953static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
954 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 struct dev_mc_list *dmi;
957
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000958 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /* nothing to do - mc list is already up-to-date on
960 * all slaves
961 */
962 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000965 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000968 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000971 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
972 dev_mc_delete(old_active->dev, dmi->dmi_addr,
973 dmi->dmi_addrlen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
976 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700977 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000978 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000981 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000984 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
985 dev_mc_add(new_active->dev, dmi->dmi_addr,
986 dmi->dmi_addrlen, 0);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800987 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989}
990
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700991/*
992 * bond_do_fail_over_mac
993 *
994 * Perform special MAC address swapping for fail_over_mac settings
995 *
996 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
997 */
998static void bond_do_fail_over_mac(struct bonding *bond,
999 struct slave *new_active,
1000 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001001 __releases(&bond->curr_slave_lock)
1002 __releases(&bond->lock)
1003 __acquires(&bond->lock)
1004 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001005{
1006 u8 tmp_mac[ETH_ALEN];
1007 struct sockaddr saddr;
1008 int rv;
1009
1010 switch (bond->params.fail_over_mac) {
1011 case BOND_FOM_ACTIVE:
1012 if (new_active)
1013 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1014 new_active->dev->addr_len);
1015 break;
1016 case BOND_FOM_FOLLOW:
1017 /*
1018 * if new_active && old_active, swap them
1019 * if just old_active, do nothing (going to no active slave)
1020 * if just new_active, set new_active to bond's MAC
1021 */
1022 if (!new_active)
1023 return;
1024
1025 write_unlock_bh(&bond->curr_slave_lock);
1026 read_unlock(&bond->lock);
1027
1028 if (old_active) {
1029 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1030 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1031 ETH_ALEN);
1032 saddr.sa_family = new_active->dev->type;
1033 } else {
1034 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1035 saddr.sa_family = bond->dev->type;
1036 }
1037
1038 rv = dev_set_mac_address(new_active->dev, &saddr);
1039 if (rv) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001040 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001041 ": %s: Error %d setting MAC of slave %s\n",
1042 bond->dev->name, -rv, new_active->dev->name);
1043 goto out;
1044 }
1045
1046 if (!old_active)
1047 goto out;
1048
1049 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1050 saddr.sa_family = old_active->dev->type;
1051
1052 rv = dev_set_mac_address(old_active->dev, &saddr);
1053 if (rv)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001054 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001055 ": %s: Error %d setting MAC of slave %s\n",
1056 bond->dev->name, -rv, new_active->dev->name);
1057out:
1058 read_lock(&bond->lock);
1059 write_lock_bh(&bond->curr_slave_lock);
1060 break;
1061 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001062 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001063 ": %s: bond_do_fail_over_mac impossible: bad policy %d\n",
1064 bond->dev->name, bond->params.fail_over_mac);
1065 break;
1066 }
1067
1068}
1069
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/**
1072 * find_best_interface - select the best available slave to be the active one
1073 * @bond: our bonding struct
1074 *
1075 * Warning: Caller must hold curr_slave_lock for writing.
1076 */
1077static struct slave *bond_find_best_slave(struct bonding *bond)
1078{
1079 struct slave *new_active, *old_active;
1080 struct slave *bestslave = NULL;
1081 int mintime = bond->params.updelay;
1082 int i;
1083
1084 new_active = old_active = bond->curr_active_slave;
1085
1086 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001087 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001089 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001093 /*
1094 * first try the primary link; if arping, a link must tx/rx
1095 * traffic before it can be considered the curr_active_slave.
1096 * also, we would skip slaves between the curr_active_slave
1097 * and primary_slave that may be up and able to arp
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 */
1099 if ((bond->primary_slave) &&
1100 (!bond->params.arp_interval) &&
1101 (IS_UP(bond->primary_slave->dev))) {
1102 new_active = bond->primary_slave;
1103 }
1104
1105 /* remember where to stop iterating over the slaves */
1106 old_active = new_active;
1107
1108 bond_for_each_slave_from(bond, new_active, i, old_active) {
1109 if (IS_UP(new_active->dev)) {
1110 if (new_active->link == BOND_LINK_UP) {
1111 return new_active;
1112 } else if (new_active->link == BOND_LINK_BACK) {
1113 /* link up, but waiting for stabilization */
1114 if (new_active->delay < mintime) {
1115 mintime = new_active->delay;
1116 bestslave = new_active;
1117 }
1118 }
1119 }
1120 }
1121
1122 return bestslave;
1123}
1124
1125/**
1126 * change_active_interface - change the active slave into the specified one
1127 * @bond: our bonding struct
1128 * @new: the new slave to make the active one
1129 *
1130 * Set the new slave to the bond's settings and unset them on the old
1131 * curr_active_slave.
1132 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1133 *
1134 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1135 * because it is apparently the best available slave we have, even though its
1136 * updelay hasn't timed out yet.
1137 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001138 * If new_active is not NULL, caller must hold bond->lock for read and
1139 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001141void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 struct slave *old_active = bond->curr_active_slave;
1144
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001145 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001149 new_active->jiffies = jiffies;
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (new_active->link == BOND_LINK_BACK) {
1152 if (USES_PRIMARY(bond->params.mode)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001153 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 ": %s: making interface %s the new "
1155 "active one %d ms earlier.\n",
1156 bond->dev->name, new_active->dev->name,
1157 (bond->params.updelay - new_active->delay) * bond->params.miimon);
1158 }
1159
1160 new_active->delay = 0;
1161 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001163 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Holger Eitzenberger58402052008-12-09 23:07:13 -08001166 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 } else {
1169 if (USES_PRIMARY(bond->params.mode)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001170 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 ": %s: making interface %s the new "
1172 "active one.\n",
1173 bond->dev->name, new_active->dev->name);
1174 }
1175 }
1176 }
1177
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001178 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Holger Eitzenberger58402052008-12-09 23:07:13 -08001181 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001183 if (old_active)
1184 bond_set_slave_inactive_flags(old_active);
1185 if (new_active)
1186 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 } else {
1188 bond->curr_active_slave = new_active;
1189 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001190
1191 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001192 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001193 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001194
1195 if (new_active) {
1196 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001197
Or Gerlitz709f8a42008-06-13 18:12:01 -07001198 if (bond->params.fail_over_mac)
1199 bond_do_fail_over_mac(bond, new_active,
1200 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001201
Or Gerlitz709f8a42008-06-13 18:12:01 -07001202 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001203 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001204
Brian Haley305d5522008-11-04 17:51:14 -08001205 bond->send_unsol_na = bond->params.num_unsol_na;
1206 bond_send_unsolicited_na(bond);
1207
Or Gerlitz01f31092008-06-13 18:12:02 -07001208 write_unlock_bh(&bond->curr_slave_lock);
1209 read_unlock(&bond->lock);
1210
1211 netdev_bonding_change(bond->dev);
1212
1213 read_lock(&bond->lock);
1214 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001215 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
1218
1219/**
1220 * bond_select_active_slave - select a new active slave, if needed
1221 * @bond: our bonding struct
1222 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001223 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * - The old curr_active_slave has been released or lost its link.
1225 * - The primary_slave has got its link back.
1226 * - A slave has got its link back and there's no old curr_active_slave.
1227 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001228 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001230void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001233 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 best_slave = bond_find_best_slave(bond);
1236 if (best_slave != bond->curr_active_slave) {
1237 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001238 rv = bond_set_carrier(bond);
1239 if (!rv)
1240 return;
1241
1242 if (netif_carrier_ok(bond->dev)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001243 pr_info(DRV_NAME
Jay Vosburghff59c452006-03-27 13:27:43 -08001244 ": %s: first active interface up!\n",
1245 bond->dev->name);
1246 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001247 pr_info(DRV_NAME ": %s: "
Jay Vosburghff59c452006-03-27 13:27:43 -08001248 "now running without any active interface !\n",
1249 bond->dev->name);
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252}
1253
1254/*--------------------------- slave list handling ---------------------------*/
1255
1256/*
1257 * This function attaches the slave to the end of list.
1258 *
1259 * bond->lock held for writing by caller.
1260 */
1261static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1262{
1263 if (bond->first_slave == NULL) { /* attaching the first slave */
1264 new_slave->next = new_slave;
1265 new_slave->prev = new_slave;
1266 bond->first_slave = new_slave;
1267 } else {
1268 new_slave->next = bond->first_slave;
1269 new_slave->prev = bond->first_slave->prev;
1270 new_slave->next->prev = new_slave;
1271 new_slave->prev->next = new_slave;
1272 }
1273
1274 bond->slave_cnt++;
1275}
1276
1277/*
1278 * This function detaches the slave from the list.
1279 * WARNING: no check is made to verify if the slave effectively
1280 * belongs to <bond>.
1281 * Nothing is freed on return, structures are just unchained.
1282 * If any slave pointer in bond was pointing to <slave>,
1283 * it should be changed by the calling function.
1284 *
1285 * bond->lock held for writing by caller.
1286 */
1287static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1288{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001289 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001292 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 if (bond->first_slave == slave) { /* slave is the first slave */
1296 if (bond->slave_cnt > 1) { /* there are more slave */
1297 bond->first_slave = slave->next;
1298 } else {
1299 bond->first_slave = NULL; /* slave was the last one */
1300 }
1301 }
1302
1303 slave->next = NULL;
1304 slave->prev = NULL;
1305 bond->slave_cnt--;
1306}
1307
1308/*---------------------------------- IOCTL ----------------------------------*/
1309
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001310static int bond_sethwaddr(struct net_device *bond_dev,
1311 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001313 pr_debug("bond_dev=%p\n", bond_dev);
1314 pr_debug("slave_dev=%p\n", slave_dev);
1315 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1317 return 0;
1318}
1319
Herbert Xu7f353bf2007-08-10 15:47:58 -07001320#define BOND_VLAN_FEATURES \
1321 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1322 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001323
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001324/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001325 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001326 * feature bits are managed elsewhere, so preserve those feature bits
1327 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001328 */
1329static int bond_compute_features(struct bonding *bond)
1330{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001331 struct slave *slave;
1332 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001333 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001334 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001335 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1336 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001337 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001338
Herbert Xu7f353bf2007-08-10 15:47:58 -07001339 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001340 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1341
1342 if (!bond->first_slave)
1343 goto done;
1344
1345 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001346
Jay Vosburgh278339a2009-08-28 12:05:12 +00001347 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001348 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001349 features = netdev_increment_features(features,
1350 slave->dev->features,
1351 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001352 vlan_features = netdev_increment_features(vlan_features,
1353 slave->dev->vlan_features,
1354 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001355 if (slave->dev->hard_header_len > max_hard_header_len)
1356 max_hard_header_len = slave->dev->hard_header_len;
1357 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001358
Herbert Xub63365a2008-10-23 01:11:29 -07001359done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001360 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001361 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001362 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001363 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001364
1365 return 0;
1366}
1367
Moni Shoua872254d2007-10-09 19:43:38 -07001368static void bond_setup_by_slave(struct net_device *bond_dev,
1369 struct net_device *slave_dev)
1370{
Wang Chen454d7c92008-11-12 23:37:49 -08001371 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001372
Stephen Hemminger00829822008-11-20 20:14:53 -08001373 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001374
1375 bond_dev->type = slave_dev->type;
1376 bond_dev->hard_header_len = slave_dev->hard_header_len;
1377 bond_dev->addr_len = slave_dev->addr_len;
1378
1379 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1380 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001381 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001382}
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001385int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Wang Chen454d7c92008-11-12 23:37:49 -08001387 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001388 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 struct slave *new_slave = NULL;
1390 struct dev_mc_list *dmi;
1391 struct sockaddr addr;
1392 int link_reporting;
1393 int old_features = bond_dev->features;
1394 int res = 0;
1395
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001396 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001397 slave_ops->ndo_do_ioctl == NULL) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001398 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001399 ": %s: Warning: no link monitoring support for %s\n",
1400 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
1403 /* bond must be initialized by bond_open() before enslaving */
1404 if (!(bond_dev->flags & IFF_UP)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001405 pr_warning(DRV_NAME
Moni Shoua6b1bf092007-10-09 19:43:40 -07001406 " %s: master_dev is not up in bond_enslave\n",
1407 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 /* already enslaved */
1411 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001412 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return -EBUSY;
1414 }
1415
1416 /* vlan challenged mutual exclusion */
1417 /* no need to lock since we're protected by rtnl_lock */
1418 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001419 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (!list_empty(&bond->vlan_list)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001421 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001422 ": %s: Error: cannot enslave VLAN "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 "challenged slave %s on VLAN enabled "
Mitch Williams4e0952c2005-11-09 10:34:57 -08001424 "bond %s\n", bond_dev->name, slave_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 bond_dev->name);
1426 return -EPERM;
1427 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001428 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001429 ": %s: Warning: enslaved VLAN challenged "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 "slave %s. Adding VLANs will be blocked as "
1431 "long as %s is part of bond %s\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001432 bond_dev->name, slave_dev->name, slave_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 bond_dev->name);
1434 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1435 }
1436 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001437 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (bond->slave_cnt == 0) {
1439 /* First slave, and it is not VLAN challenged,
1440 * so remove the block of adding VLANs over the bond.
1441 */
1442 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1443 }
1444 }
1445
Jay Vosburgh217df672005-09-26 16:11:50 -07001446 /*
1447 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001448 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001449 * the current ifenslave will set the interface down prior to
1450 * enslaving it; the old ifenslave will not.
1451 */
1452 if ((slave_dev->flags & IFF_UP)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001453 pr_err(DRV_NAME ": %s is up. "
Jay Vosburgh217df672005-09-26 16:11:50 -07001454 "This may be due to an out of date ifenslave.\n",
1455 slave_dev->name);
1456 res = -EPERM;
1457 goto err_undo_flags;
1458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Moni Shoua872254d2007-10-09 19:43:38 -07001460 /* set bonding device ether type by slave - bonding netdevices are
1461 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1462 * there is a need to override some of the type dependent attribs/funcs.
1463 *
1464 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1465 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1466 */
1467 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001468 if (bond_dev->type != slave_dev->type) {
1469 dev_close(bond_dev);
1470 pr_debug("%s: change device type from %d to %d\n",
1471 bond_dev->name, bond_dev->type, slave_dev->type);
1472 if (slave_dev->type != ARPHRD_ETHER)
1473 bond_setup_by_slave(bond_dev, slave_dev);
1474 else
1475 ether_setup(bond_dev);
1476 dev_open(bond_dev);
1477 }
Moni Shoua872254d2007-10-09 19:43:38 -07001478 } else if (bond_dev->type != slave_dev->type) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001479 pr_err(DRV_NAME ": %s ether type (%d) is different "
Moni Shoua872254d2007-10-09 19:43:38 -07001480 "from other slaves (%d), can not enslave it.\n",
1481 slave_dev->name,
1482 slave_dev->type, bond_dev->type);
1483 res = -EINVAL;
1484 goto err_undo_flags;
1485 }
1486
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001487 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001488 if (bond->slave_cnt == 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001489 pr_warning(DRV_NAME
Jay Vosburghdd957c52007-10-09 19:57:24 -07001490 ": %s: Warning: The first slave device "
1491 "specified does not support setting the MAC "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001492 "address. Setting fail_over_mac to active.",
Jay Vosburghdd957c52007-10-09 19:57:24 -07001493 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001494 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1495 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001496 pr_err(DRV_NAME
Jay Vosburghdd957c52007-10-09 19:57:24 -07001497 ": %s: Error: The slave device specified "
1498 "does not support setting the MAC address, "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001499 "but fail_over_mac is not set to active.\n"
Moni Shoua2ab82852007-10-09 19:43:39 -07001500 , bond_dev->name);
1501 res = -EOPNOTSUPP;
1502 goto err_undo_flags;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505
Joe Jin243cb4e2007-02-06 14:16:40 -08001506 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (!new_slave) {
1508 res = -ENOMEM;
1509 goto err_undo_flags;
1510 }
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /* save slave's original flags before calling
1513 * netdev_set_master and dev_open
1514 */
1515 new_slave->original_flags = slave_dev->flags;
1516
Jay Vosburgh217df672005-09-26 16:11:50 -07001517 /*
1518 * Save slave's original ("permanent") mac address for modes
1519 * that need it, and for restoring it upon release, and then
1520 * set it to the master's address
1521 */
1522 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Jay Vosburghdd957c52007-10-09 19:57:24 -07001524 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001525 /*
1526 * Set slave to master's mac address. The application already
1527 * set the master's mac address to that of the first slave
1528 */
1529 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1530 addr.sa_family = slave_dev->type;
1531 res = dev_set_mac_address(slave_dev, &addr);
1532 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001533 pr_debug("Error %d calling set_mac_address\n", res);
Moni Shoua2ab82852007-10-09 19:43:39 -07001534 goto err_free;
1535 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001538 res = netdev_set_master(slave_dev, bond_dev);
1539 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001540 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001541 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001542 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001543 /* open the slave since the application closed it */
1544 res = dev_open(slave_dev);
1545 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001546 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001547 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001551 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Holger Eitzenberger58402052008-12-09 23:07:13 -08001553 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /* bond_alb_init_slave() must be called before all other stages since
1555 * it might fail and we do not want to have to undo everything
1556 */
1557 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001558 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001559 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
1561
1562 /* If the mode USES_PRIMARY, then the new slave gets the
1563 * master's promisc (and mc) settings only if it becomes the
1564 * curr_active_slave, and that is taken care of later when calling
1565 * bond_change_active()
1566 */
1567 if (!USES_PRIMARY(bond->params.mode)) {
1568 /* set promiscuity level to new slave */
1569 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001570 res = dev_set_promiscuity(slave_dev, 1);
1571 if (res)
1572 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574
1575 /* set allmulti level to new slave */
1576 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001577 res = dev_set_allmulti(slave_dev, 1);
1578 if (res)
1579 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
1581
David S. Millerb9e40852008-07-15 00:15:08 -07001582 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 /* upload master's mc_list to new slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001584 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
1585 dev_mc_add(slave_dev, dmi->dmi_addr,
1586 dmi->dmi_addrlen, 0);
David S. Millerb9e40852008-07-15 00:15:08 -07001587 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589
1590 if (bond->params.mode == BOND_MODE_8023AD) {
1591 /* add lacpdu mc addr to mc list */
1592 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1593
1594 dev_mc_add(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
1595 }
1596
1597 bond_add_vlans_on_slave(bond, slave_dev);
1598
1599 write_lock_bh(&bond->lock);
1600
1601 bond_attach_slave(bond, new_slave);
1602
1603 new_slave->delay = 0;
1604 new_slave->link_failure_count = 0;
1605
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001606 bond_compute_features(bond);
1607
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001608 write_unlock_bh(&bond->lock);
1609
1610 read_lock(&bond->lock);
1611
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001612 new_slave->last_arp_rx = jiffies;
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (bond->params.miimon && !bond->params.use_carrier) {
1615 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1616
1617 if ((link_reporting == -1) && !bond->params.arp_interval) {
1618 /*
1619 * miimon is set but a bonded network driver
1620 * does not support ETHTOOL/MII and
1621 * arp_interval is not set. Note: if
1622 * use_carrier is enabled, we will never go
1623 * here (because netif_carrier is always
1624 * supported); thus, we don't need to change
1625 * the messages for netif_carrier.
1626 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001627 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001628 ": %s: Warning: MII and ETHTOOL support not "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 "available for interface %s, and "
1630 "arp_interval/arp_ip_target module parameters "
1631 "not specified, thus bonding will not detect "
1632 "link failures! see bonding.txt for details.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001633 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 } else if (link_reporting == -1) {
1635 /* unable get link status using mii/ethtool */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001636 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001637 ": %s: Warning: can't get link status from "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 "interface %s; the network driver associated "
1639 "with this interface does not support MII or "
1640 "ETHTOOL link status reporting, thus miimon "
1641 "has no effect on this interface.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001642 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644 }
1645
1646 /* check for initial state */
1647 if (!bond->params.miimon ||
1648 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1649 if (bond->params.updelay) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001650 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 "BOND_LINK_BACK\n");
1652 new_slave->link = BOND_LINK_BACK;
1653 new_slave->delay = bond->params.updelay;
1654 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001655 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 "BOND_LINK_UP\n");
1657 new_slave->link = BOND_LINK_UP;
1658 }
1659 new_slave->jiffies = jiffies;
1660 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001661 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 "BOND_LINK_DOWN\n");
1663 new_slave->link = BOND_LINK_DOWN;
1664 }
1665
1666 if (bond_update_speed_duplex(new_slave) &&
1667 (new_slave->link != BOND_LINK_DOWN)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001668 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001669 ": %s: Warning: failed to get speed and duplex from %s, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 "assumed to be 100Mb/sec and Full.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001671 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 if (bond->params.mode == BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001674 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001675 ": %s: Warning: Operation of 802.3ad mode requires ETHTOOL "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 "support in base driver for proper aggregator "
Mitch Williams4e0952c2005-11-09 10:34:57 -08001677 "selection.\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679 }
1680
1681 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1682 /* if there is a primary slave, remember it */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001683 if (strcmp(bond->params.primary, new_slave->dev->name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 bond->primary_slave = new_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001687 write_lock_bh(&bond->curr_slave_lock);
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 switch (bond->params.mode) {
1690 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001691 bond_set_slave_inactive_flags(new_slave);
1692 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 break;
1694 case BOND_MODE_8023AD:
1695 /* in 802.3ad mode, the internal mechanism
1696 * will activate the slaves in the selected
1697 * aggregator
1698 */
1699 bond_set_slave_inactive_flags(new_slave);
1700 /* if this is the first slave */
1701 if (bond->slave_cnt == 1) {
1702 SLAVE_AD_INFO(new_slave).id = 1;
1703 /* Initialize AD with the number of times that the AD timer is called in 1 second
1704 * can be called only after the mac address of the bond is set
1705 */
1706 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1707 bond->params.lacp_fast);
1708 } else {
1709 SLAVE_AD_INFO(new_slave).id =
1710 SLAVE_AD_INFO(new_slave->prev).id + 1;
1711 }
1712
1713 bond_3ad_bind_slave(new_slave);
1714 break;
1715 case BOND_MODE_TLB:
1716 case BOND_MODE_ALB:
1717 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001718 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001719 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 break;
1721 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001722 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 /* always active in trunk mode */
1725 new_slave->state = BOND_STATE_ACTIVE;
1726
1727 /* In trunking mode there is little meaning to curr_active_slave
1728 * anyway (it holds no special properties of the bond device),
1729 * so we can change it without calling change_active_interface()
1730 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001731 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 break;
1735 } /* switch(bond_mode) */
1736
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001737 write_unlock_bh(&bond->curr_slave_lock);
1738
Jay Vosburghff59c452006-03-27 13:27:43 -08001739 bond_set_carrier(bond);
1740
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001741 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001743 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1744 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001745 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001746
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001747 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 ": %s: enslaving %s as a%s interface with a%s link.\n",
1749 bond_dev->name, slave_dev->name,
1750 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1751 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
1752
1753 /* enslave is successful */
1754 return 0;
1755
1756/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757err_close:
1758 dev_close(slave_dev);
1759
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001760err_unset_master:
1761 netdev_set_master(slave_dev, NULL);
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001764 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001765 /* XXX TODO - fom follow mode needs to change master's
1766 * MAC if this slave's MAC is in use by the bond, or at
1767 * least print a warning.
1768 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001769 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1770 addr.sa_family = slave_dev->type;
1771 dev_set_mac_address(slave_dev, &addr);
1772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774err_free:
1775 kfree(new_slave);
1776
1777err_undo_flags:
1778 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return res;
1781}
1782
1783/*
1784 * Try to release the slave device <slave> from the bond device <master>
1785 * It is legal to access curr_active_slave without a lock because all the function
1786 * is write-locked.
1787 *
1788 * The rules for slave state should be:
1789 * for Active/Backup:
1790 * Active stays on all backups go down
1791 * for Bonded connections:
1792 * The first up interface should be left on and all others downed.
1793 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001794int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Wang Chen454d7c92008-11-12 23:37:49 -08001796 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 struct slave *slave, *oldcurrent;
1798 struct sockaddr addr;
1799 int mac_addr_differ;
1800
1801 /* slave is not a slave or master is not master of this slave */
1802 if (!(slave_dev->flags & IFF_SLAVE) ||
1803 (slave_dev->master != bond_dev)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001804 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001805 ": %s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 bond_dev->name, slave_dev->name);
1807 return -EINVAL;
1808 }
1809
1810 write_lock_bh(&bond->lock);
1811
1812 slave = bond_get_slave_by_dev(bond, slave_dev);
1813 if (!slave) {
1814 /* not a slave of this bond */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001815 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 ": %s: %s not enslaved\n",
1817 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001818 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return -EINVAL;
1820 }
1821
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001822 if (!bond->params.fail_over_mac) {
1823 mac_addr_differ = memcmp(bond_dev->dev_addr, slave->perm_hwaddr,
1824 ETH_ALEN);
1825 if (!mac_addr_differ && (bond->slave_cnt > 1))
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001826 pr_warning(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001827 ": %s: Warning: the permanent HWaddr of %s - "
Johannes Berge1749612008-10-27 15:59:26 -07001828 "%pM - is still in use by %s. "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001829 "Set the HWaddr of %s to a different address "
1830 "to avoid conflicts.\n",
1831 bond_dev->name, slave_dev->name,
Johannes Berge1749612008-10-27 15:59:26 -07001832 slave->perm_hwaddr,
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001833 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
1836 /* Inform AD package of unbinding of slave. */
1837 if (bond->params.mode == BOND_MODE_8023AD) {
1838 /* must be called before the slave is
1839 * detached from the list
1840 */
1841 bond_3ad_unbind_slave(slave);
1842 }
1843
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001844 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 ": %s: releasing %s interface %s\n",
1846 bond_dev->name,
1847 (slave->state == BOND_STATE_ACTIVE)
1848 ? "active" : "backup",
1849 slave_dev->name);
1850
1851 oldcurrent = bond->curr_active_slave;
1852
1853 bond->current_arp_slave = NULL;
1854
1855 /* release the slave from its bond */
1856 bond_detach_slave(bond, slave);
1857
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001858 bond_compute_features(bond);
1859
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001860 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001863 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Holger Eitzenberger58402052008-12-09 23:07:13 -08001866 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 /* Must be called only after the slave has been
1868 * detached from the list and the curr_active_slave
1869 * has been cleared (if our_slave == old_current),
1870 * but before a new active slave is selected.
1871 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001872 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001874 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001877 if (oldcurrent == slave) {
1878 /*
1879 * Note that we hold RTNL over this sequence, so there
1880 * is no concern that another slave add/remove event
1881 * will interfere.
1882 */
1883 write_unlock_bh(&bond->lock);
1884 read_lock(&bond->lock);
1885 write_lock_bh(&bond->curr_slave_lock);
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 bond_select_active_slave(bond);
1888
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001889 write_unlock_bh(&bond->curr_slave_lock);
1890 read_unlock(&bond->lock);
1891 write_lock_bh(&bond->lock);
1892 }
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001895 bond_set_carrier(bond);
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /* if the last slave was removed, zero the mac address
1898 * of the master so it will be set by the application
1899 * to the mac address of the first slave
1900 */
1901 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1902
1903 if (list_empty(&bond->vlan_list)) {
1904 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1905 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001906 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001907 ": %s: Warning: clearing HW address of %s while it "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 "still has VLANs.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001909 bond_dev->name, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001910 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001911 ": %s: When re-adding slaves, make sure the bond's "
1912 "HW address matches its VLANs'.\n",
1913 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1916 !bond_has_challenged_slaves(bond)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001917 pr_info(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001918 ": %s: last VLAN challenged slave %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 "left bond %s. VLAN blocking is removed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001920 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1922 }
1923
1924 write_unlock_bh(&bond->lock);
1925
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001926 /* must do this from outside any spinlocks */
1927 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 bond_del_vlans_from_slave(bond, slave_dev);
1930
1931 /* If the mode USES_PRIMARY, then we should only remove its
1932 * promisc and mc settings if it was the curr_active_slave, but that was
1933 * already taken care of above when we detached the slave
1934 */
1935 if (!USES_PRIMARY(bond->params.mode)) {
1936 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001937 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001941 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001945 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001947 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949
1950 netdev_set_master(slave_dev, NULL);
1951
1952 /* close slave before restoring its mac address */
1953 dev_close(slave_dev);
1954
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001955 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001956 /* restore original ("permanent") mac address */
1957 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1958 addr.sa_family = slave_dev->type;
1959 dev_set_mac_address(slave_dev, &addr);
1960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001962 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001963 IFF_SLAVE_INACTIVE | IFF_BONDING |
1964 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 kfree(slave);
1967
1968 return 0; /* deletion OK */
1969}
1970
1971/*
Moni Shouad90a1622007-10-09 19:43:43 -07001972* Destroy a bonding device.
1973* Must be under rtnl_lock when this function is called.
1974*/
Stephen Hemminger9e716262009-06-12 19:02:47 +00001975static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07001976{
Wang Chen244ef9b2008-12-03 21:14:04 -08001977 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07001978
Stephen Hemminger9e716262009-06-12 19:02:47 +00001979 bond_deinit(bond_dev);
1980 bond_destroy_sysfs_entry(bond);
1981
Jay Vosburgha434e432008-10-30 17:41:15 -07001982 if (bond->wq)
1983 destroy_workqueue(bond->wq);
1984
1985 netif_addr_lock_bh(bond_dev);
1986 bond_mc_list_destroy(bond);
1987 netif_addr_unlock_bh(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07001988}
1989
Moni Shouad90a1622007-10-09 19:43:43 -07001990/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001991* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07001992* Must be under rtnl_lock when this function is called.
1993*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001994int bond_release_and_destroy(struct net_device *bond_dev,
1995 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07001996{
Wang Chen454d7c92008-11-12 23:37:49 -08001997 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001998 int ret;
1999
2000 ret = bond_release(bond_dev, slave_dev);
2001 if ((ret == 0) && (bond->slave_cnt == 0)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002002 pr_info(DRV_NAME ": %s: destroying bond %s.\n",
Moni Shouad90a1622007-10-09 19:43:43 -07002003 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002004 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002005 }
2006 return ret;
2007}
2008
2009/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 * This function releases all slaves.
2011 */
2012static int bond_release_all(struct net_device *bond_dev)
2013{
Wang Chen454d7c92008-11-12 23:37:49 -08002014 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 struct slave *slave;
2016 struct net_device *slave_dev;
2017 struct sockaddr addr;
2018
2019 write_lock_bh(&bond->lock);
2020
Jay Vosburghff59c452006-03-27 13:27:43 -08002021 netif_carrier_off(bond_dev);
2022
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002023 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 bond->current_arp_slave = NULL;
2027 bond->primary_slave = NULL;
2028 bond_change_active_slave(bond, NULL);
2029
2030 while ((slave = bond->first_slave) != NULL) {
2031 /* Inform AD package of unbinding of slave
2032 * before slave is detached from the list.
2033 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002034 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 slave_dev = slave->dev;
2038 bond_detach_slave(bond, slave);
2039
Jay Vosburgh25433312008-01-17 16:24:59 -08002040 /* now that the slave is detached, unlock and perform
2041 * all the undo steps that should not be called from
2042 * within a lock.
2043 */
2044 write_unlock_bh(&bond->lock);
2045
Holger Eitzenberger58402052008-12-09 23:07:13 -08002046 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 /* must be called only after the slave
2048 * has been detached from the list
2049 */
2050 bond_alb_deinit_slave(bond, slave);
2051 }
2052
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002053 bond_compute_features(bond);
2054
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002055 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 bond_del_vlans_from_slave(bond, slave_dev);
2057
2058 /* If the mode USES_PRIMARY, then we should only remove its
2059 * promisc and mc settings if it was the curr_active_slave, but that was
2060 * already taken care of above when we detached the slave
2061 */
2062 if (!USES_PRIMARY(bond->params.mode)) {
2063 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002064 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002068 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002072 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002074 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
2076
2077 netdev_set_master(slave_dev, NULL);
2078
2079 /* close slave before restoring its mac address */
2080 dev_close(slave_dev);
2081
Jay Vosburghdd957c52007-10-09 19:57:24 -07002082 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002083 /* restore original ("permanent") mac address*/
2084 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2085 addr.sa_family = slave_dev->type;
2086 dev_set_mac_address(slave_dev, &addr);
2087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002089 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2090 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 kfree(slave);
2093
2094 /* re-acquire the lock before getting the next slave */
2095 write_lock_bh(&bond->lock);
2096 }
2097
2098 /* zero the mac address of the master so it will be
2099 * set by the application to the mac address of the
2100 * first slave
2101 */
2102 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2103
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002104 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002106 else {
2107 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08002108 ": %s: Warning: clearing HW address of %s while it "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 "still has VLANs.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08002110 bond_dev->name, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002111 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08002112 ": %s: When re-adding slaves, make sure the bond's "
2113 "HW address matches its VLANs'.\n",
2114 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
2116
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002117 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 ": %s: released all slaves\n",
2119 bond_dev->name);
2120
2121out:
2122 write_unlock_bh(&bond->lock);
2123
2124 return 0;
2125}
2126
2127/*
2128 * This function changes the active slave to slave <slave_dev>.
2129 * It returns -EINVAL in the following cases.
2130 * - <slave_dev> is not found in the list.
2131 * - There is not active slave now.
2132 * - <slave_dev> is already active.
2133 * - The link state of <slave_dev> is not BOND_LINK_UP.
2134 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002135 * In these cases, this function does nothing.
2136 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 */
2138static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2139{
Wang Chen454d7c92008-11-12 23:37:49 -08002140 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 struct slave *old_active = NULL;
2142 struct slave *new_active = NULL;
2143 int res = 0;
2144
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002145 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002149 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002152 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002154 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002156 read_unlock(&bond->curr_slave_lock);
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 new_active = bond_get_slave_by_dev(bond, slave_dev);
2159
2160 /*
2161 * Changing to the current active: do nothing; return success.
2162 */
2163 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002164 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return 0;
2166 }
2167
2168 if ((new_active) &&
2169 (old_active) &&
2170 (new_active->link == BOND_LINK_UP) &&
2171 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002172 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002174 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002175 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002178 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 return res;
2181}
2182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2184{
Wang Chen454d7c92008-11-12 23:37:49 -08002185 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 info->bond_mode = bond->params.mode;
2188 info->miimon = bond->params.miimon;
2189
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002190 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002192 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 return 0;
2195}
2196
2197static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2198{
Wang Chen454d7c92008-11-12 23:37:49 -08002199 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002201 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002203 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205 bond_for_each_slave(bond, slave, i) {
2206 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002207 res = 0;
2208 strcpy(info->slave_name, slave->dev->name);
2209 info->link = slave->link;
2210 info->state = slave->state;
2211 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 break;
2213 }
2214 }
2215
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002216 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Eric Dumazet689c96c2009-04-23 03:39:04 +00002218 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
2221/*-------------------------------- Monitoring -------------------------------*/
2222
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002223
2224static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002226 struct slave *slave;
2227 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002228 bool ignore_updelay;
2229
2230 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002233 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002235 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002238 case BOND_LINK_UP:
2239 if (link_state)
2240 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002242 slave->link = BOND_LINK_FAIL;
2243 slave->delay = bond->params.downdelay;
2244 if (slave->delay) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002245 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002246 ": %s: link status down for %s"
2247 "interface %s, disabling it in %d ms.\n",
2248 bond->dev->name,
2249 (bond->params.mode ==
2250 BOND_MODE_ACTIVEBACKUP) ?
2251 ((slave->state == BOND_STATE_ACTIVE) ?
2252 "active " : "backup ") : "",
2253 slave->dev->name,
2254 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002256 /*FALLTHRU*/
2257 case BOND_LINK_FAIL:
2258 if (link_state) {
2259 /*
2260 * recovered before downdelay expired
2261 */
2262 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 slave->jiffies = jiffies;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002264 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 ": %s: link status up again after %d "
2266 "ms for interface %s.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002267 bond->dev->name,
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002268 (bond->params.downdelay - slave->delay) *
2269 bond->params.miimon,
2270 slave->dev->name);
2271 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002273
2274 if (slave->delay <= 0) {
2275 slave->new_link = BOND_LINK_DOWN;
2276 commit++;
2277 continue;
2278 }
2279
2280 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002283 case BOND_LINK_DOWN:
2284 if (!link_state)
2285 continue;
2286
2287 slave->link = BOND_LINK_BACK;
2288 slave->delay = bond->params.updelay;
2289
2290 if (slave->delay) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002291 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002292 ": %s: link status up for "
2293 "interface %s, enabling it in %d ms.\n",
2294 bond->dev->name, slave->dev->name,
Jiri Pirko41f89102009-04-24 03:57:29 +00002295 ignore_updelay ? 0 :
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002296 bond->params.updelay *
2297 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002299 /*FALLTHRU*/
2300 case BOND_LINK_BACK:
2301 if (!link_state) {
2302 slave->link = BOND_LINK_DOWN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002303 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 ": %s: link status down again after %d "
2305 "ms for interface %s.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002306 bond->dev->name,
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002307 (bond->params.updelay - slave->delay) *
2308 bond->params.miimon,
2309 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002310
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002311 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002313
Jiri Pirko41f89102009-04-24 03:57:29 +00002314 if (ignore_updelay)
2315 slave->delay = 0;
2316
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002317 if (slave->delay <= 0) {
2318 slave->new_link = BOND_LINK_UP;
2319 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002320 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002321 continue;
2322 }
2323
2324 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002326 }
2327 }
2328
2329 return commit;
2330}
2331
2332static void bond_miimon_commit(struct bonding *bond)
2333{
2334 struct slave *slave;
2335 int i;
2336
2337 bond_for_each_slave(bond, slave, i) {
2338 switch (slave->new_link) {
2339 case BOND_LINK_NOCHANGE:
2340 continue;
2341
2342 case BOND_LINK_UP:
2343 slave->link = BOND_LINK_UP;
2344 slave->jiffies = jiffies;
2345
2346 if (bond->params.mode == BOND_MODE_8023AD) {
2347 /* prevent it from being the active one */
2348 slave->state = BOND_STATE_BACKUP;
2349 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2350 /* make it immediately active */
2351 slave->state = BOND_STATE_ACTIVE;
2352 } else if (slave != bond->primary_slave) {
2353 /* prevent it from being the active one */
2354 slave->state = BOND_STATE_BACKUP;
2355 }
2356
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002357 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002358 ": %s: link status definitely "
2359 "up for interface %s.\n",
2360 bond->dev->name, slave->dev->name);
2361
2362 /* notify ad that the link status has changed */
2363 if (bond->params.mode == BOND_MODE_8023AD)
2364 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2365
Holger Eitzenberger58402052008-12-09 23:07:13 -08002366 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002367 bond_alb_handle_link_change(bond, slave,
2368 BOND_LINK_UP);
2369
2370 if (!bond->curr_active_slave ||
2371 (slave == bond->primary_slave))
2372 goto do_failover;
2373
2374 continue;
2375
2376 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002377 if (slave->link_failure_count < UINT_MAX)
2378 slave->link_failure_count++;
2379
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002380 slave->link = BOND_LINK_DOWN;
2381
2382 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2383 bond->params.mode == BOND_MODE_8023AD)
2384 bond_set_slave_inactive_flags(slave);
2385
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002386 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002387 ": %s: link status definitely down for "
2388 "interface %s, disabling it\n",
2389 bond->dev->name, slave->dev->name);
2390
2391 if (bond->params.mode == BOND_MODE_8023AD)
2392 bond_3ad_handle_link_change(slave,
2393 BOND_LINK_DOWN);
2394
Jiri Pirkoae63e802009-05-27 05:42:36 +00002395 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002396 bond_alb_handle_link_change(bond, slave,
2397 BOND_LINK_DOWN);
2398
2399 if (slave == bond->curr_active_slave)
2400 goto do_failover;
2401
2402 continue;
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002405 pr_err(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002406 ": %s: invalid new link %d on slave %s\n",
2407 bond->dev->name, slave->new_link,
2408 slave->dev->name);
2409 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002411 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 }
2413
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002414do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002415 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002416 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002418 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002419 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002420
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002421 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002424/*
2425 * bond_mii_monitor
2426 *
2427 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002428 * inspection, then (if inspection indicates something needs to be done)
2429 * an acquisition of appropriate locks followed by a commit phase to
2430 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002431 */
2432void bond_mii_monitor(struct work_struct *work)
2433{
2434 struct bonding *bond = container_of(work, struct bonding,
2435 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002436
2437 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002438 if (bond->kill_timers)
2439 goto out;
2440
2441 if (bond->slave_cnt == 0)
2442 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002443
2444 if (bond->send_grat_arp) {
2445 read_lock(&bond->curr_slave_lock);
2446 bond_send_gratuitous_arp(bond);
2447 read_unlock(&bond->curr_slave_lock);
2448 }
2449
Brian Haley305d5522008-11-04 17:51:14 -08002450 if (bond->send_unsol_na) {
2451 read_lock(&bond->curr_slave_lock);
2452 bond_send_unsolicited_na(bond);
2453 read_unlock(&bond->curr_slave_lock);
2454 }
2455
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002456 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002457 read_unlock(&bond->lock);
2458 rtnl_lock();
2459 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002460
2461 bond_miimon_commit(bond);
2462
Jay Vosburgh56556622008-01-17 16:25:03 -08002463 read_unlock(&bond->lock);
2464 rtnl_unlock(); /* might sleep, hold no other locks */
2465 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002466 }
2467
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002468re_arm:
2469 if (bond->params.miimon)
2470 queue_delayed_work(bond->wq, &bond->mii_work,
2471 msecs_to_jiffies(bond->params.miimon));
2472out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002473 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002474}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002475
Al Virod3bb52b2007-08-22 20:06:58 -04002476static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002477{
2478 struct in_device *idev;
2479 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002480 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002481
2482 if (!dev)
2483 return 0;
2484
2485 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002486 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002487 if (!idev)
2488 goto out;
2489
2490 ifa = idev->ifa_list;
2491 if (!ifa)
2492 goto out;
2493
2494 addr = ifa->ifa_local;
2495out:
2496 rcu_read_unlock();
2497 return addr;
2498}
2499
Al Virod3bb52b2007-08-22 20:06:58 -04002500static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002501{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002502 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002503
2504 if (ip == bond->master_ip)
2505 return 1;
2506
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002507 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002508 if (ip == vlan->vlan_ip)
2509 return 1;
2510 }
2511
2512 return 0;
2513}
2514
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002515/*
2516 * We go to the (large) trouble of VLAN tagging ARP frames because
2517 * switches in VLAN mode (especially if ports are configured as
2518 * "native" to a VLAN) might not pass non-tagged frames.
2519 */
Al Virod3bb52b2007-08-22 20:06:58 -04002520static 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 -04002521{
2522 struct sk_buff *skb;
2523
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002524 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002525 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002526
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002527 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2528 NULL, slave_dev->dev_addr, NULL);
2529
2530 if (!skb) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002531 pr_err(DRV_NAME ": ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002532 return;
2533 }
2534 if (vlan_id) {
2535 skb = vlan_put_tag(skb, vlan_id);
2536 if (!skb) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002537 pr_err(DRV_NAME ": failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002538 return;
2539 }
2540 }
2541 arp_xmit(skb);
2542}
2543
2544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2546{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002547 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002548 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002549 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002550 struct net_device *vlan_dev;
2551 struct flowi fl;
2552 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Mitch Williams6b780562005-11-09 10:36:19 -08002554 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2555 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002556 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002557 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002558 if (list_empty(&bond->vlan_list)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002559 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002560 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2561 bond->master_ip, 0);
2562 continue;
2563 }
2564
2565 /*
2566 * If VLANs are configured, we do a route lookup to
2567 * determine which VLAN interface would be used, so we
2568 * can tag the ARP with the proper VLAN tag.
2569 */
2570 memset(&fl, 0, sizeof(fl));
2571 fl.fl4_dst = targets[i];
2572 fl.fl4_tos = RTO_ONLINK;
2573
Denis V. Lunevf2063512008-01-22 22:07:34 -08002574 rv = ip_route_output_key(&init_net, &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002575 if (rv) {
2576 if (net_ratelimit()) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002577 pr_warning(DRV_NAME
Harvey Harrison63779432008-10-31 00:56:00 -07002578 ": %s: no route to arp_ip_target %pI4\n",
2579 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002580 }
2581 continue;
2582 }
2583
2584 /*
2585 * This target is not on a VLAN
2586 */
2587 if (rt->u.dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002588 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002589 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002590 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2591 bond->master_ip, 0);
2592 continue;
2593 }
2594
2595 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002596 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002597 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002598 if (vlan_dev == rt->u.dst.dev) {
2599 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002600 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002601 vlan_dev->name, vlan_id);
2602 break;
2603 }
2604 }
2605
2606 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002607 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002608 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2609 vlan->vlan_ip, vlan_id);
2610 continue;
2611 }
2612
2613 if (net_ratelimit()) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002614 pr_warning(DRV_NAME
Harvey Harrison63779432008-10-31 00:56:00 -07002615 ": %s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2616 bond->dev->name, &fl.fl4_dst,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002617 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
2618 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002619 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002620 }
2621}
2622
2623/*
2624 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2625 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002626 *
2627 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002628 */
2629static void bond_send_gratuitous_arp(struct bonding *bond)
2630{
2631 struct slave *slave = bond->curr_active_slave;
2632 struct vlan_entry *vlan;
2633 struct net_device *vlan_dev;
2634
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002635 pr_debug("bond_send_grat_arp: bond %s slave %s\n", bond->dev->name,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002636 slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002637
2638 if (!slave || !bond->send_grat_arp ||
2639 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002640 return;
2641
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002642 bond->send_grat_arp--;
2643
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002644 if (bond->master_ip) {
2645 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002646 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002647 }
2648
2649 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002650 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002651 if (vlan->vlan_ip) {
2652 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2653 vlan->vlan_ip, vlan->vlan_id);
2654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 }
2656}
2657
Al Virod3bb52b2007-08-22 20:06:58 -04002658static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002659{
2660 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002661 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002662
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002663 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002664 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Harvey Harrison63779432008-10-31 00:56:00 -07002665 &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002666 if (sip == targets[i]) {
2667 if (bond_has_this_ip(bond, tip))
2668 slave->last_arp_rx = jiffies;
2669 return;
2670 }
2671 }
2672}
2673
2674static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2675{
2676 struct arphdr *arp;
2677 struct slave *slave;
2678 struct bonding *bond;
2679 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002680 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002681
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002682 if (dev_net(dev) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -07002683 goto out;
2684
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002685 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2686 goto out;
2687
Wang Chen454d7c92008-11-12 23:37:49 -08002688 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002689 read_lock(&bond->lock);
2690
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002691 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002692 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2693 orig_dev ? orig_dev->name : "NULL");
2694
2695 slave = bond_get_slave_by_dev(bond, orig_dev);
2696 if (!slave || !slave_do_arp_validate(bond, slave))
2697 goto out_unlock;
2698
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002699 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002700 goto out_unlock;
2701
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002702 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002703 if (arp->ar_hln != dev->addr_len ||
2704 skb->pkt_type == PACKET_OTHERHOST ||
2705 skb->pkt_type == PACKET_LOOPBACK ||
2706 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2707 arp->ar_pro != htons(ETH_P_IP) ||
2708 arp->ar_pln != 4)
2709 goto out_unlock;
2710
2711 arp_ptr = (unsigned char *)(arp + 1);
2712 arp_ptr += dev->addr_len;
2713 memcpy(&sip, arp_ptr, 4);
2714 arp_ptr += 4 + dev->addr_len;
2715 memcpy(&tip, arp_ptr, 4);
2716
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002717 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Harvey Harrison63779432008-10-31 00:56:00 -07002718 bond->dev->name, slave->dev->name, slave->state,
2719 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2720 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002721
2722 /*
2723 * Backup slaves won't see the ARP reply, but do come through
2724 * here for each ARP probe (so we swap the sip/tip to validate
2725 * the probe). In a "redundant switch, common router" type of
2726 * configuration, the ARP probe will (hopefully) travel from
2727 * the active, through one switch, the router, then the other
2728 * switch before reaching the backup.
2729 */
2730 if (slave->state == BOND_STATE_ACTIVE)
2731 bond_validate_arp(bond, slave, sip, tip);
2732 else
2733 bond_validate_arp(bond, slave, tip, sip);
2734
2735out_unlock:
2736 read_unlock(&bond->lock);
2737out:
2738 dev_kfree_skb(skb);
2739 return NET_RX_SUCCESS;
2740}
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742/*
2743 * this function is called regularly to monitor each slave's link
2744 * ensuring that traffic is being sent and received when arp monitoring
2745 * is used in load-balancing mode. if the adapter has been dormant, then an
2746 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2747 * arp monitoring in active backup mode.
2748 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002749void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002751 struct bonding *bond = container_of(work, struct bonding,
2752 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 struct slave *slave, *oldcurrent;
2754 int do_failover = 0;
2755 int delta_in_ticks;
2756 int i;
2757
2758 read_lock(&bond->lock);
2759
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002760 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002762 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002765 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 read_lock(&bond->curr_slave_lock);
2769 oldcurrent = bond->curr_active_slave;
2770 read_unlock(&bond->curr_slave_lock);
2771
2772 /* see if any of the previous devices are up now (i.e. they have
2773 * xmt and rcv traffic). the curr_active_slave does not come into
2774 * the picture unless it is null. also, slave->jiffies is not needed
2775 * here because we send an arp on each slave and give a slave as
2776 * long as it needs to get the tx/rx within the delta.
2777 * TODO: what about up/down delay in arp mode? it wasn't here before
2778 * so it can wait
2779 */
2780 bond_for_each_slave(bond, slave, i) {
2781 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002782 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002783 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 slave->link = BOND_LINK_UP;
2786 slave->state = BOND_STATE_ACTIVE;
2787
2788 /* primary_slave has no meaning in round-robin
2789 * mode. the window of a slave being up and
2790 * curr_active_slave being null after enslaving
2791 * is closed.
2792 */
2793 if (!oldcurrent) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002794 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 ": %s: link status definitely "
2796 "up for interface %s, ",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002797 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 slave->dev->name);
2799 do_failover = 1;
2800 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002801 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 ": %s: interface %s is now up\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002803 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 slave->dev->name);
2805 }
2806 }
2807 } else {
2808 /* slave->link == BOND_LINK_UP */
2809
2810 /* not all switches will respond to an arp request
2811 * when the source ip is 0, so don't take the link down
2812 * if we don't know our ip yet
2813 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002814 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002815 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817 slave->link = BOND_LINK_DOWN;
2818 slave->state = BOND_STATE_BACKUP;
2819
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002820 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002823 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 ": %s: interface %s is now down.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002825 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 slave->dev->name);
2827
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002828 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 }
2831 }
2832
2833 /* note: if switch is in round-robin mode, all links
2834 * must tx arp to ensure all links rx an arp - otherwise
2835 * links may oscillate or not come up at all; if switch is
2836 * in something like xor mode, there is nothing we can
2837 * do - all replies will be rx'ed on same link causing slaves
2838 * to be unstable during low/no traffic periods
2839 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002840 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 }
2843
2844 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002845 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
2847 bond_select_active_slave(bond);
2848
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002849 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 }
2851
2852re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002853 if (bond->params.arp_interval)
2854 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855out:
2856 read_unlock(&bond->lock);
2857}
2858
2859/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002860 * Called to inspect slaves for active-backup mode ARP monitor link state
2861 * changes. Sets new_link in slaves to specify what action should take
2862 * place for the slave. Returns 0 if no changes are found, >0 if changes
2863 * to link states must be committed.
2864 *
2865 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002867static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002870 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002873 slave->new_link = BOND_LINK_NOCHANGE;
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002876 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2877 delta_in_ticks)) {
2878 slave->new_link = BOND_LINK_UP;
2879 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002882 continue;
2883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002885 /*
2886 * Give slaves 2*delta after being enslaved or made
2887 * active. This avoids bouncing, as the last receive
2888 * times need a full ARP monitor cycle to be updated.
2889 */
2890 if (!time_after_eq(jiffies, slave->jiffies +
2891 2 * delta_in_ticks))
2892 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002894 /*
2895 * Backup slave is down if:
2896 * - No current_arp_slave AND
2897 * - more than 3*delta since last receive AND
2898 * - the bond has an IP address
2899 *
2900 * Note: a non-null current_arp_slave indicates
2901 * the curr_active_slave went down and we are
2902 * searching for a new one; under this condition
2903 * we only take the curr_active_slave down - this
2904 * gives each slave a chance to tx/rx traffic
2905 * before being taken out
2906 */
2907 if (slave->state == BOND_STATE_BACKUP &&
2908 !bond->current_arp_slave &&
2909 time_after(jiffies, slave_last_rx(bond, slave) +
2910 3 * delta_in_ticks)) {
2911 slave->new_link = BOND_LINK_DOWN;
2912 commit++;
2913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002915 /*
2916 * Active slave is down if:
2917 * - more than 2*delta since transmitting OR
2918 * - (more than 2*delta since receive AND
2919 * the bond has an IP address)
2920 */
2921 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002922 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002923 2 * delta_in_ticks) ||
2924 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2925 + 2 * delta_in_ticks)))) {
2926 slave->new_link = BOND_LINK_DOWN;
2927 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929 }
2930
2931 read_lock(&bond->curr_slave_lock);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002932
2933 /*
2934 * Trigger a commit if the primary option setting has changed.
2935 */
2936 if (bond->primary_slave &&
2937 (bond->primary_slave != bond->curr_active_slave) &&
2938 (bond->primary_slave->link == BOND_LINK_UP))
2939 commit++;
2940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 read_unlock(&bond->curr_slave_lock);
2942
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002943 return commit;
2944}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002946/*
2947 * Called to commit link state changes noted by inspection step of
2948 * active-backup mode ARP monitor.
2949 *
2950 * Called with RTNL and bond->lock for read.
2951 */
2952static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2953{
2954 struct slave *slave;
2955 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002957 bond_for_each_slave(bond, slave, i) {
2958 switch (slave->new_link) {
2959 case BOND_LINK_NOCHANGE:
2960 continue;
2961
2962 case BOND_LINK_UP:
2963 write_lock_bh(&bond->curr_slave_lock);
2964
2965 if (!bond->curr_active_slave &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002966 time_before_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002967 delta_in_ticks)) {
2968 slave->link = BOND_LINK_UP;
2969 bond_change_active_slave(bond, slave);
2970 bond->current_arp_slave = NULL;
2971
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002972 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002973 ": %s: %s is up and now the "
2974 "active interface\n",
2975 bond->dev->name, slave->dev->name);
2976
2977 } else if (bond->curr_active_slave != slave) {
2978 /* this slave has just come up but we
2979 * already have a current slave; this can
2980 * also happen if bond_enslave adds a new
2981 * slave that is up while we are searching
2982 * for a new slave
2983 */
2984 slave->link = BOND_LINK_UP;
2985 bond_set_slave_inactive_flags(slave);
2986 bond->current_arp_slave = NULL;
2987
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002988 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002989 ": %s: backup interface %s is now up\n",
2990 bond->dev->name, slave->dev->name);
2991 }
2992
2993 write_unlock_bh(&bond->curr_slave_lock);
2994
2995 break;
2996
2997 case BOND_LINK_DOWN:
2998 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003001 slave->link = BOND_LINK_DOWN;
3002
3003 if (slave == bond->curr_active_slave) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003004 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003005 ": %s: link status down for active "
3006 "interface %s, disabling it\n",
3007 bond->dev->name, slave->dev->name);
3008
3009 bond_set_slave_inactive_flags(slave);
3010
3011 write_lock_bh(&bond->curr_slave_lock);
3012
3013 bond_select_active_slave(bond);
3014 if (bond->curr_active_slave)
3015 bond->curr_active_slave->jiffies =
3016 jiffies;
3017
3018 write_unlock_bh(&bond->curr_slave_lock);
3019
3020 bond->current_arp_slave = NULL;
3021
3022 } else if (slave->state == BOND_STATE_BACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003023 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003024 ": %s: backup interface %s is now down\n",
3025 bond->dev->name, slave->dev->name);
3026
3027 bond_set_slave_inactive_flags(slave);
3028 }
3029 break;
3030
3031 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003032 pr_err(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003033 ": %s: impossible: new_link %d on slave %s\n",
3034 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 }
3038
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003039 /*
3040 * No race with changes to primary via sysfs, as we hold rtnl.
3041 */
3042 if (bond->primary_slave &&
3043 (bond->primary_slave != bond->curr_active_slave) &&
3044 (bond->primary_slave->link == BOND_LINK_UP)) {
3045 write_lock_bh(&bond->curr_slave_lock);
3046 bond_change_active_slave(bond, bond->primary_slave);
3047 write_unlock_bh(&bond->curr_slave_lock);
3048 }
3049
3050 bond_set_carrier(bond);
3051}
3052
3053/*
3054 * Send ARP probes for active-backup mode ARP monitor.
3055 *
3056 * Called with bond->lock held for read.
3057 */
3058static void bond_ab_arp_probe(struct bonding *bond)
3059{
3060 struct slave *slave;
3061 int i;
3062
3063 read_lock(&bond->curr_slave_lock);
3064
3065 if (bond->current_arp_slave && bond->curr_active_slave)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003066 pr_info(DRV_NAME "PROBE: c_arp %s && cas %s BAD\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003067 bond->current_arp_slave->dev->name,
3068 bond->curr_active_slave->dev->name);
3069
3070 if (bond->curr_active_slave) {
3071 bond_arp_send_all(bond, bond->curr_active_slave);
3072 read_unlock(&bond->curr_slave_lock);
3073 return;
3074 }
3075
3076 read_unlock(&bond->curr_slave_lock);
3077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 /* if we don't have a curr_active_slave, search for the next available
3079 * backup slave from the current_arp_slave and make it the candidate
3080 * for becoming the curr_active_slave
3081 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003082
3083 if (!bond->current_arp_slave) {
3084 bond->current_arp_slave = bond->first_slave;
3085 if (!bond->current_arp_slave)
3086 return;
3087 }
3088
3089 bond_set_slave_inactive_flags(bond->current_arp_slave);
3090
3091 /* search for next candidate */
3092 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3093 if (IS_UP(slave->dev)) {
3094 slave->link = BOND_LINK_BACK;
3095 bond_set_slave_active_flags(slave);
3096 bond_arp_send_all(bond, slave);
3097 slave->jiffies = jiffies;
3098 bond->current_arp_slave = slave;
3099 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 }
3101
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003102 /* if the link state is up at this point, we
3103 * mark it down - this can happen if we have
3104 * simultaneous link failures and
3105 * reselect_active_interface doesn't make this
3106 * one the current slave so it is still marked
3107 * up when it is actually down
3108 */
3109 if (slave->link == BOND_LINK_UP) {
3110 slave->link = BOND_LINK_DOWN;
3111 if (slave->link_failure_count < UINT_MAX)
3112 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003114 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003116 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003117 ": %s: backup interface %s is now down.\n",
3118 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 }
3120 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003121}
3122
3123void bond_activebackup_arp_mon(struct work_struct *work)
3124{
3125 struct bonding *bond = container_of(work, struct bonding,
3126 arp_work.work);
3127 int delta_in_ticks;
3128
3129 read_lock(&bond->lock);
3130
3131 if (bond->kill_timers)
3132 goto out;
3133
3134 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3135
3136 if (bond->slave_cnt == 0)
3137 goto re_arm;
3138
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003139 if (bond->send_grat_arp) {
3140 read_lock(&bond->curr_slave_lock);
3141 bond_send_gratuitous_arp(bond);
3142 read_unlock(&bond->curr_slave_lock);
3143 }
3144
Brian Haley305d5522008-11-04 17:51:14 -08003145 if (bond->send_unsol_na) {
3146 read_lock(&bond->curr_slave_lock);
3147 bond_send_unsolicited_na(bond);
3148 read_unlock(&bond->curr_slave_lock);
3149 }
3150
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003151 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3152 read_unlock(&bond->lock);
3153 rtnl_lock();
3154 read_lock(&bond->lock);
3155
3156 bond_ab_arp_commit(bond, delta_in_ticks);
3157
3158 read_unlock(&bond->lock);
3159 rtnl_unlock();
3160 read_lock(&bond->lock);
3161 }
3162
3163 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
3165re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003166 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003167 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168out:
3169 read_unlock(&bond->lock);
3170}
3171
3172/*------------------------------ proc/seq_file-------------------------------*/
3173
3174#ifdef CONFIG_PROC_FS
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003177 __acquires(&dev_base_lock)
3178 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179{
3180 struct bonding *bond = seq->private;
3181 loff_t off = 0;
3182 struct slave *slave;
3183 int i;
3184
3185 /* make sure the bond won't be taken away */
3186 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003187 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003189 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
3192 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003193 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 }
3196
3197 return NULL;
3198}
3199
3200static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3201{
3202 struct bonding *bond = seq->private;
3203 struct slave *slave = v;
3204
3205 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003206 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 slave = slave->next;
3210
3211 return (slave == bond->first_slave) ? NULL : slave;
3212}
3213
3214static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003215 __releases(&bond->lock)
3216 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
3218 struct bonding *bond = seq->private;
3219
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003220 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 read_unlock(&dev_base_lock);
3222}
3223
3224static void bond_info_show_master(struct seq_file *seq)
3225{
3226 struct bonding *bond = seq->private;
3227 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003228 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 read_lock(&bond->curr_slave_lock);
3231 curr = bond->curr_active_slave;
3232 read_unlock(&bond->curr_slave_lock);
3233
Jay Vosburghdd957c52007-10-09 19:57:24 -07003234 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 bond_mode_name(bond->params.mode));
3236
Jay Vosburghdd957c52007-10-09 19:57:24 -07003237 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3238 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003239 seq_printf(seq, " (fail_over_mac %s)",
3240 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003241
3242 seq_printf(seq, "\n");
3243
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003244 if (bond->params.mode == BOND_MODE_XOR ||
3245 bond->params.mode == BOND_MODE_8023AD) {
3246 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3247 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3248 bond->params.xmit_policy);
3249 }
3250
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 if (USES_PRIMARY(bond->params.mode)) {
3252 seq_printf(seq, "Primary Slave: %s\n",
Mitch Williams0f418b22005-11-09 10:35:21 -08003253 (bond->primary_slave) ?
3254 bond->primary_slave->dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
3256 seq_printf(seq, "Currently Active Slave: %s\n",
3257 (curr) ? curr->dev->name : "None");
3258 }
3259
Jay Vosburghff59c452006-03-27 13:27:43 -08003260 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3261 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3263 seq_printf(seq, "Up Delay (ms): %d\n",
3264 bond->params.updelay * bond->params.miimon);
3265 seq_printf(seq, "Down Delay (ms): %d\n",
3266 bond->params.downdelay * bond->params.miimon);
3267
Mitch Williams4756b022005-11-09 10:36:25 -08003268
3269 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003270 if (bond->params.arp_interval > 0) {
3271 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003272 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3273 bond->params.arp_interval);
3274
3275 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3276
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003277 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003278 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003279 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003280 if (printed)
3281 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003282 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003283 printed = 1;
3284 }
3285 seq_printf(seq, "\n");
3286 }
3287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 if (bond->params.mode == BOND_MODE_8023AD) {
3289 struct ad_info ad_info;
3290
3291 seq_puts(seq, "\n802.3ad info\n");
3292 seq_printf(seq, "LACP rate: %s\n",
3293 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003294 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3295 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
3297 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3298 seq_printf(seq, "bond %s has no active aggregator\n",
3299 bond->dev->name);
3300 } else {
3301 seq_printf(seq, "Active Aggregator Info:\n");
3302
3303 seq_printf(seq, "\tAggregator ID: %d\n",
3304 ad_info.aggregator_id);
3305 seq_printf(seq, "\tNumber of ports: %d\n",
3306 ad_info.ports);
3307 seq_printf(seq, "\tActor Key: %d\n",
3308 ad_info.actor_key);
3309 seq_printf(seq, "\tPartner Key: %d\n",
3310 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003311 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3312 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 }
3314 }
3315}
3316
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003317static void bond_info_show_slave(struct seq_file *seq,
3318 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319{
3320 struct bonding *bond = seq->private;
3321
3322 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3323 seq_printf(seq, "MII Status: %s\n",
3324 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami655096452006-09-22 21:53:08 -07003325 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 slave->link_failure_count);
3327
Johannes Berge1749612008-10-27 15:59:26 -07003328 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
3330 if (bond->params.mode == BOND_MODE_8023AD) {
3331 const struct aggregator *agg
3332 = SLAVE_AD_INFO(slave).port.aggregator;
3333
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003334 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 seq_printf(seq, "Aggregator ID: %d\n",
3336 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003337 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 }
3340}
3341
3342static int bond_info_seq_show(struct seq_file *seq, void *v)
3343{
3344 if (v == SEQ_START_TOKEN) {
3345 seq_printf(seq, "%s\n", version);
3346 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003347 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
3350 return 0;
3351}
3352
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003353static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 .start = bond_info_seq_start,
3355 .next = bond_info_seq_next,
3356 .stop = bond_info_seq_stop,
3357 .show = bond_info_seq_show,
3358};
3359
3360static int bond_info_open(struct inode *inode, struct file *file)
3361{
3362 struct seq_file *seq;
3363 struct proc_dir_entry *proc;
3364 int res;
3365
3366 res = seq_open(file, &bond_info_seq_ops);
3367 if (!res) {
3368 /* recover the pointer buried in proc_dir_entry data */
3369 seq = file->private_data;
3370 proc = PDE(inode);
3371 seq->private = proc->data;
3372 }
3373
3374 return res;
3375}
3376
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003377static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 .owner = THIS_MODULE,
3379 .open = bond_info_open,
3380 .read = seq_read,
3381 .llseek = seq_lseek,
3382 .release = seq_release,
3383};
3384
3385static int bond_create_proc_entry(struct bonding *bond)
3386{
3387 struct net_device *bond_dev = bond->dev;
3388
3389 if (bond_proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003390 bond->proc_entry = proc_create_data(bond_dev->name,
3391 S_IRUGO, bond_proc_dir,
3392 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003393 if (bond->proc_entry == NULL)
3394 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 ": Warning: Cannot create /proc/net/%s/%s\n",
3396 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003397 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 }
3400
3401 return 0;
3402}
3403
3404static void bond_remove_proc_entry(struct bonding *bond)
3405{
3406 if (bond_proc_dir && bond->proc_entry) {
3407 remove_proc_entry(bond->proc_file_name, bond_proc_dir);
3408 memset(bond->proc_file_name, 0, IFNAMSIZ);
3409 bond->proc_entry = NULL;
3410 }
3411}
3412
3413/* Create the bonding directory under /proc/net, if doesn't exist yet.
3414 * Caller must hold rtnl_lock.
3415 */
3416static void bond_create_proc_dir(void)
3417{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 if (!bond_proc_dir) {
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003419 bond_proc_dir = proc_mkdir(DRV_NAME, init_net.proc_net);
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003420 if (!bond_proc_dir)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003421 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 ": Warning: cannot create /proc/net/%s\n",
3423 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 }
3425}
3426
3427/* Destroy the bonding directory under /proc/net, if empty.
3428 * Caller must hold rtnl_lock.
3429 */
3430static void bond_destroy_proc_dir(void)
3431{
Alexey Dobriyan99b76232009-03-25 22:48:06 +03003432 if (bond_proc_dir) {
Eric W. Biederman457c4cb2007-09-12 12:01:34 +02003433 remove_proc_entry(DRV_NAME, init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 bond_proc_dir = NULL;
3435 }
3436}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003437
3438#else /* !CONFIG_PROC_FS */
3439
3440static int bond_create_proc_entry(struct bonding *bond)
3441{
3442}
3443
3444static void bond_remove_proc_entry(struct bonding *bond)
3445{
3446}
3447
3448static void bond_create_proc_dir(void)
3449{
3450}
3451
3452static void bond_destroy_proc_dir(void)
3453{
3454}
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456#endif /* CONFIG_PROC_FS */
3457
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459/*-------------------------- netdev event handling --------------------------*/
3460
3461/*
3462 * Change device name
3463 */
3464static int bond_event_changename(struct bonding *bond)
3465{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 bond_remove_proc_entry(bond);
3467 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003468
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003469 bond_destroy_sysfs_entry(bond);
3470 bond_create_sysfs_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 return NOTIFY_DONE;
3473}
3474
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003475static int bond_master_netdev_event(unsigned long event,
3476 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477{
Wang Chen454d7c92008-11-12 23:37:49 -08003478 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
3480 switch (event) {
3481 case NETDEV_CHANGENAME:
3482 return bond_event_changename(event_bond);
3483 case NETDEV_UNREGISTER:
Jay Vosburgh3b96c852008-01-17 16:25:00 -08003484 bond_release_all(event_bond->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 break;
3486 default:
3487 break;
3488 }
3489
3490 return NOTIFY_DONE;
3491}
3492
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003493static int bond_slave_netdev_event(unsigned long event,
3494 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495{
3496 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003497 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
3499 switch (event) {
3500 case NETDEV_UNREGISTER:
3501 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003502 if (bond->setup_by_slave)
3503 bond_release_and_destroy(bond_dev, slave_dev);
3504 else
3505 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 }
3507 break;
3508 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003509 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3510 struct slave *slave;
3511
3512 slave = bond_get_slave_by_dev(bond, slave_dev);
3513 if (slave) {
3514 u16 old_speed = slave->speed;
3515 u16 old_duplex = slave->duplex;
3516
3517 bond_update_speed_duplex(slave);
3518
3519 if (bond_is_lb(bond))
3520 break;
3521
3522 if (old_speed != slave->speed)
3523 bond_3ad_adapter_speed_changed(slave);
3524 if (old_duplex != slave->duplex)
3525 bond_3ad_adapter_duplex_changed(slave);
3526 }
3527 }
3528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 break;
3530 case NETDEV_DOWN:
3531 /*
3532 * ... Or is it this?
3533 */
3534 break;
3535 case NETDEV_CHANGEMTU:
3536 /*
3537 * TODO: Should slaves be allowed to
3538 * independently alter their MTU? For
3539 * an active-backup bond, slaves need
3540 * not be the same type of device, so
3541 * MTUs may vary. For other modes,
3542 * slaves arguably should have the
3543 * same MTUs. To do this, we'd need to
3544 * take over the slave's change_mtu
3545 * function for the duration of their
3546 * servitude.
3547 */
3548 break;
3549 case NETDEV_CHANGENAME:
3550 /*
3551 * TODO: handle changing the primary's name
3552 */
3553 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003554 case NETDEV_FEAT_CHANGE:
3555 bond_compute_features(bond);
3556 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 default:
3558 break;
3559 }
3560
3561 return NOTIFY_DONE;
3562}
3563
3564/*
3565 * bond_netdev_event: handle netdev notifier chain events.
3566 *
3567 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003568 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 * locks for us to safely manipulate the slave devices (RTNL lock,
3570 * dev_probe_lock).
3571 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003572static int bond_netdev_event(struct notifier_block *this,
3573 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574{
3575 struct net_device *event_dev = (struct net_device *)ptr;
3576
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003577 if (dev_net(event_dev) != &init_net)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +02003578 return NOTIFY_DONE;
3579
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003580 pr_debug("event_dev: %s, event: %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 (event_dev ? event_dev->name : "None"),
3582 event);
3583
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003584 if (!(event_dev->priv_flags & IFF_BONDING))
3585 return NOTIFY_DONE;
3586
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003588 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 return bond_master_netdev_event(event, event_dev);
3590 }
3591
3592 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003593 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 return bond_slave_netdev_event(event, event_dev);
3595 }
3596
3597 return NOTIFY_DONE;
3598}
3599
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003600/*
3601 * bond_inetaddr_event: handle inetaddr notifier chain events.
3602 *
3603 * We keep track of device IPs primarily to use as source addresses in
3604 * ARP monitor probes (rather than spewing out broadcasts all the time).
3605 *
3606 * We track one IP for the main device (if it has one), plus one per VLAN.
3607 */
3608static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3609{
3610 struct in_ifaddr *ifa = ptr;
3611 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003612 struct bonding *bond;
3613 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003614
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003615 if (dev_net(ifa->ifa_dev->dev) != &init_net)
Denis V. Lunev6133fb12008-02-28 20:46:17 -08003616 return NOTIFY_DONE;
3617
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003618 list_for_each_entry(bond, &bond_dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003619 if (bond->dev == event_dev) {
3620 switch (event) {
3621 case NETDEV_UP:
3622 bond->master_ip = ifa->ifa_local;
3623 return NOTIFY_OK;
3624 case NETDEV_DOWN:
3625 bond->master_ip = bond_glean_dev_ip(bond->dev);
3626 return NOTIFY_OK;
3627 default:
3628 return NOTIFY_DONE;
3629 }
3630 }
3631
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003632 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08003633 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003634 if (vlan_dev == event_dev) {
3635 switch (event) {
3636 case NETDEV_UP:
3637 vlan->vlan_ip = ifa->ifa_local;
3638 return NOTIFY_OK;
3639 case NETDEV_DOWN:
3640 vlan->vlan_ip =
3641 bond_glean_dev_ip(vlan_dev);
3642 return NOTIFY_OK;
3643 default:
3644 return NOTIFY_DONE;
3645 }
3646 }
3647 }
3648 }
3649 return NOTIFY_DONE;
3650}
3651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652static struct notifier_block bond_netdev_notifier = {
3653 .notifier_call = bond_netdev_event,
3654};
3655
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003656static struct notifier_block bond_inetaddr_notifier = {
3657 .notifier_call = bond_inetaddr_event,
3658};
3659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660/*-------------------------- Packet type handling ---------------------------*/
3661
3662/* register to receive lacpdus on a bond */
3663static void bond_register_lacpdu(struct bonding *bond)
3664{
3665 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3666
3667 /* initialize packet type */
3668 pk_type->type = PKT_TYPE_LACPDU;
3669 pk_type->dev = bond->dev;
3670 pk_type->func = bond_3ad_lacpdu_recv;
3671
3672 dev_add_pack(pk_type);
3673}
3674
3675/* unregister to receive lacpdus on a bond */
3676static void bond_unregister_lacpdu(struct bonding *bond)
3677{
3678 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3679}
3680
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003681void bond_register_arp(struct bonding *bond)
3682{
3683 struct packet_type *pt = &bond->arp_mon_pt;
3684
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003685 if (pt->type)
3686 return;
3687
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003688 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003689 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003690 pt->func = bond_arp_rcv;
3691 dev_add_pack(pt);
3692}
3693
3694void bond_unregister_arp(struct bonding *bond)
3695{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003696 struct packet_type *pt = &bond->arp_mon_pt;
3697
3698 dev_remove_pack(pt);
3699 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003700}
3701
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003702/*---------------------------- Hashing Policies -----------------------------*/
3703
3704/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003705 * Hash for the output device based upon layer 2 and layer 3 data. If
3706 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3707 */
3708static int bond_xmit_hash_policy_l23(struct sk_buff *skb,
3709 struct net_device *bond_dev, int count)
3710{
3711 struct ethhdr *data = (struct ethhdr *)skb->data;
3712 struct iphdr *iph = ip_hdr(skb);
3713
Brian Haleyf14c4e42008-09-02 10:08:08 -04003714 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003715 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
3716 (data->h_dest[5] ^ bond_dev->dev_addr[5])) % count;
3717 }
3718
3719 return (data->h_dest[5] ^ bond_dev->dev_addr[5]) % count;
3720}
3721
3722/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003723 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003724 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3725 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3726 */
3727static int bond_xmit_hash_policy_l34(struct sk_buff *skb,
3728 struct net_device *bond_dev, int count)
3729{
3730 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003731 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003732 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003733 int layer4_xor = 0;
3734
Brian Haleyf14c4e42008-09-02 10:08:08 -04003735 if (skb->protocol == htons(ETH_P_IP)) {
3736 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003737 (iph->protocol == IPPROTO_TCP ||
3738 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003739 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003740 }
3741 return (layer4_xor ^
3742 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3743
3744 }
3745
3746 return (data->h_dest[5] ^ bond_dev->dev_addr[5]) % count;
3747}
3748
3749/*
3750 * Hash for the output device based upon layer 2 data
3751 */
3752static int bond_xmit_hash_policy_l2(struct sk_buff *skb,
3753 struct net_device *bond_dev, int count)
3754{
3755 struct ethhdr *data = (struct ethhdr *)skb->data;
3756
3757 return (data->h_dest[5] ^ bond_dev->dev_addr[5]) % count;
3758}
3759
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760/*-------------------------- Device entry points ----------------------------*/
3761
3762static int bond_open(struct net_device *bond_dev)
3763{
Wang Chen454d7c92008-11-12 23:37:49 -08003764 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
3766 bond->kill_timers = 0;
3767
Holger Eitzenberger58402052008-12-09 23:07:13 -08003768 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 /* bond_alb_initialize must be called before the timer
3770 * is started.
3771 */
3772 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3773 /* something went wrong - fail the open operation */
3774 return -1;
3775 }
3776
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003777 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3778 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 }
3780
3781 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003782 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3783 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 }
3785
3786 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003787 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3788 INIT_DELAYED_WORK(&bond->arp_work,
3789 bond_activebackup_arp_mon);
3790 else
3791 INIT_DELAYED_WORK(&bond->arp_work,
3792 bond_loadbalance_arp_mon);
3793
3794 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003795 if (bond->params.arp_validate)
3796 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 }
3798
3799 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003800 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003801 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 /* register to receive LACPDUs */
3803 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003804 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 }
3806
3807 return 0;
3808}
3809
3810static int bond_close(struct net_device *bond_dev)
3811{
Wang Chen454d7c92008-11-12 23:37:49 -08003812 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
3814 if (bond->params.mode == BOND_MODE_8023AD) {
3815 /* Unregister the receive of LACPDUs */
3816 bond_unregister_lacpdu(bond);
3817 }
3818
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003819 if (bond->params.arp_validate)
3820 bond_unregister_arp(bond);
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 write_lock_bh(&bond->lock);
3823
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003824 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003825 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
3827 /* signal timers not to re-arm */
3828 bond->kill_timers = 1;
3829
3830 write_unlock_bh(&bond->lock);
3831
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003833 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 }
3835
3836 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003837 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 }
3839
3840 switch (bond->params.mode) {
3841 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003842 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 break;
3844 case BOND_MODE_TLB:
3845 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003846 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 break;
3848 default:
3849 break;
3850 }
3851
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Holger Eitzenberger58402052008-12-09 23:07:13 -08003853 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 /* Must be called only after all
3855 * slaves have been released
3856 */
3857 bond_alb_deinitialize(bond);
3858 }
3859
3860 return 0;
3861}
3862
3863static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3864{
Wang Chen454d7c92008-11-12 23:37:49 -08003865 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003866 struct net_device_stats *stats = &bond->stats;
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003867 struct net_device_stats local_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 struct slave *slave;
3869 int i;
3870
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003871 memset(&local_stats, 0, sizeof(struct net_device_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873 read_lock_bh(&bond->lock);
3874
3875 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003876 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3877
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003878 local_stats.rx_packets += sstats->rx_packets;
3879 local_stats.rx_bytes += sstats->rx_bytes;
3880 local_stats.rx_errors += sstats->rx_errors;
3881 local_stats.rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003883 local_stats.tx_packets += sstats->tx_packets;
3884 local_stats.tx_bytes += sstats->tx_bytes;
3885 local_stats.tx_errors += sstats->tx_errors;
3886 local_stats.tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003888 local_stats.multicast += sstats->multicast;
3889 local_stats.collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003891 local_stats.rx_length_errors += sstats->rx_length_errors;
3892 local_stats.rx_over_errors += sstats->rx_over_errors;
3893 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3894 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3895 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3896 local_stats.rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003898 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3899 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3900 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3901 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3902 local_stats.tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 }
3904
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003905 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
3906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 read_unlock_bh(&bond->lock);
3908
3909 return stats;
3910}
3911
3912static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3913{
3914 struct net_device *slave_dev = NULL;
3915 struct ifbond k_binfo;
3916 struct ifbond __user *u_binfo = NULL;
3917 struct ifslave k_sinfo;
3918 struct ifslave __user *u_sinfo = NULL;
3919 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 int res = 0;
3921
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003922 pr_debug("bond_ioctl: master=%s, cmd=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 bond_dev->name, cmd);
3924
3925 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 case SIOCGMIIPHY:
3927 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003928 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 mii->phy_id = 0;
3932 /* Fall Through */
3933 case SIOCGMIIREG:
3934 /*
3935 * We do this again just in case we were called by SIOCGMIIREG
3936 * instead of SIOCGMIIPHY.
3937 */
3938 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003939 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
3943 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003944 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003946 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003948 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003952 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 }
3954
3955 return 0;
3956 case BOND_INFO_QUERY_OLD:
3957 case SIOCBONDINFOQUERY:
3958 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3959
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003960 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
3963 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003964 if (res == 0 &&
3965 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3966 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967
3968 return res;
3969 case BOND_SLAVE_INFO_QUERY_OLD:
3970 case SIOCBONDSLAVEINFOQUERY:
3971 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3972
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003973 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
3976 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003977 if (res == 0 &&
3978 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3979 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981 return res;
3982 default:
3983 /* Go on */
3984 break;
3985 }
3986
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003987 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989
Eric W. Biederman881d9662007-09-17 11:56:21 -07003990 slave_dev = dev_get_by_name(&init_net, ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003992 pr_debug("slave_dev=%p: \n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003994 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003996 else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003997 pr_debug("slave_dev->name=%s: \n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 switch (cmd) {
3999 case BOND_ENSLAVE_OLD:
4000 case SIOCBONDENSLAVE:
4001 res = bond_enslave(bond_dev, slave_dev);
4002 break;
4003 case BOND_RELEASE_OLD:
4004 case SIOCBONDRELEASE:
4005 res = bond_release(bond_dev, slave_dev);
4006 break;
4007 case BOND_SETHWADDR_OLD:
4008 case SIOCBONDSETHWADDR:
4009 res = bond_sethwaddr(bond_dev, slave_dev);
4010 break;
4011 case BOND_CHANGE_ACTIVE_OLD:
4012 case SIOCBONDCHANGEACTIVE:
4013 res = bond_ioctl_change_active(bond_dev, slave_dev);
4014 break;
4015 default:
4016 res = -EOPNOTSUPP;
4017 }
4018
4019 dev_put(slave_dev);
4020 }
4021
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 return res;
4023}
4024
4025static void bond_set_multicast_list(struct net_device *bond_dev)
4026{
Wang Chen454d7c92008-11-12 23:37:49 -08004027 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 struct dev_mc_list *dmi;
4029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 /*
4031 * Do promisc before checking multicast_mode
4032 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004033 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004034 /*
4035 * FIXME: Need to handle the error when one of the multi-slaves
4036 * encounters error.
4037 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004040
4041 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004043
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
4045 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004046 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004047 /*
4048 * FIXME: Need to handle the error when one of the multi-slaves
4049 * encounters error.
4050 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004053
4054 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004056
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004058 read_lock(&bond->lock);
4059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 bond->flags = bond_dev->flags;
4061
4062 /* looking for addresses to add to slaves' mc list */
4063 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004064 if (!bond_mc_list_find_dmi(dmi, bond->mc_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 bond_mc_add(bond, dmi->dmi_addr, dmi->dmi_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 }
4067
4068 /* looking for addresses to delete from slaves' list */
4069 for (dmi = bond->mc_list; dmi; dmi = dmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004070 if (!bond_mc_list_find_dmi(dmi, bond_dev->mc_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 bond_mc_delete(bond, dmi->dmi_addr, dmi->dmi_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 }
4073
4074 /* save master's multicast list */
4075 bond_mc_list_destroy(bond);
4076 bond_mc_list_copy(bond_dev->mc_list, bond, GFP_ATOMIC);
4077
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004078 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079}
4080
Stephen Hemminger00829822008-11-20 20:14:53 -08004081static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4082{
4083 struct bonding *bond = netdev_priv(dev);
4084 struct slave *slave = bond->first_slave;
4085
4086 if (slave) {
4087 const struct net_device_ops *slave_ops
4088 = slave->dev->netdev_ops;
4089 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004090 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004091 }
4092 return 0;
4093}
4094
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095/*
4096 * Change the MTU of all of a master's slaves to match the master
4097 */
4098static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4099{
Wang Chen454d7c92008-11-12 23:37:49 -08004100 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 struct slave *slave, *stop_at;
4102 int res = 0;
4103 int i;
4104
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004105 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 (bond_dev ? bond_dev->name : "None"), new_mtu);
4107
4108 /* Can't hold bond->lock with bh disabled here since
4109 * some base drivers panic. On the other hand we can't
4110 * hold bond->lock without bh disabled because we'll
4111 * deadlock. The only solution is to rely on the fact
4112 * that we're under rtnl_lock here, and the slaves
4113 * list won't change. This doesn't solve the problem
4114 * of setting the slave's MTU while it is
4115 * transmitting, but the assumption is that the base
4116 * driver can handle that.
4117 *
4118 * TODO: figure out a way to safely iterate the slaves
4119 * list, but without holding a lock around the actual
4120 * call to the base driver.
4121 */
4122
4123 bond_for_each_slave(bond, slave, i) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004124 pr_debug("s %p s->p %p c_m %p\n", slave,
Stephen Hemminger53a32942009-01-06 10:41:56 -08004125 slave->prev, slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 res = dev_set_mtu(slave->dev, new_mtu);
4128
4129 if (res) {
4130 /* If we failed to set the slave's mtu to the new value
4131 * we must abort the operation even in ACTIVE_BACKUP
4132 * mode, because if we allow the backup slaves to have
4133 * different mtu values than the active slave we'll
4134 * need to change their mtu when doing a failover. That
4135 * means changing their mtu from timer context, which
4136 * is probably not a good idea.
4137 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004138 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 goto unwind;
4140 }
4141 }
4142
4143 bond_dev->mtu = new_mtu;
4144
4145 return 0;
4146
4147unwind:
4148 /* unwind from head to the slave that failed */
4149 stop_at = slave;
4150 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4151 int tmp_res;
4152
4153 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4154 if (tmp_res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004155 pr_debug("unwind err %d dev %s\n", tmp_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 slave->dev->name);
4157 }
4158 }
4159
4160 return res;
4161}
4162
4163/*
4164 * Change HW address
4165 *
4166 * Note that many devices must be down to change the HW address, and
4167 * downing the master releases all slaves. We can make bonds full of
4168 * bonding devices to test this, however.
4169 */
4170static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4171{
Wang Chen454d7c92008-11-12 23:37:49 -08004172 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 struct sockaddr *sa = addr, tmp_sa;
4174 struct slave *slave, *stop_at;
4175 int res = 0;
4176 int i;
4177
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004178 if (bond->params.mode == BOND_MODE_ALB)
4179 return bond_alb_set_mac_address(bond_dev, addr);
4180
4181
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004182 pr_debug("bond=%p, name=%s\n", bond, (bond_dev ? bond_dev->name : "None"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Jay Vosburghdd957c52007-10-09 19:57:24 -07004184 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004185 * If fail_over_mac is set to active, do nothing and return
4186 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004187 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004188 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004189 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004190
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004191 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
4194 /* Can't hold bond->lock with bh disabled here since
4195 * some base drivers panic. On the other hand we can't
4196 * hold bond->lock without bh disabled because we'll
4197 * deadlock. The only solution is to rely on the fact
4198 * that we're under rtnl_lock here, and the slaves
4199 * list won't change. This doesn't solve the problem
4200 * of setting the slave's hw address while it is
4201 * transmitting, but the assumption is that the base
4202 * driver can handle that.
4203 *
4204 * TODO: figure out a way to safely iterate the slaves
4205 * list, but without holding a lock around the actual
4206 * call to the base driver.
4207 */
4208
4209 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004210 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004211 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004213 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004215 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 goto unwind;
4217 }
4218
4219 res = dev_set_mac_address(slave->dev, addr);
4220 if (res) {
4221 /* TODO: consider downing the slave
4222 * and retry ?
4223 * User should expect communications
4224 * breakage anyway until ARP finish
4225 * updating, so...
4226 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004227 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 goto unwind;
4229 }
4230 }
4231
4232 /* success */
4233 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4234 return 0;
4235
4236unwind:
4237 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4238 tmp_sa.sa_family = bond_dev->type;
4239
4240 /* unwind from head to the slave that failed */
4241 stop_at = slave;
4242 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4243 int tmp_res;
4244
4245 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4246 if (tmp_res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004247 pr_debug("unwind err %d dev %s\n", tmp_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 slave->dev->name);
4249 }
4250 }
4251
4252 return res;
4253}
4254
4255static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4256{
Wang Chen454d7c92008-11-12 23:37:49 -08004257 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004259 int i, slave_no, res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
4261 read_lock(&bond->lock);
4262
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004263 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004266 /*
4267 * Concurrent TX may collide on rr_tx_counter; we accept that
4268 * as being rare enough not to justify using an atomic op here
4269 */
4270 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004272 bond_for_each_slave(bond, slave, i) {
4273 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004274 if (slave_no < 0)
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004275 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 }
4277
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004278 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 bond_for_each_slave_from(bond, slave, i, start_at) {
4280 if (IS_UP(slave->dev) &&
4281 (slave->link == BOND_LINK_UP) &&
4282 (slave->state == BOND_STATE_ACTIVE)) {
4283 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 break;
4285 }
4286 }
4287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288out:
4289 if (res) {
4290 /* no suitable interface, frame not sent */
4291 dev_kfree_skb(skb);
4292 }
4293 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004294 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295}
4296
John W. Linville075897c2005-09-28 17:50:53 -04004297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298/*
4299 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4300 * the bond has a usable interface.
4301 */
4302static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4303{
Wang Chen454d7c92008-11-12 23:37:49 -08004304 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 int res = 1;
4306
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 read_lock(&bond->lock);
4308 read_lock(&bond->curr_slave_lock);
4309
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004310 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
John W. Linville075897c2005-09-28 17:50:53 -04004313 if (!bond->curr_active_slave)
4314 goto out;
4315
John W. Linville075897c2005-09-28 17:50:53 -04004316 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4317
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004319 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 /* no suitable interface, frame not sent */
4321 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 read_unlock(&bond->curr_slave_lock);
4324 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004325 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326}
4327
4328/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004329 * In bond_xmit_xor() , we determine the output device by using a pre-
4330 * determined xmit_hash_policy(), If the selected device is not enabled,
4331 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 */
4333static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4334{
Wang Chen454d7c92008-11-12 23:37:49 -08004335 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 struct slave *slave, *start_at;
4337 int slave_no;
4338 int i;
4339 int res = 1;
4340
4341 read_lock(&bond->lock);
4342
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004343 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004346 slave_no = bond->xmit_hash_policy(skb, bond_dev, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
4348 bond_for_each_slave(bond, slave, i) {
4349 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004350 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 }
4353
4354 start_at = slave;
4355
4356 bond_for_each_slave_from(bond, slave, i, start_at) {
4357 if (IS_UP(slave->dev) &&
4358 (slave->link == BOND_LINK_UP) &&
4359 (slave->state == BOND_STATE_ACTIVE)) {
4360 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4361 break;
4362 }
4363 }
4364
4365out:
4366 if (res) {
4367 /* no suitable interface, frame not sent */
4368 dev_kfree_skb(skb);
4369 }
4370 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004371 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372}
4373
4374/*
4375 * in broadcast mode, we send everything to all usable interfaces.
4376 */
4377static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4378{
Wang Chen454d7c92008-11-12 23:37:49 -08004379 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 struct slave *slave, *start_at;
4381 struct net_device *tx_dev = NULL;
4382 int i;
4383 int res = 1;
4384
4385 read_lock(&bond->lock);
4386
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004387 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390 read_lock(&bond->curr_slave_lock);
4391 start_at = bond->curr_active_slave;
4392 read_unlock(&bond->curr_slave_lock);
4393
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004394 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 bond_for_each_slave_from(bond, slave, i, start_at) {
4398 if (IS_UP(slave->dev) &&
4399 (slave->link == BOND_LINK_UP) &&
4400 (slave->state == BOND_STATE_ACTIVE)) {
4401 if (tx_dev) {
4402 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4403 if (!skb2) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004404 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08004405 ": %s: Error: bond_xmit_broadcast(): "
4406 "skb_clone() failed\n",
4407 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 continue;
4409 }
4410
4411 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4412 if (res) {
4413 dev_kfree_skb(skb2);
4414 continue;
4415 }
4416 }
4417 tx_dev = slave->dev;
4418 }
4419 }
4420
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004421 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
4424out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004425 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 /* no suitable interface, frame not sent */
4427 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004428
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 /* frame sent to all suitable interfaces */
4430 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004431 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432}
4433
4434/*------------------------- Device initialization ---------------------------*/
4435
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004436static void bond_set_xmit_hash_policy(struct bonding *bond)
4437{
4438 switch (bond->params.xmit_policy) {
4439 case BOND_XMIT_POLICY_LAYER23:
4440 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4441 break;
4442 case BOND_XMIT_POLICY_LAYER34:
4443 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4444 break;
4445 case BOND_XMIT_POLICY_LAYER2:
4446 default:
4447 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4448 break;
4449 }
4450}
4451
Stephen Hemminger00829822008-11-20 20:14:53 -08004452static int bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4453{
4454 const struct bonding *bond = netdev_priv(dev);
4455
4456 switch (bond->params.mode) {
4457 case BOND_MODE_ROUNDROBIN:
4458 return bond_xmit_roundrobin(skb, dev);
4459 case BOND_MODE_ACTIVEBACKUP:
4460 return bond_xmit_activebackup(skb, dev);
4461 case BOND_MODE_XOR:
4462 return bond_xmit_xor(skb, dev);
4463 case BOND_MODE_BROADCAST:
4464 return bond_xmit_broadcast(skb, dev);
4465 case BOND_MODE_8023AD:
4466 return bond_3ad_xmit_xor(skb, dev);
4467 case BOND_MODE_ALB:
4468 case BOND_MODE_TLB:
4469 return bond_alb_xmit(skb, dev);
4470 default:
4471 /* Should never happen, mode already checked */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004472 pr_err(DRV_NAME ": %s: Error: Unknown bonding mode %d\n",
Stephen Hemminger00829822008-11-20 20:14:53 -08004473 dev->name, bond->params.mode);
4474 WARN_ON_ONCE(1);
4475 dev_kfree_skb(skb);
4476 return NETDEV_TX_OK;
4477 }
4478}
4479
4480
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481/*
4482 * set bond mode specific net device operations
4483 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004484void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004486 struct net_device *bond_dev = bond->dev;
4487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 switch (mode) {
4489 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 break;
4491 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 break;
4493 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004494 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 break;
4496 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 break;
4498 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004499 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004500 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004503 bond_set_master_alb_flags(bond);
4504 /* FALLTHRU */
4505 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 break;
4507 default:
4508 /* Should never happen, mode already checked */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004509 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08004510 ": %s: Error: Unknown bonding mode %d\n",
4511 bond_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 mode);
4513 break;
4514 }
4515}
4516
Jay Vosburgh217df672005-09-26 16:11:50 -07004517static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4518 struct ethtool_drvinfo *drvinfo)
4519{
4520 strncpy(drvinfo->driver, DRV_NAME, 32);
4521 strncpy(drvinfo->version, DRV_VERSION, 32);
4522 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4523}
4524
Jeff Garzik7282d492006-09-13 14:30:00 -04004525static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004526 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004527 .get_link = ethtool_op_get_link,
4528 .get_tx_csum = ethtool_op_get_tx_csum,
4529 .get_sg = ethtool_op_get_sg,
4530 .get_tso = ethtool_op_get_tso,
4531 .get_ufo = ethtool_op_get_ufo,
4532 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004533};
4534
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004535static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004536 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004537 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004538 .ndo_open = bond_open,
4539 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004540 .ndo_start_xmit = bond_start_xmit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004541 .ndo_get_stats = bond_get_stats,
4542 .ndo_do_ioctl = bond_do_ioctl,
4543 .ndo_set_multicast_list = bond_set_multicast_list,
4544 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004545 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004546 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004547 .ndo_vlan_rx_register = bond_vlan_rx_register,
4548 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4549 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
4550};
4551
Stephen Hemminger181470f2009-06-12 19:02:52 +00004552static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553{
Wang Chen454d7c92008-11-12 23:37:49 -08004554 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 /* initialize rwlocks */
4557 rwlock_init(&bond->lock);
4558 rwlock_init(&bond->curr_slave_lock);
4559
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004560 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
4562 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 bond->dev = bond_dev;
4564 INIT_LIST_HEAD(&bond->vlan_list);
4565
4566 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004567 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004568 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004569 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004570 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Stephen Hemminger9e716262009-06-12 19:02:47 +00004572 bond_dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574 /* Initialize the device options */
4575 bond_dev->tx_queue_len = 0;
4576 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004577 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004578 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4579
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004580 if (bond->params.arp_interval)
4581 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
4583 /* At first, we block adding VLANs. That's the only way to
4584 * prevent problems that occur when adding VLANs over an
4585 * empty bond. The block will be removed once non-challenged
4586 * slaves are enslaved.
4587 */
4588 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4589
Herbert Xu932ff272006-06-09 12:20:56 -07004590 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 * transmitting */
4592 bond_dev->features |= NETIF_F_LLTX;
4593
4594 /* By default, we declare the bond to be fully
4595 * VLAN hardware accelerated capable. Special
4596 * care is taken in the various xmit functions
4597 * when there are slaves that are not hw accel
4598 * capable
4599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4601 NETIF_F_HW_VLAN_RX |
4602 NETIF_F_HW_VLAN_FILTER);
4603
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604}
4605
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004606static void bond_work_cancel_all(struct bonding *bond)
4607{
4608 write_lock_bh(&bond->lock);
4609 bond->kill_timers = 1;
4610 write_unlock_bh(&bond->lock);
4611
4612 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4613 cancel_delayed_work(&bond->mii_work);
4614
4615 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4616 cancel_delayed_work(&bond->arp_work);
4617
4618 if (bond->params.mode == BOND_MODE_ALB &&
4619 delayed_work_pending(&bond->alb_work))
4620 cancel_delayed_work(&bond->alb_work);
4621
4622 if (bond->params.mode == BOND_MODE_8023AD &&
4623 delayed_work_pending(&bond->ad_work))
4624 cancel_delayed_work(&bond->ad_work);
4625}
4626
Jay Vosburgha434e432008-10-30 17:41:15 -07004627/* De-initialize device specific data.
4628 * Caller must hold rtnl_lock.
4629 */
4630static void bond_deinit(struct net_device *bond_dev)
4631{
Wang Chen454d7c92008-11-12 23:37:49 -08004632 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004633
4634 list_del(&bond->bond_list);
4635
4636 bond_work_cancel_all(bond);
4637
Jay Vosburgha434e432008-10-30 17:41:15 -07004638 bond_remove_proc_entry(bond);
Jay Vosburgha434e432008-10-30 17:41:15 -07004639}
4640
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641/* Unregister and free all bond devices.
4642 * Caller must hold rtnl_lock.
4643 */
4644static void bond_free_all(void)
4645{
4646 struct bonding *bond, *nxt;
4647
4648 list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list) {
4649 struct net_device *bond_dev = bond->dev;
4650
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004651 bond_work_cancel_all(bond);
jamal702987052006-09-22 21:54:37 -07004652 /* Release the bonded slaves */
4653 bond_release_all(bond_dev);
Stephen Hemminger9e716262009-06-12 19:02:47 +00004654 unregister_netdevice(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 }
4656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 bond_destroy_proc_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658}
4659
4660/*------------------------- Module initialization ---------------------------*/
4661
4662/*
4663 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004664 * number of the mode or its string name. A bit complicated because
4665 * some mode names are substrings of other names, and calls from sysfs
4666 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004668int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669{
Hannes Eder54b87322009-02-14 11:15:49 +00004670 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004671 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004672
Jay Vosburgha42e5342008-01-29 18:07:43 -08004673 for (p = (char *)buf; *p; p++)
4674 if (!(isdigit(*p) || isspace(*p)))
4675 break;
4676
4677 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004678 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004679 else
Hannes Eder54b87322009-02-14 11:15:49 +00004680 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004681
4682 if (!rv)
4683 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684
4685 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004686 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004688 if (strcmp(modestr, tbl[i].modename) == 0)
4689 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 }
4691
4692 return -1;
4693}
4694
4695static int bond_check_params(struct bond_params *params)
4696{
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004697 int arp_validate_value, fail_over_mac_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004698
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 /*
4700 * Convert string parameters.
4701 */
4702 if (mode) {
4703 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4704 if (bond_mode == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004705 pr_err(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 ": Error: Invalid bonding mode \"%s\"\n",
4707 mode == NULL ? "NULL" : mode);
4708 return -EINVAL;
4709 }
4710 }
4711
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004712 if (xmit_hash_policy) {
4713 if ((bond_mode != BOND_MODE_XOR) &&
4714 (bond_mode != BOND_MODE_8023AD)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004715 pr_info(DRV_NAME
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004716 ": xor_mode param is irrelevant in mode %s\n",
4717 bond_mode_name(bond_mode));
4718 } else {
4719 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4720 xmit_hashtype_tbl);
4721 if (xmit_hashtype == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004722 pr_err(DRV_NAME
4723 ": Error: Invalid xmit_hash_policy \"%s\"\n",
4724 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004725 xmit_hash_policy);
4726 return -EINVAL;
4727 }
4728 }
4729 }
4730
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 if (lacp_rate) {
4732 if (bond_mode != BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004733 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 ": lacp_rate param is irrelevant in mode %s\n",
4735 bond_mode_name(bond_mode));
4736 } else {
4737 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4738 if (lacp_fast == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004739 pr_err(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 ": Error: Invalid lacp rate \"%s\"\n",
4741 lacp_rate == NULL ? "NULL" : lacp_rate);
4742 return -EINVAL;
4743 }
4744 }
4745 }
4746
Jay Vosburghfd989c82008-11-04 17:51:16 -08004747 if (ad_select) {
4748 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4749 if (params->ad_select == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004750 pr_err(DRV_NAME
Jay Vosburghfd989c82008-11-04 17:51:16 -08004751 ": Error: Invalid ad_select \"%s\"\n",
4752 ad_select == NULL ? "NULL" : ad_select);
4753 return -EINVAL;
4754 }
4755
4756 if (bond_mode != BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004757 pr_warning(DRV_NAME
Jay Vosburghfd989c82008-11-04 17:51:16 -08004758 ": ad_select param only affects 802.3ad mode\n");
4759 }
4760 } else {
4761 params->ad_select = BOND_AD_STABLE;
4762 }
4763
Jay Vosburghb8a97872008-06-13 18:12:04 -07004764 if (max_bonds < 0 || max_bonds > INT_MAX) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004765 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 ": Warning: max_bonds (%d) not in range %d-%d, so it "
Mitch Williams4e0952c2005-11-09 10:34:57 -08004767 "was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
Jay Vosburghb8a97872008-06-13 18:12:04 -07004768 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 max_bonds = BOND_DEFAULT_MAX_BONDS;
4770 }
4771
4772 if (miimon < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004773 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 ": Warning: miimon module parameter (%d), "
4775 "not in range 0-%d, so it was reset to %d\n",
4776 miimon, INT_MAX, BOND_LINK_MON_INTERV);
4777 miimon = BOND_LINK_MON_INTERV;
4778 }
4779
4780 if (updelay < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004781 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782 ": Warning: updelay module parameter (%d), "
4783 "not in range 0-%d, so it was reset to 0\n",
4784 updelay, INT_MAX);
4785 updelay = 0;
4786 }
4787
4788 if (downdelay < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004789 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 ": Warning: downdelay module parameter (%d), "
4791 "not in range 0-%d, so it was reset to 0\n",
4792 downdelay, INT_MAX);
4793 downdelay = 0;
4794 }
4795
4796 if ((use_carrier != 0) && (use_carrier != 1)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004797 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 ": Warning: use_carrier module parameter (%d), "
4799 "not of valid value (0/1), so it was set to 1\n",
4800 use_carrier);
4801 use_carrier = 1;
4802 }
4803
Moni Shoua7893b242008-05-17 21:10:12 -07004804 if (num_grat_arp < 0 || num_grat_arp > 255) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004805 pr_warning(DRV_NAME
Moni Shoua7893b242008-05-17 21:10:12 -07004806 ": Warning: num_grat_arp (%d) not in range 0-255 so it "
4807 "was reset to 1 \n", num_grat_arp);
4808 num_grat_arp = 1;
4809 }
4810
Brian Haley305d5522008-11-04 17:51:14 -08004811 if (num_unsol_na < 0 || num_unsol_na > 255) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004812 pr_warning(DRV_NAME
Brian Haley305d5522008-11-04 17:51:14 -08004813 ": Warning: num_unsol_na (%d) not in range 0-255 so it "
4814 "was reset to 1 \n", num_unsol_na);
4815 num_unsol_na = 1;
4816 }
4817
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 /* reset values for 802.3ad */
4819 if (bond_mode == BOND_MODE_8023AD) {
4820 if (!miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004821 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 ": Warning: miimon must be specified, "
4823 "otherwise bonding will not detect link "
4824 "failure, speed and duplex which are "
4825 "essential for 802.3ad operation\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004826 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827 miimon = 100;
4828 }
4829 }
4830
4831 /* reset values for TLB/ALB */
4832 if ((bond_mode == BOND_MODE_TLB) ||
4833 (bond_mode == BOND_MODE_ALB)) {
4834 if (!miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004835 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 ": Warning: miimon must be specified, "
4837 "otherwise bonding will not detect link "
4838 "failure and link speed which are essential "
4839 "for TLB/ALB load balancing\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004840 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 miimon = 100;
4842 }
4843 }
4844
4845 if (bond_mode == BOND_MODE_ALB) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004846 pr_notice(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 ": In ALB mode you might experience client "
4848 "disconnections upon reconnection of a link if the "
4849 "bonding module updelay parameter (%d msec) is "
4850 "incompatible with the forwarding delay time of the "
4851 "switch\n",
4852 updelay);
4853 }
4854
4855 if (!miimon) {
4856 if (updelay || downdelay) {
4857 /* just warn the user the up/down delay will have
4858 * no effect since miimon is zero...
4859 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004860 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861 ": Warning: miimon module parameter not set "
4862 "and updelay (%d) or downdelay (%d) module "
4863 "parameter is set; updelay and downdelay have "
4864 "no effect unless miimon is set\n",
4865 updelay, downdelay);
4866 }
4867 } else {
4868 /* don't allow arp monitoring */
4869 if (arp_interval) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004870 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 ": Warning: miimon (%d) and arp_interval (%d) "
4872 "can't be used simultaneously, disabling ARP "
4873 "monitoring\n",
4874 miimon, arp_interval);
4875 arp_interval = 0;
4876 }
4877
4878 if ((updelay % miimon) != 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004879 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 ": Warning: updelay (%d) is not a multiple "
4881 "of miimon (%d), updelay rounded to %d ms\n",
4882 updelay, miimon, (updelay / miimon) * miimon);
4883 }
4884
4885 updelay /= miimon;
4886
4887 if ((downdelay % miimon) != 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004888 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 ": Warning: downdelay (%d) is not a multiple "
4890 "of miimon (%d), downdelay rounded to %d ms\n",
4891 downdelay, miimon,
4892 (downdelay / miimon) * miimon);
4893 }
4894
4895 downdelay /= miimon;
4896 }
4897
4898 if (arp_interval < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004899 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 ": Warning: arp_interval module parameter (%d) "
4901 ", not in range 0-%d, so it was reset to %d\n",
4902 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
4903 arp_interval = BOND_LINK_ARP_INTERV;
4904 }
4905
4906 for (arp_ip_count = 0;
4907 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4908 arp_ip_count++) {
4909 /* not complete check, but should be good enough to
4910 catch mistakes */
4911 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004912 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913 ": Warning: bad arp_ip_target module parameter "
4914 "(%s), ARP monitoring will not be performed\n",
4915 arp_ip_target[arp_ip_count]);
4916 arp_interval = 0;
4917 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004918 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 arp_target[arp_ip_count] = ip;
4920 }
4921 }
4922
4923 if (arp_interval && !arp_ip_count) {
4924 /* don't allow arping if no arp_ip_target given... */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004925 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 ": Warning: arp_interval module parameter (%d) "
4927 "specified without providing an arp_ip_target "
4928 "parameter, arp_interval was reset to 0\n",
4929 arp_interval);
4930 arp_interval = 0;
4931 }
4932
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004933 if (arp_validate) {
4934 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004935 pr_err(DRV_NAME
4936 ": arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004937 return -EINVAL;
4938 }
4939 if (!arp_interval) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004940 pr_err(DRV_NAME
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004941 ": arp_validate requires arp_interval\n");
4942 return -EINVAL;
4943 }
4944
4945 arp_validate_value = bond_parse_parm(arp_validate,
4946 arp_validate_tbl);
4947 if (arp_validate_value == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004948 pr_err(DRV_NAME
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004949 ": Error: invalid arp_validate \"%s\"\n",
4950 arp_validate == NULL ? "NULL" : arp_validate);
4951 return -EINVAL;
4952 }
4953 } else
4954 arp_validate_value = 0;
4955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 if (miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004957 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958 ": MII link monitoring set to %d ms\n",
4959 miimon);
4960 } else if (arp_interval) {
4961 int i;
4962
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004963 pr_info(DRV_NAME ": ARP monitoring set to %d ms,"
4964 " validate %s, with %d target(s):",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004965 arp_interval,
4966 arp_validate_tbl[arp_validate_value].modename,
4967 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
4969 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004970 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004972 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
Jay Vosburghb8a97872008-06-13 18:12:04 -07004974 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 /* miimon and arp_interval not set, we need one so things
4976 * work as expected, see bonding.txt for details
4977 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004978 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 ": Warning: either miimon or arp_interval and "
4980 "arp_ip_target module parameters must be specified, "
4981 "otherwise bonding will not detect link failures! see "
4982 "bonding.txt for details.\n");
4983 }
4984
4985 if (primary && !USES_PRIMARY(bond_mode)) {
4986 /* currently, using a primary only makes sense
4987 * in active backup, TLB or ALB modes
4988 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004989 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 ": Warning: %s primary device specified but has no "
4991 "effect in %s mode\n",
4992 primary, bond_mode_name(bond_mode));
4993 primary = NULL;
4994 }
4995
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004996 if (fail_over_mac) {
4997 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4998 fail_over_mac_tbl);
4999 if (fail_over_mac_value == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005000 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005001 ": Error: invalid fail_over_mac \"%s\"\n",
5002 arp_validate == NULL ? "NULL" : arp_validate);
5003 return -EINVAL;
5004 }
5005
5006 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005007 pr_warning(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005008 ": Warning: fail_over_mac only affects "
5009 "active-backup mode.\n");
5010 } else {
5011 fail_over_mac_value = BOND_FOM_NONE;
5012 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07005013
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 /* fill params struct with the proper values */
5015 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04005016 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07005018 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08005019 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07005021 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 params->updelay = updelay;
5023 params->downdelay = downdelay;
5024 params->use_carrier = use_carrier;
5025 params->lacp_fast = lacp_fast;
5026 params->primary[0] = 0;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07005027 params->fail_over_mac = fail_over_mac_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
5029 if (primary) {
5030 strncpy(params->primary, primary, IFNAMSIZ);
5031 params->primary[IFNAMSIZ - 1] = 0;
5032 }
5033
5034 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5035
5036 return 0;
5037}
5038
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005039static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005040static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005041
David S. Millere8a04642008-07-17 00:34:19 -07005042static void bond_set_lockdep_class_one(struct net_device *dev,
5043 struct netdev_queue *txq,
5044 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005045{
5046 lockdep_set_class(&txq->_xmit_lock,
5047 &bonding_netdev_xmit_lock_key);
5048}
5049
5050static void bond_set_lockdep_class(struct net_device *dev)
5051{
David S. Millercf508b12008-07-22 14:16:42 -07005052 lockdep_set_class(&dev->addr_list_lock,
5053 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005054 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005055}
5056
Stephen Hemminger181470f2009-06-12 19:02:52 +00005057/*
5058 * Called from registration process
5059 */
5060static int bond_init(struct net_device *bond_dev)
5061{
5062 struct bonding *bond = netdev_priv(bond_dev);
5063
5064 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5065
5066 bond->wq = create_singlethread_workqueue(bond_dev->name);
5067 if (!bond->wq)
5068 return -ENOMEM;
5069
5070 bond_set_lockdep_class(bond_dev);
5071
5072 netif_carrier_off(bond_dev);
5073
5074 bond_create_proc_entry(bond);
5075 list_add_tail(&bond->bond_list, &bond_dev_list);
5076
5077 return 0;
5078}
5079
Mitch Williamsdfe60392005-11-09 10:36:04 -08005080/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005081 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005082 * Caller must NOT hold rtnl_lock; we need to release it here before we
5083 * set up our sysfs entries.
5084 */
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00005085int bond_create(const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005086{
5087 struct net_device *bond_dev;
5088 int res;
5089
5090 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005091 /* Check to see if the bond already exists. */
Stephen Hemminger373500d2009-06-12 19:02:50 +00005092 /* FIXME: pass netns from caller */
5093 if (name && __dev_get_by_name(&init_net, name)) {
5094 pr_err(DRV_NAME ": cannot add bond %s; already exists\n",
5095 name);
5096 res = -EEXIST;
5097 goto out_rtnl;
Jay Vosburgh4fe47632008-01-29 18:07:45 -08005098 }
Jay Vosburgh027ea042008-01-17 16:25:02 -08005099
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005100 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
Stephen Hemminger181470f2009-06-12 19:02:52 +00005101 bond_setup);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005102 if (!bond_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005103 pr_err(DRV_NAME ": %s: eek! can't alloc netdev!\n",
Mitch Williamsdfe60392005-11-09 10:36:04 -08005104 name);
5105 res = -ENOMEM;
5106 goto out_rtnl;
5107 }
5108
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005109 if (!name) {
5110 res = dev_alloc_name(bond_dev, "bond%d");
5111 if (res < 0)
5112 goto out_netdev;
5113 }
5114
Mitch Williamsdfe60392005-11-09 10:36:04 -08005115 res = register_netdevice(bond_dev);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005116 if (res < 0)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005117 goto out_bond;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005118
Wang Chen454d7c92008-11-12 23:37:49 -08005119 res = bond_create_sysfs_entry(netdev_priv(bond_dev));
Jiri Pirko1363d9b2009-05-01 15:35:28 -07005120 if (res < 0)
5121 goto out_unreg;
Jay Vosburgh09c89272007-01-19 18:15:38 -08005122
Stephen Hemminger7e083842009-06-12 19:02:46 +00005123 rtnl_unlock();
Jay Vosburgh09c89272007-01-19 18:15:38 -08005124 return 0;
5125
Jiri Pirko1363d9b2009-05-01 15:35:28 -07005126out_unreg:
Jiri Pirko1363d9b2009-05-01 15:35:28 -07005127 unregister_netdevice(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005128out_bond:
5129 bond_deinit(bond_dev);
5130out_netdev:
5131 free_netdev(bond_dev);
5132out_rtnl:
5133 rtnl_unlock();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005134 return res;
5135}
5136
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137static int __init bonding_init(void)
5138{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 int i;
5140 int res;
5141
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005142 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
Mitch Williamsdfe60392005-11-09 10:36:04 -08005144 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005145 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005146 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148 bond_create_proc_dir();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 for (i = 0; i < max_bonds; i++) {
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00005151 res = bond_create(NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005152 if (res)
5153 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 }
5155
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005156 res = bond_create_sysfs();
5157 if (res)
5158 goto err;
5159
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005161 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005162 bond_register_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163
Mitch Williamsdfe60392005-11-09 10:36:04 -08005164 goto out;
5165err:
Florin Malita40abc272005-09-18 00:24:12 -07005166 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 bond_free_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 rtnl_unlock();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005169out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 return res;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005171
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172}
5173
5174static void __exit bonding_exit(void)
5175{
5176 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005177 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005178 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005180 bond_destroy_sysfs();
5181
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 rtnl_lock();
5183 bond_free_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 rtnl_unlock();
5185}
5186
5187module_init(bonding_init);
5188module_exit(bonding_exit);
5189MODULE_LICENSE("GPL");
5190MODULE_VERSION(DRV_VERSION);
5191MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5192MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");