blob: 22682f1c8473b4a69c1e2f5ae45f4d665c411d55 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * originally based on the dummy device.
3 *
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
6 *
7 * bonding.c: an Ethernet Bonding driver
8 *
9 * This is useful to talk to a Cisco EtherChannel compatible equipment:
10 * Cisco 5500
11 * Sun Trunking (Solaris)
12 * Alteon AceDirector Trunks
13 * Linux Bonding
14 * and probably many L2 switches ...
15 *
16 * How it works:
17 * ifconfig bond0 ipaddress netmask up
18 * will setup a network device, with an ip address. No mac address
19 * will be assigned at this time. The hw mac address will come from
20 * the first slave bonded to the channel. All slaves will then use
21 * this hw mac address.
22 *
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
25 *
26 * ifenslave bond0 eth0
27 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
28 * a: be used as initial mac address
29 * b: if a hw mac address already is there, eth0's hw mac address
30 * will then be set from bond0.
31 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Joe Perchesa4aee5c2009-12-13 20:06:07 -080034#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/kernel.h>
37#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/types.h>
39#include <linux/fcntl.h>
40#include <linux/interrupt.h>
41#include <linux/ptrace.h>
42#include <linux/ioport.h>
43#include <linux/in.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040044#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/ip.h>
Jay Vosburgh169a3e62005-06-26 17:54:11 -040046#include <linux/tcp.h>
47#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/slab.h>
49#include <linux/string.h>
50#include <linux/init.h>
51#include <linux/timer.h>
52#include <linux/socket.h>
53#include <linux/ctype.h>
54#include <linux/inet.h>
55#include <linux/bitops.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/dma.h>
Stephen Hemminger3d632c32009-06-12 19:02:48 +000059#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/errno.h>
61#include <linux/netdevice.h>
62#include <linux/inetdevice.h>
Jay Vosburgha816c7c2007-02-28 17:03:37 -080063#include <linux/igmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/etherdevice.h>
65#include <linux/skbuff.h>
66#include <net/sock.h>
67#include <linux/rtnetlink.h>
68#include <linux/proc_fs.h>
69#include <linux/seq_file.h>
70#include <linux/smp.h>
71#include <linux/if_ether.h>
72#include <net/arp.h>
73#include <linux/mii.h>
74#include <linux/ethtool.h>
75#include <linux/if_vlan.h>
76#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080077#include <linux/jiffies.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040078#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020079#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000080#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include "bonding.h"
82#include "bond_3ad.h"
83#include "bond_alb.h"
84
85/*---------------------------- Module parameters ----------------------------*/
86
87/* monitor all links that often (in milliseconds). <=0 disables monitoring */
88#define BOND_LINK_MON_INTERV 0
89#define BOND_LINK_ARP_INTERV 0
90
91static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Moni Shoua7893b242008-05-17 21:10:12 -070092static int num_grat_arp = 1;
Brian Haley305d5522008-11-04 17:51:14 -080093static int num_unsol_na = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000095static int updelay;
96static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000098static char *mode;
99static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000100static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static char *lacp_rate;
102static char *ad_select;
103static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000105static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
106static char *arp_validate;
107static char *fail_over_mac;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000108static struct bond_params bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110module_param(max_bonds, int, 0);
111MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Moni Shoua7893b242008-05-17 21:10:12 -0700112module_param(num_grat_arp, int, 0644);
113MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
Brian Haley305d5522008-11-04 17:51:14 -0800114module_param(num_unsol_na, int, 0644);
115MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116module_param(miimon, int, 0);
117MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
118module_param(updelay, int, 0);
119MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
120module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800121MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
122 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800124MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
125 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800127MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
128 "1 for active-backup, 2 for balance-xor, "
129 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
130 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131module_param(primary, charp, 0);
132MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000133module_param(primary_reselect, charp, 0);
134MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
135 "once it comes up; "
136 "0 for always (default), "
137 "1 for only if speed of primary is "
138 "better, "
139 "2 for only on active slave "
140 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800142MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
143 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800144module_param(ad_select, charp, 0);
145MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400146module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800147MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
148 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149module_param(arp_interval, int, 0);
150MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
151module_param_array(arp_ip_target, charp, NULL, 0);
152MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700153module_param(arp_validate, charp, 0);
154MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700155module_param(fail_over_mac, charp, 0);
156MODULE_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 -0700157
158/*----------------------------- Global variables ----------------------------*/
159
Arjan van de Venf71e1302006-03-03 21:33:57 -0500160static const char * const version =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
162
Eric Dumazetf99189b2009-11-17 10:42:49 +0000163int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000165static __be32 arp_target[BOND_MAX_ARP_TARGETS];
166static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000168static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
169static int lacp_fast;
Jay Vosburgh217df672005-09-26 16:11:50 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800172const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{ "slow", AD_LACP_SLOW},
174{ "fast", AD_LACP_FAST},
175{ NULL, -1},
176};
177
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800178const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{ "balance-rr", BOND_MODE_ROUNDROBIN},
180{ "active-backup", BOND_MODE_ACTIVEBACKUP},
181{ "balance-xor", BOND_MODE_XOR},
182{ "broadcast", BOND_MODE_BROADCAST},
183{ "802.3ad", BOND_MODE_8023AD},
184{ "balance-tlb", BOND_MODE_TLB},
185{ "balance-alb", BOND_MODE_ALB},
186{ NULL, -1},
187};
188
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800189const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400190{ "layer2", BOND_XMIT_POLICY_LAYER2},
191{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800192{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400193{ NULL, -1},
194};
195
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800196const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700197{ "none", BOND_ARP_VALIDATE_NONE},
198{ "active", BOND_ARP_VALIDATE_ACTIVE},
199{ "backup", BOND_ARP_VALIDATE_BACKUP},
200{ "all", BOND_ARP_VALIDATE_ALL},
201{ NULL, -1},
202};
203
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800204const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700205{ "none", BOND_FOM_NONE},
206{ "active", BOND_FOM_ACTIVE},
207{ "follow", BOND_FOM_FOLLOW},
208{ NULL, -1},
209};
210
Jiri Pirkoa5499522009-09-25 03:28:09 +0000211const struct bond_parm_tbl pri_reselect_tbl[] = {
212{ "always", BOND_PRI_RESELECT_ALWAYS},
213{ "better", BOND_PRI_RESELECT_BETTER},
214{ "failure", BOND_PRI_RESELECT_FAILURE},
215{ NULL, -1},
216};
217
Jay Vosburghfd989c82008-11-04 17:51:16 -0800218struct bond_parm_tbl ad_select_tbl[] = {
219{ "stable", BOND_AD_STABLE},
220{ "bandwidth", BOND_AD_BANDWIDTH},
221{ "count", BOND_AD_COUNT},
222{ NULL, -1},
223};
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/*-------------------------- Forward declarations ---------------------------*/
226
Jay Vosburghc3ade5c2005-06-26 17:52:20 -0400227static void bond_send_gratuitous_arp(struct bonding *bond);
Stephen Hemminger181470f2009-06-12 19:02:52 +0000228static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000229static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231/*---------------------------- General routines -----------------------------*/
232
Adrian Bunk4ad072c2007-07-09 11:51:12 -0700233static const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800235 static const char *names[] = {
236 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
237 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
238 [BOND_MODE_XOR] = "load balancing (xor)",
239 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000240 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800241 [BOND_MODE_TLB] = "transmit load balancing",
242 [BOND_MODE_ALB] = "adaptive load balancing",
243 };
244
245 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800247
248 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251/*---------------------------------- VLAN -----------------------------------*/
252
253/**
254 * bond_add_vlan - add a new vlan id on bond
255 * @bond: bond that got the notification
256 * @vlan_id: the vlan id to add
257 *
258 * Returns -ENOMEM if allocation failed.
259 */
260static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
261{
262 struct vlan_entry *vlan;
263
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800264 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800265 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Brian Haley305d5522008-11-04 17:51:14 -0800267 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000268 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 INIT_LIST_HEAD(&vlan->vlan_list);
272 vlan->vlan_id = vlan_id;
273
274 write_lock_bh(&bond->lock);
275
276 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
277
278 write_unlock_bh(&bond->lock);
279
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800280 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 return 0;
283}
284
285/**
286 * bond_del_vlan - delete a vlan id from bond
287 * @bond: bond that got the notification
288 * @vlan_id: the vlan id to delete
289 *
290 * returns -ENODEV if @vlan_id was not found in @bond.
291 */
292static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
293{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700294 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int res = -ENODEV;
296
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800297 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 write_lock_bh(&bond->lock);
300
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700301 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (vlan->vlan_id == vlan_id) {
303 list_del(&vlan->vlan_list);
304
Holger Eitzenberger58402052008-12-09 23:07:13 -0800305 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800308 pr_debug("removed VLAN ID %d from bond %s\n",
309 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 kfree(vlan);
312
313 if (list_empty(&bond->vlan_list) &&
314 (bond->slave_cnt == 0)) {
315 /* Last VLAN removed and no slaves, so
316 * restore block on adding VLANs. This will
317 * be removed once new slaves that are not
318 * VLAN challenged will be added.
319 */
320 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
321 }
322
323 res = 0;
324 goto out;
325 }
326 }
327
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800328 pr_debug("couldn't find VLAN ID %d in bond %s\n",
329 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331out:
332 write_unlock_bh(&bond->lock);
333 return res;
334}
335
336/**
337 * bond_has_challenged_slaves
338 * @bond: the bond we're working on
339 *
340 * Searches the slave list. Returns 1 if a vlan challenged slave
341 * was found, 0 otherwise.
342 *
343 * Assumes bond->lock is held.
344 */
345static int bond_has_challenged_slaves(struct bonding *bond)
346{
347 struct slave *slave;
348 int i;
349
350 bond_for_each_slave(bond, slave, i) {
351 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800352 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800353 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 1;
355 }
356 }
357
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800358 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360}
361
362/**
363 * bond_next_vlan - safely skip to the next item in the vlans list.
364 * @bond: the bond we're working on
365 * @curr: item we're advancing from
366 *
367 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
368 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000369 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * Caller must hold bond->lock
371 */
372struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
373{
374 struct vlan_entry *next, *last;
375
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000376 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (!curr) {
380 next = list_entry(bond->vlan_list.next,
381 struct vlan_entry, vlan_list);
382 } else {
383 last = list_entry(bond->vlan_list.prev,
384 struct vlan_entry, vlan_list);
385 if (last == curr) {
386 next = list_entry(bond->vlan_list.next,
387 struct vlan_entry, vlan_list);
388 } else {
389 next = list_entry(curr->vlan_list.next,
390 struct vlan_entry, vlan_list);
391 }
392 }
393
394 return next;
395}
396
397/**
398 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000399 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * @bond: bond device that got this skb for tx.
401 * @skb: hw accel VLAN tagged skb to transmit
402 * @slave_dev: slave that is supposed to xmit this skbuff
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000403 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * When the bond gets an skb to transmit that is
405 * already hardware accelerated VLAN tagged, and it
406 * needs to relay this skb to a slave that is not
407 * hw accel capable, the skb needs to be "unaccelerated",
408 * i.e. strip the hwaccel tag and re-insert it as part
409 * of the payload.
410 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000411int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
412 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700414 unsigned short uninitialized_var(vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 if (!list_empty(&bond->vlan_list) &&
417 !(slave_dev->features & NETIF_F_HW_VLAN_TX) &&
418 vlan_get_tag(skb, &vlan_id) == 0) {
419 skb->dev = slave_dev;
420 skb = vlan_put_tag(skb, vlan_id);
421 if (!skb) {
422 /* vlan_put_tag() frees the skb in case of error,
423 * so return success here so the calling functions
424 * won't attempt to free is again.
425 */
426 return 0;
427 }
428 } else {
429 skb->dev = slave_dev;
430 }
431
432 skb->priority = 1;
433 dev_queue_xmit(skb);
434
435 return 0;
436}
437
438/*
439 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
440 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
441 * lock because:
442 * a. This operation is performed in IOCTL context,
443 * b. The operation is protected by the RTNL semaphore in the 8021q code,
444 * c. Holding a lock with BH disabled while directly calling a base driver
445 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000446 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * The design of synchronization/protection for this operation in the 8021q
448 * module is good for one or more VLAN devices over a single physical device
449 * and cannot be extended for a teaming solution like bonding, so there is a
450 * potential race condition here where a net device from the vlan group might
451 * be referenced (either by a base driver or the 8021q code) while it is being
452 * removed from the system. However, it turns out we're not making matters
453 * worse, and if it works for regular VLAN usage it will work here too.
454*/
455
456/**
457 * bond_vlan_rx_register - Propagates registration to slaves
458 * @bond_dev: bonding net device that got called
459 * @grp: vlan group being registered
460 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000461static void bond_vlan_rx_register(struct net_device *bond_dev,
462 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Wang Chen454d7c92008-11-12 23:37:49 -0800464 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct slave *slave;
466 int i;
467
468 bond->vlgrp = grp;
469
470 bond_for_each_slave(bond, slave, i) {
471 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800472 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800475 slave_ops->ndo_vlan_rx_register) {
476 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478 }
479}
480
481/**
482 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
483 * @bond_dev: bonding net device that got called
484 * @vid: vlan id being added
485 */
486static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
487{
Wang Chen454d7c92008-11-12 23:37:49 -0800488 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 struct slave *slave;
490 int i, res;
491
492 bond_for_each_slave(bond, slave, i) {
493 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800494 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800497 slave_ops->ndo_vlan_rx_add_vid) {
498 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500 }
501
502 res = bond_add_vlan(bond, vid);
503 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800504 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 bond_dev->name, vid);
506 }
507}
508
509/**
510 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
511 * @bond_dev: bonding net device that got called
512 * @vid: vlan id being removed
513 */
514static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
515{
Wang Chen454d7c92008-11-12 23:37:49 -0800516 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct slave *slave;
518 struct net_device *vlan_dev;
519 int i, res;
520
521 bond_for_each_slave(bond, slave, i) {
522 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800523 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800526 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* Save and then restore vlan_dev in the grp array,
528 * since the slave's driver might clear it.
529 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800530 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800531 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800532 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534 }
535
536 res = bond_del_vlan(bond, vid);
537 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800538 pr_err("%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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * Push the promiscuity flag down to appropriate slaves
766 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700767static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700769 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (USES_PRIMARY(bond->params.mode)) {
771 /* write lock already acquired */
772 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700773 err = dev_set_promiscuity(bond->curr_active_slave->dev,
774 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 } else {
777 struct slave *slave;
778 int i;
779 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700780 err = dev_set_promiscuity(slave->dev, inc);
781 if (err)
782 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700785 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
788/*
789 * Push the allmulti flag down to all slaves
790 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700791static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700793 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (USES_PRIMARY(bond->params.mode)) {
795 /* write lock already acquired */
796 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700797 err = dev_set_allmulti(bond->curr_active_slave->dev,
798 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800 } else {
801 struct slave *slave;
802 int i;
803 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700804 err = dev_set_allmulti(slave->dev, inc);
805 if (err)
806 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700809 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
812/*
813 * Add a Multicast address to slaves
814 * according to mode
815 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000816static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 if (USES_PRIMARY(bond->params.mode)) {
819 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000820 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000821 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 } else {
823 struct slave *slave;
824 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000825
826 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000827 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829}
830
831/*
832 * Remove a multicast address from slave
833 * according to mode
834 */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000835static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
837 if (USES_PRIMARY(bond->params.mode)) {
838 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000839 if (bond->curr_active_slave)
Jiri Pirko22bedad2010-04-01 21:22:57 +0000840 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 } else {
842 struct slave *slave;
843 int i;
844 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad2010-04-01 21:22:57 +0000845 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 }
848}
849
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800850
851/*
852 * Retrieve the list of registered multicast addresses for the bonding
853 * device and retransmit an IGMP JOIN request to the current active
854 * slave.
855 */
856static void bond_resend_igmp_join_requests(struct bonding *bond)
857{
858 struct in_device *in_dev;
859 struct ip_mc_list *im;
860
861 rcu_read_lock();
862 in_dev = __in_dev_get_rcu(bond->dev);
863 if (in_dev) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000864 for (im = in_dev->mc_list; im; im = im->next)
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800865 ip_mc_rejoin_group(im);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800866 }
867
868 rcu_read_unlock();
869}
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 * flush all members of flush->mc_list from device dev->mc_list
873 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000874static void bond_mc_list_flush(struct net_device *bond_dev,
875 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Wang Chen454d7c92008-11-12 23:37:49 -0800877 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +0000878 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Jiri Pirko22bedad2010-04-01 21:22:57 +0000880 netdev_for_each_mc_addr(ha, bond_dev)
881 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (bond->params.mode == BOND_MODE_8023AD) {
884 /* del lacpdu mc addr from mc list */
885 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
886
Jiri Pirko22bedad2010-04-01 21:22:57 +0000887 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 }
889}
890
891/*--------------------------- Active slave change ---------------------------*/
892
893/*
894 * Update the mc list and multicast-related flags for the new and
895 * old active slaves (if any) according to the multicast mode, and
896 * promiscuous flags unconditionally.
897 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000898static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
899 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Jiri Pirko22bedad2010-04-01 21:22:57 +0000901 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000903 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 /* nothing to do - mc list is already up-to-date on
905 * all slaves
906 */
907 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000910 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000913 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Jiri Pirko22bedad2010-04-01 21:22:57 +0000916 netdev_for_each_mc_addr(ha, bond->dev)
917 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919
920 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700921 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000922 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000925 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Jiri Pirko22bedad2010-04-01 21:22:57 +0000928 netdev_for_each_mc_addr(ha, bond->dev)
929 dev_mc_add(new_active->dev, ha->addr);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800930 bond_resend_igmp_join_requests(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932}
933
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700934/*
935 * bond_do_fail_over_mac
936 *
937 * Perform special MAC address swapping for fail_over_mac settings
938 *
939 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
940 */
941static void bond_do_fail_over_mac(struct bonding *bond,
942 struct slave *new_active,
943 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000944 __releases(&bond->curr_slave_lock)
945 __releases(&bond->lock)
946 __acquires(&bond->lock)
947 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700948{
949 u8 tmp_mac[ETH_ALEN];
950 struct sockaddr saddr;
951 int rv;
952
953 switch (bond->params.fail_over_mac) {
954 case BOND_FOM_ACTIVE:
955 if (new_active)
956 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
957 new_active->dev->addr_len);
958 break;
959 case BOND_FOM_FOLLOW:
960 /*
961 * if new_active && old_active, swap them
962 * if just old_active, do nothing (going to no active slave)
963 * if just new_active, set new_active to bond's MAC
964 */
965 if (!new_active)
966 return;
967
968 write_unlock_bh(&bond->curr_slave_lock);
969 read_unlock(&bond->lock);
970
971 if (old_active) {
972 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
973 memcpy(saddr.sa_data, old_active->dev->dev_addr,
974 ETH_ALEN);
975 saddr.sa_family = new_active->dev->type;
976 } else {
977 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
978 saddr.sa_family = bond->dev->type;
979 }
980
981 rv = dev_set_mac_address(new_active->dev, &saddr);
982 if (rv) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800983 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700984 bond->dev->name, -rv, new_active->dev->name);
985 goto out;
986 }
987
988 if (!old_active)
989 goto out;
990
991 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
992 saddr.sa_family = old_active->dev->type;
993
994 rv = dev_set_mac_address(old_active->dev, &saddr);
995 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800996 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700997 bond->dev->name, -rv, new_active->dev->name);
998out:
999 read_lock(&bond->lock);
1000 write_lock_bh(&bond->curr_slave_lock);
1001 break;
1002 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001003 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001004 bond->dev->name, bond->params.fail_over_mac);
1005 break;
1006 }
1007
1008}
1009
Jiri Pirkoa5499522009-09-25 03:28:09 +00001010static bool bond_should_change_active(struct bonding *bond)
1011{
1012 struct slave *prim = bond->primary_slave;
1013 struct slave *curr = bond->curr_active_slave;
1014
1015 if (!prim || !curr || curr->link != BOND_LINK_UP)
1016 return true;
1017 if (bond->force_primary) {
1018 bond->force_primary = false;
1019 return true;
1020 }
1021 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1022 (prim->speed < curr->speed ||
1023 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1024 return false;
1025 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1026 return false;
1027 return true;
1028}
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030/**
1031 * find_best_interface - select the best available slave to be the active one
1032 * @bond: our bonding struct
1033 *
1034 * Warning: Caller must hold curr_slave_lock for writing.
1035 */
1036static struct slave *bond_find_best_slave(struct bonding *bond)
1037{
1038 struct slave *new_active, *old_active;
1039 struct slave *bestslave = NULL;
1040 int mintime = bond->params.updelay;
1041 int i;
1042
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001043 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001046 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001048 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001053 bond->primary_slave->link == BOND_LINK_UP &&
1054 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 new_active = bond->primary_slave;
1056 }
1057
1058 /* remember where to stop iterating over the slaves */
1059 old_active = new_active;
1060
1061 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001062 if (new_active->link == BOND_LINK_UP) {
1063 return new_active;
1064 } else if (new_active->link == BOND_LINK_BACK &&
1065 IS_UP(new_active->dev)) {
1066 /* link up, but waiting for stabilization */
1067 if (new_active->delay < mintime) {
1068 mintime = new_active->delay;
1069 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
1071 }
1072 }
1073
1074 return bestslave;
1075}
1076
1077/**
1078 * change_active_interface - change the active slave into the specified one
1079 * @bond: our bonding struct
1080 * @new: the new slave to make the active one
1081 *
1082 * Set the new slave to the bond's settings and unset them on the old
1083 * curr_active_slave.
1084 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1085 *
1086 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1087 * because it is apparently the best available slave we have, even though its
1088 * updelay hasn't timed out yet.
1089 *
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001090 * If new_active is not NULL, caller must hold bond->lock for read and
1091 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001093void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 struct slave *old_active = bond->curr_active_slave;
1096
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001097 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001101 new_active->jiffies = jiffies;
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (new_active->link == BOND_LINK_BACK) {
1104 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001105 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1106 bond->dev->name, new_active->dev->name,
1107 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109
1110 new_active->delay = 0;
1111 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001113 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Holger Eitzenberger58402052008-12-09 23:07:13 -08001116 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 } else {
1119 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001120 pr_info("%s: making interface %s the new active one.\n",
1121 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123 }
1124 }
1125
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001126 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Holger Eitzenberger58402052008-12-09 23:07:13 -08001129 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001131 if (old_active)
1132 bond_set_slave_inactive_flags(old_active);
1133 if (new_active)
1134 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 } else {
1136 bond->curr_active_slave = new_active;
1137 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001138
1139 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001140 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001141 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001142
1143 if (new_active) {
1144 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001145
Or Gerlitz709f8a42008-06-13 18:12:01 -07001146 if (bond->params.fail_over_mac)
1147 bond_do_fail_over_mac(bond, new_active,
1148 old_active);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001149
Or Gerlitz709f8a42008-06-13 18:12:01 -07001150 bond->send_grat_arp = bond->params.num_grat_arp;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07001151 bond_send_gratuitous_arp(bond);
Or Gerlitz01f31092008-06-13 18:12:02 -07001152
Brian Haley305d5522008-11-04 17:51:14 -08001153 bond->send_unsol_na = bond->params.num_unsol_na;
1154 bond_send_unsolicited_na(bond);
1155
Or Gerlitz01f31092008-06-13 18:12:02 -07001156 write_unlock_bh(&bond->curr_slave_lock);
1157 read_unlock(&bond->lock);
1158
Moni Shoua75c78502009-09-15 02:37:40 -07001159 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Or Gerlitz01f31092008-06-13 18:12:02 -07001160
1161 read_lock(&bond->lock);
1162 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001163 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167/**
1168 * bond_select_active_slave - select a new active slave, if needed
1169 * @bond: our bonding struct
1170 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001171 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * - The old curr_active_slave has been released or lost its link.
1173 * - The primary_slave has got its link back.
1174 * - A slave has got its link back and there's no old curr_active_slave.
1175 *
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001176 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001178void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179{
1180 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001181 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 best_slave = bond_find_best_slave(bond);
1184 if (best_slave != bond->curr_active_slave) {
1185 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001186 rv = bond_set_carrier(bond);
1187 if (!rv)
1188 return;
1189
1190 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001191 pr_info("%s: first active interface up!\n",
1192 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001193 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001194 pr_info("%s: now running without any active interface !\n",
1195 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198}
1199
1200/*--------------------------- slave list handling ---------------------------*/
1201
1202/*
1203 * This function attaches the slave to the end of list.
1204 *
1205 * bond->lock held for writing by caller.
1206 */
1207static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1208{
1209 if (bond->first_slave == NULL) { /* attaching the first slave */
1210 new_slave->next = new_slave;
1211 new_slave->prev = new_slave;
1212 bond->first_slave = new_slave;
1213 } else {
1214 new_slave->next = bond->first_slave;
1215 new_slave->prev = bond->first_slave->prev;
1216 new_slave->next->prev = new_slave;
1217 new_slave->prev->next = new_slave;
1218 }
1219
1220 bond->slave_cnt++;
1221}
1222
1223/*
1224 * This function detaches the slave from the list.
1225 * WARNING: no check is made to verify if the slave effectively
1226 * belongs to <bond>.
1227 * Nothing is freed on return, structures are just unchained.
1228 * If any slave pointer in bond was pointing to <slave>,
1229 * it should be changed by the calling function.
1230 *
1231 * bond->lock held for writing by caller.
1232 */
1233static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1234{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001235 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001238 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 if (bond->first_slave == slave) { /* slave is the first slave */
1242 if (bond->slave_cnt > 1) { /* there are more slave */
1243 bond->first_slave = slave->next;
1244 } else {
1245 bond->first_slave = NULL; /* slave was the last one */
1246 }
1247 }
1248
1249 slave->next = NULL;
1250 slave->prev = NULL;
1251 bond->slave_cnt--;
1252}
1253
1254/*---------------------------------- IOCTL ----------------------------------*/
1255
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001256static int bond_sethwaddr(struct net_device *bond_dev,
1257 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001259 pr_debug("bond_dev=%p\n", bond_dev);
1260 pr_debug("slave_dev=%p\n", slave_dev);
1261 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1263 return 0;
1264}
1265
Herbert Xu7f353bf2007-08-10 15:47:58 -07001266#define BOND_VLAN_FEATURES \
1267 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1268 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001269
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001270/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001271 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001272 * feature bits are managed elsewhere, so preserve those feature bits
1273 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001274 */
1275static int bond_compute_features(struct bonding *bond)
1276{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001277 struct slave *slave;
1278 struct net_device *bond_dev = bond->dev;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001279 unsigned long features = bond_dev->features;
Jay Vosburgh278339a2009-08-28 12:05:12 +00001280 unsigned long vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001281 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1282 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001283 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001284
Herbert Xu7f353bf2007-08-10 15:47:58 -07001285 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001286 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1287
1288 if (!bond->first_slave)
1289 goto done;
1290
1291 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001292
Jay Vosburgh278339a2009-08-28 12:05:12 +00001293 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001294 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001295 features = netdev_increment_features(features,
1296 slave->dev->features,
1297 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001298 vlan_features = netdev_increment_features(vlan_features,
1299 slave->dev->vlan_features,
1300 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001301 if (slave->dev->hard_header_len > max_hard_header_len)
1302 max_hard_header_len = slave->dev->hard_header_len;
1303 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001304
Herbert Xub63365a2008-10-23 01:11:29 -07001305done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001306 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Herbert Xub63365a2008-10-23 01:11:29 -07001307 bond_dev->features = netdev_fix_features(features, NULL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001308 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001309 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001310
1311 return 0;
1312}
1313
Moni Shoua872254d2007-10-09 19:43:38 -07001314static void bond_setup_by_slave(struct net_device *bond_dev,
1315 struct net_device *slave_dev)
1316{
Wang Chen454d7c92008-11-12 23:37:49 -08001317 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001318
Stephen Hemminger00829822008-11-20 20:14:53 -08001319 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001320
1321 bond_dev->type = slave_dev->type;
1322 bond_dev->hard_header_len = slave_dev->hard_header_len;
1323 bond_dev->addr_len = slave_dev->addr_len;
1324
1325 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1326 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001327 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001328}
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001331int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Wang Chen454d7c92008-11-12 23:37:49 -08001333 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001334 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 struct slave *new_slave = NULL;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001336 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 struct sockaddr addr;
1338 int link_reporting;
1339 int old_features = bond_dev->features;
1340 int res = 0;
1341
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001342 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001343 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001344 pr_warning("%s: Warning: no link monitoring support for %s\n",
1345 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
1348 /* bond must be initialized by bond_open() before enslaving */
1349 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001350 pr_warning("%s: master_dev is not up in bond_enslave\n",
1351 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
1353
1354 /* already enslaved */
1355 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001356 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return -EBUSY;
1358 }
1359
1360 /* vlan challenged mutual exclusion */
1361 /* no need to lock since we're protected by rtnl_lock */
1362 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001363 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!list_empty(&bond->vlan_list)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001365 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1366 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return -EPERM;
1368 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001369 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1370 bond_dev->name, slave_dev->name,
1371 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1373 }
1374 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001375 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (bond->slave_cnt == 0) {
1377 /* First slave, and it is not VLAN challenged,
1378 * so remove the block of adding VLANs over the bond.
1379 */
1380 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1381 }
1382 }
1383
Jay Vosburgh217df672005-09-26 16:11:50 -07001384 /*
1385 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001386 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001387 * the current ifenslave will set the interface down prior to
1388 * enslaving it; the old ifenslave will not.
1389 */
1390 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001391 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001392 slave_dev->name);
1393 res = -EPERM;
1394 goto err_undo_flags;
1395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Moni Shoua872254d2007-10-09 19:43:38 -07001397 /* set bonding device ether type by slave - bonding netdevices are
1398 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1399 * there is a need to override some of the type dependent attribs/funcs.
1400 *
1401 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1402 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1403 */
1404 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001405 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001406 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001407 bond_dev->name,
1408 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001409
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001410 res = netdev_bonding_change(bond_dev,
1411 NETDEV_PRE_TYPE_CHANGE);
1412 res = notifier_to_errno(res);
1413 if (res) {
1414 pr_err("%s: refused to change device type\n",
1415 bond_dev->name);
1416 res = -EBUSY;
1417 goto err_undo_flags;
1418 }
Moni Shoua75c78502009-09-15 02:37:40 -07001419
Jiri Pirko32a806c2010-03-19 04:00:23 +00001420 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001421 dev_uc_flush(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00001422 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001423
Moni Shouae36b9d12009-07-15 04:56:31 +00001424 if (slave_dev->type != ARPHRD_ETHER)
1425 bond_setup_by_slave(bond_dev, slave_dev);
1426 else
1427 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001428
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001429 netdev_bonding_change(bond_dev,
1430 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001431 }
Moni Shoua872254d2007-10-09 19:43:38 -07001432 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001433 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1434 slave_dev->name,
1435 slave_dev->type, bond_dev->type);
1436 res = -EINVAL;
1437 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001438 }
1439
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001440 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001441 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001442 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1443 bond_dev->name);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001444 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1445 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001446 pr_err("%s: Error: The slave device specified does not support setting the MAC address, but fail_over_mac is not set to active.\n",
1447 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001448 res = -EOPNOTSUPP;
1449 goto err_undo_flags;
1450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
Joe Jin243cb4e2007-02-06 14:16:40 -08001453 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (!new_slave) {
1455 res = -ENOMEM;
1456 goto err_undo_flags;
1457 }
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /* save slave's original flags before calling
1460 * netdev_set_master and dev_open
1461 */
1462 new_slave->original_flags = slave_dev->flags;
1463
Jay Vosburgh217df672005-09-26 16:11:50 -07001464 /*
1465 * Save slave's original ("permanent") mac address for modes
1466 * that need it, and for restoring it upon release, and then
1467 * set it to the master's address
1468 */
1469 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Jay Vosburghdd957c52007-10-09 19:57:24 -07001471 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001472 /*
1473 * Set slave to master's mac address. The application already
1474 * set the master's mac address to that of the first slave
1475 */
1476 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1477 addr.sa_family = slave_dev->type;
1478 res = dev_set_mac_address(slave_dev, &addr);
1479 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001480 pr_debug("Error %d calling set_mac_address\n", res);
Moni Shoua2ab82852007-10-09 19:43:39 -07001481 goto err_free;
1482 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001485 res = netdev_set_master(slave_dev, bond_dev);
1486 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001487 pr_debug("Error %d calling netdev_set_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001488 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001489 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001490 /* open the slave since the application closed it */
1491 res = dev_open(slave_dev);
1492 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001493 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001494 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001498 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Holger Eitzenberger58402052008-12-09 23:07:13 -08001500 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 /* bond_alb_init_slave() must be called before all other stages since
1502 * it might fail and we do not want to have to undo everything
1503 */
1504 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001505 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001506 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
1508
1509 /* If the mode USES_PRIMARY, then the new slave gets the
1510 * master's promisc (and mc) settings only if it becomes the
1511 * curr_active_slave, and that is taken care of later when calling
1512 * bond_change_active()
1513 */
1514 if (!USES_PRIMARY(bond->params.mode)) {
1515 /* set promiscuity level to new slave */
1516 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001517 res = dev_set_promiscuity(slave_dev, 1);
1518 if (res)
1519 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 }
1521
1522 /* set allmulti level to new slave */
1523 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001524 res = dev_set_allmulti(slave_dev, 1);
1525 if (res)
1526 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528
David S. Millerb9e40852008-07-15 00:15:08 -07001529 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 /* upload master's mc_list to new slave */
Jiri Pirko22bedad2010-04-01 21:22:57 +00001531 netdev_for_each_mc_addr(ha, bond_dev)
1532 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001533 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
1535
1536 if (bond->params.mode == BOND_MODE_8023AD) {
1537 /* add lacpdu mc addr to mc list */
1538 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1539
Jiri Pirko22bedad2010-04-01 21:22:57 +00001540 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 bond_add_vlans_on_slave(bond, slave_dev);
1544
1545 write_lock_bh(&bond->lock);
1546
1547 bond_attach_slave(bond, new_slave);
1548
1549 new_slave->delay = 0;
1550 new_slave->link_failure_count = 0;
1551
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001552 bond_compute_features(bond);
1553
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001554 write_unlock_bh(&bond->lock);
1555
1556 read_lock(&bond->lock);
1557
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001558 new_slave->last_arp_rx = jiffies;
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (bond->params.miimon && !bond->params.use_carrier) {
1561 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1562
1563 if ((link_reporting == -1) && !bond->params.arp_interval) {
1564 /*
1565 * miimon is set but a bonded network driver
1566 * does not support ETHTOOL/MII and
1567 * arp_interval is not set. Note: if
1568 * use_carrier is enabled, we will never go
1569 * here (because netif_carrier is always
1570 * supported); thus, we don't need to change
1571 * the messages for netif_carrier.
1572 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001573 pr_warning("%s: Warning: MII and ETHTOOL support not available for interface %s, and arp_interval/arp_ip_target module parameters not specified, thus bonding will not detect link failures! see bonding.txt for details.\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001574 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 } else if (link_reporting == -1) {
1576 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001577 pr_warning("%s: Warning: can't get link status from interface %s; the network driver associated with this interface does not support MII or ETHTOOL link status reporting, thus miimon has no effect on this interface.\n",
1578 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580 }
1581
1582 /* check for initial state */
1583 if (!bond->params.miimon ||
1584 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1585 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001586 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 new_slave->link = BOND_LINK_BACK;
1588 new_slave->delay = bond->params.updelay;
1589 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001590 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 new_slave->link = BOND_LINK_UP;
1592 }
1593 new_slave->jiffies = jiffies;
1594 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001595 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 new_slave->link = BOND_LINK_DOWN;
1597 }
1598
1599 if (bond_update_speed_duplex(new_slave) &&
1600 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001601 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1602 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001605 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1606 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608 }
1609
1610 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1611 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001612 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001614 bond->force_primary = true;
1615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001618 write_lock_bh(&bond->curr_slave_lock);
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 switch (bond->params.mode) {
1621 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001622 bond_set_slave_inactive_flags(new_slave);
1623 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 break;
1625 case BOND_MODE_8023AD:
1626 /* in 802.3ad mode, the internal mechanism
1627 * will activate the slaves in the selected
1628 * aggregator
1629 */
1630 bond_set_slave_inactive_flags(new_slave);
1631 /* if this is the first slave */
1632 if (bond->slave_cnt == 1) {
1633 SLAVE_AD_INFO(new_slave).id = 1;
1634 /* Initialize AD with the number of times that the AD timer is called in 1 second
1635 * can be called only after the mac address of the bond is set
1636 */
1637 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1638 bond->params.lacp_fast);
1639 } else {
1640 SLAVE_AD_INFO(new_slave).id =
1641 SLAVE_AD_INFO(new_slave->prev).id + 1;
1642 }
1643
1644 bond_3ad_bind_slave(new_slave);
1645 break;
1646 case BOND_MODE_TLB:
1647 case BOND_MODE_ALB:
1648 new_slave->state = BOND_STATE_ACTIVE;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001649 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001650 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 break;
1652 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001653 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 /* always active in trunk mode */
1656 new_slave->state = BOND_STATE_ACTIVE;
1657
1658 /* In trunking mode there is little meaning to curr_active_slave
1659 * anyway (it holds no special properties of the bond device),
1660 * so we can change it without calling change_active_interface()
1661 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001662 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666 } /* switch(bond_mode) */
1667
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001668 write_unlock_bh(&bond->curr_slave_lock);
1669
Jay Vosburghff59c452006-03-27 13:27:43 -08001670 bond_set_carrier(bond);
1671
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001672 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001674 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1675 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001676 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001677
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001678 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1679 bond_dev->name, slave_dev->name,
1680 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1681 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 /* enslave is successful */
1684 return 0;
1685
1686/* Undo stages on error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687err_close:
1688 dev_close(slave_dev);
1689
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001690err_unset_master:
1691 netdev_set_master(slave_dev, NULL);
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001694 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001695 /* XXX TODO - fom follow mode needs to change master's
1696 * MAC if this slave's MAC is in use by the bond, or at
1697 * least print a warning.
1698 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001699 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1700 addr.sa_family = slave_dev->type;
1701 dev_set_mac_address(slave_dev, &addr);
1702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704err_free:
1705 kfree(new_slave);
1706
1707err_undo_flags:
1708 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return res;
1711}
1712
1713/*
1714 * Try to release the slave device <slave> from the bond device <master>
1715 * It is legal to access curr_active_slave without a lock because all the function
1716 * is write-locked.
1717 *
1718 * The rules for slave state should be:
1719 * for Active/Backup:
1720 * Active stays on all backups go down
1721 * for Bonded connections:
1722 * The first up interface should be left on and all others downed.
1723 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001724int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Wang Chen454d7c92008-11-12 23:37:49 -08001726 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 struct slave *slave, *oldcurrent;
1728 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 /* slave is not a slave or master is not master of this slave */
1731 if (!(slave_dev->flags & IFF_SLAVE) ||
1732 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001733 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 bond_dev->name, slave_dev->name);
1735 return -EINVAL;
1736 }
1737
1738 write_lock_bh(&bond->lock);
1739
1740 slave = bond_get_slave_by_dev(bond, slave_dev);
1741 if (!slave) {
1742 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001743 pr_info("%s: %s not enslaved\n",
1744 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08001745 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 return -EINVAL;
1747 }
1748
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001749 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00001750 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1751 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001752 pr_warning("%s: Warning: the permanent HWaddr of %s - %pM - is still in use by %s. Set the HWaddr of %s to a different address to avoid conflicts.\n",
1753 bond_dev->name, slave_dev->name,
1754 slave->perm_hwaddr,
1755 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757
1758 /* Inform AD package of unbinding of slave. */
1759 if (bond->params.mode == BOND_MODE_8023AD) {
1760 /* must be called before the slave is
1761 * detached from the list
1762 */
1763 bond_3ad_unbind_slave(slave);
1764 }
1765
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001766 pr_info("%s: releasing %s interface %s\n",
1767 bond_dev->name,
1768 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1769 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 oldcurrent = bond->curr_active_slave;
1772
1773 bond->current_arp_slave = NULL;
1774
1775 /* release the slave from its bond */
1776 bond_detach_slave(bond, slave);
1777
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001778 bond_compute_features(bond);
1779
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001780 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001783 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Holger Eitzenberger58402052008-12-09 23:07:13 -08001786 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /* Must be called only after the slave has been
1788 * detached from the list and the curr_active_slave
1789 * has been cleared (if our_slave == old_current),
1790 * but before a new active slave is selected.
1791 */
Jay Vosburgh25433312008-01-17 16:24:59 -08001792 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001794 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001797 if (oldcurrent == slave) {
1798 /*
1799 * Note that we hold RTNL over this sequence, so there
1800 * is no concern that another slave add/remove event
1801 * will interfere.
1802 */
1803 write_unlock_bh(&bond->lock);
1804 read_lock(&bond->lock);
1805 write_lock_bh(&bond->curr_slave_lock);
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 bond_select_active_slave(bond);
1808
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001809 write_unlock_bh(&bond->curr_slave_lock);
1810 read_unlock(&bond->lock);
1811 write_lock_bh(&bond->lock);
1812 }
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08001815 bond_set_carrier(bond);
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /* if the last slave was removed, zero the mac address
1818 * of the master so it will be set by the application
1819 * to the mac address of the first slave
1820 */
1821 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1822
1823 if (list_empty(&bond->vlan_list)) {
1824 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1825 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001826 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1827 bond_dev->name, bond_dev->name);
1828 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1829 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1832 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001833 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1834 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1836 }
1837
1838 write_unlock_bh(&bond->lock);
1839
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001840 /* must do this from outside any spinlocks */
1841 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 bond_del_vlans_from_slave(bond, slave_dev);
1844
1845 /* If the mode USES_PRIMARY, then we should only remove its
1846 * promisc and mc settings if it was the curr_active_slave, but that was
1847 * already taken care of above when we detached the slave
1848 */
1849 if (!USES_PRIMARY(bond->params.mode)) {
1850 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001851 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001855 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001859 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001861 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863
1864 netdev_set_master(slave_dev, NULL);
1865
1866 /* close slave before restoring its mac address */
1867 dev_close(slave_dev);
1868
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07001869 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001870 /* restore original ("permanent") mac address */
1871 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1872 addr.sa_family = slave_dev->type;
1873 dev_set_mac_address(slave_dev, &addr);
1874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001876 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001877 IFF_SLAVE_INACTIVE | IFF_BONDING |
1878 IFF_SLAVE_NEEDARP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880 kfree(slave);
1881
1882 return 0; /* deletion OK */
1883}
1884
1885/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001886* First release a slave and than destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07001887* Must be under rtnl_lock when this function is called.
1888*/
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001889int bond_release_and_destroy(struct net_device *bond_dev,
1890 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07001891{
Wang Chen454d7c92008-11-12 23:37:49 -08001892 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001893 int ret;
1894
1895 ret = bond_release(bond_dev, slave_dev);
1896 if ((ret == 0) && (bond->slave_cnt == 0)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001897 pr_info("%s: destroying bond %s.\n",
1898 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00001899 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001900 }
1901 return ret;
1902}
1903
1904/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * This function releases all slaves.
1906 */
1907static int bond_release_all(struct net_device *bond_dev)
1908{
Wang Chen454d7c92008-11-12 23:37:49 -08001909 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 struct slave *slave;
1911 struct net_device *slave_dev;
1912 struct sockaddr addr;
1913
1914 write_lock_bh(&bond->lock);
1915
Jay Vosburghff59c452006-03-27 13:27:43 -08001916 netif_carrier_off(bond_dev);
1917
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001918 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 bond->current_arp_slave = NULL;
1922 bond->primary_slave = NULL;
1923 bond_change_active_slave(bond, NULL);
1924
1925 while ((slave = bond->first_slave) != NULL) {
1926 /* Inform AD package of unbinding of slave
1927 * before slave is detached from the list.
1928 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001929 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 slave_dev = slave->dev;
1933 bond_detach_slave(bond, slave);
1934
Jay Vosburgh25433312008-01-17 16:24:59 -08001935 /* now that the slave is detached, unlock and perform
1936 * all the undo steps that should not be called from
1937 * within a lock.
1938 */
1939 write_unlock_bh(&bond->lock);
1940
Holger Eitzenberger58402052008-12-09 23:07:13 -08001941 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 /* must be called only after the slave
1943 * has been detached from the list
1944 */
1945 bond_alb_deinit_slave(bond, slave);
1946 }
1947
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001948 bond_compute_features(bond);
1949
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001950 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 bond_del_vlans_from_slave(bond, slave_dev);
1952
1953 /* If the mode USES_PRIMARY, then we should only remove its
1954 * promisc and mc settings if it was the curr_active_slave, but that was
1955 * already taken care of above when we detached the slave
1956 */
1957 if (!USES_PRIMARY(bond->params.mode)) {
1958 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001959 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001963 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07001967 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07001969 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 }
1971
1972 netdev_set_master(slave_dev, NULL);
1973
1974 /* close slave before restoring its mac address */
1975 dev_close(slave_dev);
1976
Jay Vosburghdd957c52007-10-09 19:57:24 -07001977 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001978 /* restore original ("permanent") mac address*/
1979 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
1980 addr.sa_family = slave_dev->type;
1981 dev_set_mac_address(slave_dev, &addr);
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001984 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
1985 IFF_SLAVE_INACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 kfree(slave);
1988
1989 /* re-acquire the lock before getting the next slave */
1990 write_lock_bh(&bond->lock);
1991 }
1992
1993 /* zero the mac address of the master so it will be
1994 * set by the application to the mac address of the
1995 * first slave
1996 */
1997 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1998
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001999 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002001 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002002 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2003 bond_dev->name, bond_dev->name);
2004 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2005 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002008 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010out:
2011 write_unlock_bh(&bond->lock);
2012
2013 return 0;
2014}
2015
2016/*
2017 * This function changes the active slave to slave <slave_dev>.
2018 * It returns -EINVAL in the following cases.
2019 * - <slave_dev> is not found in the list.
2020 * - There is not active slave now.
2021 * - <slave_dev> is already active.
2022 * - The link state of <slave_dev> is not BOND_LINK_UP.
2023 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002024 * In these cases, this function does nothing.
2025 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 */
2027static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2028{
Wang Chen454d7c92008-11-12 23:37:49 -08002029 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 struct slave *old_active = NULL;
2031 struct slave *new_active = NULL;
2032 int res = 0;
2033
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002034 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002038 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002041 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002043 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002045 read_unlock(&bond->curr_slave_lock);
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 new_active = bond_get_slave_by_dev(bond, slave_dev);
2048
2049 /*
2050 * Changing to the current active: do nothing; return success.
2051 */
2052 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002053 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 return 0;
2055 }
2056
2057 if ((new_active) &&
2058 (old_active) &&
2059 (new_active->link == BOND_LINK_UP) &&
2060 IS_UP(new_active->dev)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002061 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002063 write_unlock_bh(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002064 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002067 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 return res;
2070}
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2073{
Wang Chen454d7c92008-11-12 23:37:49 -08002074 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 info->bond_mode = bond->params.mode;
2077 info->miimon = bond->params.miimon;
2078
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002079 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002081 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 return 0;
2084}
2085
2086static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2087{
Wang Chen454d7c92008-11-12 23:37:49 -08002088 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002090 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002092 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094 bond_for_each_slave(bond, slave, i) {
2095 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002096 res = 0;
2097 strcpy(info->slave_name, slave->dev->name);
2098 info->link = slave->link;
2099 info->state = slave->state;
2100 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 break;
2102 }
2103 }
2104
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002105 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Eric Dumazet689c96c2009-04-23 03:39:04 +00002107 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
2110/*-------------------------------- Monitoring -------------------------------*/
2111
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002112
2113static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002115 struct slave *slave;
2116 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002117 bool ignore_updelay;
2118
2119 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002122 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002124 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002127 case BOND_LINK_UP:
2128 if (link_state)
2129 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002131 slave->link = BOND_LINK_FAIL;
2132 slave->delay = bond->params.downdelay;
2133 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002134 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2135 bond->dev->name,
2136 (bond->params.mode ==
2137 BOND_MODE_ACTIVEBACKUP) ?
2138 ((slave->state == BOND_STATE_ACTIVE) ?
2139 "active " : "backup ") : "",
2140 slave->dev->name,
2141 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002143 /*FALLTHRU*/
2144 case BOND_LINK_FAIL:
2145 if (link_state) {
2146 /*
2147 * recovered before downdelay expired
2148 */
2149 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002151 pr_info("%s: link status up again after %d ms for interface %s.\n",
2152 bond->dev->name,
2153 (bond->params.downdelay - slave->delay) *
2154 bond->params.miimon,
2155 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002156 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002158
2159 if (slave->delay <= 0) {
2160 slave->new_link = BOND_LINK_DOWN;
2161 commit++;
2162 continue;
2163 }
2164
2165 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002168 case BOND_LINK_DOWN:
2169 if (!link_state)
2170 continue;
2171
2172 slave->link = BOND_LINK_BACK;
2173 slave->delay = bond->params.updelay;
2174
2175 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002176 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2177 bond->dev->name, slave->dev->name,
2178 ignore_updelay ? 0 :
2179 bond->params.updelay *
2180 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002182 /*FALLTHRU*/
2183 case BOND_LINK_BACK:
2184 if (!link_state) {
2185 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002186 pr_info("%s: link status down again after %d ms for interface %s.\n",
2187 bond->dev->name,
2188 (bond->params.updelay - slave->delay) *
2189 bond->params.miimon,
2190 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002191
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002192 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002194
Jiri Pirko41f89102009-04-24 03:57:29 +00002195 if (ignore_updelay)
2196 slave->delay = 0;
2197
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002198 if (slave->delay <= 0) {
2199 slave->new_link = BOND_LINK_UP;
2200 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002201 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002202 continue;
2203 }
2204
2205 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002207 }
2208 }
2209
2210 return commit;
2211}
2212
2213static void bond_miimon_commit(struct bonding *bond)
2214{
2215 struct slave *slave;
2216 int i;
2217
2218 bond_for_each_slave(bond, slave, i) {
2219 switch (slave->new_link) {
2220 case BOND_LINK_NOCHANGE:
2221 continue;
2222
2223 case BOND_LINK_UP:
2224 slave->link = BOND_LINK_UP;
2225 slave->jiffies = jiffies;
2226
2227 if (bond->params.mode == BOND_MODE_8023AD) {
2228 /* prevent it from being the active one */
2229 slave->state = BOND_STATE_BACKUP;
2230 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2231 /* make it immediately active */
2232 slave->state = BOND_STATE_ACTIVE;
2233 } else if (slave != bond->primary_slave) {
2234 /* prevent it from being the active one */
2235 slave->state = BOND_STATE_BACKUP;
2236 }
2237
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002238 pr_info("%s: link status definitely up for interface %s.\n",
2239 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002240
2241 /* notify ad that the link status has changed */
2242 if (bond->params.mode == BOND_MODE_8023AD)
2243 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2244
Holger Eitzenberger58402052008-12-09 23:07:13 -08002245 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002246 bond_alb_handle_link_change(bond, slave,
2247 BOND_LINK_UP);
2248
2249 if (!bond->curr_active_slave ||
2250 (slave == bond->primary_slave))
2251 goto do_failover;
2252
2253 continue;
2254
2255 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002256 if (slave->link_failure_count < UINT_MAX)
2257 slave->link_failure_count++;
2258
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002259 slave->link = BOND_LINK_DOWN;
2260
2261 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2262 bond->params.mode == BOND_MODE_8023AD)
2263 bond_set_slave_inactive_flags(slave);
2264
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002265 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2266 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002267
2268 if (bond->params.mode == BOND_MODE_8023AD)
2269 bond_3ad_handle_link_change(slave,
2270 BOND_LINK_DOWN);
2271
Jiri Pirkoae63e802009-05-27 05:42:36 +00002272 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002273 bond_alb_handle_link_change(bond, slave,
2274 BOND_LINK_DOWN);
2275
2276 if (slave == bond->curr_active_slave)
2277 goto do_failover;
2278
2279 continue;
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002282 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002283 bond->dev->name, slave->new_link,
2284 slave->dev->name);
2285 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002287 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
2289
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002290do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002291 ASSERT_RTNL();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002292 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002294 write_unlock_bh(&bond->curr_slave_lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002295 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002296
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002297 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
2299
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002300/*
2301 * bond_mii_monitor
2302 *
2303 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002304 * inspection, then (if inspection indicates something needs to be done)
2305 * an acquisition of appropriate locks followed by a commit phase to
2306 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002307 */
2308void bond_mii_monitor(struct work_struct *work)
2309{
2310 struct bonding *bond = container_of(work, struct bonding,
2311 mii_work.work);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002312
2313 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002314 if (bond->kill_timers)
2315 goto out;
2316
2317 if (bond->slave_cnt == 0)
2318 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002319
2320 if (bond->send_grat_arp) {
2321 read_lock(&bond->curr_slave_lock);
2322 bond_send_gratuitous_arp(bond);
2323 read_unlock(&bond->curr_slave_lock);
2324 }
2325
Brian Haley305d5522008-11-04 17:51:14 -08002326 if (bond->send_unsol_na) {
2327 read_lock(&bond->curr_slave_lock);
2328 bond_send_unsolicited_na(bond);
2329 read_unlock(&bond->curr_slave_lock);
2330 }
2331
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002332 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002333 read_unlock(&bond->lock);
2334 rtnl_lock();
2335 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002336
2337 bond_miimon_commit(bond);
2338
Jay Vosburgh56556622008-01-17 16:25:03 -08002339 read_unlock(&bond->lock);
2340 rtnl_unlock(); /* might sleep, hold no other locks */
2341 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002342 }
2343
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002344re_arm:
2345 if (bond->params.miimon)
2346 queue_delayed_work(bond->wq, &bond->mii_work,
2347 msecs_to_jiffies(bond->params.miimon));
2348out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002349 read_unlock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002350}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002351
Al Virod3bb52b2007-08-22 20:06:58 -04002352static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002353{
2354 struct in_device *idev;
2355 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002356 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002357
2358 if (!dev)
2359 return 0;
2360
2361 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002362 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002363 if (!idev)
2364 goto out;
2365
2366 ifa = idev->ifa_list;
2367 if (!ifa)
2368 goto out;
2369
2370 addr = ifa->ifa_local;
2371out:
2372 rcu_read_unlock();
2373 return addr;
2374}
2375
Al Virod3bb52b2007-08-22 20:06:58 -04002376static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002377{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002378 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002379
2380 if (ip == bond->master_ip)
2381 return 1;
2382
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002383 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002384 if (ip == vlan->vlan_ip)
2385 return 1;
2386 }
2387
2388 return 0;
2389}
2390
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002391/*
2392 * We go to the (large) trouble of VLAN tagging ARP frames because
2393 * switches in VLAN mode (especially if ports are configured as
2394 * "native" to a VLAN) might not pass non-tagged frames.
2395 */
Al Virod3bb52b2007-08-22 20:06:58 -04002396static 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 -04002397{
2398 struct sk_buff *skb;
2399
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002400 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002401 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002402
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002403 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2404 NULL, slave_dev->dev_addr, NULL);
2405
2406 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002407 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002408 return;
2409 }
2410 if (vlan_id) {
2411 skb = vlan_put_tag(skb, vlan_id);
2412 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002413 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002414 return;
2415 }
2416 }
2417 arp_xmit(skb);
2418}
2419
2420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2422{
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002423 int i, vlan_id, rv;
Al Virod3bb52b2007-08-22 20:06:58 -04002424 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002425 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002426 struct net_device *vlan_dev;
2427 struct flowi fl;
2428 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Mitch Williams6b780562005-11-09 10:36:19 -08002430 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2431 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002432 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002433 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002434 if (list_empty(&bond->vlan_list)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002435 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002436 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2437 bond->master_ip, 0);
2438 continue;
2439 }
2440
2441 /*
2442 * If VLANs are configured, we do a route lookup to
2443 * determine which VLAN interface would be used, so we
2444 * can tag the ARP with the proper VLAN tag.
2445 */
2446 memset(&fl, 0, sizeof(fl));
2447 fl.fl4_dst = targets[i];
2448 fl.fl4_tos = RTO_ONLINK;
2449
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00002450 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002451 if (rv) {
2452 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002453 pr_warning("%s: no route to arp_ip_target %pI4\n",
2454 bond->dev->name, &fl.fl4_dst);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002455 }
2456 continue;
2457 }
2458
2459 /*
2460 * This target is not on a VLAN
2461 */
2462 if (rt->u.dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002463 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002464 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002465 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2466 bond->master_ip, 0);
2467 continue;
2468 }
2469
2470 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002471 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002472 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002473 if (vlan_dev == rt->u.dst.dev) {
2474 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002475 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002476 vlan_dev->name, vlan_id);
2477 break;
2478 }
2479 }
2480
2481 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002482 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002483 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2484 vlan->vlan_ip, vlan_id);
2485 continue;
2486 }
2487
2488 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002489 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2490 bond->dev->name, &fl.fl4_dst,
2491 rt->u.dst.dev ? rt->u.dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002492 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002493 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002494 }
2495}
2496
2497/*
2498 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2499 * for each VLAN above us.
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002500 *
2501 * Caller must hold curr_slave_lock for read or better
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002502 */
2503static void bond_send_gratuitous_arp(struct bonding *bond)
2504{
2505 struct slave *slave = bond->curr_active_slave;
2506 struct vlan_entry *vlan;
2507 struct net_device *vlan_dev;
2508
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002509 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2510 bond->dev->name, slave ? slave->dev->name : "NULL");
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002511
2512 if (!slave || !bond->send_grat_arp ||
2513 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002514 return;
2515
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002516 bond->send_grat_arp--;
2517
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002518 if (bond->master_ip) {
2519 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
Moni Shoua1053f622007-10-09 19:43:42 -07002520 bond->master_ip, 0);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002521 }
2522
2523 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002524 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002525 if (vlan->vlan_ip) {
2526 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2527 vlan->vlan_ip, vlan->vlan_id);
2528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 }
2530}
2531
Al Virod3bb52b2007-08-22 20:06:58 -04002532static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002533{
2534 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002535 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002536
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002537 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002538 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002539 &sip, &tip, i, &targets[i],
2540 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002541 if (sip == targets[i]) {
2542 if (bond_has_this_ip(bond, tip))
2543 slave->last_arp_rx = jiffies;
2544 return;
2545 }
2546 }
2547}
2548
2549static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2550{
2551 struct arphdr *arp;
2552 struct slave *slave;
2553 struct bonding *bond;
2554 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002555 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002556
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002557 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2558 /*
2559 * When using VLANS and bonding, dev and oriv_dev may be
2560 * incorrect if the physical interface supports VLAN
2561 * acceleration. With this change ARP validation now
2562 * works for hosts only reachable on the VLAN interface.
2563 */
2564 dev = vlan_dev_real_dev(dev);
2565 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2566 }
2567
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002568 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2569 goto out;
2570
Wang Chen454d7c92008-11-12 23:37:49 -08002571 bond = netdev_priv(dev);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002572 read_lock(&bond->lock);
2573
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002574 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002575 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2576 orig_dev ? orig_dev->name : "NULL");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002577
2578 slave = bond_get_slave_by_dev(bond, orig_dev);
2579 if (!slave || !slave_do_arp_validate(bond, slave))
2580 goto out_unlock;
2581
Pavel Emelyanov988b7052008-03-03 12:20:57 -08002582 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002583 goto out_unlock;
2584
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002585 arp = arp_hdr(skb);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002586 if (arp->ar_hln != dev->addr_len ||
2587 skb->pkt_type == PACKET_OTHERHOST ||
2588 skb->pkt_type == PACKET_LOOPBACK ||
2589 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2590 arp->ar_pro != htons(ETH_P_IP) ||
2591 arp->ar_pln != 4)
2592 goto out_unlock;
2593
2594 arp_ptr = (unsigned char *)(arp + 1);
2595 arp_ptr += dev->addr_len;
2596 memcpy(&sip, arp_ptr, 4);
2597 arp_ptr += 4 + dev->addr_len;
2598 memcpy(&tip, arp_ptr, 4);
2599
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002600 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002601 bond->dev->name, slave->dev->name, slave->state,
2602 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2603 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002604
2605 /*
2606 * Backup slaves won't see the ARP reply, but do come through
2607 * here for each ARP probe (so we swap the sip/tip to validate
2608 * the probe). In a "redundant switch, common router" type of
2609 * configuration, the ARP probe will (hopefully) travel from
2610 * the active, through one switch, the router, then the other
2611 * switch before reaching the backup.
2612 */
2613 if (slave->state == BOND_STATE_ACTIVE)
2614 bond_validate_arp(bond, slave, sip, tip);
2615 else
2616 bond_validate_arp(bond, slave, tip, sip);
2617
2618out_unlock:
2619 read_unlock(&bond->lock);
2620out:
2621 dev_kfree_skb(skb);
2622 return NET_RX_SUCCESS;
2623}
2624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625/*
2626 * this function is called regularly to monitor each slave's link
2627 * ensuring that traffic is being sent and received when arp monitoring
2628 * is used in load-balancing mode. if the adapter has been dormant, then an
2629 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2630 * arp monitoring in active backup mode.
2631 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002632void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002634 struct bonding *bond = container_of(work, struct bonding,
2635 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 struct slave *slave, *oldcurrent;
2637 int do_failover = 0;
2638 int delta_in_ticks;
2639 int i;
2640
2641 read_lock(&bond->lock);
2642
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002643 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002645 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002648 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651 read_lock(&bond->curr_slave_lock);
2652 oldcurrent = bond->curr_active_slave;
2653 read_unlock(&bond->curr_slave_lock);
2654
2655 /* see if any of the previous devices are up now (i.e. they have
2656 * xmt and rcv traffic). the curr_active_slave does not come into
2657 * the picture unless it is null. also, slave->jiffies is not needed
2658 * here because we send an arp on each slave and give a slave as
2659 * long as it needs to get the tx/rx within the delta.
2660 * TODO: what about up/down delay in arp mode? it wasn't here before
2661 * so it can wait
2662 */
2663 bond_for_each_slave(bond, slave, i) {
2664 if (slave->link != BOND_LINK_UP) {
Eric Dumazet9d214932009-05-17 20:55:16 -07002665 if (time_before_eq(jiffies, dev_trans_start(slave->dev) + delta_in_ticks) &&
David Sterbab63bb732007-12-06 23:40:33 -08002666 time_before_eq(jiffies, slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 slave->link = BOND_LINK_UP;
2669 slave->state = BOND_STATE_ACTIVE;
2670
2671 /* primary_slave has no meaning in round-robin
2672 * mode. the window of a slave being up and
2673 * curr_active_slave being null after enslaving
2674 * is closed.
2675 */
2676 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002677 pr_info("%s: link status definitely up for interface %s, ",
2678 bond->dev->name,
2679 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 do_failover = 1;
2681 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002682 pr_info("%s: interface %s is now up\n",
2683 bond->dev->name,
2684 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 }
2686 }
2687 } else {
2688 /* slave->link == BOND_LINK_UP */
2689
2690 /* not all switches will respond to an arp request
2691 * when the source ip is 0, so don't take the link down
2692 * if we don't know our ip yet
2693 */
Eric Dumazet9d214932009-05-17 20:55:16 -07002694 if (time_after_eq(jiffies, dev_trans_start(slave->dev) + 2*delta_in_ticks) ||
Jay Vosburgh4b8a9232008-05-17 21:10:08 -07002695 (time_after_eq(jiffies, slave->dev->last_rx + 2*delta_in_ticks))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 slave->link = BOND_LINK_DOWN;
2698 slave->state = BOND_STATE_BACKUP;
2699
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002700 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002703 pr_info("%s: interface %s is now down.\n",
2704 bond->dev->name,
2705 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002707 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 }
2710 }
2711
2712 /* note: if switch is in round-robin mode, all links
2713 * must tx arp to ensure all links rx an arp - otherwise
2714 * links may oscillate or not come up at all; if switch is
2715 * in something like xor mode, there is nothing we can
2716 * do - all replies will be rx'ed on same link causing slaves
2717 * to be unstable during low/no traffic periods
2718 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002719 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 }
2722
2723 if (do_failover) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002724 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
2726 bond_select_active_slave(bond);
2727
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002728 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 }
2730
2731re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002732 if (bond->params.arp_interval)
2733 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734out:
2735 read_unlock(&bond->lock);
2736}
2737
2738/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002739 * Called to inspect slaves for active-backup mode ARP monitor link state
2740 * changes. Sets new_link in slaves to specify what action should take
2741 * place for the slave. Returns 0 if no changes are found, >0 if changes
2742 * to link states must be committed.
2743 *
2744 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002746static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002749 int i, commit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002752 slave->new_link = BOND_LINK_NOCHANGE;
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 if (slave->link != BOND_LINK_UP) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002755 if (time_before_eq(jiffies, slave_last_rx(bond, slave) +
2756 delta_in_ticks)) {
2757 slave->new_link = BOND_LINK_UP;
2758 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002761 continue;
2762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002764 /*
2765 * Give slaves 2*delta after being enslaved or made
2766 * active. This avoids bouncing, as the last receive
2767 * times need a full ARP monitor cycle to be updated.
2768 */
2769 if (!time_after_eq(jiffies, slave->jiffies +
2770 2 * delta_in_ticks))
2771 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002773 /*
2774 * Backup slave is down if:
2775 * - No current_arp_slave AND
2776 * - more than 3*delta since last receive AND
2777 * - the bond has an IP address
2778 *
2779 * Note: a non-null current_arp_slave indicates
2780 * the curr_active_slave went down and we are
2781 * searching for a new one; under this condition
2782 * we only take the curr_active_slave down - this
2783 * gives each slave a chance to tx/rx traffic
2784 * before being taken out
2785 */
2786 if (slave->state == BOND_STATE_BACKUP &&
2787 !bond->current_arp_slave &&
2788 time_after(jiffies, slave_last_rx(bond, slave) +
2789 3 * delta_in_ticks)) {
2790 slave->new_link = BOND_LINK_DOWN;
2791 commit++;
2792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002794 /*
2795 * Active slave is down if:
2796 * - more than 2*delta since transmitting OR
2797 * - (more than 2*delta since receive AND
2798 * the bond has an IP address)
2799 */
2800 if ((slave->state == BOND_STATE_ACTIVE) &&
Eric Dumazet9d214932009-05-17 20:55:16 -07002801 (time_after_eq(jiffies, dev_trans_start(slave->dev) +
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002802 2 * delta_in_ticks) ||
2803 (time_after_eq(jiffies, slave_last_rx(bond, slave)
2804 + 2 * delta_in_ticks)))) {
2805 slave->new_link = BOND_LINK_DOWN;
2806 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 }
2808 }
2809
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002810 return commit;
2811}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002813/*
2814 * Called to commit link state changes noted by inspection step of
2815 * active-backup mode ARP monitor.
2816 *
2817 * Called with RTNL and bond->lock for read.
2818 */
2819static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2820{
2821 struct slave *slave;
2822 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002824 bond_for_each_slave(bond, slave, i) {
2825 switch (slave->new_link) {
2826 case BOND_LINK_NOCHANGE:
2827 continue;
2828
2829 case BOND_LINK_UP:
Jiri Pirkob9f60252009-08-31 11:09:38 +00002830 if ((!bond->curr_active_slave &&
2831 time_before_eq(jiffies,
2832 dev_trans_start(slave->dev) +
2833 delta_in_ticks)) ||
2834 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002835 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002836 bond->current_arp_slave = NULL;
2837
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002838 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002839 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002840
Jiri Pirkob9f60252009-08-31 11:09:38 +00002841 if (!bond->curr_active_slave ||
2842 (slave == bond->primary_slave))
2843 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002844
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002845 }
2846
Jiri Pirkob9f60252009-08-31 11:09:38 +00002847 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002848
2849 case BOND_LINK_DOWN:
2850 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002853 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002854 bond_set_slave_inactive_flags(slave);
2855
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002856 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00002857 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002858
2859 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002860 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00002861 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002862 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00002863
2864 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002865
2866 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002867 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002868 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00002870 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Jiri Pirkob9f60252009-08-31 11:09:38 +00002873do_failover:
2874 ASSERT_RTNL();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002875 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00002876 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002877 write_unlock_bh(&bond->curr_slave_lock);
2878 }
2879
2880 bond_set_carrier(bond);
2881}
2882
2883/*
2884 * Send ARP probes for active-backup mode ARP monitor.
2885 *
2886 * Called with bond->lock held for read.
2887 */
2888static void bond_ab_arp_probe(struct bonding *bond)
2889{
2890 struct slave *slave;
2891 int i;
2892
2893 read_lock(&bond->curr_slave_lock);
2894
2895 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002896 pr_info("PROBE: c_arp %s && cas %s BAD\n",
2897 bond->current_arp_slave->dev->name,
2898 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002899
2900 if (bond->curr_active_slave) {
2901 bond_arp_send_all(bond, bond->curr_active_slave);
2902 read_unlock(&bond->curr_slave_lock);
2903 return;
2904 }
2905
2906 read_unlock(&bond->curr_slave_lock);
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 /* if we don't have a curr_active_slave, search for the next available
2909 * backup slave from the current_arp_slave and make it the candidate
2910 * for becoming the curr_active_slave
2911 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002912
2913 if (!bond->current_arp_slave) {
2914 bond->current_arp_slave = bond->first_slave;
2915 if (!bond->current_arp_slave)
2916 return;
2917 }
2918
2919 bond_set_slave_inactive_flags(bond->current_arp_slave);
2920
2921 /* search for next candidate */
2922 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
2923 if (IS_UP(slave->dev)) {
2924 slave->link = BOND_LINK_BACK;
2925 bond_set_slave_active_flags(slave);
2926 bond_arp_send_all(bond, slave);
2927 slave->jiffies = jiffies;
2928 bond->current_arp_slave = slave;
2929 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
2931
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002932 /* if the link state is up at this point, we
2933 * mark it down - this can happen if we have
2934 * simultaneous link failures and
2935 * reselect_active_interface doesn't make this
2936 * one the current slave so it is still marked
2937 * up when it is actually down
2938 */
2939 if (slave->link == BOND_LINK_UP) {
2940 slave->link = BOND_LINK_DOWN;
2941 if (slave->link_failure_count < UINT_MAX)
2942 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002944 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002946 pr_info("%s: backup interface %s is now down.\n",
2947 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 }
2949 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002950}
2951
2952void bond_activebackup_arp_mon(struct work_struct *work)
2953{
2954 struct bonding *bond = container_of(work, struct bonding,
2955 arp_work.work);
2956 int delta_in_ticks;
2957
2958 read_lock(&bond->lock);
2959
2960 if (bond->kill_timers)
2961 goto out;
2962
2963 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
2964
2965 if (bond->slave_cnt == 0)
2966 goto re_arm;
2967
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002968 if (bond->send_grat_arp) {
2969 read_lock(&bond->curr_slave_lock);
2970 bond_send_gratuitous_arp(bond);
2971 read_unlock(&bond->curr_slave_lock);
2972 }
2973
Brian Haley305d5522008-11-04 17:51:14 -08002974 if (bond->send_unsol_na) {
2975 read_lock(&bond->curr_slave_lock);
2976 bond_send_unsolicited_na(bond);
2977 read_unlock(&bond->curr_slave_lock);
2978 }
2979
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002980 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
2981 read_unlock(&bond->lock);
2982 rtnl_lock();
2983 read_lock(&bond->lock);
2984
2985 bond_ab_arp_commit(bond, delta_in_ticks);
2986
2987 read_unlock(&bond->lock);
2988 rtnl_unlock();
2989 read_lock(&bond->lock);
2990 }
2991
2992 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
2994re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002995 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002996 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997out:
2998 read_unlock(&bond->lock);
2999}
3000
3001/*------------------------------ proc/seq_file-------------------------------*/
3002
3003#ifdef CONFIG_PROC_FS
3004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003006 __acquires(&dev_base_lock)
3007 __acquires(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 struct bonding *bond = seq->private;
3010 loff_t off = 0;
3011 struct slave *slave;
3012 int i;
3013
3014 /* make sure the bond won't be taken away */
3015 read_lock(&dev_base_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003016 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003018 if (*pos == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 return SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
3021 bond_for_each_slave(bond, slave, i) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003022 if (++off == *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 return slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
3025
3026 return NULL;
3027}
3028
3029static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3030{
3031 struct bonding *bond = seq->private;
3032 struct slave *slave = v;
3033
3034 ++*pos;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003035 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 return bond->first_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
3038 slave = slave->next;
3039
3040 return (slave == bond->first_slave) ? NULL : slave;
3041}
3042
3043static void bond_info_seq_stop(struct seq_file *seq, void *v)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00003044 __releases(&bond->lock)
3045 __releases(&dev_base_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
3047 struct bonding *bond = seq->private;
3048
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003049 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 read_unlock(&dev_base_lock);
3051}
3052
3053static void bond_info_show_master(struct seq_file *seq)
3054{
3055 struct bonding *bond = seq->private;
3056 struct slave *curr;
Mitch Williams4756b022005-11-09 10:36:25 -08003057 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 read_lock(&bond->curr_slave_lock);
3060 curr = bond->curr_active_slave;
3061 read_unlock(&bond->curr_slave_lock);
3062
Jay Vosburghdd957c52007-10-09 19:57:24 -07003063 seq_printf(seq, "Bonding Mode: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 bond_mode_name(bond->params.mode));
3065
Jay Vosburghdd957c52007-10-09 19:57:24 -07003066 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3067 bond->params.fail_over_mac)
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07003068 seq_printf(seq, " (fail_over_mac %s)",
3069 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
Jay Vosburghdd957c52007-10-09 19:57:24 -07003070
3071 seq_printf(seq, "\n");
3072
Mitch Williamsc61b75a2005-11-09 10:35:13 -08003073 if (bond->params.mode == BOND_MODE_XOR ||
3074 bond->params.mode == BOND_MODE_8023AD) {
3075 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3076 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3077 bond->params.xmit_policy);
3078 }
3079
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 if (USES_PRIMARY(bond->params.mode)) {
Jiri Pirkoa5499522009-09-25 03:28:09 +00003081 seq_printf(seq, "Primary Slave: %s",
Mitch Williams0f418b22005-11-09 10:35:21 -08003082 (bond->primary_slave) ?
3083 bond->primary_slave->dev->name : "None");
Jiri Pirkoa5499522009-09-25 03:28:09 +00003084 if (bond->primary_slave)
3085 seq_printf(seq, " (primary_reselect %s)",
3086 pri_reselect_tbl[bond->params.primary_reselect].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Jiri Pirkoa5499522009-09-25 03:28:09 +00003088 seq_printf(seq, "\nCurrently Active Slave: %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 (curr) ? curr->dev->name : "None");
3090 }
3091
Jay Vosburghff59c452006-03-27 13:27:43 -08003092 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3093 "up" : "down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3095 seq_printf(seq, "Up Delay (ms): %d\n",
3096 bond->params.updelay * bond->params.miimon);
3097 seq_printf(seq, "Down Delay (ms): %d\n",
3098 bond->params.downdelay * bond->params.miimon);
3099
Mitch Williams4756b022005-11-09 10:36:25 -08003100
3101 /* ARP information */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003102 if (bond->params.arp_interval > 0) {
3103 int printed = 0;
Mitch Williams4756b022005-11-09 10:36:25 -08003104 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3105 bond->params.arp_interval);
3106
3107 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3108
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003109 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
Mitch Williams4756b022005-11-09 10:36:25 -08003110 if (!bond->params.arp_targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07003111 break;
Mitch Williams4756b022005-11-09 10:36:25 -08003112 if (printed)
3113 seq_printf(seq, ",");
Harvey Harrison8cf14e32008-10-29 22:43:33 -07003114 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
Mitch Williams4756b022005-11-09 10:36:25 -08003115 printed = 1;
3116 }
3117 seq_printf(seq, "\n");
3118 }
3119
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 if (bond->params.mode == BOND_MODE_8023AD) {
3121 struct ad_info ad_info;
3122
3123 seq_puts(seq, "\n802.3ad info\n");
3124 seq_printf(seq, "LACP rate: %s\n",
3125 (bond->params.lacp_fast) ? "fast" : "slow");
Jay Vosburghfd989c82008-11-04 17:51:16 -08003126 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3127 ad_select_tbl[bond->params.ad_select].modename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
3129 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3130 seq_printf(seq, "bond %s has no active aggregator\n",
3131 bond->dev->name);
3132 } else {
3133 seq_printf(seq, "Active Aggregator Info:\n");
3134
3135 seq_printf(seq, "\tAggregator ID: %d\n",
3136 ad_info.aggregator_id);
3137 seq_printf(seq, "\tNumber of ports: %d\n",
3138 ad_info.ports);
3139 seq_printf(seq, "\tActor Key: %d\n",
3140 ad_info.actor_key);
3141 seq_printf(seq, "\tPartner Key: %d\n",
3142 ad_info.partner_key);
Johannes Berge1749612008-10-27 15:59:26 -07003143 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3144 ad_info.partner_system);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 }
3146 }
3147}
3148
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003149static void bond_info_show_slave(struct seq_file *seq,
3150 const struct slave *slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151{
3152 struct bonding *bond = seq->private;
3153
3154 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3155 seq_printf(seq, "MII Status: %s\n",
3156 (slave->link == BOND_LINK_UP) ? "up" : "down");
Kenzo Iwami65509642006-09-22 21:53:08 -07003157 seq_printf(seq, "Link Failure Count: %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 slave->link_failure_count);
3159
Johannes Berge1749612008-10-27 15:59:26 -07003160 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 if (bond->params.mode == BOND_MODE_8023AD) {
3163 const struct aggregator *agg
3164 = SLAVE_AD_INFO(slave).port.aggregator;
3165
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003166 if (agg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 seq_printf(seq, "Aggregator ID: %d\n",
3168 agg->aggregator_identifier);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003169 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 seq_puts(seq, "Aggregator ID: N/A\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 }
3172}
3173
3174static int bond_info_seq_show(struct seq_file *seq, void *v)
3175{
3176 if (v == SEQ_START_TOKEN) {
3177 seq_printf(seq, "%s\n", version);
3178 bond_info_show_master(seq);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003179 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 bond_info_show_slave(seq, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 return 0;
3183}
3184
Jan Engelhardt4101dec2009-01-14 13:52:18 -08003185static const struct seq_operations bond_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 .start = bond_info_seq_start,
3187 .next = bond_info_seq_next,
3188 .stop = bond_info_seq_stop,
3189 .show = bond_info_seq_show,
3190};
3191
3192static int bond_info_open(struct inode *inode, struct file *file)
3193{
3194 struct seq_file *seq;
3195 struct proc_dir_entry *proc;
3196 int res;
3197
3198 res = seq_open(file, &bond_info_seq_ops);
3199 if (!res) {
3200 /* recover the pointer buried in proc_dir_entry data */
3201 seq = file->private_data;
3202 proc = PDE(inode);
3203 seq->private = proc->data;
3204 }
3205
3206 return res;
3207}
3208
Arjan van de Vend54b1fd2007-02-12 00:55:34 -08003209static const struct file_operations bond_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 .owner = THIS_MODULE,
3211 .open = bond_info_open,
3212 .read = seq_read,
3213 .llseek = seq_lseek,
3214 .release = seq_release,
3215};
3216
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003217static void bond_create_proc_entry(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
3219 struct net_device *bond_dev = bond->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003220 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003222 if (bn->proc_dir) {
Denis V. Luneva95609c2008-04-29 01:02:29 -07003223 bond->proc_entry = proc_create_data(bond_dev->name,
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003224 S_IRUGO, bn->proc_dir,
Denis V. Luneva95609c2008-04-29 01:02:29 -07003225 &bond_info_fops, bond);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003226 if (bond->proc_entry == NULL)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003227 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3228 DRV_NAME, bond_dev->name);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003229 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232}
3233
3234static void bond_remove_proc_entry(struct bonding *bond)
3235{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003236 struct net_device *bond_dev = bond->dev;
3237 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3238
3239 if (bn->proc_dir && bond->proc_entry) {
3240 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 memset(bond->proc_file_name, 0, IFNAMSIZ);
3242 bond->proc_entry = NULL;
3243 }
3244}
3245
3246/* Create the bonding directory under /proc/net, if doesn't exist yet.
3247 * Caller must hold rtnl_lock.
3248 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003249static void __net_init bond_create_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003251 if (!bn->proc_dir) {
3252 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3253 if (!bn->proc_dir)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003254 pr_warning("Warning: cannot create /proc/net/%s\n",
3255 DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 }
3257}
3258
3259/* Destroy the bonding directory under /proc/net, if empty.
3260 * Caller must hold rtnl_lock.
3261 */
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003262static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003264 if (bn->proc_dir) {
3265 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3266 bn->proc_dir = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 }
3268}
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003269
3270#else /* !CONFIG_PROC_FS */
3271
Nicolas de Pesloüan38fc0022009-10-13 00:45:06 -07003272static void bond_create_proc_entry(struct bonding *bond)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003273{
3274}
3275
3276static void bond_remove_proc_entry(struct bonding *bond)
3277{
3278}
3279
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003280static inline void bond_create_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003281{
3282}
3283
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003284static inline void bond_destroy_proc_dir(struct bond_net *bn)
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003285{
3286}
3287
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288#endif /* CONFIG_PROC_FS */
3289
Jiri Pirkoaee64fa2009-05-05 06:20:51 +00003290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291/*-------------------------- netdev event handling --------------------------*/
3292
3293/*
3294 * Change device name
3295 */
3296static int bond_event_changename(struct bonding *bond)
3297{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 bond_remove_proc_entry(bond);
3299 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 return NOTIFY_DONE;
3302}
3303
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003304static int bond_master_netdev_event(unsigned long event,
3305 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
Wang Chen454d7c92008-11-12 23:37:49 -08003307 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309 switch (event) {
3310 case NETDEV_CHANGENAME:
3311 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 default:
3313 break;
3314 }
3315
3316 return NOTIFY_DONE;
3317}
3318
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003319static int bond_slave_netdev_event(unsigned long event,
3320 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321{
3322 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003323 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
3325 switch (event) {
3326 case NETDEV_UNREGISTER:
3327 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003328 if (bond->setup_by_slave)
3329 bond_release_and_destroy(bond_dev, slave_dev);
3330 else
3331 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 }
3333 break;
3334 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003335 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3336 struct slave *slave;
3337
3338 slave = bond_get_slave_by_dev(bond, slave_dev);
3339 if (slave) {
3340 u16 old_speed = slave->speed;
3341 u16 old_duplex = slave->duplex;
3342
3343 bond_update_speed_duplex(slave);
3344
3345 if (bond_is_lb(bond))
3346 break;
3347
3348 if (old_speed != slave->speed)
3349 bond_3ad_adapter_speed_changed(slave);
3350 if (old_duplex != slave->duplex)
3351 bond_3ad_adapter_duplex_changed(slave);
3352 }
3353 }
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 break;
3356 case NETDEV_DOWN:
3357 /*
3358 * ... Or is it this?
3359 */
3360 break;
3361 case NETDEV_CHANGEMTU:
3362 /*
3363 * TODO: Should slaves be allowed to
3364 * independently alter their MTU? For
3365 * an active-backup bond, slaves need
3366 * not be the same type of device, so
3367 * MTUs may vary. For other modes,
3368 * slaves arguably should have the
3369 * same MTUs. To do this, we'd need to
3370 * take over the slave's change_mtu
3371 * function for the duration of their
3372 * servitude.
3373 */
3374 break;
3375 case NETDEV_CHANGENAME:
3376 /*
3377 * TODO: handle changing the primary's name
3378 */
3379 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003380 case NETDEV_FEAT_CHANGE:
3381 bond_compute_features(bond);
3382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 default:
3384 break;
3385 }
3386
3387 return NOTIFY_DONE;
3388}
3389
3390/*
3391 * bond_netdev_event: handle netdev notifier chain events.
3392 *
3393 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003394 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 * locks for us to safely manipulate the slave devices (RTNL lock,
3396 * dev_probe_lock).
3397 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003398static int bond_netdev_event(struct notifier_block *this,
3399 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400{
3401 struct net_device *event_dev = (struct net_device *)ptr;
3402
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003403 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003404 event_dev ? event_dev->name : "None",
3405 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003407 if (!(event_dev->priv_flags & IFF_BONDING))
3408 return NOTIFY_DONE;
3409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003411 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 return bond_master_netdev_event(event, event_dev);
3413 }
3414
3415 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003416 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 return bond_slave_netdev_event(event, event_dev);
3418 }
3419
3420 return NOTIFY_DONE;
3421}
3422
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003423/*
3424 * bond_inetaddr_event: handle inetaddr notifier chain events.
3425 *
3426 * We keep track of device IPs primarily to use as source addresses in
3427 * ARP monitor probes (rather than spewing out broadcasts all the time).
3428 *
3429 * We track one IP for the main device (if it has one), plus one per VLAN.
3430 */
3431static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3432{
3433 struct in_ifaddr *ifa = ptr;
3434 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003435 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003436 struct bonding *bond;
3437 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003438
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003439 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003440 if (bond->dev == event_dev) {
3441 switch (event) {
3442 case NETDEV_UP:
3443 bond->master_ip = ifa->ifa_local;
3444 return NOTIFY_OK;
3445 case NETDEV_DOWN:
3446 bond->master_ip = bond_glean_dev_ip(bond->dev);
3447 return NOTIFY_OK;
3448 default:
3449 return NOTIFY_DONE;
3450 }
3451 }
3452
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003453 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08003454 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003455 if (vlan_dev == event_dev) {
3456 switch (event) {
3457 case NETDEV_UP:
3458 vlan->vlan_ip = ifa->ifa_local;
3459 return NOTIFY_OK;
3460 case NETDEV_DOWN:
3461 vlan->vlan_ip =
3462 bond_glean_dev_ip(vlan_dev);
3463 return NOTIFY_OK;
3464 default:
3465 return NOTIFY_DONE;
3466 }
3467 }
3468 }
3469 }
3470 return NOTIFY_DONE;
3471}
3472
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473static struct notifier_block bond_netdev_notifier = {
3474 .notifier_call = bond_netdev_event,
3475};
3476
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003477static struct notifier_block bond_inetaddr_notifier = {
3478 .notifier_call = bond_inetaddr_event,
3479};
3480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481/*-------------------------- Packet type handling ---------------------------*/
3482
3483/* register to receive lacpdus on a bond */
3484static void bond_register_lacpdu(struct bonding *bond)
3485{
3486 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3487
3488 /* initialize packet type */
3489 pk_type->type = PKT_TYPE_LACPDU;
3490 pk_type->dev = bond->dev;
3491 pk_type->func = bond_3ad_lacpdu_recv;
3492
3493 dev_add_pack(pk_type);
3494}
3495
3496/* unregister to receive lacpdus on a bond */
3497static void bond_unregister_lacpdu(struct bonding *bond)
3498{
3499 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3500}
3501
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003502void bond_register_arp(struct bonding *bond)
3503{
3504 struct packet_type *pt = &bond->arp_mon_pt;
3505
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003506 if (pt->type)
3507 return;
3508
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003509 pt->type = htons(ETH_P_ARP);
Jay Vosburghe245cb72007-02-28 17:03:27 -08003510 pt->dev = bond->dev;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003511 pt->func = bond_arp_rcv;
3512 dev_add_pack(pt);
3513}
3514
3515void bond_unregister_arp(struct bonding *bond)
3516{
Jay Vosburghc4f283b2007-02-28 17:03:20 -08003517 struct packet_type *pt = &bond->arp_mon_pt;
3518
3519 dev_remove_pack(pt);
3520 pt->type = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003521}
3522
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003523/*---------------------------- Hashing Policies -----------------------------*/
3524
3525/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003526 * Hash for the output device based upon layer 2 and layer 3 data. If
3527 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3528 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003529static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003530{
3531 struct ethhdr *data = (struct ethhdr *)skb->data;
3532 struct iphdr *iph = ip_hdr(skb);
3533
Brian Haleyf14c4e42008-09-02 10:08:08 -04003534 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003535 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003536 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003537 }
3538
Jasper Spaansd3da6832009-10-23 04:08:46 +00003539 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003540}
3541
3542/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003543 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003544 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3545 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3546 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003547static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003548{
3549 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003550 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003551 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003552 int layer4_xor = 0;
3553
Brian Haleyf14c4e42008-09-02 10:08:08 -04003554 if (skb->protocol == htons(ETH_P_IP)) {
3555 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003556 (iph->protocol == IPPROTO_TCP ||
3557 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003558 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003559 }
3560 return (layer4_xor ^
3561 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3562
3563 }
3564
Jasper Spaansd3da6832009-10-23 04:08:46 +00003565 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003566}
3567
3568/*
3569 * Hash for the output device based upon layer 2 data
3570 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003571static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003572{
3573 struct ethhdr *data = (struct ethhdr *)skb->data;
3574
Jasper Spaansd3da6832009-10-23 04:08:46 +00003575 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003576}
3577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578/*-------------------------- Device entry points ----------------------------*/
3579
3580static int bond_open(struct net_device *bond_dev)
3581{
Wang Chen454d7c92008-11-12 23:37:49 -08003582 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
3584 bond->kill_timers = 0;
3585
Holger Eitzenberger58402052008-12-09 23:07:13 -08003586 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 /* bond_alb_initialize must be called before the timer
3588 * is started.
3589 */
3590 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3591 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003592 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 }
3594
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003595 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3596 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 }
3598
3599 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003600 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3601 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 }
3603
3604 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003605 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3606 INIT_DELAYED_WORK(&bond->arp_work,
3607 bond_activebackup_arp_mon);
3608 else
3609 INIT_DELAYED_WORK(&bond->arp_work,
3610 bond_loadbalance_arp_mon);
3611
3612 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003613 if (bond->params.arp_validate)
3614 bond_register_arp(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 }
3616
3617 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003618 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003619 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 /* register to receive LACPDUs */
3621 bond_register_lacpdu(bond);
Jay Vosburghfd989c82008-11-04 17:51:16 -08003622 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 }
3624
3625 return 0;
3626}
3627
3628static int bond_close(struct net_device *bond_dev)
3629{
Wang Chen454d7c92008-11-12 23:37:49 -08003630 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
3632 if (bond->params.mode == BOND_MODE_8023AD) {
3633 /* Unregister the receive of LACPDUs */
3634 bond_unregister_lacpdu(bond);
3635 }
3636
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003637 if (bond->params.arp_validate)
3638 bond_unregister_arp(bond);
3639
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 write_lock_bh(&bond->lock);
3641
Jay Vosburghb59f9f72008-06-13 18:12:03 -07003642 bond->send_grat_arp = 0;
Brian Haley305d5522008-11-04 17:51:14 -08003643 bond->send_unsol_na = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
3645 /* signal timers not to re-arm */
3646 bond->kill_timers = 1;
3647
3648 write_unlock_bh(&bond->lock);
3649
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003651 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 }
3653
3654 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003655 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656 }
3657
3658 switch (bond->params.mode) {
3659 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003660 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 break;
3662 case BOND_MODE_TLB:
3663 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003664 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 break;
3666 default:
3667 break;
3668 }
3669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Holger Eitzenberger58402052008-12-09 23:07:13 -08003671 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 /* Must be called only after all
3673 * slaves have been released
3674 */
3675 bond_alb_deinitialize(bond);
3676 }
3677
3678 return 0;
3679}
3680
3681static struct net_device_stats *bond_get_stats(struct net_device *bond_dev)
3682{
Wang Chen454d7c92008-11-12 23:37:49 -08003683 struct bonding *bond = netdev_priv(bond_dev);
Ajit Khaparde35cfabd2010-02-01 14:06:52 +00003684 struct net_device_stats *stats = &bond_dev->stats;
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003685 struct net_device_stats local_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 struct slave *slave;
3687 int i;
3688
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003689 memset(&local_stats, 0, sizeof(struct net_device_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 read_lock_bh(&bond->lock);
3692
3693 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003694 const struct net_device_stats *sstats = dev_get_stats(slave->dev);
3695
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003696 local_stats.rx_packets += sstats->rx_packets;
3697 local_stats.rx_bytes += sstats->rx_bytes;
3698 local_stats.rx_errors += sstats->rx_errors;
3699 local_stats.rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003701 local_stats.tx_packets += sstats->tx_packets;
3702 local_stats.tx_bytes += sstats->tx_bytes;
3703 local_stats.tx_errors += sstats->tx_errors;
3704 local_stats.tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003706 local_stats.multicast += sstats->multicast;
3707 local_stats.collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003709 local_stats.rx_length_errors += sstats->rx_length_errors;
3710 local_stats.rx_over_errors += sstats->rx_over_errors;
3711 local_stats.rx_crc_errors += sstats->rx_crc_errors;
3712 local_stats.rx_frame_errors += sstats->rx_frame_errors;
3713 local_stats.rx_fifo_errors += sstats->rx_fifo_errors;
3714 local_stats.rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003716 local_stats.tx_aborted_errors += sstats->tx_aborted_errors;
3717 local_stats.tx_carrier_errors += sstats->tx_carrier_errors;
3718 local_stats.tx_fifo_errors += sstats->tx_fifo_errors;
3719 local_stats.tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3720 local_stats.tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 }
3722
Andy Gospodarek2439f9e2008-01-29 18:07:46 -08003723 memcpy(stats, &local_stats, sizeof(struct net_device_stats));
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 read_unlock_bh(&bond->lock);
3726
3727 return stats;
3728}
3729
3730static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3731{
3732 struct net_device *slave_dev = NULL;
3733 struct ifbond k_binfo;
3734 struct ifbond __user *u_binfo = NULL;
3735 struct ifslave k_sinfo;
3736 struct ifslave __user *u_sinfo = NULL;
3737 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 int res = 0;
3739
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003740 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
3742 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 case SIOCGMIIPHY:
3744 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003745 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 mii->phy_id = 0;
3749 /* Fall Through */
3750 case SIOCGMIIREG:
3751 /*
3752 * We do this again just in case we were called by SIOCGMIIREG
3753 * instead of SIOCGMIIPHY.
3754 */
3755 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003756 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003758
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
3760 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003761 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003763 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003765 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003769 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 }
3771
3772 return 0;
3773 case BOND_INFO_QUERY_OLD:
3774 case SIOCBONDINFOQUERY:
3775 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3776
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003777 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
3780 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003781 if (res == 0 &&
3782 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3783 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 return res;
3786 case BOND_SLAVE_INFO_QUERY_OLD:
3787 case SIOCBONDSLAVEINFOQUERY:
3788 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3789
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003790 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
3793 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003794 if (res == 0 &&
3795 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3796 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 return res;
3799 default:
3800 /* Go on */
3801 break;
3802 }
3803
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003804 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003807 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003809 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003811 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003813 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003814 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 switch (cmd) {
3816 case BOND_ENSLAVE_OLD:
3817 case SIOCBONDENSLAVE:
3818 res = bond_enslave(bond_dev, slave_dev);
3819 break;
3820 case BOND_RELEASE_OLD:
3821 case SIOCBONDRELEASE:
3822 res = bond_release(bond_dev, slave_dev);
3823 break;
3824 case BOND_SETHWADDR_OLD:
3825 case SIOCBONDSETHWADDR:
3826 res = bond_sethwaddr(bond_dev, slave_dev);
3827 break;
3828 case BOND_CHANGE_ACTIVE_OLD:
3829 case SIOCBONDCHANGEACTIVE:
3830 res = bond_ioctl_change_active(bond_dev, slave_dev);
3831 break;
3832 default:
3833 res = -EOPNOTSUPP;
3834 }
3835
3836 dev_put(slave_dev);
3837 }
3838
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 return res;
3840}
3841
Jiri Pirko22bedad2010-04-01 21:22:57 +00003842static bool bond_addr_in_mc_list(unsigned char *addr,
3843 struct netdev_hw_addr_list *list,
3844 int addrlen)
3845{
3846 struct netdev_hw_addr *ha;
3847
3848 netdev_hw_addr_list_for_each(ha, list)
3849 if (!memcmp(ha->addr, addr, addrlen))
3850 return true;
3851
3852 return false;
3853}
3854
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855static void bond_set_multicast_list(struct net_device *bond_dev)
3856{
Wang Chen454d7c92008-11-12 23:37:49 -08003857 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +00003858 struct netdev_hw_addr *ha;
3859 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 /*
3862 * Do promisc before checking multicast_mode
3863 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003864 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003865 /*
3866 * FIXME: Need to handle the error when one of the multi-slaves
3867 * encounters error.
3868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003871
3872 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
3876 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003877 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003878 /*
3879 * FIXME: Need to handle the error when one of the multi-slaves
3880 * encounters error.
3881 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003884
3885 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003887
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08003889 read_lock(&bond->lock);
3890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 bond->flags = bond_dev->flags;
3892
3893 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00003894 netdev_for_each_mc_addr(ha, bond_dev) {
3895 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
3896 bond_dev->addr_len);
3897 if (!found)
3898 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 }
3900
3901 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00003902 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
3903 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
3904 bond_dev->addr_len);
3905 if (!found)
3906 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 }
3908
3909 /* save master's multicast list */
Jiri Pirko22bedad2010-04-01 21:22:57 +00003910 __hw_addr_flush(&bond->mc_list);
3911 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
3912 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08003914 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
Stephen Hemminger00829822008-11-20 20:14:53 -08003917static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
3918{
3919 struct bonding *bond = netdev_priv(dev);
3920 struct slave *slave = bond->first_slave;
3921
3922 if (slave) {
3923 const struct net_device_ops *slave_ops
3924 = slave->dev->netdev_ops;
3925 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08003926 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08003927 }
3928 return 0;
3929}
3930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931/*
3932 * Change the MTU of all of a master's slaves to match the master
3933 */
3934static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
3935{
Wang Chen454d7c92008-11-12 23:37:49 -08003936 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 struct slave *slave, *stop_at;
3938 int res = 0;
3939 int i;
3940
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003941 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003942 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944 /* Can't hold bond->lock with bh disabled here since
3945 * some base drivers panic. On the other hand we can't
3946 * hold bond->lock without bh disabled because we'll
3947 * deadlock. The only solution is to rely on the fact
3948 * that we're under rtnl_lock here, and the slaves
3949 * list won't change. This doesn't solve the problem
3950 * of setting the slave's MTU while it is
3951 * transmitting, but the assumption is that the base
3952 * driver can handle that.
3953 *
3954 * TODO: figure out a way to safely iterate the slaves
3955 * list, but without holding a lock around the actual
3956 * call to the base driver.
3957 */
3958
3959 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003960 pr_debug("s %p s->p %p c_m %p\n",
3961 slave,
3962 slave->prev,
3963 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08003964
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 res = dev_set_mtu(slave->dev, new_mtu);
3966
3967 if (res) {
3968 /* If we failed to set the slave's mtu to the new value
3969 * we must abort the operation even in ACTIVE_BACKUP
3970 * mode, because if we allow the backup slaves to have
3971 * different mtu values than the active slave we'll
3972 * need to change their mtu when doing a failover. That
3973 * means changing their mtu from timer context, which
3974 * is probably not a good idea.
3975 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003976 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 goto unwind;
3978 }
3979 }
3980
3981 bond_dev->mtu = new_mtu;
3982
3983 return 0;
3984
3985unwind:
3986 /* unwind from head to the slave that failed */
3987 stop_at = slave;
3988 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
3989 int tmp_res;
3990
3991 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
3992 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003993 pr_debug("unwind err %d dev %s\n",
3994 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 }
3996 }
3997
3998 return res;
3999}
4000
4001/*
4002 * Change HW address
4003 *
4004 * Note that many devices must be down to change the HW address, and
4005 * downing the master releases all slaves. We can make bonds full of
4006 * bonding devices to test this, however.
4007 */
4008static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4009{
Wang Chen454d7c92008-11-12 23:37:49 -08004010 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 struct sockaddr *sa = addr, tmp_sa;
4012 struct slave *slave, *stop_at;
4013 int res = 0;
4014 int i;
4015
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004016 if (bond->params.mode == BOND_MODE_ALB)
4017 return bond_alb_set_mac_address(bond_dev, addr);
4018
4019
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004020 pr_debug("bond=%p, name=%s\n",
4021 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
Jay Vosburghdd957c52007-10-09 19:57:24 -07004023 /*
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004024 * If fail_over_mac is set to active, do nothing and return
4025 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07004026 */
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004027 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07004028 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07004029
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004030 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
4033 /* Can't hold bond->lock with bh disabled here since
4034 * some base drivers panic. On the other hand we can't
4035 * hold bond->lock without bh disabled because we'll
4036 * deadlock. The only solution is to rely on the fact
4037 * that we're under rtnl_lock here, and the slaves
4038 * list won't change. This doesn't solve the problem
4039 * of setting the slave's hw address while it is
4040 * transmitting, but the assumption is that the base
4041 * driver can handle that.
4042 *
4043 * TODO: figure out a way to safely iterate the slaves
4044 * list, but without holding a lock around the actual
4045 * call to the base driver.
4046 */
4047
4048 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004049 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004050 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004052 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004054 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 goto unwind;
4056 }
4057
4058 res = dev_set_mac_address(slave->dev, addr);
4059 if (res) {
4060 /* TODO: consider downing the slave
4061 * and retry ?
4062 * User should expect communications
4063 * breakage anyway until ARP finish
4064 * updating, so...
4065 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08004066 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 goto unwind;
4068 }
4069 }
4070
4071 /* success */
4072 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4073 return 0;
4074
4075unwind:
4076 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4077 tmp_sa.sa_family = bond_dev->type;
4078
4079 /* unwind from head to the slave that failed */
4080 stop_at = slave;
4081 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4082 int tmp_res;
4083
4084 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4085 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004086 pr_debug("unwind err %d dev %s\n",
4087 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 }
4089 }
4090
4091 return res;
4092}
4093
4094static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4095{
Wang Chen454d7c92008-11-12 23:37:49 -08004096 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004098 int i, slave_no, res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
4100 read_lock(&bond->lock);
4101
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004102 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004105 /*
4106 * Concurrent TX may collide on rr_tx_counter; we accept that
4107 * as being rare enough not to justify using an atomic op here
4108 */
4109 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004111 bond_for_each_slave(bond, slave, i) {
4112 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004113 if (slave_no < 0)
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 }
4116
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004117 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 bond_for_each_slave_from(bond, slave, i, start_at) {
4119 if (IS_UP(slave->dev) &&
4120 (slave->link == BOND_LINK_UP) &&
4121 (slave->state == BOND_STATE_ACTIVE)) {
4122 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 break;
4124 }
4125 }
4126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127out:
4128 if (res) {
4129 /* no suitable interface, frame not sent */
4130 dev_kfree_skb(skb);
4131 }
4132 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004133 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134}
4135
John W. Linville075897c2005-09-28 17:50:53 -04004136
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137/*
4138 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4139 * the bond has a usable interface.
4140 */
4141static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4142{
Wang Chen454d7c92008-11-12 23:37:49 -08004143 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 int res = 1;
4145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 read_lock(&bond->lock);
4147 read_lock(&bond->curr_slave_lock);
4148
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004149 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
John W. Linville075897c2005-09-28 17:50:53 -04004152 if (!bond->curr_active_slave)
4153 goto out;
4154
John W. Linville075897c2005-09-28 17:50:53 -04004155 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4156
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004158 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 /* no suitable interface, frame not sent */
4160 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 read_unlock(&bond->curr_slave_lock);
4163 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004164 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165}
4166
4167/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004168 * In bond_xmit_xor() , we determine the output device by using a pre-
4169 * determined xmit_hash_policy(), If the selected device is not enabled,
4170 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 */
4172static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4173{
Wang Chen454d7c92008-11-12 23:37:49 -08004174 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 struct slave *slave, *start_at;
4176 int slave_no;
4177 int i;
4178 int res = 1;
4179
4180 read_lock(&bond->lock);
4181
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004182 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Jasper Spaansa361c832009-10-23 04:09:24 +00004185 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
4187 bond_for_each_slave(bond, slave, i) {
4188 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004189 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 }
4192
4193 start_at = slave;
4194
4195 bond_for_each_slave_from(bond, slave, i, start_at) {
4196 if (IS_UP(slave->dev) &&
4197 (slave->link == BOND_LINK_UP) &&
4198 (slave->state == BOND_STATE_ACTIVE)) {
4199 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4200 break;
4201 }
4202 }
4203
4204out:
4205 if (res) {
4206 /* no suitable interface, frame not sent */
4207 dev_kfree_skb(skb);
4208 }
4209 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004210 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211}
4212
4213/*
4214 * in broadcast mode, we send everything to all usable interfaces.
4215 */
4216static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4217{
Wang Chen454d7c92008-11-12 23:37:49 -08004218 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 struct slave *slave, *start_at;
4220 struct net_device *tx_dev = NULL;
4221 int i;
4222 int res = 1;
4223
4224 read_lock(&bond->lock);
4225
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004226 if (!BOND_IS_OK(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229 read_lock(&bond->curr_slave_lock);
4230 start_at = bond->curr_active_slave;
4231 read_unlock(&bond->curr_slave_lock);
4232
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004233 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
4236 bond_for_each_slave_from(bond, slave, i, start_at) {
4237 if (IS_UP(slave->dev) &&
4238 (slave->link == BOND_LINK_UP) &&
4239 (slave->state == BOND_STATE_ACTIVE)) {
4240 if (tx_dev) {
4241 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4242 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004243 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004244 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 continue;
4246 }
4247
4248 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4249 if (res) {
4250 dev_kfree_skb(skb2);
4251 continue;
4252 }
4253 }
4254 tx_dev = slave->dev;
4255 }
4256 }
4257
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004258 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
4261out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004262 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 /* no suitable interface, frame not sent */
4264 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004265
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 /* frame sent to all suitable interfaces */
4267 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07004268 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269}
4270
4271/*------------------------- Device initialization ---------------------------*/
4272
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004273static void bond_set_xmit_hash_policy(struct bonding *bond)
4274{
4275 switch (bond->params.xmit_policy) {
4276 case BOND_XMIT_POLICY_LAYER23:
4277 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4278 break;
4279 case BOND_XMIT_POLICY_LAYER34:
4280 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4281 break;
4282 case BOND_XMIT_POLICY_LAYER2:
4283 default:
4284 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4285 break;
4286 }
4287}
4288
Stephen Hemminger424efe92009-08-31 19:50:51 +00004289static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004290{
4291 const struct bonding *bond = netdev_priv(dev);
4292
4293 switch (bond->params.mode) {
4294 case BOND_MODE_ROUNDROBIN:
4295 return bond_xmit_roundrobin(skb, dev);
4296 case BOND_MODE_ACTIVEBACKUP:
4297 return bond_xmit_activebackup(skb, dev);
4298 case BOND_MODE_XOR:
4299 return bond_xmit_xor(skb, dev);
4300 case BOND_MODE_BROADCAST:
4301 return bond_xmit_broadcast(skb, dev);
4302 case BOND_MODE_8023AD:
4303 return bond_3ad_xmit_xor(skb, dev);
4304 case BOND_MODE_ALB:
4305 case BOND_MODE_TLB:
4306 return bond_alb_xmit(skb, dev);
4307 default:
4308 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004309 pr_err("%s: Error: Unknown bonding mode %d\n",
4310 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004311 WARN_ON_ONCE(1);
4312 dev_kfree_skb(skb);
4313 return NETDEV_TX_OK;
4314 }
4315}
4316
4317
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318/*
4319 * set bond mode specific net device operations
4320 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004321void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004323 struct net_device *bond_dev = bond->dev;
4324
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 switch (mode) {
4326 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 break;
4328 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 break;
4330 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004331 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 break;
4333 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 break;
4335 case BOND_MODE_8023AD:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004336 bond_set_master_3ad_flags(bond);
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004337 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004340 bond_set_master_alb_flags(bond);
4341 /* FALLTHRU */
4342 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 break;
4344 default:
4345 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004346 pr_err("%s: Error: Unknown bonding mode %d\n",
4347 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 break;
4349 }
4350}
4351
Jay Vosburgh217df672005-09-26 16:11:50 -07004352static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4353 struct ethtool_drvinfo *drvinfo)
4354{
4355 strncpy(drvinfo->driver, DRV_NAME, 32);
4356 strncpy(drvinfo->version, DRV_VERSION, 32);
4357 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4358}
4359
Jeff Garzik7282d492006-09-13 14:30:00 -04004360static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004361 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004362 .get_link = ethtool_op_get_link,
4363 .get_tx_csum = ethtool_op_get_tx_csum,
4364 .get_sg = ethtool_op_get_sg,
4365 .get_tso = ethtool_op_get_tso,
4366 .get_ufo = ethtool_op_get_ufo,
4367 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004368};
4369
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004370static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004371 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004372 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004373 .ndo_open = bond_open,
4374 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004375 .ndo_start_xmit = bond_start_xmit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004376 .ndo_get_stats = bond_get_stats,
4377 .ndo_do_ioctl = bond_do_ioctl,
4378 .ndo_set_multicast_list = bond_set_multicast_list,
4379 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004380 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004381 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004382 .ndo_vlan_rx_register = bond_vlan_rx_register,
4383 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4384 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
4385};
4386
Stephen Hemminger181470f2009-06-12 19:02:52 +00004387static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388{
Wang Chen454d7c92008-11-12 23:37:49 -08004389 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 /* initialize rwlocks */
4392 rwlock_init(&bond->lock);
4393 rwlock_init(&bond->curr_slave_lock);
4394
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004395 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 bond->dev = bond_dev;
4399 INIT_LIST_HEAD(&bond->vlan_list);
4400
4401 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004402 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004403 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004404 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004405 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Stephen Hemminger9e716262009-06-12 19:02:47 +00004407 bond_dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
4409 /* Initialize the device options */
4410 bond_dev->tx_queue_len = 0;
4411 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004412 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004413 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4414
Jay Vosburgh6cf3f412008-11-03 18:16:50 -08004415 if (bond->params.arp_interval)
4416 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
4418 /* At first, we block adding VLANs. That's the only way to
4419 * prevent problems that occur when adding VLANs over an
4420 * empty bond. The block will be removed once non-challenged
4421 * slaves are enslaved.
4422 */
4423 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4424
Herbert Xu932ff272006-06-09 12:20:56 -07004425 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 * transmitting */
4427 bond_dev->features |= NETIF_F_LLTX;
4428
4429 /* By default, we declare the bond to be fully
4430 * VLAN hardware accelerated capable. Special
4431 * care is taken in the various xmit functions
4432 * when there are slaves that are not hw accel
4433 * capable
4434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4436 NETIF_F_HW_VLAN_RX |
4437 NETIF_F_HW_VLAN_FILTER);
4438
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439}
4440
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004441static void bond_work_cancel_all(struct bonding *bond)
4442{
4443 write_lock_bh(&bond->lock);
4444 bond->kill_timers = 1;
4445 write_unlock_bh(&bond->lock);
4446
4447 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4448 cancel_delayed_work(&bond->mii_work);
4449
4450 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4451 cancel_delayed_work(&bond->arp_work);
4452
4453 if (bond->params.mode == BOND_MODE_ALB &&
4454 delayed_work_pending(&bond->alb_work))
4455 cancel_delayed_work(&bond->alb_work);
4456
4457 if (bond->params.mode == BOND_MODE_8023AD &&
4458 delayed_work_pending(&bond->ad_work))
4459 cancel_delayed_work(&bond->ad_work);
4460}
4461
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004462/*
4463* Destroy a bonding device.
4464* Must be under rtnl_lock when this function is called.
4465*/
4466static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004467{
Wang Chen454d7c92008-11-12 23:37:49 -08004468 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburgha434e432008-10-30 17:41:15 -07004469
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004470 /* Release the bonded slaves */
4471 bond_release_all(bond_dev);
4472
Jay Vosburgha434e432008-10-30 17:41:15 -07004473 list_del(&bond->bond_list);
4474
4475 bond_work_cancel_all(bond);
4476
Jay Vosburgha434e432008-10-30 17:41:15 -07004477 bond_remove_proc_entry(bond);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004478
4479 if (bond->wq)
4480 destroy_workqueue(bond->wq);
4481
Jiri Pirko22bedad2010-04-01 21:22:57 +00004482 __hw_addr_flush(&bond->mc_list);
Jay Vosburgha434e432008-10-30 17:41:15 -07004483}
4484
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485/*------------------------- Module initialization ---------------------------*/
4486
4487/*
4488 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004489 * number of the mode or its string name. A bit complicated because
4490 * some mode names are substrings of other names, and calls from sysfs
4491 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004493int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494{
Hannes Eder54b87322009-02-14 11:15:49 +00004495 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004496 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004497
Jay Vosburgha42e5342008-01-29 18:07:43 -08004498 for (p = (char *)buf; *p; p++)
4499 if (!(isdigit(*p) || isspace(*p)))
4500 break;
4501
4502 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004503 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004504 else
Hannes Eder54b87322009-02-14 11:15:49 +00004505 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004506
4507 if (!rv)
4508 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509
4510 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004511 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004513 if (strcmp(modestr, tbl[i].modename) == 0)
4514 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 }
4516
4517 return -1;
4518}
4519
4520static int bond_check_params(struct bond_params *params)
4521{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004522 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 /*
4525 * Convert string parameters.
4526 */
4527 if (mode) {
4528 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4529 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004530 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 mode == NULL ? "NULL" : mode);
4532 return -EINVAL;
4533 }
4534 }
4535
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004536 if (xmit_hash_policy) {
4537 if ((bond_mode != BOND_MODE_XOR) &&
4538 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004539 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004540 bond_mode_name(bond_mode));
4541 } else {
4542 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4543 xmit_hashtype_tbl);
4544 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004545 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004546 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004547 xmit_hash_policy);
4548 return -EINVAL;
4549 }
4550 }
4551 }
4552
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 if (lacp_rate) {
4554 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004555 pr_info("lacp_rate param is irrelevant in mode %s\n",
4556 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 } else {
4558 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4559 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004560 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 lacp_rate == NULL ? "NULL" : lacp_rate);
4562 return -EINVAL;
4563 }
4564 }
4565 }
4566
Jay Vosburghfd989c82008-11-04 17:51:16 -08004567 if (ad_select) {
4568 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4569 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004570 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004571 ad_select == NULL ? "NULL" : ad_select);
4572 return -EINVAL;
4573 }
4574
4575 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004576 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004577 }
4578 } else {
4579 params->ad_select = BOND_AD_STABLE;
4580 }
4581
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004582 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004583 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4584 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 max_bonds = BOND_DEFAULT_MAX_BONDS;
4586 }
4587
4588 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004589 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4590 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 miimon = BOND_LINK_MON_INTERV;
4592 }
4593
4594 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004595 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4596 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 updelay = 0;
4598 }
4599
4600 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004601 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4602 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 downdelay = 0;
4604 }
4605
4606 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004607 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4608 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 use_carrier = 1;
4610 }
4611
Moni Shoua7893b242008-05-17 21:10:12 -07004612 if (num_grat_arp < 0 || num_grat_arp > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004613 pr_warning("Warning: num_grat_arp (%d) not in range 0-255 so it was reset to 1\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004614 num_grat_arp);
Moni Shoua7893b242008-05-17 21:10:12 -07004615 num_grat_arp = 1;
4616 }
4617
Brian Haley305d5522008-11-04 17:51:14 -08004618 if (num_unsol_na < 0 || num_unsol_na > 255) {
Frans Pop2381a552010-03-24 07:57:36 +00004619 pr_warning("Warning: num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004620 num_unsol_na);
Brian Haley305d5522008-11-04 17:51:14 -08004621 num_unsol_na = 1;
4622 }
4623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 /* reset values for 802.3ad */
4625 if (bond_mode == BOND_MODE_8023AD) {
4626 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004627 pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004628 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629 miimon = 100;
4630 }
4631 }
4632
4633 /* reset values for TLB/ALB */
4634 if ((bond_mode == BOND_MODE_TLB) ||
4635 (bond_mode == BOND_MODE_ALB)) {
4636 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004637 pr_warning("Warning: miimon must be specified, otherwise bonding will not detect link failure and link speed which are essential for TLB/ALB load balancing\n");
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004638 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 miimon = 100;
4640 }
4641 }
4642
4643 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004644 pr_notice("In ALB mode you might experience client disconnections upon reconnection of a link if the bonding module updelay parameter (%d msec) is incompatible with the forwarding delay time of the switch\n",
4645 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 }
4647
4648 if (!miimon) {
4649 if (updelay || downdelay) {
4650 /* just warn the user the up/down delay will have
4651 * no effect since miimon is zero...
4652 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004653 pr_warning("Warning: miimon module parameter not set and updelay (%d) or downdelay (%d) module parameter is set; updelay and downdelay have no effect unless miimon is set\n",
4654 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 }
4656 } else {
4657 /* don't allow arp monitoring */
4658 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004659 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4660 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 arp_interval = 0;
4662 }
4663
4664 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004665 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4666 updelay, miimon,
4667 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 }
4669
4670 updelay /= miimon;
4671
4672 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004673 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4674 downdelay, miimon,
4675 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 }
4677
4678 downdelay /= miimon;
4679 }
4680
4681 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004682 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4683 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 arp_interval = BOND_LINK_ARP_INTERV;
4685 }
4686
4687 for (arp_ip_count = 0;
4688 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4689 arp_ip_count++) {
4690 /* not complete check, but should be good enough to
4691 catch mistakes */
4692 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004693 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4694 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 arp_interval = 0;
4696 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004697 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 arp_target[arp_ip_count] = ip;
4699 }
4700 }
4701
4702 if (arp_interval && !arp_ip_count) {
4703 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004704 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4705 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 arp_interval = 0;
4707 }
4708
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004709 if (arp_validate) {
4710 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004711 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004712 return -EINVAL;
4713 }
4714 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004715 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004716 return -EINVAL;
4717 }
4718
4719 arp_validate_value = bond_parse_parm(arp_validate,
4720 arp_validate_tbl);
4721 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004722 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004723 arp_validate == NULL ? "NULL" : arp_validate);
4724 return -EINVAL;
4725 }
4726 } else
4727 arp_validate_value = 0;
4728
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004730 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 } else if (arp_interval) {
4732 int i;
4733
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004734 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4735 arp_interval,
4736 arp_validate_tbl[arp_validate_value].modename,
4737 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
4739 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004740 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004742 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Jay Vosburghb8a97872008-06-13 18:12:04 -07004744 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 /* miimon and arp_interval not set, we need one so things
4746 * work as expected, see bonding.txt for details
4747 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004748 pr_warning("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 }
4750
4751 if (primary && !USES_PRIMARY(bond_mode)) {
4752 /* currently, using a primary only makes sense
4753 * in active backup, TLB or ALB modes
4754 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004755 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
4756 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 primary = NULL;
4758 }
4759
Jiri Pirkoa5499522009-09-25 03:28:09 +00004760 if (primary && primary_reselect) {
4761 primary_reselect_value = bond_parse_parm(primary_reselect,
4762 pri_reselect_tbl);
4763 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004764 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00004765 primary_reselect ==
4766 NULL ? "NULL" : primary_reselect);
4767 return -EINVAL;
4768 }
4769 } else {
4770 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4771 }
4772
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004773 if (fail_over_mac) {
4774 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4775 fail_over_mac_tbl);
4776 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004777 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004778 arp_validate == NULL ? "NULL" : arp_validate);
4779 return -EINVAL;
4780 }
4781
4782 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004783 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004784 } else {
4785 fail_over_mac_value = BOND_FOM_NONE;
4786 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07004787
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 /* fill params struct with the proper values */
4789 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004790 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 params->miimon = miimon;
Moni Shoua7893b242008-05-17 21:10:12 -07004792 params->num_grat_arp = num_grat_arp;
Brian Haley305d5522008-11-04 17:51:14 -08004793 params->num_unsol_na = num_unsol_na;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004795 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 params->updelay = updelay;
4797 params->downdelay = downdelay;
4798 params->use_carrier = use_carrier;
4799 params->lacp_fast = lacp_fast;
4800 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00004801 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e2008-05-17 21:10:14 -07004802 params->fail_over_mac = fail_over_mac_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
4804 if (primary) {
4805 strncpy(params->primary, primary, IFNAMSIZ);
4806 params->primary[IFNAMSIZ - 1] = 0;
4807 }
4808
4809 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4810
4811 return 0;
4812}
4813
Peter Zijlstra0daa2302006-11-08 19:51:01 -08004814static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07004815static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa2302006-11-08 19:51:01 -08004816
David S. Millere8a04642008-07-17 00:34:19 -07004817static void bond_set_lockdep_class_one(struct net_device *dev,
4818 struct netdev_queue *txq,
4819 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07004820{
4821 lockdep_set_class(&txq->_xmit_lock,
4822 &bonding_netdev_xmit_lock_key);
4823}
4824
4825static void bond_set_lockdep_class(struct net_device *dev)
4826{
David S. Millercf508b12008-07-22 14:16:42 -07004827 lockdep_set_class(&dev->addr_list_lock,
4828 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07004829 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07004830}
4831
Stephen Hemminger181470f2009-06-12 19:02:52 +00004832/*
4833 * Called from registration process
4834 */
4835static int bond_init(struct net_device *bond_dev)
4836{
4837 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004838 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004839
4840 pr_debug("Begin bond_init for %s\n", bond_dev->name);
4841
4842 bond->wq = create_singlethread_workqueue(bond_dev->name);
4843 if (!bond->wq)
4844 return -ENOMEM;
4845
4846 bond_set_lockdep_class(bond_dev);
4847
4848 netif_carrier_off(bond_dev);
4849
4850 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004851 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004852
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00004853 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad2010-04-01 21:22:57 +00004854
4855 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004856 return 0;
4857}
4858
Eric W. Biederman88ead972009-10-29 14:18:25 +00004859static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
4860{
4861 if (tb[IFLA_ADDRESS]) {
4862 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
4863 return -EINVAL;
4864 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
4865 return -EADDRNOTAVAIL;
4866 }
4867 return 0;
4868}
4869
4870static struct rtnl_link_ops bond_link_ops __read_mostly = {
4871 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00004872 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00004873 .setup = bond_setup,
4874 .validate = bond_validate,
4875};
4876
Mitch Williamsdfe60392005-11-09 10:36:04 -08004877/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08004878 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08004879 * Caller must NOT hold rtnl_lock; we need to release it here before we
4880 * set up our sysfs entries.
4881 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004882int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08004883{
4884 struct net_device *bond_dev;
4885 int res;
4886
4887 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08004888
Jay Vosburghe4b91c42007-01-19 18:15:31 -08004889 bond_dev = alloc_netdev(sizeof(struct bonding), name ? name : "",
Stephen Hemminger181470f2009-06-12 19:02:52 +00004890 bond_setup);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004891 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004892 pr_err("%s: eek! can't alloc netdev!\n", name);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004893 res = -ENOMEM;
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00004894 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08004895 }
4896
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004897 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00004898 bond_dev->rtnl_link_ops = &bond_link_ops;
4899
Jay Vosburghe4b91c42007-01-19 18:15:31 -08004900 if (!name) {
4901 res = dev_alloc_name(bond_dev, "bond%d");
4902 if (res < 0)
4903 goto out_netdev;
4904 }
4905
Mitch Williamsdfe60392005-11-09 10:36:04 -08004906 res = register_netdevice(bond_dev);
Patrick McHardy8d6184e2010-02-27 02:52:05 -08004907 if (res < 0)
4908 goto out_netdev;
Peter Zijlstra0daa2302006-11-08 19:51:01 -08004909
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00004910out:
Mitch Williamsdfe60392005-11-09 10:36:04 -08004911 rtnl_unlock();
Mitch Williamsdfe60392005-11-09 10:36:04 -08004912 return res;
Eric W. Biederman30c15ba2009-10-29 14:18:23 +00004913out_netdev:
4914 free_netdev(bond_dev);
4915 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08004916}
4917
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004918static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004919{
Eric W. Biederman15449742009-11-29 15:46:04 +00004920 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004921
4922 bn->net = net;
4923 INIT_LIST_HEAD(&bn->dev_list);
4924
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004925 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00004926
4927 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004928}
4929
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004930static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004931{
Eric W. Biederman15449742009-11-29 15:46:04 +00004932 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004933
4934 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004935}
4936
4937static struct pernet_operations bond_net_ops = {
4938 .init = bond_net_init,
4939 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00004940 .id = &bond_net_id,
4941 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004942};
4943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944static int __init bonding_init(void)
4945{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 int i;
4947 int res;
4948
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004949 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950
Mitch Williamsdfe60392005-11-09 10:36:04 -08004951 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004952 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08004953 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Eric W. Biederman15449742009-11-29 15:46:04 +00004955 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004956 if (res)
4957 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08004958
Eric W. Biederman88ead972009-10-29 14:18:25 +00004959 res = rtnl_link_register(&bond_link_ops);
4960 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00004961 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00004962
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004964 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004965 if (res)
4966 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967 }
4968
Mitch Williamsb76cdba2005-11-09 10:36:41 -08004969 res = bond_create_sysfs();
4970 if (res)
4971 goto err;
4972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04004974 register_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08004975 bond_register_ipv6_notifier();
Mitch Williamsdfe60392005-11-09 10:36:04 -08004976out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004977 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00004978err:
4979 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00004980err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00004981 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00004982 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08004983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984}
4985
4986static void __exit bonding_exit(void)
4987{
4988 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04004989 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Brian Haley305d5522008-11-04 17:51:14 -08004990 bond_unregister_ipv6_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
Pavel Emelyanovae68c392008-05-02 17:49:39 -07004992 bond_destroy_sysfs();
4993
Eric W. Biederman88ead972009-10-29 14:18:25 +00004994 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00004995 unregister_pernet_subsys(&bond_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996}
4997
4998module_init(bonding_init);
4999module_exit(bonding_exit);
5000MODULE_LICENSE("GPL");
5001MODULE_VERSION(DRV_VERSION);
5002MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5003MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005004MODULE_ALIAS_RTNL_LINK("bond");