blob: 6312db1f783869294fe88d24231e4d39473f488c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <linux/smp.h>
69#include <linux/if_ether.h>
70#include <net/arp.h>
71#include <linux/mii.h>
72#include <linux/ethtool.h>
73#include <linux/if_vlan.h>
74#include <linux/if_bonding.h>
David Sterbab63bb732007-12-06 23:40:33 -080075#include <linux/jiffies.h>
Neil Hormane843fa52010-10-13 16:01:50 +000076#include <linux/preempt.h>
Jay Vosburghc3ade5c2005-06-26 17:52:20 -040077#include <net/route.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020078#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000079#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include "bonding.h"
81#include "bond_3ad.h"
82#include "bond_alb.h"
83
84/*---------------------------- Module parameters ----------------------------*/
85
86/* monitor all links that often (in milliseconds). <=0 disables monitoring */
87#define BOND_LINK_MON_INTERV 0
88#define BOND_LINK_ARP_INTERV 0
89
90static int max_bonds = BOND_DEFAULT_MAX_BONDS;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +000091static int tx_queues = BOND_DEFAULT_TX_QUEUES;
Ben Hutchingsad246c92011-04-26 15:25:52 +000092static int num_peer_notif = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static int miimon = BOND_LINK_MON_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000094static int updelay;
95static int downdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static int use_carrier = 1;
Stephen Hemminger3d632c32009-06-12 19:02:48 +000097static char *mode;
98static char *primary;
Jiri Pirkoa5499522009-09-25 03:28:09 +000099static char *primary_reselect;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000100static char *lacp_rate;
101static char *ad_select;
102static char *xmit_hash_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int arp_interval = BOND_LINK_ARP_INTERV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000104static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
105static char *arp_validate;
106static char *fail_over_mac;
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000107static int all_slaves_active = 0;
Stephen Hemmingerd2991f72009-06-12 19:02:44 +0000108static struct bond_params bonding_defaults;
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000109static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111module_param(max_bonds, int, 0);
112MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000113module_param(tx_queues, int, 0);
114MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
Ben Hutchingsad246c92011-04-26 15:25:52 +0000115module_param_named(num_grat_arp, num_peer_notif, int, 0644);
116MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on failover event (alias of num_unsol_na)");
117module_param_named(num_unsol_na, num_peer_notif, int, 0644);
118MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on failover event (alias of num_grat_arp)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119module_param(miimon, int, 0);
120MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
121module_param(updelay, int, 0);
122MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
123module_param(downdelay, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800124MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
125 "in milliseconds");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126module_param(use_carrier, int, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800127MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
128 "0 for off, 1 for on (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129module_param(mode, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800130MODULE_PARM_DESC(mode, "Mode of operation : 0 for balance-rr, "
131 "1 for active-backup, 2 for balance-xor, "
132 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
133 "6 for balance-alb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134module_param(primary, charp, 0);
135MODULE_PARM_DESC(primary, "Primary network device to use");
Jiri Pirkoa5499522009-09-25 03:28:09 +0000136module_param(primary_reselect, charp, 0);
137MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
138 "once it comes up; "
139 "0 for always (default), "
140 "1 for only if speed of primary is "
141 "better, "
142 "2 for only on active slave "
143 "failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144module_param(lacp_rate, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800145MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner "
146 "(slow/fast)");
Jay Vosburghfd989c82008-11-04 17:51:16 -0800147module_param(ad_select, charp, 0);
148MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400149module_param(xmit_hash_policy, charp, 0);
Mitch Williams2ac47662005-11-09 10:35:03 -0800150MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
151 ", 1 for layer 3+4");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152module_param(arp_interval, int, 0);
153MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
154module_param_array(arp_ip_target, charp, NULL, 0);
155MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700156module_param(arp_validate, charp, 0);
157MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700158module_param(fail_over_mac, charp, 0);
159MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000160module_param(all_slaves_active, int, 0);
161MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
162 "by setting active flag for all slaves. "
163 "0 for never (default), 1 for always.");
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000164module_param(resend_igmp, int, 0);
165MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/*----------------------------- Global variables ----------------------------*/
168
Neil Hormane843fa52010-10-13 16:01:50 +0000169#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +0000170atomic_t netpoll_block_tx = ATOMIC_INIT(0);
Neil Hormane843fa52010-10-13 16:01:50 +0000171#endif
172
Eric Dumazetf99189b2009-11-17 10:42:49 +0000173int bond_net_id __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000175static __be32 arp_target[BOND_MAX_ARP_TARGETS];
176static int arp_ip_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static int bond_mode = BOND_MODE_ROUNDROBIN;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000178static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
179static int lacp_fast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800181const struct bond_parm_tbl bond_lacp_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{ "slow", AD_LACP_SLOW},
183{ "fast", AD_LACP_FAST},
184{ NULL, -1},
185};
186
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800187const struct bond_parm_tbl bond_mode_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{ "balance-rr", BOND_MODE_ROUNDROBIN},
189{ "active-backup", BOND_MODE_ACTIVEBACKUP},
190{ "balance-xor", BOND_MODE_XOR},
191{ "broadcast", BOND_MODE_BROADCAST},
192{ "802.3ad", BOND_MODE_8023AD},
193{ "balance-tlb", BOND_MODE_TLB},
194{ "balance-alb", BOND_MODE_ALB},
195{ NULL, -1},
196};
197
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800198const struct bond_parm_tbl xmit_hashtype_tbl[] = {
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400199{ "layer2", BOND_XMIT_POLICY_LAYER2},
200{ "layer3+4", BOND_XMIT_POLICY_LAYER34},
Jay Vosburgh6f6652b2007-12-06 23:40:34 -0800201{ "layer2+3", BOND_XMIT_POLICY_LAYER23},
Jay Vosburgh169a3e62005-06-26 17:54:11 -0400202{ NULL, -1},
203};
204
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800205const struct bond_parm_tbl arp_validate_tbl[] = {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700206{ "none", BOND_ARP_VALIDATE_NONE},
207{ "active", BOND_ARP_VALIDATE_ACTIVE},
208{ "backup", BOND_ARP_VALIDATE_BACKUP},
209{ "all", BOND_ARP_VALIDATE_ALL},
210{ NULL, -1},
211};
212
Holger Eitzenbergere97fd7c2008-12-09 23:10:38 -0800213const struct bond_parm_tbl fail_over_mac_tbl[] = {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700214{ "none", BOND_FOM_NONE},
215{ "active", BOND_FOM_ACTIVE},
216{ "follow", BOND_FOM_FOLLOW},
217{ NULL, -1},
218};
219
Jiri Pirkoa5499522009-09-25 03:28:09 +0000220const struct bond_parm_tbl pri_reselect_tbl[] = {
221{ "always", BOND_PRI_RESELECT_ALWAYS},
222{ "better", BOND_PRI_RESELECT_BETTER},
223{ "failure", BOND_PRI_RESELECT_FAILURE},
224{ NULL, -1},
225};
226
Jay Vosburghfd989c82008-11-04 17:51:16 -0800227struct bond_parm_tbl ad_select_tbl[] = {
228{ "stable", BOND_AD_STABLE},
229{ "bandwidth", BOND_AD_BANDWIDTH},
230{ "count", BOND_AD_COUNT},
231{ NULL, -1},
232};
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/*-------------------------- Forward declarations ---------------------------*/
235
Stephen Hemminger181470f2009-06-12 19:02:52 +0000236static int bond_init(struct net_device *bond_dev);
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +0000237static void bond_uninit(struct net_device *bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239/*---------------------------- General routines -----------------------------*/
240
Amerigo Wangbd33acc2011-03-06 21:58:46 +0000241const char *bond_mode_name(int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800243 static const char *names[] = {
244 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
245 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
246 [BOND_MODE_XOR] = "load balancing (xor)",
247 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000248 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800249 [BOND_MODE_TLB] = "transmit load balancing",
250 [BOND_MODE_ALB] = "adaptive load balancing",
251 };
252
253 if (mode < 0 || mode > BOND_MODE_ALB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return "unknown";
Holger Eitzenberger77afc922008-12-09 23:08:09 -0800255
256 return names[mode];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259/*---------------------------------- VLAN -----------------------------------*/
260
261/**
262 * bond_add_vlan - add a new vlan id on bond
263 * @bond: bond that got the notification
264 * @vlan_id: the vlan id to add
265 *
266 * Returns -ENOMEM if allocation failed.
267 */
268static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
269{
270 struct vlan_entry *vlan;
271
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800272 pr_debug("bond: %s, vlan id %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800273 (bond ? bond->dev->name : "None"), vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Brian Haley305d5522008-11-04 17:51:14 -0800275 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000276 if (!vlan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 INIT_LIST_HEAD(&vlan->vlan_list);
280 vlan->vlan_id = vlan_id;
281
282 write_lock_bh(&bond->lock);
283
284 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
285
286 write_unlock_bh(&bond->lock);
287
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800288 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 return 0;
291}
292
293/**
294 * bond_del_vlan - delete a vlan id from bond
295 * @bond: bond that got the notification
296 * @vlan_id: the vlan id to delete
297 *
298 * returns -ENODEV if @vlan_id was not found in @bond.
299 */
300static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
301{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700302 struct vlan_entry *vlan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int res = -ENODEV;
304
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800305 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Neil Hormane843fa52010-10-13 16:01:50 +0000307 block_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 write_lock_bh(&bond->lock);
309
Pavel Emelyanov0883bec2008-05-17 21:10:10 -0700310 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (vlan->vlan_id == vlan_id) {
312 list_del(&vlan->vlan_list);
313
Holger Eitzenberger58402052008-12-09 23:07:13 -0800314 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 bond_alb_clear_vlan(bond, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800317 pr_debug("removed VLAN ID %d from bond %s\n",
318 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 kfree(vlan);
321
322 if (list_empty(&bond->vlan_list) &&
323 (bond->slave_cnt == 0)) {
324 /* Last VLAN removed and no slaves, so
325 * restore block on adding VLANs. This will
326 * be removed once new slaves that are not
327 * VLAN challenged will be added.
328 */
329 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
330 }
331
332 res = 0;
333 goto out;
334 }
335 }
336
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800337 pr_debug("couldn't find VLAN ID %d in bond %s\n",
338 vlan_id, bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340out:
341 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +0000342 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return res;
344}
345
346/**
347 * bond_has_challenged_slaves
348 * @bond: the bond we're working on
349 *
350 * Searches the slave list. Returns 1 if a vlan challenged slave
351 * was found, 0 otherwise.
352 *
353 * Assumes bond->lock is held.
354 */
355static int bond_has_challenged_slaves(struct bonding *bond)
356{
357 struct slave *slave;
358 int i;
359
360 bond_for_each_slave(bond, slave, i) {
361 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800362 pr_debug("found VLAN challenged slave - %s\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800363 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 1;
365 }
366 }
367
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800368 pr_debug("no VLAN challenged slaves found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
370}
371
372/**
373 * bond_next_vlan - safely skip to the next item in the vlans list.
374 * @bond: the bond we're working on
375 * @curr: item we're advancing from
376 *
377 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
378 * or @curr->next otherwise (even if it is @curr itself again).
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000379 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * Caller must hold bond->lock
381 */
382struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
383{
384 struct vlan_entry *next, *last;
385
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000386 if (list_empty(&bond->vlan_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (!curr) {
390 next = list_entry(bond->vlan_list.next,
391 struct vlan_entry, vlan_list);
392 } else {
393 last = list_entry(bond->vlan_list.prev,
394 struct vlan_entry, vlan_list);
395 if (last == curr) {
396 next = list_entry(bond->vlan_list.next,
397 struct vlan_entry, vlan_list);
398 } else {
399 next = list_entry(curr->vlan_list.next,
400 struct vlan_entry, vlan_list);
401 }
402 }
403
404 return next;
405}
406
407/**
408 * bond_dev_queue_xmit - Prepare skb for xmit.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000409 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * @bond: bond device that got this skb for tx.
411 * @skb: hw accel VLAN tagged skb to transmit
412 * @slave_dev: slave that is supposed to xmit this skbuff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000414int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
415 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Ben Hutchings83874512010-12-13 08:19:28 +0000417 skb->dev = slave_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 skb->priority = 1;
Amerigo Wang080e4132011-02-17 23:43:33 +0000419 if (unlikely(netpoll_tx_running(slave_dev)))
Amerigo Wang8a8efa22011-02-17 23:43:32 +0000420 bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb);
Amerigo Wang080e4132011-02-17 23:43:33 +0000421 else
WANG Congf6dc31a2010-05-06 00:48:51 -0700422 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 return 0;
425}
426
427/*
428 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
429 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
430 * lock because:
431 * a. This operation is performed in IOCTL context,
432 * b. The operation is protected by the RTNL semaphore in the 8021q code,
433 * c. Holding a lock with BH disabled while directly calling a base driver
434 * entry point is generally a BAD idea.
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000435 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * The design of synchronization/protection for this operation in the 8021q
437 * module is good for one or more VLAN devices over a single physical device
438 * and cannot be extended for a teaming solution like bonding, so there is a
439 * potential race condition here where a net device from the vlan group might
440 * be referenced (either by a base driver or the 8021q code) while it is being
441 * removed from the system. However, it turns out we're not making matters
442 * worse, and if it works for regular VLAN usage it will work here too.
443*/
444
445/**
446 * bond_vlan_rx_register - Propagates registration to slaves
447 * @bond_dev: bonding net device that got called
448 * @grp: vlan group being registered
449 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000450static void bond_vlan_rx_register(struct net_device *bond_dev,
451 struct vlan_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Wang Chen454d7c92008-11-12 23:37:49 -0800453 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct slave *slave;
455 int i;
456
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000457 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 bond->vlgrp = grp;
Jarek Poplawskia71fb882010-10-27 07:08:22 +0000459 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 bond_for_each_slave(bond, slave, i) {
462 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800463 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800466 slave_ops->ndo_vlan_rx_register) {
467 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 }
470}
471
472/**
473 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
474 * @bond_dev: bonding net device that got called
475 * @vid: vlan id being added
476 */
477static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
478{
Wang Chen454d7c92008-11-12 23:37:49 -0800479 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 struct slave *slave;
481 int i, res;
482
483 bond_for_each_slave(bond, slave, i) {
484 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800485 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800488 slave_ops->ndo_vlan_rx_add_vid) {
489 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491 }
492
493 res = bond_add_vlan(bond, vid);
494 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800495 pr_err("%s: Error: Failed to add vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 bond_dev->name, vid);
497 }
498}
499
500/**
501 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
502 * @bond_dev: bonding net device that got called
503 * @vid: vlan id being removed
504 */
505static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
506{
Wang Chen454d7c92008-11-12 23:37:49 -0800507 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct slave *slave;
509 struct net_device *vlan_dev;
510 int i, res;
511
512 bond_for_each_slave(bond, slave, i) {
513 struct net_device *slave_dev = slave->dev;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800514 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800517 slave_ops->ndo_vlan_rx_kill_vid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* Save and then restore vlan_dev in the grp array,
519 * since the slave's driver might clear it.
520 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800521 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800522 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800523 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 }
526
527 res = bond_del_vlan(bond, vid);
528 if (res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800529 pr_err("%s: Error: Failed to remove vlan id %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 bond_dev->name, vid);
531 }
532}
533
534static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
535{
536 struct vlan_entry *vlan;
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800537 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Jay Vosburghf35188f2010-07-21 12:14:47 +0000539 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000540 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800543 slave_ops->ndo_vlan_rx_register)
544 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800547 !(slave_ops->ndo_vlan_rx_add_vid))
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000548 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800550 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
551 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000554static void bond_del_vlans_from_slave(struct bonding *bond,
555 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800557 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct vlan_entry *vlan;
559 struct net_device *vlan_dev;
560
Jay Vosburghf35188f2010-07-21 12:14:47 +0000561 if (!bond->vlgrp)
Jay Vosburgh03dc2f42010-07-21 12:14:48 +0000562 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800565 !(slave_ops->ndo_vlan_rx_kill_vid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +0000569 if (!vlan->vlan_id)
570 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* Save and then restore vlan_dev in the grp array,
572 * since the slave's driver might clear it.
573 */
Dan Aloni5c15bde2007-03-02 20:44:51 -0800574 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800575 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
Dan Aloni5c15bde2007-03-02 20:44:51 -0800576 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579unreg:
580 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800581 slave_ops->ndo_vlan_rx_register)
582 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585/*------------------------------- Link status -------------------------------*/
586
587/*
Jay Vosburghff59c452006-03-27 13:27:43 -0800588 * Set the carrier state for the master according to the state of its
589 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
590 * do special 802.3ad magic.
591 *
592 * Returns zero if carrier state does not change, nonzero if it does.
593 */
594static int bond_set_carrier(struct bonding *bond)
595{
596 struct slave *slave;
597 int i;
598
599 if (bond->slave_cnt == 0)
600 goto down;
601
602 if (bond->params.mode == BOND_MODE_8023AD)
603 return bond_3ad_set_carrier(bond);
604
605 bond_for_each_slave(bond, slave, i) {
606 if (slave->link == BOND_LINK_UP) {
607 if (!netif_carrier_ok(bond->dev)) {
608 netif_carrier_on(bond->dev);
609 return 1;
610 }
611 return 0;
612 }
613 }
614
615down:
616 if (netif_carrier_ok(bond->dev)) {
617 netif_carrier_off(bond->dev);
618 return 1;
619 }
620 return 0;
621}
622
623/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * Get link speed and duplex from the slave's base driver
625 * using ethtool. If for some reason the call fails or the
626 * values are invalid, fake speed and duplex to 100/Full
627 * and return error.
628 */
629static int bond_update_speed_duplex(struct slave *slave)
630{
631 struct net_device *slave_dev = slave->dev;
David Decotigny5d305302011-04-13 15:22:31 +0000632 struct ethtool_cmd etool = { .cmd = ETHTOOL_GSET };
633 u32 slave_speed;
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700634 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /* Fake speed and duplex */
637 slave->speed = SPEED_100;
638 slave->duplex = DUPLEX_FULL;
639
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700640 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700643 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
644 if (res < 0)
645 return -1;
646
David Decotigny5d305302011-04-13 15:22:31 +0000647 slave_speed = ethtool_cmd_speed(&etool);
648 switch (slave_speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 case SPEED_10:
650 case SPEED_100:
651 case SPEED_1000:
Jay Vosburgh94dbffd2006-09-22 21:52:15 -0700652 case SPEED_10000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 break;
654 default:
655 return -1;
656 }
657
658 switch (etool.duplex) {
659 case DUPLEX_FULL:
660 case DUPLEX_HALF:
661 break;
662 default:
663 return -1;
664 }
665
David Decotigny5d305302011-04-13 15:22:31 +0000666 slave->speed = slave_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 slave->duplex = etool.duplex;
668
669 return 0;
670}
671
672/*
673 * if <dev> supports MII link status reporting, check its link status.
674 *
675 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000676 * depending upon the setting of the use_carrier parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 *
678 * Return either BMSR_LSTATUS, meaning that the link is up (or we
679 * can't tell and just pretend it is), or 0, meaning that the link is
680 * down.
681 *
682 * If reporting is non-zero, instead of faking link up, return -1 if
683 * both ETHTOOL and MII ioctls fail (meaning the device does not
684 * support them). If use_carrier is set, return whatever it says.
685 * It'd be nice if there was a good way to tell if a driver supports
686 * netif_carrier, but there really isn't.
687 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000688static int bond_check_dev_link(struct bonding *bond,
689 struct net_device *slave_dev, int reporting)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800691 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Jiri Bohacd9d52832009-10-28 22:23:54 -0700692 int (*ioctl)(struct net_device *, struct ifreq *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 struct ifreq ifr;
694 struct mii_ioctl_data *mii;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Petri Gynther6c988852009-08-28 12:05:15 +0000696 if (!reporting && !netif_running(slave_dev))
697 return 0;
698
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800699 if (bond->params.use_carrier)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jiri Pirko29112f42009-04-24 01:58:23 +0000702 /* Try to get link status using Ethtool first. */
703 if (slave_dev->ethtool_ops) {
704 if (slave_dev->ethtool_ops->get_link) {
705 u32 link;
706
707 link = slave_dev->ethtool_ops->get_link(slave_dev);
708
709 return link ? BMSR_LSTATUS : 0;
710 }
711 }
712
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000713 /* Ethtool can't be used, fallback to MII ioctls. */
Stephen Hemmingereb7cc592008-11-19 21:56:05 -0800714 ioctl = slave_ops->ndo_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (ioctl) {
716 /* TODO: set pointer to correct ioctl on a per team member */
717 /* bases to make this more efficient. that is, once */
718 /* we determine the correct ioctl, we will always */
719 /* call it and not the others for that team */
720 /* member. */
721
722 /*
723 * We cannot assume that SIOCGMIIPHY will also read a
724 * register; not all network drivers (e.g., e100)
725 * support that.
726 */
727
728 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
729 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
730 mii = if_mii(&ifr);
731 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
732 mii->reg_num = MII_BMSR;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000733 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
734 return mii->val_out & BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736 }
737
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700738 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * If reporting, report that either there's no dev->do_ioctl,
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700740 * or both SIOCGMIIREG and get_link failed (meaning that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * cannot report link status). If not reporting, pretend
742 * we're ok.
743 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000744 return reporting ? -1 : BMSR_LSTATUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747/*----------------------------- Multicast list ------------------------------*/
748
749/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 * Push the promiscuity flag down to appropriate slaves
751 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700752static int bond_set_promiscuity(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700754 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (USES_PRIMARY(bond->params.mode)) {
756 /* write lock already acquired */
757 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700758 err = dev_set_promiscuity(bond->curr_active_slave->dev,
759 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761 } else {
762 struct slave *slave;
763 int i;
764 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700765 err = dev_set_promiscuity(slave->dev, inc);
766 if (err)
767 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700770 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773/*
774 * Push the allmulti flag down to all slaves
775 */
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700776static int bond_set_allmulti(struct bonding *bond, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700778 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (USES_PRIMARY(bond->params.mode)) {
780 /* write lock already acquired */
781 if (bond->curr_active_slave) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700782 err = dev_set_allmulti(bond->curr_active_slave->dev,
783 inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785 } else {
786 struct slave *slave;
787 int i;
788 bond_for_each_slave(bond, slave, i) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700789 err = dev_set_allmulti(slave->dev, inc);
790 if (err)
791 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793 }
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700794 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/*
798 * Add a Multicast address to slaves
799 * according to mode
800 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000801static void bond_mc_add(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 if (USES_PRIMARY(bond->params.mode)) {
804 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000805 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000806 dev_mc_add(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 } else {
808 struct slave *slave;
809 int i;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000810
811 bond_for_each_slave(bond, slave, i)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000812 dev_mc_add(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814}
815
816/*
817 * Remove a multicast address from slave
818 * according to mode
819 */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000820static void bond_mc_del(struct bonding *bond, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 if (USES_PRIMARY(bond->params.mode)) {
823 /* write lock already acquired */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000824 if (bond->curr_active_slave)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000825 dev_mc_del(bond->curr_active_slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 } else {
827 struct slave *slave;
828 int i;
829 bond_for_each_slave(bond, slave, i) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000830 dev_mc_del(slave->dev, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832 }
833}
834
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800835
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000836static void __bond_resend_igmp_join_requests(struct net_device *dev)
837{
838 struct in_device *in_dev;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000839
840 rcu_read_lock();
841 in_dev = __in_dev_get_rcu(dev);
Eric Dumazet866f3b22010-11-18 09:33:19 -0800842 if (in_dev)
David S. Miller24912422010-11-19 13:13:47 -0800843 ip_mc_rejoin_groups(in_dev);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000844 rcu_read_unlock();
845}
846
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800847/*
848 * Retrieve the list of registered multicast addresses for the bonding
849 * device and retransmit an IGMP JOIN request to the current active
850 * slave.
851 */
852static void bond_resend_igmp_join_requests(struct bonding *bond)
853{
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000854 struct net_device *vlan_dev;
855 struct vlan_entry *vlan;
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800856
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000857 read_lock(&bond->lock);
858
859 /* rejoin all groups on bond device */
860 __bond_resend_igmp_join_requests(bond->dev);
861
862 /* rejoin all groups on vlan devices */
863 if (bond->vlgrp) {
864 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
865 vlan_dev = vlan_group_get_device(bond->vlgrp,
866 vlan->vlan_id);
867 if (vlan_dev)
868 __bond_resend_igmp_join_requests(vlan_dev);
869 }
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800870 }
871
Flavio Leitnerc2952c32010-10-05 14:23:59 +0000872 if (--bond->igmp_retrans > 0)
873 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
874
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000875 read_unlock(&bond->lock);
876}
877
stephen hemminger379b7382010-10-15 11:02:56 +0000878static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
Flavio Leitner5a37e8c2010-10-05 14:23:57 +0000879{
880 struct bonding *bond = container_of(work, struct bonding,
881 mcast_work.work);
882 bond_resend_igmp_join_requests(bond);
Jay Vosburgha816c7c2007-02-28 17:03:37 -0800883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 * flush all members of flush->mc_list from device dev->mc_list
887 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000888static void bond_mc_list_flush(struct net_device *bond_dev,
889 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Wang Chen454d7c92008-11-12 23:37:49 -0800891 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000892 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Jiri Pirko22bedad32010-04-01 21:22:57 +0000894 netdev_for_each_mc_addr(ha, bond_dev)
895 dev_mc_del(slave_dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (bond->params.mode == BOND_MODE_8023AD) {
898 /* del lacpdu mc addr from mc list */
899 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
900
Jiri Pirko22bedad32010-04-01 21:22:57 +0000901 dev_mc_del(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903}
904
905/*--------------------------- Active slave change ---------------------------*/
906
907/*
908 * Update the mc list and multicast-related flags for the new and
909 * old active slaves (if any) according to the multicast mode, and
910 * promiscuous flags unconditionally.
911 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000912static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
913 struct slave *old_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Jiri Pirko22bedad32010-04-01 21:22:57 +0000915 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000917 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 /* nothing to do - mc list is already up-to-date on
919 * all slaves
920 */
921 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (old_active) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000924 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 dev_set_promiscuity(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000927 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 dev_set_allmulti(old_active->dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Jiri Pirko22bedad32010-04-01 21:22:57 +0000930 netdev_for_each_mc_addr(ha, bond->dev)
931 dev_mc_del(old_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
934 if (new_active) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700935 /* FIXME: Signal errors upstream. */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000936 if (bond->dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 dev_set_promiscuity(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000939 if (bond->dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dev_set_allmulti(new_active->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Jiri Pirko22bedad32010-04-01 21:22:57 +0000942 netdev_for_each_mc_addr(ha, bond->dev)
943 dev_mc_add(new_active->dev, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945}
946
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700947/*
948 * bond_do_fail_over_mac
949 *
950 * Perform special MAC address swapping for fail_over_mac settings
951 *
952 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
953 */
954static void bond_do_fail_over_mac(struct bonding *bond,
955 struct slave *new_active,
956 struct slave *old_active)
Hannes Eder1f78d9f2009-02-14 11:15:33 +0000957 __releases(&bond->curr_slave_lock)
958 __releases(&bond->lock)
959 __acquires(&bond->lock)
960 __acquires(&bond->curr_slave_lock)
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700961{
962 u8 tmp_mac[ETH_ALEN];
963 struct sockaddr saddr;
964 int rv;
965
966 switch (bond->params.fail_over_mac) {
967 case BOND_FOM_ACTIVE:
968 if (new_active)
969 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
970 new_active->dev->addr_len);
971 break;
972 case BOND_FOM_FOLLOW:
973 /*
974 * if new_active && old_active, swap them
975 * if just old_active, do nothing (going to no active slave)
976 * if just new_active, set new_active to bond's MAC
977 */
978 if (!new_active)
979 return;
980
981 write_unlock_bh(&bond->curr_slave_lock);
982 read_unlock(&bond->lock);
983
984 if (old_active) {
985 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
986 memcpy(saddr.sa_data, old_active->dev->dev_addr,
987 ETH_ALEN);
988 saddr.sa_family = new_active->dev->type;
989 } else {
990 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
991 saddr.sa_family = bond->dev->type;
992 }
993
994 rv = dev_set_mac_address(new_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 Vosburgh3915c1e82008-05-17 21:10:14 -0700997 bond->dev->name, -rv, new_active->dev->name);
998 goto out;
999 }
1000
1001 if (!old_active)
1002 goto out;
1003
1004 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1005 saddr.sa_family = old_active->dev->type;
1006
1007 rv = dev_set_mac_address(old_active->dev, &saddr);
1008 if (rv)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001009 pr_err("%s: Error %d setting MAC of slave %s\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001010 bond->dev->name, -rv, new_active->dev->name);
1011out:
1012 read_lock(&bond->lock);
1013 write_lock_bh(&bond->curr_slave_lock);
1014 break;
1015 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001016 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001017 bond->dev->name, bond->params.fail_over_mac);
1018 break;
1019 }
1020
1021}
1022
Jiri Pirkoa5499522009-09-25 03:28:09 +00001023static bool bond_should_change_active(struct bonding *bond)
1024{
1025 struct slave *prim = bond->primary_slave;
1026 struct slave *curr = bond->curr_active_slave;
1027
1028 if (!prim || !curr || curr->link != BOND_LINK_UP)
1029 return true;
1030 if (bond->force_primary) {
1031 bond->force_primary = false;
1032 return true;
1033 }
1034 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1035 (prim->speed < curr->speed ||
1036 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1037 return false;
1038 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1039 return false;
1040 return true;
1041}
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/**
1044 * find_best_interface - select the best available slave to be the active one
1045 * @bond: our bonding struct
1046 *
1047 * Warning: Caller must hold curr_slave_lock for writing.
1048 */
1049static struct slave *bond_find_best_slave(struct bonding *bond)
1050{
1051 struct slave *new_active, *old_active;
1052 struct slave *bestslave = NULL;
1053 int mintime = bond->params.updelay;
1054 int i;
1055
Nicolas de Pesloüan49b4ad92009-10-07 14:11:00 -07001056 new_active = bond->curr_active_slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 if (!new_active) { /* there were no active slaves left */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001059 if (bond->slave_cnt > 0) /* found one slave */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 new_active = bond->first_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001061 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return NULL; /* still no slave, return NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if ((bond->primary_slave) &&
Jiri Pirkoa5499522009-09-25 03:28:09 +00001066 bond->primary_slave->link == BOND_LINK_UP &&
1067 bond_should_change_active(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 new_active = bond->primary_slave;
1069 }
1070
1071 /* remember where to stop iterating over the slaves */
1072 old_active = new_active;
1073
1074 bond_for_each_slave_from(bond, new_active, i, old_active) {
Jiri Pirkob9f60252009-08-31 11:09:38 +00001075 if (new_active->link == BOND_LINK_UP) {
1076 return new_active;
1077 } else if (new_active->link == BOND_LINK_BACK &&
1078 IS_UP(new_active->dev)) {
1079 /* link up, but waiting for stabilization */
1080 if (new_active->delay < mintime) {
1081 mintime = new_active->delay;
1082 bestslave = new_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084 }
1085 }
1086
1087 return bestslave;
1088}
1089
Ben Hutchingsad246c92011-04-26 15:25:52 +00001090static bool bond_should_notify_peers(struct bonding *bond)
1091{
1092 struct slave *slave = bond->curr_active_slave;
1093
1094 pr_debug("bond_should_notify_peers: bond %s slave %s\n",
1095 bond->dev->name, slave ? slave->dev->name : "NULL");
1096
1097 if (!slave || !bond->send_peer_notif ||
1098 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
1099 return false;
1100
1101 bond->send_peer_notif--;
1102 return true;
1103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105/**
1106 * change_active_interface - change the active slave into the specified one
1107 * @bond: our bonding struct
1108 * @new: the new slave to make the active one
1109 *
1110 * Set the new slave to the bond's settings and unset them on the old
1111 * curr_active_slave.
1112 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1113 *
1114 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1115 * because it is apparently the best available slave we have, even though its
1116 * updelay hasn't timed out yet.
1117 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001118 * If new_active is not NULL, caller must hold bond->lock for read and
1119 * curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001121void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
1123 struct slave *old_active = bond->curr_active_slave;
1124
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001125 if (old_active == new_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 if (new_active) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07001129 new_active->jiffies = jiffies;
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (new_active->link == BOND_LINK_BACK) {
1132 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001133 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1134 bond->dev->name, new_active->dev->name,
1135 (bond->params.updelay - new_active->delay) * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137
1138 new_active->delay = 0;
1139 new_active->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001141 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Holger Eitzenberger58402052008-12-09 23:07:13 -08001144 if (bond_is_lb(bond))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 } else {
1147 if (USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001148 pr_info("%s: making interface %s the new active one.\n",
1149 bond->dev->name, new_active->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 }
1151 }
1152 }
1153
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001154 if (USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 bond_mc_swap(bond, new_active, old_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Holger Eitzenberger58402052008-12-09 23:07:13 -08001157 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 bond_alb_handle_active_change(bond, new_active);
Jay Vosburgh8f903c72006-02-21 16:36:44 -08001159 if (old_active)
1160 bond_set_slave_inactive_flags(old_active);
1161 if (new_active)
1162 bond_set_slave_active_flags(new_active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 } else {
1164 bond->curr_active_slave = new_active;
1165 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001166
1167 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001168 if (old_active)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001169 bond_set_slave_inactive_flags(old_active);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001170
1171 if (new_active) {
Ben Hutchingsad246c92011-04-26 15:25:52 +00001172 bool should_notify_peers = false;
1173
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001174 bond_set_slave_active_flags(new_active);
Moni Shoua2ab82852007-10-09 19:43:39 -07001175
Or Gerlitz709f8a42008-06-13 18:12:01 -07001176 if (bond->params.fail_over_mac)
1177 bond_do_fail_over_mac(bond, new_active,
1178 old_active);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001179
Ben Hutchingsad246c92011-04-26 15:25:52 +00001180 if (netif_running(bond->dev)) {
1181 bond->send_peer_notif =
1182 bond->params.num_peer_notif;
1183 should_notify_peers =
1184 bond_should_notify_peers(bond);
1185 }
1186
Or Gerlitz01f31092008-06-13 18:12:02 -07001187 write_unlock_bh(&bond->curr_slave_lock);
1188 read_unlock(&bond->lock);
1189
Moni Shoua75c78502009-09-15 02:37:40 -07001190 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
Ben Hutchingsad246c92011-04-26 15:25:52 +00001191 if (should_notify_peers)
1192 netdev_bonding_change(bond->dev,
1193 NETDEV_NOTIFY_PEERS);
Or Gerlitz01f31092008-06-13 18:12:02 -07001194
1195 read_lock(&bond->lock);
1196 write_lock_bh(&bond->curr_slave_lock);
Moni Shoua7893b242008-05-17 21:10:12 -07001197 }
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04001198 }
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001199
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001200 /* resend IGMP joins since active slave has changed or
1201 * all were sent on curr_active_slave */
Ben Hutchingsffa95ed2010-12-13 08:19:56 +00001202 if (((USES_PRIMARY(bond->params.mode) && new_active) ||
1203 bond->params.mode == BOND_MODE_ROUNDROBIN) &&
1204 netif_running(bond->dev)) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001205 bond->igmp_retrans = bond->params.resend_igmp;
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00001206 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
Andy Gospodareka2fd9402010-03-25 14:49:05 +00001207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210/**
1211 * bond_select_active_slave - select a new active slave, if needed
1212 * @bond: our bonding struct
1213 *
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001214 * This functions should be called when one of the following occurs:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 * - The old curr_active_slave has been released or lost its link.
1216 * - The primary_slave has got its link back.
1217 * - A slave has got its link back and there's no old curr_active_slave.
1218 *
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001219 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001221void bond_select_active_slave(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
1223 struct slave *best_slave;
Jay Vosburghff59c452006-03-27 13:27:43 -08001224 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 best_slave = bond_find_best_slave(bond);
1227 if (best_slave != bond->curr_active_slave) {
1228 bond_change_active_slave(bond, best_slave);
Jay Vosburghff59c452006-03-27 13:27:43 -08001229 rv = bond_set_carrier(bond);
1230 if (!rv)
1231 return;
1232
1233 if (netif_carrier_ok(bond->dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001234 pr_info("%s: first active interface up!\n",
1235 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001236 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001237 pr_info("%s: now running without any active interface !\n",
1238 bond->dev->name);
Jay Vosburghff59c452006-03-27 13:27:43 -08001239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241}
1242
1243/*--------------------------- slave list handling ---------------------------*/
1244
1245/*
1246 * This function attaches the slave to the end of list.
1247 *
1248 * bond->lock held for writing by caller.
1249 */
1250static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1251{
1252 if (bond->first_slave == NULL) { /* attaching the first slave */
1253 new_slave->next = new_slave;
1254 new_slave->prev = new_slave;
1255 bond->first_slave = new_slave;
1256 } else {
1257 new_slave->next = bond->first_slave;
1258 new_slave->prev = bond->first_slave->prev;
1259 new_slave->next->prev = new_slave;
1260 new_slave->prev->next = new_slave;
1261 }
1262
1263 bond->slave_cnt++;
1264}
1265
1266/*
1267 * This function detaches the slave from the list.
1268 * WARNING: no check is made to verify if the slave effectively
1269 * belongs to <bond>.
1270 * Nothing is freed on return, structures are just unchained.
1271 * If any slave pointer in bond was pointing to <slave>,
1272 * it should be changed by the calling function.
1273 *
1274 * bond->lock held for writing by caller.
1275 */
1276static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1277{
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001278 if (slave->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 slave->next->prev = slave->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001281 if (slave->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 slave->prev->next = slave->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 if (bond->first_slave == slave) { /* slave is the first slave */
1285 if (bond->slave_cnt > 1) { /* there are more slave */
1286 bond->first_slave = slave->next;
1287 } else {
1288 bond->first_slave = NULL; /* slave was the last one */
1289 }
1290 }
1291
1292 slave->next = NULL;
1293 slave->prev = NULL;
1294 bond->slave_cnt--;
1295}
1296
WANG Congf6dc31a2010-05-06 00:48:51 -07001297#ifdef CONFIG_NET_POLL_CONTROLLER
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001298static inline int slave_enable_netpoll(struct slave *slave)
WANG Congf6dc31a2010-05-06 00:48:51 -07001299{
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001300 struct netpoll *np;
1301 int err = 0;
WANG Congf6dc31a2010-05-06 00:48:51 -07001302
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001303 np = kzalloc(sizeof(*np), GFP_KERNEL);
1304 err = -ENOMEM;
1305 if (!np)
1306 goto out;
1307
1308 np->dev = slave->dev;
1309 err = __netpoll_setup(np);
1310 if (err) {
1311 kfree(np);
1312 goto out;
WANG Congf6dc31a2010-05-06 00:48:51 -07001313 }
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001314 slave->np = np;
1315out:
1316 return err;
1317}
1318static inline void slave_disable_netpoll(struct slave *slave)
1319{
1320 struct netpoll *np = slave->np;
1321
1322 if (!np)
1323 return;
1324
1325 slave->np = NULL;
1326 synchronize_rcu_bh();
1327 __netpoll_cleanup(np);
1328 kfree(np);
1329}
1330static inline bool slave_dev_support_netpoll(struct net_device *slave_dev)
1331{
1332 if (slave_dev->priv_flags & IFF_DISABLE_NETPOLL)
1333 return false;
1334 if (!slave_dev->netdev_ops->ndo_poll_controller)
1335 return false;
1336 return true;
WANG Congf6dc31a2010-05-06 00:48:51 -07001337}
1338
1339static void bond_poll_controller(struct net_device *bond_dev)
1340{
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001341}
1342
1343static void __bond_netpoll_cleanup(struct bonding *bond)
1344{
Neil Hormanc2355e12010-10-13 16:01:49 +00001345 struct slave *slave;
1346 int i;
1347
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001348 bond_for_each_slave(bond, slave, i)
1349 if (IS_UP(slave->dev))
1350 slave_disable_netpoll(slave);
WANG Congf6dc31a2010-05-06 00:48:51 -07001351}
WANG Congf6dc31a2010-05-06 00:48:51 -07001352static void bond_netpoll_cleanup(struct net_device *bond_dev)
1353{
1354 struct bonding *bond = netdev_priv(bond_dev);
WANG Congf6dc31a2010-05-06 00:48:51 -07001355
1356 read_lock(&bond->lock);
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001357 __bond_netpoll_cleanup(bond);
WANG Congf6dc31a2010-05-06 00:48:51 -07001358 read_unlock(&bond->lock);
1359}
1360
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001361static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni)
1362{
1363 struct bonding *bond = netdev_priv(dev);
1364 struct slave *slave;
1365 int i, err = 0;
WANG Congf6dc31a2010-05-06 00:48:51 -07001366
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001367 read_lock(&bond->lock);
1368 bond_for_each_slave(bond, slave, i) {
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001369 err = slave_enable_netpoll(slave);
1370 if (err) {
1371 __bond_netpoll_cleanup(bond);
1372 break;
1373 }
1374 }
1375 read_unlock(&bond->lock);
1376 return err;
1377}
1378
1379static struct netpoll_info *bond_netpoll_info(struct bonding *bond)
1380{
1381 return bond->dev->npinfo;
1382}
1383
1384#else
1385static inline int slave_enable_netpoll(struct slave *slave)
1386{
1387 return 0;
1388}
1389static inline void slave_disable_netpoll(struct slave *slave)
1390{
1391}
WANG Congf6dc31a2010-05-06 00:48:51 -07001392static void bond_netpoll_cleanup(struct net_device *bond_dev)
1393{
1394}
WANG Congf6dc31a2010-05-06 00:48:51 -07001395#endif
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397/*---------------------------------- IOCTL ----------------------------------*/
1398
Adrian Bunk4ad072c2007-07-09 11:51:12 -07001399static int bond_sethwaddr(struct net_device *bond_dev,
1400 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001402 pr_debug("bond_dev=%p\n", bond_dev);
1403 pr_debug("slave_dev=%p\n", slave_dev);
1404 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1406 return 0;
1407}
1408
Herbert Xu7f353bf2007-08-10 15:47:58 -07001409#define BOND_VLAN_FEATURES \
1410 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1411 NETIF_F_HW_VLAN_FILTER)
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001412
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001413/*
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001414 * Compute the common dev->feature set available to all slaves. Some
Herbert Xu7f353bf2007-08-10 15:47:58 -07001415 * feature bits are managed elsewhere, so preserve those feature bits
1416 * on the master device.
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001417 */
1418static int bond_compute_features(struct bonding *bond)
1419{
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001420 struct slave *slave;
1421 struct net_device *bond_dev = bond->dev;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08001422 u32 features = bond_dev->features;
1423 u32 vlan_features = 0;
Moni Shoua3158bf72007-10-09 19:43:41 -07001424 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1425 bond_dev->hard_header_len);
Jay Vosburgh8e3babc2005-11-04 18:45:45 -08001426 int i;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001427
Herbert Xu7f353bf2007-08-10 15:47:58 -07001428 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001429 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM | NETIF_F_NOCACHE_COPY;
Herbert Xub63365a2008-10-23 01:11:29 -07001430
1431 if (!bond->first_slave)
1432 goto done;
1433
1434 features &= ~NETIF_F_ONE_FOR_ALL;
Herbert Xu7f353bf2007-08-10 15:47:58 -07001435
Jay Vosburgh278339a2009-08-28 12:05:12 +00001436 vlan_features = bond->first_slave->dev->vlan_features;
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001437 bond_for_each_slave(bond, slave, i) {
Herbert Xub63365a2008-10-23 01:11:29 -07001438 features = netdev_increment_features(features,
1439 slave->dev->features,
1440 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh278339a2009-08-28 12:05:12 +00001441 vlan_features = netdev_increment_features(vlan_features,
1442 slave->dev->vlan_features,
1443 NETIF_F_ONE_FOR_ALL);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001444 if (slave->dev->hard_header_len > max_hard_header_len)
1445 max_hard_header_len = slave->dev->hard_header_len;
1446 }
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001447
Herbert Xub63365a2008-10-23 01:11:29 -07001448done:
Herbert Xu7f353bf2007-08-10 15:47:58 -07001449 features |= (bond_dev->features & BOND_VLAN_FEATURES);
Michał Mirosławacd11302011-01-24 15:45:15 -08001450 bond_dev->features = netdev_fix_features(bond_dev, features);
1451 bond_dev->vlan_features = netdev_fix_features(bond_dev, vlan_features);
Jay Vosburgh54ef3132006-09-22 21:53:39 -07001452 bond_dev->hard_header_len = max_hard_header_len;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001453
1454 return 0;
1455}
1456
Moni Shoua872254d2007-10-09 19:43:38 -07001457static void bond_setup_by_slave(struct net_device *bond_dev,
1458 struct net_device *slave_dev)
1459{
Wang Chen454d7c92008-11-12 23:37:49 -08001460 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07001461
Stephen Hemminger00829822008-11-20 20:14:53 -08001462 bond_dev->header_ops = slave_dev->header_ops;
Moni Shoua872254d2007-10-09 19:43:38 -07001463
1464 bond_dev->type = slave_dev->type;
1465 bond_dev->hard_header_len = slave_dev->hard_header_len;
1466 bond_dev->addr_len = slave_dev->addr_len;
1467
1468 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1469 slave_dev->addr_len);
Moni Shouad90a1622007-10-09 19:43:43 -07001470 bond->setup_by_slave = 1;
Moni Shoua872254d2007-10-09 19:43:38 -07001471}
1472
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001473/* On bonding slaves other than the currently active slave, suppress
Jiri Pirko3aba8912011-04-19 03:48:16 +00001474 * duplicates except for alb non-mcast/bcast.
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001475 */
1476static bool bond_should_deliver_exact_match(struct sk_buff *skb,
Jiri Pirko0bd80da2011-03-16 08:45:23 +00001477 struct slave *slave,
1478 struct bonding *bond)
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001479{
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001480 if (bond_is_slave_inactive(slave)) {
Jiri Pirko0bd80da2011-03-16 08:45:23 +00001481 if (bond->params.mode == BOND_MODE_ALB &&
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001482 skb->pkt_type != PACKET_BROADCAST &&
1483 skb->pkt_type != PACKET_MULTICAST)
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001484 return false;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001485 return true;
1486 }
1487 return false;
1488}
1489
Jiri Pirko8a4eb572011-03-12 03:14:39 +00001490static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001491{
Jiri Pirko8a4eb572011-03-12 03:14:39 +00001492 struct sk_buff *skb = *pskb;
Jiri Pirkof1c17752011-03-12 03:14:35 +00001493 struct slave *slave;
Jiri Pirko0bd80da2011-03-16 08:45:23 +00001494 struct bonding *bond;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001495
Jiri Pirko8a4eb572011-03-12 03:14:39 +00001496 skb = skb_share_check(skb, GFP_ATOMIC);
1497 if (unlikely(!skb))
1498 return RX_HANDLER_CONSUMED;
1499
1500 *pskb = skb;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001501
Jiri Pirko35d48902011-03-22 02:38:12 +00001502 slave = bond_slave_get_rcu(skb->dev);
1503 bond = slave->bond;
Jiri Pirko0bd80da2011-03-16 08:45:23 +00001504
1505 if (bond->params.arp_interval)
Jiri Pirkof1c17752011-03-12 03:14:35 +00001506 slave->dev->last_rx = jiffies;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001507
Jiri Pirko3aba8912011-04-19 03:48:16 +00001508 if (bond->recv_probe) {
1509 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1510
1511 if (likely(nskb)) {
1512 bond->recv_probe(nskb, bond, slave);
1513 dev_kfree_skb(nskb);
1514 }
1515 }
1516
Jiri Pirko0bd80da2011-03-16 08:45:23 +00001517 if (bond_should_deliver_exact_match(skb, slave, bond)) {
Jiri Pirko8a4eb572011-03-12 03:14:39 +00001518 return RX_HANDLER_EXACT;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001519 }
1520
Jiri Pirko35d48902011-03-22 02:38:12 +00001521 skb->dev = bond->dev;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001522
Jiri Pirko0bd80da2011-03-16 08:45:23 +00001523 if (bond->params.mode == BOND_MODE_ALB &&
Jiri Pirko35d48902011-03-22 02:38:12 +00001524 bond->dev->priv_flags & IFF_BRIDGE_PORT &&
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001525 skb->pkt_type == PACKET_HOST) {
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001526
Changli Gao541ac7c2011-03-02 21:07:14 +00001527 if (unlikely(skb_cow_head(skb,
1528 skb->data - skb_mac_header(skb)))) {
1529 kfree_skb(skb);
Jiri Pirko8a4eb572011-03-12 03:14:39 +00001530 return RX_HANDLER_CONSUMED;
Changli Gao541ac7c2011-03-02 21:07:14 +00001531 }
Jiri Pirko35d48902011-03-22 02:38:12 +00001532 memcpy(eth_hdr(skb)->h_dest, bond->dev->dev_addr, ETH_ALEN);
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001533 }
1534
Jiri Pirko8a4eb572011-03-12 03:14:39 +00001535 return RX_HANDLER_ANOTHER;
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001536}
1537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538/* enslave device <slave> to bond device <master> */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001539int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Wang Chen454d7c92008-11-12 23:37:49 -08001541 struct bonding *bond = netdev_priv(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001542 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 struct slave *new_slave = NULL;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001544 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct sockaddr addr;
1546 int link_reporting;
1547 int old_features = bond_dev->features;
1548 int res = 0;
1549
nsxfreddy@gmail.com552709d2005-09-21 14:18:04 -05001550 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001551 slave_ops->ndo_do_ioctl == NULL) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001552 pr_warning("%s: Warning: no link monitoring support for %s\n",
1553 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555
1556 /* bond must be initialized by bond_open() before enslaving */
1557 if (!(bond_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001558 pr_warning("%s: master_dev is not up in bond_enslave\n",
1559 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
1561
1562 /* already enslaved */
1563 if (slave_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001564 pr_debug("Error, Device was already enslaved\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return -EBUSY;
1566 }
1567
1568 /* vlan challenged mutual exclusion */
1569 /* no need to lock since we're protected by rtnl_lock */
1570 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001571 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Jay Vosburghf35188f2010-07-21 12:14:47 +00001572 if (bond->vlgrp) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001573 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1574 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return -EPERM;
1576 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001577 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1578 bond_dev->name, slave_dev->name,
1579 slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1581 }
1582 } else {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001583 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (bond->slave_cnt == 0) {
1585 /* First slave, and it is not VLAN challenged,
1586 * so remove the block of adding VLANs over the bond.
1587 */
1588 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1589 }
1590 }
1591
Jay Vosburgh217df672005-09-26 16:11:50 -07001592 /*
1593 * Old ifenslave binaries are no longer supported. These can
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001594 * be identified with moderate accuracy by the state of the slave:
Jay Vosburgh217df672005-09-26 16:11:50 -07001595 * the current ifenslave will set the interface down prior to
1596 * enslaving it; the old ifenslave will not.
1597 */
1598 if ((slave_dev->flags & IFF_UP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001599 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
Jay Vosburgh217df672005-09-26 16:11:50 -07001600 slave_dev->name);
1601 res = -EPERM;
1602 goto err_undo_flags;
1603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Moni Shoua872254d2007-10-09 19:43:38 -07001605 /* set bonding device ether type by slave - bonding netdevices are
1606 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1607 * there is a need to override some of the type dependent attribs/funcs.
1608 *
1609 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1610 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1611 */
1612 if (bond->slave_cnt == 0) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001613 if (bond_dev->type != slave_dev->type) {
Moni Shouae36b9d12009-07-15 04:56:31 +00001614 pr_debug("%s: change device type from %d to %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001615 bond_dev->name,
1616 bond_dev->type, slave_dev->type);
Moni Shoua75c78502009-09-15 02:37:40 -07001617
Jiri Pirko3ca5b402010-03-10 10:29:35 +00001618 res = netdev_bonding_change(bond_dev,
1619 NETDEV_PRE_TYPE_CHANGE);
1620 res = notifier_to_errno(res);
1621 if (res) {
1622 pr_err("%s: refused to change device type\n",
1623 bond_dev->name);
1624 res = -EBUSY;
1625 goto err_undo_flags;
1626 }
Moni Shoua75c78502009-09-15 02:37:40 -07001627
Jiri Pirko32a806c2010-03-19 04:00:23 +00001628 /* Flush unicast and multicast addresses */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00001629 dev_uc_flush(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001630 dev_mc_flush(bond_dev);
Jiri Pirko32a806c2010-03-19 04:00:23 +00001631
Moni Shouae36b9d12009-07-15 04:56:31 +00001632 if (slave_dev->type != ARPHRD_ETHER)
1633 bond_setup_by_slave(bond_dev, slave_dev);
1634 else
1635 ether_setup(bond_dev);
Moni Shoua75c78502009-09-15 02:37:40 -07001636
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00001637 netdev_bonding_change(bond_dev,
1638 NETDEV_POST_TYPE_CHANGE);
Moni Shouae36b9d12009-07-15 04:56:31 +00001639 }
Moni Shoua872254d2007-10-09 19:43:38 -07001640 } else if (bond_dev->type != slave_dev->type) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001641 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1642 slave_dev->name,
1643 slave_dev->type, bond_dev->type);
1644 res = -EINVAL;
1645 goto err_undo_flags;
Moni Shoua872254d2007-10-09 19:43:38 -07001646 }
1647
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001648 if (slave_ops->ndo_set_mac_address == NULL) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001649 if (bond->slave_cnt == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001650 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1651 bond_dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001652 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1653 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001654 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",
1655 bond_dev->name);
Moni Shoua2ab82852007-10-09 19:43:39 -07001656 res = -EOPNOTSUPP;
1657 goto err_undo_flags;
1658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001661 /* If this is the first slave, then we need to set the master's hardware
1662 * address to be the same as the slave's. */
David Strandd13a2cb2010-12-01 11:43:08 -08001663 if (is_zero_ether_addr(bond->dev->dev_addr))
Jiri Pirkoc20811a2010-05-19 01:14:29 +00001664 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1665 slave_dev->addr_len);
1666
1667
Joe Jin243cb4e2007-02-06 14:16:40 -08001668 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (!new_slave) {
1670 res = -ENOMEM;
1671 goto err_undo_flags;
1672 }
1673
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001674 /*
1675 * Set the new_slave's queue_id to be zero. Queue ID mapping
1676 * is set via sysfs or module option if desired.
1677 */
1678 new_slave->queue_id = 0;
1679
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001680 /* Save slave's original mtu and then set it to match the bond */
1681 new_slave->original_mtu = slave_dev->mtu;
1682 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1683 if (res) {
1684 pr_debug("Error %d calling dev_set_mtu\n", res);
1685 goto err_free;
1686 }
1687
Jay Vosburgh217df672005-09-26 16:11:50 -07001688 /*
1689 * Save slave's original ("permanent") mac address for modes
1690 * that need it, and for restoring it upon release, and then
1691 * set it to the master's address
1692 */
1693 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Jay Vosburghdd957c52007-10-09 19:57:24 -07001695 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07001696 /*
1697 * Set slave to master's mac address. The application already
1698 * set the master's mac address to that of the first slave
1699 */
1700 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1701 addr.sa_family = slave_dev->type;
1702 res = dev_set_mac_address(slave_dev, &addr);
1703 if (res) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001704 pr_debug("Error %d calling set_mac_address\n", res);
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001705 goto err_restore_mtu;
Moni Shoua2ab82852007-10-09 19:43:39 -07001706 }
Jay Vosburgh217df672005-09-26 16:11:50 -07001707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Jiri Pirko1765a572011-02-12 06:48:36 +00001709 res = netdev_set_bond_master(slave_dev, bond_dev);
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001710 if (res) {
Jiri Pirko1765a572011-02-12 06:48:36 +00001711 pr_debug("Error %d calling netdev_set_bond_master\n", res);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001712 goto err_restore_mac;
Jay Vosburghc2edacf2007-07-09 10:42:47 -07001713 }
Jiri Pirko5b2c4dd2011-02-23 09:05:42 +00001714
Jay Vosburgh217df672005-09-26 16:11:50 -07001715 /* open the slave since the application closed it */
1716 res = dev_open(slave_dev);
1717 if (res) {
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001718 pr_debug("Opening slave %s failed\n", slave_dev->name);
Jiri Pirko35d48902011-03-22 02:38:12 +00001719 goto err_unset_master;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721
Jiri Pirko35d48902011-03-22 02:38:12 +00001722 new_slave->bond = bond;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 new_slave->dev = slave_dev;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07001724 slave_dev->priv_flags |= IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Holger Eitzenberger58402052008-12-09 23:07:13 -08001726 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /* bond_alb_init_slave() must be called before all other stages since
1728 * it might fail and we do not want to have to undo everything
1729 */
1730 res = bond_alb_init_slave(bond, new_slave);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001731 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001732 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734
1735 /* If the mode USES_PRIMARY, then the new slave gets the
1736 * master's promisc (and mc) settings only if it becomes the
1737 * curr_active_slave, and that is taken care of later when calling
1738 * bond_change_active()
1739 */
1740 if (!USES_PRIMARY(bond->params.mode)) {
1741 /* set promiscuity level to new slave */
1742 if (bond_dev->flags & IFF_PROMISC) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001743 res = dev_set_promiscuity(slave_dev, 1);
1744 if (res)
1745 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747
1748 /* set allmulti level to new slave */
1749 if (bond_dev->flags & IFF_ALLMULTI) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -07001750 res = dev_set_allmulti(slave_dev, 1);
1751 if (res)
1752 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754
David S. Millerb9e40852008-07-15 00:15:08 -07001755 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /* upload master's mc_list to new slave */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001757 netdev_for_each_mc_addr(ha, bond_dev)
1758 dev_mc_add(slave_dev, ha->addr);
David S. Millerb9e40852008-07-15 00:15:08 -07001759 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761
1762 if (bond->params.mode == BOND_MODE_8023AD) {
1763 /* add lacpdu mc addr to mc list */
1764 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1765
Jiri Pirko22bedad32010-04-01 21:22:57 +00001766 dev_mc_add(slave_dev, lacpdu_multicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768
1769 bond_add_vlans_on_slave(bond, slave_dev);
1770
1771 write_lock_bh(&bond->lock);
1772
1773 bond_attach_slave(bond, new_slave);
1774
1775 new_slave->delay = 0;
1776 new_slave->link_failure_count = 0;
1777
Arthur Kepner8531c5f2005-08-23 01:34:53 -04001778 bond_compute_features(bond);
1779
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001780 write_unlock_bh(&bond->lock);
1781
1782 read_lock(&bond->lock);
1783
Jay Vosburghf5b2b962006-09-22 21:54:53 -07001784 new_slave->last_arp_rx = jiffies;
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (bond->params.miimon && !bond->params.use_carrier) {
1787 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1788
1789 if ((link_reporting == -1) && !bond->params.arp_interval) {
1790 /*
1791 * miimon is set but a bonded network driver
1792 * does not support ETHTOOL/MII and
1793 * arp_interval is not set. Note: if
1794 * use_carrier is enabled, we will never go
1795 * here (because netif_carrier is always
1796 * supported); thus, we don't need to change
1797 * the messages for netif_carrier.
1798 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001799 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 -08001800 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 } else if (link_reporting == -1) {
1802 /* unable get link status using mii/ethtool */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001803 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",
1804 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806 }
1807
1808 /* check for initial state */
1809 if (!bond->params.miimon ||
1810 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1811 if (bond->params.updelay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001812 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 new_slave->link = BOND_LINK_BACK;
1814 new_slave->delay = bond->params.updelay;
1815 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001816 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 new_slave->link = BOND_LINK_UP;
1818 }
1819 new_slave->jiffies = jiffies;
1820 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001821 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 new_slave->link = BOND_LINK_DOWN;
1823 }
1824
1825 if (bond_update_speed_duplex(new_slave) &&
1826 (new_slave->link != BOND_LINK_DOWN)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001827 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1828 bond_dev->name, new_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830 if (bond->params.mode == BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001831 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1832 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834 }
1835
1836 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1837 /* if there is a primary slave, remember it */
Jiri Pirkoa5499522009-09-25 03:28:09 +00001838 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 bond->primary_slave = new_slave;
Jiri Pirkoa5499522009-09-25 03:28:09 +00001840 bond->force_primary = true;
1841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001844 write_lock_bh(&bond->curr_slave_lock);
1845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 switch (bond->params.mode) {
1847 case BOND_MODE_ACTIVEBACKUP:
Jay Vosburgh8a8e4472006-09-22 21:56:15 -07001848 bond_set_slave_inactive_flags(new_slave);
1849 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 break;
1851 case BOND_MODE_8023AD:
1852 /* in 802.3ad mode, the internal mechanism
1853 * will activate the slaves in the selected
1854 * aggregator
1855 */
1856 bond_set_slave_inactive_flags(new_slave);
1857 /* if this is the first slave */
1858 if (bond->slave_cnt == 1) {
1859 SLAVE_AD_INFO(new_slave).id = 1;
1860 /* Initialize AD with the number of times that the AD timer is called in 1 second
1861 * can be called only after the mac address of the bond is set
1862 */
1863 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1864 bond->params.lacp_fast);
1865 } else {
1866 SLAVE_AD_INFO(new_slave).id =
1867 SLAVE_AD_INFO(new_slave->prev).id + 1;
1868 }
1869
1870 bond_3ad_bind_slave(new_slave);
1871 break;
1872 case BOND_MODE_TLB:
1873 case BOND_MODE_ALB:
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001874 bond_set_active_slave(new_slave);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001875 bond_set_slave_inactive_flags(new_slave);
Jiri Pirko5a29f782009-03-25 17:23:38 -07001876 bond_select_active_slave(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 break;
1878 default:
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08001879 pr_debug("This slave is always active in trunk mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 /* always active in trunk mode */
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001882 bond_set_active_slave(new_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 /* In trunking mode there is little meaning to curr_active_slave
1885 * anyway (it holds no special properties of the bond device),
1886 * so we can change it without calling change_active_interface()
1887 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001888 if (!bond->curr_active_slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 bond->curr_active_slave = new_slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 break;
1892 } /* switch(bond_mode) */
1893
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001894 write_unlock_bh(&bond->curr_slave_lock);
1895
Jay Vosburghff59c452006-03-27 13:27:43 -08001896 bond_set_carrier(bond);
1897
WANG Congf6dc31a2010-05-06 00:48:51 -07001898#ifdef CONFIG_NET_POLL_CONTROLLER
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001899 slave_dev->npinfo = bond_netpoll_info(bond);
1900 if (slave_dev->npinfo) {
1901 if (slave_enable_netpoll(new_slave)) {
1902 read_unlock(&bond->lock);
1903 pr_info("Error, %s: master_dev is using netpoll, "
1904 "but new slave device does not support netpoll.\n",
1905 bond_dev->name);
1906 res = -EBUSY;
1907 goto err_close;
1908 }
WANG Congf6dc31a2010-05-06 00:48:51 -07001909 }
1910#endif
Amerigo Wang8a8efa22011-02-17 23:43:32 +00001911
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001912 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001914 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1915 if (res)
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001916 goto err_close;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001917
Jiri Pirko35d48902011-03-22 02:38:12 +00001918 res = netdev_rx_handler_register(slave_dev, bond_handle_frame,
1919 new_slave);
1920 if (res) {
1921 pr_debug("Error %d calling netdev_rx_handler_register\n", res);
1922 goto err_dest_symlinks;
1923 }
1924
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001925 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1926 bond_dev->name, slave_dev->name,
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001927 bond_is_active_slave(new_slave) ? "n active" : " backup",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001928 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 /* enslave is successful */
1931 return 0;
1932
1933/* Undo stages on error */
Jiri Pirko35d48902011-03-22 02:38:12 +00001934err_dest_symlinks:
1935 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937err_close:
1938 dev_close(slave_dev);
1939
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001940err_unset_master:
Jiri Pirko1765a572011-02-12 06:48:36 +00001941 netdev_set_bond_master(slave_dev, NULL);
Jay Vosburgh569f0c42008-05-02 18:06:02 -07001942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943err_restore_mac:
Jay Vosburghdd957c52007-10-09 19:57:24 -07001944 if (!bond->params.fail_over_mac) {
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07001945 /* XXX TODO - fom follow mode needs to change master's
1946 * MAC if this slave's MAC is in use by the bond, or at
1947 * least print a warning.
1948 */
Moni Shoua2ab82852007-10-09 19:43:39 -07001949 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1950 addr.sa_family = slave_dev->type;
1951 dev_set_mac_address(slave_dev, &addr);
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00001954err_restore_mtu:
1955 dev_set_mtu(slave_dev, new_slave->original_mtu);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957err_free:
1958 kfree(new_slave);
1959
1960err_undo_flags:
1961 bond_dev->features = old_features;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 return res;
1964}
1965
1966/*
1967 * Try to release the slave device <slave> from the bond device <master>
1968 * It is legal to access curr_active_slave without a lock because all the function
1969 * is write-locked.
1970 *
1971 * The rules for slave state should be:
1972 * for Active/Backup:
1973 * Active stays on all backups go down
1974 * for Bonded connections:
1975 * The first up interface should be left on and all others downed.
1976 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08001977int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Wang Chen454d7c92008-11-12 23:37:49 -08001979 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 struct slave *slave, *oldcurrent;
1981 struct sockaddr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 /* slave is not a slave or master is not master of this slave */
1984 if (!(slave_dev->flags & IFF_SLAVE) ||
1985 (slave_dev->master != bond_dev)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001986 pr_err("%s: Error: cannot release %s.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 bond_dev->name, slave_dev->name);
1988 return -EINVAL;
1989 }
1990
Neil Hormane843fa52010-10-13 16:01:50 +00001991 block_netpoll_tx();
WANG Congf6dc31a2010-05-06 00:48:51 -07001992 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 write_lock_bh(&bond->lock);
1994
1995 slave = bond_get_slave_by_dev(bond, slave_dev);
1996 if (!slave) {
1997 /* not a slave of this bond */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001998 pr_info("%s: %s not enslaved\n",
1999 bond_dev->name, slave_dev->name);
Jay Vosburghf5e2a7b2006-02-07 21:17:22 -08002000 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002001 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return -EINVAL;
2003 }
2004
Jiri Pirko35d48902011-03-22 02:38:12 +00002005 /* unregister rx_handler early so bond_handle_frame wouldn't be called
2006 * for this slave anymore.
2007 */
2008 netdev_rx_handler_unregister(slave_dev);
2009 write_unlock_bh(&bond->lock);
2010 synchronize_net();
2011 write_lock_bh(&bond->lock);
2012
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002013 if (!bond->params.fail_over_mac) {
Joe Perches8e95a202009-12-03 07:58:21 +00002014 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
2015 bond->slave_cnt > 1)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002016 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",
2017 bond_dev->name, slave_dev->name,
2018 slave->perm_hwaddr,
2019 bond_dev->name, slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
2022 /* Inform AD package of unbinding of slave. */
2023 if (bond->params.mode == BOND_MODE_8023AD) {
2024 /* must be called before the slave is
2025 * detached from the list
2026 */
2027 bond_3ad_unbind_slave(slave);
2028 }
2029
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002030 pr_info("%s: releasing %s interface %s\n",
2031 bond_dev->name,
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002032 bond_is_active_slave(slave) ? "active" : "backup",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002033 slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 oldcurrent = bond->curr_active_slave;
2036
2037 bond->current_arp_slave = NULL;
2038
2039 /* release the slave from its bond */
2040 bond_detach_slave(bond, slave);
2041
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002042 bond_compute_features(bond);
2043
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002044 if (bond->primary_slave == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 bond->primary_slave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002047 if (oldcurrent == slave)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 bond_change_active_slave(bond, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Holger Eitzenberger58402052008-12-09 23:07:13 -08002050 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 /* Must be called only after the slave has been
2052 * detached from the list and the curr_active_slave
2053 * has been cleared (if our_slave == old_current),
2054 * but before a new active slave is selected.
2055 */
Jay Vosburgh25433312008-01-17 16:24:59 -08002056 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 bond_alb_deinit_slave(bond, slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08002058 write_lock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002061 if (oldcurrent == slave) {
2062 /*
2063 * Note that we hold RTNL over this sequence, so there
2064 * is no concern that another slave add/remove event
2065 * will interfere.
2066 */
2067 write_unlock_bh(&bond->lock);
2068 read_lock(&bond->lock);
2069 write_lock_bh(&bond->curr_slave_lock);
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 bond_select_active_slave(bond);
2072
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002073 write_unlock_bh(&bond->curr_slave_lock);
2074 read_unlock(&bond->lock);
2075 write_lock_bh(&bond->lock);
2076 }
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (bond->slave_cnt == 0) {
Jay Vosburghff59c452006-03-27 13:27:43 -08002079 bond_set_carrier(bond);
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 /* if the last slave was removed, zero the mac address
2082 * of the master so it will be set by the application
2083 * to the mac address of the first slave
2084 */
2085 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2086
Jay Vosburghf35188f2010-07-21 12:14:47 +00002087 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
2089 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002090 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2091 bond_dev->name, bond_dev->name);
2092 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2093 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 }
2095 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
2096 !bond_has_challenged_slaves(bond)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002097 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
2098 bond_dev->name, slave_dev->name, bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
2100 }
2101
2102 write_unlock_bh(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002103 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002105 /* must do this from outside any spinlocks */
2106 bond_destroy_slave_symlinks(bond_dev, slave_dev);
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 bond_del_vlans_from_slave(bond, slave_dev);
2109
2110 /* If the mode USES_PRIMARY, then we should only remove its
2111 * promisc and mc settings if it was the curr_active_slave, but that was
2112 * already taken care of above when we detached the slave
2113 */
2114 if (!USES_PRIMARY(bond->params.mode)) {
2115 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002116 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002120 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002124 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002126 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 }
2128
Jiri Pirko1765a572011-02-12 06:48:36 +00002129 netdev_set_bond_master(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Amerigo Wang8a8efa22011-02-17 23:43:32 +00002131 slave_disable_netpoll(slave);
WANG Congf6dc31a2010-05-06 00:48:51 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 /* close slave before restoring its mac address */
2134 dev_close(slave_dev);
2135
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07002136 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002137 /* restore original ("permanent") mac address */
2138 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2139 addr.sa_family = slave_dev->type;
2140 dev_set_mac_address(slave_dev, &addr);
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Jiri Pirkob15ba0f2010-05-18 05:42:40 +00002143 dev_set_mtu(slave_dev, slave->original_mtu);
2144
Jiri Pirko2d7011c2011-03-16 08:46:43 +00002145 slave_dev->priv_flags &= ~IFF_BONDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147 kfree(slave);
2148
2149 return 0; /* deletion OK */
2150}
2151
2152/*
Nicolas de Pesloüandadaa102011-03-19 13:36:18 -07002153* First release a slave and then destroy the bond if no more slaves are left.
Moni Shouad90a1622007-10-09 19:43:43 -07002154* Must be under rtnl_lock when this function is called.
2155*/
stephen hemminger26d8ee72010-10-15 05:09:34 +00002156static int bond_release_and_destroy(struct net_device *bond_dev,
2157 struct net_device *slave_dev)
Moni Shouad90a1622007-10-09 19:43:43 -07002158{
Wang Chen454d7c92008-11-12 23:37:49 -08002159 struct bonding *bond = netdev_priv(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002160 int ret;
2161
2162 ret = bond_release(bond_dev, slave_dev);
2163 if ((ret == 0) && (bond->slave_cnt == 0)) {
Amerigo Wang8a8efa22011-02-17 23:43:32 +00002164 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002165 pr_info("%s: destroying bond %s.\n",
2166 bond_dev->name, bond_dev->name);
Stephen Hemminger9e716262009-06-12 19:02:47 +00002167 unregister_netdevice(bond_dev);
Moni Shouad90a1622007-10-09 19:43:43 -07002168 }
2169 return ret;
2170}
2171
2172/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 * This function releases all slaves.
2174 */
2175static int bond_release_all(struct net_device *bond_dev)
2176{
Wang Chen454d7c92008-11-12 23:37:49 -08002177 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 struct slave *slave;
2179 struct net_device *slave_dev;
2180 struct sockaddr addr;
2181
2182 write_lock_bh(&bond->lock);
2183
Jay Vosburghff59c452006-03-27 13:27:43 -08002184 netif_carrier_off(bond_dev);
2185
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002186 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 bond->current_arp_slave = NULL;
2190 bond->primary_slave = NULL;
2191 bond_change_active_slave(bond, NULL);
2192
2193 while ((slave = bond->first_slave) != NULL) {
2194 /* Inform AD package of unbinding of slave
2195 * before slave is detached from the list.
2196 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002197 if (bond->params.mode == BOND_MODE_8023AD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 bond_3ad_unbind_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 slave_dev = slave->dev;
2201 bond_detach_slave(bond, slave);
2202
Jay Vosburgh25433312008-01-17 16:24:59 -08002203 /* now that the slave is detached, unlock and perform
2204 * all the undo steps that should not be called from
2205 * within a lock.
2206 */
2207 write_unlock_bh(&bond->lock);
2208
Jiri Pirko35d48902011-03-22 02:38:12 +00002209 /* unregister rx_handler early so bond_handle_frame wouldn't
2210 * be called for this slave anymore.
2211 */
2212 netdev_rx_handler_unregister(slave_dev);
2213 synchronize_net();
2214
Holger Eitzenberger58402052008-12-09 23:07:13 -08002215 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 /* must be called only after the slave
2217 * has been detached from the list
2218 */
2219 bond_alb_deinit_slave(bond, slave);
2220 }
2221
Arthur Kepner8531c5f2005-08-23 01:34:53 -04002222 bond_compute_features(bond);
2223
Mitch Williamsb76cdba2005-11-09 10:36:41 -08002224 bond_destroy_slave_symlinks(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 bond_del_vlans_from_slave(bond, slave_dev);
2226
2227 /* If the mode USES_PRIMARY, then we should only remove its
2228 * promisc and mc settings if it was the curr_active_slave, but that was
2229 * already taken care of above when we detached the slave
2230 */
2231 if (!USES_PRIMARY(bond->params.mode)) {
2232 /* unset promiscuity level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002233 if (bond_dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 dev_set_promiscuity(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236 /* unset allmulti level from slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002237 if (bond_dev->flags & IFF_ALLMULTI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 dev_set_allmulti(slave_dev, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 /* flush master's mc_list from slave */
David S. Millerb9e40852008-07-15 00:15:08 -07002241 netif_addr_lock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 bond_mc_list_flush(bond_dev, slave_dev);
David S. Millerb9e40852008-07-15 00:15:08 -07002243 netif_addr_unlock_bh(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245
Jiri Pirko1765a572011-02-12 06:48:36 +00002246 netdev_set_bond_master(slave_dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Amerigo Wang8a8efa22011-02-17 23:43:32 +00002248 slave_disable_netpoll(slave);
2249
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 /* close slave before restoring its mac address */
2251 dev_close(slave_dev);
2252
Jay Vosburghdd957c52007-10-09 19:57:24 -07002253 if (!bond->params.fail_over_mac) {
Moni Shoua2ab82852007-10-09 19:43:39 -07002254 /* restore original ("permanent") mac address*/
2255 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2256 addr.sa_family = slave_dev->type;
2257 dev_set_mac_address(slave_dev, &addr);
2258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 kfree(slave);
2261
2262 /* re-acquire the lock before getting the next slave */
2263 write_lock_bh(&bond->lock);
2264 }
2265
2266 /* zero the mac address of the master so it will be
2267 * set by the application to the mac address of the
2268 * first slave
2269 */
2270 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2271
Jay Vosburghf35188f2010-07-21 12:14:47 +00002272 if (!bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
Jay Vosburghf35188f2010-07-21 12:14:47 +00002274 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002275 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2276 bond_dev->name, bond_dev->name);
2277 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2278 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002281 pr_info("%s: released all slaves\n", bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283out:
2284 write_unlock_bh(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return 0;
2286}
2287
2288/*
2289 * This function changes the active slave to slave <slave_dev>.
2290 * It returns -EINVAL in the following cases.
2291 * - <slave_dev> is not found in the list.
2292 * - There is not active slave now.
2293 * - <slave_dev> is already active.
2294 * - The link state of <slave_dev> is not BOND_LINK_UP.
2295 * - <slave_dev> is not running.
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002296 * In these cases, this function does nothing.
2297 * In the other cases, current_slave pointer is changed and 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 */
2299static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2300{
Wang Chen454d7c92008-11-12 23:37:49 -08002301 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 struct slave *old_active = NULL;
2303 struct slave *new_active = NULL;
2304 int res = 0;
2305
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002306 if (!USES_PRIMARY(bond->params.mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309 /* Verify that master_dev is indeed the master of slave_dev */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002310 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002313 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002315 read_lock(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 old_active = bond->curr_active_slave;
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002317 read_unlock(&bond->curr_slave_lock);
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 new_active = bond_get_slave_by_dev(bond, slave_dev);
2320
2321 /*
2322 * Changing to the current active: do nothing; return success.
2323 */
2324 if (new_active && (new_active == old_active)) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002325 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return 0;
2327 }
2328
2329 if ((new_active) &&
2330 (old_active) &&
2331 (new_active->link == BOND_LINK_UP) &&
2332 IS_UP(new_active->dev)) {
Neil Hormane843fa52010-10-13 16:01:50 +00002333 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002334 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 bond_change_active_slave(bond, new_active);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002336 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002337 unblock_netpoll_tx();
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002338 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 res = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002341 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 return res;
2344}
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2347{
Wang Chen454d7c92008-11-12 23:37:49 -08002348 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 info->bond_mode = bond->params.mode;
2351 info->miimon = bond->params.miimon;
2352
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002353 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 info->num_slaves = bond->slave_cnt;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002355 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357 return 0;
2358}
2359
2360static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2361{
Wang Chen454d7c92008-11-12 23:37:49 -08002362 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 struct slave *slave;
Eric Dumazet689c96c2009-04-23 03:39:04 +00002364 int i, res = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002366 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 bond_for_each_slave(bond, slave, i) {
2369 if (i == (int)info->slave_id) {
Eric Dumazet689c96c2009-04-23 03:39:04 +00002370 res = 0;
2371 strcpy(info->slave_name, slave->dev->name);
2372 info->link = slave->link;
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002373 info->state = bond_slave_state(slave);
Eric Dumazet689c96c2009-04-23 03:39:04 +00002374 info->link_failure_count = slave->link_failure_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 break;
2376 }
2377 }
2378
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07002379 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Eric Dumazet689c96c2009-04-23 03:39:04 +00002381 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382}
2383
2384/*-------------------------------- Monitoring -------------------------------*/
2385
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002386
2387static int bond_miimon_inspect(struct bonding *bond)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002389 struct slave *slave;
2390 int i, link_state, commit = 0;
Jiri Pirko41f89102009-04-24 03:57:29 +00002391 bool ignore_updelay;
2392
2393 ignore_updelay = !bond->curr_active_slave ? true : false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 bond_for_each_slave(bond, slave, i) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002396 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002398 link_state = bond_check_dev_link(bond, slave->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 switch (slave->link) {
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002401 case BOND_LINK_UP:
2402 if (link_state)
2403 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002405 slave->link = BOND_LINK_FAIL;
2406 slave->delay = bond->params.downdelay;
2407 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002408 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2409 bond->dev->name,
2410 (bond->params.mode ==
2411 BOND_MODE_ACTIVEBACKUP) ?
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002412 (bond_is_active_slave(slave) ?
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002413 "active " : "backup ") : "",
2414 slave->dev->name,
2415 bond->params.downdelay * bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002417 /*FALLTHRU*/
2418 case BOND_LINK_FAIL:
2419 if (link_state) {
2420 /*
2421 * recovered before downdelay expired
2422 */
2423 slave->link = BOND_LINK_UP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 slave->jiffies = jiffies;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002425 pr_info("%s: link status up again after %d ms for interface %s.\n",
2426 bond->dev->name,
2427 (bond->params.downdelay - slave->delay) *
2428 bond->params.miimon,
2429 slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002430 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002432
2433 if (slave->delay <= 0) {
2434 slave->new_link = BOND_LINK_DOWN;
2435 commit++;
2436 continue;
2437 }
2438
2439 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002442 case BOND_LINK_DOWN:
2443 if (!link_state)
2444 continue;
2445
2446 slave->link = BOND_LINK_BACK;
2447 slave->delay = bond->params.updelay;
2448
2449 if (slave->delay) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002450 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2451 bond->dev->name, slave->dev->name,
2452 ignore_updelay ? 0 :
2453 bond->params.updelay *
2454 bond->params.miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002456 /*FALLTHRU*/
2457 case BOND_LINK_BACK:
2458 if (!link_state) {
2459 slave->link = BOND_LINK_DOWN;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002460 pr_info("%s: link status down again after %d ms for interface %s.\n",
2461 bond->dev->name,
2462 (bond->params.updelay - slave->delay) *
2463 bond->params.miimon,
2464 slave->dev->name);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002465
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002466 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002468
Jiri Pirko41f89102009-04-24 03:57:29 +00002469 if (ignore_updelay)
2470 slave->delay = 0;
2471
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002472 if (slave->delay <= 0) {
2473 slave->new_link = BOND_LINK_UP;
2474 commit++;
Jiri Pirko41f89102009-04-24 03:57:29 +00002475 ignore_updelay = false;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002476 continue;
2477 }
2478
2479 slave->delay--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 break;
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002481 }
2482 }
2483
2484 return commit;
2485}
2486
2487static void bond_miimon_commit(struct bonding *bond)
2488{
2489 struct slave *slave;
2490 int i;
2491
2492 bond_for_each_slave(bond, slave, i) {
2493 switch (slave->new_link) {
2494 case BOND_LINK_NOCHANGE:
2495 continue;
2496
2497 case BOND_LINK_UP:
2498 slave->link = BOND_LINK_UP;
2499 slave->jiffies = jiffies;
2500
2501 if (bond->params.mode == BOND_MODE_8023AD) {
2502 /* prevent it from being the active one */
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002503 bond_set_backup_slave(slave);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002504 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2505 /* make it immediately active */
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002506 bond_set_active_slave(slave);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002507 } else if (slave != bond->primary_slave) {
2508 /* prevent it from being the active one */
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002509 bond_set_backup_slave(slave);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002510 }
2511
Krzysztof Piotr Oledzki546add72010-10-06 14:28:22 -07002512 bond_update_speed_duplex(slave);
2513
David Decotigny5d305302011-04-13 15:22:31 +00002514 pr_info("%s: link status definitely up for interface %s, %u Mbps %s duplex.\n",
Krzysztof Piotr Oledzki700c2a72010-10-06 14:25:06 -07002515 bond->dev->name, slave->dev->name,
2516 slave->speed, slave->duplex ? "full" : "half");
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002517
2518 /* notify ad that the link status has changed */
2519 if (bond->params.mode == BOND_MODE_8023AD)
2520 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2521
Holger Eitzenberger58402052008-12-09 23:07:13 -08002522 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002523 bond_alb_handle_link_change(bond, slave,
2524 BOND_LINK_UP);
2525
2526 if (!bond->curr_active_slave ||
2527 (slave == bond->primary_slave))
2528 goto do_failover;
2529
2530 continue;
2531
2532 case BOND_LINK_DOWN:
Jay Vosburghfba4acd2008-10-30 17:41:14 -07002533 if (slave->link_failure_count < UINT_MAX)
2534 slave->link_failure_count++;
2535
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002536 slave->link = BOND_LINK_DOWN;
2537
2538 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2539 bond->params.mode == BOND_MODE_8023AD)
2540 bond_set_slave_inactive_flags(slave);
2541
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002542 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2543 bond->dev->name, slave->dev->name);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002544
2545 if (bond->params.mode == BOND_MODE_8023AD)
2546 bond_3ad_handle_link_change(slave,
2547 BOND_LINK_DOWN);
2548
Jiri Pirkoae63e802009-05-27 05:42:36 +00002549 if (bond_is_lb(bond))
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002550 bond_alb_handle_link_change(bond, slave,
2551 BOND_LINK_DOWN);
2552
2553 if (slave == bond->curr_active_slave)
2554 goto do_failover;
2555
2556 continue;
2557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002559 pr_err("%s: invalid new link %d on slave %s\n",
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002560 bond->dev->name, slave->new_link,
2561 slave->dev->name);
2562 slave->new_link = BOND_LINK_NOCHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002564 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 }
2566
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002567do_failover:
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002568 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00002569 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002570 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 bond_select_active_slave(bond);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002572 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002573 unblock_netpoll_tx();
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002574 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002575
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002576 bond_set_carrier(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002579/*
2580 * bond_mii_monitor
2581 *
2582 * Really a wrapper that splits the mii monitor into two phases: an
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002583 * inspection, then (if inspection indicates something needs to be done)
2584 * an acquisition of appropriate locks followed by a commit phase to
2585 * implement whatever link state changes are indicated.
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002586 */
2587void bond_mii_monitor(struct work_struct *work)
2588{
2589 struct bonding *bond = container_of(work, struct bonding,
2590 mii_work.work);
Ben Hutchingsad246c92011-04-26 15:25:52 +00002591 bool should_notify_peers = false;
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002592
2593 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002594 if (bond->kill_timers)
2595 goto out;
2596
2597 if (bond->slave_cnt == 0)
2598 goto re_arm;
Jay Vosburghb59f9f72008-06-13 18:12:03 -07002599
Ben Hutchingsad246c92011-04-26 15:25:52 +00002600 should_notify_peers = bond_should_notify_peers(bond);
2601
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002602 if (bond_miimon_inspect(bond)) {
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002603 read_unlock(&bond->lock);
2604 rtnl_lock();
2605 read_lock(&bond->lock);
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002606
2607 bond_miimon_commit(bond);
2608
Jay Vosburgh56556622008-01-17 16:25:03 -08002609 read_unlock(&bond->lock);
2610 rtnl_unlock(); /* might sleep, hold no other locks */
2611 read_lock(&bond->lock);
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002612 }
2613
Jay Vosburghf0c76d62008-07-02 18:21:58 -07002614re_arm:
2615 if (bond->params.miimon)
2616 queue_delayed_work(bond->wq, &bond->mii_work,
2617 msecs_to_jiffies(bond->params.miimon));
2618out:
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002619 read_unlock(&bond->lock);
Ben Hutchingsad246c92011-04-26 15:25:52 +00002620
2621 if (should_notify_peers) {
2622 rtnl_lock();
2623 netdev_bonding_change(bond->dev, NETDEV_NOTIFY_PEERS);
2624 rtnl_unlock();
2625 }
Jay Vosburgh0b0eef62007-10-17 17:37:48 -07002626}
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002627
Al Virod3bb52b2007-08-22 20:06:58 -04002628static __be32 bond_glean_dev_ip(struct net_device *dev)
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002629{
2630 struct in_device *idev;
2631 struct in_ifaddr *ifa;
Al Viroa144ea42006-09-28 18:00:55 -07002632 __be32 addr = 0;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002633
2634 if (!dev)
2635 return 0;
2636
2637 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -07002638 idev = __in_dev_get_rcu(dev);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002639 if (!idev)
2640 goto out;
2641
2642 ifa = idev->ifa_list;
2643 if (!ifa)
2644 goto out;
2645
2646 addr = ifa->ifa_local;
2647out:
2648 rcu_read_unlock();
2649 return addr;
2650}
2651
Al Virod3bb52b2007-08-22 20:06:58 -04002652static int bond_has_this_ip(struct bonding *bond, __be32 ip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002653{
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002654 struct vlan_entry *vlan;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002655
2656 if (ip == bond->master_ip)
2657 return 1;
2658
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002659 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002660 if (ip == vlan->vlan_ip)
2661 return 1;
2662 }
2663
2664 return 0;
2665}
2666
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002667/*
2668 * We go to the (large) trouble of VLAN tagging ARP frames because
2669 * switches in VLAN mode (especially if ports are configured as
2670 * "native" to a VLAN) might not pass non-tagged frames.
2671 */
Al Virod3bb52b2007-08-22 20:06:58 -04002672static 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 -04002673{
2674 struct sk_buff *skb;
2675
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002676 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002677 slave_dev->name, dest_ip, src_ip, vlan_id);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002678
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002679 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2680 NULL, slave_dev->dev_addr, NULL);
2681
2682 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002683 pr_err("ARP packet allocation failed\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002684 return;
2685 }
2686 if (vlan_id) {
2687 skb = vlan_put_tag(skb, vlan_id);
2688 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002689 pr_err("failed to insert VLAN tag\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002690 return;
2691 }
2692 }
2693 arp_xmit(skb);
2694}
2695
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2698{
David S. Millerb23dd4f2011-03-02 14:31:35 -08002699 int i, vlan_id;
Al Virod3bb52b2007-08-22 20:06:58 -04002700 __be32 *targets = bond->params.arp_targets;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002701 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002702 struct net_device *vlan_dev;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002703 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Mitch Williams6b780562005-11-09 10:36:19 -08002705 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2706 if (!targets[i])
Brian Haley5a31bec2009-04-13 00:11:30 -07002707 break;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002708 pr_debug("basa: target %x\n", targets[i]);
Jay Vosburghf35188f2010-07-21 12:14:47 +00002709 if (!bond->vlgrp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002710 pr_debug("basa: empty vlan: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002711 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2712 bond->master_ip, 0);
2713 continue;
2714 }
2715
2716 /*
2717 * If VLANs are configured, we do a route lookup to
2718 * determine which VLAN interface would be used, so we
2719 * can tag the ARP with the proper VLAN tag.
2720 */
David S. Miller78fbfd82011-03-12 00:00:52 -05002721 rt = ip_route_output(dev_net(bond->dev), targets[i], 0,
2722 RTO_ONLINK, 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -08002723 if (IS_ERR(rt)) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002724 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002725 pr_warning("%s: no route to arp_ip_target %pI4\n",
David S. Miller78fbfd82011-03-12 00:00:52 -05002726 bond->dev->name, &targets[i]);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002727 }
2728 continue;
2729 }
2730
2731 /*
2732 * This target is not on a VLAN
2733 */
Changli Gaod8d1f302010-06-10 23:31:35 -07002734 if (rt->dst.dev == bond->dev) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002735 ip_rt_put(rt);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002736 pr_debug("basa: rtdev == bond->dev: arp_send\n");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002737 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2738 bond->master_ip, 0);
2739 continue;
2740 }
2741
2742 vlan_id = 0;
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07002743 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Dan Aloni5c15bde2007-03-02 20:44:51 -08002744 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Changli Gaod8d1f302010-06-10 23:31:35 -07002745 if (vlan_dev == rt->dst.dev) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002746 vlan_id = vlan->vlan_id;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002747 pr_debug("basa: vlan match on %s %d\n",
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002748 vlan_dev->name, vlan_id);
2749 break;
2750 }
2751 }
2752
2753 if (vlan_id) {
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002754 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002755 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2756 vlan->vlan_ip, vlan_id);
2757 continue;
2758 }
2759
2760 if (net_ratelimit()) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002761 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
David S. Miller78fbfd82011-03-12 00:00:52 -05002762 bond->dev->name, &targets[i],
Changli Gaod8d1f302010-06-10 23:31:35 -07002763 rt->dst.dev ? rt->dst.dev->name : "NULL");
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002764 }
Jay Vosburghed4b9f82005-09-14 14:52:09 -07002765 ip_rt_put(rt);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04002766 }
2767}
2768
Al Virod3bb52b2007-08-22 20:06:58 -04002769static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002770{
2771 int i;
Al Virod3bb52b2007-08-22 20:06:58 -04002772 __be32 *targets = bond->params.arp_targets;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002773
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002774 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002775 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002776 &sip, &tip, i, &targets[i],
2777 bond_has_this_ip(bond, tip));
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002778 if (sip == targets[i]) {
2779 if (bond_has_this_ip(bond, tip))
2780 slave->last_arp_rx = jiffies;
2781 return;
2782 }
2783 }
2784}
2785
Jiri Pirko3aba8912011-04-19 03:48:16 +00002786static void bond_arp_rcv(struct sk_buff *skb, struct bonding *bond,
2787 struct slave *slave)
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002788{
2789 struct arphdr *arp;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002790 unsigned char *arp_ptr;
Al Virod3bb52b2007-08-22 20:06:58 -04002791 __be32 sip, tip;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002792
Jiri Pirko3aba8912011-04-19 03:48:16 +00002793 if (skb->protocol != __cpu_to_be16(ETH_P_ARP))
2794 return;
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00002795
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002796 read_lock(&bond->lock);
2797
Jiri Pirko3aba8912011-04-19 03:48:16 +00002798 pr_debug("bond_arp_rcv: bond %s skb->dev %s\n",
2799 bond->dev->name, skb->dev->name);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002800
Jiri Pirko3aba8912011-04-19 03:48:16 +00002801 if (!pskb_may_pull(skb, arp_hdr_len(bond->dev)))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002802 goto out_unlock;
2803
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03002804 arp = arp_hdr(skb);
Jiri Pirko3aba8912011-04-19 03:48:16 +00002805 if (arp->ar_hln != bond->dev->addr_len ||
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002806 skb->pkt_type == PACKET_OTHERHOST ||
2807 skb->pkt_type == PACKET_LOOPBACK ||
2808 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2809 arp->ar_pro != htons(ETH_P_IP) ||
2810 arp->ar_pln != 4)
2811 goto out_unlock;
2812
2813 arp_ptr = (unsigned char *)(arp + 1);
Jiri Pirko3aba8912011-04-19 03:48:16 +00002814 arp_ptr += bond->dev->addr_len;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002815 memcpy(&sip, arp_ptr, 4);
Jiri Pirko3aba8912011-04-19 03:48:16 +00002816 arp_ptr += 4 + bond->dev->addr_len;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002817 memcpy(&tip, arp_ptr, 4);
2818
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08002819 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002820 bond->dev->name, slave->dev->name, bond_slave_state(slave),
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002821 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2822 &sip, &tip);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002823
2824 /*
2825 * Backup slaves won't see the ARP reply, but do come through
2826 * here for each ARP probe (so we swap the sip/tip to validate
2827 * the probe). In a "redundant switch, common router" type of
2828 * configuration, the ARP probe will (hopefully) travel from
2829 * the active, through one switch, the router, then the other
2830 * switch before reaching the backup.
2831 */
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002832 if (bond_is_active_slave(slave))
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002833 bond_validate_arp(bond, slave, sip, tip);
2834 else
2835 bond_validate_arp(bond, slave, tip, sip);
2836
2837out_unlock:
2838 read_unlock(&bond->lock);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07002839}
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841/*
2842 * this function is called regularly to monitor each slave's link
2843 * ensuring that traffic is being sent and received when arp monitoring
2844 * is used in load-balancing mode. if the adapter has been dormant, then an
2845 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2846 * arp monitoring in active backup mode.
2847 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002848void bond_loadbalance_arp_mon(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002850 struct bonding *bond = container_of(work, struct bonding,
2851 arp_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 struct slave *slave, *oldcurrent;
2853 int do_failover = 0;
2854 int delta_in_ticks;
2855 int i;
2856
2857 read_lock(&bond->lock);
2858
Jay Vosburgh5ce0da82008-05-17 21:10:07 -07002859 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002861 if (bond->kill_timers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002864 if (bond->slave_cnt == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 goto re_arm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 read_lock(&bond->curr_slave_lock);
2868 oldcurrent = bond->curr_active_slave;
2869 read_unlock(&bond->curr_slave_lock);
2870
2871 /* see if any of the previous devices are up now (i.e. they have
2872 * xmt and rcv traffic). the curr_active_slave does not come into
2873 * the picture unless it is null. also, slave->jiffies is not needed
2874 * here because we send an arp on each slave and give a slave as
2875 * long as it needs to get the tx/rx within the delta.
2876 * TODO: what about up/down delay in arp mode? it wasn't here before
2877 * so it can wait
2878 */
2879 bond_for_each_slave(bond, slave, i) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002880 unsigned long trans_start = dev_trans_start(slave->dev);
2881
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002883 if (time_in_range(jiffies,
2884 trans_start - delta_in_ticks,
2885 trans_start + delta_in_ticks) &&
2886 time_in_range(jiffies,
2887 slave->dev->last_rx - delta_in_ticks,
2888 slave->dev->last_rx + delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
2890 slave->link = BOND_LINK_UP;
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002891 bond_set_active_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 /* primary_slave has no meaning in round-robin
2894 * mode. the window of a slave being up and
2895 * curr_active_slave being null after enslaving
2896 * is closed.
2897 */
2898 if (!oldcurrent) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002899 pr_info("%s: link status definitely up for interface %s, ",
2900 bond->dev->name,
2901 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 do_failover = 1;
2903 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002904 pr_info("%s: interface %s is now up\n",
2905 bond->dev->name,
2906 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 }
2908 }
2909 } else {
2910 /* slave->link == BOND_LINK_UP */
2911
2912 /* not all switches will respond to an arp request
2913 * when the source ip is 0, so don't take the link down
2914 * if we don't know our ip yet
2915 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002916 if (!time_in_range(jiffies,
2917 trans_start - delta_in_ticks,
2918 trans_start + 2 * delta_in_ticks) ||
2919 !time_in_range(jiffies,
2920 slave->dev->last_rx - delta_in_ticks,
2921 slave->dev->last_rx + 2 * delta_in_ticks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 slave->link = BOND_LINK_DOWN;
Jiri Pirkoe30bc062011-03-12 03:14:37 +00002924 bond_set_backup_slave(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002926 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Joe Perchesa4aee5c2009-12-13 20:06:07 -08002929 pr_info("%s: interface %s is now down.\n",
2930 bond->dev->name,
2931 slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002933 if (slave == oldcurrent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 do_failover = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
2936 }
2937
2938 /* note: if switch is in round-robin mode, all links
2939 * must tx arp to ensure all links rx an arp - otherwise
2940 * links may oscillate or not come up at all; if switch is
2941 * in something like xor mode, there is nothing we can
2942 * do - all replies will be rx'ed on same link causing slaves
2943 * to be unstable during low/no traffic periods
2944 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00002945 if (IS_UP(slave->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 bond_arp_send_all(bond, slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948
2949 if (do_failover) {
Neil Hormane843fa52010-10-13 16:01:50 +00002950 block_netpoll_tx();
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002951 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 bond_select_active_slave(bond);
2954
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07002955 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00002956 unblock_netpoll_tx();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 }
2958
2959re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07002960 if (bond->params.arp_interval)
2961 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962out:
2963 read_unlock(&bond->lock);
2964}
2965
2966/*
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002967 * Called to inspect slaves for active-backup mode ARP monitor link state
2968 * changes. Sets new_link in slaves to specify what action should take
2969 * place for the slave. Returns 0 if no changes are found, >0 if changes
2970 * to link states must be committed.
2971 *
2972 * Called with bond->lock held for read.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002974static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 struct slave *slave;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002977 int i, commit = 0;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002978 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 bond_for_each_slave(bond, slave, i) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002981 slave->new_link = BOND_LINK_NOCHANGE;
2982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 if (slave->link != BOND_LINK_UP) {
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00002984 if (time_in_range(jiffies,
2985 slave_last_rx(bond, slave) - delta_in_ticks,
2986 slave_last_rx(bond, slave) + delta_in_ticks)) {
2987
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002988 slave->new_link = BOND_LINK_UP;
2989 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002992 continue;
2993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Jay Vosburghb2220ca2008-05-17 21:10:13 -07002995 /*
2996 * Give slaves 2*delta after being enslaved or made
2997 * active. This avoids bouncing, as the last receive
2998 * times need a full ARP monitor cycle to be updated.
2999 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003000 if (time_in_range(jiffies,
3001 slave->jiffies - delta_in_ticks,
3002 slave->jiffies + 2 * delta_in_ticks))
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003003 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003005 /*
3006 * Backup slave is down if:
3007 * - No current_arp_slave AND
3008 * - more than 3*delta since last receive AND
3009 * - the bond has an IP address
3010 *
3011 * Note: a non-null current_arp_slave indicates
3012 * the curr_active_slave went down and we are
3013 * searching for a new one; under this condition
3014 * we only take the curr_active_slave down - this
3015 * gives each slave a chance to tx/rx traffic
3016 * before being taken out
3017 */
Jiri Pirkoe30bc062011-03-12 03:14:37 +00003018 if (!bond_is_active_slave(slave) &&
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003019 !bond->current_arp_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003020 !time_in_range(jiffies,
3021 slave_last_rx(bond, slave) - delta_in_ticks,
3022 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
3023
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003024 slave->new_link = BOND_LINK_DOWN;
3025 commit++;
3026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003028 /*
3029 * Active slave is down if:
3030 * - more than 2*delta since transmitting OR
3031 * - (more than 2*delta since receive AND
3032 * the bond has an IP address)
3033 */
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003034 trans_start = dev_trans_start(slave->dev);
Jiri Pirkoe30bc062011-03-12 03:14:37 +00003035 if (bond_is_active_slave(slave) &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003036 (!time_in_range(jiffies,
3037 trans_start - delta_in_ticks,
3038 trans_start + 2 * delta_in_ticks) ||
3039 !time_in_range(jiffies,
3040 slave_last_rx(bond, slave) - delta_in_ticks,
3041 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
3042
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003043 slave->new_link = BOND_LINK_DOWN;
3044 commit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 }
3046 }
3047
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003048 return commit;
3049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003051/*
3052 * Called to commit link state changes noted by inspection step of
3053 * active-backup mode ARP monitor.
3054 *
3055 * Called with RTNL and bond->lock for read.
3056 */
3057static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
3058{
3059 struct slave *slave;
3060 int i;
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003061 unsigned long trans_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003063 bond_for_each_slave(bond, slave, i) {
3064 switch (slave->new_link) {
3065 case BOND_LINK_NOCHANGE:
3066 continue;
3067
3068 case BOND_LINK_UP:
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003069 trans_start = dev_trans_start(slave->dev);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003070 if ((!bond->curr_active_slave &&
Jiri Bohaccb32f2a2010-09-02 05:45:54 +00003071 time_in_range(jiffies,
3072 trans_start - delta_in_ticks,
3073 trans_start + delta_in_ticks)) ||
Jiri Pirkob9f60252009-08-31 11:09:38 +00003074 bond->curr_active_slave != slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003075 slave->link = BOND_LINK_UP;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003076 bond->current_arp_slave = NULL;
3077
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003078 pr_info("%s: link status definitely up for interface %s.\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003079 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003080
Jiri Pirkob9f60252009-08-31 11:09:38 +00003081 if (!bond->curr_active_slave ||
3082 (slave == bond->primary_slave))
3083 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003084
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003085 }
3086
Jiri Pirkob9f60252009-08-31 11:09:38 +00003087 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003088
3089 case BOND_LINK_DOWN:
3090 if (slave->link_failure_count < UINT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003093 slave->link = BOND_LINK_DOWN;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003094 bond_set_slave_inactive_flags(slave);
3095
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003096 pr_info("%s: link status definitely down for interface %s, disabling it\n",
Jiri Pirkob9f60252009-08-31 11:09:38 +00003097 bond->dev->name, slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003098
3099 if (slave == bond->curr_active_slave) {
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003100 bond->current_arp_slave = NULL;
Jiri Pirkob9f60252009-08-31 11:09:38 +00003101 goto do_failover;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003102 }
Jiri Pirkob9f60252009-08-31 11:09:38 +00003103
3104 continue;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003105
3106 default:
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003107 pr_err("%s: impossible: new_link %d on slave %s\n",
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003108 bond->dev->name, slave->new_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 slave->dev->name);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003110 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Jiri Pirkob9f60252009-08-31 11:09:38 +00003113do_failover:
3114 ASSERT_RTNL();
Neil Hormane843fa52010-10-13 16:01:50 +00003115 block_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003116 write_lock_bh(&bond->curr_slave_lock);
Jiri Pirkob9f60252009-08-31 11:09:38 +00003117 bond_select_active_slave(bond);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003118 write_unlock_bh(&bond->curr_slave_lock);
Neil Hormane843fa52010-10-13 16:01:50 +00003119 unblock_netpoll_tx();
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003120 }
3121
3122 bond_set_carrier(bond);
3123}
3124
3125/*
3126 * Send ARP probes for active-backup mode ARP monitor.
3127 *
3128 * Called with bond->lock held for read.
3129 */
3130static void bond_ab_arp_probe(struct bonding *bond)
3131{
3132 struct slave *slave;
3133 int i;
3134
3135 read_lock(&bond->curr_slave_lock);
3136
3137 if (bond->current_arp_slave && bond->curr_active_slave)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003138 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3139 bond->current_arp_slave->dev->name,
3140 bond->curr_active_slave->dev->name);
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003141
3142 if (bond->curr_active_slave) {
3143 bond_arp_send_all(bond, bond->curr_active_slave);
3144 read_unlock(&bond->curr_slave_lock);
3145 return;
3146 }
3147
3148 read_unlock(&bond->curr_slave_lock);
3149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 /* if we don't have a curr_active_slave, search for the next available
3151 * backup slave from the current_arp_slave and make it the candidate
3152 * for becoming the curr_active_slave
3153 */
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003154
3155 if (!bond->current_arp_slave) {
3156 bond->current_arp_slave = bond->first_slave;
3157 if (!bond->current_arp_slave)
3158 return;
3159 }
3160
3161 bond_set_slave_inactive_flags(bond->current_arp_slave);
3162
3163 /* search for next candidate */
3164 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3165 if (IS_UP(slave->dev)) {
3166 slave->link = BOND_LINK_BACK;
3167 bond_set_slave_active_flags(slave);
3168 bond_arp_send_all(bond, slave);
3169 slave->jiffies = jiffies;
3170 bond->current_arp_slave = slave;
3171 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 }
3173
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003174 /* if the link state is up at this point, we
3175 * mark it down - this can happen if we have
3176 * simultaneous link failures and
3177 * reselect_active_interface doesn't make this
3178 * one the current slave so it is still marked
3179 * up when it is actually down
3180 */
3181 if (slave->link == BOND_LINK_UP) {
3182 slave->link = BOND_LINK_DOWN;
3183 if (slave->link_failure_count < UINT_MAX)
3184 slave->link_failure_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003186 bond_set_slave_inactive_flags(slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003188 pr_info("%s: backup interface %s is now down.\n",
3189 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 }
3191 }
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003192}
3193
3194void bond_activebackup_arp_mon(struct work_struct *work)
3195{
3196 struct bonding *bond = container_of(work, struct bonding,
3197 arp_work.work);
Ben Hutchingsad246c92011-04-26 15:25:52 +00003198 bool should_notify_peers = false;
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003199 int delta_in_ticks;
3200
3201 read_lock(&bond->lock);
3202
3203 if (bond->kill_timers)
3204 goto out;
3205
3206 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3207
3208 if (bond->slave_cnt == 0)
3209 goto re_arm;
3210
Ben Hutchingsad246c92011-04-26 15:25:52 +00003211 should_notify_peers = bond_should_notify_peers(bond);
3212
Jay Vosburghb2220ca2008-05-17 21:10:13 -07003213 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3214 read_unlock(&bond->lock);
3215 rtnl_lock();
3216 read_lock(&bond->lock);
3217
3218 bond_ab_arp_commit(bond, delta_in_ticks);
3219
3220 read_unlock(&bond->lock);
3221 rtnl_unlock();
3222 read_lock(&bond->lock);
3223 }
3224
3225 bond_ab_arp_probe(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227re_arm:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003228 if (bond->params.arp_interval)
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003229 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230out:
3231 read_unlock(&bond->lock);
Ben Hutchingsad246c92011-04-26 15:25:52 +00003232
3233 if (should_notify_peers) {
3234 rtnl_lock();
3235 netdev_bonding_change(bond->dev, NETDEV_NOTIFY_PEERS);
3236 rtnl_unlock();
3237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238}
3239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240/*-------------------------- netdev event handling --------------------------*/
3241
3242/*
3243 * Change device name
3244 */
3245static int bond_event_changename(struct bonding *bond)
3246{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 bond_remove_proc_entry(bond);
3248 bond_create_proc_entry(bond);
Stephen Hemminger7e083842009-06-12 19:02:46 +00003249
Taku Izumif073c7c2010-12-09 15:17:13 +00003250 bond_debug_reregister(bond);
3251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 return NOTIFY_DONE;
3253}
3254
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003255static int bond_master_netdev_event(unsigned long event,
3256 struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Wang Chen454d7c92008-11-12 23:37:49 -08003258 struct bonding *event_bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 switch (event) {
3261 case NETDEV_CHANGENAME:
3262 return bond_event_changename(event_bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 default:
3264 break;
3265 }
3266
3267 return NOTIFY_DONE;
3268}
3269
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003270static int bond_slave_netdev_event(unsigned long event,
3271 struct net_device *slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
3273 struct net_device *bond_dev = slave_dev->master;
Wang Chen454d7c92008-11-12 23:37:49 -08003274 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
3276 switch (event) {
3277 case NETDEV_UNREGISTER:
3278 if (bond_dev) {
Jay Vosburgh1284cd32007-10-15 16:44:27 -07003279 if (bond->setup_by_slave)
3280 bond_release_and_destroy(bond_dev, slave_dev);
3281 else
3282 bond_release(bond_dev, slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 }
3284 break;
3285 case NETDEV_CHANGE:
Jay Vosburgh17d04502009-03-18 18:38:25 -07003286 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3287 struct slave *slave;
3288
3289 slave = bond_get_slave_by_dev(bond, slave_dev);
3290 if (slave) {
David Decotigny5d305302011-04-13 15:22:31 +00003291 u32 old_speed = slave->speed;
David Decotigny65cce192011-04-13 15:22:30 +00003292 u8 old_duplex = slave->duplex;
Jay Vosburgh17d04502009-03-18 18:38:25 -07003293
3294 bond_update_speed_duplex(slave);
3295
3296 if (bond_is_lb(bond))
3297 break;
3298
3299 if (old_speed != slave->speed)
3300 bond_3ad_adapter_speed_changed(slave);
3301 if (old_duplex != slave->duplex)
3302 bond_3ad_adapter_duplex_changed(slave);
3303 }
3304 }
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 break;
3307 case NETDEV_DOWN:
3308 /*
3309 * ... Or is it this?
3310 */
3311 break;
3312 case NETDEV_CHANGEMTU:
3313 /*
3314 * TODO: Should slaves be allowed to
3315 * independently alter their MTU? For
3316 * an active-backup bond, slaves need
3317 * not be the same type of device, so
3318 * MTUs may vary. For other modes,
3319 * slaves arguably should have the
3320 * same MTUs. To do this, we'd need to
3321 * take over the slave's change_mtu
3322 * function for the duration of their
3323 * servitude.
3324 */
3325 break;
3326 case NETDEV_CHANGENAME:
3327 /*
3328 * TODO: handle changing the primary's name
3329 */
3330 break;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04003331 case NETDEV_FEAT_CHANGE:
3332 bond_compute_features(bond);
3333 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 default:
3335 break;
3336 }
3337
3338 return NOTIFY_DONE;
3339}
3340
3341/*
3342 * bond_netdev_event: handle netdev notifier chain events.
3343 *
3344 * This function receives events for the netdev chain. The caller (an
Alan Sterne041c682006-03-27 01:16:30 -08003345 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 * locks for us to safely manipulate the slave devices (RTNL lock,
3347 * dev_probe_lock).
3348 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003349static int bond_netdev_event(struct notifier_block *this,
3350 unsigned long event, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351{
3352 struct net_device *event_dev = (struct net_device *)ptr;
3353
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003354 pr_debug("event_dev: %s, event: %lx\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003355 event_dev ? event_dev->name : "None",
3356 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
Jay Vosburgh0b680e72006-09-22 21:54:10 -07003358 if (!(event_dev->priv_flags & IFF_BONDING))
3359 return NOTIFY_DONE;
3360
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 if (event_dev->flags & IFF_MASTER) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003362 pr_debug("IFF_MASTER\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 return bond_master_netdev_event(event, event_dev);
3364 }
3365
3366 if (event_dev->flags & IFF_SLAVE) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003367 pr_debug("IFF_SLAVE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 return bond_slave_netdev_event(event, event_dev);
3369 }
3370
3371 return NOTIFY_DONE;
3372}
3373
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003374/*
3375 * bond_inetaddr_event: handle inetaddr notifier chain events.
3376 *
3377 * We keep track of device IPs primarily to use as source addresses in
3378 * ARP monitor probes (rather than spewing out broadcasts all the time).
3379 *
3380 * We track one IP for the main device (if it has one), plus one per VLAN.
3381 */
3382static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3383{
3384 struct in_ifaddr *ifa = ptr;
3385 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003386 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003387 struct bonding *bond;
3388 struct vlan_entry *vlan;
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003389
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003390 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003391 if (bond->dev == event_dev) {
3392 switch (event) {
3393 case NETDEV_UP:
3394 bond->master_ip = ifa->ifa_local;
3395 return NOTIFY_OK;
3396 case NETDEV_DOWN:
3397 bond->master_ip = bond_glean_dev_ip(bond->dev);
3398 return NOTIFY_OK;
3399 default:
3400 return NOTIFY_DONE;
3401 }
3402 }
3403
Pavel Emelyanov0883bec2008-05-17 21:10:10 -07003404 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
Jay Vosburghf35188f2010-07-21 12:14:47 +00003405 if (!bond->vlgrp)
3406 continue;
Dan Aloni5c15bde2007-03-02 20:44:51 -08003407 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003408 if (vlan_dev == event_dev) {
3409 switch (event) {
3410 case NETDEV_UP:
3411 vlan->vlan_ip = ifa->ifa_local;
3412 return NOTIFY_OK;
3413 case NETDEV_DOWN:
3414 vlan->vlan_ip =
3415 bond_glean_dev_ip(vlan_dev);
3416 return NOTIFY_OK;
3417 default:
3418 return NOTIFY_DONE;
3419 }
3420 }
3421 }
3422 }
3423 return NOTIFY_DONE;
3424}
3425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426static struct notifier_block bond_netdev_notifier = {
3427 .notifier_call = bond_netdev_event,
3428};
3429
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04003430static struct notifier_block bond_inetaddr_notifier = {
3431 .notifier_call = bond_inetaddr_event,
3432};
3433
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003434/*---------------------------- Hashing Policies -----------------------------*/
3435
3436/*
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003437 * Hash for the output device based upon layer 2 and layer 3 data. If
3438 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3439 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003440static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003441{
3442 struct ethhdr *data = (struct ethhdr *)skb->data;
3443 struct iphdr *iph = ip_hdr(skb);
3444
Brian Haleyf14c4e42008-09-02 10:08:08 -04003445 if (skb->protocol == htons(ETH_P_IP)) {
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003446 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
Jasper Spaansd3da6832009-10-23 04:08:46 +00003447 (data->h_dest[5] ^ data->h_source[5])) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003448 }
3449
Jasper Spaansd3da6832009-10-23 04:08:46 +00003450 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08003451}
3452
3453/*
Michael Opdenacker59c51592007-05-09 08:57:56 +02003454 * Hash for the output device based upon layer 3 and layer 4 data. If
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003455 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3456 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3457 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003458static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003459{
3460 struct ethhdr *data = (struct ethhdr *)skb->data;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07003461 struct iphdr *iph = ip_hdr(skb);
Al Virod3bb52b2007-08-22 20:06:58 -04003462 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003463 int layer4_xor = 0;
3464
Brian Haleyf14c4e42008-09-02 10:08:08 -04003465 if (skb->protocol == htons(ETH_P_IP)) {
3466 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003467 (iph->protocol == IPPROTO_TCP ||
3468 iph->protocol == IPPROTO_UDP)) {
Al Virod3bb52b2007-08-22 20:06:58 -04003469 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003470 }
3471 return (layer4_xor ^
3472 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3473
3474 }
3475
Jasper Spaansd3da6832009-10-23 04:08:46 +00003476 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003477}
3478
3479/*
3480 * Hash for the output device based upon layer 2 data
3481 */
Jasper Spaansa361c832009-10-23 04:09:24 +00003482static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003483{
3484 struct ethhdr *data = (struct ethhdr *)skb->data;
3485
Jasper Spaansd3da6832009-10-23 04:08:46 +00003486 return (data->h_dest[5] ^ data->h_source[5]) % count;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04003487}
3488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489/*-------------------------- Device entry points ----------------------------*/
3490
3491static int bond_open(struct net_device *bond_dev)
3492{
Wang Chen454d7c92008-11-12 23:37:49 -08003493 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
3495 bond->kill_timers = 0;
3496
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003497 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3498
Holger Eitzenberger58402052008-12-09 23:07:13 -08003499 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 /* bond_alb_initialize must be called before the timer
3501 * is started.
3502 */
3503 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3504 /* something went wrong - fail the open operation */
stephen hemmingerb4739462010-01-25 23:34:15 +00003505 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 }
3507
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003508 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3509 queue_delayed_work(bond->wq, &bond->alb_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 }
3511
3512 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003513 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3514 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
3516
3517 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003518 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3519 INIT_DELAYED_WORK(&bond->arp_work,
3520 bond_activebackup_arp_mon);
3521 else
3522 INIT_DELAYED_WORK(&bond->arp_work,
3523 bond_loadbalance_arp_mon);
3524
3525 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Jay Vosburghf5b2b962006-09-22 21:54:53 -07003526 if (bond->params.arp_validate)
Jiri Pirko3aba8912011-04-19 03:48:16 +00003527 bond->recv_probe = bond_arp_rcv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 }
3529
3530 if (bond->params.mode == BOND_MODE_8023AD) {
Adrian Bunka40745f2007-10-24 18:27:43 +02003531 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003532 queue_delayed_work(bond->wq, &bond->ad_work, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 /* register to receive LACPDUs */
Jiri Pirko3aba8912011-04-19 03:48:16 +00003534 bond->recv_probe = bond_3ad_lacpdu_recv;
Jay Vosburghfd989c82008-11-04 17:51:16 -08003535 bond_3ad_initiate_agg_selection(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 }
3537
3538 return 0;
3539}
3540
3541static int bond_close(struct net_device *bond_dev)
3542{
Wang Chen454d7c92008-11-12 23:37:49 -08003543 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 write_lock_bh(&bond->lock);
3546
Ben Hutchingsad246c92011-04-26 15:25:52 +00003547 bond->send_peer_notif = 0;
3548
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 /* signal timers not to re-arm */
3550 bond->kill_timers = 1;
3551
3552 write_unlock_bh(&bond->lock);
3553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 if (bond->params.miimon) { /* link check interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003555 cancel_delayed_work(&bond->mii_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 }
3557
3558 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003559 cancel_delayed_work(&bond->arp_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 }
3561
3562 switch (bond->params.mode) {
3563 case BOND_MODE_8023AD:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003564 cancel_delayed_work(&bond->ad_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 break;
3566 case BOND_MODE_TLB:
3567 case BOND_MODE_ALB:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07003568 cancel_delayed_work(&bond->alb_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 break;
3570 default:
3571 break;
3572 }
3573
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00003574 if (delayed_work_pending(&bond->mcast_work))
3575 cancel_delayed_work(&bond->mcast_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Holger Eitzenberger58402052008-12-09 23:07:13 -08003577 if (bond_is_lb(bond)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 /* Must be called only after all
3579 * slaves have been released
3580 */
3581 bond_alb_deinitialize(bond);
3582 }
Jiri Pirko3aba8912011-04-19 03:48:16 +00003583 bond->recv_probe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
3585 return 0;
3586}
3587
Eric Dumazet28172732010-07-07 14:58:56 -07003588static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3589 struct rtnl_link_stats64 *stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590{
Wang Chen454d7c92008-11-12 23:37:49 -08003591 struct bonding *bond = netdev_priv(bond_dev);
Eric Dumazet28172732010-07-07 14:58:56 -07003592 struct rtnl_link_stats64 temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 struct slave *slave;
3594 int i;
3595
Eric Dumazet28172732010-07-07 14:58:56 -07003596 memset(stats, 0, sizeof(*stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597
3598 read_lock_bh(&bond->lock);
3599
3600 bond_for_each_slave(bond, slave, i) {
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00003601 const struct rtnl_link_stats64 *sstats =
Eric Dumazet28172732010-07-07 14:58:56 -07003602 dev_get_stats(slave->dev, &temp);
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08003603
Eric Dumazet28172732010-07-07 14:58:56 -07003604 stats->rx_packets += sstats->rx_packets;
3605 stats->rx_bytes += sstats->rx_bytes;
3606 stats->rx_errors += sstats->rx_errors;
3607 stats->rx_dropped += sstats->rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Eric Dumazet28172732010-07-07 14:58:56 -07003609 stats->tx_packets += sstats->tx_packets;
3610 stats->tx_bytes += sstats->tx_bytes;
3611 stats->tx_errors += sstats->tx_errors;
3612 stats->tx_dropped += sstats->tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Eric Dumazet28172732010-07-07 14:58:56 -07003614 stats->multicast += sstats->multicast;
3615 stats->collisions += sstats->collisions;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Eric Dumazet28172732010-07-07 14:58:56 -07003617 stats->rx_length_errors += sstats->rx_length_errors;
3618 stats->rx_over_errors += sstats->rx_over_errors;
3619 stats->rx_crc_errors += sstats->rx_crc_errors;
3620 stats->rx_frame_errors += sstats->rx_frame_errors;
3621 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3622 stats->rx_missed_errors += sstats->rx_missed_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Eric Dumazet28172732010-07-07 14:58:56 -07003624 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3625 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3626 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3627 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3628 stats->tx_window_errors += sstats->tx_window_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 }
3630
3631 read_unlock_bh(&bond->lock);
3632
3633 return stats;
3634}
3635
3636static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3637{
3638 struct net_device *slave_dev = NULL;
3639 struct ifbond k_binfo;
3640 struct ifbond __user *u_binfo = NULL;
3641 struct ifslave k_sinfo;
3642 struct ifslave __user *u_sinfo = NULL;
3643 struct mii_ioctl_data *mii = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 int res = 0;
3645
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003646 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
3648 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 case SIOCGMIIPHY:
3650 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003651 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 mii->phy_id = 0;
3655 /* Fall Through */
3656 case SIOCGMIIREG:
3657 /*
3658 * We do this again just in case we were called by SIOCGMIIREG
3659 * instead of SIOCGMIIPHY.
3660 */
3661 mii = if_mii(ifr);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003662 if (!mii)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 return -EINVAL;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
3666 if (mii->reg_num == 1) {
Wang Chen454d7c92008-11-12 23:37:49 -08003667 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 mii->val_out = 0;
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003669 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 read_lock(&bond->curr_slave_lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003671 if (netif_carrier_ok(bond->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 mii->val_out = BMSR_LSTATUS;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003673
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 read_unlock(&bond->curr_slave_lock);
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07003675 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 }
3677
3678 return 0;
3679 case BOND_INFO_QUERY_OLD:
3680 case SIOCBONDINFOQUERY:
3681 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3682
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003683 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
3686 res = bond_info_query(bond_dev, &k_binfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003687 if (res == 0 &&
3688 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3689 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691 return res;
3692 case BOND_SLAVE_INFO_QUERY_OLD:
3693 case SIOCBONDSLAVEINFOQUERY:
3694 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3695
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003696 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
3699 res = bond_slave_info_query(bond_dev, &k_sinfo);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003700 if (res == 0 &&
3701 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3702 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
3704 return res;
3705 default:
3706 /* Go on */
3707 break;
3708 }
3709
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003710 if (!capable(CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00003713 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003715 pr_debug("slave_dev=%p:\n", slave_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003717 if (!slave_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 res = -ENODEV;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003719 else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003720 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 switch (cmd) {
3722 case BOND_ENSLAVE_OLD:
3723 case SIOCBONDENSLAVE:
3724 res = bond_enslave(bond_dev, slave_dev);
3725 break;
3726 case BOND_RELEASE_OLD:
3727 case SIOCBONDRELEASE:
3728 res = bond_release(bond_dev, slave_dev);
3729 break;
3730 case BOND_SETHWADDR_OLD:
3731 case SIOCBONDSETHWADDR:
3732 res = bond_sethwaddr(bond_dev, slave_dev);
3733 break;
3734 case BOND_CHANGE_ACTIVE_OLD:
3735 case SIOCBONDCHANGEACTIVE:
3736 res = bond_ioctl_change_active(bond_dev, slave_dev);
3737 break;
3738 default:
3739 res = -EOPNOTSUPP;
3740 }
3741
3742 dev_put(slave_dev);
3743 }
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 return res;
3746}
3747
Jiri Pirko22bedad32010-04-01 21:22:57 +00003748static bool bond_addr_in_mc_list(unsigned char *addr,
3749 struct netdev_hw_addr_list *list,
3750 int addrlen)
3751{
3752 struct netdev_hw_addr *ha;
3753
3754 netdev_hw_addr_list_for_each(ha, list)
3755 if (!memcmp(ha->addr, addr, addrlen))
3756 return true;
3757
3758 return false;
3759}
3760
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761static void bond_set_multicast_list(struct net_device *bond_dev)
3762{
Wang Chen454d7c92008-11-12 23:37:49 -08003763 struct bonding *bond = netdev_priv(bond_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00003764 struct netdev_hw_addr *ha;
3765 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 /*
3768 * Do promisc before checking multicast_mode
3769 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003770 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003771 /*
3772 * FIXME: Need to handle the error when one of the multi-slaves
3773 * encounters error.
3774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 bond_set_promiscuity(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003777
3778 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 bond_set_promiscuity(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003780
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
3782 /* set allmulti flag to slaves */
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003783 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
Wang Chen7e1a1ac2008-07-14 20:51:36 -07003784 /*
3785 * FIXME: Need to handle the error when one of the multi-slaves
3786 * encounters error.
3787 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 bond_set_allmulti(bond, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003790
3791 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 bond_set_allmulti(bond, -1);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08003795 read_lock(&bond->lock);
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 bond->flags = bond_dev->flags;
3798
3799 /* looking for addresses to add to slaves' mc list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003800 netdev_for_each_mc_addr(ha, bond_dev) {
3801 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
3802 bond_dev->addr_len);
3803 if (!found)
3804 bond_mc_add(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 }
3806
3807 /* looking for addresses to delete from slaves' list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003808 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
3809 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
3810 bond_dev->addr_len);
3811 if (!found)
3812 bond_mc_del(bond, ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 }
3814
3815 /* save master's multicast list */
Jiri Pirko22bedad32010-04-01 21:22:57 +00003816 __hw_addr_flush(&bond->mc_list);
3817 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
3818 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Jay Vosburgh80ee5ad2008-01-29 18:07:44 -08003820 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821}
3822
Stephen Hemminger00829822008-11-20 20:14:53 -08003823static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
3824{
3825 struct bonding *bond = netdev_priv(dev);
3826 struct slave *slave = bond->first_slave;
3827
3828 if (slave) {
3829 const struct net_device_ops *slave_ops
3830 = slave->dev->netdev_ops;
3831 if (slave_ops->ndo_neigh_setup)
Patrick McHardy72e22402009-03-05 01:57:44 -08003832 return slave_ops->ndo_neigh_setup(slave->dev, parms);
Stephen Hemminger00829822008-11-20 20:14:53 -08003833 }
3834 return 0;
3835}
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837/*
3838 * Change the MTU of all of a master's slaves to match the master
3839 */
3840static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
3841{
Wang Chen454d7c92008-11-12 23:37:49 -08003842 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 struct slave *slave, *stop_at;
3844 int res = 0;
3845 int i;
3846
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003847 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003848 (bond_dev ? bond_dev->name : "None"), new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
3850 /* Can't hold bond->lock with bh disabled here since
3851 * some base drivers panic. On the other hand we can't
3852 * hold bond->lock without bh disabled because we'll
3853 * deadlock. The only solution is to rely on the fact
3854 * that we're under rtnl_lock here, and the slaves
3855 * list won't change. This doesn't solve the problem
3856 * of setting the slave's MTU while it is
3857 * transmitting, but the assumption is that the base
3858 * driver can handle that.
3859 *
3860 * TODO: figure out a way to safely iterate the slaves
3861 * list, but without holding a lock around the actual
3862 * call to the base driver.
3863 */
3864
3865 bond_for_each_slave(bond, slave, i) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003866 pr_debug("s %p s->p %p c_m %p\n",
3867 slave,
3868 slave->prev,
3869 slave->dev->netdev_ops->ndo_change_mtu);
Mitch Williamse944ef72005-11-09 10:36:50 -08003870
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 res = dev_set_mtu(slave->dev, new_mtu);
3872
3873 if (res) {
3874 /* If we failed to set the slave's mtu to the new value
3875 * we must abort the operation even in ACTIVE_BACKUP
3876 * mode, because if we allow the backup slaves to have
3877 * different mtu values than the active slave we'll
3878 * need to change their mtu when doing a failover. That
3879 * means changing their mtu from timer context, which
3880 * is probably not a good idea.
3881 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003882 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 goto unwind;
3884 }
3885 }
3886
3887 bond_dev->mtu = new_mtu;
3888
3889 return 0;
3890
3891unwind:
3892 /* unwind from head to the slave that failed */
3893 stop_at = slave;
3894 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
3895 int tmp_res;
3896
3897 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
3898 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003899 pr_debug("unwind err %d dev %s\n",
3900 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 }
3902 }
3903
3904 return res;
3905}
3906
3907/*
3908 * Change HW address
3909 *
3910 * Note that many devices must be down to change the HW address, and
3911 * downing the master releases all slaves. We can make bonds full of
3912 * bonding devices to test this, however.
3913 */
3914static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
3915{
Wang Chen454d7c92008-11-12 23:37:49 -08003916 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 struct sockaddr *sa = addr, tmp_sa;
3918 struct slave *slave, *stop_at;
3919 int res = 0;
3920 int i;
3921
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08003922 if (bond->params.mode == BOND_MODE_ALB)
3923 return bond_alb_set_mac_address(bond_dev, addr);
3924
3925
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003926 pr_debug("bond=%p, name=%s\n",
3927 bond, bond_dev ? bond_dev->name : "None");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
Jay Vosburghdd957c52007-10-09 19:57:24 -07003929 /*
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003930 * If fail_over_mac is set to active, do nothing and return
3931 * success. Returning an error causes ifenslave to fail.
Jay Vosburghdd957c52007-10-09 19:57:24 -07003932 */
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07003933 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
Jay Vosburghdd957c52007-10-09 19:57:24 -07003934 return 0;
Moni Shoua2ab82852007-10-09 19:43:39 -07003935
Stephen Hemminger3d632c32009-06-12 19:02:48 +00003936 if (!is_valid_ether_addr(sa->sa_data))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
3939 /* Can't hold bond->lock with bh disabled here since
3940 * some base drivers panic. On the other hand we can't
3941 * hold bond->lock without bh disabled because we'll
3942 * deadlock. The only solution is to rely on the fact
3943 * that we're under rtnl_lock here, and the slaves
3944 * list won't change. This doesn't solve the problem
3945 * of setting the slave's hw address while it is
3946 * transmitting, but the assumption is that the base
3947 * driver can handle that.
3948 *
3949 * TODO: figure out a way to safely iterate the slaves
3950 * list, but without holding a lock around the actual
3951 * call to the base driver.
3952 */
3953
3954 bond_for_each_slave(bond, slave, i) {
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08003955 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003956 pr_debug("slave %p %s\n", slave, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08003958 if (slave_ops->ndo_set_mac_address == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 res = -EOPNOTSUPP;
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003960 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 goto unwind;
3962 }
3963
3964 res = dev_set_mac_address(slave->dev, addr);
3965 if (res) {
3966 /* TODO: consider downing the slave
3967 * and retry ?
3968 * User should expect communications
3969 * breakage anyway until ARP finish
3970 * updating, so...
3971 */
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -08003972 pr_debug("err %d %s\n", res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 goto unwind;
3974 }
3975 }
3976
3977 /* success */
3978 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
3979 return 0;
3980
3981unwind:
3982 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
3983 tmp_sa.sa_family = bond_dev->type;
3984
3985 /* unwind from head to the slave that failed */
3986 stop_at = slave;
3987 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
3988 int tmp_res;
3989
3990 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
3991 if (tmp_res) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08003992 pr_debug("unwind err %d dev %s\n",
3993 tmp_res, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 }
3995 }
3996
3997 return res;
3998}
3999
4000static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4001{
Wang Chen454d7c92008-11-12 23:37:49 -08004002 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 struct slave *slave, *start_at;
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004004 int i, slave_no, res = 1;
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004005 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004007 /*
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004008 * Start with the curr_active_slave that joined the bond as the
4009 * default for sending IGMP traffic. For failover purposes one
4010 * needs to maintain some consistency for the interface that will
4011 * send the join/membership reports. The curr_active_slave found
4012 * will send all of this type of traffic.
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004013 */
Eric Dumazet00ae7022010-03-30 23:08:37 +00004014 if ((iph->protocol == IPPROTO_IGMP) &&
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004015 (skb->protocol == htons(ETH_P_IP))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016
Andy Gospodareka2fd9402010-03-25 14:49:05 +00004017 read_lock(&bond->curr_slave_lock);
4018 slave = bond->curr_active_slave;
4019 read_unlock(&bond->curr_slave_lock);
4020
4021 if (!slave)
4022 goto out;
4023 } else {
4024 /*
4025 * Concurrent TX may collide on rr_tx_counter; we accept
4026 * that as being rare enough not to justify using an
4027 * atomic op here.
4028 */
4029 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4030
4031 bond_for_each_slave(bond, slave, i) {
4032 slave_no--;
4033 if (slave_no < 0)
4034 break;
4035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 }
4037
Jay Vosburghcf5f9042007-10-17 17:37:47 -07004038 start_at = slave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 bond_for_each_slave_from(bond, slave, i, start_at) {
4040 if (IS_UP(slave->dev) &&
4041 (slave->link == BOND_LINK_UP) &&
Jiri Pirkoe30bc062011-03-12 03:14:37 +00004042 bond_is_active_slave(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 res = bond_dev_queue_xmit(bond, skb, slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 break;
4045 }
4046 }
4047
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048out:
4049 if (res) {
4050 /* no suitable interface, frame not sent */
4051 dev_kfree_skb(skb);
4052 }
Michał Mirosław0693e882011-05-07 01:48:02 +00004053
Patrick McHardyec634fe2009-07-05 19:23:38 -07004054 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055}
4056
John W. Linville075897c2005-09-28 17:50:53 -04004057
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058/*
4059 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4060 * the bond has a usable interface.
4061 */
4062static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4063{
Wang Chen454d7c92008-11-12 23:37:49 -08004064 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 int res = 1;
4066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 read_lock(&bond->curr_slave_lock);
4068
Michał Mirosław0693e882011-05-07 01:48:02 +00004069 if (bond->curr_active_slave)
4070 res = bond_dev_queue_xmit(bond, skb,
4071 bond->curr_active_slave->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004073 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 /* no suitable interface, frame not sent */
4075 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004076
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 read_unlock(&bond->curr_slave_lock);
Michał Mirosław0693e882011-05-07 01:48:02 +00004078
Patrick McHardyec634fe2009-07-05 19:23:38 -07004079 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080}
4081
4082/*
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004083 * In bond_xmit_xor() , we determine the output device by using a pre-
4084 * determined xmit_hash_policy(), If the selected device is not enabled,
4085 * find the next active slave.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 */
4087static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4088{
Wang Chen454d7c92008-11-12 23:37:49 -08004089 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 struct slave *slave, *start_at;
4091 int slave_no;
4092 int i;
4093 int res = 1;
4094
Jasper Spaansa361c832009-10-23 04:09:24 +00004095 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
4097 bond_for_each_slave(bond, slave, i) {
4098 slave_no--;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004099 if (slave_no < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 }
4102
4103 start_at = slave;
4104
4105 bond_for_each_slave_from(bond, slave, i, start_at) {
4106 if (IS_UP(slave->dev) &&
4107 (slave->link == BOND_LINK_UP) &&
Jiri Pirkoe30bc062011-03-12 03:14:37 +00004108 bond_is_active_slave(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4110 break;
4111 }
4112 }
4113
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 if (res) {
4115 /* no suitable interface, frame not sent */
4116 dev_kfree_skb(skb);
4117 }
Michał Mirosław0693e882011-05-07 01:48:02 +00004118
Patrick McHardyec634fe2009-07-05 19:23:38 -07004119 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120}
4121
4122/*
4123 * in broadcast mode, we send everything to all usable interfaces.
4124 */
4125static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4126{
Wang Chen454d7c92008-11-12 23:37:49 -08004127 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 struct slave *slave, *start_at;
4129 struct net_device *tx_dev = NULL;
4130 int i;
4131 int res = 1;
4132
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 read_lock(&bond->curr_slave_lock);
4134 start_at = bond->curr_active_slave;
4135 read_unlock(&bond->curr_slave_lock);
4136
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004137 if (!start_at)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 bond_for_each_slave_from(bond, slave, i, start_at) {
4141 if (IS_UP(slave->dev) &&
4142 (slave->link == BOND_LINK_UP) &&
Jiri Pirkoe30bc062011-03-12 03:14:37 +00004143 bond_is_active_slave(slave)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 if (tx_dev) {
4145 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4146 if (!skb2) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004147 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08004148 bond_dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 continue;
4150 }
4151
4152 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4153 if (res) {
4154 dev_kfree_skb(skb2);
4155 continue;
4156 }
4157 }
4158 tx_dev = slave->dev;
4159 }
4160 }
4161
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004162 if (tx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 res = bond_dev_queue_xmit(bond, skb, tx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
4165out:
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004166 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 /* no suitable interface, frame not sent */
4168 dev_kfree_skb(skb);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004169
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 /* frame sent to all suitable interfaces */
Patrick McHardyec634fe2009-07-05 19:23:38 -07004171 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172}
4173
4174/*------------------------- Device initialization ---------------------------*/
4175
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004176static void bond_set_xmit_hash_policy(struct bonding *bond)
4177{
4178 switch (bond->params.xmit_policy) {
4179 case BOND_XMIT_POLICY_LAYER23:
4180 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4181 break;
4182 case BOND_XMIT_POLICY_LAYER34:
4183 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4184 break;
4185 case BOND_XMIT_POLICY_LAYER2:
4186 default:
4187 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4188 break;
4189 }
4190}
4191
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004192/*
4193 * Lookup the slave that corresponds to a qid
4194 */
4195static inline int bond_slave_override(struct bonding *bond,
4196 struct sk_buff *skb)
4197{
4198 int i, res = 1;
4199 struct slave *slave = NULL;
4200 struct slave *check_slave;
4201
Michał Mirosław0693e882011-05-07 01:48:02 +00004202 if (!skb->queue_mapping)
4203 return 1;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004204
4205 /* Find out if any slaves have the same mapping as this skb. */
4206 bond_for_each_slave(bond, check_slave, i) {
4207 if (check_slave->queue_id == skb->queue_mapping) {
4208 slave = check_slave;
4209 break;
4210 }
4211 }
4212
4213 /* If the slave isn't UP, use default transmit policy. */
4214 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4215 (slave->link == BOND_LINK_UP)) {
4216 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4217 }
4218
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004219 return res;
4220}
4221
4222static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4223{
4224 /*
4225 * This helper function exists to help dev_pick_tx get the correct
Phil Oesterfd0e4352011-03-14 06:22:04 +00004226 * destination queue. Using a helper function skips a call to
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004227 * skb_tx_hash and will put the skbs in the queue we expect on their
4228 * way down to the bonding driver.
4229 */
Phil Oesterfd0e4352011-03-14 06:22:04 +00004230 u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
4231
4232 if (unlikely(txq >= dev->real_num_tx_queues)) {
David Decotignyd30ee672011-04-13 15:22:29 +00004233 do {
Phil Oesterfd0e4352011-03-14 06:22:04 +00004234 txq -= dev->real_num_tx_queues;
David Decotignyd30ee672011-04-13 15:22:29 +00004235 } while (txq >= dev->real_num_tx_queues);
Phil Oesterfd0e4352011-03-14 06:22:04 +00004236 }
4237 return txq;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004238}
4239
Michał Mirosław0693e882011-05-07 01:48:02 +00004240static netdev_tx_t __bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
Stephen Hemminger00829822008-11-20 20:14:53 -08004241{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004242 struct bonding *bond = netdev_priv(dev);
4243
4244 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4245 if (!bond_slave_override(bond, skb))
4246 return NETDEV_TX_OK;
4247 }
Stephen Hemminger00829822008-11-20 20:14:53 -08004248
4249 switch (bond->params.mode) {
4250 case BOND_MODE_ROUNDROBIN:
4251 return bond_xmit_roundrobin(skb, dev);
4252 case BOND_MODE_ACTIVEBACKUP:
4253 return bond_xmit_activebackup(skb, dev);
4254 case BOND_MODE_XOR:
4255 return bond_xmit_xor(skb, dev);
4256 case BOND_MODE_BROADCAST:
4257 return bond_xmit_broadcast(skb, dev);
4258 case BOND_MODE_8023AD:
4259 return bond_3ad_xmit_xor(skb, dev);
4260 case BOND_MODE_ALB:
4261 case BOND_MODE_TLB:
4262 return bond_alb_xmit(skb, dev);
4263 default:
4264 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004265 pr_err("%s: Error: Unknown bonding mode %d\n",
4266 dev->name, bond->params.mode);
Stephen Hemminger00829822008-11-20 20:14:53 -08004267 WARN_ON_ONCE(1);
4268 dev_kfree_skb(skb);
4269 return NETDEV_TX_OK;
4270 }
4271}
4272
Michał Mirosław0693e882011-05-07 01:48:02 +00004273static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4274{
4275 struct bonding *bond = netdev_priv(dev);
4276 netdev_tx_t ret = NETDEV_TX_OK;
4277
4278 /*
4279 * If we risk deadlock from transmitting this in the
4280 * netpoll path, tell netpoll to queue the frame for later tx
4281 */
4282 if (is_netpoll_tx_blocked(dev))
4283 return NETDEV_TX_BUSY;
4284
4285 read_lock(&bond->lock);
4286
4287 if (bond->slave_cnt)
4288 ret = __bond_start_xmit(skb, dev);
4289 else
4290 dev_kfree_skb(skb);
4291
4292 read_unlock(&bond->lock);
4293
4294 return ret;
4295}
Stephen Hemminger00829822008-11-20 20:14:53 -08004296
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297/*
4298 * set bond mode specific net device operations
4299 */
Mitch Williamsa77b5322005-11-09 10:35:51 -08004300void bond_set_mode_ops(struct bonding *bond, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301{
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004302 struct net_device *bond_dev = bond->dev;
4303
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 switch (mode) {
4305 case BOND_MODE_ROUNDROBIN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 break;
4307 case BOND_MODE_ACTIVEBACKUP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 break;
4309 case BOND_MODE_XOR:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004310 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 break;
4312 case BOND_MODE_BROADCAST:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 break;
4314 case BOND_MODE_8023AD:
Jay Vosburgh6f6652b2007-12-06 23:40:34 -08004315 bond_set_xmit_hash_policy(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 case BOND_MODE_ALB:
Jay Vosburgh8f903c72006-02-21 16:36:44 -08004318 /* FALLTHRU */
4319 case BOND_MODE_TLB:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 break;
4321 default:
4322 /* Should never happen, mode already checked */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004323 pr_err("%s: Error: Unknown bonding mode %d\n",
4324 bond_dev->name, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 break;
4326 }
4327}
4328
Jay Vosburgh217df672005-09-26 16:11:50 -07004329static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4330 struct ethtool_drvinfo *drvinfo)
4331{
4332 strncpy(drvinfo->driver, DRV_NAME, 32);
4333 strncpy(drvinfo->version, DRV_VERSION, 32);
4334 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4335}
4336
Jeff Garzik7282d492006-09-13 14:30:00 -04004337static const struct ethtool_ops bond_ethtool_ops = {
Jay Vosburgh217df672005-09-26 16:11:50 -07004338 .get_drvinfo = bond_ethtool_get_drvinfo,
Stephen Hemmingerfa53eba2008-09-13 21:17:09 -04004339 .get_link = ethtool_op_get_link,
4340 .get_tx_csum = ethtool_op_get_tx_csum,
4341 .get_sg = ethtool_op_get_sg,
4342 .get_tso = ethtool_op_get_tso,
4343 .get_ufo = ethtool_op_get_ufo,
4344 .get_flags = ethtool_op_get_flags,
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004345};
4346
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004347static const struct net_device_ops bond_netdev_ops = {
Stephen Hemminger181470f2009-06-12 19:02:52 +00004348 .ndo_init = bond_init,
Stephen Hemminger9e716262009-06-12 19:02:47 +00004349 .ndo_uninit = bond_uninit,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004350 .ndo_open = bond_open,
4351 .ndo_stop = bond_close,
Stephen Hemminger00829822008-11-20 20:14:53 -08004352 .ndo_start_xmit = bond_start_xmit,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004353 .ndo_select_queue = bond_select_queue,
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +00004354 .ndo_get_stats64 = bond_get_stats,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004355 .ndo_do_ioctl = bond_do_ioctl,
4356 .ndo_set_multicast_list = bond_set_multicast_list,
4357 .ndo_change_mtu = bond_change_mtu,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004358 .ndo_set_mac_address = bond_set_mac_address,
Stephen Hemminger00829822008-11-20 20:14:53 -08004359 .ndo_neigh_setup = bond_neigh_setup,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004360 .ndo_vlan_rx_register = bond_vlan_rx_register,
4361 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4362 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
WANG Congf6dc31a2010-05-06 00:48:51 -07004363#ifdef CONFIG_NET_POLL_CONTROLLER
Amerigo Wang8a8efa22011-02-17 23:43:32 +00004364 .ndo_netpoll_setup = bond_netpoll_setup,
WANG Congf6dc31a2010-05-06 00:48:51 -07004365 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4366 .ndo_poll_controller = bond_poll_controller,
4367#endif
Jiri Pirko9232ecc2011-02-13 09:33:01 +00004368 .ndo_add_slave = bond_enslave,
4369 .ndo_del_slave = bond_release,
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004370};
4371
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004372static void bond_destructor(struct net_device *bond_dev)
4373{
4374 struct bonding *bond = netdev_priv(bond_dev);
4375 if (bond->wq)
4376 destroy_workqueue(bond->wq);
4377 free_netdev(bond_dev);
4378}
4379
Stephen Hemminger181470f2009-06-12 19:02:52 +00004380static void bond_setup(struct net_device *bond_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381{
Wang Chen454d7c92008-11-12 23:37:49 -08004382 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 /* initialize rwlocks */
4385 rwlock_init(&bond->lock);
4386 rwlock_init(&bond->curr_slave_lock);
4387
Stephen Hemmingerd2991f72009-06-12 19:02:44 +00004388 bond->params = bonding_defaults;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390 /* Initialize pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 bond->dev = bond_dev;
4392 INIT_LIST_HEAD(&bond->vlan_list);
4393
4394 /* Initialize the device entry points */
Stephen Hemminger181470f2009-06-12 19:02:52 +00004395 ether_setup(bond_dev);
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08004396 bond_dev->netdev_ops = &bond_netdev_ops;
Arthur Kepner8531c5f2005-08-23 01:34:53 -04004397 bond_dev->ethtool_ops = &bond_ethtool_ops;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004398 bond_set_mode_ops(bond, bond->params.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004400 bond_dev->destructor = bond_destructor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
4402 /* Initialize the device options */
4403 bond_dev->tx_queue_len = 0;
4404 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
Jay Vosburgh0b680e72006-09-22 21:54:10 -07004405 bond_dev->priv_flags |= IFF_BONDING;
Stephen Hemminger181470f2009-06-12 19:02:52 +00004406 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4407
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 /* At first, we block adding VLANs. That's the only way to
4409 * prevent problems that occur when adding VLANs over an
4410 * empty bond. The block will be removed once non-challenged
4411 * slaves are enslaved.
4412 */
4413 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4414
Herbert Xu932ff272006-06-09 12:20:56 -07004415 /* don't acquire bond device's netif_tx_lock when
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 * transmitting */
4417 bond_dev->features |= NETIF_F_LLTX;
4418
4419 /* By default, we declare the bond to be fully
4420 * VLAN hardware accelerated capable. Special
4421 * care is taken in the various xmit functions
4422 * when there are slaves that are not hw accel
4423 * capable
4424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4426 NETIF_F_HW_VLAN_RX |
4427 NETIF_F_HW_VLAN_FILTER);
4428
Eric Dumazete6599c22010-09-17 09:25:07 +00004429 /* By default, we enable GRO on bonding devices.
4430 * Actual support requires lowlevel drivers are GRO ready.
4431 */
4432 bond_dev->features |= NETIF_F_GRO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433}
4434
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004435static void bond_work_cancel_all(struct bonding *bond)
4436{
4437 write_lock_bh(&bond->lock);
4438 bond->kill_timers = 1;
4439 write_unlock_bh(&bond->lock);
4440
4441 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4442 cancel_delayed_work(&bond->mii_work);
4443
4444 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4445 cancel_delayed_work(&bond->arp_work);
4446
4447 if (bond->params.mode == BOND_MODE_ALB &&
4448 delayed_work_pending(&bond->alb_work))
4449 cancel_delayed_work(&bond->alb_work);
4450
4451 if (bond->params.mode == BOND_MODE_8023AD &&
4452 delayed_work_pending(&bond->ad_work))
4453 cancel_delayed_work(&bond->ad_work);
Flavio Leitner5a37e8c2010-10-05 14:23:57 +00004454
4455 if (delayed_work_pending(&bond->mcast_work))
4456 cancel_delayed_work(&bond->mcast_work);
Jay Vosburghfdaea7a2007-12-06 23:40:35 -08004457}
4458
Eric W. Biedermanc67dfb22009-10-29 14:18:24 +00004459/*
4460* Destroy a bonding device.
4461* Must be under rtnl_lock when this function is called.
4462*/
4463static void bond_uninit(struct net_device *bond_dev)
Jay Vosburgha434e432008-10-30 17:41:15 -07004464{
Wang Chen454d7c92008-11-12 23:37:49 -08004465 struct bonding *bond = netdev_priv(bond_dev);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004466 struct vlan_entry *vlan, *tmp;
Jay Vosburgha434e432008-10-30 17:41:15 -07004467
WANG Congf6dc31a2010-05-06 00:48:51 -07004468 bond_netpoll_cleanup(bond_dev);
4469
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
Taku Izumif073c7c2010-12-09 15:17:13 +00004479 bond_debug_unregister(bond);
4480
Jiri Pirko22bedad32010-04-01 21:22:57 +00004481 __hw_addr_flush(&bond->mc_list);
Jay Vosburghf35188f2010-07-21 12:14:47 +00004482
4483 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4484 list_del(&vlan->vlan_list);
4485 kfree(vlan);
4486 }
Jay Vosburgha434e432008-10-30 17:41:15 -07004487}
4488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489/*------------------------- Module initialization ---------------------------*/
4490
4491/*
4492 * Convert string input module parms. Accept either the
Jay Vosburghece95f72008-01-17 16:25:01 -08004493 * number of the mode or its string name. A bit complicated because
4494 * some mode names are substrings of other names, and calls from sysfs
4495 * may have whitespace in the name (trailing newlines, for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 */
Holger Eitzenberger325dcf72008-12-09 23:10:17 -08004497int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498{
Hannes Eder54b87322009-02-14 11:15:49 +00004499 int modeint = -1, i, rv;
Jay Vosburgha42e5342008-01-29 18:07:43 -08004500 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
Jay Vosburghece95f72008-01-17 16:25:01 -08004501
Jay Vosburgha42e5342008-01-29 18:07:43 -08004502 for (p = (char *)buf; *p; p++)
4503 if (!(isdigit(*p) || isspace(*p)))
4504 break;
4505
4506 if (*p)
Jay Vosburghece95f72008-01-17 16:25:01 -08004507 rv = sscanf(buf, "%20s", modestr);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004508 else
Hannes Eder54b87322009-02-14 11:15:49 +00004509 rv = sscanf(buf, "%d", &modeint);
Jay Vosburgha42e5342008-01-29 18:07:43 -08004510
4511 if (!rv)
4512 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
4514 for (i = 0; tbl[i].modename; i++) {
Hannes Eder54b87322009-02-14 11:15:49 +00004515 if (modeint == tbl[i].mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 return tbl[i].mode;
Jay Vosburghece95f72008-01-17 16:25:01 -08004517 if (strcmp(modestr, tbl[i].modename) == 0)
4518 return tbl[i].mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 }
4520
4521 return -1;
4522}
4523
4524static int bond_check_params(struct bond_params *params)
4525{
Jiri Pirkoa5499522009-09-25 03:28:09 +00004526 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 /*
4529 * Convert string parameters.
4530 */
4531 if (mode) {
4532 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4533 if (bond_mode == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004534 pr_err("Error: Invalid bonding mode \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 mode == NULL ? "NULL" : mode);
4536 return -EINVAL;
4537 }
4538 }
4539
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004540 if (xmit_hash_policy) {
4541 if ((bond_mode != BOND_MODE_XOR) &&
4542 (bond_mode != BOND_MODE_8023AD)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004543 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004544 bond_mode_name(bond_mode));
4545 } else {
4546 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4547 xmit_hashtype_tbl);
4548 if (xmit_hashtype == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004549 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004550 xmit_hash_policy == NULL ? "NULL" :
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004551 xmit_hash_policy);
4552 return -EINVAL;
4553 }
4554 }
4555 }
4556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 if (lacp_rate) {
4558 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004559 pr_info("lacp_rate param is irrelevant in mode %s\n",
4560 bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 } else {
4562 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4563 if (lacp_fast == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004564 pr_err("Error: Invalid lacp rate \"%s\"\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 lacp_rate == NULL ? "NULL" : lacp_rate);
4566 return -EINVAL;
4567 }
4568 }
4569 }
4570
Jay Vosburghfd989c82008-11-04 17:51:16 -08004571 if (ad_select) {
4572 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4573 if (params->ad_select == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004574 pr_err("Error: Invalid ad_select \"%s\"\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -08004575 ad_select == NULL ? "NULL" : ad_select);
4576 return -EINVAL;
4577 }
4578
4579 if (bond_mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004580 pr_warning("ad_select param only affects 802.3ad mode\n");
Jay Vosburghfd989c82008-11-04 17:51:16 -08004581 }
4582 } else {
4583 params->ad_select = BOND_AD_STABLE;
4584 }
4585
Nicolas de Pesloüanf5841302009-08-28 13:18:34 +00004586 if (max_bonds < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004587 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4588 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 max_bonds = BOND_DEFAULT_MAX_BONDS;
4590 }
4591
4592 if (miimon < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004593 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4594 miimon, INT_MAX, BOND_LINK_MON_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 miimon = BOND_LINK_MON_INTERV;
4596 }
4597
4598 if (updelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004599 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4600 updelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 updelay = 0;
4602 }
4603
4604 if (downdelay < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004605 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4606 downdelay, INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 downdelay = 0;
4608 }
4609
4610 if ((use_carrier != 0) && (use_carrier != 1)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004611 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4612 use_carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613 use_carrier = 1;
4614 }
4615
Ben Hutchingsad246c92011-04-26 15:25:52 +00004616 if (num_peer_notif < 0 || num_peer_notif > 255) {
4617 pr_warning("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
4618 num_peer_notif);
4619 num_peer_notif = 1;
4620 }
4621
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 /* reset values for 802.3ad */
4623 if (bond_mode == BOND_MODE_8023AD) {
4624 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004625 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 +00004626 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 miimon = 100;
4628 }
4629 }
4630
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004631 if (tx_queues < 1 || tx_queues > 255) {
4632 pr_warning("Warning: tx_queues (%d) should be between "
4633 "1 and 255, resetting to %d\n",
4634 tx_queues, BOND_DEFAULT_TX_QUEUES);
4635 tx_queues = BOND_DEFAULT_TX_QUEUES;
4636 }
4637
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004638 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4639 pr_warning("Warning: all_slaves_active module parameter (%d), "
4640 "not of valid value (0/1), so it was set to "
4641 "0\n", all_slaves_active);
4642 all_slaves_active = 0;
4643 }
4644
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004645 if (resend_igmp < 0 || resend_igmp > 255) {
4646 pr_warning("Warning: resend_igmp (%d) should be between "
4647 "0 and 255, resetting to %d\n",
4648 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4649 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4650 }
4651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 /* reset values for TLB/ALB */
4653 if ((bond_mode == BOND_MODE_TLB) ||
4654 (bond_mode == BOND_MODE_ALB)) {
4655 if (!miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004656 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 +00004657 pr_warning("Forcing miimon to 100msec\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 miimon = 100;
4659 }
4660 }
4661
4662 if (bond_mode == BOND_MODE_ALB) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004663 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",
4664 updelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 }
4666
4667 if (!miimon) {
4668 if (updelay || downdelay) {
4669 /* just warn the user the up/down delay will have
4670 * no effect since miimon is zero...
4671 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004672 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",
4673 updelay, downdelay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674 }
4675 } else {
4676 /* don't allow arp monitoring */
4677 if (arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004678 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4679 miimon, arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 arp_interval = 0;
4681 }
4682
4683 if ((updelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004684 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4685 updelay, miimon,
4686 (updelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 }
4688
4689 updelay /= miimon;
4690
4691 if ((downdelay % miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004692 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4693 downdelay, miimon,
4694 (downdelay / miimon) * miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 }
4696
4697 downdelay /= miimon;
4698 }
4699
4700 if (arp_interval < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004701 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4702 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703 arp_interval = BOND_LINK_ARP_INTERV;
4704 }
4705
4706 for (arp_ip_count = 0;
4707 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4708 arp_ip_count++) {
4709 /* not complete check, but should be good enough to
4710 catch mistakes */
4711 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004712 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4713 arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 arp_interval = 0;
4715 } else {
Al Virod3bb52b2007-08-22 20:06:58 -04004716 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 arp_target[arp_ip_count] = ip;
4718 }
4719 }
4720
4721 if (arp_interval && !arp_ip_count) {
4722 /* don't allow arping if no arp_ip_target given... */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004723 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4724 arp_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725 arp_interval = 0;
4726 }
4727
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004728 if (arp_validate) {
4729 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004730 pr_err("arp_validate only supported in active-backup mode\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004731 return -EINVAL;
4732 }
4733 if (!arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004734 pr_err("arp_validate requires arp_interval\n");
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004735 return -EINVAL;
4736 }
4737
4738 arp_validate_value = bond_parse_parm(arp_validate,
4739 arp_validate_tbl);
4740 if (arp_validate_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004741 pr_err("Error: invalid arp_validate \"%s\"\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004742 arp_validate == NULL ? "NULL" : arp_validate);
4743 return -EINVAL;
4744 }
4745 } else
4746 arp_validate_value = 0;
4747
Linus Torvalds1da177e2005-04-16 15:20:36 -07004748 if (miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004749 pr_info("MII link monitoring set to %d ms\n", miimon);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 } else if (arp_interval) {
4751 int i;
4752
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004753 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4754 arp_interval,
4755 arp_validate_tbl[arp_validate_value].modename,
4756 arp_ip_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
4758 for (i = 0; i < arp_ip_count; i++)
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004759 pr_info(" %s", arp_ip_target[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00004761 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
Jay Vosburghb8a97872008-06-13 18:12:04 -07004763 } else if (max_bonds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 /* miimon and arp_interval not set, we need one so things
4765 * work as expected, see bonding.txt for details
4766 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004767 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 -07004768 }
4769
4770 if (primary && !USES_PRIMARY(bond_mode)) {
4771 /* currently, using a primary only makes sense
4772 * in active backup, TLB or ALB modes
4773 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004774 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
4775 primary, bond_mode_name(bond_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 primary = NULL;
4777 }
4778
Jiri Pirkoa5499522009-09-25 03:28:09 +00004779 if (primary && primary_reselect) {
4780 primary_reselect_value = bond_parse_parm(primary_reselect,
4781 pri_reselect_tbl);
4782 if (primary_reselect_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004783 pr_err("Error: Invalid primary_reselect \"%s\"\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00004784 primary_reselect ==
4785 NULL ? "NULL" : primary_reselect);
4786 return -EINVAL;
4787 }
4788 } else {
4789 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4790 }
4791
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004792 if (fail_over_mac) {
4793 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4794 fail_over_mac_tbl);
4795 if (fail_over_mac_value == -1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004796 pr_err("Error: invalid fail_over_mac \"%s\"\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004797 arp_validate == NULL ? "NULL" : arp_validate);
4798 return -EINVAL;
4799 }
4800
4801 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004802 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004803 } else {
4804 fail_over_mac_value = BOND_FOM_NONE;
4805 }
Jay Vosburghdd957c52007-10-09 19:57:24 -07004806
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 /* fill params struct with the proper values */
4808 params->mode = bond_mode;
Jay Vosburgh169a3e62005-06-26 17:54:11 -04004809 params->xmit_policy = xmit_hashtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 params->miimon = miimon;
Ben Hutchingsad246c92011-04-26 15:25:52 +00004811 params->num_peer_notif = num_peer_notif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812 params->arp_interval = arp_interval;
Jay Vosburghf5b2b962006-09-22 21:54:53 -07004813 params->arp_validate = arp_validate_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 params->updelay = updelay;
4815 params->downdelay = downdelay;
4816 params->use_carrier = use_carrier;
4817 params->lacp_fast = lacp_fast;
4818 params->primary[0] = 0;
Jiri Pirkoa5499522009-09-25 03:28:09 +00004819 params->primary_reselect = primary_reselect_value;
Jay Vosburgh3915c1e82008-05-17 21:10:14 -07004820 params->fail_over_mac = fail_over_mac_value;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00004821 params->tx_queues = tx_queues;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00004822 params->all_slaves_active = all_slaves_active;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00004823 params->resend_igmp = resend_igmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824
4825 if (primary) {
4826 strncpy(params->primary, primary, IFNAMSIZ);
4827 params->primary[IFNAMSIZ - 1] = 0;
4828 }
4829
4830 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4831
4832 return 0;
4833}
4834
Peter Zijlstra0daa23032006-11-08 19:51:01 -08004835static struct lock_class_key bonding_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -07004836static struct lock_class_key bonding_netdev_addr_lock_key;
Peter Zijlstra0daa23032006-11-08 19:51:01 -08004837
David S. Millere8a04642008-07-17 00:34:19 -07004838static void bond_set_lockdep_class_one(struct net_device *dev,
4839 struct netdev_queue *txq,
4840 void *_unused)
David S. Millerc773e842008-07-08 23:13:53 -07004841{
4842 lockdep_set_class(&txq->_xmit_lock,
4843 &bonding_netdev_xmit_lock_key);
4844}
4845
4846static void bond_set_lockdep_class(struct net_device *dev)
4847{
David S. Millercf508b12008-07-22 14:16:42 -07004848 lockdep_set_class(&dev->addr_list_lock,
4849 &bonding_netdev_addr_lock_key);
David S. Millere8a04642008-07-17 00:34:19 -07004850 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
David S. Millerc773e842008-07-08 23:13:53 -07004851}
4852
Stephen Hemminger181470f2009-06-12 19:02:52 +00004853/*
4854 * Called from registration process
4855 */
4856static int bond_init(struct net_device *bond_dev)
4857{
4858 struct bonding *bond = netdev_priv(bond_dev);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004859 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004860
4861 pr_debug("Begin bond_init for %s\n", bond_dev->name);
4862
4863 bond->wq = create_singlethread_workqueue(bond_dev->name);
4864 if (!bond->wq)
4865 return -ENOMEM;
4866
4867 bond_set_lockdep_class(bond_dev);
4868
Stephen Hemminger181470f2009-06-12 19:02:52 +00004869 bond_create_proc_entry(bond);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004870 list_add_tail(&bond->bond_list, &bn->dev_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004871
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00004872 bond_prepare_sysfs_group(bond);
Jiri Pirko22bedad32010-04-01 21:22:57 +00004873
Taku Izumif073c7c2010-12-09 15:17:13 +00004874 bond_debug_register(bond);
4875
Jiri Pirko22bedad32010-04-01 21:22:57 +00004876 __hw_addr_init(&bond->mc_list);
Stephen Hemminger181470f2009-06-12 19:02:52 +00004877 return 0;
4878}
4879
Eric W. Biederman88ead972009-10-29 14:18:25 +00004880static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
4881{
4882 if (tb[IFLA_ADDRESS]) {
4883 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
4884 return -EINVAL;
4885 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
4886 return -EADDRNOTAVAIL;
4887 }
4888 return 0;
4889}
4890
4891static struct rtnl_link_ops bond_link_ops __read_mostly = {
4892 .kind = "bond",
Eric W. Biederman66391042009-10-29 23:58:54 +00004893 .priv_size = sizeof(struct bonding),
Eric W. Biederman88ead972009-10-29 14:18:25 +00004894 .setup = bond_setup,
4895 .validate = bond_validate,
4896};
4897
Mitch Williamsdfe60392005-11-09 10:36:04 -08004898/* Create a new bond based on the specified name and bonding parameters.
Jay Vosburghe4b91c42007-01-19 18:15:31 -08004899 * If name is NULL, obtain a suitable "bond%d" name for us.
Mitch Williamsdfe60392005-11-09 10:36:04 -08004900 * Caller must NOT hold rtnl_lock; we need to release it here before we
4901 * set up our sysfs entries.
4902 */
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004903int bond_create(struct net *net, const char *name)
Mitch Williamsdfe60392005-11-09 10:36:04 -08004904{
4905 struct net_device *bond_dev;
4906 int res;
4907
4908 rtnl_lock();
Jay Vosburgh027ea042008-01-17 16:25:02 -08004909
Jiri Pirko1c5cae82011-04-30 01:21:32 +00004910 bond_dev = alloc_netdev_mq(sizeof(struct bonding),
4911 name ? name : "bond%d",
4912 bond_setup, tx_queues);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004913 if (!bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08004914 pr_err("%s: eek! can't alloc netdev!\n", name);
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004915 rtnl_unlock();
4916 return -ENOMEM;
Mitch Williamsdfe60392005-11-09 10:36:04 -08004917 }
4918
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004919 dev_net_set(bond_dev, net);
Eric W. Biederman88ead972009-10-29 14:18:25 +00004920 bond_dev->rtnl_link_ops = &bond_link_ops;
4921
Mitch Williamsdfe60392005-11-09 10:36:04 -08004922 res = register_netdevice(bond_dev);
Peter Zijlstra0daa23032006-11-08 19:51:01 -08004923
Phil Oestere826eaf2011-03-14 06:22:05 +00004924 netif_carrier_off(bond_dev);
4925
Mitch Williamsdfe60392005-11-09 10:36:04 -08004926 rtnl_unlock();
Amerigo Wang9e2e61f2010-03-31 21:30:52 +00004927 if (res < 0)
4928 bond_destructor(bond_dev);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004929 return res;
4930}
4931
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004932static int __net_init bond_net_init(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004933{
Eric W. Biederman15449742009-11-29 15:46:04 +00004934 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004935
4936 bn->net = net;
4937 INIT_LIST_HEAD(&bn->dev_list);
4938
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004939 bond_create_proc_dir(bn);
Eric W. Biederman15449742009-11-29 15:46:04 +00004940
4941 return 0;
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004942}
4943
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004944static void __net_exit bond_net_exit(struct net *net)
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004945{
Eric W. Biederman15449742009-11-29 15:46:04 +00004946 struct bond_net *bn = net_generic(net, bond_net_id);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004947
4948 bond_destroy_proc_dir(bn);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004949}
4950
4951static struct pernet_operations bond_net_ops = {
4952 .init = bond_net_init,
4953 .exit = bond_net_exit,
Eric W. Biederman15449742009-11-29 15:46:04 +00004954 .id = &bond_net_id,
4955 .size = sizeof(struct bond_net),
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004956};
4957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958static int __init bonding_init(void)
4959{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 int i;
4961 int res;
4962
Amerigo Wangbd33acc2011-03-06 21:58:46 +00004963 pr_info("%s", bond_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
Mitch Williamsdfe60392005-11-09 10:36:04 -08004965 res = bond_check_params(&bonding_defaults);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00004966 if (res)
Mitch Williamsdfe60392005-11-09 10:36:04 -08004967 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Eric W. Biederman15449742009-11-29 15:46:04 +00004969 res = register_pernet_subsys(&bond_net_ops);
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004970 if (res)
4971 goto out;
Jay Vosburgh027ea042008-01-17 16:25:02 -08004972
Eric W. Biederman88ead972009-10-29 14:18:25 +00004973 res = rtnl_link_register(&bond_link_ops);
4974 if (res)
Eric W. Biederman66391042009-10-29 23:58:54 +00004975 goto err_link;
Eric W. Biederman88ead972009-10-29 14:18:25 +00004976
Taku Izumif073c7c2010-12-09 15:17:13 +00004977 bond_create_debugfs();
4978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979 for (i = 0; i < max_bonds; i++) {
Eric W. Biedermanec87fd32009-10-29 14:18:26 +00004980 res = bond_create(&init_net, NULL);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004981 if (res)
4982 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 }
4984
Mitch Williamsb76cdba2005-11-09 10:36:41 -08004985 res = bond_create_sysfs();
4986 if (res)
4987 goto err;
4988
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 register_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04004990 register_inetaddr_notifier(&bond_inetaddr_notifier);
Mitch Williamsdfe60392005-11-09 10:36:04 -08004991out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 return res;
Eric W. Biederman88ead972009-10-29 14:18:25 +00004993err:
4994 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman66391042009-10-29 23:58:54 +00004995err_link:
Eric W. Biederman15449742009-11-29 15:46:04 +00004996 unregister_pernet_subsys(&bond_net_ops);
Eric W. Biederman88ead972009-10-29 14:18:25 +00004997 goto out;
Mitch Williamsdfe60392005-11-09 10:36:04 -08004998
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999}
5000
5001static void __exit bonding_exit(void)
5002{
5003 unregister_netdevice_notifier(&bond_netdev_notifier);
Jay Vosburghc3ade5c2005-06-26 17:52:20 -04005004 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005006 bond_destroy_sysfs();
Taku Izumif073c7c2010-12-09 15:17:13 +00005007 bond_destroy_debugfs();
Pavel Emelyanovae68c392008-05-02 17:49:39 -07005008
Eric W. Biederman88ead972009-10-29 14:18:25 +00005009 rtnl_link_unregister(&bond_link_ops);
Eric W. Biederman15449742009-11-29 15:46:04 +00005010 unregister_pernet_subsys(&bond_net_ops);
Neil Hormane843fa52010-10-13 16:01:50 +00005011
5012#ifdef CONFIG_NET_POLL_CONTROLLER
Neil Hormanfb4fa762010-12-06 09:05:50 +00005013 /*
5014 * Make sure we don't have an imbalance on our netpoll blocking
5015 */
5016 WARN_ON(atomic_read(&netpoll_block_tx));
Neil Hormane843fa52010-10-13 16:01:50 +00005017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018}
5019
5020module_init(bonding_init);
5021module_exit(bonding_exit);
5022MODULE_LICENSE("GPL");
5023MODULE_VERSION(DRV_VERSION);
5024MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5025MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
Eric W. Biederman88ead972009-10-29 14:18:25 +00005026MODULE_ALIAS_RTNL_LINK("bond");