blob: af9b9c4eb496eb5d6200cca8bbf57cee36f23b10 [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>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000078#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include "bonding.h"
80#include "bond_3ad.h"
81#include "bond_alb.h"
82
83/*---------------------------- Module parameters ----------------------------*/
84
85/* monitor all links that often (in milliseconds). <=0 disables monitoring */
86#define BOND_LINK_MON_INTERV 0
87#define BOND_LINK_ARP_INTERV 0
88
89static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Moni Shoua7893b242008-05-17 21:10:12 -070090static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080091static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000093static int updelay;
94static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000096static char *mode;
97static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +000098static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000099static char *lacp_rate;
100static char *ad_select;
101static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000103static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
104static char *arp_validate;
105static char *fail_over_mac;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000106static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108module_param(max_bonds, int, 0);
109MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Moni Shoua7893b242008-05-17 21:10:12 -0700110module_param(num_grat_arp, int, 0644);
111MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800112module_param(num_unsol_na, int, 0644);
113MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114module_param(miimon, int, 0);
115MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
116module_param(updelay, int, 0);
117MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
118module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800119MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
120 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800122MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
123 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800125MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
126 "1 for active-backup, 2 for balance-xor, "
127 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
128 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129module_param(primary, charp, 0);
130MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000131module_param(primary_reselect, charp, 0);
132MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
133 "once it comes up; "
134 "0 for always (default), "
135 "1 for only if speed of primary is "
136 "better, "
137 "2 for only on active slave "
138 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800140MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
141 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800142module_param(ad_select, charp, 0);
143MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400144module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800145MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
146 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147module_param(arp_interval, int, 0);
148MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
149module_param_array(arp_ip_target, charp, NULL, 0);
150MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700151module_param(arp_validate, charp, 0);
152MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700153module_param(fail_over_mac, charp, 0);
154MODULE_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 -0700155
156/*----------------------------- Global variables ----------------------------*/
157
Arjan van de Venf71e1302006-03-03 21:33:57 -0500158static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
160
Eric Dumazetf99189b2009-11-17 10:42:49 +0000161int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000163static __be32 arp_target[BOND_MAX_ARP_TARGETS];
164static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000166static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
167static int lacp_fast;
Jay Vosburgh217df672005-09-26 16:11:50 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800170const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{ "slow", AD_LACP_SLOW},
172{ "fast", AD_LACP_FAST},
173{ NULL, -1},
174};
175
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800176const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{ "balance-rr", BOND_MODE_ROUNDROBIN},
178{ "active-backup", BOND_MODE_ACTIVEBACKUP},
179{ "balance-xor", BOND_MODE_XOR},
180{ "broadcast", BOND_MODE_BROADCAST},
181{ "802.3ad", BOND_MODE_8023AD},
182{ "balance-tlb", BOND_MODE_TLB},
183{ "balance-alb", BOND_MODE_ALB},
184{ NULL, -1},
185};
186
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800187const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400188{ "layer2", BOND_XMIT_POLICY_LAYER2},
189{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800190{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400191{ NULL, -1},
192};
193
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800194const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700195{ "none", BOND_ARP_VALIDATE_NONE},
196{ "active", BOND_ARP_VALIDATE_ACTIVE},
197{ "backup", BOND_ARP_VALIDATE_BACKUP},
198{ "all", BOND_ARP_VALIDATE_ALL},
199{ NULL, -1},
200};
201
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800202const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700203{ "none", BOND_FOM_NONE},
204{ "active", BOND_FOM_ACTIVE},
205{ "follow", BOND_FOM_FOLLOW},
206{ NULL, -1},
207};
208
Jiri Pirkoa5499522009-09-25 03:28:09 +0000209const struct bond_parm_tbl pri_reselect_tbl[] = {
210{ "always", BOND_PRI_RESELECT_ALWAYS},
211{ "better", BOND_PRI_RESELECT_BETTER},
212{ "failure", BOND_PRI_RESELECT_FAILURE},
213{ NULL, -1},
214};
215
Jay Vosburghfd989c82008-11-04 17:51:16 -0800216struct bond_parm_tbl ad_select_tbl[] = {
217{ "stable", BOND_AD_STABLE},
218{ "bandwidth", BOND_AD_BANDWIDTH},
219{ "count", BOND_AD_COUNT},
220{ NULL, -1},
221};
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*-------------------------- Forward declarations ---------------------------*/
224
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400225static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000226static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000227static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229/*---------------------------- General routines -----------------------------*/
230
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700231static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800233 static const char *names[] = {
234 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
235 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
236 [BOND_MODE_XOR] = "load balancing (xor)",
237 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000238 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800239 [BOND_MODE_TLB] = "transmit load balancing",
240 [BOND_MODE_ALB] = "adaptive load balancing",
241 };
242
243 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800245
246 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*---------------------------------- VLAN -----------------------------------*/
250
251/**
252 * bond_add_vlan - add a new vlan id on bond
253 * @bond: bond that got the notification
254 * @vlan_id: the vlan id to add
255 *
256 * Returns -ENOMEM if allocation failed.
257 */
258static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
259{
260 struct vlan_entry *vlan;
261
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800262 pr_debug("bond: %s, vlan id %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000263 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Brian Haley305d5522008-11-04 17:51:14 -0800265 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000266 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 INIT_LIST_HEAD(&vlan->vlan_list);
270 vlan->vlan_id = vlan_id;
271
272 write_lock_bh(&bond->lock);
273
274 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
275
276 write_unlock_bh(&bond->lock);
277
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800278 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 return 0;
281}
282
283/**
284 * bond_del_vlan - delete a vlan id from bond
285 * @bond: bond that got the notification
286 * @vlan_id: the vlan id to delete
287 *
288 * returns -ENODEV if @vlan_id was not found in @bond.
289 */
290static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
291{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700292 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 int res = -ENODEV;
294
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800295 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 write_lock_bh(&bond->lock);
298
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700299 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (vlan->vlan_id == vlan_id) {
301 list_del(&vlan->vlan_list);
302
Holger Eitzenberger58402052008-12-09 23:07:13 -0800303 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800306 pr_debug("removed VLAN ID %d from bond %s\n", vlan_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 bond->dev->name);
308
309 kfree(vlan);
310
311 if (list_empty(&bond->vlan_list) &&
312 (bond->slave_cnt == 0)) {
313 /* Last VLAN removed and no slaves, so
314 * restore block on adding VLANs. This will
315 * be removed once new slaves that are not
316 * VLAN challenged will be added.
317 */
318 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
319 }
320
321 res = 0;
322 goto out;
323 }
324 }
325
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800326 pr_debug("couldn't find VLAN ID %d in bond %s\n", vlan_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 bond->dev->name);
328
329out:
330 write_unlock_bh(&bond->lock);
331 return res;
332}
333
334/**
335 * bond_has_challenged_slaves
336 * @bond: the bond we're working on
337 *
338 * Searches the slave list. Returns 1 if a vlan challenged slave
339 * was found, 0 otherwise.
340 *
341 * Assumes bond->lock is held.
342 */
343static int bond_has_challenged_slaves(struct bonding *bond)
344{
345 struct slave *slave;
346 int i;
347
348 bond_for_each_slave(bond, slave, i) {
349 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800350 pr_debug("found VLAN challenged slave - %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 slave->dev->name);
352 return 1;
353 }
354 }
355
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800356 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358}
359
360/**
361 * bond_next_vlan - safely skip to the next item in the vlans list.
362 * @bond: the bond we're working on
363 * @curr: item we're advancing from
364 *
365 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
366 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000367 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * Caller must hold bond->lock
369 */
370struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
371{
372 struct vlan_entry *next, *last;
373
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000374 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (!curr) {
378 next = list_entry(bond->vlan_list.next,
379 struct vlan_entry, vlan_list);
380 } else {
381 last = list_entry(bond->vlan_list.prev,
382 struct vlan_entry, vlan_list);
383 if (last == curr) {
384 next = list_entry(bond->vlan_list.next,
385 struct vlan_entry, vlan_list);
386 } else {
387 next = list_entry(curr->vlan_list.next,
388 struct vlan_entry, vlan_list);
389 }
390 }
391
392 return next;
393}
394
395/**
396 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000397 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * @bond: bond device that got this skb for tx.
399 * @skb: hw accel VLAN tagged skb to transmit
400 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000401 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * When the bond gets an skb to transmit that is
403 * already hardware accelerated VLAN tagged, and it
404 * needs to relay this skb to a slave that is not
405 * hw accel capable, the skb needs to be "unaccelerated",
406 * i.e. strip the hwaccel tag and re-insert it as part
407 * of the payload.
408 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000409int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
410 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700412 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 if (!list_empty(&bond->vlan_list) &&
415 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
416 vlan_get_tag(skb, &vlan_id) == 0) {
417 skb->dev = slave_dev;
418 skb = vlan_put_tag(skb, vlan_id);
419 if (!skb) {
420 /* vlan_put_tag() frees the skb in case of error,
421 * so return success here so the calling functions
422 * won't attempt to free is again.
423 */
424 return 0;
425 }
426 } else {
427 skb->dev = slave_dev;
428 }
429
430 skb->priority = 1;
431 dev_queue_xmit(skb);
432
433 return 0;
434}
435
436/*
437 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
438 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
439 * lock because:
440 * a. This operation is performed in IOCTL context,
441 * b. The operation is protected by the RTNL semaphore in the 8021q code,
442 * c. Holding a lock with BH disabled while directly calling a base driver
443 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000444 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * The design of synchronization/protection for this operation in the 8021q
446 * module is good for one or more VLAN devices over a single physical device
447 * and cannot be extended for a teaming solution like bonding, so there is a
448 * potential race condition here where a net device from the vlan group might
449 * be referenced (either by a base driver or the 8021q code) while it is being
450 * removed from the system. However, it turns out we're not making matters
451 * worse, and if it works for regular VLAN usage it will work here too.
452*/
453
454/**
455 * bond_vlan_rx_register - Propagates registration to slaves
456 * @bond_dev: bonding net device that got called
457 * @grp: vlan group being registered
458 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000459static void bond_vlan_rx_register(struct net_device *bond_dev,
460 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Wang Chen454d7c92008-11-12 23:37:49 -0800462 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct slave *slave;
464 int i;
465
466 bond->vlgrp = grp;
467
468 bond_for_each_slave(bond, slave, i) {
469 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800470 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800473 slave_ops->ndo_vlan_rx_register) {
474 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 }
477}
478
479/**
480 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
481 * @bond_dev: bonding net device that got called
482 * @vid: vlan id being added
483 */
484static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
485{
Wang Chen454d7c92008-11-12 23:37:49 -0800486 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct slave *slave;
488 int i, res;
489
490 bond_for_each_slave(bond, slave, i) {
491 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800492 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800495 slave_ops->ndo_vlan_rx_add_vid) {
496 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 }
499
500 res = bond_add_vlan(bond, vid);
501 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000502 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800503 ": %s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 bond_dev->name, vid);
505 }
506}
507
508/**
509 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
510 * @bond_dev: bonding net device that got called
511 * @vid: vlan id being removed
512 */
513static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
514{
Wang Chen454d7c92008-11-12 23:37:49 -0800515 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct slave *slave;
517 struct net_device *vlan_dev;
518 int i, res;
519
520 bond_for_each_slave(bond, slave, i) {
521 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800522 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800525 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* Save and then restore vlan_dev in the grp array,
527 * since the slave's driver might clear it.
528 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800529 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800530 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800531 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533 }
534
535 res = bond_del_vlan(bond, vid);
536 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000537 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800538 ": %s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 bond_dev->name, vid);
540 }
541}
542
543static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
544{
545 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800546 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 write_lock_bh(&bond->lock);
549
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800550 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800554 slave_ops->ndo_vlan_rx_register)
555 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800558 !(slave_ops->ndo_vlan_rx_add_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800561 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
562 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564out:
565 write_unlock_bh(&bond->lock);
566}
567
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000568static void bond_del_vlans_from_slave(struct bonding *bond,
569 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct vlan_entry *vlan;
573 struct net_device *vlan_dev;
574
575 write_lock_bh(&bond->lock);
576
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800577 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800581 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
585 /* Save and then restore vlan_dev in the grp array,
586 * since the slave's driver might clear it.
587 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800589 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800590 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593unreg:
594 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800595 slave_ops->ndo_vlan_rx_register)
596 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598out:
599 write_unlock_bh(&bond->lock);
600}
601
602/*------------------------------- Link status -------------------------------*/
603
604/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800605 * Set the carrier state for the master according to the state of its
606 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
607 * do special 802.3ad magic.
608 *
609 * Returns zero if carrier state does not change, nonzero if it does.
610 */
611static int bond_set_carrier(struct bonding *bond)
612{
613 struct slave *slave;
614 int i;
615
616 if (bond->slave_cnt == 0)
617 goto down;
618
619 if (bond->params.mode == BOND_MODE_8023AD)
620 return bond_3ad_set_carrier(bond);
621
622 bond_for_each_slave(bond, slave, i) {
623 if (slave->link == BOND_LINK_UP) {
624 if (!netif_carrier_ok(bond->dev)) {
625 netif_carrier_on(bond->dev);
626 return 1;
627 }
628 return 0;
629 }
630 }
631
632down:
633 if (netif_carrier_ok(bond->dev)) {
634 netif_carrier_off(bond->dev);
635 return 1;
636 }
637 return 0;
638}
639
640/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * Get link speed and duplex from the slave's base driver
642 * using ethtool. If for some reason the call fails or the
643 * values are invalid, fake speed and duplex to 100/Full
644 * and return error.
645 */
646static int bond_update_speed_duplex(struct slave *slave)
647{
648 struct net_device *slave_dev = slave->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct ethtool_cmd etool;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700650 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* Fake speed and duplex */
653 slave->speed = SPEED_100;
654 slave->duplex = DUPLEX_FULL;
655
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700656 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700659 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
660 if (res < 0)
661 return -1;
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 switch (etool.speed) {
664 case SPEED_10:
665 case SPEED_100:
666 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700667 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 break;
669 default:
670 return -1;
671 }
672
673 switch (etool.duplex) {
674 case DUPLEX_FULL:
675 case DUPLEX_HALF:
676 break;
677 default:
678 return -1;
679 }
680
681 slave->speed = etool.speed;
682 slave->duplex = etool.duplex;
683
684 return 0;
685}
686
687/*
688 * if <dev> supports MII link status reporting, check its link status.
689 *
690 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000691 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 *
693 * Return either BMSR_LSTATUS, meaning that the link is up (or we
694 * can't tell and just pretend it is), or 0, meaning that the link is
695 * down.
696 *
697 * If reporting is non-zero, instead of faking link up, return -1 if
698 * both ETHTOOL and MII ioctls fail (meaning the device does not
699 * support them). If use_carrier is set, return whatever it says.
700 * It'd be nice if there was a good way to tell if a driver supports
701 * netif_carrier, but there really isn't.
702 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000703static int bond_check_dev_link(struct bonding *bond,
704 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800706 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700707 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct ifreq ifr;
709 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Petri Gynther6c988852009-08-28 12:05:15 +0000711 if (!reporting && !netif_running(slave_dev))
712 return 0;
713
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800714 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Jiri Pirko29112f42009-04-24 01:58:23 +0000717 /* Try to get link status using Ethtool first. */
718 if (slave_dev->ethtool_ops) {
719 if (slave_dev->ethtool_ops->get_link) {
720 u32 link;
721
722 link = slave_dev->ethtool_ops->get_link(slave_dev);
723
724 return link ? BMSR_LSTATUS : 0;
725 }
726 }
727
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000728 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800729 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (ioctl) {
731 /* TODO: set pointer to correct ioctl on a per team member */
732 /* bases to make this more efficient. that is, once */
733 /* we determine the correct ioctl, we will always */
734 /* call it and not the others for that team */
735 /* member. */
736
737 /*
738 * We cannot assume that SIOCGMIIPHY will also read a
739 * register; not all network drivers (e.g., e100)
740 * support that.
741 */
742
743 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
744 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
745 mii = if_mii(&ifr);
746 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
747 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000748 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
749 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751 }
752
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700753 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700755 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 * cannot report link status). If not reporting, pretend
757 * we're ok.
758 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000759 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762/*----------------------------- Multicast list ------------------------------*/
763
764/*
765 * Returns 0 if dmi1 and dmi2 are the same, non-0 otherwise
766 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000767static inline int bond_is_dmi_same(const struct dev_mc_list *dmi1,
768 const struct dev_mc_list *dmi2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 return memcmp(dmi1->dmi_addr, dmi2->dmi_addr, dmi1->dmi_addrlen) == 0 &&
771 dmi1->dmi_addrlen == dmi2->dmi_addrlen;
772}
773
774/*
775 * returns dmi entry if found, NULL otherwise
776 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000777static struct dev_mc_list *bond_mc_list_find_dmi(struct dev_mc_list *dmi,
778 struct dev_mc_list *mc_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct dev_mc_list *idmi;
781
782 for (idmi = mc_list; idmi; idmi = idmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000783 if (bond_is_dmi_same(dmi, idmi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return idmi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
787 return NULL;
788}
789
790/*
791 * Push the promiscuity flag down to appropriate slaves
792 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700793static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700795 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (USES_PRIMARY(bond->params.mode)) {
797 /* write lock already acquired */
798 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700799 err = dev_set_promiscuity(bond->curr_active_slave->dev,
800 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802 } else {
803 struct slave *slave;
804 int i;
805 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700806 err = dev_set_promiscuity(slave->dev, inc);
807 if (err)
808 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700811 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814/*
815 * Push the allmulti flag down to all slaves
816 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700817static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700819 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (USES_PRIMARY(bond->params.mode)) {
821 /* write lock already acquired */
822 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700823 err = dev_set_allmulti(bond->curr_active_slave->dev,
824 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826 } else {
827 struct slave *slave;
828 int i;
829 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700830 err = dev_set_allmulti(slave->dev, inc);
831 if (err)
832 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700835 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
838/*
839 * Add a Multicast address to slaves
840 * according to mode
841 */
842static void bond_mc_add(struct bonding *bond, void *addr, int alen)
843{
844 if (USES_PRIMARY(bond->params.mode)) {
845 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000846 if (bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 dev_mc_add(bond->curr_active_slave->dev, addr, alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 } else {
849 struct slave *slave;
850 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000851
852 bond_for_each_slave(bond, slave, i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 dev_mc_add(slave->dev, addr, alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855}
856
857/*
858 * Remove a multicast address from slave
859 * according to mode
860 */
861static void bond_mc_delete(struct bonding *bond, void *addr, int alen)
862{
863 if (USES_PRIMARY(bond->params.mode)) {
864 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000865 if (bond->curr_active_slave)
866 dev_mc_delete(bond->curr_active_slave->dev, addr,
867 alen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 } else {
869 struct slave *slave;
870 int i;
871 bond_for_each_slave(bond, slave, i) {
872 dev_mc_delete(slave->dev, addr, alen, 0);
873 }
874 }
875}
876
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800877
878/*
879 * Retrieve the list of registered multicast addresses for the bonding
880 * device and retransmit an IGMP JOIN request to the current active
881 * slave.
882 */
883static void bond_resend_igmp_join_requests(struct bonding *bond)
884{
885 struct in_device *in_dev;
886 struct ip_mc_list *im;
887
888 rcu_read_lock();
889 in_dev = __in_dev_get_rcu(bond->dev);
890 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000891 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800892 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800893 }
894
895 rcu_read_unlock();
896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/*
899 * Totally destroys the mc_list in bond
900 */
901static void bond_mc_list_destroy(struct bonding *bond)
902{
903 struct dev_mc_list *dmi;
904
905 dmi = bond->mc_list;
906 while (dmi) {
907 bond->mc_list = dmi->next;
908 kfree(dmi);
909 dmi = bond->mc_list;
910 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000911
912 bond->mc_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915/*
916 * Copy all the Multicast addresses from src to the bonding device dst
917 */
Randy Dunlapde54f392005-10-04 22:39:41 -0700918static int bond_mc_list_copy(struct dev_mc_list *mc_list, struct bonding *bond,
Al Virodd0fc662005-10-07 07:46:04 +0100919 gfp_t gfp_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 struct dev_mc_list *dmi, *new_dmi;
922
923 for (dmi = mc_list; dmi; dmi = dmi->next) {
Randy Dunlapde54f392005-10-04 22:39:41 -0700924 new_dmi = kmalloc(sizeof(struct dev_mc_list), gfp_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 if (!new_dmi) {
927 /* FIXME: Potential memory leak !!! */
928 return -ENOMEM;
929 }
930
931 new_dmi->next = bond->mc_list;
932 bond->mc_list = new_dmi;
933 new_dmi->dmi_addrlen = dmi->dmi_addrlen;
934 memcpy(new_dmi->dmi_addr, dmi->dmi_addr, dmi->dmi_addrlen);
935 new_dmi->dmi_users = dmi->dmi_users;
936 new_dmi->dmi_gusers = dmi->dmi_gusers;
937 }
938
939 return 0;
940}
941
942/*
943 * flush all members of flush->mc_list from device dev->mc_list
944 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000945static void bond_mc_list_flush(struct net_device *bond_dev,
946 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
Wang Chen454d7c92008-11-12 23:37:49 -0800948 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct dev_mc_list *dmi;
950
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000951 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 dev_mc_delete(slave_dev, dmi->dmi_addr, dmi->dmi_addrlen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 if (bond->params.mode == BOND_MODE_8023AD) {
955 /* del lacpdu mc addr from mc list */
956 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
957
958 dev_mc_delete(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
959 }
960}
961
962/*--------------------------- Active slave change ---------------------------*/
963
964/*
965 * Update the mc list and multicast-related flags for the new and
966 * old active slaves (if any) according to the multicast mode, and
967 * promiscuous flags unconditionally.
968 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000969static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
970 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 struct dev_mc_list *dmi;
973
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000974 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* nothing to do - mc list is already up-to-date on
976 * all slaves
977 */
978 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000981 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000984 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000987 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
988 dev_mc_delete(old_active->dev, dmi->dmi_addr,
989 dmi->dmi_addrlen, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991
992 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700993 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000994 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000997 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001000 for (dmi = bond->dev->mc_list; dmi; dmi = dmi->next)
1001 dev_mc_add(new_active->dev, dmi->dmi_addr,
1002 dmi->dmi_addrlen, 0);
Jay Vosburgha816c7c2007-02-28 17:03:37 -08001003 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005}
1006
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001007/*
1008 * bond_do_fail_over_mac
1009 *
1010 * Perform special MAC address swapping for fail_over_mac settings
1011 *
1012 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
1013 */
1014static void bond_do_fail_over_mac(struct bonding *bond,
1015 struct slave *new_active,
1016 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001017 __releases(&bond->curr_slave_lock)
1018 __releases(&bond->lock)
1019 __acquires(&bond->lock)
1020 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001021{
1022 u8 tmp_mac[ETH_ALEN];
1023 struct sockaddr saddr;
1024 int rv;
1025
1026 switch (bond->params.fail_over_mac) {
1027 case BOND_FOM_ACTIVE:
1028 if (new_active)
1029 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
1030 new_active->dev->addr_len);
1031 break;
1032 case BOND_FOM_FOLLOW:
1033 /*
1034 * if new_active && old_active, swap them
1035 * if just old_active, do nothing (going to no active slave)
1036 * if just new_active, set new_active to bond's MAC
1037 */
1038 if (!new_active)
1039 return;
1040
1041 write_unlock_bh(&bond->curr_slave_lock);
1042 read_unlock(&bond->lock);
1043
1044 if (old_active) {
1045 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
1046 memcpy(saddr.sa_data, old_active->dev->dev_addr,
1047 ETH_ALEN);
1048 saddr.sa_family = new_active->dev->type;
1049 } else {
1050 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1051 saddr.sa_family = bond->dev->type;
1052 }
1053
1054 rv = dev_set_mac_address(new_active->dev, &saddr);
1055 if (rv) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001056 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001057 ": %s: Error %d setting MAC of slave %s\n",
1058 bond->dev->name, -rv, new_active->dev->name);
1059 goto out;
1060 }
1061
1062 if (!old_active)
1063 goto out;
1064
1065 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1066 saddr.sa_family = old_active->dev->type;
1067
1068 rv = dev_set_mac_address(old_active->dev, &saddr);
1069 if (rv)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001070 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001071 ": %s: Error %d setting MAC of slave %s\n",
1072 bond->dev->name, -rv, new_active->dev->name);
1073out:
1074 read_lock(&bond->lock);
1075 write_lock_bh(&bond->curr_slave_lock);
1076 break;
1077 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001078 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001079 ": %s: bond_do_fail_over_mac impossible: bad policy %d\n",
1080 bond->dev->name, bond->params.fail_over_mac);
1081 break;
1082 }
1083
1084}
1085
Jiri Pirkoa5499522009-09-25 03:28:09 +00001086static bool bond_should_change_active(struct bonding *bond)
1087{
1088 struct slave *prim = bond->primary_slave;
1089 struct slave *curr = bond->curr_active_slave;
1090
1091 if (!prim || !curr || curr->link != BOND_LINK_UP)
1092 return true;
1093 if (bond->force_primary) {
1094 bond->force_primary = false;
1095 return true;
1096 }
1097 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1098 (prim->speed < curr->speed ||
1099 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1100 return false;
1101 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1102 return false;
1103 return true;
1104}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/**
1107 * find_best_interface - select the best available slave to be the active one
1108 * @bond: our bonding struct
1109 *
1110 * Warning: Caller must hold curr_slave_lock for writing.
1111 */
1112static struct slave *bond_find_best_slave(struct bonding *bond)
1113{
1114 struct slave *new_active, *old_active;
1115 struct slave *bestslave = NULL;
1116 int mintime = bond->params.updelay;
1117 int i;
1118
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001119 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001122 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001124 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001129 bond->primary_slave->link == BOND_LINK_UP &&
1130 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 new_active = bond->primary_slave;
1132 }
1133
1134 /* remember where to stop iterating over the slaves */
1135 old_active = new_active;
1136
1137 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001138 if (new_active->link == BOND_LINK_UP) {
1139 return new_active;
1140 } else if (new_active->link == BOND_LINK_BACK &&
1141 IS_UP(new_active->dev)) {
1142 /* link up, but waiting for stabilization */
1143 if (new_active->delay < mintime) {
1144 mintime = new_active->delay;
1145 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147 }
1148 }
1149
1150 return bestslave;
1151}
1152
1153/**
1154 * change_active_interface - change the active slave into the specified one
1155 * @bond: our bonding struct
1156 * @new: the new slave to make the active one
1157 *
1158 * Set the new slave to the bond's settings and unset them on the old
1159 * curr_active_slave.
1160 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1161 *
1162 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1163 * because it is apparently the best available slave we have, even though its
1164 * updelay hasn't timed out yet.
1165 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001166 * If new_active is not NULL, caller must hold bond->lock for read and
1167 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001169void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 struct slave *old_active = bond->curr_active_slave;
1172
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001173 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001177 new_active->jiffies = jiffies;
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (new_active->link == BOND_LINK_BACK) {
1180 if (USES_PRIMARY(bond->params.mode)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001181 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 ": %s: making interface %s the new "
1183 "active one %d ms earlier.\n",
1184 bond->dev->name, new_active->dev->name,
1185 (bond->params.updelay - new_active->delay) * bond->params.miimon);
1186 }
1187
1188 new_active->delay = 0;
1189 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001191 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Holger Eitzenberger58402052008-12-09 23:07:13 -08001194 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 } else {
1197 if (USES_PRIMARY(bond->params.mode)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001198 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 ": %s: making interface %s the new "
1200 "active one.\n",
1201 bond->dev->name, new_active->dev->name);
1202 }
1203 }
1204 }
1205
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001206 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Holger Eitzenberger58402052008-12-09 23:07:13 -08001209 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001211 if (old_active)
1212 bond_set_slave_inactive_flags(old_active);
1213 if (new_active)
1214 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 } else {
1216 bond->curr_active_slave = new_active;
1217 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001218
1219 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001220 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001221 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001222
1223 if (new_active) {
1224 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001225
Or Gerlitz709f8a42008-06-13 18:12:01 -07001226 if (bond->params.fail_over_mac)
1227 bond_do_fail_over_mac(bond, new_active,
1228 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001229
Or Gerlitz709f8a42008-06-13 18:12:01 -07001230 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001231 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001232
Brian Haley305d5522008-11-04 17:51:14 -08001233 bond->send_unsol_na = bond->params.num_unsol_na;
1234 bond_send_unsolicited_na(bond);
1235
Or Gerlitz01f31092008-06-13 18:12:02 -07001236 write_unlock_bh(&bond->curr_slave_lock);
1237 read_unlock(&bond->lock);
1238
Moni Shoua75c78502009-09-15 02:37:40 -07001239 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001240
1241 read_lock(&bond->lock);
1242 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001243 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
1247/**
1248 * bond_select_active_slave - select a new active slave, if needed
1249 * @bond: our bonding struct
1250 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001251 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 * - The old curr_active_slave has been released or lost its link.
1253 * - The primary_slave has got its link back.
1254 * - A slave has got its link back and there's no old curr_active_slave.
1255 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001256 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001258void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
1260 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001261 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 best_slave = bond_find_best_slave(bond);
1264 if (best_slave != bond->curr_active_slave) {
1265 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001266 rv = bond_set_carrier(bond);
1267 if (!rv)
1268 return;
1269
1270 if (netif_carrier_ok(bond->dev)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001271 pr_info(DRV_NAME
Jay Vosburghff59c452006-03-27 13:27:43 -08001272 ": %s: first active interface up!\n",
1273 bond->dev->name);
1274 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001275 pr_info(DRV_NAME ": %s: "
Jay Vosburghff59c452006-03-27 13:27:43 -08001276 "now running without any active interface !\n",
1277 bond->dev->name);
1278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280}
1281
1282/*--------------------------- slave list handling ---------------------------*/
1283
1284/*
1285 * This function attaches the slave to the end of list.
1286 *
1287 * bond->lock held for writing by caller.
1288 */
1289static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1290{
1291 if (bond->first_slave == NULL) { /* attaching the first slave */
1292 new_slave->next = new_slave;
1293 new_slave->prev = new_slave;
1294 bond->first_slave = new_slave;
1295 } else {
1296 new_slave->next = bond->first_slave;
1297 new_slave->prev = bond->first_slave->prev;
1298 new_slave->next->prev = new_slave;
1299 new_slave->prev->next = new_slave;
1300 }
1301
1302 bond->slave_cnt++;
1303}
1304
1305/*
1306 * This function detaches the slave from the list.
1307 * WARNING: no check is made to verify if the slave effectively
1308 * belongs to <bond>.
1309 * Nothing is freed on return, structures are just unchained.
1310 * If any slave pointer in bond was pointing to <slave>,
1311 * it should be changed by the calling function.
1312 *
1313 * bond->lock held for writing by caller.
1314 */
1315static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1316{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001317 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001320 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 if (bond->first_slave == slave) { /* slave is the first slave */
1324 if (bond->slave_cnt > 1) { /* there are more slave */
1325 bond->first_slave = slave->next;
1326 } else {
1327 bond->first_slave = NULL; /* slave was the last one */
1328 }
1329 }
1330
1331 slave->next = NULL;
1332 slave->prev = NULL;
1333 bond->slave_cnt--;
1334}
1335
1336/*---------------------------------- IOCTL ----------------------------------*/
1337
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001338static int bond_sethwaddr(struct net_device *bond_dev,
1339 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001341 pr_debug("bond_dev=%p\n", bond_dev);
1342 pr_debug("slave_dev=%p\n", slave_dev);
1343 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1345 return 0;
1346}
1347
Herbert Xu7f353bf2007-08-10 15:47:58 -07001348#define BOND_VLAN_FEATURES \
1349 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1350 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001351
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001352/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001353 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001354 * feature bits are managed elsewhere, so preserve those feature bits
1355 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001356 */
1357static int bond_compute_features(struct bonding *bond)
1358{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001359 struct slave *slave;
1360 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001361 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001362 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001363 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1364 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001365 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001366
Herbert Xu7f353bf2007-08-10 15:47:58 -07001367 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001368 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1369
1370 if (!bond->first_slave)
1371 goto done;
1372
1373 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001374
Jay Vosburgh278339a2009-08-28 12:05:12 +00001375 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001376 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001377 features = netdev_increment_features(features,
1378 slave->dev->features,
1379 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001380 vlan_features = netdev_increment_features(vlan_features,
1381 slave->dev->vlan_features,
1382 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001383 if (slave->dev->hard_header_len > max_hard_header_len)
1384 max_hard_header_len = slave->dev->hard_header_len;
1385 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001386
Herbert Xub63365a2008-10-23 01:11:29 -07001387done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001388 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001389 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001390 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001391 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001392
1393 return 0;
1394}
1395
Moni Shoua872254d2007-10-09 19:43:38 -07001396static void bond_setup_by_slave(struct net_device *bond_dev,
1397 struct net_device *slave_dev)
1398{
Wang Chen454d7c92008-11-12 23:37:49 -08001399 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001400
Stephen Hemminger00829822008-11-20 20:14:53 -08001401 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001402
1403 bond_dev->type = slave_dev->type;
1404 bond_dev->hard_header_len = slave_dev->hard_header_len;
1405 bond_dev->addr_len = slave_dev->addr_len;
1406
1407 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1408 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001409 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001410}
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001413int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Wang Chen454d7c92008-11-12 23:37:49 -08001415 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001416 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 struct slave *new_slave = NULL;
1418 struct dev_mc_list *dmi;
1419 struct sockaddr addr;
1420 int link_reporting;
1421 int old_features = bond_dev->features;
1422 int res = 0;
1423
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001424 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001425 slave_ops->ndo_do_ioctl == NULL) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001426 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001427 ": %s: Warning: no link monitoring support for %s\n",
1428 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430
1431 /* bond must be initialized by bond_open() before enslaving */
1432 if (!(bond_dev->flags & IFF_UP)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001433 pr_warning(DRV_NAME
Moni Shoua6b1bf092007-10-09 19:43:40 -07001434 " %s: master_dev is not up in bond_enslave\n",
1435 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437
1438 /* already enslaved */
1439 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001440 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return -EBUSY;
1442 }
1443
1444 /* vlan challenged mutual exclusion */
1445 /* no need to lock since we're protected by rtnl_lock */
1446 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001447 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (!list_empty(&bond->vlan_list)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001449 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001450 ": %s: Error: cannot enslave VLAN "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 "challenged slave %s on VLAN enabled "
Mitch Williams4e0952c2005-11-09 10:34:57 -08001452 "bond %s\n", bond_dev->name, slave_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 bond_dev->name);
1454 return -EPERM;
1455 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001456 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001457 ": %s: Warning: enslaved VLAN challenged "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 "slave %s. Adding VLANs will be blocked as "
1459 "long as %s is part of bond %s\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001460 bond_dev->name, slave_dev->name, slave_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 bond_dev->name);
1462 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1463 }
1464 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001465 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (bond->slave_cnt == 0) {
1467 /* First slave, and it is not VLAN challenged,
1468 * so remove the block of adding VLANs over the bond.
1469 */
1470 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1471 }
1472 }
1473
Jay Vosburgh217df672005-09-26 16:11:50 -07001474 /*
1475 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001476 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001477 * the current ifenslave will set the interface down prior to
1478 * enslaving it; the old ifenslave will not.
1479 */
1480 if ((slave_dev->flags & IFF_UP)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001481 pr_err(DRV_NAME ": %s is up. "
Jay Vosburgh217df672005-09-26 16:11:50 -07001482 "This may be due to an out of date ifenslave.\n",
1483 slave_dev->name);
1484 res = -EPERM;
1485 goto err_undo_flags;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Moni Shoua872254d2007-10-09 19:43:38 -07001488 /* set bonding device ether type by slave - bonding netdevices are
1489 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1490 * there is a need to override some of the type dependent attribs/funcs.
1491 *
1492 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1493 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1494 */
1495 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001496 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001497 pr_debug("%s: change device type from %d to %d\n",
1498 bond_dev->name, bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001499
1500 netdev_bonding_change(bond_dev, NETDEV_BONDING_OLDTYPE);
1501
Moni Shouae36b9d12009-07-15 04:56:31 +00001502 if (slave_dev->type != ARPHRD_ETHER)
1503 bond_setup_by_slave(bond_dev, slave_dev);
1504 else
1505 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001506
1507 netdev_bonding_change(bond_dev, NETDEV_BONDING_NEWTYPE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001508 }
Moni Shoua872254d2007-10-09 19:43:38 -07001509 } else if (bond_dev->type != slave_dev->type) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001510 pr_err(DRV_NAME ": %s ether type (%d) is different "
Moni Shoua872254d2007-10-09 19:43:38 -07001511 "from other slaves (%d), can not enslave it.\n",
1512 slave_dev->name,
1513 slave_dev->type, bond_dev->type);
1514 res = -EINVAL;
1515 goto err_undo_flags;
1516 }
1517
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001518 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001519 if (bond->slave_cnt == 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001520 pr_warning(DRV_NAME
Jay Vosburghdd957c52007-10-09 19:57:24 -07001521 ": %s: Warning: The first slave device "
1522 "specified does not support setting the MAC "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001523 "address. Setting fail_over_mac to active.",
Jay Vosburghdd957c52007-10-09 19:57:24 -07001524 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001525 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1526 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001527 pr_err(DRV_NAME
Jay Vosburghdd957c52007-10-09 19:57:24 -07001528 ": %s: Error: The slave device specified "
1529 "does not support setting the MAC address, "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001530 "but fail_over_mac is not set to active.\n"
Moni Shoua2ab82852007-10-09 19:43:39 -07001531 , bond_dev->name);
1532 res = -EOPNOTSUPP;
1533 goto err_undo_flags;
1534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 }
1536
Joe Jin243cb4e2007-02-06 14:16:40 -08001537 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (!new_slave) {
1539 res = -ENOMEM;
1540 goto err_undo_flags;
1541 }
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 /* save slave's original flags before calling
1544 * netdev_set_master and dev_open
1545 */
1546 new_slave->original_flags = slave_dev->flags;
1547
Jay Vosburgh217df672005-09-26 16:11:50 -07001548 /*
1549 * Save slave's original ("permanent") mac address for modes
1550 * that need it, and for restoring it upon release, and then
1551 * set it to the master's address
1552 */
1553 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Jay Vosburghdd957c52007-10-09 19:57:24 -07001555 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001556 /*
1557 * Set slave to master's mac address. The application already
1558 * set the master's mac address to that of the first slave
1559 */
1560 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1561 addr.sa_family = slave_dev->type;
1562 res = dev_set_mac_address(slave_dev, &addr);
1563 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001564 pr_debug("Error %d calling set_mac_address\n", res);
Moni Shoua2ab82852007-10-09 19:43:39 -07001565 goto err_free;
1566 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001569 res = netdev_set_master(slave_dev, bond_dev);
1570 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001571 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001572 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001573 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001574 /* open the slave since the application closed it */
1575 res = dev_open(slave_dev);
1576 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001577 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001578 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001582 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Holger Eitzenberger58402052008-12-09 23:07:13 -08001584 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /* bond_alb_init_slave() must be called before all other stages since
1586 * it might fail and we do not want to have to undo everything
1587 */
1588 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001589 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001590 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
1593 /* If the mode USES_PRIMARY, then the new slave gets the
1594 * master's promisc (and mc) settings only if it becomes the
1595 * curr_active_slave, and that is taken care of later when calling
1596 * bond_change_active()
1597 */
1598 if (!USES_PRIMARY(bond->params.mode)) {
1599 /* set promiscuity level to new slave */
1600 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001601 res = dev_set_promiscuity(slave_dev, 1);
1602 if (res)
1603 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 }
1605
1606 /* set allmulti level to new slave */
1607 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001608 res = dev_set_allmulti(slave_dev, 1);
1609 if (res)
1610 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 }
1612
David S. Millerb9e40852008-07-15 00:15:08 -07001613 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /* upload master's mc_list to new slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001615 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next)
1616 dev_mc_add(slave_dev, dmi->dmi_addr,
1617 dmi->dmi_addrlen, 0);
David S. Millerb9e40852008-07-15 00:15:08 -07001618 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
1620
1621 if (bond->params.mode == BOND_MODE_8023AD) {
1622 /* add lacpdu mc addr to mc list */
1623 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1624
1625 dev_mc_add(slave_dev, lacpdu_multicast, ETH_ALEN, 0);
1626 }
1627
1628 bond_add_vlans_on_slave(bond, slave_dev);
1629
1630 write_lock_bh(&bond->lock);
1631
1632 bond_attach_slave(bond, new_slave);
1633
1634 new_slave->delay = 0;
1635 new_slave->link_failure_count = 0;
1636
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001637 bond_compute_features(bond);
1638
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001639 write_unlock_bh(&bond->lock);
1640
1641 read_lock(&bond->lock);
1642
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001643 new_slave->last_arp_rx = jiffies;
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (bond->params.miimon && !bond->params.use_carrier) {
1646 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1647
1648 if ((link_reporting == -1) && !bond->params.arp_interval) {
1649 /*
1650 * miimon is set but a bonded network driver
1651 * does not support ETHTOOL/MII and
1652 * arp_interval is not set. Note: if
1653 * use_carrier is enabled, we will never go
1654 * here (because netif_carrier is always
1655 * supported); thus, we don't need to change
1656 * the messages for netif_carrier.
1657 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001658 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001659 ": %s: Warning: MII and ETHTOOL support not "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 "available for interface %s, and "
1661 "arp_interval/arp_ip_target module parameters "
1662 "not specified, thus bonding will not detect "
1663 "link failures! see bonding.txt for details.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001664 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 } else if (link_reporting == -1) {
1666 /* unable get link status using mii/ethtool */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001667 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001668 ": %s: Warning: can't get link status from "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 "interface %s; the network driver associated "
1670 "with this interface does not support MII or "
1671 "ETHTOOL link status reporting, thus miimon "
1672 "has no effect on this interface.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001673 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
1675 }
1676
1677 /* check for initial state */
1678 if (!bond->params.miimon ||
1679 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1680 if (bond->params.updelay) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001681 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 "BOND_LINK_BACK\n");
1683 new_slave->link = BOND_LINK_BACK;
1684 new_slave->delay = bond->params.updelay;
1685 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001686 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 "BOND_LINK_UP\n");
1688 new_slave->link = BOND_LINK_UP;
1689 }
1690 new_slave->jiffies = jiffies;
1691 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001692 pr_debug("Initial state of slave_dev is "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 "BOND_LINK_DOWN\n");
1694 new_slave->link = BOND_LINK_DOWN;
1695 }
1696
1697 if (bond_update_speed_duplex(new_slave) &&
1698 (new_slave->link != BOND_LINK_DOWN)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001699 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001700 ": %s: Warning: failed to get speed and duplex from %s, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 "assumed to be 100Mb/sec and Full.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001702 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 if (bond->params.mode == BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001705 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001706 ": %s: Warning: Operation of 802.3ad mode requires ETHTOOL "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 "support in base driver for proper aggregator "
Mitch Williams4e0952c2005-11-09 10:34:57 -08001708 "selection.\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710 }
1711
1712 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1713 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001714 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001716 bond->force_primary = true;
1717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001720 write_lock_bh(&bond->curr_slave_lock);
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 switch (bond->params.mode) {
1723 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001724 bond_set_slave_inactive_flags(new_slave);
1725 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 break;
1727 case BOND_MODE_8023AD:
1728 /* in 802.3ad mode, the internal mechanism
1729 * will activate the slaves in the selected
1730 * aggregator
1731 */
1732 bond_set_slave_inactive_flags(new_slave);
1733 /* if this is the first slave */
1734 if (bond->slave_cnt == 1) {
1735 SLAVE_AD_INFO(new_slave).id = 1;
1736 /* Initialize AD with the number of times that the AD timer is called in 1 second
1737 * can be called only after the mac address of the bond is set
1738 */
1739 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1740 bond->params.lacp_fast);
1741 } else {
1742 SLAVE_AD_INFO(new_slave).id =
1743 SLAVE_AD_INFO(new_slave->prev).id + 1;
1744 }
1745
1746 bond_3ad_bind_slave(new_slave);
1747 break;
1748 case BOND_MODE_TLB:
1749 case BOND_MODE_ALB:
1750 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001751 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001752 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 break;
1754 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001755 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 /* always active in trunk mode */
1758 new_slave->state = BOND_STATE_ACTIVE;
1759
1760 /* In trunking mode there is little meaning to curr_active_slave
1761 * anyway (it holds no special properties of the bond device),
1762 * so we can change it without calling change_active_interface()
1763 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001764 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 break;
1768 } /* switch(bond_mode) */
1769
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001770 write_unlock_bh(&bond->curr_slave_lock);
1771
Jay Vosburghff59c452006-03-27 13:27:43 -08001772 bond_set_carrier(bond);
1773
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001774 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001776 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1777 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001778 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001779
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001780 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 ": %s: enslaving %s as a%s interface with a%s link.\n",
1782 bond_dev->name, slave_dev->name,
1783 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1784 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
1785
1786 /* enslave is successful */
1787 return 0;
1788
1789/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790err_close:
1791 dev_close(slave_dev);
1792
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001793err_unset_master:
1794 netdev_set_master(slave_dev, NULL);
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001797 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001798 /* XXX TODO - fom follow mode needs to change master's
1799 * MAC if this slave's MAC is in use by the bond, or at
1800 * least print a warning.
1801 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001802 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1803 addr.sa_family = slave_dev->type;
1804 dev_set_mac_address(slave_dev, &addr);
1805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807err_free:
1808 kfree(new_slave);
1809
1810err_undo_flags:
1811 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return res;
1814}
1815
1816/*
1817 * Try to release the slave device <slave> from the bond device <master>
1818 * It is legal to access curr_active_slave without a lock because all the function
1819 * is write-locked.
1820 *
1821 * The rules for slave state should be:
1822 * for Active/Backup:
1823 * Active stays on all backups go down
1824 * for Bonded connections:
1825 * The first up interface should be left on and all others downed.
1826 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001827int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Wang Chen454d7c92008-11-12 23:37:49 -08001829 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 struct slave *slave, *oldcurrent;
1831 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 /* slave is not a slave or master is not master of this slave */
1834 if (!(slave_dev->flags & IFF_SLAVE) ||
1835 (slave_dev->master != bond_dev)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001836 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001837 ": %s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 bond_dev->name, slave_dev->name);
1839 return -EINVAL;
1840 }
1841
1842 write_lock_bh(&bond->lock);
1843
1844 slave = bond_get_slave_by_dev(bond, slave_dev);
1845 if (!slave) {
1846 /* not a slave of this bond */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001847 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 ": %s: %s not enslaved\n",
1849 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001850 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return -EINVAL;
1852 }
1853
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001854 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001855 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1856 bond->slave_cnt > 1)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001857 pr_warning(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001858 ": %s: Warning: the permanent HWaddr of %s - "
Johannes Berge1749612008-10-27 15:59:26 -07001859 "%pM - is still in use by %s. "
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001860 "Set the HWaddr of %s to a different address "
1861 "to avoid conflicts.\n",
1862 bond_dev->name, slave_dev->name,
Johannes Berge1749612008-10-27 15:59:26 -07001863 slave->perm_hwaddr,
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001864 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
1866
1867 /* Inform AD package of unbinding of slave. */
1868 if (bond->params.mode == BOND_MODE_8023AD) {
1869 /* must be called before the slave is
1870 * detached from the list
1871 */
1872 bond_3ad_unbind_slave(slave);
1873 }
1874
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001875 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 ": %s: releasing %s interface %s\n",
1877 bond_dev->name,
1878 (slave->state == BOND_STATE_ACTIVE)
1879 ? "active" : "backup",
1880 slave_dev->name);
1881
1882 oldcurrent = bond->curr_active_slave;
1883
1884 bond->current_arp_slave = NULL;
1885
1886 /* release the slave from its bond */
1887 bond_detach_slave(bond, slave);
1888
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001889 bond_compute_features(bond);
1890
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001891 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001894 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Holger Eitzenberger58402052008-12-09 23:07:13 -08001897 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /* Must be called only after the slave has been
1899 * detached from the list and the curr_active_slave
1900 * has been cleared (if our_slave == old_current),
1901 * but before a new active slave is selected.
1902 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001903 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001905 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001908 if (oldcurrent == slave) {
1909 /*
1910 * Note that we hold RTNL over this sequence, so there
1911 * is no concern that another slave add/remove event
1912 * will interfere.
1913 */
1914 write_unlock_bh(&bond->lock);
1915 read_lock(&bond->lock);
1916 write_lock_bh(&bond->curr_slave_lock);
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 bond_select_active_slave(bond);
1919
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001920 write_unlock_bh(&bond->curr_slave_lock);
1921 read_unlock(&bond->lock);
1922 write_lock_bh(&bond->lock);
1923 }
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001926 bond_set_carrier(bond);
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 /* if the last slave was removed, zero the mac address
1929 * of the master so it will be set by the application
1930 * to the mac address of the first slave
1931 */
1932 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1933
1934 if (list_empty(&bond->vlan_list)) {
1935 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1936 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001937 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001938 ": %s: Warning: clearing HW address of %s while it "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 "still has VLANs.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001940 bond_dev->name, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001941 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001942 ": %s: When re-adding slaves, make sure the bond's "
1943 "HW address matches its VLANs'.\n",
1944 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 }
1946 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1947 !bond_has_challenged_slaves(bond)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001948 pr_info(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001949 ": %s: last VLAN challenged slave %s "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 "left bond %s. VLAN blocking is removed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001951 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1953 }
1954
1955 write_unlock_bh(&bond->lock);
1956
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001957 /* must do this from outside any spinlocks */
1958 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 bond_del_vlans_from_slave(bond, slave_dev);
1961
1962 /* If the mode USES_PRIMARY, then we should only remove its
1963 * promisc and mc settings if it was the curr_active_slave, but that was
1964 * already taken care of above when we detached the slave
1965 */
1966 if (!USES_PRIMARY(bond->params.mode)) {
1967 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001968 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001972 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001976 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001978 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980
1981 netdev_set_master(slave_dev, NULL);
1982
1983 /* close slave before restoring its mac address */
1984 dev_close(slave_dev);
1985
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001986 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001987 /* restore original ("permanent") mac address */
1988 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1989 addr.sa_family = slave_dev->type;
1990 dev_set_mac_address(slave_dev, &addr);
1991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001993 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001994 IFF_SLAVE_INACTIVE | IFF_BONDING |
1995 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 kfree(slave);
1998
1999 return 0; /* deletion OK */
2000}
2001
2002/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002003* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002004* Must be under rtnl_lock when this function is called.
2005*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002006int bond_release_and_destroy(struct net_device *bond_dev,
2007 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002008{
Wang Chen454d7c92008-11-12 23:37:49 -08002009 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002010 int ret;
2011
2012 ret = bond_release(bond_dev, slave_dev);
2013 if ((ret == 0) && (bond->slave_cnt == 0)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002014 pr_info(DRV_NAME ": %s: destroying bond %s.\n",
Moni Shouad90a1622007-10-09 19:43:43 -07002015 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002016 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002017 }
2018 return ret;
2019}
2020
2021/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 * This function releases all slaves.
2023 */
2024static int bond_release_all(struct net_device *bond_dev)
2025{
Wang Chen454d7c92008-11-12 23:37:49 -08002026 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 struct slave *slave;
2028 struct net_device *slave_dev;
2029 struct sockaddr addr;
2030
2031 write_lock_bh(&bond->lock);
2032
Jay Vosburghff59c452006-03-27 13:27:43 -08002033 netif_carrier_off(bond_dev);
2034
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002035 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 bond->current_arp_slave = NULL;
2039 bond->primary_slave = NULL;
2040 bond_change_active_slave(bond, NULL);
2041
2042 while ((slave = bond->first_slave) != NULL) {
2043 /* Inform AD package of unbinding of slave
2044 * before slave is detached from the list.
2045 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002046 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 slave_dev = slave->dev;
2050 bond_detach_slave(bond, slave);
2051
Jay Vosburgh25433312008-01-17 16:24:59 -08002052 /* now that the slave is detached, unlock and perform
2053 * all the undo steps that should not be called from
2054 * within a lock.
2055 */
2056 write_unlock_bh(&bond->lock);
2057
Holger Eitzenberger58402052008-12-09 23:07:13 -08002058 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /* must be called only after the slave
2060 * has been detached from the list
2061 */
2062 bond_alb_deinit_slave(bond, slave);
2063 }
2064
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002065 bond_compute_features(bond);
2066
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002067 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 bond_del_vlans_from_slave(bond, slave_dev);
2069
2070 /* If the mode USES_PRIMARY, then we should only remove its
2071 * promisc and mc settings if it was the curr_active_slave, but that was
2072 * already taken care of above when we detached the slave
2073 */
2074 if (!USES_PRIMARY(bond->params.mode)) {
2075 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002076 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002080 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002084 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002086 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088
2089 netdev_set_master(slave_dev, NULL);
2090
2091 /* close slave before restoring its mac address */
2092 dev_close(slave_dev);
2093
Jay Vosburghdd957c52007-10-09 19:57:24 -07002094 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002095 /* restore original ("permanent") mac address*/
2096 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2097 addr.sa_family = slave_dev->type;
2098 dev_set_mac_address(slave_dev, &addr);
2099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Jay Vosburgh8f903c72006-02-21 16:36:44 -08002101 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2102 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 kfree(slave);
2105
2106 /* re-acquire the lock before getting the next slave */
2107 write_lock_bh(&bond->lock);
2108 }
2109
2110 /* zero the mac address of the master so it will be
2111 * set by the application to the mac address of the
2112 * first slave
2113 */
2114 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2115
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002116 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002118 else {
2119 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08002120 ": %s: Warning: clearing HW address of %s while it "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 "still has VLANs.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08002122 bond_dev->name, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002123 pr_warning(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08002124 ": %s: When re-adding slaves, make sure the bond's "
2125 "HW address matches its VLANs'.\n",
2126 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 }
2128
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002129 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 ": %s: released all slaves\n",
2131 bond_dev->name);
2132
2133out:
2134 write_unlock_bh(&bond->lock);
2135
2136 return 0;
2137}
2138
2139/*
2140 * This function changes the active slave to slave <slave_dev>.
2141 * It returns -EINVAL in the following cases.
2142 * - <slave_dev> is not found in the list.
2143 * - There is not active slave now.
2144 * - <slave_dev> is already active.
2145 * - The link state of <slave_dev> is not BOND_LINK_UP.
2146 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002147 * In these cases, this function does nothing.
2148 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 */
2150static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2151{
Wang Chen454d7c92008-11-12 23:37:49 -08002152 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 struct slave *old_active = NULL;
2154 struct slave *new_active = NULL;
2155 int res = 0;
2156
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002157 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002161 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002164 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002166 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002168 read_unlock(&bond->curr_slave_lock);
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 new_active = bond_get_slave_by_dev(bond, slave_dev);
2171
2172 /*
2173 * Changing to the current active: do nothing; return success.
2174 */
2175 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002176 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 return 0;
2178 }
2179
2180 if ((new_active) &&
2181 (old_active) &&
2182 (new_active->link == BOND_LINK_UP) &&
2183 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002184 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002186 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002187 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002190 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 return res;
2193}
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2196{
Wang Chen454d7c92008-11-12 23:37:49 -08002197 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 info->bond_mode = bond->params.mode;
2200 info->miimon = bond->params.miimon;
2201
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002202 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002204 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 return 0;
2207}
2208
2209static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2210{
Wang Chen454d7c92008-11-12 23:37:49 -08002211 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002213 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002215 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 bond_for_each_slave(bond, slave, i) {
2218 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002219 res = 0;
2220 strcpy(info->slave_name, slave->dev->name);
2221 info->link = slave->link;
2222 info->state = slave->state;
2223 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 break;
2225 }
2226 }
2227
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002228 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Eric Dumazet689c96c2009-04-23 03:39:04 +00002230 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231}
2232
2233/*-------------------------------- Monitoring -------------------------------*/
2234
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002235
2236static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002238 struct slave *slave;
2239 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002240 bool ignore_updelay;
2241
2242 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002245 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002247 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002250 case BOND_LINK_UP:
2251 if (link_state)
2252 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002254 slave->link = BOND_LINK_FAIL;
2255 slave->delay = bond->params.downdelay;
2256 if (slave->delay) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002257 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002258 ": %s: link status down for %s"
2259 "interface %s, disabling it in %d ms.\n",
2260 bond->dev->name,
2261 (bond->params.mode ==
2262 BOND_MODE_ACTIVEBACKUP) ?
2263 ((slave->state == BOND_STATE_ACTIVE) ?
2264 "active " : "backup ") : "",
2265 slave->dev->name,
2266 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002268 /*FALLTHRU*/
2269 case BOND_LINK_FAIL:
2270 if (link_state) {
2271 /*
2272 * recovered before downdelay expired
2273 */
2274 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 slave->jiffies = jiffies;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002276 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 ": %s: link status up again after %d "
2278 "ms for interface %s.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002279 bond->dev->name,
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002280 (bond->params.downdelay - slave->delay) *
2281 bond->params.miimon,
2282 slave->dev->name);
2283 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002285
2286 if (slave->delay <= 0) {
2287 slave->new_link = BOND_LINK_DOWN;
2288 commit++;
2289 continue;
2290 }
2291
2292 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002295 case BOND_LINK_DOWN:
2296 if (!link_state)
2297 continue;
2298
2299 slave->link = BOND_LINK_BACK;
2300 slave->delay = bond->params.updelay;
2301
2302 if (slave->delay) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002303 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002304 ": %s: link status up for "
2305 "interface %s, enabling it in %d ms.\n",
2306 bond->dev->name, slave->dev->name,
Jiri Pirko41f89102009-04-24 03:57:29 +00002307 ignore_updelay ? 0 :
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002308 bond->params.updelay *
2309 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002311 /*FALLTHRU*/
2312 case BOND_LINK_BACK:
2313 if (!link_state) {
2314 slave->link = BOND_LINK_DOWN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002315 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 ": %s: link status down again after %d "
2317 "ms for interface %s.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002318 bond->dev->name,
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002319 (bond->params.updelay - slave->delay) *
2320 bond->params.miimon,
2321 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002322
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002323 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002325
Jiri Pirko41f89102009-04-24 03:57:29 +00002326 if (ignore_updelay)
2327 slave->delay = 0;
2328
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002329 if (slave->delay <= 0) {
2330 slave->new_link = BOND_LINK_UP;
2331 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002332 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002333 continue;
2334 }
2335
2336 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002338 }
2339 }
2340
2341 return commit;
2342}
2343
2344static void bond_miimon_commit(struct bonding *bond)
2345{
2346 struct slave *slave;
2347 int i;
2348
2349 bond_for_each_slave(bond, slave, i) {
2350 switch (slave->new_link) {
2351 case BOND_LINK_NOCHANGE:
2352 continue;
2353
2354 case BOND_LINK_UP:
2355 slave->link = BOND_LINK_UP;
2356 slave->jiffies = jiffies;
2357
2358 if (bond->params.mode == BOND_MODE_8023AD) {
2359 /* prevent it from being the active one */
2360 slave->state = BOND_STATE_BACKUP;
2361 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2362 /* make it immediately active */
2363 slave->state = BOND_STATE_ACTIVE;
2364 } else if (slave != bond->primary_slave) {
2365 /* prevent it from being the active one */
2366 slave->state = BOND_STATE_BACKUP;
2367 }
2368
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002369 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002370 ": %s: link status definitely "
2371 "up for interface %s.\n",
2372 bond->dev->name, slave->dev->name);
2373
2374 /* notify ad that the link status has changed */
2375 if (bond->params.mode == BOND_MODE_8023AD)
2376 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2377
Holger Eitzenberger58402052008-12-09 23:07:13 -08002378 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002379 bond_alb_handle_link_change(bond, slave,
2380 BOND_LINK_UP);
2381
2382 if (!bond->curr_active_slave ||
2383 (slave == bond->primary_slave))
2384 goto do_failover;
2385
2386 continue;
2387
2388 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002389 if (slave->link_failure_count < UINT_MAX)
2390 slave->link_failure_count++;
2391
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002392 slave->link = BOND_LINK_DOWN;
2393
2394 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2395 bond->params.mode == BOND_MODE_8023AD)
2396 bond_set_slave_inactive_flags(slave);
2397
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002398 pr_info(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002399 ": %s: link status definitely down for "
2400 "interface %s, disabling it\n",
2401 bond->dev->name, slave->dev->name);
2402
2403 if (bond->params.mode == BOND_MODE_8023AD)
2404 bond_3ad_handle_link_change(slave,
2405 BOND_LINK_DOWN);
2406
Jiri Pirkoae63e802009-05-27 05:42:36 +00002407 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002408 bond_alb_handle_link_change(bond, slave,
2409 BOND_LINK_DOWN);
2410
2411 if (slave == bond->curr_active_slave)
2412 goto do_failover;
2413
2414 continue;
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002417 pr_err(DRV_NAME
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002418 ": %s: invalid new link %d on slave %s\n",
2419 bond->dev->name, slave->new_link,
2420 slave->dev->name);
2421 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002423 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 }
2425
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002426do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002427 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002428 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002430 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002431 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002432
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002433 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002436/*
2437 * bond_mii_monitor
2438 *
2439 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002440 * inspection, then (if inspection indicates something needs to be done)
2441 * an acquisition of appropriate locks followed by a commit phase to
2442 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002443 */
2444void bond_mii_monitor(struct work_struct *work)
2445{
2446 struct bonding *bond = container_of(work, struct bonding,
2447 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002448
2449 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002450 if (bond->kill_timers)
2451 goto out;
2452
2453 if (bond->slave_cnt == 0)
2454 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002455
2456 if (bond->send_grat_arp) {
2457 read_lock(&bond->curr_slave_lock);
2458 bond_send_gratuitous_arp(bond);
2459 read_unlock(&bond->curr_slave_lock);
2460 }
2461
Brian Haley305d5522008-11-04 17:51:14 -08002462 if (bond->send_unsol_na) {
2463 read_lock(&bond->curr_slave_lock);
2464 bond_send_unsolicited_na(bond);
2465 read_unlock(&bond->curr_slave_lock);
2466 }
2467
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002468 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002469 read_unlock(&bond->lock);
2470 rtnl_lock();
2471 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002472
2473 bond_miimon_commit(bond);
2474
Jay Vosburgh56556622008-01-17 16:25:03 -08002475 read_unlock(&bond->lock);
2476 rtnl_unlock(); /* might sleep, hold no other locks */
2477 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002478 }
2479
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002480re_arm:
2481 if (bond->params.miimon)
2482 queue_delayed_work(bond->wq, &bond->mii_work,
2483 msecs_to_jiffies(bond->params.miimon));
2484out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002485 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002486}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002487
Al Virod3bb52b2007-08-22 20:06:58 -04002488static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002489{
2490 struct in_device *idev;
2491 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002492 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002493
2494 if (!dev)
2495 return 0;
2496
2497 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002498 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002499 if (!idev)
2500 goto out;
2501
2502 ifa = idev->ifa_list;
2503 if (!ifa)
2504 goto out;
2505
2506 addr = ifa->ifa_local;
2507out:
2508 rcu_read_unlock();
2509 return addr;
2510}
2511
Al Virod3bb52b2007-08-22 20:06:58 -04002512static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002513{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002514 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002515
2516 if (ip == bond->master_ip)
2517 return 1;
2518
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002519 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002520 if (ip == vlan->vlan_ip)
2521 return 1;
2522 }
2523
2524 return 0;
2525}
2526
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002527/*
2528 * We go to the (large) trouble of VLAN tagging ARP frames because
2529 * switches in VLAN mode (especially if ports are configured as
2530 * "native" to a VLAN) might not pass non-tagged frames.
2531 */
Al Virod3bb52b2007-08-22 20:06:58 -04002532static 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 -04002533{
2534 struct sk_buff *skb;
2535
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002536 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002537 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002538
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002539 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2540 NULL, slave_dev->dev_addr, NULL);
2541
2542 if (!skb) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002543 pr_err(DRV_NAME ": ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002544 return;
2545 }
2546 if (vlan_id) {
2547 skb = vlan_put_tag(skb, vlan_id);
2548 if (!skb) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002549 pr_err(DRV_NAME ": failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002550 return;
2551 }
2552 }
2553 arp_xmit(skb);
2554}
2555
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2558{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002559 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002560 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002561 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002562 struct net_device *vlan_dev;
2563 struct flowi fl;
2564 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Mitch Williams6b780562005-11-09 10:36:19 -08002566 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2567 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002568 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002569 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002570 if (list_empty(&bond->vlan_list)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002571 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002572 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2573 bond->master_ip, 0);
2574 continue;
2575 }
2576
2577 /*
2578 * If VLANs are configured, we do a route lookup to
2579 * determine which VLAN interface would be used, so we
2580 * can tag the ARP with the proper VLAN tag.
2581 */
2582 memset(&fl, 0, sizeof(fl));
2583 fl.fl4_dst = targets[i];
2584 fl.fl4_tos = RTO_ONLINK;
2585
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002586 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002587 if (rv) {
2588 if (net_ratelimit()) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002589 pr_warning(DRV_NAME
Harvey Harrison63779432008-10-31 00:56:00 -07002590 ": %s: no route to arp_ip_target %pI4\n",
2591 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002592 }
2593 continue;
2594 }
2595
2596 /*
2597 * This target is not on a VLAN
2598 */
2599 if (rt->u.dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002600 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002601 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002602 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2603 bond->master_ip, 0);
2604 continue;
2605 }
2606
2607 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002608 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002609 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002610 if (vlan_dev == rt->u.dst.dev) {
2611 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002612 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002613 vlan_dev->name, vlan_id);
2614 break;
2615 }
2616 }
2617
2618 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002619 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002620 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2621 vlan->vlan_ip, vlan_id);
2622 continue;
2623 }
2624
2625 if (net_ratelimit()) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002626 pr_warning(DRV_NAME
Harvey Harrison63779432008-10-31 00:56:00 -07002627 ": %s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2628 bond->dev->name, &fl.fl4_dst,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002629 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
2630 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002631 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002632 }
2633}
2634
2635/*
2636 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2637 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002638 *
2639 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002640 */
2641static void bond_send_gratuitous_arp(struct bonding *bond)
2642{
2643 struct slave *slave = bond->curr_active_slave;
2644 struct vlan_entry *vlan;
2645 struct net_device *vlan_dev;
2646
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002647 pr_debug("bond_send_grat_arp: bond %s slave %s\n", bond->dev->name,
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002648 slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002649
2650 if (!slave || !bond->send_grat_arp ||
2651 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002652 return;
2653
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002654 bond->send_grat_arp--;
2655
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002656 if (bond->master_ip) {
2657 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002658 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002659 }
2660
2661 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002662 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002663 if (vlan->vlan_ip) {
2664 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2665 vlan->vlan_ip, vlan->vlan_id);
2666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
2668}
2669
Al Virod3bb52b2007-08-22 20:06:58 -04002670static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002671{
2672 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002673 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002674
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002675 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002676 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Harvey Harrison63779432008-10-31 00:56:00 -07002677 &sip, &tip, i, &targets[i], bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002678 if (sip == targets[i]) {
2679 if (bond_has_this_ip(bond, tip))
2680 slave->last_arp_rx = jiffies;
2681 return;
2682 }
2683 }
2684}
2685
2686static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2687{
2688 struct arphdr *arp;
2689 struct slave *slave;
2690 struct bonding *bond;
2691 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002692 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002693
2694 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2695 goto out;
2696
Wang Chen454d7c92008-11-12 23:37:49 -08002697 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002698 read_lock(&bond->lock);
2699
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002700 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002701 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2702 orig_dev ? orig_dev->name : "NULL");
2703
2704 slave = bond_get_slave_by_dev(bond, orig_dev);
2705 if (!slave || !slave_do_arp_validate(bond, slave))
2706 goto out_unlock;
2707
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002708 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002709 goto out_unlock;
2710
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002711 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002712 if (arp->ar_hln != dev->addr_len ||
2713 skb->pkt_type == PACKET_OTHERHOST ||
2714 skb->pkt_type == PACKET_LOOPBACK ||
2715 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2716 arp->ar_pro != htons(ETH_P_IP) ||
2717 arp->ar_pln != 4)
2718 goto out_unlock;
2719
2720 arp_ptr = (unsigned char *)(arp + 1);
2721 arp_ptr += dev->addr_len;
2722 memcpy(&sip, arp_ptr, 4);
2723 arp_ptr += 4 + dev->addr_len;
2724 memcpy(&tip, arp_ptr, 4);
2725
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002726 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Harvey Harrison63779432008-10-31 00:56:00 -07002727 bond->dev->name, slave->dev->name, slave->state,
2728 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2729 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002730
2731 /*
2732 * Backup slaves won't see the ARP reply, but do come through
2733 * here for each ARP probe (so we swap the sip/tip to validate
2734 * the probe). In a "redundant switch, common router" type of
2735 * configuration, the ARP probe will (hopefully) travel from
2736 * the active, through one switch, the router, then the other
2737 * switch before reaching the backup.
2738 */
2739 if (slave->state == BOND_STATE_ACTIVE)
2740 bond_validate_arp(bond, slave, sip, tip);
2741 else
2742 bond_validate_arp(bond, slave, tip, sip);
2743
2744out_unlock:
2745 read_unlock(&bond->lock);
2746out:
2747 dev_kfree_skb(skb);
2748 return NET_RX_SUCCESS;
2749}
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751/*
2752 * this function is called regularly to monitor each slave's link
2753 * ensuring that traffic is being sent and received when arp monitoring
2754 * is used in load-balancing mode. if the adapter has been dormant, then an
2755 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2756 * arp monitoring in active backup mode.
2757 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002758void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002760 struct bonding *bond = container_of(work, struct bonding,
2761 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 struct slave *slave, *oldcurrent;
2763 int do_failover = 0;
2764 int delta_in_ticks;
2765 int i;
2766
2767 read_lock(&bond->lock);
2768
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002769 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002771 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002774 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 read_lock(&bond->curr_slave_lock);
2778 oldcurrent = bond->curr_active_slave;
2779 read_unlock(&bond->curr_slave_lock);
2780
2781 /* see if any of the previous devices are up now (i.e. they have
2782 * xmt and rcv traffic). the curr_active_slave does not come into
2783 * the picture unless it is null. also, slave->jiffies is not needed
2784 * here because we send an arp on each slave and give a slave as
2785 * long as it needs to get the tx/rx within the delta.
2786 * TODO: what about up/down delay in arp mode? it wasn't here before
2787 * so it can wait
2788 */
2789 bond_for_each_slave(bond, slave, i) {
2790 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002791 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002792 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 slave->link = BOND_LINK_UP;
2795 slave->state = BOND_STATE_ACTIVE;
2796
2797 /* primary_slave has no meaning in round-robin
2798 * mode. the window of a slave being up and
2799 * curr_active_slave being null after enslaving
2800 * is closed.
2801 */
2802 if (!oldcurrent) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002803 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 ": %s: link status definitely "
2805 "up for interface %s, ",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002806 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 slave->dev->name);
2808 do_failover = 1;
2809 } else {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002810 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 ": %s: interface %s is now up\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002812 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 slave->dev->name);
2814 }
2815 }
2816 } else {
2817 /* slave->link == BOND_LINK_UP */
2818
2819 /* not all switches will respond to an arp request
2820 * when the source ip is 0, so don't take the link down
2821 * if we don't know our ip yet
2822 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002823 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002824 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 slave->link = BOND_LINK_DOWN;
2827 slave->state = BOND_STATE_BACKUP;
2828
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002829 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002832 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 ": %s: interface %s is now down.\n",
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002834 bond->dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 slave->dev->name);
2836
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002837 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 }
2840 }
2841
2842 /* note: if switch is in round-robin mode, all links
2843 * must tx arp to ensure all links rx an arp - otherwise
2844 * links may oscillate or not come up at all; if switch is
2845 * in something like xor mode, there is nothing we can
2846 * do - all replies will be rx'ed on same link causing slaves
2847 * to be unstable during low/no traffic periods
2848 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002849 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852
2853 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002854 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
2856 bond_select_active_slave(bond);
2857
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002858 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 }
2860
2861re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002862 if (bond->params.arp_interval)
2863 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864out:
2865 read_unlock(&bond->lock);
2866}
2867
2868/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002869 * Called to inspect slaves for active-backup mode ARP monitor link state
2870 * changes. Sets new_link in slaves to specify what action should take
2871 * place for the slave. Returns 0 if no changes are found, >0 if changes
2872 * to link states must be committed.
2873 *
2874 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002876static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002879 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002882 slave->new_link = BOND_LINK_NOCHANGE;
2883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002885 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2886 delta_in_ticks)) {
2887 slave->new_link = BOND_LINK_UP;
2888 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002891 continue;
2892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002894 /*
2895 * Give slaves 2*delta after being enslaved or made
2896 * active. This avoids bouncing, as the last receive
2897 * times need a full ARP monitor cycle to be updated.
2898 */
2899 if (!time_after_eq(jiffies, slave->jiffies +
2900 2 * delta_in_ticks))
2901 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002903 /*
2904 * Backup slave is down if:
2905 * - No current_arp_slave AND
2906 * - more than 3*delta since last receive AND
2907 * - the bond has an IP address
2908 *
2909 * Note: a non-null current_arp_slave indicates
2910 * the curr_active_slave went down and we are
2911 * searching for a new one; under this condition
2912 * we only take the curr_active_slave down - this
2913 * gives each slave a chance to tx/rx traffic
2914 * before being taken out
2915 */
2916 if (slave->state == BOND_STATE_BACKUP &&
2917 !bond->current_arp_slave &&
2918 time_after(jiffies, slave_last_rx(bond, slave) +
2919 3 * delta_in_ticks)) {
2920 slave->new_link = BOND_LINK_DOWN;
2921 commit++;
2922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002924 /*
2925 * Active slave is down if:
2926 * - more than 2*delta since transmitting OR
2927 * - (more than 2*delta since receive AND
2928 * the bond has an IP address)
2929 */
2930 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002931 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002932 2 * delta_in_ticks) ||
2933 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2934 + 2 * delta_in_ticks)))) {
2935 slave->new_link = BOND_LINK_DOWN;
2936 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
2938 }
2939
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002940 return commit;
2941}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002943/*
2944 * Called to commit link state changes noted by inspection step of
2945 * active-backup mode ARP monitor.
2946 *
2947 * Called with RTNL and bond->lock for read.
2948 */
2949static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2950{
2951 struct slave *slave;
2952 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002954 bond_for_each_slave(bond, slave, i) {
2955 switch (slave->new_link) {
2956 case BOND_LINK_NOCHANGE:
2957 continue;
2958
2959 case BOND_LINK_UP:
Jiri Pirkob9f60252009-08-31 11:09:38 +00002960 if ((!bond->curr_active_slave &&
2961 time_before_eq(jiffies,
2962 dev_trans_start(slave->dev) +
2963 delta_in_ticks)) ||
2964 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002965 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002966 bond->current_arp_slave = NULL;
2967
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002968 pr_info(DRV_NAME
Jiri Pirkob9f60252009-08-31 11:09:38 +00002969 ": %s: link status definitely "
2970 "up for interface %s.\n",
2971 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002972
Jiri Pirkob9f60252009-08-31 11:09:38 +00002973 if (!bond->curr_active_slave ||
2974 (slave == bond->primary_slave))
2975 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002976
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002977 }
2978
Jiri Pirkob9f60252009-08-31 11:09:38 +00002979 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002980
2981 case BOND_LINK_DOWN:
2982 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002985 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002986 bond_set_slave_inactive_flags(slave);
2987
2988 pr_info(DRV_NAME
2989 ": %s: link status definitely down for "
2990 "interface %s, disabling it\n",
2991 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002992
2993 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002994 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002995 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002996 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00002997
2998 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002999
3000 default:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003001 pr_err(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003002 ": %s: impossible: new_link %d on slave %s\n",
3003 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003005 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Jiri Pirkob9f60252009-08-31 11:09:38 +00003008do_failover:
3009 ASSERT_RTNL();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003010 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003011 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003012 write_unlock_bh(&bond->curr_slave_lock);
3013 }
3014
3015 bond_set_carrier(bond);
3016}
3017
3018/*
3019 * Send ARP probes for active-backup mode ARP monitor.
3020 *
3021 * Called with bond->lock held for read.
3022 */
3023static void bond_ab_arp_probe(struct bonding *bond)
3024{
3025 struct slave *slave;
3026 int i;
3027
3028 read_lock(&bond->curr_slave_lock);
3029
3030 if (bond->current_arp_slave && bond->curr_active_slave)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003031 pr_info(DRV_NAME "PROBE: c_arp %s && cas %s BAD\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003032 bond->current_arp_slave->dev->name,
3033 bond->curr_active_slave->dev->name);
3034
3035 if (bond->curr_active_slave) {
3036 bond_arp_send_all(bond, bond->curr_active_slave);
3037 read_unlock(&bond->curr_slave_lock);
3038 return;
3039 }
3040
3041 read_unlock(&bond->curr_slave_lock);
3042
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 /* if we don't have a curr_active_slave, search for the next available
3044 * backup slave from the current_arp_slave and make it the candidate
3045 * for becoming the curr_active_slave
3046 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003047
3048 if (!bond->current_arp_slave) {
3049 bond->current_arp_slave = bond->first_slave;
3050 if (!bond->current_arp_slave)
3051 return;
3052 }
3053
3054 bond_set_slave_inactive_flags(bond->current_arp_slave);
3055
3056 /* search for next candidate */
3057 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3058 if (IS_UP(slave->dev)) {
3059 slave->link = BOND_LINK_BACK;
3060 bond_set_slave_active_flags(slave);
3061 bond_arp_send_all(bond, slave);
3062 slave->jiffies = jiffies;
3063 bond->current_arp_slave = slave;
3064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 }
3066
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003067 /* if the link state is up at this point, we
3068 * mark it down - this can happen if we have
3069 * simultaneous link failures and
3070 * reselect_active_interface doesn't make this
3071 * one the current slave so it is still marked
3072 * up when it is actually down
3073 */
3074 if (slave->link == BOND_LINK_UP) {
3075 slave->link = BOND_LINK_DOWN;
3076 if (slave->link_failure_count < UINT_MAX)
3077 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003079 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003081 pr_info(DRV_NAME
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003082 ": %s: backup interface %s is now down.\n",
3083 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003086}
3087
3088void bond_activebackup_arp_mon(struct work_struct *work)
3089{
3090 struct bonding *bond = container_of(work, struct bonding,
3091 arp_work.work);
3092 int delta_in_ticks;
3093
3094 read_lock(&bond->lock);
3095
3096 if (bond->kill_timers)
3097 goto out;
3098
3099 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3100
3101 if (bond->slave_cnt == 0)
3102 goto re_arm;
3103
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003104 if (bond->send_grat_arp) {
3105 read_lock(&bond->curr_slave_lock);
3106 bond_send_gratuitous_arp(bond);
3107 read_unlock(&bond->curr_slave_lock);
3108 }
3109
Brian Haley305d5522008-11-04 17:51:14 -08003110 if (bond->send_unsol_na) {
3111 read_lock(&bond->curr_slave_lock);
3112 bond_send_unsolicited_na(bond);
3113 read_unlock(&bond->curr_slave_lock);
3114 }
3115
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003116 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3117 read_unlock(&bond->lock);
3118 rtnl_lock();
3119 read_lock(&bond->lock);
3120
3121 bond_ab_arp_commit(bond, delta_in_ticks);
3122
3123 read_unlock(&bond->lock);
3124 rtnl_unlock();
3125 read_lock(&bond->lock);
3126 }
3127
3128 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
3130re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003131 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003132 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133out:
3134 read_unlock(&bond->lock);
3135}
3136
3137/*------------------------------ proc/seq_file-------------------------------*/
3138
3139#ifdef CONFIG_PROC_FS
3140
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003142 __acquires(&dev_base_lock)
3143 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144{
3145 struct bonding *bond = seq->private;
3146 loff_t off = 0;
3147 struct slave *slave;
3148 int i;
3149
3150 /* make sure the bond won't be taken away */
3151 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003152 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003154 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
3157 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003158 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 }
3161
3162 return NULL;
3163}
3164
3165static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3166{
3167 struct bonding *bond = seq->private;
3168 struct slave *slave = v;
3169
3170 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003171 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174 slave = slave->next;
3175
3176 return (slave == bond->first_slave) ? NULL : slave;
3177}
3178
3179static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003180 __releases(&bond->lock)
3181 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
3183 struct bonding *bond = seq->private;
3184
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003185 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 read_unlock(&dev_base_lock);
3187}
3188
3189static void bond_info_show_master(struct seq_file *seq)
3190{
3191 struct bonding *bond = seq->private;
3192 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003193 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
3195 read_lock(&bond->curr_slave_lock);
3196 curr = bond->curr_active_slave;
3197 read_unlock(&bond->curr_slave_lock);
3198
Jay Vosburghdd957c52007-10-09 19:57:24 -07003199 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 bond_mode_name(bond->params.mode));
3201
Jay Vosburghdd957c52007-10-09 19:57:24 -07003202 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3203 bond->params.fail_over_mac)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003204 seq_printf(seq, " (fail_over_mac %s)",
3205 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003206
3207 seq_printf(seq, "\n");
3208
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003209 if (bond->params.mode == BOND_MODE_XOR ||
3210 bond->params.mode == BOND_MODE_8023AD) {
3211 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3212 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3213 bond->params.xmit_policy);
3214 }
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003217 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003218 (bond->primary_slave) ?
3219 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003220 if (bond->primary_slave)
3221 seq_printf(seq, " (primary_reselect %s)",
3222 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Jiri Pirkoa5499522009-09-25 03:28:09 +00003224 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 (curr) ? curr->dev->name : "None");
3226 }
3227
Jay Vosburghff59c452006-03-27 13:27:43 -08003228 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3229 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3231 seq_printf(seq, "Up Delay (ms): %d\n",
3232 bond->params.updelay * bond->params.miimon);
3233 seq_printf(seq, "Down Delay (ms): %d\n",
3234 bond->params.downdelay * bond->params.miimon);
3235
Mitch Williams4756b022005-11-09 10:36:25 -08003236
3237 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003238 if (bond->params.arp_interval > 0) {
3239 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003240 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3241 bond->params.arp_interval);
3242
3243 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3244
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003245 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003246 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003247 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003248 if (printed)
3249 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003250 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003251 printed = 1;
3252 }
3253 seq_printf(seq, "\n");
3254 }
3255
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 if (bond->params.mode == BOND_MODE_8023AD) {
3257 struct ad_info ad_info;
3258
3259 seq_puts(seq, "\n802.3ad info\n");
3260 seq_printf(seq, "LACP rate: %s\n",
3261 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003262 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3263 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
3265 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3266 seq_printf(seq, "bond %s has no active aggregator\n",
3267 bond->dev->name);
3268 } else {
3269 seq_printf(seq, "Active Aggregator Info:\n");
3270
3271 seq_printf(seq, "\tAggregator ID: %d\n",
3272 ad_info.aggregator_id);
3273 seq_printf(seq, "\tNumber of ports: %d\n",
3274 ad_info.ports);
3275 seq_printf(seq, "\tActor Key: %d\n",
3276 ad_info.actor_key);
3277 seq_printf(seq, "\tPartner Key: %d\n",
3278 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003279 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3280 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 }
3282 }
3283}
3284
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003285static void bond_info_show_slave(struct seq_file *seq,
3286 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
3288 struct bonding *bond = seq->private;
3289
3290 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3291 seq_printf(seq, "MII Status: %s\n",
3292 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami655096452006-09-22 21:53:08 -07003293 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 slave->link_failure_count);
3295
Johannes Berge1749612008-10-27 15:59:26 -07003296 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298 if (bond->params.mode == BOND_MODE_8023AD) {
3299 const struct aggregator *agg
3300 = SLAVE_AD_INFO(slave).port.aggregator;
3301
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003302 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 seq_printf(seq, "Aggregator ID: %d\n",
3304 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003305 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 }
3308}
3309
3310static int bond_info_seq_show(struct seq_file *seq, void *v)
3311{
3312 if (v == SEQ_START_TOKEN) {
3313 seq_printf(seq, "%s\n", version);
3314 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003315 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318 return 0;
3319}
3320
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003321static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 .start = bond_info_seq_start,
3323 .next = bond_info_seq_next,
3324 .stop = bond_info_seq_stop,
3325 .show = bond_info_seq_show,
3326};
3327
3328static int bond_info_open(struct inode *inode, struct file *file)
3329{
3330 struct seq_file *seq;
3331 struct proc_dir_entry *proc;
3332 int res;
3333
3334 res = seq_open(file, &bond_info_seq_ops);
3335 if (!res) {
3336 /* recover the pointer buried in proc_dir_entry data */
3337 seq = file->private_data;
3338 proc = PDE(inode);
3339 seq->private = proc->data;
3340 }
3341
3342 return res;
3343}
3344
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003345static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 .owner = THIS_MODULE,
3347 .open = bond_info_open,
3348 .read = seq_read,
3349 .llseek = seq_lseek,
3350 .release = seq_release,
3351};
3352
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003353static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354{
3355 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003356 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003358 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003359 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003360 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003361 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003362 if (bond->proc_entry == NULL)
3363 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 ": Warning: Cannot create /proc/net/%s/%s\n",
3365 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003366 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369}
3370
3371static void bond_remove_proc_entry(struct bonding *bond)
3372{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003373 struct net_device *bond_dev = bond->dev;
3374 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3375
3376 if (bn->proc_dir && bond->proc_entry) {
3377 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 memset(bond->proc_file_name, 0, IFNAMSIZ);
3379 bond->proc_entry = NULL;
3380 }
3381}
3382
3383/* Create the bonding directory under /proc/net, if doesn't exist yet.
3384 * Caller must hold rtnl_lock.
3385 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003386static void bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003388 if (!bn->proc_dir) {
3389 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3390 if (!bn->proc_dir)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003391 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 ": Warning: cannot create /proc/net/%s\n",
3393 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 }
3395}
3396
3397/* Destroy the bonding directory under /proc/net, if empty.
3398 * Caller must hold rtnl_lock.
3399 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003400static void bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003402 if (bn->proc_dir) {
3403 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3404 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 }
3406}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003407
3408#else /* !CONFIG_PROC_FS */
3409
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003410static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003411{
3412}
3413
3414static void bond_remove_proc_entry(struct bonding *bond)
3415{
3416}
3417
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003418static void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003419{
3420}
3421
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003422static void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003423{
3424}
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426#endif /* CONFIG_PROC_FS */
3427
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003428
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429/*-------------------------- netdev event handling --------------------------*/
3430
3431/*
3432 * Change device name
3433 */
3434static int bond_event_changename(struct bonding *bond)
3435{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 bond_remove_proc_entry(bond);
3437 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003438
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 return NOTIFY_DONE;
3440}
3441
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003442static int bond_master_netdev_event(unsigned long event,
3443 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444{
Wang Chen454d7c92008-11-12 23:37:49 -08003445 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
3447 switch (event) {
3448 case NETDEV_CHANGENAME:
3449 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 default:
3451 break;
3452 }
3453
3454 return NOTIFY_DONE;
3455}
3456
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003457static int bond_slave_netdev_event(unsigned long event,
3458 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459{
3460 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003461 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
3463 switch (event) {
3464 case NETDEV_UNREGISTER:
3465 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003466 if (bond->setup_by_slave)
3467 bond_release_and_destroy(bond_dev, slave_dev);
3468 else
3469 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 }
3471 break;
3472 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003473 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3474 struct slave *slave;
3475
3476 slave = bond_get_slave_by_dev(bond, slave_dev);
3477 if (slave) {
3478 u16 old_speed = slave->speed;
3479 u16 old_duplex = slave->duplex;
3480
3481 bond_update_speed_duplex(slave);
3482
3483 if (bond_is_lb(bond))
3484 break;
3485
3486 if (old_speed != slave->speed)
3487 bond_3ad_adapter_speed_changed(slave);
3488 if (old_duplex != slave->duplex)
3489 bond_3ad_adapter_duplex_changed(slave);
3490 }
3491 }
3492
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 break;
3494 case NETDEV_DOWN:
3495 /*
3496 * ... Or is it this?
3497 */
3498 break;
3499 case NETDEV_CHANGEMTU:
3500 /*
3501 * TODO: Should slaves be allowed to
3502 * independently alter their MTU? For
3503 * an active-backup bond, slaves need
3504 * not be the same type of device, so
3505 * MTUs may vary. For other modes,
3506 * slaves arguably should have the
3507 * same MTUs. To do this, we'd need to
3508 * take over the slave's change_mtu
3509 * function for the duration of their
3510 * servitude.
3511 */
3512 break;
3513 case NETDEV_CHANGENAME:
3514 /*
3515 * TODO: handle changing the primary's name
3516 */
3517 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003518 case NETDEV_FEAT_CHANGE:
3519 bond_compute_features(bond);
3520 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 default:
3522 break;
3523 }
3524
3525 return NOTIFY_DONE;
3526}
3527
3528/*
3529 * bond_netdev_event: handle netdev notifier chain events.
3530 *
3531 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003532 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 * locks for us to safely manipulate the slave devices (RTNL lock,
3534 * dev_probe_lock).
3535 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003536static int bond_netdev_event(struct notifier_block *this,
3537 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538{
3539 struct net_device *event_dev = (struct net_device *)ptr;
3540
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003541 pr_debug("event_dev: %s, event: %lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 (event_dev ? event_dev->name : "None"),
3543 event);
3544
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003545 if (!(event_dev->priv_flags & IFF_BONDING))
3546 return NOTIFY_DONE;
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003549 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 return bond_master_netdev_event(event, event_dev);
3551 }
3552
3553 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003554 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 return bond_slave_netdev_event(event, event_dev);
3556 }
3557
3558 return NOTIFY_DONE;
3559}
3560
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003561/*
3562 * bond_inetaddr_event: handle inetaddr notifier chain events.
3563 *
3564 * We keep track of device IPs primarily to use as source addresses in
3565 * ARP monitor probes (rather than spewing out broadcasts all the time).
3566 *
3567 * We track one IP for the main device (if it has one), plus one per VLAN.
3568 */
3569static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3570{
3571 struct in_ifaddr *ifa = ptr;
3572 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003573 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003574 struct bonding *bond;
3575 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003576
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003577 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003578 if (bond->dev == event_dev) {
3579 switch (event) {
3580 case NETDEV_UP:
3581 bond->master_ip = ifa->ifa_local;
3582 return NOTIFY_OK;
3583 case NETDEV_DOWN:
3584 bond->master_ip = bond_glean_dev_ip(bond->dev);
3585 return NOTIFY_OK;
3586 default:
3587 return NOTIFY_DONE;
3588 }
3589 }
3590
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003591 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08003592 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003593 if (vlan_dev == event_dev) {
3594 switch (event) {
3595 case NETDEV_UP:
3596 vlan->vlan_ip = ifa->ifa_local;
3597 return NOTIFY_OK;
3598 case NETDEV_DOWN:
3599 vlan->vlan_ip =
3600 bond_glean_dev_ip(vlan_dev);
3601 return NOTIFY_OK;
3602 default:
3603 return NOTIFY_DONE;
3604 }
3605 }
3606 }
3607 }
3608 return NOTIFY_DONE;
3609}
3610
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611static struct notifier_block bond_netdev_notifier = {
3612 .notifier_call = bond_netdev_event,
3613};
3614
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003615static struct notifier_block bond_inetaddr_notifier = {
3616 .notifier_call = bond_inetaddr_event,
3617};
3618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619/*-------------------------- Packet type handling ---------------------------*/
3620
3621/* register to receive lacpdus on a bond */
3622static void bond_register_lacpdu(struct bonding *bond)
3623{
3624 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3625
3626 /* initialize packet type */
3627 pk_type->type = PKT_TYPE_LACPDU;
3628 pk_type->dev = bond->dev;
3629 pk_type->func = bond_3ad_lacpdu_recv;
3630
3631 dev_add_pack(pk_type);
3632}
3633
3634/* unregister to receive lacpdus on a bond */
3635static void bond_unregister_lacpdu(struct bonding *bond)
3636{
3637 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3638}
3639
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003640void bond_register_arp(struct bonding *bond)
3641{
3642 struct packet_type *pt = &bond->arp_mon_pt;
3643
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003644 if (pt->type)
3645 return;
3646
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003647 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003648 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003649 pt->func = bond_arp_rcv;
3650 dev_add_pack(pt);
3651}
3652
3653void bond_unregister_arp(struct bonding *bond)
3654{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003655 struct packet_type *pt = &bond->arp_mon_pt;
3656
3657 dev_remove_pack(pt);
3658 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003659}
3660
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003661/*---------------------------- Hashing Policies -----------------------------*/
3662
3663/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003664 * Hash for the output device based upon layer 2 and layer 3 data. If
3665 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3666 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003667static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003668{
3669 struct ethhdr *data = (struct ethhdr *)skb->data;
3670 struct iphdr *iph = ip_hdr(skb);
3671
Brian Haleyf14c4e42008-09-02 10:08:08 -04003672 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003673 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003674 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003675 }
3676
Jasper Spaansd3da6832009-10-23 04:08:46 +00003677 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003678}
3679
3680/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003681 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003682 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3683 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3684 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003685static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003686{
3687 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003688 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003689 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003690 int layer4_xor = 0;
3691
Brian Haleyf14c4e42008-09-02 10:08:08 -04003692 if (skb->protocol == htons(ETH_P_IP)) {
3693 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003694 (iph->protocol == IPPROTO_TCP ||
3695 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003696 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003697 }
3698 return (layer4_xor ^
3699 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3700
3701 }
3702
Jasper Spaansd3da6832009-10-23 04:08:46 +00003703 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003704}
3705
3706/*
3707 * Hash for the output device based upon layer 2 data
3708 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003709static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003710{
3711 struct ethhdr *data = (struct ethhdr *)skb->data;
3712
Jasper Spaansd3da6832009-10-23 04:08:46 +00003713 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003714}
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716/*-------------------------- Device entry points ----------------------------*/
3717
3718static int bond_open(struct net_device *bond_dev)
3719{
Wang Chen454d7c92008-11-12 23:37:49 -08003720 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
3722 bond->kill_timers = 0;
3723
Holger Eitzenberger58402052008-12-09 23:07:13 -08003724 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 /* bond_alb_initialize must be called before the timer
3726 * is started.
3727 */
3728 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3729 /* something went wrong - fail the open operation */
3730 return -1;
3731 }
3732
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003733 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3734 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 }
3736
3737 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003738 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3739 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 }
3741
3742 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003743 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3744 INIT_DELAYED_WORK(&bond->arp_work,
3745 bond_activebackup_arp_mon);
3746 else
3747 INIT_DELAYED_WORK(&bond->arp_work,
3748 bond_loadbalance_arp_mon);
3749
3750 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003751 if (bond->params.arp_validate)
3752 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 }
3754
3755 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003756 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003757 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 /* register to receive LACPDUs */
3759 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003760 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 }
3762
3763 return 0;
3764}
3765
3766static int bond_close(struct net_device *bond_dev)
3767{
Wang Chen454d7c92008-11-12 23:37:49 -08003768 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
3770 if (bond->params.mode == BOND_MODE_8023AD) {
3771 /* Unregister the receive of LACPDUs */
3772 bond_unregister_lacpdu(bond);
3773 }
3774
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003775 if (bond->params.arp_validate)
3776 bond_unregister_arp(bond);
3777
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 write_lock_bh(&bond->lock);
3779
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003780 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003781 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
3783 /* signal timers not to re-arm */
3784 bond->kill_timers = 1;
3785
3786 write_unlock_bh(&bond->lock);
3787
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003789 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 }
3791
3792 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003793 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 }
3795
3796 switch (bond->params.mode) {
3797 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003798 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 break;
3800 case BOND_MODE_TLB:
3801 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003802 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 break;
3804 default:
3805 break;
3806 }
3807
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Holger Eitzenberger58402052008-12-09 23:07:13 -08003809 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 /* Must be called only after all
3811 * slaves have been released
3812 */
3813 bond_alb_deinitialize(bond);
3814 }
3815
3816 return 0;
3817}
3818
3819static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3820{
Wang Chen454d7c92008-11-12 23:37:49 -08003821 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003822 struct net_device_stats *stats = &bond->stats;
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003823 struct net_device_stats local_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 struct slave *slave;
3825 int i;
3826
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003827 memset(&local_stats, 0, sizeof(struct net_device_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829 read_lock_bh(&bond->lock);
3830
3831 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003832 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3833
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003834 local_stats.rx_packets += sstats->rx_packets;
3835 local_stats.rx_bytes += sstats->rx_bytes;
3836 local_stats.rx_errors += sstats->rx_errors;
3837 local_stats.rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003839 local_stats.tx_packets += sstats->tx_packets;
3840 local_stats.tx_bytes += sstats->tx_bytes;
3841 local_stats.tx_errors += sstats->tx_errors;
3842 local_stats.tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003844 local_stats.multicast += sstats->multicast;
3845 local_stats.collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003847 local_stats.rx_length_errors += sstats->rx_length_errors;
3848 local_stats.rx_over_errors += sstats->rx_over_errors;
3849 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3850 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3851 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3852 local_stats.rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003854 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3855 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3856 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3857 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3858 local_stats.tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 }
3860
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003861 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
3862
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 read_unlock_bh(&bond->lock);
3864
3865 return stats;
3866}
3867
3868static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3869{
3870 struct net_device *slave_dev = NULL;
3871 struct ifbond k_binfo;
3872 struct ifbond __user *u_binfo = NULL;
3873 struct ifslave k_sinfo;
3874 struct ifslave __user *u_sinfo = NULL;
3875 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 int res = 0;
3877
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003878 pr_debug("bond_ioctl: master=%s, cmd=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 bond_dev->name, cmd);
3880
3881 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 case SIOCGMIIPHY:
3883 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003884 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003886
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 mii->phy_id = 0;
3888 /* Fall Through */
3889 case SIOCGMIIREG:
3890 /*
3891 * We do this again just in case we were called by SIOCGMIIREG
3892 * instead of SIOCGMIIPHY.
3893 */
3894 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003895 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003900 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003902 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003904 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003908 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 }
3910
3911 return 0;
3912 case BOND_INFO_QUERY_OLD:
3913 case SIOCBONDINFOQUERY:
3914 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3915
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003916 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
3919 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003920 if (res == 0 &&
3921 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3922 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
3924 return res;
3925 case BOND_SLAVE_INFO_QUERY_OLD:
3926 case SIOCBONDSLAVEINFOQUERY:
3927 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3928
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003929 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
3932 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003933 if (res == 0 &&
3934 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3935 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
3937 return res;
3938 default:
3939 /* Go on */
3940 break;
3941 }
3942
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003943 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003946 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003948 pr_debug("slave_dev=%p: \n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003950 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003952 else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003953 pr_debug("slave_dev->name=%s: \n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 switch (cmd) {
3955 case BOND_ENSLAVE_OLD:
3956 case SIOCBONDENSLAVE:
3957 res = bond_enslave(bond_dev, slave_dev);
3958 break;
3959 case BOND_RELEASE_OLD:
3960 case SIOCBONDRELEASE:
3961 res = bond_release(bond_dev, slave_dev);
3962 break;
3963 case BOND_SETHWADDR_OLD:
3964 case SIOCBONDSETHWADDR:
3965 res = bond_sethwaddr(bond_dev, slave_dev);
3966 break;
3967 case BOND_CHANGE_ACTIVE_OLD:
3968 case SIOCBONDCHANGEACTIVE:
3969 res = bond_ioctl_change_active(bond_dev, slave_dev);
3970 break;
3971 default:
3972 res = -EOPNOTSUPP;
3973 }
3974
3975 dev_put(slave_dev);
3976 }
3977
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 return res;
3979}
3980
3981static void bond_set_multicast_list(struct net_device *bond_dev)
3982{
Wang Chen454d7c92008-11-12 23:37:49 -08003983 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 struct dev_mc_list *dmi;
3985
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 /*
3987 * Do promisc before checking multicast_mode
3988 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003989 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003990 /*
3991 * FIXME: Need to handle the error when one of the multi-slaves
3992 * encounters error.
3993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003996
3997 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
4001 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004002 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07004003 /*
4004 * FIXME: Need to handle the error when one of the multi-slaves
4005 * encounters error.
4006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004009
4010 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004012
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004014 read_lock(&bond->lock);
4015
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 bond->flags = bond_dev->flags;
4017
4018 /* looking for addresses to add to slaves' mc list */
4019 for (dmi = bond_dev->mc_list; dmi; dmi = dmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004020 if (!bond_mc_list_find_dmi(dmi, bond->mc_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 bond_mc_add(bond, dmi->dmi_addr, dmi->dmi_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 }
4023
4024 /* looking for addresses to delete from slaves' list */
4025 for (dmi = bond->mc_list; dmi; dmi = dmi->next) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004026 if (!bond_mc_list_find_dmi(dmi, bond_dev->mc_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 bond_mc_delete(bond, dmi->dmi_addr, dmi->dmi_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 }
4029
4030 /* save master's multicast list */
4031 bond_mc_list_destroy(bond);
4032 bond_mc_list_copy(bond_dev->mc_list, bond, GFP_ATOMIC);
4033
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08004034 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035}
4036
Stephen Hemminger00829822008-11-20 20:14:53 -08004037static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4038{
4039 struct bonding *bond = netdev_priv(dev);
4040 struct slave *slave = bond->first_slave;
4041
4042 if (slave) {
4043 const struct net_device_ops *slave_ops
4044 = slave->dev->netdev_ops;
4045 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08004046 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08004047 }
4048 return 0;
4049}
4050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051/*
4052 * Change the MTU of all of a master's slaves to match the master
4053 */
4054static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4055{
Wang Chen454d7c92008-11-12 23:37:49 -08004056 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 struct slave *slave, *stop_at;
4058 int res = 0;
4059 int i;
4060
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004061 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 (bond_dev ? bond_dev->name : "None"), new_mtu);
4063
4064 /* Can't hold bond->lock with bh disabled here since
4065 * some base drivers panic. On the other hand we can't
4066 * hold bond->lock without bh disabled because we'll
4067 * deadlock. The only solution is to rely on the fact
4068 * that we're under rtnl_lock here, and the slaves
4069 * list won't change. This doesn't solve the problem
4070 * of setting the slave's MTU while it is
4071 * transmitting, but the assumption is that the base
4072 * driver can handle that.
4073 *
4074 * TODO: figure out a way to safely iterate the slaves
4075 * list, but without holding a lock around the actual
4076 * call to the base driver.
4077 */
4078
4079 bond_for_each_slave(bond, slave, i) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004080 pr_debug("s %p s->p %p c_m %p\n", slave,
Stephen Hemminger53a32942009-01-06 10:41:56 -08004081 slave->prev, slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08004082
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 res = dev_set_mtu(slave->dev, new_mtu);
4084
4085 if (res) {
4086 /* If we failed to set the slave's mtu to the new value
4087 * we must abort the operation even in ACTIVE_BACKUP
4088 * mode, because if we allow the backup slaves to have
4089 * different mtu values than the active slave we'll
4090 * need to change their mtu when doing a failover. That
4091 * means changing their mtu from timer context, which
4092 * is probably not a good idea.
4093 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004094 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 goto unwind;
4096 }
4097 }
4098
4099 bond_dev->mtu = new_mtu;
4100
4101 return 0;
4102
4103unwind:
4104 /* unwind from head to the slave that failed */
4105 stop_at = slave;
4106 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4107 int tmp_res;
4108
4109 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4110 if (tmp_res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004111 pr_debug("unwind err %d dev %s\n", tmp_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 slave->dev->name);
4113 }
4114 }
4115
4116 return res;
4117}
4118
4119/*
4120 * Change HW address
4121 *
4122 * Note that many devices must be down to change the HW address, and
4123 * downing the master releases all slaves. We can make bonds full of
4124 * bonding devices to test this, however.
4125 */
4126static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4127{
Wang Chen454d7c92008-11-12 23:37:49 -08004128 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 struct sockaddr *sa = addr, tmp_sa;
4130 struct slave *slave, *stop_at;
4131 int res = 0;
4132 int i;
4133
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004134 if (bond->params.mode == BOND_MODE_ALB)
4135 return bond_alb_set_mac_address(bond_dev, addr);
4136
4137
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004138 pr_debug("bond=%p, name=%s\n", bond, (bond_dev ? bond_dev->name : "None"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
Jay Vosburghdd957c52007-10-09 19:57:24 -07004140 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004141 * If fail_over_mac is set to active, do nothing and return
4142 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004143 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004144 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004145 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004146
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004147 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
4150 /* Can't hold bond->lock with bh disabled here since
4151 * some base drivers panic. On the other hand we can't
4152 * hold bond->lock without bh disabled because we'll
4153 * deadlock. The only solution is to rely on the fact
4154 * that we're under rtnl_lock here, and the slaves
4155 * list won't change. This doesn't solve the problem
4156 * of setting the slave's hw address while it is
4157 * transmitting, but the assumption is that the base
4158 * driver can handle that.
4159 *
4160 * TODO: figure out a way to safely iterate the slaves
4161 * list, but without holding a lock around the actual
4162 * call to the base driver.
4163 */
4164
4165 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004166 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004167 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004169 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004171 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 goto unwind;
4173 }
4174
4175 res = dev_set_mac_address(slave->dev, addr);
4176 if (res) {
4177 /* TODO: consider downing the slave
4178 * and retry ?
4179 * User should expect communications
4180 * breakage anyway until ARP finish
4181 * updating, so...
4182 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004183 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 goto unwind;
4185 }
4186 }
4187
4188 /* success */
4189 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4190 return 0;
4191
4192unwind:
4193 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4194 tmp_sa.sa_family = bond_dev->type;
4195
4196 /* unwind from head to the slave that failed */
4197 stop_at = slave;
4198 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4199 int tmp_res;
4200
4201 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4202 if (tmp_res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004203 pr_debug("unwind err %d dev %s\n", tmp_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 slave->dev->name);
4205 }
4206 }
4207
4208 return res;
4209}
4210
4211static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4212{
Wang Chen454d7c92008-11-12 23:37:49 -08004213 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004215 int i, slave_no, res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
4217 read_lock(&bond->lock);
4218
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004219 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004222 /*
4223 * Concurrent TX may collide on rr_tx_counter; we accept that
4224 * as being rare enough not to justify using an atomic op here
4225 */
4226 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004228 bond_for_each_slave(bond, slave, i) {
4229 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004230 if (slave_no < 0)
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004231 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 }
4233
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004234 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 bond_for_each_slave_from(bond, slave, i, start_at) {
4236 if (IS_UP(slave->dev) &&
4237 (slave->link == BOND_LINK_UP) &&
4238 (slave->state == BOND_STATE_ACTIVE)) {
4239 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 break;
4241 }
4242 }
4243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244out:
4245 if (res) {
4246 /* no suitable interface, frame not sent */
4247 dev_kfree_skb(skb);
4248 }
4249 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004250 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251}
4252
John W. Linville075897c2005-09-28 17:50:53 -04004253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254/*
4255 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4256 * the bond has a usable interface.
4257 */
4258static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4259{
Wang Chen454d7c92008-11-12 23:37:49 -08004260 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 int res = 1;
4262
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 read_lock(&bond->lock);
4264 read_lock(&bond->curr_slave_lock);
4265
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004266 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
John W. Linville075897c2005-09-28 17:50:53 -04004269 if (!bond->curr_active_slave)
4270 goto out;
4271
John W. Linville075897c2005-09-28 17:50:53 -04004272 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4273
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004275 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 /* no suitable interface, frame not sent */
4277 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004278
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 read_unlock(&bond->curr_slave_lock);
4280 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004281 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282}
4283
4284/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004285 * In bond_xmit_xor() , we determine the output device by using a pre-
4286 * determined xmit_hash_policy(), If the selected device is not enabled,
4287 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 */
4289static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4290{
Wang Chen454d7c92008-11-12 23:37:49 -08004291 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 struct slave *slave, *start_at;
4293 int slave_no;
4294 int i;
4295 int res = 1;
4296
4297 read_lock(&bond->lock);
4298
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004299 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
Jasper Spaansa361c832009-10-23 04:09:24 +00004302 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
4304 bond_for_each_slave(bond, slave, i) {
4305 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004306 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 }
4309
4310 start_at = slave;
4311
4312 bond_for_each_slave_from(bond, slave, i, start_at) {
4313 if (IS_UP(slave->dev) &&
4314 (slave->link == BOND_LINK_UP) &&
4315 (slave->state == BOND_STATE_ACTIVE)) {
4316 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4317 break;
4318 }
4319 }
4320
4321out:
4322 if (res) {
4323 /* no suitable interface, frame not sent */
4324 dev_kfree_skb(skb);
4325 }
4326 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004327 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328}
4329
4330/*
4331 * in broadcast mode, we send everything to all usable interfaces.
4332 */
4333static int bond_xmit_broadcast(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 struct net_device *tx_dev = NULL;
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
4346 read_lock(&bond->curr_slave_lock);
4347 start_at = bond->curr_active_slave;
4348 read_unlock(&bond->curr_slave_lock);
4349
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004350 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
4353 bond_for_each_slave_from(bond, slave, i, start_at) {
4354 if (IS_UP(slave->dev) &&
4355 (slave->link == BOND_LINK_UP) &&
4356 (slave->state == BOND_STATE_ACTIVE)) {
4357 if (tx_dev) {
4358 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4359 if (!skb2) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004360 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08004361 ": %s: Error: bond_xmit_broadcast(): "
4362 "skb_clone() failed\n",
4363 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 continue;
4365 }
4366
4367 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4368 if (res) {
4369 dev_kfree_skb(skb2);
4370 continue;
4371 }
4372 }
4373 tx_dev = slave->dev;
4374 }
4375 }
4376
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004377 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
4380out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004381 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 /* no suitable interface, frame not sent */
4383 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004384
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 /* frame sent to all suitable interfaces */
4386 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004387 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388}
4389
4390/*------------------------- Device initialization ---------------------------*/
4391
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004392static void bond_set_xmit_hash_policy(struct bonding *bond)
4393{
4394 switch (bond->params.xmit_policy) {
4395 case BOND_XMIT_POLICY_LAYER23:
4396 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4397 break;
4398 case BOND_XMIT_POLICY_LAYER34:
4399 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4400 break;
4401 case BOND_XMIT_POLICY_LAYER2:
4402 default:
4403 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4404 break;
4405 }
4406}
4407
Stephen Hemminger424efe92009-08-31 19:50:51 +00004408static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004409{
4410 const struct bonding *bond = netdev_priv(dev);
4411
4412 switch (bond->params.mode) {
4413 case BOND_MODE_ROUNDROBIN:
4414 return bond_xmit_roundrobin(skb, dev);
4415 case BOND_MODE_ACTIVEBACKUP:
4416 return bond_xmit_activebackup(skb, dev);
4417 case BOND_MODE_XOR:
4418 return bond_xmit_xor(skb, dev);
4419 case BOND_MODE_BROADCAST:
4420 return bond_xmit_broadcast(skb, dev);
4421 case BOND_MODE_8023AD:
4422 return bond_3ad_xmit_xor(skb, dev);
4423 case BOND_MODE_ALB:
4424 case BOND_MODE_TLB:
4425 return bond_alb_xmit(skb, dev);
4426 default:
4427 /* Should never happen, mode already checked */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004428 pr_err(DRV_NAME ": %s: Error: Unknown bonding mode %d\n",
Stephen Hemminger00829822008-11-20 20:14:53 -08004429 dev->name, bond->params.mode);
4430 WARN_ON_ONCE(1);
4431 dev_kfree_skb(skb);
4432 return NETDEV_TX_OK;
4433 }
4434}
4435
4436
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437/*
4438 * set bond mode specific net device operations
4439 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004440void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004442 struct net_device *bond_dev = bond->dev;
4443
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 switch (mode) {
4445 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 break;
4447 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 break;
4449 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004450 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 break;
4452 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 break;
4454 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004455 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004456 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004459 bond_set_master_alb_flags(bond);
4460 /* FALLTHRU */
4461 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 break;
4463 default:
4464 /* Should never happen, mode already checked */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004465 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08004466 ": %s: Error: Unknown bonding mode %d\n",
4467 bond_dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 mode);
4469 break;
4470 }
4471}
4472
Jay Vosburgh217df672005-09-26 16:11:50 -07004473static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4474 struct ethtool_drvinfo *drvinfo)
4475{
4476 strncpy(drvinfo->driver, DRV_NAME, 32);
4477 strncpy(drvinfo->version, DRV_VERSION, 32);
4478 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4479}
4480
Jeff Garzik7282d492006-09-13 14:30:00 -04004481static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004482 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004483 .get_link = ethtool_op_get_link,
4484 .get_tx_csum = ethtool_op_get_tx_csum,
4485 .get_sg = ethtool_op_get_sg,
4486 .get_tso = ethtool_op_get_tso,
4487 .get_ufo = ethtool_op_get_ufo,
4488 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004489};
4490
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004491static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004492 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004493 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004494 .ndo_open = bond_open,
4495 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004496 .ndo_start_xmit = bond_start_xmit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004497 .ndo_get_stats = bond_get_stats,
4498 .ndo_do_ioctl = bond_do_ioctl,
4499 .ndo_set_multicast_list = bond_set_multicast_list,
4500 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004501 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004502 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004503 .ndo_vlan_rx_register = bond_vlan_rx_register,
4504 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4505 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
4506};
4507
Stephen Hemminger181470f2009-06-12 19:02:52 +00004508static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509{
Wang Chen454d7c92008-11-12 23:37:49 -08004510 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 /* initialize rwlocks */
4513 rwlock_init(&bond->lock);
4514 rwlock_init(&bond->curr_slave_lock);
4515
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004516 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
4518 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 bond->dev = bond_dev;
4520 INIT_LIST_HEAD(&bond->vlan_list);
4521
4522 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004523 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004524 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004525 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004526 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
Stephen Hemminger9e716262009-06-12 19:02:47 +00004528 bond_dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529
4530 /* Initialize the device options */
4531 bond_dev->tx_queue_len = 0;
4532 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004533 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004534 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4535
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004536 if (bond->params.arp_interval)
4537 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
4539 /* At first, we block adding VLANs. That's the only way to
4540 * prevent problems that occur when adding VLANs over an
4541 * empty bond. The block will be removed once non-challenged
4542 * slaves are enslaved.
4543 */
4544 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4545
Herbert Xu932ff272006-06-09 12:20:56 -07004546 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 * transmitting */
4548 bond_dev->features |= NETIF_F_LLTX;
4549
4550 /* By default, we declare the bond to be fully
4551 * VLAN hardware accelerated capable. Special
4552 * care is taken in the various xmit functions
4553 * when there are slaves that are not hw accel
4554 * capable
4555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4557 NETIF_F_HW_VLAN_RX |
4558 NETIF_F_HW_VLAN_FILTER);
4559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560}
4561
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004562static void bond_work_cancel_all(struct bonding *bond)
4563{
4564 write_lock_bh(&bond->lock);
4565 bond->kill_timers = 1;
4566 write_unlock_bh(&bond->lock);
4567
4568 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4569 cancel_delayed_work(&bond->mii_work);
4570
4571 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4572 cancel_delayed_work(&bond->arp_work);
4573
4574 if (bond->params.mode == BOND_MODE_ALB &&
4575 delayed_work_pending(&bond->alb_work))
4576 cancel_delayed_work(&bond->alb_work);
4577
4578 if (bond->params.mode == BOND_MODE_8023AD &&
4579 delayed_work_pending(&bond->ad_work))
4580 cancel_delayed_work(&bond->ad_work);
4581}
4582
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004583/*
4584* Destroy a bonding device.
4585* Must be under rtnl_lock when this function is called.
4586*/
4587static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004588{
Wang Chen454d7c92008-11-12 23:37:49 -08004589 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004590
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004591 /* Release the bonded slaves */
4592 bond_release_all(bond_dev);
4593
Jay Vosburgha434e432008-10-30 17:41:15 -07004594 list_del(&bond->bond_list);
4595
4596 bond_work_cancel_all(bond);
4597
Jay Vosburgha434e432008-10-30 17:41:15 -07004598 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004599
4600 if (bond->wq)
4601 destroy_workqueue(bond->wq);
4602
4603 netif_addr_lock_bh(bond_dev);
4604 bond_mc_list_destroy(bond);
4605 netif_addr_unlock_bh(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004606}
4607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608/*------------------------- Module initialization ---------------------------*/
4609
4610/*
4611 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004612 * number of the mode or its string name. A bit complicated because
4613 * some mode names are substrings of other names, and calls from sysfs
4614 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004616int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617{
Hannes Eder54b87322009-02-14 11:15:49 +00004618 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004619 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004620
Jay Vosburgha42e5342008-01-29 18:07:43 -08004621 for (p = (char *)buf; *p; p++)
4622 if (!(isdigit(*p) || isspace(*p)))
4623 break;
4624
4625 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004626 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004627 else
Hannes Eder54b87322009-02-14 11:15:49 +00004628 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004629
4630 if (!rv)
4631 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
4633 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004634 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004636 if (strcmp(modestr, tbl[i].modename) == 0)
4637 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 }
4639
4640 return -1;
4641}
4642
4643static int bond_check_params(struct bond_params *params)
4644{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004645 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004646
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 /*
4648 * Convert string parameters.
4649 */
4650 if (mode) {
4651 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4652 if (bond_mode == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004653 pr_err(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 ": Error: Invalid bonding mode \"%s\"\n",
4655 mode == NULL ? "NULL" : mode);
4656 return -EINVAL;
4657 }
4658 }
4659
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004660 if (xmit_hash_policy) {
4661 if ((bond_mode != BOND_MODE_XOR) &&
4662 (bond_mode != BOND_MODE_8023AD)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004663 pr_info(DRV_NAME
Nicolas de Pesloüan3c6aaa22009-10-07 14:10:36 -07004664 ": xmit_hash_policy param is irrelevant in"
4665 " mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004666 bond_mode_name(bond_mode));
4667 } else {
4668 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4669 xmit_hashtype_tbl);
4670 if (xmit_hashtype == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004671 pr_err(DRV_NAME
4672 ": Error: Invalid xmit_hash_policy \"%s\"\n",
4673 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004674 xmit_hash_policy);
4675 return -EINVAL;
4676 }
4677 }
4678 }
4679
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 if (lacp_rate) {
4681 if (bond_mode != BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004682 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 ": lacp_rate param is irrelevant in mode %s\n",
4684 bond_mode_name(bond_mode));
4685 } else {
4686 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4687 if (lacp_fast == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004688 pr_err(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 ": Error: Invalid lacp rate \"%s\"\n",
4690 lacp_rate == NULL ? "NULL" : lacp_rate);
4691 return -EINVAL;
4692 }
4693 }
4694 }
4695
Jay Vosburghfd989c82008-11-04 17:51:16 -08004696 if (ad_select) {
4697 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4698 if (params->ad_select == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004699 pr_err(DRV_NAME
Jay Vosburghfd989c82008-11-04 17:51:16 -08004700 ": Error: Invalid ad_select \"%s\"\n",
4701 ad_select == NULL ? "NULL" : ad_select);
4702 return -EINVAL;
4703 }
4704
4705 if (bond_mode != BOND_MODE_8023AD) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004706 pr_warning(DRV_NAME
Jay Vosburghfd989c82008-11-04 17:51:16 -08004707 ": ad_select param only affects 802.3ad mode\n");
4708 }
4709 } else {
4710 params->ad_select = BOND_AD_STABLE;
4711 }
4712
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004713 if (max_bonds < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004714 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 ": Warning: max_bonds (%d) not in range %d-%d, so it "
Mitch Williams4e0952c2005-11-09 10:34:57 -08004716 "was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
Jay Vosburghb8a97872008-06-13 18:12:04 -07004717 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 max_bonds = BOND_DEFAULT_MAX_BONDS;
4719 }
4720
4721 if (miimon < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004722 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 ": Warning: miimon module parameter (%d), "
4724 "not in range 0-%d, so it was reset to %d\n",
4725 miimon, INT_MAX, BOND_LINK_MON_INTERV);
4726 miimon = BOND_LINK_MON_INTERV;
4727 }
4728
4729 if (updelay < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004730 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 ": Warning: updelay module parameter (%d), "
4732 "not in range 0-%d, so it was reset to 0\n",
4733 updelay, INT_MAX);
4734 updelay = 0;
4735 }
4736
4737 if (downdelay < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004738 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 ": Warning: downdelay module parameter (%d), "
4740 "not in range 0-%d, so it was reset to 0\n",
4741 downdelay, INT_MAX);
4742 downdelay = 0;
4743 }
4744
4745 if ((use_carrier != 0) && (use_carrier != 1)) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004746 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 ": Warning: use_carrier module parameter (%d), "
4748 "not of valid value (0/1), so it was set to 1\n",
4749 use_carrier);
4750 use_carrier = 1;
4751 }
4752
Moni Shoua7893b242008-05-17 21:10:12 -07004753 if (num_grat_arp < 0 || num_grat_arp > 255) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004754 pr_warning(DRV_NAME
Moni Shoua7893b242008-05-17 21:10:12 -07004755 ": Warning: num_grat_arp (%d) not in range 0-255 so it "
4756 "was reset to 1 \n", num_grat_arp);
4757 num_grat_arp = 1;
4758 }
4759
Brian Haley305d5522008-11-04 17:51:14 -08004760 if (num_unsol_na < 0 || num_unsol_na > 255) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004761 pr_warning(DRV_NAME
Brian Haley305d5522008-11-04 17:51:14 -08004762 ": Warning: num_unsol_na (%d) not in range 0-255 so it "
4763 "was reset to 1 \n", num_unsol_na);
4764 num_unsol_na = 1;
4765 }
4766
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 /* reset values for 802.3ad */
4768 if (bond_mode == BOND_MODE_8023AD) {
4769 if (!miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004770 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 ": Warning: miimon must be specified, "
4772 "otherwise bonding will not detect link "
4773 "failure, speed and duplex which are "
4774 "essential for 802.3ad operation\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004775 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 miimon = 100;
4777 }
4778 }
4779
4780 /* reset values for TLB/ALB */
4781 if ((bond_mode == BOND_MODE_TLB) ||
4782 (bond_mode == BOND_MODE_ALB)) {
4783 if (!miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004784 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 ": Warning: miimon must be specified, "
4786 "otherwise bonding will not detect link "
4787 "failure and link speed which are essential "
4788 "for TLB/ALB load balancing\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004789 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 miimon = 100;
4791 }
4792 }
4793
4794 if (bond_mode == BOND_MODE_ALB) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004795 pr_notice(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 ": In ALB mode you might experience client "
4797 "disconnections upon reconnection of a link if the "
4798 "bonding module updelay parameter (%d msec) is "
4799 "incompatible with the forwarding delay time of the "
4800 "switch\n",
4801 updelay);
4802 }
4803
4804 if (!miimon) {
4805 if (updelay || downdelay) {
4806 /* just warn the user the up/down delay will have
4807 * no effect since miimon is zero...
4808 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004809 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 ": Warning: miimon module parameter not set "
4811 "and updelay (%d) or downdelay (%d) module "
4812 "parameter is set; updelay and downdelay have "
4813 "no effect unless miimon is set\n",
4814 updelay, downdelay);
4815 }
4816 } else {
4817 /* don't allow arp monitoring */
4818 if (arp_interval) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004819 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 ": Warning: miimon (%d) and arp_interval (%d) "
4821 "can't be used simultaneously, disabling ARP "
4822 "monitoring\n",
4823 miimon, arp_interval);
4824 arp_interval = 0;
4825 }
4826
4827 if ((updelay % miimon) != 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004828 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 ": Warning: updelay (%d) is not a multiple "
4830 "of miimon (%d), updelay rounded to %d ms\n",
4831 updelay, miimon, (updelay / miimon) * miimon);
4832 }
4833
4834 updelay /= miimon;
4835
4836 if ((downdelay % miimon) != 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004837 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 ": Warning: downdelay (%d) is not a multiple "
4839 "of miimon (%d), downdelay rounded to %d ms\n",
4840 downdelay, miimon,
4841 (downdelay / miimon) * miimon);
4842 }
4843
4844 downdelay /= miimon;
4845 }
4846
4847 if (arp_interval < 0) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004848 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 ": Warning: arp_interval module parameter (%d) "
4850 ", not in range 0-%d, so it was reset to %d\n",
4851 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
4852 arp_interval = BOND_LINK_ARP_INTERV;
4853 }
4854
4855 for (arp_ip_count = 0;
4856 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4857 arp_ip_count++) {
4858 /* not complete check, but should be good enough to
4859 catch mistakes */
4860 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004861 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 ": Warning: bad arp_ip_target module parameter "
4863 "(%s), ARP monitoring will not be performed\n",
4864 arp_ip_target[arp_ip_count]);
4865 arp_interval = 0;
4866 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004867 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868 arp_target[arp_ip_count] = ip;
4869 }
4870 }
4871
4872 if (arp_interval && !arp_ip_count) {
4873 /* don't allow arping if no arp_ip_target given... */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004874 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 ": Warning: arp_interval module parameter (%d) "
4876 "specified without providing an arp_ip_target "
4877 "parameter, arp_interval was reset to 0\n",
4878 arp_interval);
4879 arp_interval = 0;
4880 }
4881
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004882 if (arp_validate) {
4883 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004884 pr_err(DRV_NAME
4885 ": arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004886 return -EINVAL;
4887 }
4888 if (!arp_interval) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004889 pr_err(DRV_NAME
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004890 ": arp_validate requires arp_interval\n");
4891 return -EINVAL;
4892 }
4893
4894 arp_validate_value = bond_parse_parm(arp_validate,
4895 arp_validate_tbl);
4896 if (arp_validate_value == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004897 pr_err(DRV_NAME
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004898 ": Error: invalid arp_validate \"%s\"\n",
4899 arp_validate == NULL ? "NULL" : arp_validate);
4900 return -EINVAL;
4901 }
4902 } else
4903 arp_validate_value = 0;
4904
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 if (miimon) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004906 pr_info(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907 ": MII link monitoring set to %d ms\n",
4908 miimon);
4909 } else if (arp_interval) {
4910 int i;
4911
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004912 pr_info(DRV_NAME ": ARP monitoring set to %d ms,"
4913 " validate %s, with %d target(s):",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004914 arp_interval,
4915 arp_validate_tbl[arp_validate_value].modename,
4916 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
4918 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004919 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004921 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
Jay Vosburghb8a97872008-06-13 18:12:04 -07004923 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924 /* miimon and arp_interval not set, we need one so things
4925 * work as expected, see bonding.txt for details
4926 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004927 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928 ": Warning: either miimon or arp_interval and "
4929 "arp_ip_target module parameters must be specified, "
4930 "otherwise bonding will not detect link failures! see "
4931 "bonding.txt for details.\n");
4932 }
4933
4934 if (primary && !USES_PRIMARY(bond_mode)) {
4935 /* currently, using a primary only makes sense
4936 * in active backup, TLB or ALB modes
4937 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004938 pr_warning(DRV_NAME
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 ": Warning: %s primary device specified but has no "
4940 "effect in %s mode\n",
4941 primary, bond_mode_name(bond_mode));
4942 primary = NULL;
4943 }
4944
Jiri Pirkoa5499522009-09-25 03:28:09 +00004945 if (primary && primary_reselect) {
4946 primary_reselect_value = bond_parse_parm(primary_reselect,
4947 pri_reselect_tbl);
4948 if (primary_reselect_value == -1) {
4949 pr_err(DRV_NAME
4950 ": Error: Invalid primary_reselect \"%s\"\n",
4951 primary_reselect ==
4952 NULL ? "NULL" : primary_reselect);
4953 return -EINVAL;
4954 }
4955 } else {
4956 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4957 }
4958
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004959 if (fail_over_mac) {
4960 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4961 fail_over_mac_tbl);
4962 if (fail_over_mac_value == -1) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004963 pr_err(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004964 ": Error: invalid fail_over_mac \"%s\"\n",
4965 arp_validate == NULL ? "NULL" : arp_validate);
4966 return -EINVAL;
4967 }
4968
4969 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004970 pr_warning(DRV_NAME
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004971 ": Warning: fail_over_mac only affects "
4972 "active-backup mode.\n");
4973 } else {
4974 fail_over_mac_value = BOND_FOM_NONE;
4975 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07004976
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 /* fill params struct with the proper values */
4978 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004979 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07004981 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08004982 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004984 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 params->updelay = updelay;
4986 params->downdelay = downdelay;
4987 params->use_carrier = use_carrier;
4988 params->lacp_fast = lacp_fast;
4989 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00004990 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004991 params->fail_over_mac = fail_over_mac_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
4993 if (primary) {
4994 strncpy(params->primary, primary, IFNAMSIZ);
4995 params->primary[IFNAMSIZ - 1] = 0;
4996 }
4997
4998 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4999
5000 return 0;
5001}
5002
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005003static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07005004static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005005
David S. Millere8a04642008-07-17 00:34:19 -07005006static void bond_set_lockdep_class_one(struct net_device *dev,
5007 struct netdev_queue *txq,
5008 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07005009{
5010 lockdep_set_class(&txq->_xmit_lock,
5011 &bonding_netdev_xmit_lock_key);
5012}
5013
5014static void bond_set_lockdep_class(struct net_device *dev)
5015{
David S. Millercf508b12008-07-22 14:16:42 -07005016 lockdep_set_class(&dev->addr_list_lock,
5017 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07005018 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07005019}
5020
Stephen Hemminger181470f2009-06-12 19:02:52 +00005021/*
5022 * Called from registration process
5023 */
5024static int bond_init(struct net_device *bond_dev)
5025{
5026 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005027 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005028
5029 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5030
5031 bond->wq = create_singlethread_workqueue(bond_dev->name);
5032 if (!bond->wq)
5033 return -ENOMEM;
5034
5035 bond_set_lockdep_class(bond_dev);
5036
5037 netif_carrier_off(bond_dev);
5038
5039 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005040 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005041
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00005042 bond_prepare_sysfs_group(bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +00005043 return 0;
5044}
5045
Eric W. Biederman88ead972009-10-29 14:18:25 +00005046static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5047{
5048 if (tb[IFLA_ADDRESS]) {
5049 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5050 return -EINVAL;
5051 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5052 return -EADDRNOTAVAIL;
5053 }
5054 return 0;
5055}
5056
5057static struct rtnl_link_ops bond_link_ops __read_mostly = {
5058 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00005059 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00005060 .setup = bond_setup,
5061 .validate = bond_validate,
5062};
5063
Mitch Williamsdfe60392005-11-09 10:36:04 -08005064/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005065 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08005066 * Caller must NOT hold rtnl_lock; we need to release it here before we
5067 * set up our sysfs entries.
5068 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005069int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005070{
5071 struct net_device *bond_dev;
5072 int res;
5073
5074 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08005075
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005076 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
Stephen Hemminger181470f2009-06-12 19:02:52 +00005077 bond_setup);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005078 if (!bond_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005079 pr_err(DRV_NAME ": %s: eek! can't alloc netdev!\n",
Mitch Williamsdfe60392005-11-09 10:36:04 -08005080 name);
5081 res = -ENOMEM;
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005082 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005083 }
5084
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005085 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005086 bond_dev->rtnl_link_ops = &bond_link_ops;
5087
Jay Vosburghe4b91c42007-01-19 18:15:31 -08005088 if (!name) {
5089 res = dev_alloc_name(bond_dev, "bond%d");
5090 if (res < 0)
5091 goto out_netdev;
5092 }
5093
Mitch Williamsdfe60392005-11-09 10:36:04 -08005094 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08005095
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005096out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08005097 rtnl_unlock();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005098 return res;
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00005099out_netdev:
5100 free_netdev(bond_dev);
5101 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005102}
5103
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005104static int bond_net_init(struct net *net)
5105{
Eric W. Biederman15449742009-11-29 15:46:04 +00005106 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005107
5108 bn->net = net;
5109 INIT_LIST_HEAD(&bn->dev_list);
5110
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005111 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00005112
5113 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005114}
5115
5116static void bond_net_exit(struct net *net)
5117{
Eric W. Biederman15449742009-11-29 15:46:04 +00005118 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005119
5120 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005121}
5122
5123static struct pernet_operations bond_net_ops = {
5124 .init = bond_net_init,
5125 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00005126 .id = &bond_net_id,
5127 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005128};
5129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130static int __init bonding_init(void)
5131{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 int i;
5133 int res;
5134
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005135 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
Mitch Williamsdfe60392005-11-09 10:36:04 -08005137 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00005138 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08005139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Eric W. Biederman15449742009-11-29 15:46:04 +00005141 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005142 if (res)
5143 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08005144
Eric W. Biederman88ead972009-10-29 14:18:25 +00005145 res = rtnl_link_register(&bond_link_ops);
5146 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00005147 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00005150 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08005151 if (res)
5152 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 }
5154
Mitch Williamsb76cdba2005-11-09 10:36:41 -08005155 res = bond_create_sysfs();
5156 if (res)
5157 goto err;
5158
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005160 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005161 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08005162out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00005164err:
5165 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00005166err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00005167 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00005168 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08005169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170}
5171
5172static void __exit bonding_exit(void)
5173{
5174 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005175 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08005176 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005178 bond_destroy_sysfs();
5179
Eric W. Biederman88ead972009-10-29 14:18:25 +00005180 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005181 unregister_pernet_subsys(&bond_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182}
5183
5184module_init(bonding_init);
5185module_exit(bonding_exit);
5186MODULE_LICENSE("GPL");
5187MODULE_VERSION(DRV_VERSION);
5188MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5189MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005190MODULE_ALIAS_RTNL_LINK("bond");