bonding: IFF_BONDING is not stripped on enslave failure
[pandora-kernel.git] / drivers / net / bonding / bond_main.c
1 /*
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  *
32  */
33
34 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
35
36 #include <linux/kernel.h>
37 #include <linux/module.h>
38 #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>
44 #include <net/ip.h>
45 #include <linux/ip.h>
46 #include <linux/tcp.h>
47 #include <linux/udp.h>
48 #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>
56 #include <linux/io.h>
57 #include <asm/system.h>
58 #include <asm/dma.h>
59 #include <linux/uaccess.h>
60 #include <linux/errno.h>
61 #include <linux/netdevice.h>
62 #include <linux/inetdevice.h>
63 #include <linux/igmp.h>
64 #include <linux/etherdevice.h>
65 #include <linux/skbuff.h>
66 #include <net/sock.h>
67 #include <linux/rtnetlink.h>
68 #include <linux/smp.h>
69 #include <linux/if_ether.h>
70 #include <net/arp.h>
71 #include <linux/mii.h>
72 #include <linux/ethtool.h>
73 #include <linux/if_vlan.h>
74 #include <linux/if_bonding.h>
75 #include <linux/jiffies.h>
76 #include <linux/preempt.h>
77 #include <net/route.h>
78 #include <net/net_namespace.h>
79 #include <net/netns/generic.h>
80 #include <net/pkt_sched.h>
81 #include "bonding.h"
82 #include "bond_3ad.h"
83 #include "bond_alb.h"
84
85 /*---------------------------- Module parameters ----------------------------*/
86
87 /* monitor all links that often (in milliseconds). <=0 disables monitoring */
88 #define BOND_LINK_MON_INTERV    0
89 #define BOND_LINK_ARP_INTERV    0
90
91 static int max_bonds    = BOND_DEFAULT_MAX_BONDS;
92 static int tx_queues    = BOND_DEFAULT_TX_QUEUES;
93 static int num_peer_notif = 1;
94 static int miimon       = BOND_LINK_MON_INTERV;
95 static int updelay;
96 static int downdelay;
97 static int use_carrier  = 1;
98 static char *mode;
99 static char *primary;
100 static char *primary_reselect;
101 static char *lacp_rate;
102 static int min_links;
103 static char *ad_select;
104 static char *xmit_hash_policy;
105 static int arp_interval = BOND_LINK_ARP_INTERV;
106 static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
107 static char *arp_validate;
108 static char *fail_over_mac;
109 static int all_slaves_active = 0;
110 static struct bond_params bonding_defaults;
111 static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
112
113 module_param(max_bonds, int, 0);
114 MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
115 module_param(tx_queues, int, 0);
116 MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
117 module_param_named(num_grat_arp, num_peer_notif, int, 0644);
118 MODULE_PARM_DESC(num_grat_arp, "Number of peer notifications to send on "
119                                "failover event (alias of num_unsol_na)");
120 module_param_named(num_unsol_na, num_peer_notif, int, 0644);
121 MODULE_PARM_DESC(num_unsol_na, "Number of peer notifications to send on "
122                                "failover event (alias of num_grat_arp)");
123 module_param(miimon, int, 0);
124 MODULE_PARM_DESC(miimon, "Link check interval in milliseconds");
125 module_param(updelay, int, 0);
126 MODULE_PARM_DESC(updelay, "Delay before considering link up, in milliseconds");
127 module_param(downdelay, int, 0);
128 MODULE_PARM_DESC(downdelay, "Delay before considering link down, "
129                             "in milliseconds");
130 module_param(use_carrier, int, 0);
131 MODULE_PARM_DESC(use_carrier, "Use netif_carrier_ok (vs MII ioctls) in miimon; "
132                               "0 for off, 1 for on (default)");
133 module_param(mode, charp, 0);
134 MODULE_PARM_DESC(mode, "Mode of operation; 0 for balance-rr, "
135                        "1 for active-backup, 2 for balance-xor, "
136                        "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
137                        "6 for balance-alb");
138 module_param(primary, charp, 0);
139 MODULE_PARM_DESC(primary, "Primary network device to use");
140 module_param(primary_reselect, charp, 0);
141 MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
142                                    "once it comes up; "
143                                    "0 for always (default), "
144                                    "1 for only if speed of primary is "
145                                    "better, "
146                                    "2 for only on active slave "
147                                    "failure");
148 module_param(lacp_rate, charp, 0);
149 MODULE_PARM_DESC(lacp_rate, "LACPDU tx rate to request from 802.3ad partner; "
150                             "0 for slow, 1 for fast");
151 module_param(ad_select, charp, 0);
152 MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic; "
153                             "0 for stable (default), 1 for bandwidth, "
154                             "2 for count");
155 module_param(min_links, int, 0);
156 MODULE_PARM_DESC(min_links, "Minimum number of available links before turning on carrier");
157
158 module_param(xmit_hash_policy, charp, 0);
159 MODULE_PARM_DESC(xmit_hash_policy, "balance-xor and 802.3ad hashing method; "
160                                    "0 for layer 2 (default), 1 for layer 3+4, "
161                                    "2 for layer 2+3");
162 module_param(arp_interval, int, 0);
163 MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
164 module_param_array(arp_ip_target, charp, NULL, 0);
165 MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
166 module_param(arp_validate, charp, 0);
167 MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes; "
168                                "0 for none (default), 1 for active, "
169                                "2 for backup, 3 for all");
170 module_param(fail_over_mac, charp, 0);
171 MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to "
172                                 "the same MAC; 0 for none (default), "
173                                 "1 for active, 2 for follow");
174 module_param(all_slaves_active, int, 0);
175 MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
176                                      "by setting active flag for all slaves; "
177                                      "0 for never (default), 1 for always.");
178 module_param(resend_igmp, int, 0);
179 MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on "
180                               "link failure");
181
182 /*----------------------------- Global variables ----------------------------*/
183
184 #ifdef CONFIG_NET_POLL_CONTROLLER
185 atomic_t netpoll_block_tx = ATOMIC_INIT(0);
186 #endif
187
188 int bond_net_id __read_mostly;
189
190 static __be32 arp_target[BOND_MAX_ARP_TARGETS];
191 static int arp_ip_count;
192 static int bond_mode    = BOND_MODE_ROUNDROBIN;
193 static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
194 static int lacp_fast;
195
196 const struct bond_parm_tbl bond_lacp_tbl[] = {
197 {       "slow",         AD_LACP_SLOW},
198 {       "fast",         AD_LACP_FAST},
199 {       NULL,           -1},
200 };
201
202 const struct bond_parm_tbl bond_mode_tbl[] = {
203 {       "balance-rr",           BOND_MODE_ROUNDROBIN},
204 {       "active-backup",        BOND_MODE_ACTIVEBACKUP},
205 {       "balance-xor",          BOND_MODE_XOR},
206 {       "broadcast",            BOND_MODE_BROADCAST},
207 {       "802.3ad",              BOND_MODE_8023AD},
208 {       "balance-tlb",          BOND_MODE_TLB},
209 {       "balance-alb",          BOND_MODE_ALB},
210 {       NULL,                   -1},
211 };
212
213 const struct bond_parm_tbl xmit_hashtype_tbl[] = {
214 {       "layer2",               BOND_XMIT_POLICY_LAYER2},
215 {       "layer3+4",             BOND_XMIT_POLICY_LAYER34},
216 {       "layer2+3",             BOND_XMIT_POLICY_LAYER23},
217 {       NULL,                   -1},
218 };
219
220 const struct bond_parm_tbl arp_validate_tbl[] = {
221 {       "none",                 BOND_ARP_VALIDATE_NONE},
222 {       "active",               BOND_ARP_VALIDATE_ACTIVE},
223 {       "backup",               BOND_ARP_VALIDATE_BACKUP},
224 {       "all",                  BOND_ARP_VALIDATE_ALL},
225 {       NULL,                   -1},
226 };
227
228 const struct bond_parm_tbl fail_over_mac_tbl[] = {
229 {       "none",                 BOND_FOM_NONE},
230 {       "active",               BOND_FOM_ACTIVE},
231 {       "follow",               BOND_FOM_FOLLOW},
232 {       NULL,                   -1},
233 };
234
235 const struct bond_parm_tbl pri_reselect_tbl[] = {
236 {       "always",               BOND_PRI_RESELECT_ALWAYS},
237 {       "better",               BOND_PRI_RESELECT_BETTER},
238 {       "failure",              BOND_PRI_RESELECT_FAILURE},
239 {       NULL,                   -1},
240 };
241
242 struct bond_parm_tbl ad_select_tbl[] = {
243 {       "stable",       BOND_AD_STABLE},
244 {       "bandwidth",    BOND_AD_BANDWIDTH},
245 {       "count",        BOND_AD_COUNT},
246 {       NULL,           -1},
247 };
248
249 /*-------------------------- Forward declarations ---------------------------*/
250
251 static int bond_init(struct net_device *bond_dev);
252 static void bond_uninit(struct net_device *bond_dev);
253
254 /*---------------------------- General routines -----------------------------*/
255
256 const char *bond_mode_name(int mode)
257 {
258         static const char *names[] = {
259                 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
260                 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
261                 [BOND_MODE_XOR] = "load balancing (xor)",
262                 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
263                 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
264                 [BOND_MODE_TLB] = "transmit load balancing",
265                 [BOND_MODE_ALB] = "adaptive load balancing",
266         };
267
268         if (mode < 0 || mode > BOND_MODE_ALB)
269                 return "unknown";
270
271         return names[mode];
272 }
273
274 /*---------------------------------- VLAN -----------------------------------*/
275
276 /**
277  * bond_add_vlan - add a new vlan id on bond
278  * @bond: bond that got the notification
279  * @vlan_id: the vlan id to add
280  *
281  * Returns -ENOMEM if allocation failed.
282  */
283 static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
284 {
285         struct vlan_entry *vlan;
286
287         pr_debug("bond: %s, vlan id %d\n",
288                  (bond ? bond->dev->name : "None"), vlan_id);
289
290         vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
291         if (!vlan)
292                 return -ENOMEM;
293
294         INIT_LIST_HEAD(&vlan->vlan_list);
295         vlan->vlan_id = vlan_id;
296
297         write_lock_bh(&bond->lock);
298
299         list_add_tail(&vlan->vlan_list, &bond->vlan_list);
300
301         write_unlock_bh(&bond->lock);
302
303         pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
304
305         return 0;
306 }
307
308 /**
309  * bond_del_vlan - delete a vlan id from bond
310  * @bond: bond that got the notification
311  * @vlan_id: the vlan id to delete
312  *
313  * returns -ENODEV if @vlan_id was not found in @bond.
314  */
315 static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
316 {
317         struct vlan_entry *vlan;
318         int res = -ENODEV;
319
320         pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
321
322         block_netpoll_tx();
323         write_lock_bh(&bond->lock);
324
325         list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
326                 if (vlan->vlan_id == vlan_id) {
327                         list_del(&vlan->vlan_list);
328
329                         if (bond_is_lb(bond))
330                                 bond_alb_clear_vlan(bond, vlan_id);
331
332                         pr_debug("removed VLAN ID %d from bond %s\n",
333                                  vlan_id, bond->dev->name);
334
335                         kfree(vlan);
336
337                         res = 0;
338                         goto out;
339                 }
340         }
341
342         pr_debug("couldn't find VLAN ID %d in bond %s\n",
343                  vlan_id, bond->dev->name);
344
345 out:
346         write_unlock_bh(&bond->lock);
347         unblock_netpoll_tx();
348         return res;
349 }
350
351 /**
352  * bond_next_vlan - safely skip to the next item in the vlans list.
353  * @bond: the bond we're working on
354  * @curr: item we're advancing from
355  *
356  * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
357  * or @curr->next otherwise (even if it is @curr itself again).
358  *
359  * Caller must hold bond->lock
360  */
361 struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
362 {
363         struct vlan_entry *next, *last;
364
365         if (list_empty(&bond->vlan_list))
366                 return NULL;
367
368         if (!curr) {
369                 next = list_entry(bond->vlan_list.next,
370                                   struct vlan_entry, vlan_list);
371         } else {
372                 last = list_entry(bond->vlan_list.prev,
373                                   struct vlan_entry, vlan_list);
374                 if (last == curr) {
375                         next = list_entry(bond->vlan_list.next,
376                                           struct vlan_entry, vlan_list);
377                 } else {
378                         next = list_entry(curr->vlan_list.next,
379                                           struct vlan_entry, vlan_list);
380                 }
381         }
382
383         return next;
384 }
385
386 /**
387  * bond_dev_queue_xmit - Prepare skb for xmit.
388  *
389  * @bond: bond device that got this skb for tx.
390  * @skb: hw accel VLAN tagged skb to transmit
391  * @slave_dev: slave that is supposed to xmit this skbuff
392  */
393 int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
394                         struct net_device *slave_dev)
395 {
396         skb->dev = slave_dev;
397
398         BUILD_BUG_ON(sizeof(skb->queue_mapping) !=
399                      sizeof(qdisc_skb_cb(skb)->bond_queue_mapping));
400         skb->queue_mapping = qdisc_skb_cb(skb)->bond_queue_mapping;
401
402         if (unlikely(netpoll_tx_running(slave_dev)))
403                 bond_netpoll_send_skb(bond_get_slave_by_dev(bond, slave_dev), skb);
404         else
405                 dev_queue_xmit(skb);
406
407         return 0;
408 }
409
410 /*
411  * In the following 2 functions, bond_vlan_rx_add_vid and bond_vlan_rx_kill_vid,
412  * We don't protect the slave list iteration with a lock because:
413  * a. This operation is performed in IOCTL context,
414  * b. The operation is protected by the RTNL semaphore in the 8021q code,
415  * c. Holding a lock with BH disabled while directly calling a base driver
416  *    entry point is generally a BAD idea.
417  *
418  * The design of synchronization/protection for this operation in the 8021q
419  * module is good for one or more VLAN devices over a single physical device
420  * and cannot be extended for a teaming solution like bonding, so there is a
421  * potential race condition here where a net device from the vlan group might
422  * be referenced (either by a base driver or the 8021q code) while it is being
423  * removed from the system. However, it turns out we're not making matters
424  * worse, and if it works for regular VLAN usage it will work here too.
425 */
426
427 /**
428  * bond_vlan_rx_add_vid - Propagates adding an id to slaves
429  * @bond_dev: bonding net device that got called
430  * @vid: vlan id being added
431  */
432 static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
433 {
434         struct bonding *bond = netdev_priv(bond_dev);
435         struct slave *slave;
436         int i, res;
437
438         bond_for_each_slave(bond, slave, i) {
439                 struct net_device *slave_dev = slave->dev;
440                 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
441
442                 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
443                     slave_ops->ndo_vlan_rx_add_vid) {
444                         slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
445                 }
446         }
447
448         res = bond_add_vlan(bond, vid);
449         if (res) {
450                 pr_err("%s: Error: Failed to add vlan id %d\n",
451                        bond_dev->name, vid);
452         }
453 }
454
455 /**
456  * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
457  * @bond_dev: bonding net device that got called
458  * @vid: vlan id being removed
459  */
460 static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
461 {
462         struct bonding *bond = netdev_priv(bond_dev);
463         struct slave *slave;
464         int i, res;
465
466         bond_for_each_slave(bond, slave, i) {
467                 struct net_device *slave_dev = slave->dev;
468                 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
469
470                 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
471                     slave_ops->ndo_vlan_rx_kill_vid) {
472                         slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
473                 }
474         }
475
476         res = bond_del_vlan(bond, vid);
477         if (res) {
478                 pr_err("%s: Error: Failed to remove vlan id %d\n",
479                        bond_dev->name, vid);
480         }
481 }
482
483 static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
484 {
485         struct vlan_entry *vlan;
486         const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
487
488         if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
489             !(slave_ops->ndo_vlan_rx_add_vid))
490                 return;
491
492         list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
493                 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
494 }
495
496 static void bond_del_vlans_from_slave(struct bonding *bond,
497                                       struct net_device *slave_dev)
498 {
499         const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
500         struct vlan_entry *vlan;
501
502         if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
503             !(slave_ops->ndo_vlan_rx_kill_vid))
504                 return;
505
506         list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
507                 if (!vlan->vlan_id)
508                         continue;
509                 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
510         }
511 }
512
513 /*------------------------------- Link status -------------------------------*/
514
515 /*
516  * Set the carrier state for the master according to the state of its
517  * slaves.  If any slaves are up, the master is up.  In 802.3ad mode,
518  * do special 802.3ad magic.
519  *
520  * Returns zero if carrier state does not change, nonzero if it does.
521  */
522 static int bond_set_carrier(struct bonding *bond)
523 {
524         struct slave *slave;
525         int i;
526
527         if (bond->slave_cnt == 0)
528                 goto down;
529
530         if (bond->params.mode == BOND_MODE_8023AD)
531                 return bond_3ad_set_carrier(bond);
532
533         bond_for_each_slave(bond, slave, i) {
534                 if (slave->link == BOND_LINK_UP) {
535                         if (!netif_carrier_ok(bond->dev)) {
536                                 netif_carrier_on(bond->dev);
537                                 return 1;
538                         }
539                         return 0;
540                 }
541         }
542
543 down:
544         if (netif_carrier_ok(bond->dev)) {
545                 netif_carrier_off(bond->dev);
546                 return 1;
547         }
548         return 0;
549 }
550
551 /*
552  * Get link speed and duplex from the slave's base driver
553  * using ethtool. If for some reason the call fails or the
554  * values are invalid, set speed and duplex to -1,
555  * and return error.
556  */
557 static int bond_update_speed_duplex(struct slave *slave)
558 {
559         struct net_device *slave_dev = slave->dev;
560         struct ethtool_cmd ecmd;
561         u32 slave_speed;
562         int res;
563
564         slave->speed = SPEED_UNKNOWN;
565         slave->duplex = DUPLEX_UNKNOWN;
566
567         res = __ethtool_get_settings(slave_dev, &ecmd);
568         if (res < 0)
569                 return -1;
570
571         slave_speed = ethtool_cmd_speed(&ecmd);
572         if (slave_speed == 0 || slave_speed == ((__u32) -1))
573                 return -1;
574
575         switch (ecmd.duplex) {
576         case DUPLEX_FULL:
577         case DUPLEX_HALF:
578                 break;
579         default:
580                 return -1;
581         }
582
583         slave->speed = slave_speed;
584         slave->duplex = ecmd.duplex;
585
586         return 0;
587 }
588
589 /*
590  * if <dev> supports MII link status reporting, check its link status.
591  *
592  * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
593  * depending upon the setting of the use_carrier parameter.
594  *
595  * Return either BMSR_LSTATUS, meaning that the link is up (or we
596  * can't tell and just pretend it is), or 0, meaning that the link is
597  * down.
598  *
599  * If reporting is non-zero, instead of faking link up, return -1 if
600  * both ETHTOOL and MII ioctls fail (meaning the device does not
601  * support them).  If use_carrier is set, return whatever it says.
602  * It'd be nice if there was a good way to tell if a driver supports
603  * netif_carrier, but there really isn't.
604  */
605 static int bond_check_dev_link(struct bonding *bond,
606                                struct net_device *slave_dev, int reporting)
607 {
608         const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
609         int (*ioctl)(struct net_device *, struct ifreq *, int);
610         struct ifreq ifr;
611         struct mii_ioctl_data *mii;
612
613         if (!reporting && !netif_running(slave_dev))
614                 return 0;
615
616         if (bond->params.use_carrier)
617                 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
618
619         /* Try to get link status using Ethtool first. */
620         if (slave_dev->ethtool_ops) {
621                 if (slave_dev->ethtool_ops->get_link) {
622                         u32 link;
623
624                         link = slave_dev->ethtool_ops->get_link(slave_dev);
625
626                         return link ? BMSR_LSTATUS : 0;
627                 }
628         }
629
630         /* Ethtool can't be used, fallback to MII ioctls. */
631         ioctl = slave_ops->ndo_do_ioctl;
632         if (ioctl) {
633                 /* TODO: set pointer to correct ioctl on a per team member */
634                 /*       bases to make this more efficient. that is, once  */
635                 /*       we determine the correct ioctl, we will always    */
636                 /*       call it and not the others for that team          */
637                 /*       member.                                           */
638
639                 /*
640                  * We cannot assume that SIOCGMIIPHY will also read a
641                  * register; not all network drivers (e.g., e100)
642                  * support that.
643                  */
644
645                 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
646                 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
647                 mii = if_mii(&ifr);
648                 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
649                         mii->reg_num = MII_BMSR;
650                         if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
651                                 return mii->val_out & BMSR_LSTATUS;
652                 }
653         }
654
655         /*
656          * If reporting, report that either there's no dev->do_ioctl,
657          * or both SIOCGMIIREG and get_link failed (meaning that we
658          * cannot report link status).  If not reporting, pretend
659          * we're ok.
660          */
661         return reporting ? -1 : BMSR_LSTATUS;
662 }
663
664 /*----------------------------- Multicast list ------------------------------*/
665
666 /*
667  * Push the promiscuity flag down to appropriate slaves
668  */
669 static int bond_set_promiscuity(struct bonding *bond, int inc)
670 {
671         int err = 0;
672         if (USES_PRIMARY(bond->params.mode)) {
673                 /* write lock already acquired */
674                 if (bond->curr_active_slave) {
675                         err = dev_set_promiscuity(bond->curr_active_slave->dev,
676                                                   inc);
677                 }
678         } else {
679                 struct slave *slave;
680                 int i;
681                 bond_for_each_slave(bond, slave, i) {
682                         err = dev_set_promiscuity(slave->dev, inc);
683                         if (err)
684                                 return err;
685                 }
686         }
687         return err;
688 }
689
690 /*
691  * Push the allmulti flag down to all slaves
692  */
693 static int bond_set_allmulti(struct bonding *bond, int inc)
694 {
695         int err = 0;
696         if (USES_PRIMARY(bond->params.mode)) {
697                 /* write lock already acquired */
698                 if (bond->curr_active_slave) {
699                         err = dev_set_allmulti(bond->curr_active_slave->dev,
700                                                inc);
701                 }
702         } else {
703                 struct slave *slave;
704                 int i;
705                 bond_for_each_slave(bond, slave, i) {
706                         err = dev_set_allmulti(slave->dev, inc);
707                         if (err)
708                                 return err;
709                 }
710         }
711         return err;
712 }
713
714 /*
715  * Add a Multicast address to slaves
716  * according to mode
717  */
718 static void bond_mc_add(struct bonding *bond, void *addr)
719 {
720         if (USES_PRIMARY(bond->params.mode)) {
721                 /* write lock already acquired */
722                 if (bond->curr_active_slave)
723                         dev_mc_add(bond->curr_active_slave->dev, addr);
724         } else {
725                 struct slave *slave;
726                 int i;
727
728                 bond_for_each_slave(bond, slave, i)
729                         dev_mc_add(slave->dev, addr);
730         }
731 }
732
733 /*
734  * Remove a multicast address from slave
735  * according to mode
736  */
737 static void bond_mc_del(struct bonding *bond, void *addr)
738 {
739         if (USES_PRIMARY(bond->params.mode)) {
740                 /* write lock already acquired */
741                 if (bond->curr_active_slave)
742                         dev_mc_del(bond->curr_active_slave->dev, addr);
743         } else {
744                 struct slave *slave;
745                 int i;
746                 bond_for_each_slave(bond, slave, i) {
747                         dev_mc_del(slave->dev, addr);
748                 }
749         }
750 }
751
752
753 static void __bond_resend_igmp_join_requests(struct net_device *dev)
754 {
755         struct in_device *in_dev;
756
757         rcu_read_lock();
758         in_dev = __in_dev_get_rcu(dev);
759         if (in_dev)
760                 ip_mc_rejoin_groups(in_dev);
761         rcu_read_unlock();
762 }
763
764 /*
765  * Retrieve the list of registered multicast addresses for the bonding
766  * device and retransmit an IGMP JOIN request to the current active
767  * slave.
768  */
769 static void bond_resend_igmp_join_requests(struct bonding *bond)
770 {
771         struct net_device *vlan_dev;
772         struct vlan_entry *vlan;
773
774         read_lock(&bond->lock);
775
776         /* rejoin all groups on bond device */
777         __bond_resend_igmp_join_requests(bond->dev);
778
779         /* rejoin all groups on vlan devices */
780         list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
781                 rcu_read_lock();
782                 vlan_dev = __vlan_find_dev_deep(bond->dev,
783                                                 vlan->vlan_id);
784                 rcu_read_unlock();
785                 if (vlan_dev)
786                         __bond_resend_igmp_join_requests(vlan_dev);
787         }
788
789         if (--bond->igmp_retrans > 0)
790                 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
791
792         read_unlock(&bond->lock);
793 }
794
795 static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
796 {
797         struct bonding *bond = container_of(work, struct bonding,
798                                             mcast_work.work);
799         bond_resend_igmp_join_requests(bond);
800 }
801
802 /*
803  * flush all members of flush->mc_list from device dev->mc_list
804  */
805 static void bond_mc_list_flush(struct net_device *bond_dev,
806                                struct net_device *slave_dev)
807 {
808         struct bonding *bond = netdev_priv(bond_dev);
809         struct netdev_hw_addr *ha;
810
811         netdev_for_each_mc_addr(ha, bond_dev)
812                 dev_mc_del(slave_dev, ha->addr);
813
814         if (bond->params.mode == BOND_MODE_8023AD) {
815                 /* del lacpdu mc addr from mc list */
816                 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
817
818                 dev_mc_del(slave_dev, lacpdu_multicast);
819         }
820 }
821
822 /*--------------------------- Active slave change ---------------------------*/
823
824 /*
825  * Update the mc list and multicast-related flags for the new and
826  * old active slaves (if any) according to the multicast mode, and
827  * promiscuous flags unconditionally.
828  */
829 static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
830                          struct slave *old_active)
831 {
832         struct netdev_hw_addr *ha;
833
834         if (!USES_PRIMARY(bond->params.mode))
835                 /* nothing to do -  mc list is already up-to-date on
836                  * all slaves
837                  */
838                 return;
839
840         if (old_active) {
841                 if (bond->dev->flags & IFF_PROMISC)
842                         dev_set_promiscuity(old_active->dev, -1);
843
844                 if (bond->dev->flags & IFF_ALLMULTI)
845                         dev_set_allmulti(old_active->dev, -1);
846
847                 netdev_for_each_mc_addr(ha, bond->dev)
848                         dev_mc_del(old_active->dev, ha->addr);
849         }
850
851         if (new_active) {
852                 /* FIXME: Signal errors upstream. */
853                 if (bond->dev->flags & IFF_PROMISC)
854                         dev_set_promiscuity(new_active->dev, 1);
855
856                 if (bond->dev->flags & IFF_ALLMULTI)
857                         dev_set_allmulti(new_active->dev, 1);
858
859                 netdev_for_each_mc_addr(ha, bond->dev)
860                         dev_mc_add(new_active->dev, ha->addr);
861         }
862 }
863
864 /*
865  * bond_do_fail_over_mac
866  *
867  * Perform special MAC address swapping for fail_over_mac settings
868  *
869  * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
870  */
871 static void bond_do_fail_over_mac(struct bonding *bond,
872                                   struct slave *new_active,
873                                   struct slave *old_active)
874         __releases(&bond->curr_slave_lock)
875         __releases(&bond->lock)
876         __acquires(&bond->lock)
877         __acquires(&bond->curr_slave_lock)
878 {
879         u8 tmp_mac[ETH_ALEN];
880         struct sockaddr saddr;
881         int rv;
882
883         switch (bond->params.fail_over_mac) {
884         case BOND_FOM_ACTIVE:
885                 if (new_active)
886                         memcpy(bond->dev->dev_addr,  new_active->dev->dev_addr,
887                                new_active->dev->addr_len);
888                 break;
889         case BOND_FOM_FOLLOW:
890                 /*
891                  * if new_active && old_active, swap them
892                  * if just old_active, do nothing (going to no active slave)
893                  * if just new_active, set new_active to bond's MAC
894                  */
895                 if (!new_active)
896                         return;
897
898                 write_unlock_bh(&bond->curr_slave_lock);
899                 read_unlock(&bond->lock);
900
901                 if (old_active) {
902                         memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
903                         memcpy(saddr.sa_data, old_active->dev->dev_addr,
904                                ETH_ALEN);
905                         saddr.sa_family = new_active->dev->type;
906                 } else {
907                         memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
908                         saddr.sa_family = bond->dev->type;
909                 }
910
911                 rv = dev_set_mac_address(new_active->dev, &saddr);
912                 if (rv) {
913                         pr_err("%s: Error %d setting MAC of slave %s\n",
914                                bond->dev->name, -rv, new_active->dev->name);
915                         goto out;
916                 }
917
918                 if (!old_active)
919                         goto out;
920
921                 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
922                 saddr.sa_family = old_active->dev->type;
923
924                 rv = dev_set_mac_address(old_active->dev, &saddr);
925                 if (rv)
926                         pr_err("%s: Error %d setting MAC of slave %s\n",
927                                bond->dev->name, -rv, new_active->dev->name);
928 out:
929                 read_lock(&bond->lock);
930                 write_lock_bh(&bond->curr_slave_lock);
931                 break;
932         default:
933                 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
934                        bond->dev->name, bond->params.fail_over_mac);
935                 break;
936         }
937
938 }
939
940 static bool bond_should_change_active(struct bonding *bond)
941 {
942         struct slave *prim = bond->primary_slave;
943         struct slave *curr = bond->curr_active_slave;
944
945         if (!prim || !curr || curr->link != BOND_LINK_UP)
946                 return true;
947         if (bond->force_primary) {
948                 bond->force_primary = false;
949                 return true;
950         }
951         if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
952             (prim->speed < curr->speed ||
953              (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
954                 return false;
955         if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
956                 return false;
957         return true;
958 }
959
960 /**
961  * find_best_interface - select the best available slave to be the active one
962  * @bond: our bonding struct
963  *
964  * Warning: Caller must hold curr_slave_lock for writing.
965  */
966 static struct slave *bond_find_best_slave(struct bonding *bond)
967 {
968         struct slave *new_active, *old_active;
969         struct slave *bestslave = NULL;
970         int mintime = bond->params.updelay;
971         int i;
972
973         new_active = bond->curr_active_slave;
974
975         if (!new_active) { /* there were no active slaves left */
976                 if (bond->slave_cnt > 0)   /* found one slave */
977                         new_active = bond->first_slave;
978                 else
979                         return NULL; /* still no slave, return NULL */
980         }
981
982         if ((bond->primary_slave) &&
983             bond->primary_slave->link == BOND_LINK_UP &&
984             bond_should_change_active(bond)) {
985                 new_active = bond->primary_slave;
986         }
987
988         /* remember where to stop iterating over the slaves */
989         old_active = new_active;
990
991         bond_for_each_slave_from(bond, new_active, i, old_active) {
992                 if (new_active->link == BOND_LINK_UP) {
993                         return new_active;
994                 } else if (new_active->link == BOND_LINK_BACK &&
995                            IS_UP(new_active->dev)) {
996                         /* link up, but waiting for stabilization */
997                         if (new_active->delay < mintime) {
998                                 mintime = new_active->delay;
999                                 bestslave = new_active;
1000                         }
1001                 }
1002         }
1003
1004         return bestslave;
1005 }
1006
1007 static bool bond_should_notify_peers(struct bonding *bond)
1008 {
1009         struct slave *slave = bond->curr_active_slave;
1010
1011         pr_debug("bond_should_notify_peers: bond %s slave %s\n",
1012                  bond->dev->name, slave ? slave->dev->name : "NULL");
1013
1014         if (!slave || !bond->send_peer_notif ||
1015             test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
1016                 return false;
1017
1018         bond->send_peer_notif--;
1019         return true;
1020 }
1021
1022 /**
1023  * change_active_interface - change the active slave into the specified one
1024  * @bond: our bonding struct
1025  * @new: the new slave to make the active one
1026  *
1027  * Set the new slave to the bond's settings and unset them on the old
1028  * curr_active_slave.
1029  * Setting include flags, mc-list, promiscuity, allmulti, etc.
1030  *
1031  * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1032  * because it is apparently the best available slave we have, even though its
1033  * updelay hasn't timed out yet.
1034  *
1035  * If new_active is not NULL, caller must hold bond->lock for read and
1036  * curr_slave_lock for write_bh.
1037  */
1038 void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
1039 {
1040         struct slave *old_active = bond->curr_active_slave;
1041
1042         if (old_active == new_active)
1043                 return;
1044
1045         if (new_active) {
1046                 new_active->jiffies = jiffies;
1047
1048                 if (new_active->link == BOND_LINK_BACK) {
1049                         if (USES_PRIMARY(bond->params.mode)) {
1050                                 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1051                                         bond->dev->name, new_active->dev->name,
1052                                         (bond->params.updelay - new_active->delay) * bond->params.miimon);
1053                         }
1054
1055                         new_active->delay = 0;
1056                         new_active->link = BOND_LINK_UP;
1057
1058                         if (bond->params.mode == BOND_MODE_8023AD)
1059                                 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
1060
1061                         if (bond_is_lb(bond))
1062                                 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
1063                 } else {
1064                         if (USES_PRIMARY(bond->params.mode)) {
1065                                 pr_info("%s: making interface %s the new active one.\n",
1066                                         bond->dev->name, new_active->dev->name);
1067                         }
1068                 }
1069         }
1070
1071         if (USES_PRIMARY(bond->params.mode))
1072                 bond_mc_swap(bond, new_active, old_active);
1073
1074         if (bond_is_lb(bond)) {
1075                 bond_alb_handle_active_change(bond, new_active);
1076                 if (old_active)
1077                         bond_set_slave_inactive_flags(old_active);
1078                 if (new_active)
1079                         bond_set_slave_active_flags(new_active);
1080         } else {
1081                 bond->curr_active_slave = new_active;
1082         }
1083
1084         if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
1085                 if (old_active)
1086                         bond_set_slave_inactive_flags(old_active);
1087
1088                 if (new_active) {
1089                         bool should_notify_peers = false;
1090
1091                         bond_set_slave_active_flags(new_active);
1092
1093                         if (bond->params.fail_over_mac)
1094                                 bond_do_fail_over_mac(bond, new_active,
1095                                                       old_active);
1096
1097                         if (netif_running(bond->dev)) {
1098                                 bond->send_peer_notif =
1099                                         bond->params.num_peer_notif;
1100                                 should_notify_peers =
1101                                         bond_should_notify_peers(bond);
1102                         }
1103
1104                         write_unlock_bh(&bond->curr_slave_lock);
1105                         read_unlock(&bond->lock);
1106
1107                         netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
1108                         if (should_notify_peers)
1109                                 netdev_bonding_change(bond->dev,
1110                                                       NETDEV_NOTIFY_PEERS);
1111
1112                         read_lock(&bond->lock);
1113                         write_lock_bh(&bond->curr_slave_lock);
1114                 }
1115         }
1116
1117         /* resend IGMP joins since active slave has changed or
1118          * all were sent on curr_active_slave.
1119          * resend only if bond is brought up with the affected
1120          * bonding modes and the retransmission is enabled */
1121         if (netif_running(bond->dev) && (bond->params.resend_igmp > 0) &&
1122             ((USES_PRIMARY(bond->params.mode) && new_active) ||
1123              bond->params.mode == BOND_MODE_ROUNDROBIN)) {
1124                 bond->igmp_retrans = bond->params.resend_igmp;
1125                 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
1126         }
1127 }
1128
1129 /**
1130  * bond_select_active_slave - select a new active slave, if needed
1131  * @bond: our bonding struct
1132  *
1133  * This functions should be called when one of the following occurs:
1134  * - The old curr_active_slave has been released or lost its link.
1135  * - The primary_slave has got its link back.
1136  * - A slave has got its link back and there's no old curr_active_slave.
1137  *
1138  * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
1139  */
1140 void bond_select_active_slave(struct bonding *bond)
1141 {
1142         struct slave *best_slave;
1143         int rv;
1144
1145         best_slave = bond_find_best_slave(bond);
1146         if (best_slave != bond->curr_active_slave) {
1147                 bond_change_active_slave(bond, best_slave);
1148                 rv = bond_set_carrier(bond);
1149                 if (!rv)
1150                         return;
1151
1152                 if (netif_carrier_ok(bond->dev)) {
1153                         pr_info("%s: first active interface up!\n",
1154                                 bond->dev->name);
1155                 } else {
1156                         pr_info("%s: now running without any active interface !\n",
1157                                 bond->dev->name);
1158                 }
1159         }
1160 }
1161
1162 /*--------------------------- slave list handling ---------------------------*/
1163
1164 /*
1165  * This function attaches the slave to the end of list.
1166  *
1167  * bond->lock held for writing by caller.
1168  */
1169 static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1170 {
1171         if (bond->first_slave == NULL) { /* attaching the first slave */
1172                 new_slave->next = new_slave;
1173                 new_slave->prev = new_slave;
1174                 bond->first_slave = new_slave;
1175         } else {
1176                 new_slave->next = bond->first_slave;
1177                 new_slave->prev = bond->first_slave->prev;
1178                 new_slave->next->prev = new_slave;
1179                 new_slave->prev->next = new_slave;
1180         }
1181
1182         bond->slave_cnt++;
1183 }
1184
1185 /*
1186  * This function detaches the slave from the list.
1187  * WARNING: no check is made to verify if the slave effectively
1188  * belongs to <bond>.
1189  * Nothing is freed on return, structures are just unchained.
1190  * If any slave pointer in bond was pointing to <slave>,
1191  * it should be changed by the calling function.
1192  *
1193  * bond->lock held for writing by caller.
1194  */
1195 static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1196 {
1197         if (slave->next)
1198                 slave->next->prev = slave->prev;
1199
1200         if (slave->prev)
1201                 slave->prev->next = slave->next;
1202
1203         if (bond->first_slave == slave) { /* slave is the first slave */
1204                 if (bond->slave_cnt > 1) { /* there are more slave */
1205                         bond->first_slave = slave->next;
1206                 } else {
1207                         bond->first_slave = NULL; /* slave was the last one */
1208                 }
1209         }
1210
1211         slave->next = NULL;
1212         slave->prev = NULL;
1213         bond->slave_cnt--;
1214 }
1215
1216 #ifdef CONFIG_NET_POLL_CONTROLLER
1217 static inline int slave_enable_netpoll(struct slave *slave)
1218 {
1219         struct netpoll *np;
1220         int err = 0;
1221
1222         np = kzalloc(sizeof(*np), GFP_KERNEL);
1223         err = -ENOMEM;
1224         if (!np)
1225                 goto out;
1226
1227         np->dev = slave->dev;
1228         strlcpy(np->dev_name, slave->dev->name, IFNAMSIZ);
1229         err = __netpoll_setup(np);
1230         if (err) {
1231                 kfree(np);
1232                 goto out;
1233         }
1234         slave->np = np;
1235 out:
1236         return err;
1237 }
1238 static inline void slave_disable_netpoll(struct slave *slave)
1239 {
1240         struct netpoll *np = slave->np;
1241
1242         if (!np)
1243                 return;
1244
1245         slave->np = NULL;
1246         synchronize_rcu_bh();
1247         __netpoll_cleanup(np);
1248         kfree(np);
1249 }
1250 static inline bool slave_dev_support_netpoll(struct net_device *slave_dev)
1251 {
1252         if (slave_dev->priv_flags & IFF_DISABLE_NETPOLL)
1253                 return false;
1254         if (!slave_dev->netdev_ops->ndo_poll_controller)
1255                 return false;
1256         return true;
1257 }
1258
1259 static void bond_poll_controller(struct net_device *bond_dev)
1260 {
1261 }
1262
1263 static void __bond_netpoll_cleanup(struct bonding *bond)
1264 {
1265         struct slave *slave;
1266         int i;
1267
1268         bond_for_each_slave(bond, slave, i)
1269                 if (IS_UP(slave->dev))
1270                         slave_disable_netpoll(slave);
1271 }
1272 static void bond_netpoll_cleanup(struct net_device *bond_dev)
1273 {
1274         struct bonding *bond = netdev_priv(bond_dev);
1275
1276         read_lock(&bond->lock);
1277         __bond_netpoll_cleanup(bond);
1278         read_unlock(&bond->lock);
1279 }
1280
1281 static int bond_netpoll_setup(struct net_device *dev, struct netpoll_info *ni)
1282 {
1283         struct bonding *bond = netdev_priv(dev);
1284         struct slave *slave;
1285         int i, err = 0;
1286
1287         read_lock(&bond->lock);
1288         bond_for_each_slave(bond, slave, i) {
1289                 err = slave_enable_netpoll(slave);
1290                 if (err) {
1291                         __bond_netpoll_cleanup(bond);
1292                         break;
1293                 }
1294         }
1295         read_unlock(&bond->lock);
1296         return err;
1297 }
1298
1299 static struct netpoll_info *bond_netpoll_info(struct bonding *bond)
1300 {
1301         return bond->dev->npinfo;
1302 }
1303
1304 #else
1305 static inline int slave_enable_netpoll(struct slave *slave)
1306 {
1307         return 0;
1308 }
1309 static inline void slave_disable_netpoll(struct slave *slave)
1310 {
1311 }
1312 static void bond_netpoll_cleanup(struct net_device *bond_dev)
1313 {
1314 }
1315 #endif
1316
1317 /*---------------------------------- IOCTL ----------------------------------*/
1318
1319 static int bond_sethwaddr(struct net_device *bond_dev,
1320                           struct net_device *slave_dev)
1321 {
1322         pr_debug("bond_dev=%p\n", bond_dev);
1323         pr_debug("slave_dev=%p\n", slave_dev);
1324         pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
1325         memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1326         return 0;
1327 }
1328
1329 static u32 bond_fix_features(struct net_device *dev, u32 features)
1330 {
1331         struct slave *slave;
1332         struct bonding *bond = netdev_priv(dev);
1333         u32 mask;
1334         int i;
1335
1336         read_lock(&bond->lock);
1337
1338         if (!bond->first_slave) {
1339                 /* Disable adding VLANs to empty bond. But why? --mq */
1340                 features |= NETIF_F_VLAN_CHALLENGED;
1341                 goto out;
1342         }
1343
1344         mask = features;
1345         features &= ~NETIF_F_ONE_FOR_ALL;
1346         features |= NETIF_F_ALL_FOR_ALL;
1347
1348         bond_for_each_slave(bond, slave, i) {
1349                 features = netdev_increment_features(features,
1350                                                      slave->dev->features,
1351                                                      mask);
1352         }
1353
1354 out:
1355         read_unlock(&bond->lock);
1356         return features;
1357 }
1358
1359 #define BOND_VLAN_FEATURES      (NETIF_F_ALL_CSUM | NETIF_F_SG | \
1360                                  NETIF_F_FRAGLIST | NETIF_F_ALL_TSO | \
1361                                  NETIF_F_HIGHDMA | NETIF_F_LRO)
1362
1363 static void bond_compute_features(struct bonding *bond)
1364 {
1365         struct slave *slave;
1366         struct net_device *bond_dev = bond->dev;
1367         u32 vlan_features = BOND_VLAN_FEATURES;
1368         unsigned short max_hard_header_len = ETH_HLEN;
1369         unsigned int gso_max_size = GSO_MAX_SIZE;
1370         u16 gso_max_segs = GSO_MAX_SEGS;
1371         int i;
1372
1373         read_lock(&bond->lock);
1374
1375         if (!bond->first_slave)
1376                 goto done;
1377
1378         bond_for_each_slave(bond, slave, i) {
1379                 vlan_features = netdev_increment_features(vlan_features,
1380                         slave->dev->vlan_features, BOND_VLAN_FEATURES);
1381
1382                 if (slave->dev->hard_header_len > max_hard_header_len)
1383                         max_hard_header_len = slave->dev->hard_header_len;
1384
1385                 gso_max_size = min(gso_max_size, slave->dev->gso_max_size);
1386                 gso_max_segs = min(gso_max_segs, slave->dev->gso_max_segs);
1387         }
1388
1389 done:
1390         bond_dev->vlan_features = vlan_features;
1391         bond_dev->hard_header_len = max_hard_header_len;
1392         bond_dev->gso_max_segs = gso_max_segs;
1393         netif_set_gso_max_size(bond_dev, gso_max_size);
1394
1395         read_unlock(&bond->lock);
1396
1397         netdev_change_features(bond_dev);
1398 }
1399
1400 static void bond_setup_by_slave(struct net_device *bond_dev,
1401                                 struct net_device *slave_dev)
1402 {
1403         struct bonding *bond = netdev_priv(bond_dev);
1404
1405         bond_dev->header_ops        = slave_dev->header_ops;
1406
1407         bond_dev->type              = slave_dev->type;
1408         bond_dev->hard_header_len   = slave_dev->hard_header_len;
1409         bond_dev->addr_len          = slave_dev->addr_len;
1410
1411         memcpy(bond_dev->broadcast, slave_dev->broadcast,
1412                 slave_dev->addr_len);
1413         bond->setup_by_slave = 1;
1414 }
1415
1416 /* On bonding slaves other than the currently active slave, suppress
1417  * duplicates except for alb non-mcast/bcast.
1418  */
1419 static bool bond_should_deliver_exact_match(struct sk_buff *skb,
1420                                             struct slave *slave,
1421                                             struct bonding *bond)
1422 {
1423         if (bond_is_slave_inactive(slave)) {
1424                 if (bond->params.mode == BOND_MODE_ALB &&
1425                     skb->pkt_type != PACKET_BROADCAST &&
1426                     skb->pkt_type != PACKET_MULTICAST)
1427                         return false;
1428                 return true;
1429         }
1430         return false;
1431 }
1432
1433 static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
1434 {
1435         struct sk_buff *skb = *pskb;
1436         struct slave *slave;
1437         struct bonding *bond;
1438         void (*recv_probe)(struct sk_buff *, struct bonding *,
1439                                 struct slave *);
1440
1441         skb = skb_share_check(skb, GFP_ATOMIC);
1442         if (unlikely(!skb))
1443                 return RX_HANDLER_CONSUMED;
1444
1445         *pskb = skb;
1446
1447         slave = bond_slave_get_rcu(skb->dev);
1448         bond = slave->bond;
1449
1450         if (bond->params.arp_interval)
1451                 slave->dev->last_rx = jiffies;
1452
1453         recv_probe = ACCESS_ONCE(bond->recv_probe);
1454         if (recv_probe) {
1455                 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1456
1457                 if (likely(nskb)) {
1458                         recv_probe(nskb, bond, slave);
1459                         dev_kfree_skb(nskb);
1460                 }
1461         }
1462
1463         if (bond_should_deliver_exact_match(skb, slave, bond)) {
1464                 return RX_HANDLER_EXACT;
1465         }
1466
1467         skb->dev = bond->dev;
1468
1469         if (bond->params.mode == BOND_MODE_ALB &&
1470             bond->dev->priv_flags & IFF_BRIDGE_PORT &&
1471             skb->pkt_type == PACKET_HOST) {
1472
1473                 if (unlikely(skb_cow_head(skb,
1474                                           skb->data - skb_mac_header(skb)))) {
1475                         kfree_skb(skb);
1476                         return RX_HANDLER_CONSUMED;
1477                 }
1478                 memcpy(eth_hdr(skb)->h_dest, bond->dev->dev_addr, ETH_ALEN);
1479         }
1480
1481         return RX_HANDLER_ANOTHER;
1482 }
1483
1484 /* enslave device <slave> to bond device <master> */
1485 int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
1486 {
1487         struct bonding *bond = netdev_priv(bond_dev);
1488         const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1489         struct slave *new_slave = NULL;
1490         struct netdev_hw_addr *ha;
1491         struct sockaddr addr;
1492         int link_reporting;
1493         int res = 0;
1494
1495         if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
1496                 slave_ops->ndo_do_ioctl == NULL) {
1497                 pr_warning("%s: Warning: no link monitoring support for %s\n",
1498                            bond_dev->name, slave_dev->name);
1499         }
1500
1501         /* already enslaved */
1502         if (slave_dev->flags & IFF_SLAVE) {
1503                 pr_debug("Error, Device was already enslaved\n");
1504                 return -EBUSY;
1505         }
1506
1507         /* vlan challenged mutual exclusion */
1508         /* no need to lock since we're protected by rtnl_lock */
1509         if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
1510                 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
1511                 if (bond_vlan_used(bond)) {
1512                         pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1513                                bond_dev->name, slave_dev->name, bond_dev->name);
1514                         return -EPERM;
1515                 } else {
1516                         pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1517                                    bond_dev->name, slave_dev->name,
1518                                    slave_dev->name, bond_dev->name);
1519                 }
1520         } else {
1521                 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
1522         }
1523
1524         /*
1525          * Old ifenslave binaries are no longer supported.  These can
1526          * be identified with moderate accuracy by the state of the slave:
1527          * the current ifenslave will set the interface down prior to
1528          * enslaving it; the old ifenslave will not.
1529          */
1530         if ((slave_dev->flags & IFF_UP)) {
1531                 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
1532                        slave_dev->name);
1533                 res = -EPERM;
1534                 goto err_undo_flags;
1535         }
1536
1537         /* set bonding device ether type by slave - bonding netdevices are
1538          * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1539          * there is a need to override some of the type dependent attribs/funcs.
1540          *
1541          * bond ether type mutual exclusion - don't allow slaves of dissimilar
1542          * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1543          */
1544         if (bond->slave_cnt == 0) {
1545                 if (bond_dev->type != slave_dev->type) {
1546                         pr_debug("%s: change device type from %d to %d\n",
1547                                  bond_dev->name,
1548                                  bond_dev->type, slave_dev->type);
1549
1550                         res = netdev_bonding_change(bond_dev,
1551                                                     NETDEV_PRE_TYPE_CHANGE);
1552                         res = notifier_to_errno(res);
1553                         if (res) {
1554                                 pr_err("%s: refused to change device type\n",
1555                                        bond_dev->name);
1556                                 res = -EBUSY;
1557                                 goto err_undo_flags;
1558                         }
1559
1560                         /* Flush unicast and multicast addresses */
1561                         dev_uc_flush(bond_dev);
1562                         dev_mc_flush(bond_dev);
1563
1564                         if (slave_dev->type != ARPHRD_ETHER)
1565                                 bond_setup_by_slave(bond_dev, slave_dev);
1566                         else {
1567                                 ether_setup(bond_dev);
1568                                 bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1569                         }
1570
1571                         netdev_bonding_change(bond_dev,
1572                                               NETDEV_POST_TYPE_CHANGE);
1573                 }
1574         } else if (bond_dev->type != slave_dev->type) {
1575                 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1576                        slave_dev->name,
1577                        slave_dev->type, bond_dev->type);
1578                 res = -EINVAL;
1579                 goto err_undo_flags;
1580         }
1581
1582         if (slave_ops->ndo_set_mac_address == NULL) {
1583                 if (bond->slave_cnt == 0) {
1584                         pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1585                                    bond_dev->name);
1586                         bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1587                 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
1588                         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",
1589                                bond_dev->name);
1590                         res = -EOPNOTSUPP;
1591                         goto err_undo_flags;
1592                 }
1593         }
1594
1595         call_netdevice_notifiers(NETDEV_JOIN, slave_dev);
1596
1597         /* If this is the first slave, then we need to set the master's hardware
1598          * address to be the same as the slave's. */
1599         if (is_zero_ether_addr(bond->dev->dev_addr))
1600                 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1601                        slave_dev->addr_len);
1602
1603
1604         new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
1605         if (!new_slave) {
1606                 res = -ENOMEM;
1607                 goto err_undo_flags;
1608         }
1609
1610         /*
1611          * Set the new_slave's queue_id to be zero.  Queue ID mapping
1612          * is set via sysfs or module option if desired.
1613          */
1614         new_slave->queue_id = 0;
1615
1616         /* Save slave's original mtu and then set it to match the bond */
1617         new_slave->original_mtu = slave_dev->mtu;
1618         res = dev_set_mtu(slave_dev, bond->dev->mtu);
1619         if (res) {
1620                 pr_debug("Error %d calling dev_set_mtu\n", res);
1621                 goto err_free;
1622         }
1623
1624         /*
1625          * Save slave's original ("permanent") mac address for modes
1626          * that need it, and for restoring it upon release, and then
1627          * set it to the master's address
1628          */
1629         memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
1630
1631         if (!bond->params.fail_over_mac) {
1632                 /*
1633                  * Set slave to master's mac address.  The application already
1634                  * set the master's mac address to that of the first slave
1635                  */
1636                 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1637                 addr.sa_family = slave_dev->type;
1638                 res = dev_set_mac_address(slave_dev, &addr);
1639                 if (res) {
1640                         pr_debug("Error %d calling set_mac_address\n", res);
1641                         goto err_restore_mtu;
1642                 }
1643         }
1644
1645         res = netdev_set_bond_master(slave_dev, bond_dev);
1646         if (res) {
1647                 pr_debug("Error %d calling netdev_set_bond_master\n", res);
1648                 goto err_restore_mac;
1649         }
1650
1651         /* open the slave since the application closed it */
1652         res = dev_open(slave_dev);
1653         if (res) {
1654                 pr_debug("Opening slave %s failed\n", slave_dev->name);
1655                 goto err_unset_master;
1656         }
1657
1658         new_slave->bond = bond;
1659         new_slave->dev = slave_dev;
1660         slave_dev->priv_flags |= IFF_BONDING;
1661
1662         if (bond_is_lb(bond)) {
1663                 /* bond_alb_init_slave() must be called before all other stages since
1664                  * it might fail and we do not want to have to undo everything
1665                  */
1666                 res = bond_alb_init_slave(bond, new_slave);
1667                 if (res)
1668                         goto err_close;
1669         }
1670
1671         /* If the mode USES_PRIMARY, then the new slave gets the
1672          * master's promisc (and mc) settings only if it becomes the
1673          * curr_active_slave, and that is taken care of later when calling
1674          * bond_change_active()
1675          */
1676         if (!USES_PRIMARY(bond->params.mode)) {
1677                 /* set promiscuity level to new slave */
1678                 if (bond_dev->flags & IFF_PROMISC) {
1679                         res = dev_set_promiscuity(slave_dev, 1);
1680                         if (res)
1681                                 goto err_close;
1682                 }
1683
1684                 /* set allmulti level to new slave */
1685                 if (bond_dev->flags & IFF_ALLMULTI) {
1686                         res = dev_set_allmulti(slave_dev, 1);
1687                         if (res)
1688                                 goto err_close;
1689                 }
1690
1691                 netif_addr_lock_bh(bond_dev);
1692                 /* upload master's mc_list to new slave */
1693                 netdev_for_each_mc_addr(ha, bond_dev)
1694                         dev_mc_add(slave_dev, ha->addr);
1695                 netif_addr_unlock_bh(bond_dev);
1696         }
1697
1698         if (bond->params.mode == BOND_MODE_8023AD) {
1699                 /* add lacpdu mc addr to mc list */
1700                 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1701
1702                 dev_mc_add(slave_dev, lacpdu_multicast);
1703         }
1704
1705         bond_add_vlans_on_slave(bond, slave_dev);
1706
1707         write_lock_bh(&bond->lock);
1708
1709         bond_attach_slave(bond, new_slave);
1710
1711         new_slave->delay = 0;
1712         new_slave->link_failure_count = 0;
1713
1714         write_unlock_bh(&bond->lock);
1715
1716         bond_compute_features(bond);
1717
1718         bond_update_speed_duplex(new_slave);
1719
1720         read_lock(&bond->lock);
1721
1722         new_slave->last_arp_rx = jiffies;
1723
1724         if (bond->params.miimon && !bond->params.use_carrier) {
1725                 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1726
1727                 if ((link_reporting == -1) && !bond->params.arp_interval) {
1728                         /*
1729                          * miimon is set but a bonded network driver
1730                          * does not support ETHTOOL/MII and
1731                          * arp_interval is not set.  Note: if
1732                          * use_carrier is enabled, we will never go
1733                          * here (because netif_carrier is always
1734                          * supported); thus, we don't need to change
1735                          * the messages for netif_carrier.
1736                          */
1737                         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",
1738                                bond_dev->name, slave_dev->name);
1739                 } else if (link_reporting == -1) {
1740                         /* unable get link status using mii/ethtool */
1741                         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",
1742                                    bond_dev->name, slave_dev->name);
1743                 }
1744         }
1745
1746         /* check for initial state */
1747         if (!bond->params.miimon ||
1748             (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1749                 if (bond->params.updelay) {
1750                         pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
1751                         new_slave->link  = BOND_LINK_BACK;
1752                         new_slave->delay = bond->params.updelay;
1753                 } else {
1754                         pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
1755                         new_slave->link  = BOND_LINK_UP;
1756                 }
1757                 new_slave->jiffies = jiffies;
1758         } else {
1759                 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
1760                 new_slave->link  = BOND_LINK_DOWN;
1761         }
1762
1763         if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1764                 /* if there is a primary slave, remember it */
1765                 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
1766                         bond->primary_slave = new_slave;
1767                         bond->force_primary = true;
1768                 }
1769         }
1770
1771         write_lock_bh(&bond->curr_slave_lock);
1772
1773         switch (bond->params.mode) {
1774         case BOND_MODE_ACTIVEBACKUP:
1775                 bond_set_slave_inactive_flags(new_slave);
1776                 bond_select_active_slave(bond);
1777                 break;
1778         case BOND_MODE_8023AD:
1779                 /* in 802.3ad mode, the internal mechanism
1780                  * will activate the slaves in the selected
1781                  * aggregator
1782                  */
1783                 bond_set_slave_inactive_flags(new_slave);
1784                 /* if this is the first slave */
1785                 if (bond->slave_cnt == 1) {
1786                         SLAVE_AD_INFO(new_slave).id = 1;
1787                         /* Initialize AD with the number of times that the AD timer is called in 1 second
1788                          * can be called only after the mac address of the bond is set
1789                          */
1790                         bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL);
1791                 } else {
1792                         SLAVE_AD_INFO(new_slave).id =
1793                                 SLAVE_AD_INFO(new_slave->prev).id + 1;
1794                 }
1795
1796                 bond_3ad_bind_slave(new_slave);
1797                 break;
1798         case BOND_MODE_TLB:
1799         case BOND_MODE_ALB:
1800                 bond_set_active_slave(new_slave);
1801                 bond_set_slave_inactive_flags(new_slave);
1802                 bond_select_active_slave(bond);
1803                 break;
1804         default:
1805                 pr_debug("This slave is always active in trunk mode\n");
1806
1807                 /* always active in trunk mode */
1808                 bond_set_active_slave(new_slave);
1809
1810                 /* In trunking mode there is little meaning to curr_active_slave
1811                  * anyway (it holds no special properties of the bond device),
1812                  * so we can change it without calling change_active_interface()
1813                  */
1814                 if (!bond->curr_active_slave)
1815                         bond->curr_active_slave = new_slave;
1816
1817                 break;
1818         } /* switch(bond_mode) */
1819
1820         write_unlock_bh(&bond->curr_slave_lock);
1821
1822         bond_set_carrier(bond);
1823
1824 #ifdef CONFIG_NET_POLL_CONTROLLER
1825         slave_dev->npinfo = bond_netpoll_info(bond);
1826         if (slave_dev->npinfo) {
1827                 if (slave_enable_netpoll(new_slave)) {
1828                         read_unlock(&bond->lock);
1829                         pr_info("Error, %s: master_dev is using netpoll, "
1830                                  "but new slave device does not support netpoll.\n",
1831                                  bond_dev->name);
1832                         res = -EBUSY;
1833                         goto err_detach;
1834                 }
1835         }
1836 #endif
1837
1838         read_unlock(&bond->lock);
1839
1840         res = bond_create_slave_symlinks(bond_dev, slave_dev);
1841         if (res)
1842                 goto err_detach;
1843
1844         res = netdev_rx_handler_register(slave_dev, bond_handle_frame,
1845                                          new_slave);
1846         if (res) {
1847                 pr_debug("Error %d calling netdev_rx_handler_register\n", res);
1848                 goto err_dest_symlinks;
1849         }
1850
1851         pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1852                 bond_dev->name, slave_dev->name,
1853                 bond_is_active_slave(new_slave) ? "n active" : " backup",
1854                 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
1855
1856         /* enslave is successful */
1857         return 0;
1858
1859 /* Undo stages on error */
1860 err_dest_symlinks:
1861         bond_destroy_slave_symlinks(bond_dev, slave_dev);
1862
1863 err_detach:
1864         write_lock_bh(&bond->lock);
1865         bond_detach_slave(bond, new_slave);
1866         write_unlock_bh(&bond->lock);
1867
1868 err_close:
1869         slave_dev->priv_flags &= ~IFF_BONDING;
1870         dev_close(slave_dev);
1871
1872 err_unset_master:
1873         netdev_set_bond_master(slave_dev, NULL);
1874
1875 err_restore_mac:
1876         if (!bond->params.fail_over_mac) {
1877                 /* XXX TODO - fom follow mode needs to change master's
1878                  * MAC if this slave's MAC is in use by the bond, or at
1879                  * least print a warning.
1880                  */
1881                 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1882                 addr.sa_family = slave_dev->type;
1883                 dev_set_mac_address(slave_dev, &addr);
1884         }
1885
1886 err_restore_mtu:
1887         dev_set_mtu(slave_dev, new_slave->original_mtu);
1888
1889 err_free:
1890         kfree(new_slave);
1891
1892 err_undo_flags:
1893         bond_compute_features(bond);
1894
1895         return res;
1896 }
1897
1898 /*
1899  * Try to release the slave device <slave> from the bond device <master>
1900  * It is legal to access curr_active_slave without a lock because all the function
1901  * is write-locked.
1902  *
1903  * The rules for slave state should be:
1904  *   for Active/Backup:
1905  *     Active stays on all backups go down
1906  *   for Bonded connections:
1907  *     The first up interface should be left on and all others downed.
1908  */
1909 int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
1910 {
1911         struct bonding *bond = netdev_priv(bond_dev);
1912         struct slave *slave, *oldcurrent;
1913         struct sockaddr addr;
1914         u32 old_features = bond_dev->features;
1915
1916         /* slave is not a slave or master is not master of this slave */
1917         if (!(slave_dev->flags & IFF_SLAVE) ||
1918             (slave_dev->master != bond_dev)) {
1919                 pr_err("%s: Error: cannot release %s.\n",
1920                        bond_dev->name, slave_dev->name);
1921                 return -EINVAL;
1922         }
1923
1924         block_netpoll_tx();
1925         netdev_bonding_change(bond_dev, NETDEV_RELEASE);
1926         write_lock_bh(&bond->lock);
1927
1928         slave = bond_get_slave_by_dev(bond, slave_dev);
1929         if (!slave) {
1930                 /* not a slave of this bond */
1931                 pr_info("%s: %s not enslaved\n",
1932                         bond_dev->name, slave_dev->name);
1933                 write_unlock_bh(&bond->lock);
1934                 unblock_netpoll_tx();
1935                 return -EINVAL;
1936         }
1937
1938         write_unlock_bh(&bond->lock);
1939         /* unregister rx_handler early so bond_handle_frame wouldn't be called
1940          * for this slave anymore.
1941          */
1942         netdev_rx_handler_unregister(slave_dev);
1943         write_lock_bh(&bond->lock);
1944
1945         if (!bond->params.fail_over_mac) {
1946                 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1947                     bond->slave_cnt > 1)
1948                         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",
1949                                    bond_dev->name, slave_dev->name,
1950                                    slave->perm_hwaddr,
1951                                    bond_dev->name, slave_dev->name);
1952         }
1953
1954         /* Inform AD package of unbinding of slave. */
1955         if (bond->params.mode == BOND_MODE_8023AD) {
1956                 /* must be called before the slave is
1957                  * detached from the list
1958                  */
1959                 bond_3ad_unbind_slave(slave);
1960         }
1961
1962         pr_info("%s: releasing %s interface %s\n",
1963                 bond_dev->name,
1964                 bond_is_active_slave(slave) ? "active" : "backup",
1965                 slave_dev->name);
1966
1967         oldcurrent = bond->curr_active_slave;
1968
1969         bond->current_arp_slave = NULL;
1970
1971         /* release the slave from its bond */
1972         bond_detach_slave(bond, slave);
1973
1974         if (bond->primary_slave == slave)
1975                 bond->primary_slave = NULL;
1976
1977         if (oldcurrent == slave)
1978                 bond_change_active_slave(bond, NULL);
1979
1980         if (bond_is_lb(bond)) {
1981                 /* Must be called only after the slave has been
1982                  * detached from the list and the curr_active_slave
1983                  * has been cleared (if our_slave == old_current),
1984                  * but before a new active slave is selected.
1985                  */
1986                 write_unlock_bh(&bond->lock);
1987                 bond_alb_deinit_slave(bond, slave);
1988                 write_lock_bh(&bond->lock);
1989         }
1990
1991         if (oldcurrent == slave) {
1992                 /*
1993                  * Note that we hold RTNL over this sequence, so there
1994                  * is no concern that another slave add/remove event
1995                  * will interfere.
1996                  */
1997                 write_unlock_bh(&bond->lock);
1998                 read_lock(&bond->lock);
1999                 write_lock_bh(&bond->curr_slave_lock);
2000
2001                 bond_select_active_slave(bond);
2002
2003                 write_unlock_bh(&bond->curr_slave_lock);
2004                 read_unlock(&bond->lock);
2005                 write_lock_bh(&bond->lock);
2006         }
2007
2008         if (bond->slave_cnt == 0) {
2009                 bond_set_carrier(bond);
2010
2011                 /* if the last slave was removed, zero the mac address
2012                  * of the master so it will be set by the application
2013                  * to the mac address of the first slave
2014                  */
2015                 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2016
2017                 if (bond_vlan_used(bond)) {
2018                         pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2019                                    bond_dev->name, bond_dev->name);
2020                         pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2021                                    bond_dev->name);
2022                 }
2023         }
2024
2025         write_unlock_bh(&bond->lock);
2026         unblock_netpoll_tx();
2027
2028         bond_compute_features(bond);
2029         if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
2030             (old_features & NETIF_F_VLAN_CHALLENGED))
2031                 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
2032                         bond_dev->name, slave_dev->name, bond_dev->name);
2033
2034         /* must do this from outside any spinlocks */
2035         bond_destroy_slave_symlinks(bond_dev, slave_dev);
2036
2037         bond_del_vlans_from_slave(bond, slave_dev);
2038
2039         /* If the mode USES_PRIMARY, then we should only remove its
2040          * promisc and mc settings if it was the curr_active_slave, but that was
2041          * already taken care of above when we detached the slave
2042          */
2043         if (!USES_PRIMARY(bond->params.mode)) {
2044                 /* unset promiscuity level from slave */
2045                 if (bond_dev->flags & IFF_PROMISC)
2046                         dev_set_promiscuity(slave_dev, -1);
2047
2048                 /* unset allmulti level from slave */
2049                 if (bond_dev->flags & IFF_ALLMULTI)
2050                         dev_set_allmulti(slave_dev, -1);
2051
2052                 /* flush master's mc_list from slave */
2053                 netif_addr_lock_bh(bond_dev);
2054                 bond_mc_list_flush(bond_dev, slave_dev);
2055                 netif_addr_unlock_bh(bond_dev);
2056         }
2057
2058         netdev_set_bond_master(slave_dev, NULL);
2059
2060         slave_disable_netpoll(slave);
2061
2062         /* close slave before restoring its mac address */
2063         dev_close(slave_dev);
2064
2065         if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
2066                 /* restore original ("permanent") mac address */
2067                 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2068                 addr.sa_family = slave_dev->type;
2069                 dev_set_mac_address(slave_dev, &addr);
2070         }
2071
2072         dev_set_mtu(slave_dev, slave->original_mtu);
2073
2074         slave_dev->priv_flags &= ~IFF_BONDING;
2075
2076         kfree(slave);
2077
2078         return 0;  /* deletion OK */
2079 }
2080
2081 /*
2082 * First release a slave and then destroy the bond if no more slaves are left.
2083 * Must be under rtnl_lock when this function is called.
2084 */
2085 static int  bond_release_and_destroy(struct net_device *bond_dev,
2086                                      struct net_device *slave_dev)
2087 {
2088         struct bonding *bond = netdev_priv(bond_dev);
2089         int ret;
2090
2091         ret = bond_release(bond_dev, slave_dev);
2092         if ((ret == 0) && (bond->slave_cnt == 0)) {
2093                 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
2094                 pr_info("%s: destroying bond %s.\n",
2095                         bond_dev->name, bond_dev->name);
2096                 unregister_netdevice(bond_dev);
2097         }
2098         return ret;
2099 }
2100
2101 /*
2102  * This function releases all slaves.
2103  */
2104 static int bond_release_all(struct net_device *bond_dev)
2105 {
2106         struct bonding *bond = netdev_priv(bond_dev);
2107         struct slave *slave;
2108         struct net_device *slave_dev;
2109         struct sockaddr addr;
2110
2111         write_lock_bh(&bond->lock);
2112
2113         netif_carrier_off(bond_dev);
2114
2115         if (bond->slave_cnt == 0)
2116                 goto out;
2117
2118         bond->current_arp_slave = NULL;
2119         bond->primary_slave = NULL;
2120         bond_change_active_slave(bond, NULL);
2121
2122         while ((slave = bond->first_slave) != NULL) {
2123                 /* Inform AD package of unbinding of slave
2124                  * before slave is detached from the list.
2125                  */
2126                 if (bond->params.mode == BOND_MODE_8023AD)
2127                         bond_3ad_unbind_slave(slave);
2128
2129                 slave_dev = slave->dev;
2130                 bond_detach_slave(bond, slave);
2131
2132                 /* now that the slave is detached, unlock and perform
2133                  * all the undo steps that should not be called from
2134                  * within a lock.
2135                  */
2136                 write_unlock_bh(&bond->lock);
2137
2138                 /* unregister rx_handler early so bond_handle_frame wouldn't
2139                  * be called for this slave anymore.
2140                  */
2141                 netdev_rx_handler_unregister(slave_dev);
2142                 synchronize_net();
2143
2144                 if (bond_is_lb(bond)) {
2145                         /* must be called only after the slave
2146                          * has been detached from the list
2147                          */
2148                         bond_alb_deinit_slave(bond, slave);
2149                 }
2150
2151                 bond_destroy_slave_symlinks(bond_dev, slave_dev);
2152                 bond_del_vlans_from_slave(bond, slave_dev);
2153
2154                 /* If the mode USES_PRIMARY, then we should only remove its
2155                  * promisc and mc settings if it was the curr_active_slave, but that was
2156                  * already taken care of above when we detached the slave
2157                  */
2158                 if (!USES_PRIMARY(bond->params.mode)) {
2159                         /* unset promiscuity level from slave */
2160                         if (bond_dev->flags & IFF_PROMISC)
2161                                 dev_set_promiscuity(slave_dev, -1);
2162
2163                         /* unset allmulti level from slave */
2164                         if (bond_dev->flags & IFF_ALLMULTI)
2165                                 dev_set_allmulti(slave_dev, -1);
2166
2167                         /* flush master's mc_list from slave */
2168                         netif_addr_lock_bh(bond_dev);
2169                         bond_mc_list_flush(bond_dev, slave_dev);
2170                         netif_addr_unlock_bh(bond_dev);
2171                 }
2172
2173                 netdev_set_bond_master(slave_dev, NULL);
2174
2175                 slave_disable_netpoll(slave);
2176
2177                 /* close slave before restoring its mac address */
2178                 dev_close(slave_dev);
2179
2180                 if (!bond->params.fail_over_mac) {
2181                         /* restore original ("permanent") mac address*/
2182                         memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2183                         addr.sa_family = slave_dev->type;
2184                         dev_set_mac_address(slave_dev, &addr);
2185                 }
2186
2187                 kfree(slave);
2188
2189                 /* re-acquire the lock before getting the next slave */
2190                 write_lock_bh(&bond->lock);
2191         }
2192
2193         /* zero the mac address of the master so it will be
2194          * set by the application to the mac address of the
2195          * first slave
2196          */
2197         memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2198
2199         if (bond_vlan_used(bond)) {
2200                 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2201                            bond_dev->name, bond_dev->name);
2202                 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2203                            bond_dev->name);
2204         }
2205
2206         pr_info("%s: released all slaves\n", bond_dev->name);
2207
2208 out:
2209         write_unlock_bh(&bond->lock);
2210
2211         bond_compute_features(bond);
2212
2213         return 0;
2214 }
2215
2216 /*
2217  * This function changes the active slave to slave <slave_dev>.
2218  * It returns -EINVAL in the following cases.
2219  *  - <slave_dev> is not found in the list.
2220  *  - There is not active slave now.
2221  *  - <slave_dev> is already active.
2222  *  - The link state of <slave_dev> is not BOND_LINK_UP.
2223  *  - <slave_dev> is not running.
2224  * In these cases, this function does nothing.
2225  * In the other cases, current_slave pointer is changed and 0 is returned.
2226  */
2227 static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2228 {
2229         struct bonding *bond = netdev_priv(bond_dev);
2230         struct slave *old_active = NULL;
2231         struct slave *new_active = NULL;
2232         int res = 0;
2233
2234         if (!USES_PRIMARY(bond->params.mode))
2235                 return -EINVAL;
2236
2237         /* Verify that master_dev is indeed the master of slave_dev */
2238         if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
2239                 return -EINVAL;
2240
2241         read_lock(&bond->lock);
2242
2243         read_lock(&bond->curr_slave_lock);
2244         old_active = bond->curr_active_slave;
2245         read_unlock(&bond->curr_slave_lock);
2246
2247         new_active = bond_get_slave_by_dev(bond, slave_dev);
2248
2249         /*
2250          * Changing to the current active: do nothing; return success.
2251          */
2252         if (new_active && (new_active == old_active)) {
2253                 read_unlock(&bond->lock);
2254                 return 0;
2255         }
2256
2257         if ((new_active) &&
2258             (old_active) &&
2259             (new_active->link == BOND_LINK_UP) &&
2260             IS_UP(new_active->dev)) {
2261                 block_netpoll_tx();
2262                 write_lock_bh(&bond->curr_slave_lock);
2263                 bond_change_active_slave(bond, new_active);
2264                 write_unlock_bh(&bond->curr_slave_lock);
2265                 unblock_netpoll_tx();
2266         } else
2267                 res = -EINVAL;
2268
2269         read_unlock(&bond->lock);
2270
2271         return res;
2272 }
2273
2274 static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2275 {
2276         struct bonding *bond = netdev_priv(bond_dev);
2277
2278         info->bond_mode = bond->params.mode;
2279         info->miimon = bond->params.miimon;
2280
2281         read_lock(&bond->lock);
2282         info->num_slaves = bond->slave_cnt;
2283         read_unlock(&bond->lock);
2284
2285         return 0;
2286 }
2287
2288 static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2289 {
2290         struct bonding *bond = netdev_priv(bond_dev);
2291         struct slave *slave;
2292         int i, res = -ENODEV;
2293
2294         read_lock(&bond->lock);
2295
2296         bond_for_each_slave(bond, slave, i) {
2297                 if (i == (int)info->slave_id) {
2298                         res = 0;
2299                         strcpy(info->slave_name, slave->dev->name);
2300                         info->link = slave->link;
2301                         info->state = bond_slave_state(slave);
2302                         info->link_failure_count = slave->link_failure_count;
2303                         break;
2304                 }
2305         }
2306
2307         read_unlock(&bond->lock);
2308
2309         return res;
2310 }
2311
2312 /*-------------------------------- Monitoring -------------------------------*/
2313
2314
2315 static int bond_miimon_inspect(struct bonding *bond)
2316 {
2317         struct slave *slave;
2318         int i, link_state, commit = 0;
2319         bool ignore_updelay;
2320
2321         ignore_updelay = !bond->curr_active_slave ? true : false;
2322
2323         bond_for_each_slave(bond, slave, i) {
2324                 slave->new_link = BOND_LINK_NOCHANGE;
2325
2326                 link_state = bond_check_dev_link(bond, slave->dev, 0);
2327
2328                 switch (slave->link) {
2329                 case BOND_LINK_UP:
2330                         if (link_state)
2331                                 continue;
2332
2333                         slave->link = BOND_LINK_FAIL;
2334                         slave->delay = bond->params.downdelay;
2335                         if (slave->delay) {
2336                                 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2337                                         bond->dev->name,
2338                                         (bond->params.mode ==
2339                                          BOND_MODE_ACTIVEBACKUP) ?
2340                                         (bond_is_active_slave(slave) ?
2341                                          "active " : "backup ") : "",
2342                                         slave->dev->name,
2343                                         bond->params.downdelay * bond->params.miimon);
2344                         }
2345                         /*FALLTHRU*/
2346                 case BOND_LINK_FAIL:
2347                         if (link_state) {
2348                                 /*
2349                                  * recovered before downdelay expired
2350                                  */
2351                                 slave->link = BOND_LINK_UP;
2352                                 slave->jiffies = jiffies;
2353                                 pr_info("%s: link status up again after %d ms for interface %s.\n",
2354                                         bond->dev->name,
2355                                         (bond->params.downdelay - slave->delay) *
2356                                         bond->params.miimon,
2357                                         slave->dev->name);
2358                                 continue;
2359                         }
2360
2361                         if (slave->delay <= 0) {
2362                                 slave->new_link = BOND_LINK_DOWN;
2363                                 commit++;
2364                                 continue;
2365                         }
2366
2367                         slave->delay--;
2368                         break;
2369
2370                 case BOND_LINK_DOWN:
2371                         if (!link_state)
2372                                 continue;
2373
2374                         slave->link = BOND_LINK_BACK;
2375                         slave->delay = bond->params.updelay;
2376
2377                         if (slave->delay) {
2378                                 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2379                                         bond->dev->name, slave->dev->name,
2380                                         ignore_updelay ? 0 :
2381                                         bond->params.updelay *
2382                                         bond->params.miimon);
2383                         }
2384                         /*FALLTHRU*/
2385                 case BOND_LINK_BACK:
2386                         if (!link_state) {
2387                                 slave->link = BOND_LINK_DOWN;
2388                                 pr_info("%s: link status down again after %d ms for interface %s.\n",
2389                                         bond->dev->name,
2390                                         (bond->params.updelay - slave->delay) *
2391                                         bond->params.miimon,
2392                                         slave->dev->name);
2393
2394                                 continue;
2395                         }
2396
2397                         if (ignore_updelay)
2398                                 slave->delay = 0;
2399
2400                         if (slave->delay <= 0) {
2401                                 slave->new_link = BOND_LINK_UP;
2402                                 commit++;
2403                                 ignore_updelay = false;
2404                                 continue;
2405                         }
2406
2407                         slave->delay--;
2408                         break;
2409                 }
2410         }
2411
2412         return commit;
2413 }
2414
2415 static void bond_miimon_commit(struct bonding *bond)
2416 {
2417         struct slave *slave;
2418         int i;
2419
2420         bond_for_each_slave(bond, slave, i) {
2421                 switch (slave->new_link) {
2422                 case BOND_LINK_NOCHANGE:
2423                         continue;
2424
2425                 case BOND_LINK_UP:
2426                         slave->link = BOND_LINK_UP;
2427                         slave->jiffies = jiffies;
2428
2429                         if (bond->params.mode == BOND_MODE_8023AD) {
2430                                 /* prevent it from being the active one */
2431                                 bond_set_backup_slave(slave);
2432                         } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2433                                 /* make it immediately active */
2434                                 bond_set_active_slave(slave);
2435                         } else if (slave != bond->primary_slave) {
2436                                 /* prevent it from being the active one */
2437                                 bond_set_backup_slave(slave);
2438                         }
2439
2440                         pr_info("%s: link status definitely up for interface %s, %u Mbps %s duplex.\n",
2441                                 bond->dev->name, slave->dev->name,
2442                                 slave->speed, slave->duplex ? "full" : "half");
2443
2444                         /* notify ad that the link status has changed */
2445                         if (bond->params.mode == BOND_MODE_8023AD)
2446                                 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2447
2448                         if (bond_is_lb(bond))
2449                                 bond_alb_handle_link_change(bond, slave,
2450                                                             BOND_LINK_UP);
2451
2452                         if (!bond->curr_active_slave ||
2453                             (slave == bond->primary_slave))
2454                                 goto do_failover;
2455
2456                         continue;
2457
2458                 case BOND_LINK_DOWN:
2459                         if (slave->link_failure_count < UINT_MAX)
2460                                 slave->link_failure_count++;
2461
2462                         slave->link = BOND_LINK_DOWN;
2463
2464                         if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2465                             bond->params.mode == BOND_MODE_8023AD)
2466                                 bond_set_slave_inactive_flags(slave);
2467
2468                         pr_info("%s: link status definitely down for interface %s, disabling it\n",
2469                                 bond->dev->name, slave->dev->name);
2470
2471                         if (bond->params.mode == BOND_MODE_8023AD)
2472                                 bond_3ad_handle_link_change(slave,
2473                                                             BOND_LINK_DOWN);
2474
2475                         if (bond_is_lb(bond))
2476                                 bond_alb_handle_link_change(bond, slave,
2477                                                             BOND_LINK_DOWN);
2478
2479                         if (slave == bond->curr_active_slave)
2480                                 goto do_failover;
2481
2482                         continue;
2483
2484                 default:
2485                         pr_err("%s: invalid new link %d on slave %s\n",
2486                                bond->dev->name, slave->new_link,
2487                                slave->dev->name);
2488                         slave->new_link = BOND_LINK_NOCHANGE;
2489
2490                         continue;
2491                 }
2492
2493 do_failover:
2494                 ASSERT_RTNL();
2495                 block_netpoll_tx();
2496                 write_lock_bh(&bond->curr_slave_lock);
2497                 bond_select_active_slave(bond);
2498                 write_unlock_bh(&bond->curr_slave_lock);
2499                 unblock_netpoll_tx();
2500         }
2501
2502         bond_set_carrier(bond);
2503 }
2504
2505 /*
2506  * bond_mii_monitor
2507  *
2508  * Really a wrapper that splits the mii monitor into two phases: an
2509  * inspection, then (if inspection indicates something needs to be done)
2510  * an acquisition of appropriate locks followed by a commit phase to
2511  * implement whatever link state changes are indicated.
2512  */
2513 void bond_mii_monitor(struct work_struct *work)
2514 {
2515         struct bonding *bond = container_of(work, struct bonding,
2516                                             mii_work.work);
2517         bool should_notify_peers = false;
2518         unsigned long delay;
2519
2520         read_lock(&bond->lock);
2521
2522         delay = msecs_to_jiffies(bond->params.miimon);
2523
2524         if (bond->slave_cnt == 0)
2525                 goto re_arm;
2526
2527         should_notify_peers = bond_should_notify_peers(bond);
2528
2529         if (bond_miimon_inspect(bond)) {
2530                 read_unlock(&bond->lock);
2531
2532                 /* Race avoidance with bond_close cancel of workqueue */
2533                 if (!rtnl_trylock()) {
2534                         read_lock(&bond->lock);
2535                         delay = 1;
2536                         should_notify_peers = false;
2537                         goto re_arm;
2538                 }
2539
2540                 read_lock(&bond->lock);
2541
2542                 bond_miimon_commit(bond);
2543
2544                 read_unlock(&bond->lock);
2545                 rtnl_unlock();  /* might sleep, hold no other locks */
2546                 read_lock(&bond->lock);
2547         }
2548
2549 re_arm:
2550         if (bond->params.miimon)
2551                 queue_delayed_work(bond->wq, &bond->mii_work, delay);
2552
2553         read_unlock(&bond->lock);
2554
2555         if (should_notify_peers) {
2556                 if (!rtnl_trylock()) {
2557                         read_lock(&bond->lock);
2558                         bond->send_peer_notif++;
2559                         read_unlock(&bond->lock);
2560                         return;
2561                 }
2562                 netdev_bonding_change(bond->dev, NETDEV_NOTIFY_PEERS);
2563                 rtnl_unlock();
2564         }
2565 }
2566
2567 static int bond_has_this_ip(struct bonding *bond, __be32 ip)
2568 {
2569         struct vlan_entry *vlan;
2570
2571         if (ip == bond->master_ip)
2572                 return 1;
2573
2574         list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
2575                 if (ip == vlan->vlan_ip)
2576                         return 1;
2577         }
2578
2579         return 0;
2580 }
2581
2582 /*
2583  * We go to the (large) trouble of VLAN tagging ARP frames because
2584  * switches in VLAN mode (especially if ports are configured as
2585  * "native" to a VLAN) might not pass non-tagged frames.
2586  */
2587 static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ip, __be32 src_ip, unsigned short vlan_id)
2588 {
2589         struct sk_buff *skb;
2590
2591         pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
2592                  slave_dev->name, dest_ip, src_ip, vlan_id);
2593
2594         skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2595                          NULL, slave_dev->dev_addr, NULL);
2596
2597         if (!skb) {
2598                 pr_err("ARP packet allocation failed\n");
2599                 return;
2600         }
2601         if (vlan_id) {
2602                 skb = vlan_put_tag(skb, vlan_id);
2603                 if (!skb) {
2604                         pr_err("failed to insert VLAN tag\n");
2605                         return;
2606                 }
2607         }
2608         arp_xmit(skb);
2609 }
2610
2611
2612 static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2613 {
2614         int i, vlan_id;
2615         __be32 *targets = bond->params.arp_targets;
2616         struct vlan_entry *vlan;
2617         struct net_device *vlan_dev;
2618         struct rtable *rt;
2619
2620         for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2621                 if (!targets[i])
2622                         break;
2623                 pr_debug("basa: target %x\n", targets[i]);
2624                 if (!bond_vlan_used(bond)) {
2625                         pr_debug("basa: empty vlan: arp_send\n");
2626                         bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2627                                       bond->master_ip, 0);
2628                         continue;
2629                 }
2630
2631                 /*
2632                  * If VLANs are configured, we do a route lookup to
2633                  * determine which VLAN interface would be used, so we
2634                  * can tag the ARP with the proper VLAN tag.
2635                  */
2636                 rt = ip_route_output(dev_net(bond->dev), targets[i], 0,
2637                                      RTO_ONLINK, 0);
2638                 if (IS_ERR(rt)) {
2639                         if (net_ratelimit()) {
2640                                 pr_warning("%s: no route to arp_ip_target %pI4\n",
2641                                            bond->dev->name, &targets[i]);
2642                         }
2643                         continue;
2644                 }
2645
2646                 /*
2647                  * This target is not on a VLAN
2648                  */
2649                 if (rt->dst.dev == bond->dev) {
2650                         ip_rt_put(rt);
2651                         pr_debug("basa: rtdev == bond->dev: arp_send\n");
2652                         bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2653                                       bond->master_ip, 0);
2654                         continue;
2655                 }
2656
2657                 vlan_id = 0;
2658                 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
2659                         rcu_read_lock();
2660                         vlan_dev = __vlan_find_dev_deep(bond->dev,
2661                                                         vlan->vlan_id);
2662                         rcu_read_unlock();
2663                         if (vlan_dev == rt->dst.dev) {
2664                                 vlan_id = vlan->vlan_id;
2665                                 pr_debug("basa: vlan match on %s %d\n",
2666                                        vlan_dev->name, vlan_id);
2667                                 break;
2668                         }
2669                 }
2670
2671                 if (vlan_id) {
2672                         ip_rt_put(rt);
2673                         bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2674                                       vlan->vlan_ip, vlan_id);
2675                         continue;
2676                 }
2677
2678                 if (net_ratelimit()) {
2679                         pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2680                                    bond->dev->name, &targets[i],
2681                                    rt->dst.dev ? rt->dst.dev->name : "NULL");
2682                 }
2683                 ip_rt_put(rt);
2684         }
2685 }
2686
2687 static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
2688 {
2689         int i;
2690         __be32 *targets = bond->params.arp_targets;
2691
2692         for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
2693                 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
2694                          &sip, &tip, i, &targets[i],
2695                          bond_has_this_ip(bond, tip));
2696                 if (sip == targets[i]) {
2697                         if (bond_has_this_ip(bond, tip))
2698                                 slave->last_arp_rx = jiffies;
2699                         return;
2700                 }
2701         }
2702 }
2703
2704 static void bond_arp_rcv(struct sk_buff *skb, struct bonding *bond,
2705                          struct slave *slave)
2706 {
2707         struct arphdr *arp;
2708         unsigned char *arp_ptr;
2709         __be32 sip, tip;
2710
2711         if (skb->protocol != __cpu_to_be16(ETH_P_ARP))
2712                 return;
2713
2714         read_lock(&bond->lock);
2715
2716         pr_debug("bond_arp_rcv: bond %s skb->dev %s\n",
2717                  bond->dev->name, skb->dev->name);
2718
2719         if (!pskb_may_pull(skb, arp_hdr_len(bond->dev)))
2720                 goto out_unlock;
2721
2722         arp = arp_hdr(skb);
2723         if (arp->ar_hln != bond->dev->addr_len ||
2724             skb->pkt_type == PACKET_OTHERHOST ||
2725             skb->pkt_type == PACKET_LOOPBACK ||
2726             arp->ar_hrd != htons(ARPHRD_ETHER) ||
2727             arp->ar_pro != htons(ETH_P_IP) ||
2728             arp->ar_pln != 4)
2729                 goto out_unlock;
2730
2731         arp_ptr = (unsigned char *)(arp + 1);
2732         arp_ptr += bond->dev->addr_len;
2733         memcpy(&sip, arp_ptr, 4);
2734         arp_ptr += 4 + bond->dev->addr_len;
2735         memcpy(&tip, arp_ptr, 4);
2736
2737         pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
2738                  bond->dev->name, slave->dev->name, bond_slave_state(slave),
2739                  bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2740                  &sip, &tip);
2741
2742         /*
2743          * Backup slaves won't see the ARP reply, but do come through
2744          * here for each ARP probe (so we swap the sip/tip to validate
2745          * the probe).  In a "redundant switch, common router" type of
2746          * configuration, the ARP probe will (hopefully) travel from
2747          * the active, through one switch, the router, then the other
2748          * switch before reaching the backup.
2749          */
2750         if (bond_is_active_slave(slave))
2751                 bond_validate_arp(bond, slave, sip, tip);
2752         else
2753                 bond_validate_arp(bond, slave, tip, sip);
2754
2755 out_unlock:
2756         read_unlock(&bond->lock);
2757 }
2758
2759 /*
2760  * this function is called regularly to monitor each slave's link
2761  * ensuring that traffic is being sent and received when arp monitoring
2762  * is used in load-balancing mode. if the adapter has been dormant, then an
2763  * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2764  * arp monitoring in active backup mode.
2765  */
2766 void bond_loadbalance_arp_mon(struct work_struct *work)
2767 {
2768         struct bonding *bond = container_of(work, struct bonding,
2769                                             arp_work.work);
2770         struct slave *slave, *oldcurrent;
2771         int do_failover = 0;
2772         int delta_in_ticks;
2773         int i;
2774
2775         read_lock(&bond->lock);
2776
2777         delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
2778
2779         if (bond->slave_cnt == 0)
2780                 goto re_arm;
2781
2782         read_lock(&bond->curr_slave_lock);
2783         oldcurrent = bond->curr_active_slave;
2784         read_unlock(&bond->curr_slave_lock);
2785
2786         /* see if any of the previous devices are up now (i.e. they have
2787          * xmt and rcv traffic). the curr_active_slave does not come into
2788          * the picture unless it is null. also, slave->jiffies is not needed
2789          * here because we send an arp on each slave and give a slave as
2790          * long as it needs to get the tx/rx within the delta.
2791          * TODO: what about up/down delay in arp mode? it wasn't here before
2792          *       so it can wait
2793          */
2794         bond_for_each_slave(bond, slave, i) {
2795                 unsigned long trans_start = dev_trans_start(slave->dev);
2796
2797                 if (slave->link != BOND_LINK_UP) {
2798                         if (time_in_range(jiffies,
2799                                 trans_start - delta_in_ticks,
2800                                 trans_start + delta_in_ticks) &&
2801                             time_in_range(jiffies,
2802                                 slave->dev->last_rx - delta_in_ticks,
2803                                 slave->dev->last_rx + delta_in_ticks)) {
2804
2805                                 slave->link  = BOND_LINK_UP;
2806                                 bond_set_active_slave(slave);
2807
2808                                 /* primary_slave has no meaning in round-robin
2809                                  * mode. the window of a slave being up and
2810                                  * curr_active_slave being null after enslaving
2811                                  * is closed.
2812                                  */
2813                                 if (!oldcurrent) {
2814                                         pr_info("%s: link status definitely up for interface %s, ",
2815                                                 bond->dev->name,
2816                                                 slave->dev->name);
2817                                         do_failover = 1;
2818                                 } else {
2819                                         pr_info("%s: interface %s is now up\n",
2820                                                 bond->dev->name,
2821                                                 slave->dev->name);
2822                                 }
2823                         }
2824                 } else {
2825                         /* slave->link == BOND_LINK_UP */
2826
2827                         /* not all switches will respond to an arp request
2828                          * when the source ip is 0, so don't take the link down
2829                          * if we don't know our ip yet
2830                          */
2831                         if (!time_in_range(jiffies,
2832                                 trans_start - delta_in_ticks,
2833                                 trans_start + 2 * delta_in_ticks) ||
2834                             !time_in_range(jiffies,
2835                                 slave->dev->last_rx - delta_in_ticks,
2836                                 slave->dev->last_rx + 2 * delta_in_ticks)) {
2837
2838                                 slave->link  = BOND_LINK_DOWN;
2839                                 bond_set_backup_slave(slave);
2840
2841                                 if (slave->link_failure_count < UINT_MAX)
2842                                         slave->link_failure_count++;
2843
2844                                 pr_info("%s: interface %s is now down.\n",
2845                                         bond->dev->name,
2846                                         slave->dev->name);
2847
2848                                 if (slave == oldcurrent)
2849                                         do_failover = 1;
2850                         }
2851                 }
2852
2853                 /* note: if switch is in round-robin mode, all links
2854                  * must tx arp to ensure all links rx an arp - otherwise
2855                  * links may oscillate or not come up at all; if switch is
2856                  * in something like xor mode, there is nothing we can
2857                  * do - all replies will be rx'ed on same link causing slaves
2858                  * to be unstable during low/no traffic periods
2859                  */
2860                 if (IS_UP(slave->dev))
2861                         bond_arp_send_all(bond, slave);
2862         }
2863
2864         if (do_failover) {
2865                 block_netpoll_tx();
2866                 write_lock_bh(&bond->curr_slave_lock);
2867
2868                 bond_select_active_slave(bond);
2869
2870                 write_unlock_bh(&bond->curr_slave_lock);
2871                 unblock_netpoll_tx();
2872         }
2873
2874 re_arm:
2875         if (bond->params.arp_interval)
2876                 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
2877
2878         read_unlock(&bond->lock);
2879 }
2880
2881 /*
2882  * Called to inspect slaves for active-backup mode ARP monitor link state
2883  * changes.  Sets new_link in slaves to specify what action should take
2884  * place for the slave.  Returns 0 if no changes are found, >0 if changes
2885  * to link states must be committed.
2886  *
2887  * Called with bond->lock held for read.
2888  */
2889 static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
2890 {
2891         struct slave *slave;
2892         int i, commit = 0;
2893         unsigned long trans_start;
2894
2895         bond_for_each_slave(bond, slave, i) {
2896                 slave->new_link = BOND_LINK_NOCHANGE;
2897
2898                 if (slave->link != BOND_LINK_UP) {
2899                         if (time_in_range(jiffies,
2900                                 slave_last_rx(bond, slave) - delta_in_ticks,
2901                                 slave_last_rx(bond, slave) + delta_in_ticks)) {
2902
2903                                 slave->new_link = BOND_LINK_UP;
2904                                 commit++;
2905                         }
2906
2907                         continue;
2908                 }
2909
2910                 /*
2911                  * Give slaves 2*delta after being enslaved or made
2912                  * active.  This avoids bouncing, as the last receive
2913                  * times need a full ARP monitor cycle to be updated.
2914                  */
2915                 if (time_in_range(jiffies,
2916                                   slave->jiffies - delta_in_ticks,
2917                                   slave->jiffies + 2 * delta_in_ticks))
2918                         continue;
2919
2920                 /*
2921                  * Backup slave is down if:
2922                  * - No current_arp_slave AND
2923                  * - more than 3*delta since last receive AND
2924                  * - the bond has an IP address
2925                  *
2926                  * Note: a non-null current_arp_slave indicates
2927                  * the curr_active_slave went down and we are
2928                  * searching for a new one; under this condition
2929                  * we only take the curr_active_slave down - this
2930                  * gives each slave a chance to tx/rx traffic
2931                  * before being taken out
2932                  */
2933                 if (!bond_is_active_slave(slave) &&
2934                     !bond->current_arp_slave &&
2935                     !time_in_range(jiffies,
2936                         slave_last_rx(bond, slave) - delta_in_ticks,
2937                         slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2938
2939                         slave->new_link = BOND_LINK_DOWN;
2940                         commit++;
2941                 }
2942
2943                 /*
2944                  * Active slave is down if:
2945                  * - more than 2*delta since transmitting OR
2946                  * - (more than 2*delta since receive AND
2947                  *    the bond has an IP address)
2948                  */
2949                 trans_start = dev_trans_start(slave->dev);
2950                 if (bond_is_active_slave(slave) &&
2951                     (!time_in_range(jiffies,
2952                         trans_start - delta_in_ticks,
2953                         trans_start + 2 * delta_in_ticks) ||
2954                      !time_in_range(jiffies,
2955                         slave_last_rx(bond, slave) - delta_in_ticks,
2956                         slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
2957
2958                         slave->new_link = BOND_LINK_DOWN;
2959                         commit++;
2960                 }
2961         }
2962
2963         return commit;
2964 }
2965
2966 /*
2967  * Called to commit link state changes noted by inspection step of
2968  * active-backup mode ARP monitor.
2969  *
2970  * Called with RTNL and bond->lock for read.
2971  */
2972 static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2973 {
2974         struct slave *slave;
2975         int i;
2976         unsigned long trans_start;
2977
2978         bond_for_each_slave(bond, slave, i) {
2979                 switch (slave->new_link) {
2980                 case BOND_LINK_NOCHANGE:
2981                         continue;
2982
2983                 case BOND_LINK_UP:
2984                         trans_start = dev_trans_start(slave->dev);
2985                         if ((!bond->curr_active_slave &&
2986                              time_in_range(jiffies,
2987                                            trans_start - delta_in_ticks,
2988                                            trans_start + delta_in_ticks)) ||
2989                             bond->curr_active_slave != slave) {
2990                                 slave->link = BOND_LINK_UP;
2991                                 if (bond->current_arp_slave) {
2992                                         bond_set_slave_inactive_flags(
2993                                                 bond->current_arp_slave);
2994                                         bond->current_arp_slave = NULL;
2995                                 }
2996
2997                                 pr_info("%s: link status definitely up for interface %s.\n",
2998                                         bond->dev->name, slave->dev->name);
2999
3000                                 if (!bond->curr_active_slave ||
3001                                     (slave == bond->primary_slave))
3002                                         goto do_failover;
3003
3004                         }
3005
3006                         continue;
3007
3008                 case BOND_LINK_DOWN:
3009                         if (slave->link_failure_count < UINT_MAX)
3010                                 slave->link_failure_count++;
3011
3012                         slave->link = BOND_LINK_DOWN;
3013                         bond_set_slave_inactive_flags(slave);
3014
3015                         pr_info("%s: link status definitely down for interface %s, disabling it\n",
3016                                 bond->dev->name, slave->dev->name);
3017
3018                         if (slave == bond->curr_active_slave) {
3019                                 bond->current_arp_slave = NULL;
3020                                 goto do_failover;
3021                         }
3022
3023                         continue;
3024
3025                 default:
3026                         pr_err("%s: impossible: new_link %d on slave %s\n",
3027                                bond->dev->name, slave->new_link,
3028                                slave->dev->name);
3029                         continue;
3030                 }
3031
3032 do_failover:
3033                 ASSERT_RTNL();
3034                 block_netpoll_tx();
3035                 write_lock_bh(&bond->curr_slave_lock);
3036                 bond_select_active_slave(bond);
3037                 write_unlock_bh(&bond->curr_slave_lock);
3038                 unblock_netpoll_tx();
3039         }
3040
3041         bond_set_carrier(bond);
3042 }
3043
3044 /*
3045  * Send ARP probes for active-backup mode ARP monitor.
3046  *
3047  * Called with bond->lock held for read.
3048  */
3049 static void bond_ab_arp_probe(struct bonding *bond)
3050 {
3051         struct slave *slave;
3052         int i;
3053
3054         read_lock(&bond->curr_slave_lock);
3055
3056         if (bond->current_arp_slave && bond->curr_active_slave)
3057                 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3058                         bond->current_arp_slave->dev->name,
3059                         bond->curr_active_slave->dev->name);
3060
3061         if (bond->curr_active_slave) {
3062                 bond_arp_send_all(bond, bond->curr_active_slave);
3063                 read_unlock(&bond->curr_slave_lock);
3064                 return;
3065         }
3066
3067         read_unlock(&bond->curr_slave_lock);
3068
3069         /* if we don't have a curr_active_slave, search for the next available
3070          * backup slave from the current_arp_slave and make it the candidate
3071          * for becoming the curr_active_slave
3072          */
3073
3074         if (!bond->current_arp_slave) {
3075                 bond->current_arp_slave = bond->first_slave;
3076                 if (!bond->current_arp_slave)
3077                         return;
3078         }
3079
3080         bond_set_slave_inactive_flags(bond->current_arp_slave);
3081
3082         /* search for next candidate */
3083         bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3084                 if (IS_UP(slave->dev)) {
3085                         slave->link = BOND_LINK_BACK;
3086                         bond_set_slave_active_flags(slave);
3087                         bond_arp_send_all(bond, slave);
3088                         slave->jiffies = jiffies;
3089                         bond->current_arp_slave = slave;
3090                         break;
3091                 }
3092
3093                 /* if the link state is up at this point, we
3094                  * mark it down - this can happen if we have
3095                  * simultaneous link failures and
3096                  * reselect_active_interface doesn't make this
3097                  * one the current slave so it is still marked
3098                  * up when it is actually down
3099                  */
3100                 if (slave->link == BOND_LINK_UP) {
3101                         slave->link = BOND_LINK_DOWN;
3102                         if (slave->link_failure_count < UINT_MAX)
3103                                 slave->link_failure_count++;
3104
3105                         bond_set_slave_inactive_flags(slave);
3106
3107                         pr_info("%s: backup interface %s is now down.\n",
3108                                 bond->dev->name, slave->dev->name);
3109                 }
3110         }
3111 }
3112
3113 void bond_activebackup_arp_mon(struct work_struct *work)
3114 {
3115         struct bonding *bond = container_of(work, struct bonding,
3116                                             arp_work.work);
3117         bool should_notify_peers = false;
3118         int delta_in_ticks;
3119
3120         read_lock(&bond->lock);
3121
3122         delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3123
3124         if (bond->slave_cnt == 0)
3125                 goto re_arm;
3126
3127         should_notify_peers = bond_should_notify_peers(bond);
3128
3129         if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3130                 read_unlock(&bond->lock);
3131
3132                 /* Race avoidance with bond_close flush of workqueue */
3133                 if (!rtnl_trylock()) {
3134                         read_lock(&bond->lock);
3135                         delta_in_ticks = 1;
3136                         should_notify_peers = false;
3137                         goto re_arm;
3138                 }
3139
3140                 read_lock(&bond->lock);
3141
3142                 bond_ab_arp_commit(bond, delta_in_ticks);
3143
3144                 read_unlock(&bond->lock);
3145                 rtnl_unlock();
3146                 read_lock(&bond->lock);
3147         }
3148
3149         bond_ab_arp_probe(bond);
3150
3151 re_arm:
3152         if (bond->params.arp_interval)
3153                 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
3154
3155         read_unlock(&bond->lock);
3156
3157         if (should_notify_peers) {
3158                 if (!rtnl_trylock()) {
3159                         read_lock(&bond->lock);
3160                         bond->send_peer_notif++;
3161                         read_unlock(&bond->lock);
3162                         return;
3163                 }
3164                 netdev_bonding_change(bond->dev, NETDEV_NOTIFY_PEERS);
3165                 rtnl_unlock();
3166         }
3167 }
3168
3169 /*-------------------------- netdev event handling --------------------------*/
3170
3171 /*
3172  * Change device name
3173  */
3174 static int bond_event_changename(struct bonding *bond)
3175 {
3176         bond_remove_proc_entry(bond);
3177         bond_create_proc_entry(bond);
3178
3179         bond_debug_reregister(bond);
3180
3181         return NOTIFY_DONE;
3182 }
3183
3184 static int bond_master_netdev_event(unsigned long event,
3185                                     struct net_device *bond_dev)
3186 {
3187         struct bonding *event_bond = netdev_priv(bond_dev);
3188
3189         switch (event) {
3190         case NETDEV_CHANGENAME:
3191                 return bond_event_changename(event_bond);
3192         case NETDEV_UNREGISTER:
3193                 bond_remove_proc_entry(event_bond);
3194                 break;
3195         case NETDEV_REGISTER:
3196                 bond_create_proc_entry(event_bond);
3197                 break;
3198         default:
3199                 break;
3200         }
3201
3202         return NOTIFY_DONE;
3203 }
3204
3205 static int bond_slave_netdev_event(unsigned long event,
3206                                    struct net_device *slave_dev)
3207 {
3208         struct net_device *bond_dev = slave_dev->master;
3209         struct bonding *bond = netdev_priv(bond_dev);
3210         struct slave *slave = NULL;
3211
3212         switch (event) {
3213         case NETDEV_UNREGISTER:
3214                 if (bond_dev) {
3215                         if (bond->setup_by_slave)
3216                                 bond_release_and_destroy(bond_dev, slave_dev);
3217                         else
3218                                 bond_release(bond_dev, slave_dev);
3219                 }
3220                 break;
3221         case NETDEV_UP:
3222         case NETDEV_CHANGE:
3223                 slave = bond_get_slave_by_dev(bond, slave_dev);
3224                 if (slave) {
3225                         u32 old_speed = slave->speed;
3226                         u8  old_duplex = slave->duplex;
3227
3228                         bond_update_speed_duplex(slave);
3229
3230                         if (bond->params.mode == BOND_MODE_8023AD) {
3231                                 if (old_speed != slave->speed)
3232                                         bond_3ad_adapter_speed_changed(slave);
3233                                 if (old_duplex != slave->duplex)
3234                                         bond_3ad_adapter_duplex_changed(slave);
3235                         }
3236                 }
3237
3238                 break;
3239         case NETDEV_DOWN:
3240                 /*
3241                  * ... Or is it this?
3242                  */
3243                 break;
3244         case NETDEV_CHANGEMTU:
3245                 /*
3246                  * TODO: Should slaves be allowed to
3247                  * independently alter their MTU?  For
3248                  * an active-backup bond, slaves need
3249                  * not be the same type of device, so
3250                  * MTUs may vary.  For other modes,
3251                  * slaves arguably should have the
3252                  * same MTUs. To do this, we'd need to
3253                  * take over the slave's change_mtu
3254                  * function for the duration of their
3255                  * servitude.
3256                  */
3257                 break;
3258         case NETDEV_CHANGENAME:
3259                 /*
3260                  * TODO: handle changing the primary's name
3261                  */
3262                 break;
3263         case NETDEV_FEAT_CHANGE:
3264                 bond_compute_features(bond);
3265                 break;
3266         default:
3267                 break;
3268         }
3269
3270         return NOTIFY_DONE;
3271 }
3272
3273 /*
3274  * bond_netdev_event: handle netdev notifier chain events.
3275  *
3276  * This function receives events for the netdev chain.  The caller (an
3277  * ioctl handler calling blocking_notifier_call_chain) holds the necessary
3278  * locks for us to safely manipulate the slave devices (RTNL lock,
3279  * dev_probe_lock).
3280  */
3281 static int bond_netdev_event(struct notifier_block *this,
3282                              unsigned long event, void *ptr)
3283 {
3284         struct net_device *event_dev = (struct net_device *)ptr;
3285
3286         pr_debug("event_dev: %s, event: %lx\n",
3287                  event_dev ? event_dev->name : "None",
3288                  event);
3289
3290         if (!(event_dev->priv_flags & IFF_BONDING))
3291                 return NOTIFY_DONE;
3292
3293         if (event_dev->flags & IFF_MASTER) {
3294                 pr_debug("IFF_MASTER\n");
3295                 return bond_master_netdev_event(event, event_dev);
3296         }
3297
3298         if (event_dev->flags & IFF_SLAVE) {
3299                 pr_debug("IFF_SLAVE\n");
3300                 return bond_slave_netdev_event(event, event_dev);
3301         }
3302
3303         return NOTIFY_DONE;
3304 }
3305
3306 /*
3307  * bond_inetaddr_event: handle inetaddr notifier chain events.
3308  *
3309  * We keep track of device IPs primarily to use as source addresses in
3310  * ARP monitor probes (rather than spewing out broadcasts all the time).
3311  *
3312  * We track one IP for the main device (if it has one), plus one per VLAN.
3313  */
3314 static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3315 {
3316         struct in_ifaddr *ifa = ptr;
3317         struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
3318         struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
3319         struct bonding *bond;
3320         struct vlan_entry *vlan;
3321
3322         /* we only care about primary address */
3323         if(ifa->ifa_flags & IFA_F_SECONDARY)
3324                 return NOTIFY_DONE;
3325
3326         list_for_each_entry(bond, &bn->dev_list, bond_list) {
3327                 if (bond->dev == event_dev) {
3328                         switch (event) {
3329                         case NETDEV_UP:
3330                                 bond->master_ip = ifa->ifa_local;
3331                                 return NOTIFY_OK;
3332                         case NETDEV_DOWN:
3333                                 bond->master_ip = 0;
3334                                 return NOTIFY_OK;
3335                         default:
3336                                 return NOTIFY_DONE;
3337                         }
3338                 }
3339
3340                 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
3341                         vlan_dev = __vlan_find_dev_deep(bond->dev,
3342                                                         vlan->vlan_id);
3343                         if (vlan_dev == event_dev) {
3344                                 switch (event) {
3345                                 case NETDEV_UP:
3346                                         vlan->vlan_ip = ifa->ifa_local;
3347                                         return NOTIFY_OK;
3348                                 case NETDEV_DOWN:
3349                                         vlan->vlan_ip = 0;
3350                                         return NOTIFY_OK;
3351                                 default:
3352                                         return NOTIFY_DONE;
3353                                 }
3354                         }
3355                 }
3356         }
3357         return NOTIFY_DONE;
3358 }
3359
3360 static struct notifier_block bond_netdev_notifier = {
3361         .notifier_call = bond_netdev_event,
3362 };
3363
3364 static struct notifier_block bond_inetaddr_notifier = {
3365         .notifier_call = bond_inetaddr_event,
3366 };
3367
3368 /*---------------------------- Hashing Policies -----------------------------*/
3369
3370 /*
3371  * Hash for the output device based upon layer 2 and layer 3 data. If
3372  * the packet is not IP mimic bond_xmit_hash_policy_l2()
3373  */
3374 static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
3375 {
3376         struct ethhdr *data = (struct ethhdr *)skb->data;
3377         struct iphdr *iph = ip_hdr(skb);
3378
3379         if (skb->protocol == htons(ETH_P_IP)) {
3380                 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
3381                         (data->h_dest[5] ^ data->h_source[5])) % count;
3382         }
3383
3384         return (data->h_dest[5] ^ data->h_source[5]) % count;
3385 }
3386
3387 /*
3388  * Hash for the output device based upon layer 3 and layer 4 data. If
3389  * the packet is a frag or not TCP or UDP, just use layer 3 data.  If it is
3390  * altogether not IP, mimic bond_xmit_hash_policy_l2()
3391  */
3392 static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
3393 {
3394         struct ethhdr *data = (struct ethhdr *)skb->data;
3395         struct iphdr *iph = ip_hdr(skb);
3396         __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
3397         int layer4_xor = 0;
3398
3399         if (skb->protocol == htons(ETH_P_IP)) {
3400                 if (!ip_is_fragment(iph) &&
3401                     (iph->protocol == IPPROTO_TCP ||
3402                      iph->protocol == IPPROTO_UDP)) {
3403                         layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
3404                 }
3405                 return (layer4_xor ^
3406                         ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3407
3408         }
3409
3410         return (data->h_dest[5] ^ data->h_source[5]) % count;
3411 }
3412
3413 /*
3414  * Hash for the output device based upon layer 2 data
3415  */
3416 static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
3417 {
3418         struct ethhdr *data = (struct ethhdr *)skb->data;
3419
3420         return (data->h_dest[5] ^ data->h_source[5]) % count;
3421 }
3422
3423 /*-------------------------- Device entry points ----------------------------*/
3424
3425 static void bond_work_init_all(struct bonding *bond)
3426 {
3427         INIT_DELAYED_WORK(&bond->mcast_work,
3428                           bond_resend_igmp_join_requests_delayed);
3429         INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3430         INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3431         if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3432                 INIT_DELAYED_WORK(&bond->arp_work, bond_activebackup_arp_mon);
3433         else
3434                 INIT_DELAYED_WORK(&bond->arp_work, bond_loadbalance_arp_mon);
3435         INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
3436 }
3437
3438 static void bond_work_cancel_all(struct bonding *bond)
3439 {
3440         cancel_delayed_work_sync(&bond->mii_work);
3441         cancel_delayed_work_sync(&bond->arp_work);
3442         cancel_delayed_work_sync(&bond->alb_work);
3443         cancel_delayed_work_sync(&bond->ad_work);
3444         cancel_delayed_work_sync(&bond->mcast_work);
3445 }
3446
3447 static int bond_open(struct net_device *bond_dev)
3448 {
3449         struct bonding *bond = netdev_priv(bond_dev);
3450         struct slave *slave;
3451         int i;
3452
3453         /* reset slave->backup and slave->inactive */
3454         read_lock(&bond->lock);
3455         if (bond->slave_cnt > 0) {
3456                 read_lock(&bond->curr_slave_lock);
3457                 bond_for_each_slave(bond, slave, i) {
3458                         if ((bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3459                                 && (slave != bond->curr_active_slave)) {
3460                                 bond_set_slave_inactive_flags(slave);
3461                         } else {
3462                                 bond_set_slave_active_flags(slave);
3463                         }
3464                 }
3465                 read_unlock(&bond->curr_slave_lock);
3466         }
3467         read_unlock(&bond->lock);
3468
3469         bond_work_init_all(bond);
3470
3471         if (bond_is_lb(bond)) {
3472                 /* bond_alb_initialize must be called before the timer
3473                  * is started.
3474                  */
3475                 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB)))
3476                         return -ENOMEM;
3477                 queue_delayed_work(bond->wq, &bond->alb_work, 0);
3478         }
3479
3480         if (bond->params.miimon)  /* link check interval, in milliseconds. */
3481                 queue_delayed_work(bond->wq, &bond->mii_work, 0);
3482
3483         if (bond->params.arp_interval) {  /* arp interval, in milliseconds. */
3484                 queue_delayed_work(bond->wq, &bond->arp_work, 0);
3485                 if (bond->params.arp_validate)
3486                         bond->recv_probe = bond_arp_rcv;
3487         }
3488
3489         if (bond->params.mode == BOND_MODE_8023AD) {
3490                 queue_delayed_work(bond->wq, &bond->ad_work, 0);
3491                 /* register to receive LACPDUs */
3492                 bond->recv_probe = bond_3ad_lacpdu_recv;
3493                 bond_3ad_initiate_agg_selection(bond, 1);
3494         }
3495
3496         return 0;
3497 }
3498
3499 static int bond_close(struct net_device *bond_dev)
3500 {
3501         struct bonding *bond = netdev_priv(bond_dev);
3502
3503         write_lock_bh(&bond->lock);
3504         bond->send_peer_notif = 0;
3505         write_unlock_bh(&bond->lock);
3506
3507         bond_work_cancel_all(bond);
3508         if (bond_is_lb(bond)) {
3509                 /* Must be called only after all
3510                  * slaves have been released
3511                  */
3512                 bond_alb_deinitialize(bond);
3513         }
3514         bond->recv_probe = NULL;
3515
3516         return 0;
3517 }
3518
3519 static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3520                                                 struct rtnl_link_stats64 *stats)
3521 {
3522         struct bonding *bond = netdev_priv(bond_dev);
3523         struct rtnl_link_stats64 temp;
3524         struct slave *slave;
3525         int i;
3526
3527         memset(stats, 0, sizeof(*stats));
3528
3529         read_lock_bh(&bond->lock);
3530
3531         bond_for_each_slave(bond, slave, i) {
3532                 const struct rtnl_link_stats64 *sstats =
3533                         dev_get_stats(slave->dev, &temp);
3534
3535                 stats->rx_packets += sstats->rx_packets;
3536                 stats->rx_bytes += sstats->rx_bytes;
3537                 stats->rx_errors += sstats->rx_errors;
3538                 stats->rx_dropped += sstats->rx_dropped;
3539
3540                 stats->tx_packets += sstats->tx_packets;
3541                 stats->tx_bytes += sstats->tx_bytes;
3542                 stats->tx_errors += sstats->tx_errors;
3543                 stats->tx_dropped += sstats->tx_dropped;
3544
3545                 stats->multicast += sstats->multicast;
3546                 stats->collisions += sstats->collisions;
3547
3548                 stats->rx_length_errors += sstats->rx_length_errors;
3549                 stats->rx_over_errors += sstats->rx_over_errors;
3550                 stats->rx_crc_errors += sstats->rx_crc_errors;
3551                 stats->rx_frame_errors += sstats->rx_frame_errors;
3552                 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3553                 stats->rx_missed_errors += sstats->rx_missed_errors;
3554
3555                 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3556                 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3557                 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3558                 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3559                 stats->tx_window_errors += sstats->tx_window_errors;
3560         }
3561
3562         read_unlock_bh(&bond->lock);
3563
3564         return stats;
3565 }
3566
3567 static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3568 {
3569         struct net_device *slave_dev = NULL;
3570         struct ifbond k_binfo;
3571         struct ifbond __user *u_binfo = NULL;
3572         struct ifslave k_sinfo;
3573         struct ifslave __user *u_sinfo = NULL;
3574         struct mii_ioctl_data *mii = NULL;
3575         int res = 0;
3576
3577         pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
3578
3579         switch (cmd) {
3580         case SIOCGMIIPHY:
3581                 mii = if_mii(ifr);
3582                 if (!mii)
3583                         return -EINVAL;
3584
3585                 mii->phy_id = 0;
3586                 /* Fall Through */
3587         case SIOCGMIIREG:
3588                 /*
3589                  * We do this again just in case we were called by SIOCGMIIREG
3590                  * instead of SIOCGMIIPHY.
3591                  */
3592                 mii = if_mii(ifr);
3593                 if (!mii)
3594                         return -EINVAL;
3595
3596
3597                 if (mii->reg_num == 1) {
3598                         struct bonding *bond = netdev_priv(bond_dev);
3599                         mii->val_out = 0;
3600                         read_lock(&bond->lock);
3601                         read_lock(&bond->curr_slave_lock);
3602                         if (netif_carrier_ok(bond->dev))
3603                                 mii->val_out = BMSR_LSTATUS;
3604
3605                         read_unlock(&bond->curr_slave_lock);
3606                         read_unlock(&bond->lock);
3607                 }
3608
3609                 return 0;
3610         case BOND_INFO_QUERY_OLD:
3611         case SIOCBONDINFOQUERY:
3612                 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3613
3614                 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
3615                         return -EFAULT;
3616
3617                 res = bond_info_query(bond_dev, &k_binfo);
3618                 if (res == 0 &&
3619                     copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3620                         return -EFAULT;
3621
3622                 return res;
3623         case BOND_SLAVE_INFO_QUERY_OLD:
3624         case SIOCBONDSLAVEINFOQUERY:
3625                 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3626
3627                 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
3628                         return -EFAULT;
3629
3630                 res = bond_slave_info_query(bond_dev, &k_sinfo);
3631                 if (res == 0 &&
3632                     copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3633                         return -EFAULT;
3634
3635                 return res;
3636         default:
3637                 /* Go on */
3638                 break;
3639         }
3640
3641         if (!capable(CAP_NET_ADMIN))
3642                 return -EPERM;
3643
3644         slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
3645
3646         pr_debug("slave_dev=%p:\n", slave_dev);
3647
3648         if (!slave_dev)
3649                 res = -ENODEV;
3650         else {
3651                 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
3652                 switch (cmd) {
3653                 case BOND_ENSLAVE_OLD:
3654                 case SIOCBONDENSLAVE:
3655                         res = bond_enslave(bond_dev, slave_dev);
3656                         break;
3657                 case BOND_RELEASE_OLD:
3658                 case SIOCBONDRELEASE:
3659                         res = bond_release(bond_dev, slave_dev);
3660                         break;
3661                 case BOND_SETHWADDR_OLD:
3662                 case SIOCBONDSETHWADDR:
3663                         res = bond_sethwaddr(bond_dev, slave_dev);
3664                         break;
3665                 case BOND_CHANGE_ACTIVE_OLD:
3666                 case SIOCBONDCHANGEACTIVE:
3667                         res = bond_ioctl_change_active(bond_dev, slave_dev);
3668                         break;
3669                 default:
3670                         res = -EOPNOTSUPP;
3671                 }
3672
3673                 dev_put(slave_dev);
3674         }
3675
3676         return res;
3677 }
3678
3679 static bool bond_addr_in_mc_list(unsigned char *addr,
3680                                  struct netdev_hw_addr_list *list,
3681                                  int addrlen)
3682 {
3683         struct netdev_hw_addr *ha;
3684
3685         netdev_hw_addr_list_for_each(ha, list)
3686                 if (!memcmp(ha->addr, addr, addrlen))
3687                         return true;
3688
3689         return false;
3690 }
3691
3692 static void bond_change_rx_flags(struct net_device *bond_dev, int change)
3693 {
3694         struct bonding *bond = netdev_priv(bond_dev);
3695
3696         if (change & IFF_PROMISC)
3697                 bond_set_promiscuity(bond,
3698                                      bond_dev->flags & IFF_PROMISC ? 1 : -1);
3699
3700         if (change & IFF_ALLMULTI)
3701                 bond_set_allmulti(bond,
3702                                   bond_dev->flags & IFF_ALLMULTI ? 1 : -1);
3703 }
3704
3705 static void bond_set_multicast_list(struct net_device *bond_dev)
3706 {
3707         struct bonding *bond = netdev_priv(bond_dev);
3708         struct netdev_hw_addr *ha;
3709         bool found;
3710
3711         read_lock(&bond->lock);
3712
3713         /* looking for addresses to add to slaves' mc list */
3714         netdev_for_each_mc_addr(ha, bond_dev) {
3715                 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
3716                                              bond_dev->addr_len);
3717                 if (!found)
3718                         bond_mc_add(bond, ha->addr);
3719         }
3720
3721         /* looking for addresses to delete from slaves' list */
3722         netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
3723                 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
3724                                              bond_dev->addr_len);
3725                 if (!found)
3726                         bond_mc_del(bond, ha->addr);
3727         }
3728
3729         /* save master's multicast list */
3730         __hw_addr_flush(&bond->mc_list);
3731         __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
3732                                bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
3733
3734         read_unlock(&bond->lock);
3735 }
3736
3737 static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
3738 {
3739         struct bonding *bond = netdev_priv(dev);
3740         struct slave *slave = bond->first_slave;
3741
3742         if (slave) {
3743                 const struct net_device_ops *slave_ops
3744                         = slave->dev->netdev_ops;
3745                 if (slave_ops->ndo_neigh_setup)
3746                         return slave_ops->ndo_neigh_setup(slave->dev, parms);
3747         }
3748         return 0;
3749 }
3750
3751 /*
3752  * Change the MTU of all of a master's slaves to match the master
3753  */
3754 static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
3755 {
3756         struct bonding *bond = netdev_priv(bond_dev);
3757         struct slave *slave, *stop_at;
3758         int res = 0;
3759         int i;
3760
3761         pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
3762                  (bond_dev ? bond_dev->name : "None"), new_mtu);
3763
3764         /* Can't hold bond->lock with bh disabled here since
3765          * some base drivers panic. On the other hand we can't
3766          * hold bond->lock without bh disabled because we'll
3767          * deadlock. The only solution is to rely on the fact
3768          * that we're under rtnl_lock here, and the slaves
3769          * list won't change. This doesn't solve the problem
3770          * of setting the slave's MTU while it is
3771          * transmitting, but the assumption is that the base
3772          * driver can handle that.
3773          *
3774          * TODO: figure out a way to safely iterate the slaves
3775          * list, but without holding a lock around the actual
3776          * call to the base driver.
3777          */
3778
3779         bond_for_each_slave(bond, slave, i) {
3780                 pr_debug("s %p s->p %p c_m %p\n",
3781                          slave,
3782                          slave->prev,
3783                          slave->dev->netdev_ops->ndo_change_mtu);
3784
3785                 res = dev_set_mtu(slave->dev, new_mtu);
3786
3787                 if (res) {
3788                         /* If we failed to set the slave's mtu to the new value
3789                          * we must abort the operation even in ACTIVE_BACKUP
3790                          * mode, because if we allow the backup slaves to have
3791                          * different mtu values than the active slave we'll
3792                          * need to change their mtu when doing a failover. That
3793                          * means changing their mtu from timer context, which
3794                          * is probably not a good idea.
3795                          */
3796                         pr_debug("err %d %s\n", res, slave->dev->name);
3797                         goto unwind;
3798                 }
3799         }
3800
3801         bond_dev->mtu = new_mtu;
3802
3803         return 0;
3804
3805 unwind:
3806         /* unwind from head to the slave that failed */
3807         stop_at = slave;
3808         bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
3809                 int tmp_res;
3810
3811                 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
3812                 if (tmp_res) {
3813                         pr_debug("unwind err %d dev %s\n",
3814                                  tmp_res, slave->dev->name);
3815                 }
3816         }
3817
3818         return res;
3819 }
3820
3821 /*
3822  * Change HW address
3823  *
3824  * Note that many devices must be down to change the HW address, and
3825  * downing the master releases all slaves.  We can make bonds full of
3826  * bonding devices to test this, however.
3827  */
3828 static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
3829 {
3830         struct bonding *bond = netdev_priv(bond_dev);
3831         struct sockaddr *sa = addr, tmp_sa;
3832         struct slave *slave, *stop_at;
3833         int res = 0;
3834         int i;
3835
3836         if (bond->params.mode == BOND_MODE_ALB)
3837                 return bond_alb_set_mac_address(bond_dev, addr);
3838
3839
3840         pr_debug("bond=%p, name=%s\n",
3841                  bond, bond_dev ? bond_dev->name : "None");
3842
3843         /*
3844          * If fail_over_mac is set to active, do nothing and return
3845          * success.  Returning an error causes ifenslave to fail.
3846          */
3847         if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
3848                 return 0;
3849
3850         if (!is_valid_ether_addr(sa->sa_data))
3851                 return -EADDRNOTAVAIL;
3852
3853         /* Can't hold bond->lock with bh disabled here since
3854          * some base drivers panic. On the other hand we can't
3855          * hold bond->lock without bh disabled because we'll
3856          * deadlock. The only solution is to rely on the fact
3857          * that we're under rtnl_lock here, and the slaves
3858          * list won't change. This doesn't solve the problem
3859          * of setting the slave's hw address while it is
3860          * transmitting, but the assumption is that the base
3861          * driver can handle that.
3862          *
3863          * TODO: figure out a way to safely iterate the slaves
3864          * list, but without holding a lock around the actual
3865          * call to the base driver.
3866          */
3867
3868         bond_for_each_slave(bond, slave, i) {
3869                 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
3870                 pr_debug("slave %p %s\n", slave, slave->dev->name);
3871
3872                 if (slave_ops->ndo_set_mac_address == NULL) {
3873                         res = -EOPNOTSUPP;
3874                         pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
3875                         goto unwind;
3876                 }
3877
3878                 res = dev_set_mac_address(slave->dev, addr);
3879                 if (res) {
3880                         /* TODO: consider downing the slave
3881                          * and retry ?
3882                          * User should expect communications
3883                          * breakage anyway until ARP finish
3884                          * updating, so...
3885                          */
3886                         pr_debug("err %d %s\n", res, slave->dev->name);
3887                         goto unwind;
3888                 }
3889         }
3890
3891         /* success */
3892         memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
3893         return 0;
3894
3895 unwind:
3896         memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
3897         tmp_sa.sa_family = bond_dev->type;
3898
3899         /* unwind from head to the slave that failed */
3900         stop_at = slave;
3901         bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
3902                 int tmp_res;
3903
3904                 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
3905                 if (tmp_res) {
3906                         pr_debug("unwind err %d dev %s\n",
3907                                  tmp_res, slave->dev->name);
3908                 }
3909         }
3910
3911         return res;
3912 }
3913
3914 static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
3915 {
3916         struct bonding *bond = netdev_priv(bond_dev);
3917         struct slave *slave, *start_at;
3918         int i, slave_no, res = 1;
3919         struct iphdr *iph = ip_hdr(skb);
3920
3921         /*
3922          * Start with the curr_active_slave that joined the bond as the
3923          * default for sending IGMP traffic.  For failover purposes one
3924          * needs to maintain some consistency for the interface that will
3925          * send the join/membership reports.  The curr_active_slave found
3926          * will send all of this type of traffic.
3927          */
3928         if ((iph->protocol == IPPROTO_IGMP) &&
3929             (skb->protocol == htons(ETH_P_IP))) {
3930
3931                 read_lock(&bond->curr_slave_lock);
3932                 slave = bond->curr_active_slave;
3933                 read_unlock(&bond->curr_slave_lock);
3934
3935                 if (!slave)
3936                         goto out;
3937         } else {
3938                 /*
3939                  * Concurrent TX may collide on rr_tx_counter; we accept
3940                  * that as being rare enough not to justify using an
3941                  * atomic op here.
3942                  */
3943                 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
3944
3945                 bond_for_each_slave(bond, slave, i) {
3946                         slave_no--;
3947                         if (slave_no < 0)
3948                                 break;
3949                 }
3950         }
3951
3952         start_at = slave;
3953         bond_for_each_slave_from(bond, slave, i, start_at) {
3954                 if (IS_UP(slave->dev) &&
3955                     (slave->link == BOND_LINK_UP) &&
3956                     bond_is_active_slave(slave)) {
3957                         res = bond_dev_queue_xmit(bond, skb, slave->dev);
3958                         break;
3959                 }
3960         }
3961
3962 out:
3963         if (res) {
3964                 /* no suitable interface, frame not sent */
3965                 dev_kfree_skb(skb);
3966         }
3967
3968         return NETDEV_TX_OK;
3969 }
3970
3971
3972 /*
3973  * in active-backup mode, we know that bond->curr_active_slave is always valid if
3974  * the bond has a usable interface.
3975  */
3976 static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
3977 {
3978         struct bonding *bond = netdev_priv(bond_dev);
3979         int res = 1;
3980
3981         read_lock(&bond->curr_slave_lock);
3982
3983         if (bond->curr_active_slave)
3984                 res = bond_dev_queue_xmit(bond, skb,
3985                         bond->curr_active_slave->dev);
3986
3987         if (res)
3988                 /* no suitable interface, frame not sent */
3989                 dev_kfree_skb(skb);
3990
3991         read_unlock(&bond->curr_slave_lock);
3992
3993         return NETDEV_TX_OK;
3994 }
3995
3996 /*
3997  * In bond_xmit_xor() , we determine the output device by using a pre-
3998  * determined xmit_hash_policy(), If the selected device is not enabled,
3999  * find the next active slave.
4000  */
4001 static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4002 {
4003         struct bonding *bond = netdev_priv(bond_dev);
4004         struct slave *slave, *start_at;
4005         int slave_no;
4006         int i;
4007         int res = 1;
4008
4009         slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
4010
4011         bond_for_each_slave(bond, slave, i) {
4012                 slave_no--;
4013                 if (slave_no < 0)
4014                         break;
4015         }
4016
4017         start_at = slave;
4018
4019         bond_for_each_slave_from(bond, slave, i, start_at) {
4020                 if (IS_UP(slave->dev) &&
4021                     (slave->link == BOND_LINK_UP) &&
4022                     bond_is_active_slave(slave)) {
4023                         res = bond_dev_queue_xmit(bond, skb, slave->dev);
4024                         break;
4025                 }
4026         }
4027
4028         if (res) {
4029                 /* no suitable interface, frame not sent */
4030                 dev_kfree_skb(skb);
4031         }
4032
4033         return NETDEV_TX_OK;
4034 }
4035
4036 /*
4037  * in broadcast mode, we send everything to all usable interfaces.
4038  */
4039 static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4040 {
4041         struct bonding *bond = netdev_priv(bond_dev);
4042         struct slave *slave, *start_at;
4043         struct net_device *tx_dev = NULL;
4044         int i;
4045         int res = 1;
4046
4047         read_lock(&bond->curr_slave_lock);
4048         start_at = bond->curr_active_slave;
4049         read_unlock(&bond->curr_slave_lock);
4050
4051         if (!start_at)
4052                 goto out;
4053
4054         bond_for_each_slave_from(bond, slave, i, start_at) {
4055                 if (IS_UP(slave->dev) &&
4056                     (slave->link == BOND_LINK_UP) &&
4057                     bond_is_active_slave(slave)) {
4058                         if (tx_dev) {
4059                                 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4060                                 if (!skb2) {
4061                                         pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
4062                                                bond_dev->name);
4063                                         continue;
4064                                 }
4065
4066                                 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4067                                 if (res) {
4068                                         dev_kfree_skb(skb2);
4069                                         continue;
4070                                 }
4071                         }
4072                         tx_dev = slave->dev;
4073                 }
4074         }
4075
4076         if (tx_dev)
4077                 res = bond_dev_queue_xmit(bond, skb, tx_dev);
4078
4079 out:
4080         if (res)
4081                 /* no suitable interface, frame not sent */
4082                 dev_kfree_skb(skb);
4083
4084         /* frame sent to all suitable interfaces */
4085         return NETDEV_TX_OK;
4086 }
4087
4088 /*------------------------- Device initialization ---------------------------*/
4089
4090 static void bond_set_xmit_hash_policy(struct bonding *bond)
4091 {
4092         switch (bond->params.xmit_policy) {
4093         case BOND_XMIT_POLICY_LAYER23:
4094                 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4095                 break;
4096         case BOND_XMIT_POLICY_LAYER34:
4097                 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4098                 break;
4099         case BOND_XMIT_POLICY_LAYER2:
4100         default:
4101                 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4102                 break;
4103         }
4104 }
4105
4106 /*
4107  * Lookup the slave that corresponds to a qid
4108  */
4109 static inline int bond_slave_override(struct bonding *bond,
4110                                       struct sk_buff *skb)
4111 {
4112         int i, res = 1;
4113         struct slave *slave = NULL;
4114         struct slave *check_slave;
4115
4116         if (!skb->queue_mapping)
4117                 return 1;
4118
4119         /* Find out if any slaves have the same mapping as this skb. */
4120         bond_for_each_slave(bond, check_slave, i) {
4121                 if (check_slave->queue_id == skb->queue_mapping) {
4122                         slave = check_slave;
4123                         break;
4124                 }
4125         }
4126
4127         /* If the slave isn't UP, use default transmit policy. */
4128         if (slave && slave->queue_id && IS_UP(slave->dev) &&
4129             (slave->link == BOND_LINK_UP)) {
4130                 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4131         }
4132
4133         return res;
4134 }
4135
4136
4137 static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4138 {
4139         /*
4140          * This helper function exists to help dev_pick_tx get the correct
4141          * destination queue.  Using a helper function skips a call to
4142          * skb_tx_hash and will put the skbs in the queue we expect on their
4143          * way down to the bonding driver.
4144          */
4145         u16 txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : 0;
4146
4147         /*
4148          * Save the original txq to restore before passing to the driver
4149          */
4150         qdisc_skb_cb(skb)->bond_queue_mapping = skb->queue_mapping;
4151
4152         if (unlikely(txq >= dev->real_num_tx_queues)) {
4153                 do {
4154                         txq -= dev->real_num_tx_queues;
4155                 } while (txq >= dev->real_num_tx_queues);
4156         }
4157         return txq;
4158 }
4159
4160 static netdev_tx_t __bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4161 {
4162         struct bonding *bond = netdev_priv(dev);
4163
4164         if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4165                 if (!bond_slave_override(bond, skb))
4166                         return NETDEV_TX_OK;
4167         }
4168
4169         switch (bond->params.mode) {
4170         case BOND_MODE_ROUNDROBIN:
4171                 return bond_xmit_roundrobin(skb, dev);
4172         case BOND_MODE_ACTIVEBACKUP:
4173                 return bond_xmit_activebackup(skb, dev);
4174         case BOND_MODE_XOR:
4175                 return bond_xmit_xor(skb, dev);
4176         case BOND_MODE_BROADCAST:
4177                 return bond_xmit_broadcast(skb, dev);
4178         case BOND_MODE_8023AD:
4179                 return bond_3ad_xmit_xor(skb, dev);
4180         case BOND_MODE_ALB:
4181         case BOND_MODE_TLB:
4182                 return bond_alb_xmit(skb, dev);
4183         default:
4184                 /* Should never happen, mode already checked */
4185                 pr_err("%s: Error: Unknown bonding mode %d\n",
4186                        dev->name, bond->params.mode);
4187                 WARN_ON_ONCE(1);
4188                 dev_kfree_skb(skb);
4189                 return NETDEV_TX_OK;
4190         }
4191 }
4192
4193 static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4194 {
4195         struct bonding *bond = netdev_priv(dev);
4196         netdev_tx_t ret = NETDEV_TX_OK;
4197
4198         /*
4199          * If we risk deadlock from transmitting this in the
4200          * netpoll path, tell netpoll to queue the frame for later tx
4201          */
4202         if (is_netpoll_tx_blocked(dev))
4203                 return NETDEV_TX_BUSY;
4204
4205         read_lock(&bond->lock);
4206
4207         if (bond->slave_cnt)
4208                 ret = __bond_start_xmit(skb, dev);
4209         else
4210                 dev_kfree_skb(skb);
4211
4212         read_unlock(&bond->lock);
4213
4214         return ret;
4215 }
4216
4217 /*
4218  * set bond mode specific net device operations
4219  */
4220 void bond_set_mode_ops(struct bonding *bond, int mode)
4221 {
4222         struct net_device *bond_dev = bond->dev;
4223
4224         switch (mode) {
4225         case BOND_MODE_ROUNDROBIN:
4226                 break;
4227         case BOND_MODE_ACTIVEBACKUP:
4228                 break;
4229         case BOND_MODE_XOR:
4230                 bond_set_xmit_hash_policy(bond);
4231                 break;
4232         case BOND_MODE_BROADCAST:
4233                 break;
4234         case BOND_MODE_8023AD:
4235                 bond_set_xmit_hash_policy(bond);
4236                 break;
4237         case BOND_MODE_ALB:
4238                 /* FALLTHRU */
4239         case BOND_MODE_TLB:
4240                 break;
4241         default:
4242                 /* Should never happen, mode already checked */
4243                 pr_err("%s: Error: Unknown bonding mode %d\n",
4244                        bond_dev->name, mode);
4245                 break;
4246         }
4247 }
4248
4249 static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4250                                     struct ethtool_drvinfo *drvinfo)
4251 {
4252         strncpy(drvinfo->driver, DRV_NAME, 32);
4253         strncpy(drvinfo->version, DRV_VERSION, 32);
4254         snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4255 }
4256
4257 static const struct ethtool_ops bond_ethtool_ops = {
4258         .get_drvinfo            = bond_ethtool_get_drvinfo,
4259         .get_link               = ethtool_op_get_link,
4260 };
4261
4262 static const struct net_device_ops bond_netdev_ops = {
4263         .ndo_init               = bond_init,
4264         .ndo_uninit             = bond_uninit,
4265         .ndo_open               = bond_open,
4266         .ndo_stop               = bond_close,
4267         .ndo_start_xmit         = bond_start_xmit,
4268         .ndo_select_queue       = bond_select_queue,
4269         .ndo_get_stats64        = bond_get_stats,
4270         .ndo_do_ioctl           = bond_do_ioctl,
4271         .ndo_change_rx_flags    = bond_change_rx_flags,
4272         .ndo_set_rx_mode        = bond_set_multicast_list,
4273         .ndo_change_mtu         = bond_change_mtu,
4274         .ndo_set_mac_address    = bond_set_mac_address,
4275         .ndo_neigh_setup        = bond_neigh_setup,
4276         .ndo_vlan_rx_add_vid    = bond_vlan_rx_add_vid,
4277         .ndo_vlan_rx_kill_vid   = bond_vlan_rx_kill_vid,
4278 #ifdef CONFIG_NET_POLL_CONTROLLER
4279         .ndo_netpoll_setup      = bond_netpoll_setup,
4280         .ndo_netpoll_cleanup    = bond_netpoll_cleanup,
4281         .ndo_poll_controller    = bond_poll_controller,
4282 #endif
4283         .ndo_add_slave          = bond_enslave,
4284         .ndo_del_slave          = bond_release,
4285         .ndo_fix_features       = bond_fix_features,
4286 };
4287
4288 static void bond_destructor(struct net_device *bond_dev)
4289 {
4290         struct bonding *bond = netdev_priv(bond_dev);
4291         if (bond->wq)
4292                 destroy_workqueue(bond->wq);
4293         free_netdev(bond_dev);
4294 }
4295
4296 static void bond_setup(struct net_device *bond_dev)
4297 {
4298         struct bonding *bond = netdev_priv(bond_dev);
4299
4300         /* initialize rwlocks */
4301         rwlock_init(&bond->lock);
4302         rwlock_init(&bond->curr_slave_lock);
4303
4304         bond->params = bonding_defaults;
4305
4306         /* Initialize pointers */
4307         bond->dev = bond_dev;
4308         INIT_LIST_HEAD(&bond->vlan_list);
4309
4310         /* Initialize the device entry points */
4311         ether_setup(bond_dev);
4312         bond_dev->netdev_ops = &bond_netdev_ops;
4313         bond_dev->ethtool_ops = &bond_ethtool_ops;
4314         bond_set_mode_ops(bond, bond->params.mode);
4315
4316         bond_dev->destructor = bond_destructor;
4317
4318         /* Initialize the device options */
4319         bond_dev->tx_queue_len = 0;
4320         bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
4321         bond_dev->priv_flags |= IFF_BONDING;
4322         bond_dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
4323
4324         /* At first, we block adding VLANs. That's the only way to
4325          * prevent problems that occur when adding VLANs over an
4326          * empty bond. The block will be removed once non-challenged
4327          * slaves are enslaved.
4328          */
4329         bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4330
4331         /* don't acquire bond device's netif_tx_lock when
4332          * transmitting */
4333         bond_dev->features |= NETIF_F_LLTX;
4334
4335         /* By default, we declare the bond to be fully
4336          * VLAN hardware accelerated capable. Special
4337          * care is taken in the various xmit functions
4338          * when there are slaves that are not hw accel
4339          * capable
4340          */
4341
4342         bond_dev->hw_features = BOND_VLAN_FEATURES |
4343                                 NETIF_F_HW_VLAN_TX |
4344                                 NETIF_F_HW_VLAN_RX |
4345                                 NETIF_F_HW_VLAN_FILTER;
4346
4347         bond_dev->hw_features &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_NO_CSUM);
4348         bond_dev->features |= bond_dev->hw_features;
4349 }
4350
4351 /*
4352 * Destroy a bonding device.
4353 * Must be under rtnl_lock when this function is called.
4354 */
4355 static void bond_uninit(struct net_device *bond_dev)
4356 {
4357         struct bonding *bond = netdev_priv(bond_dev);
4358         struct vlan_entry *vlan, *tmp;
4359
4360         bond_netpoll_cleanup(bond_dev);
4361
4362         /* Release the bonded slaves */
4363         bond_release_all(bond_dev);
4364
4365         list_del(&bond->bond_list);
4366
4367         bond_work_cancel_all(bond);
4368
4369         bond_debug_unregister(bond);
4370
4371         __hw_addr_flush(&bond->mc_list);
4372
4373         list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4374                 list_del(&vlan->vlan_list);
4375                 kfree(vlan);
4376         }
4377 }
4378
4379 /*------------------------- Module initialization ---------------------------*/
4380
4381 /*
4382  * Convert string input module parms.  Accept either the
4383  * number of the mode or its string name.  A bit complicated because
4384  * some mode names are substrings of other names, and calls from sysfs
4385  * may have whitespace in the name (trailing newlines, for example).
4386  */
4387 int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
4388 {
4389         int modeint = -1, i, rv;
4390         char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
4391
4392         for (p = (char *)buf; *p; p++)
4393                 if (!(isdigit(*p) || isspace(*p)))
4394                         break;
4395
4396         if (*p)
4397                 rv = sscanf(buf, "%20s", modestr);
4398         else
4399                 rv = sscanf(buf, "%d", &modeint);
4400
4401         if (!rv)
4402                 return -1;
4403
4404         for (i = 0; tbl[i].modename; i++) {
4405                 if (modeint == tbl[i].mode)
4406                         return tbl[i].mode;
4407                 if (strcmp(modestr, tbl[i].modename) == 0)
4408                         return tbl[i].mode;
4409         }
4410
4411         return -1;
4412 }
4413
4414 static int bond_check_params(struct bond_params *params)
4415 {
4416         int arp_validate_value, fail_over_mac_value, primary_reselect_value;
4417
4418         /*
4419          * Convert string parameters.
4420          */
4421         if (mode) {
4422                 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4423                 if (bond_mode == -1) {
4424                         pr_err("Error: Invalid bonding mode \"%s\"\n",
4425                                mode == NULL ? "NULL" : mode);
4426                         return -EINVAL;
4427                 }
4428         }
4429
4430         if (xmit_hash_policy) {
4431                 if ((bond_mode != BOND_MODE_XOR) &&
4432                     (bond_mode != BOND_MODE_8023AD)) {
4433                         pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
4434                                bond_mode_name(bond_mode));
4435                 } else {
4436                         xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4437                                                         xmit_hashtype_tbl);
4438                         if (xmit_hashtype == -1) {
4439                                 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
4440                                        xmit_hash_policy == NULL ? "NULL" :
4441                                        xmit_hash_policy);
4442                                 return -EINVAL;
4443                         }
4444                 }
4445         }
4446
4447         if (lacp_rate) {
4448                 if (bond_mode != BOND_MODE_8023AD) {
4449                         pr_info("lacp_rate param is irrelevant in mode %s\n",
4450                                 bond_mode_name(bond_mode));
4451                 } else {
4452                         lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4453                         if (lacp_fast == -1) {
4454                                 pr_err("Error: Invalid lacp rate \"%s\"\n",
4455                                        lacp_rate == NULL ? "NULL" : lacp_rate);
4456                                 return -EINVAL;
4457                         }
4458                 }
4459         }
4460
4461         if (ad_select) {
4462                 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4463                 if (params->ad_select == -1) {
4464                         pr_err("Error: Invalid ad_select \"%s\"\n",
4465                                ad_select == NULL ? "NULL" : ad_select);
4466                         return -EINVAL;
4467                 }
4468
4469                 if (bond_mode != BOND_MODE_8023AD) {
4470                         pr_warning("ad_select param only affects 802.3ad mode\n");
4471                 }
4472         } else {
4473                 params->ad_select = BOND_AD_STABLE;
4474         }
4475
4476         if (max_bonds < 0) {
4477                 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4478                            max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
4479                 max_bonds = BOND_DEFAULT_MAX_BONDS;
4480         }
4481
4482         if (miimon < 0) {
4483                 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4484                            miimon, INT_MAX, BOND_LINK_MON_INTERV);
4485                 miimon = BOND_LINK_MON_INTERV;
4486         }
4487
4488         if (updelay < 0) {
4489                 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4490                            updelay, INT_MAX);
4491                 updelay = 0;
4492         }
4493
4494         if (downdelay < 0) {
4495                 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4496                            downdelay, INT_MAX);
4497                 downdelay = 0;
4498         }
4499
4500         if ((use_carrier != 0) && (use_carrier != 1)) {
4501                 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4502                            use_carrier);
4503                 use_carrier = 1;
4504         }
4505
4506         if (num_peer_notif < 0 || num_peer_notif > 255) {
4507                 pr_warning("Warning: num_grat_arp/num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
4508                            num_peer_notif);
4509                 num_peer_notif = 1;
4510         }
4511
4512         /* reset values for 802.3ad */
4513         if (bond_mode == BOND_MODE_8023AD) {
4514                 if (!miimon) {
4515                         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");
4516                         pr_warning("Forcing miimon to 100msec\n");
4517                         miimon = 100;
4518                 }
4519         }
4520
4521         if (tx_queues < 1 || tx_queues > 255) {
4522                 pr_warning("Warning: tx_queues (%d) should be between "
4523                            "1 and 255, resetting to %d\n",
4524                            tx_queues, BOND_DEFAULT_TX_QUEUES);
4525                 tx_queues = BOND_DEFAULT_TX_QUEUES;
4526         }
4527
4528         if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4529                 pr_warning("Warning: all_slaves_active module parameter (%d), "
4530                            "not of valid value (0/1), so it was set to "
4531                            "0\n", all_slaves_active);
4532                 all_slaves_active = 0;
4533         }
4534
4535         if (resend_igmp < 0 || resend_igmp > 255) {
4536                 pr_warning("Warning: resend_igmp (%d) should be between "
4537                            "0 and 255, resetting to %d\n",
4538                            resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4539                 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4540         }
4541
4542         /* reset values for TLB/ALB */
4543         if ((bond_mode == BOND_MODE_TLB) ||
4544             (bond_mode == BOND_MODE_ALB)) {
4545                 if (!miimon) {
4546                         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");
4547                         pr_warning("Forcing miimon to 100msec\n");
4548                         miimon = 100;
4549                 }
4550         }
4551
4552         if (bond_mode == BOND_MODE_ALB) {
4553                 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",
4554                           updelay);
4555         }
4556
4557         if (!miimon) {
4558                 if (updelay || downdelay) {
4559                         /* just warn the user the up/down delay will have
4560                          * no effect since miimon is zero...
4561                          */
4562                         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",
4563                                    updelay, downdelay);
4564                 }
4565         } else {
4566                 /* don't allow arp monitoring */
4567                 if (arp_interval) {
4568                         pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4569                                    miimon, arp_interval);
4570                         arp_interval = 0;
4571                 }
4572
4573                 if ((updelay % miimon) != 0) {
4574                         pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4575                                    updelay, miimon,
4576                                    (updelay / miimon) * miimon);
4577                 }
4578
4579                 updelay /= miimon;
4580
4581                 if ((downdelay % miimon) != 0) {
4582                         pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4583                                    downdelay, miimon,
4584                                    (downdelay / miimon) * miimon);
4585                 }
4586
4587                 downdelay /= miimon;
4588         }
4589
4590         if (arp_interval < 0) {
4591                 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4592                            arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
4593                 arp_interval = BOND_LINK_ARP_INTERV;
4594         }
4595
4596         for (arp_ip_count = 0;
4597              (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
4598              arp_ip_count++) {
4599                 /* not complete check, but should be good enough to
4600                    catch mistakes */
4601                 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
4602                         pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
4603                                    arp_ip_target[arp_ip_count]);
4604                         arp_interval = 0;
4605                 } else {
4606                         __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
4607                         arp_target[arp_ip_count] = ip;
4608                 }
4609         }
4610
4611         if (arp_interval && !arp_ip_count) {
4612                 /* don't allow arping if no arp_ip_target given... */
4613                 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
4614                            arp_interval);
4615                 arp_interval = 0;
4616         }
4617
4618         if (arp_validate) {
4619                 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
4620                         pr_err("arp_validate only supported in active-backup mode\n");
4621                         return -EINVAL;
4622                 }
4623                 if (!arp_interval) {
4624                         pr_err("arp_validate requires arp_interval\n");
4625                         return -EINVAL;
4626                 }
4627
4628                 arp_validate_value = bond_parse_parm(arp_validate,
4629                                                      arp_validate_tbl);
4630                 if (arp_validate_value == -1) {
4631                         pr_err("Error: invalid arp_validate \"%s\"\n",
4632                                arp_validate == NULL ? "NULL" : arp_validate);
4633                         return -EINVAL;
4634                 }
4635         } else
4636                 arp_validate_value = 0;
4637
4638         if (miimon) {
4639                 pr_info("MII link monitoring set to %d ms\n", miimon);
4640         } else if (arp_interval) {
4641                 int i;
4642
4643                 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
4644                         arp_interval,
4645                         arp_validate_tbl[arp_validate_value].modename,
4646                         arp_ip_count);
4647
4648                 for (i = 0; i < arp_ip_count; i++)
4649                         pr_info(" %s", arp_ip_target[i]);
4650
4651                 pr_info("\n");
4652
4653         } else if (max_bonds) {
4654                 /* miimon and arp_interval not set, we need one so things
4655                  * work as expected, see bonding.txt for details
4656                  */
4657                 pr_debug("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");
4658         }
4659
4660         if (primary && !USES_PRIMARY(bond_mode)) {
4661                 /* currently, using a primary only makes sense
4662                  * in active backup, TLB or ALB modes
4663                  */
4664                 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
4665                            primary, bond_mode_name(bond_mode));
4666                 primary = NULL;
4667         }
4668
4669         if (primary && primary_reselect) {
4670                 primary_reselect_value = bond_parse_parm(primary_reselect,
4671                                                          pri_reselect_tbl);
4672                 if (primary_reselect_value == -1) {
4673                         pr_err("Error: Invalid primary_reselect \"%s\"\n",
4674                                primary_reselect ==
4675                                         NULL ? "NULL" : primary_reselect);
4676                         return -EINVAL;
4677                 }
4678         } else {
4679                 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
4680         }
4681
4682         if (fail_over_mac) {
4683                 fail_over_mac_value = bond_parse_parm(fail_over_mac,
4684                                                       fail_over_mac_tbl);
4685                 if (fail_over_mac_value == -1) {
4686                         pr_err("Error: invalid fail_over_mac \"%s\"\n",
4687                                arp_validate == NULL ? "NULL" : arp_validate);
4688                         return -EINVAL;
4689                 }
4690
4691                 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
4692                         pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
4693         } else {
4694                 fail_over_mac_value = BOND_FOM_NONE;
4695         }
4696
4697         /* fill params struct with the proper values */
4698         params->mode = bond_mode;
4699         params->xmit_policy = xmit_hashtype;
4700         params->miimon = miimon;
4701         params->num_peer_notif = num_peer_notif;
4702         params->arp_interval = arp_interval;
4703         params->arp_validate = arp_validate_value;
4704         params->updelay = updelay;
4705         params->downdelay = downdelay;
4706         params->use_carrier = use_carrier;
4707         params->lacp_fast = lacp_fast;
4708         params->primary[0] = 0;
4709         params->primary_reselect = primary_reselect_value;
4710         params->fail_over_mac = fail_over_mac_value;
4711         params->tx_queues = tx_queues;
4712         params->all_slaves_active = all_slaves_active;
4713         params->resend_igmp = resend_igmp;
4714         params->min_links = min_links;
4715
4716         if (primary) {
4717                 strncpy(params->primary, primary, IFNAMSIZ);
4718                 params->primary[IFNAMSIZ - 1] = 0;
4719         }
4720
4721         memcpy(params->arp_targets, arp_target, sizeof(arp_target));
4722
4723         return 0;
4724 }
4725
4726 static struct lock_class_key bonding_netdev_xmit_lock_key;
4727 static struct lock_class_key bonding_netdev_addr_lock_key;
4728
4729 static void bond_set_lockdep_class_one(struct net_device *dev,
4730                                        struct netdev_queue *txq,
4731                                        void *_unused)
4732 {
4733         lockdep_set_class(&txq->_xmit_lock,
4734                           &bonding_netdev_xmit_lock_key);
4735 }
4736
4737 static void bond_set_lockdep_class(struct net_device *dev)
4738 {
4739         lockdep_set_class(&dev->addr_list_lock,
4740                           &bonding_netdev_addr_lock_key);
4741         netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
4742 }
4743
4744 /*
4745  * Called from registration process
4746  */
4747 static int bond_init(struct net_device *bond_dev)
4748 {
4749         struct bonding *bond = netdev_priv(bond_dev);
4750         struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
4751         struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
4752
4753         pr_debug("Begin bond_init for %s\n", bond_dev->name);
4754
4755         /*
4756          * Initialize locks that may be required during
4757          * en/deslave operations.  All of the bond_open work
4758          * (of which this is part) should really be moved to
4759          * a phase prior to dev_open
4760          */
4761         spin_lock_init(&(bond_info->tx_hashtbl_lock));
4762         spin_lock_init(&(bond_info->rx_hashtbl_lock));
4763
4764         bond->wq = create_singlethread_workqueue(bond_dev->name);
4765         if (!bond->wq)
4766                 return -ENOMEM;
4767
4768         bond_set_lockdep_class(bond_dev);
4769
4770         list_add_tail(&bond->bond_list, &bn->dev_list);
4771
4772         bond_prepare_sysfs_group(bond);
4773
4774         bond_debug_register(bond);
4775
4776         __hw_addr_init(&bond->mc_list);
4777         return 0;
4778 }
4779
4780 static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
4781 {
4782         if (tb[IFLA_ADDRESS]) {
4783                 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
4784                         return -EINVAL;
4785                 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
4786                         return -EADDRNOTAVAIL;
4787         }
4788         return 0;
4789 }
4790
4791 static int bond_get_tx_queues(struct net *net, struct nlattr *tb[],
4792                               unsigned int *num_queues,
4793                               unsigned int *real_num_queues)
4794 {
4795         *num_queues = tx_queues;
4796         return 0;
4797 }
4798
4799 static struct rtnl_link_ops bond_link_ops __read_mostly = {
4800         .kind           = "bond",
4801         .priv_size      = sizeof(struct bonding),
4802         .setup          = bond_setup,
4803         .validate       = bond_validate,
4804         .get_tx_queues  = bond_get_tx_queues,
4805 };
4806
4807 /* Create a new bond based on the specified name and bonding parameters.
4808  * If name is NULL, obtain a suitable "bond%d" name for us.
4809  * Caller must NOT hold rtnl_lock; we need to release it here before we
4810  * set up our sysfs entries.
4811  */
4812 int bond_create(struct net *net, const char *name)
4813 {
4814         struct net_device *bond_dev;
4815         int res;
4816
4817         rtnl_lock();
4818
4819         bond_dev = alloc_netdev_mq(sizeof(struct bonding),
4820                                    name ? name : "bond%d",
4821                                    bond_setup, tx_queues);
4822         if (!bond_dev) {
4823                 pr_err("%s: eek! can't alloc netdev!\n", name);
4824                 rtnl_unlock();
4825                 return -ENOMEM;
4826         }
4827
4828         dev_net_set(bond_dev, net);
4829         bond_dev->rtnl_link_ops = &bond_link_ops;
4830
4831         res = register_netdevice(bond_dev);
4832
4833         netif_carrier_off(bond_dev);
4834
4835         rtnl_unlock();
4836         if (res < 0)
4837                 bond_destructor(bond_dev);
4838         return res;
4839 }
4840
4841 static int __net_init bond_net_init(struct net *net)
4842 {
4843         struct bond_net *bn = net_generic(net, bond_net_id);
4844
4845         bn->net = net;
4846         INIT_LIST_HEAD(&bn->dev_list);
4847
4848         bond_create_proc_dir(bn);
4849         bond_create_sysfs(bn);
4850         
4851         return 0;
4852 }
4853
4854 static void __net_exit bond_net_exit(struct net *net)
4855 {
4856         struct bond_net *bn = net_generic(net, bond_net_id);
4857         struct bonding *bond, *tmp_bond;
4858         LIST_HEAD(list);
4859
4860         bond_destroy_sysfs(bn);
4861         bond_destroy_proc_dir(bn);
4862
4863         /* Kill off any bonds created after unregistering bond rtnl ops */
4864         rtnl_lock();
4865         list_for_each_entry_safe(bond, tmp_bond, &bn->dev_list, bond_list)
4866                 unregister_netdevice_queue(bond->dev, &list);
4867         unregister_netdevice_many(&list);
4868         rtnl_unlock();
4869 }
4870
4871 static struct pernet_operations bond_net_ops = {
4872         .init = bond_net_init,
4873         .exit = bond_net_exit,
4874         .id   = &bond_net_id,
4875         .size = sizeof(struct bond_net),
4876 };
4877
4878 static int __init bonding_init(void)
4879 {
4880         int i;
4881         int res;
4882
4883         pr_info("%s", bond_version);
4884
4885         res = bond_check_params(&bonding_defaults);
4886         if (res)
4887                 goto out;
4888
4889         res = register_pernet_subsys(&bond_net_ops);
4890         if (res)
4891                 goto out;
4892
4893         res = rtnl_link_register(&bond_link_ops);
4894         if (res)
4895                 goto err_link;
4896
4897         bond_create_debugfs();
4898
4899         for (i = 0; i < max_bonds; i++) {
4900                 res = bond_create(&init_net, NULL);
4901                 if (res)
4902                         goto err;
4903         }
4904
4905         register_netdevice_notifier(&bond_netdev_notifier);
4906         register_inetaddr_notifier(&bond_inetaddr_notifier);
4907 out:
4908         return res;
4909 err:
4910         rtnl_link_unregister(&bond_link_ops);
4911 err_link:
4912         unregister_pernet_subsys(&bond_net_ops);
4913         goto out;
4914
4915 }
4916
4917 static void __exit bonding_exit(void)
4918 {
4919         unregister_netdevice_notifier(&bond_netdev_notifier);
4920         unregister_inetaddr_notifier(&bond_inetaddr_notifier);
4921
4922         bond_destroy_debugfs();
4923
4924         rtnl_link_unregister(&bond_link_ops);
4925         unregister_pernet_subsys(&bond_net_ops);
4926
4927 #ifdef CONFIG_NET_POLL_CONTROLLER
4928         /*
4929          * Make sure we don't have an imbalance on our netpoll blocking
4930          */
4931         WARN_ON(atomic_read(&netpoll_block_tx));
4932 #endif
4933 }
4934
4935 module_init(bonding_init);
4936 module_exit(bonding_exit);
4937 MODULE_LICENSE("GPL");
4938 MODULE_VERSION(DRV_VERSION);
4939 MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
4940 MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
4941 MODULE_ALIAS_RTNL_LINK("bond");