bonding: prevent deadlock on slave store with alb mode (v3)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / bonding / bond_main.c
blobac8dce5545a6a2092dfc2355d01b0d97a0619cab
1 /*
2 * originally based on the dummy device.
4 * Copyright 1999, Thomas Davis, tadavis@lbl.gov.
5 * Licensed under the GPL. Based on dummy.c, and eql.c devices.
7 * bonding.c: an Ethernet Bonding driver
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 ...
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.
23 * ifconfig bond0 down
24 * will release all slaves, marking them as down.
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.
34 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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/netpoll.h>
63 #include <linux/inetdevice.h>
64 #include <linux/igmp.h>
65 #include <linux/etherdevice.h>
66 #include <linux/skbuff.h>
67 #include <net/sock.h>
68 #include <linux/rtnetlink.h>
69 #include <linux/proc_fs.h>
70 #include <linux/seq_file.h>
71 #include <linux/smp.h>
72 #include <linux/if_ether.h>
73 #include <net/arp.h>
74 #include <linux/mii.h>
75 #include <linux/ethtool.h>
76 #include <linux/if_vlan.h>
77 #include <linux/if_bonding.h>
78 #include <linux/jiffies.h>
79 #include <linux/preempt.h>
80 #include <net/route.h>
81 #include <net/net_namespace.h>
82 #include <net/netns/generic.h>
83 #include "bonding.h"
84 #include "bond_3ad.h"
85 #include "bond_alb.h"
87 /*---------------------------- Module parameters ----------------------------*/
89 /* monitor all links that often (in milliseconds). <=0 disables monitoring */
90 #define BOND_LINK_MON_INTERV 0
91 #define BOND_LINK_ARP_INTERV 0
93 static int max_bonds = BOND_DEFAULT_MAX_BONDS;
94 static int tx_queues = BOND_DEFAULT_TX_QUEUES;
95 static int num_grat_arp = 1;
96 static int num_unsol_na = 1;
97 static int miimon = BOND_LINK_MON_INTERV;
98 static int updelay;
99 static int downdelay;
100 static int use_carrier = 1;
101 static char *mode;
102 static char *primary;
103 static char *primary_reselect;
104 static char *lacp_rate;
105 static char *ad_select;
106 static char *xmit_hash_policy;
107 static int arp_interval = BOND_LINK_ARP_INTERV;
108 static char *arp_ip_target[BOND_MAX_ARP_TARGETS];
109 static char *arp_validate;
110 static char *fail_over_mac;
111 static int all_slaves_active = 0;
112 static struct bond_params bonding_defaults;
113 static int resend_igmp = BOND_DEFAULT_RESEND_IGMP;
115 module_param(max_bonds, int, 0);
116 MODULE_PARM_DESC(max_bonds, "Max number of bonded devices");
117 module_param(tx_queues, int, 0);
118 MODULE_PARM_DESC(tx_queues, "Max number of transmit queues (default = 16)");
119 module_param(num_grat_arp, int, 0644);
120 MODULE_PARM_DESC(num_grat_arp, "Number of gratuitous ARP packets to send on failover event");
121 module_param(num_unsol_na, int, 0644);
122 MODULE_PARM_DESC(num_unsol_na, "Number of unsolicited IPv6 Neighbor Advertisements packets to send on failover event");
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 "(slow/fast)");
151 module_param(ad_select, charp, 0);
152 MODULE_PARM_DESC(ad_select, "803.ad aggregation selection logic: stable (0, default), bandwidth (1), count (2)");
153 module_param(xmit_hash_policy, charp, 0);
154 MODULE_PARM_DESC(xmit_hash_policy, "XOR hashing method: 0 for layer 2 (default)"
155 ", 1 for layer 3+4");
156 module_param(arp_interval, int, 0);
157 MODULE_PARM_DESC(arp_interval, "arp interval in milliseconds");
158 module_param_array(arp_ip_target, charp, NULL, 0);
159 MODULE_PARM_DESC(arp_ip_target, "arp targets in n.n.n.n form");
160 module_param(arp_validate, charp, 0);
161 MODULE_PARM_DESC(arp_validate, "validate src/dst of ARP probes: none (default), active, backup or all");
162 module_param(fail_over_mac, charp, 0);
163 MODULE_PARM_DESC(fail_over_mac, "For active-backup, do not set all slaves to the same MAC. none (default), active or follow");
164 module_param(all_slaves_active, int, 0);
165 MODULE_PARM_DESC(all_slaves_active, "Keep all frames received on an interface"
166 "by setting active flag for all slaves. "
167 "0 for never (default), 1 for always.");
168 module_param(resend_igmp, int, 0);
169 MODULE_PARM_DESC(resend_igmp, "Number of IGMP membership reports to send on link failure");
171 /*----------------------------- Global variables ----------------------------*/
173 #ifdef CONFIG_NET_POLL_CONTROLLER
174 atomic_t netpoll_block_tx = ATOMIC_INIT(0);
175 #endif
177 static const char * const version =
178 DRV_DESCRIPTION ": v" DRV_VERSION " (" DRV_RELDATE ")\n";
180 int bond_net_id __read_mostly;
182 static __be32 arp_target[BOND_MAX_ARP_TARGETS];
183 static int arp_ip_count;
184 static int bond_mode = BOND_MODE_ROUNDROBIN;
185 static int xmit_hashtype = BOND_XMIT_POLICY_LAYER2;
186 static int lacp_fast;
188 const struct bond_parm_tbl bond_lacp_tbl[] = {
189 { "slow", AD_LACP_SLOW},
190 { "fast", AD_LACP_FAST},
191 { NULL, -1},
194 const struct bond_parm_tbl bond_mode_tbl[] = {
195 { "balance-rr", BOND_MODE_ROUNDROBIN},
196 { "active-backup", BOND_MODE_ACTIVEBACKUP},
197 { "balance-xor", BOND_MODE_XOR},
198 { "broadcast", BOND_MODE_BROADCAST},
199 { "802.3ad", BOND_MODE_8023AD},
200 { "balance-tlb", BOND_MODE_TLB},
201 { "balance-alb", BOND_MODE_ALB},
202 { NULL, -1},
205 const struct bond_parm_tbl xmit_hashtype_tbl[] = {
206 { "layer2", BOND_XMIT_POLICY_LAYER2},
207 { "layer3+4", BOND_XMIT_POLICY_LAYER34},
208 { "layer2+3", BOND_XMIT_POLICY_LAYER23},
209 { NULL, -1},
212 const struct bond_parm_tbl arp_validate_tbl[] = {
213 { "none", BOND_ARP_VALIDATE_NONE},
214 { "active", BOND_ARP_VALIDATE_ACTIVE},
215 { "backup", BOND_ARP_VALIDATE_BACKUP},
216 { "all", BOND_ARP_VALIDATE_ALL},
217 { NULL, -1},
220 const struct bond_parm_tbl fail_over_mac_tbl[] = {
221 { "none", BOND_FOM_NONE},
222 { "active", BOND_FOM_ACTIVE},
223 { "follow", BOND_FOM_FOLLOW},
224 { NULL, -1},
227 const struct bond_parm_tbl pri_reselect_tbl[] = {
228 { "always", BOND_PRI_RESELECT_ALWAYS},
229 { "better", BOND_PRI_RESELECT_BETTER},
230 { "failure", BOND_PRI_RESELECT_FAILURE},
231 { NULL, -1},
234 struct bond_parm_tbl ad_select_tbl[] = {
235 { "stable", BOND_AD_STABLE},
236 { "bandwidth", BOND_AD_BANDWIDTH},
237 { "count", BOND_AD_COUNT},
238 { NULL, -1},
241 /*-------------------------- Forward declarations ---------------------------*/
243 static void bond_send_gratuitous_arp(struct bonding *bond);
244 static int bond_init(struct net_device *bond_dev);
245 static void bond_uninit(struct net_device *bond_dev);
247 /*---------------------------- General routines -----------------------------*/
249 static const char *bond_mode_name(int mode)
251 static const char *names[] = {
252 [BOND_MODE_ROUNDROBIN] = "load balancing (round-robin)",
253 [BOND_MODE_ACTIVEBACKUP] = "fault-tolerance (active-backup)",
254 [BOND_MODE_XOR] = "load balancing (xor)",
255 [BOND_MODE_BROADCAST] = "fault-tolerance (broadcast)",
256 [BOND_MODE_8023AD] = "IEEE 802.3ad Dynamic link aggregation",
257 [BOND_MODE_TLB] = "transmit load balancing",
258 [BOND_MODE_ALB] = "adaptive load balancing",
261 if (mode < 0 || mode > BOND_MODE_ALB)
262 return "unknown";
264 return names[mode];
267 /*---------------------------------- VLAN -----------------------------------*/
270 * bond_add_vlan - add a new vlan id on bond
271 * @bond: bond that got the notification
272 * @vlan_id: the vlan id to add
274 * Returns -ENOMEM if allocation failed.
276 static int bond_add_vlan(struct bonding *bond, unsigned short vlan_id)
278 struct vlan_entry *vlan;
280 pr_debug("bond: %s, vlan id %d\n",
281 (bond ? bond->dev->name : "None"), vlan_id);
283 vlan = kzalloc(sizeof(struct vlan_entry), GFP_KERNEL);
284 if (!vlan)
285 return -ENOMEM;
287 INIT_LIST_HEAD(&vlan->vlan_list);
288 vlan->vlan_id = vlan_id;
290 write_lock_bh(&bond->lock);
292 list_add_tail(&vlan->vlan_list, &bond->vlan_list);
294 write_unlock_bh(&bond->lock);
296 pr_debug("added VLAN ID %d on bond %s\n", vlan_id, bond->dev->name);
298 return 0;
302 * bond_del_vlan - delete a vlan id from bond
303 * @bond: bond that got the notification
304 * @vlan_id: the vlan id to delete
306 * returns -ENODEV if @vlan_id was not found in @bond.
308 static int bond_del_vlan(struct bonding *bond, unsigned short vlan_id)
310 struct vlan_entry *vlan;
311 int res = -ENODEV;
313 pr_debug("bond: %s, vlan id %d\n", bond->dev->name, vlan_id);
315 block_netpoll_tx();
316 write_lock_bh(&bond->lock);
318 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
319 if (vlan->vlan_id == vlan_id) {
320 list_del(&vlan->vlan_list);
322 if (bond_is_lb(bond))
323 bond_alb_clear_vlan(bond, vlan_id);
325 pr_debug("removed VLAN ID %d from bond %s\n",
326 vlan_id, bond->dev->name);
328 kfree(vlan);
330 if (list_empty(&bond->vlan_list) &&
331 (bond->slave_cnt == 0)) {
332 /* Last VLAN removed and no slaves, so
333 * restore block on adding VLANs. This will
334 * be removed once new slaves that are not
335 * VLAN challenged will be added.
337 bond->dev->features |= NETIF_F_VLAN_CHALLENGED;
340 res = 0;
341 goto out;
345 pr_debug("couldn't find VLAN ID %d in bond %s\n",
346 vlan_id, bond->dev->name);
348 out:
349 write_unlock_bh(&bond->lock);
350 unblock_netpoll_tx();
351 return res;
355 * bond_has_challenged_slaves
356 * @bond: the bond we're working on
358 * Searches the slave list. Returns 1 if a vlan challenged slave
359 * was found, 0 otherwise.
361 * Assumes bond->lock is held.
363 static int bond_has_challenged_slaves(struct bonding *bond)
365 struct slave *slave;
366 int i;
368 bond_for_each_slave(bond, slave, i) {
369 if (slave->dev->features & NETIF_F_VLAN_CHALLENGED) {
370 pr_debug("found VLAN challenged slave - %s\n",
371 slave->dev->name);
372 return 1;
376 pr_debug("no VLAN challenged slaves found\n");
377 return 0;
381 * bond_next_vlan - safely skip to the next item in the vlans list.
382 * @bond: the bond we're working on
383 * @curr: item we're advancing from
385 * Returns %NULL if list is empty, bond->next_vlan if @curr is %NULL,
386 * or @curr->next otherwise (even if it is @curr itself again).
388 * Caller must hold bond->lock
390 struct vlan_entry *bond_next_vlan(struct bonding *bond, struct vlan_entry *curr)
392 struct vlan_entry *next, *last;
394 if (list_empty(&bond->vlan_list))
395 return NULL;
397 if (!curr) {
398 next = list_entry(bond->vlan_list.next,
399 struct vlan_entry, vlan_list);
400 } else {
401 last = list_entry(bond->vlan_list.prev,
402 struct vlan_entry, vlan_list);
403 if (last == curr) {
404 next = list_entry(bond->vlan_list.next,
405 struct vlan_entry, vlan_list);
406 } else {
407 next = list_entry(curr->vlan_list.next,
408 struct vlan_entry, vlan_list);
412 return next;
416 * bond_dev_queue_xmit - Prepare skb for xmit.
418 * @bond: bond device that got this skb for tx.
419 * @skb: hw accel VLAN tagged skb to transmit
420 * @slave_dev: slave that is supposed to xmit this skbuff
422 int bond_dev_queue_xmit(struct bonding *bond, struct sk_buff *skb,
423 struct net_device *slave_dev)
425 skb->dev = slave_dev;
426 skb->priority = 1;
427 #ifdef CONFIG_NET_POLL_CONTROLLER
428 if (unlikely(bond->dev->priv_flags & IFF_IN_NETPOLL)) {
429 struct netpoll *np = bond->dev->npinfo->netpoll;
430 slave_dev->npinfo = bond->dev->npinfo;
431 slave_dev->priv_flags |= IFF_IN_NETPOLL;
432 netpoll_send_skb_on_dev(np, skb, slave_dev);
433 slave_dev->priv_flags &= ~IFF_IN_NETPOLL;
434 } else
435 #endif
436 dev_queue_xmit(skb);
438 return 0;
442 * In the following 3 functions, bond_vlan_rx_register(), bond_vlan_rx_add_vid
443 * and bond_vlan_rx_kill_vid, We don't protect the slave list iteration with a
444 * lock because:
445 * a. This operation is performed in IOCTL context,
446 * b. The operation is protected by the RTNL semaphore in the 8021q code,
447 * c. Holding a lock with BH disabled while directly calling a base driver
448 * entry point is generally a BAD idea.
450 * The design of synchronization/protection for this operation in the 8021q
451 * module is good for one or more VLAN devices over a single physical device
452 * and cannot be extended for a teaming solution like bonding, so there is a
453 * potential race condition here where a net device from the vlan group might
454 * be referenced (either by a base driver or the 8021q code) while it is being
455 * removed from the system. However, it turns out we're not making matters
456 * worse, and if it works for regular VLAN usage it will work here too.
460 * bond_vlan_rx_register - Propagates registration to slaves
461 * @bond_dev: bonding net device that got called
462 * @grp: vlan group being registered
464 static void bond_vlan_rx_register(struct net_device *bond_dev,
465 struct vlan_group *grp)
467 struct bonding *bond = netdev_priv(bond_dev);
468 struct slave *slave;
469 int i;
471 write_lock_bh(&bond->lock);
472 bond->vlgrp = grp;
473 write_unlock_bh(&bond->lock);
475 bond_for_each_slave(bond, slave, i) {
476 struct net_device *slave_dev = slave->dev;
477 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
479 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
480 slave_ops->ndo_vlan_rx_register) {
481 slave_ops->ndo_vlan_rx_register(slave_dev, grp);
487 * bond_vlan_rx_add_vid - Propagates adding an id to slaves
488 * @bond_dev: bonding net device that got called
489 * @vid: vlan id being added
491 static void bond_vlan_rx_add_vid(struct net_device *bond_dev, uint16_t vid)
493 struct bonding *bond = netdev_priv(bond_dev);
494 struct slave *slave;
495 int i, res;
497 bond_for_each_slave(bond, slave, i) {
498 struct net_device *slave_dev = slave->dev;
499 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
501 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
502 slave_ops->ndo_vlan_rx_add_vid) {
503 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vid);
507 res = bond_add_vlan(bond, vid);
508 if (res) {
509 pr_err("%s: Error: Failed to add vlan id %d\n",
510 bond_dev->name, vid);
515 * bond_vlan_rx_kill_vid - Propagates deleting an id to slaves
516 * @bond_dev: bonding net device that got called
517 * @vid: vlan id being removed
519 static void bond_vlan_rx_kill_vid(struct net_device *bond_dev, uint16_t vid)
521 struct bonding *bond = netdev_priv(bond_dev);
522 struct slave *slave;
523 struct net_device *vlan_dev;
524 int i, res;
526 bond_for_each_slave(bond, slave, i) {
527 struct net_device *slave_dev = slave->dev;
528 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
530 if ((slave_dev->features & NETIF_F_HW_VLAN_FILTER) &&
531 slave_ops->ndo_vlan_rx_kill_vid) {
532 /* Save and then restore vlan_dev in the grp array,
533 * since the slave's driver might clear it.
535 vlan_dev = vlan_group_get_device(bond->vlgrp, vid);
536 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vid);
537 vlan_group_set_device(bond->vlgrp, vid, vlan_dev);
541 res = bond_del_vlan(bond, vid);
542 if (res) {
543 pr_err("%s: Error: Failed to remove vlan id %d\n",
544 bond_dev->name, vid);
548 static void bond_add_vlans_on_slave(struct bonding *bond, struct net_device *slave_dev)
550 struct vlan_entry *vlan;
551 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
553 if (!bond->vlgrp)
554 return;
556 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
557 slave_ops->ndo_vlan_rx_register)
558 slave_ops->ndo_vlan_rx_register(slave_dev, bond->vlgrp);
560 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
561 !(slave_ops->ndo_vlan_rx_add_vid))
562 return;
564 list_for_each_entry(vlan, &bond->vlan_list, vlan_list)
565 slave_ops->ndo_vlan_rx_add_vid(slave_dev, vlan->vlan_id);
568 static void bond_del_vlans_from_slave(struct bonding *bond,
569 struct net_device *slave_dev)
571 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
572 struct vlan_entry *vlan;
573 struct net_device *vlan_dev;
575 if (!bond->vlgrp)
576 return;
578 if (!(slave_dev->features & NETIF_F_HW_VLAN_FILTER) ||
579 !(slave_ops->ndo_vlan_rx_kill_vid))
580 goto unreg;
582 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
583 if (!vlan->vlan_id)
584 continue;
585 /* Save and then restore vlan_dev in the grp array,
586 * since the slave's driver might clear it.
588 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
589 slave_ops->ndo_vlan_rx_kill_vid(slave_dev, vlan->vlan_id);
590 vlan_group_set_device(bond->vlgrp, vlan->vlan_id, vlan_dev);
593 unreg:
594 if ((slave_dev->features & NETIF_F_HW_VLAN_RX) &&
595 slave_ops->ndo_vlan_rx_register)
596 slave_ops->ndo_vlan_rx_register(slave_dev, NULL);
599 /*------------------------------- Link status -------------------------------*/
602 * Set the carrier state for the master according to the state of its
603 * slaves. If any slaves are up, the master is up. In 802.3ad mode,
604 * do special 802.3ad magic.
606 * Returns zero if carrier state does not change, nonzero if it does.
608 static int bond_set_carrier(struct bonding *bond)
610 struct slave *slave;
611 int i;
613 if (bond->slave_cnt == 0)
614 goto down;
616 if (bond->params.mode == BOND_MODE_8023AD)
617 return bond_3ad_set_carrier(bond);
619 bond_for_each_slave(bond, slave, i) {
620 if (slave->link == BOND_LINK_UP) {
621 if (!netif_carrier_ok(bond->dev)) {
622 netif_carrier_on(bond->dev);
623 return 1;
625 return 0;
629 down:
630 if (netif_carrier_ok(bond->dev)) {
631 netif_carrier_off(bond->dev);
632 return 1;
634 return 0;
638 * Get link speed and duplex from the slave's base driver
639 * using ethtool. If for some reason the call fails or the
640 * values are invalid, fake speed and duplex to 100/Full
641 * and return error.
643 static int bond_update_speed_duplex(struct slave *slave)
645 struct net_device *slave_dev = slave->dev;
646 struct ethtool_cmd etool;
647 int res;
649 /* Fake speed and duplex */
650 slave->speed = SPEED_100;
651 slave->duplex = DUPLEX_FULL;
653 if (!slave_dev->ethtool_ops || !slave_dev->ethtool_ops->get_settings)
654 return -1;
656 res = slave_dev->ethtool_ops->get_settings(slave_dev, &etool);
657 if (res < 0)
658 return -1;
660 switch (etool.speed) {
661 case SPEED_10:
662 case SPEED_100:
663 case SPEED_1000:
664 case SPEED_10000:
665 break;
666 default:
667 return -1;
670 switch (etool.duplex) {
671 case DUPLEX_FULL:
672 case DUPLEX_HALF:
673 break;
674 default:
675 return -1;
678 slave->speed = etool.speed;
679 slave->duplex = etool.duplex;
681 return 0;
685 * if <dev> supports MII link status reporting, check its link status.
687 * We either do MII/ETHTOOL ioctls, or check netif_carrier_ok(),
688 * depending upon the setting of the use_carrier parameter.
690 * Return either BMSR_LSTATUS, meaning that the link is up (or we
691 * can't tell and just pretend it is), or 0, meaning that the link is
692 * down.
694 * If reporting is non-zero, instead of faking link up, return -1 if
695 * both ETHTOOL and MII ioctls fail (meaning the device does not
696 * support them). If use_carrier is set, return whatever it says.
697 * It'd be nice if there was a good way to tell if a driver supports
698 * netif_carrier, but there really isn't.
700 static int bond_check_dev_link(struct bonding *bond,
701 struct net_device *slave_dev, int reporting)
703 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
704 int (*ioctl)(struct net_device *, struct ifreq *, int);
705 struct ifreq ifr;
706 struct mii_ioctl_data *mii;
708 if (!reporting && !netif_running(slave_dev))
709 return 0;
711 if (bond->params.use_carrier)
712 return netif_carrier_ok(slave_dev) ? BMSR_LSTATUS : 0;
714 /* Try to get link status using Ethtool first. */
715 if (slave_dev->ethtool_ops) {
716 if (slave_dev->ethtool_ops->get_link) {
717 u32 link;
719 link = slave_dev->ethtool_ops->get_link(slave_dev);
721 return link ? BMSR_LSTATUS : 0;
725 /* Ethtool can't be used, fallback to MII ioctls. */
726 ioctl = slave_ops->ndo_do_ioctl;
727 if (ioctl) {
728 /* TODO: set pointer to correct ioctl on a per team member */
729 /* bases to make this more efficient. that is, once */
730 /* we determine the correct ioctl, we will always */
731 /* call it and not the others for that team */
732 /* member. */
735 * We cannot assume that SIOCGMIIPHY will also read a
736 * register; not all network drivers (e.g., e100)
737 * support that.
740 /* Yes, the mii is overlaid on the ifreq.ifr_ifru */
741 strncpy(ifr.ifr_name, slave_dev->name, IFNAMSIZ);
742 mii = if_mii(&ifr);
743 if (IOCTL(slave_dev, &ifr, SIOCGMIIPHY) == 0) {
744 mii->reg_num = MII_BMSR;
745 if (IOCTL(slave_dev, &ifr, SIOCGMIIREG) == 0)
746 return mii->val_out & BMSR_LSTATUS;
751 * If reporting, report that either there's no dev->do_ioctl,
752 * or both SIOCGMIIREG and get_link failed (meaning that we
753 * cannot report link status). If not reporting, pretend
754 * we're ok.
756 return reporting ? -1 : BMSR_LSTATUS;
759 /*----------------------------- Multicast list ------------------------------*/
762 * Push the promiscuity flag down to appropriate slaves
764 static int bond_set_promiscuity(struct bonding *bond, int inc)
766 int err = 0;
767 if (USES_PRIMARY(bond->params.mode)) {
768 /* write lock already acquired */
769 if (bond->curr_active_slave) {
770 err = dev_set_promiscuity(bond->curr_active_slave->dev,
771 inc);
773 } else {
774 struct slave *slave;
775 int i;
776 bond_for_each_slave(bond, slave, i) {
777 err = dev_set_promiscuity(slave->dev, inc);
778 if (err)
779 return err;
782 return err;
786 * Push the allmulti flag down to all slaves
788 static int bond_set_allmulti(struct bonding *bond, int inc)
790 int err = 0;
791 if (USES_PRIMARY(bond->params.mode)) {
792 /* write lock already acquired */
793 if (bond->curr_active_slave) {
794 err = dev_set_allmulti(bond->curr_active_slave->dev,
795 inc);
797 } else {
798 struct slave *slave;
799 int i;
800 bond_for_each_slave(bond, slave, i) {
801 err = dev_set_allmulti(slave->dev, inc);
802 if (err)
803 return err;
806 return err;
810 * Add a Multicast address to slaves
811 * according to mode
813 static void bond_mc_add(struct bonding *bond, void *addr)
815 if (USES_PRIMARY(bond->params.mode)) {
816 /* write lock already acquired */
817 if (bond->curr_active_slave)
818 dev_mc_add(bond->curr_active_slave->dev, addr);
819 } else {
820 struct slave *slave;
821 int i;
823 bond_for_each_slave(bond, slave, i)
824 dev_mc_add(slave->dev, addr);
829 * Remove a multicast address from slave
830 * according to mode
832 static void bond_mc_del(struct bonding *bond, void *addr)
834 if (USES_PRIMARY(bond->params.mode)) {
835 /* write lock already acquired */
836 if (bond->curr_active_slave)
837 dev_mc_del(bond->curr_active_slave->dev, addr);
838 } else {
839 struct slave *slave;
840 int i;
841 bond_for_each_slave(bond, slave, i) {
842 dev_mc_del(slave->dev, addr);
848 static void __bond_resend_igmp_join_requests(struct net_device *dev)
850 struct in_device *in_dev;
852 rcu_read_lock();
853 in_dev = __in_dev_get_rcu(dev);
854 if (in_dev)
855 ip_mc_rejoin_groups(in_dev);
856 rcu_read_unlock();
860 * Retrieve the list of registered multicast addresses for the bonding
861 * device and retransmit an IGMP JOIN request to the current active
862 * slave.
864 static void bond_resend_igmp_join_requests(struct bonding *bond)
866 struct net_device *vlan_dev;
867 struct vlan_entry *vlan;
869 read_lock(&bond->lock);
871 /* rejoin all groups on bond device */
872 __bond_resend_igmp_join_requests(bond->dev);
874 /* rejoin all groups on vlan devices */
875 if (bond->vlgrp) {
876 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
877 vlan_dev = vlan_group_get_device(bond->vlgrp,
878 vlan->vlan_id);
879 if (vlan_dev)
880 __bond_resend_igmp_join_requests(vlan_dev);
884 if (--bond->igmp_retrans > 0)
885 queue_delayed_work(bond->wq, &bond->mcast_work, HZ/5);
887 read_unlock(&bond->lock);
890 static void bond_resend_igmp_join_requests_delayed(struct work_struct *work)
892 struct bonding *bond = container_of(work, struct bonding,
893 mcast_work.work);
894 bond_resend_igmp_join_requests(bond);
898 * flush all members of flush->mc_list from device dev->mc_list
900 static void bond_mc_list_flush(struct net_device *bond_dev,
901 struct net_device *slave_dev)
903 struct bonding *bond = netdev_priv(bond_dev);
904 struct netdev_hw_addr *ha;
906 netdev_for_each_mc_addr(ha, bond_dev)
907 dev_mc_del(slave_dev, ha->addr);
909 if (bond->params.mode == BOND_MODE_8023AD) {
910 /* del lacpdu mc addr from mc list */
911 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
913 dev_mc_del(slave_dev, lacpdu_multicast);
917 /*--------------------------- Active slave change ---------------------------*/
920 * Update the mc list and multicast-related flags for the new and
921 * old active slaves (if any) according to the multicast mode, and
922 * promiscuous flags unconditionally.
924 static void bond_mc_swap(struct bonding *bond, struct slave *new_active,
925 struct slave *old_active)
927 struct netdev_hw_addr *ha;
929 if (!USES_PRIMARY(bond->params.mode))
930 /* nothing to do - mc list is already up-to-date on
931 * all slaves
933 return;
935 if (old_active) {
936 if (bond->dev->flags & IFF_PROMISC)
937 dev_set_promiscuity(old_active->dev, -1);
939 if (bond->dev->flags & IFF_ALLMULTI)
940 dev_set_allmulti(old_active->dev, -1);
942 netdev_for_each_mc_addr(ha, bond->dev)
943 dev_mc_del(old_active->dev, ha->addr);
946 if (new_active) {
947 /* FIXME: Signal errors upstream. */
948 if (bond->dev->flags & IFF_PROMISC)
949 dev_set_promiscuity(new_active->dev, 1);
951 if (bond->dev->flags & IFF_ALLMULTI)
952 dev_set_allmulti(new_active->dev, 1);
954 netdev_for_each_mc_addr(ha, bond->dev)
955 dev_mc_add(new_active->dev, ha->addr);
960 * bond_do_fail_over_mac
962 * Perform special MAC address swapping for fail_over_mac settings
964 * Called with RTNL, bond->lock for read, curr_slave_lock for write_bh.
966 static void bond_do_fail_over_mac(struct bonding *bond,
967 struct slave *new_active,
968 struct slave *old_active)
969 __releases(&bond->curr_slave_lock)
970 __releases(&bond->lock)
971 __acquires(&bond->lock)
972 __acquires(&bond->curr_slave_lock)
974 u8 tmp_mac[ETH_ALEN];
975 struct sockaddr saddr;
976 int rv;
978 switch (bond->params.fail_over_mac) {
979 case BOND_FOM_ACTIVE:
980 if (new_active)
981 memcpy(bond->dev->dev_addr, new_active->dev->dev_addr,
982 new_active->dev->addr_len);
983 break;
984 case BOND_FOM_FOLLOW:
986 * if new_active && old_active, swap them
987 * if just old_active, do nothing (going to no active slave)
988 * if just new_active, set new_active to bond's MAC
990 if (!new_active)
991 return;
993 write_unlock_bh(&bond->curr_slave_lock);
994 read_unlock(&bond->lock);
996 if (old_active) {
997 memcpy(tmp_mac, new_active->dev->dev_addr, ETH_ALEN);
998 memcpy(saddr.sa_data, old_active->dev->dev_addr,
999 ETH_ALEN);
1000 saddr.sa_family = new_active->dev->type;
1001 } else {
1002 memcpy(saddr.sa_data, bond->dev->dev_addr, ETH_ALEN);
1003 saddr.sa_family = bond->dev->type;
1006 rv = dev_set_mac_address(new_active->dev, &saddr);
1007 if (rv) {
1008 pr_err("%s: Error %d setting MAC of slave %s\n",
1009 bond->dev->name, -rv, new_active->dev->name);
1010 goto out;
1013 if (!old_active)
1014 goto out;
1016 memcpy(saddr.sa_data, tmp_mac, ETH_ALEN);
1017 saddr.sa_family = old_active->dev->type;
1019 rv = dev_set_mac_address(old_active->dev, &saddr);
1020 if (rv)
1021 pr_err("%s: Error %d setting MAC of slave %s\n",
1022 bond->dev->name, -rv, new_active->dev->name);
1023 out:
1024 read_lock(&bond->lock);
1025 write_lock_bh(&bond->curr_slave_lock);
1026 break;
1027 default:
1028 pr_err("%s: bond_do_fail_over_mac impossible: bad policy %d\n",
1029 bond->dev->name, bond->params.fail_over_mac);
1030 break;
1035 static bool bond_should_change_active(struct bonding *bond)
1037 struct slave *prim = bond->primary_slave;
1038 struct slave *curr = bond->curr_active_slave;
1040 if (!prim || !curr || curr->link != BOND_LINK_UP)
1041 return true;
1042 if (bond->force_primary) {
1043 bond->force_primary = false;
1044 return true;
1046 if (bond->params.primary_reselect == BOND_PRI_RESELECT_BETTER &&
1047 (prim->speed < curr->speed ||
1048 (prim->speed == curr->speed && prim->duplex <= curr->duplex)))
1049 return false;
1050 if (bond->params.primary_reselect == BOND_PRI_RESELECT_FAILURE)
1051 return false;
1052 return true;
1056 * find_best_interface - select the best available slave to be the active one
1057 * @bond: our bonding struct
1059 * Warning: Caller must hold curr_slave_lock for writing.
1061 static struct slave *bond_find_best_slave(struct bonding *bond)
1063 struct slave *new_active, *old_active;
1064 struct slave *bestslave = NULL;
1065 int mintime = bond->params.updelay;
1066 int i;
1068 new_active = bond->curr_active_slave;
1070 if (!new_active) { /* there were no active slaves left */
1071 if (bond->slave_cnt > 0) /* found one slave */
1072 new_active = bond->first_slave;
1073 else
1074 return NULL; /* still no slave, return NULL */
1077 if ((bond->primary_slave) &&
1078 bond->primary_slave->link == BOND_LINK_UP &&
1079 bond_should_change_active(bond)) {
1080 new_active = bond->primary_slave;
1083 /* remember where to stop iterating over the slaves */
1084 old_active = new_active;
1086 bond_for_each_slave_from(bond, new_active, i, old_active) {
1087 if (new_active->link == BOND_LINK_UP) {
1088 return new_active;
1089 } else if (new_active->link == BOND_LINK_BACK &&
1090 IS_UP(new_active->dev)) {
1091 /* link up, but waiting for stabilization */
1092 if (new_active->delay < mintime) {
1093 mintime = new_active->delay;
1094 bestslave = new_active;
1099 return bestslave;
1103 * change_active_interface - change the active slave into the specified one
1104 * @bond: our bonding struct
1105 * @new: the new slave to make the active one
1107 * Set the new slave to the bond's settings and unset them on the old
1108 * curr_active_slave.
1109 * Setting include flags, mc-list, promiscuity, allmulti, etc.
1111 * If @new's link state is %BOND_LINK_BACK we'll set it to %BOND_LINK_UP,
1112 * because it is apparently the best available slave we have, even though its
1113 * updelay hasn't timed out yet.
1115 * If new_active is not NULL, caller must hold bond->lock for read and
1116 * curr_slave_lock for write_bh.
1118 void bond_change_active_slave(struct bonding *bond, struct slave *new_active)
1120 struct slave *old_active = bond->curr_active_slave;
1122 if (old_active == new_active)
1123 return;
1125 if (new_active) {
1126 new_active->jiffies = jiffies;
1128 if (new_active->link == BOND_LINK_BACK) {
1129 if (USES_PRIMARY(bond->params.mode)) {
1130 pr_info("%s: making interface %s the new active one %d ms earlier.\n",
1131 bond->dev->name, new_active->dev->name,
1132 (bond->params.updelay - new_active->delay) * bond->params.miimon);
1135 new_active->delay = 0;
1136 new_active->link = BOND_LINK_UP;
1138 if (bond->params.mode == BOND_MODE_8023AD)
1139 bond_3ad_handle_link_change(new_active, BOND_LINK_UP);
1141 if (bond_is_lb(bond))
1142 bond_alb_handle_link_change(bond, new_active, BOND_LINK_UP);
1143 } else {
1144 if (USES_PRIMARY(bond->params.mode)) {
1145 pr_info("%s: making interface %s the new active one.\n",
1146 bond->dev->name, new_active->dev->name);
1151 if (USES_PRIMARY(bond->params.mode))
1152 bond_mc_swap(bond, new_active, old_active);
1154 if (bond_is_lb(bond)) {
1155 bond_alb_handle_active_change(bond, new_active);
1156 if (old_active)
1157 bond_set_slave_inactive_flags(old_active);
1158 if (new_active)
1159 bond_set_slave_active_flags(new_active);
1160 } else {
1161 bond->curr_active_slave = new_active;
1164 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
1165 if (old_active)
1166 bond_set_slave_inactive_flags(old_active);
1168 if (new_active) {
1169 bond_set_slave_active_flags(new_active);
1171 if (bond->params.fail_over_mac)
1172 bond_do_fail_over_mac(bond, new_active,
1173 old_active);
1175 if (netif_running(bond->dev)) {
1176 bond->send_grat_arp = bond->params.num_grat_arp;
1177 bond_send_gratuitous_arp(bond);
1179 bond->send_unsol_na = bond->params.num_unsol_na;
1180 bond_send_unsolicited_na(bond);
1183 write_unlock_bh(&bond->curr_slave_lock);
1184 read_unlock(&bond->lock);
1186 netdev_bonding_change(bond->dev, NETDEV_BONDING_FAILOVER);
1188 read_lock(&bond->lock);
1189 write_lock_bh(&bond->curr_slave_lock);
1193 /* resend IGMP joins since active slave has changed or
1194 * all were sent on curr_active_slave */
1195 if (((USES_PRIMARY(bond->params.mode) && new_active) ||
1196 bond->params.mode == BOND_MODE_ROUNDROBIN) &&
1197 netif_running(bond->dev)) {
1198 bond->igmp_retrans = bond->params.resend_igmp;
1199 queue_delayed_work(bond->wq, &bond->mcast_work, 0);
1204 * bond_select_active_slave - select a new active slave, if needed
1205 * @bond: our bonding struct
1207 * This functions should be called when one of the following occurs:
1208 * - The old curr_active_slave has been released or lost its link.
1209 * - The primary_slave has got its link back.
1210 * - A slave has got its link back and there's no old curr_active_slave.
1212 * Caller must hold bond->lock for read and curr_slave_lock for write_bh.
1214 void bond_select_active_slave(struct bonding *bond)
1216 struct slave *best_slave;
1217 int rv;
1219 best_slave = bond_find_best_slave(bond);
1220 if (best_slave != bond->curr_active_slave) {
1221 bond_change_active_slave(bond, best_slave);
1222 rv = bond_set_carrier(bond);
1223 if (!rv)
1224 return;
1226 if (netif_carrier_ok(bond->dev)) {
1227 pr_info("%s: first active interface up!\n",
1228 bond->dev->name);
1229 } else {
1230 pr_info("%s: now running without any active interface !\n",
1231 bond->dev->name);
1236 /*--------------------------- slave list handling ---------------------------*/
1239 * This function attaches the slave to the end of list.
1241 * bond->lock held for writing by caller.
1243 static void bond_attach_slave(struct bonding *bond, struct slave *new_slave)
1245 if (bond->first_slave == NULL) { /* attaching the first slave */
1246 new_slave->next = new_slave;
1247 new_slave->prev = new_slave;
1248 bond->first_slave = new_slave;
1249 } else {
1250 new_slave->next = bond->first_slave;
1251 new_slave->prev = bond->first_slave->prev;
1252 new_slave->next->prev = new_slave;
1253 new_slave->prev->next = new_slave;
1256 bond->slave_cnt++;
1260 * This function detaches the slave from the list.
1261 * WARNING: no check is made to verify if the slave effectively
1262 * belongs to <bond>.
1263 * Nothing is freed on return, structures are just unchained.
1264 * If any slave pointer in bond was pointing to <slave>,
1265 * it should be changed by the calling function.
1267 * bond->lock held for writing by caller.
1269 static void bond_detach_slave(struct bonding *bond, struct slave *slave)
1271 if (slave->next)
1272 slave->next->prev = slave->prev;
1274 if (slave->prev)
1275 slave->prev->next = slave->next;
1277 if (bond->first_slave == slave) { /* slave is the first slave */
1278 if (bond->slave_cnt > 1) { /* there are more slave */
1279 bond->first_slave = slave->next;
1280 } else {
1281 bond->first_slave = NULL; /* slave was the last one */
1285 slave->next = NULL;
1286 slave->prev = NULL;
1287 bond->slave_cnt--;
1290 #ifdef CONFIG_NET_POLL_CONTROLLER
1292 * You must hold read lock on bond->lock before calling this.
1294 static bool slaves_support_netpoll(struct net_device *bond_dev)
1296 struct bonding *bond = netdev_priv(bond_dev);
1297 struct slave *slave;
1298 int i = 0;
1299 bool ret = true;
1301 bond_for_each_slave(bond, slave, i) {
1302 if ((slave->dev->priv_flags & IFF_DISABLE_NETPOLL) ||
1303 !slave->dev->netdev_ops->ndo_poll_controller)
1304 ret = false;
1306 return i != 0 && ret;
1309 static void bond_poll_controller(struct net_device *bond_dev)
1311 struct bonding *bond = netdev_priv(bond_dev);
1312 struct slave *slave;
1313 int i;
1315 bond_for_each_slave(bond, slave, i) {
1316 if (slave->dev && IS_UP(slave->dev))
1317 netpoll_poll_dev(slave->dev);
1321 static void bond_netpoll_cleanup(struct net_device *bond_dev)
1323 struct bonding *bond = netdev_priv(bond_dev);
1324 struct slave *slave;
1325 const struct net_device_ops *ops;
1326 int i;
1328 read_lock(&bond->lock);
1329 bond_dev->npinfo = NULL;
1330 bond_for_each_slave(bond, slave, i) {
1331 if (slave->dev) {
1332 ops = slave->dev->netdev_ops;
1333 if (ops->ndo_netpoll_cleanup)
1334 ops->ndo_netpoll_cleanup(slave->dev);
1335 else
1336 slave->dev->npinfo = NULL;
1339 read_unlock(&bond->lock);
1342 #else
1344 static void bond_netpoll_cleanup(struct net_device *bond_dev)
1348 #endif
1350 /*---------------------------------- IOCTL ----------------------------------*/
1352 static int bond_sethwaddr(struct net_device *bond_dev,
1353 struct net_device *slave_dev)
1355 pr_debug("bond_dev=%p\n", bond_dev);
1356 pr_debug("slave_dev=%p\n", slave_dev);
1357 pr_debug("slave_dev->addr_len=%d\n", slave_dev->addr_len);
1358 memcpy(bond_dev->dev_addr, slave_dev->dev_addr, slave_dev->addr_len);
1359 return 0;
1362 #define BOND_VLAN_FEATURES \
1363 (NETIF_F_VLAN_CHALLENGED | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX | \
1364 NETIF_F_HW_VLAN_FILTER)
1367 * Compute the common dev->feature set available to all slaves. Some
1368 * feature bits are managed elsewhere, so preserve those feature bits
1369 * on the master device.
1371 static int bond_compute_features(struct bonding *bond)
1373 struct slave *slave;
1374 struct net_device *bond_dev = bond->dev;
1375 unsigned long features = bond_dev->features;
1376 unsigned long vlan_features = 0;
1377 unsigned short max_hard_header_len = max((u16)ETH_HLEN,
1378 bond_dev->hard_header_len);
1379 int i;
1381 features &= ~(NETIF_F_ALL_CSUM | BOND_VLAN_FEATURES);
1382 features |= NETIF_F_GSO_MASK | NETIF_F_NO_CSUM;
1384 if (!bond->first_slave)
1385 goto done;
1387 features &= ~NETIF_F_ONE_FOR_ALL;
1389 vlan_features = bond->first_slave->dev->vlan_features;
1390 bond_for_each_slave(bond, slave, i) {
1391 features = netdev_increment_features(features,
1392 slave->dev->features,
1393 NETIF_F_ONE_FOR_ALL);
1394 vlan_features = netdev_increment_features(vlan_features,
1395 slave->dev->vlan_features,
1396 NETIF_F_ONE_FOR_ALL);
1397 if (slave->dev->hard_header_len > max_hard_header_len)
1398 max_hard_header_len = slave->dev->hard_header_len;
1401 done:
1402 features |= (bond_dev->features & BOND_VLAN_FEATURES);
1403 bond_dev->features = netdev_fix_features(features, NULL);
1404 bond_dev->vlan_features = netdev_fix_features(vlan_features, NULL);
1405 bond_dev->hard_header_len = max_hard_header_len;
1407 return 0;
1410 static void bond_setup_by_slave(struct net_device *bond_dev,
1411 struct net_device *slave_dev)
1413 struct bonding *bond = netdev_priv(bond_dev);
1415 bond_dev->header_ops = slave_dev->header_ops;
1417 bond_dev->type = slave_dev->type;
1418 bond_dev->hard_header_len = slave_dev->hard_header_len;
1419 bond_dev->addr_len = slave_dev->addr_len;
1421 memcpy(bond_dev->broadcast, slave_dev->broadcast,
1422 slave_dev->addr_len);
1423 bond->setup_by_slave = 1;
1426 /* enslave device <slave> to bond device <master> */
1427 int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
1429 struct bonding *bond = netdev_priv(bond_dev);
1430 const struct net_device_ops *slave_ops = slave_dev->netdev_ops;
1431 struct slave *new_slave = NULL;
1432 struct netdev_hw_addr *ha;
1433 struct sockaddr addr;
1434 int link_reporting;
1435 int old_features = bond_dev->features;
1436 int res = 0;
1438 if (!bond->params.use_carrier && slave_dev->ethtool_ops == NULL &&
1439 slave_ops->ndo_do_ioctl == NULL) {
1440 pr_warning("%s: Warning: no link monitoring support for %s\n",
1441 bond_dev->name, slave_dev->name);
1444 /* already enslaved */
1445 if (slave_dev->flags & IFF_SLAVE) {
1446 pr_debug("Error, Device was already enslaved\n");
1447 return -EBUSY;
1450 /* vlan challenged mutual exclusion */
1451 /* no need to lock since we're protected by rtnl_lock */
1452 if (slave_dev->features & NETIF_F_VLAN_CHALLENGED) {
1453 pr_debug("%s: NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
1454 if (bond->vlgrp) {
1455 pr_err("%s: Error: cannot enslave VLAN challenged slave %s on VLAN enabled bond %s\n",
1456 bond_dev->name, slave_dev->name, bond_dev->name);
1457 return -EPERM;
1458 } else {
1459 pr_warning("%s: Warning: enslaved VLAN challenged slave %s. Adding VLANs will be blocked as long as %s is part of bond %s\n",
1460 bond_dev->name, slave_dev->name,
1461 slave_dev->name, bond_dev->name);
1462 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1464 } else {
1465 pr_debug("%s: ! NETIF_F_VLAN_CHALLENGED\n", slave_dev->name);
1466 if (bond->slave_cnt == 0) {
1467 /* First slave, and it is not VLAN challenged,
1468 * so remove the block of adding VLANs over the bond.
1470 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1475 * Old ifenslave binaries are no longer supported. These can
1476 * be identified with moderate accuracy by the state of the slave:
1477 * the current ifenslave will set the interface down prior to
1478 * enslaving it; the old ifenslave will not.
1480 if ((slave_dev->flags & IFF_UP)) {
1481 pr_err("%s is up. This may be due to an out of date ifenslave.\n",
1482 slave_dev->name);
1483 res = -EPERM;
1484 goto err_undo_flags;
1487 /* set bonding device ether type by slave - bonding netdevices are
1488 * created with ether_setup, so when the slave type is not ARPHRD_ETHER
1489 * there is a need to override some of the type dependent attribs/funcs.
1491 * bond ether type mutual exclusion - don't allow slaves of dissimilar
1492 * ether type (eg ARPHRD_ETHER and ARPHRD_INFINIBAND) share the same bond
1494 if (bond->slave_cnt == 0) {
1495 if (bond_dev->type != slave_dev->type) {
1496 pr_debug("%s: change device type from %d to %d\n",
1497 bond_dev->name,
1498 bond_dev->type, slave_dev->type);
1500 res = netdev_bonding_change(bond_dev,
1501 NETDEV_PRE_TYPE_CHANGE);
1502 res = notifier_to_errno(res);
1503 if (res) {
1504 pr_err("%s: refused to change device type\n",
1505 bond_dev->name);
1506 res = -EBUSY;
1507 goto err_undo_flags;
1510 /* Flush unicast and multicast addresses */
1511 dev_uc_flush(bond_dev);
1512 dev_mc_flush(bond_dev);
1514 if (slave_dev->type != ARPHRD_ETHER)
1515 bond_setup_by_slave(bond_dev, slave_dev);
1516 else
1517 ether_setup(bond_dev);
1519 netdev_bonding_change(bond_dev,
1520 NETDEV_POST_TYPE_CHANGE);
1522 } else if (bond_dev->type != slave_dev->type) {
1523 pr_err("%s ether type (%d) is different from other slaves (%d), can not enslave it.\n",
1524 slave_dev->name,
1525 slave_dev->type, bond_dev->type);
1526 res = -EINVAL;
1527 goto err_undo_flags;
1530 if (slave_ops->ndo_set_mac_address == NULL) {
1531 if (bond->slave_cnt == 0) {
1532 pr_warning("%s: Warning: The first slave device specified does not support setting the MAC address. Setting fail_over_mac to active.",
1533 bond_dev->name);
1534 bond->params.fail_over_mac = BOND_FOM_ACTIVE;
1535 } else if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
1536 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",
1537 bond_dev->name);
1538 res = -EOPNOTSUPP;
1539 goto err_undo_flags;
1543 /* If this is the first slave, then we need to set the master's hardware
1544 * address to be the same as the slave's. */
1545 if (is_zero_ether_addr(bond->dev->dev_addr))
1546 memcpy(bond->dev->dev_addr, slave_dev->dev_addr,
1547 slave_dev->addr_len);
1550 new_slave = kzalloc(sizeof(struct slave), GFP_KERNEL);
1551 if (!new_slave) {
1552 res = -ENOMEM;
1553 goto err_undo_flags;
1557 * Set the new_slave's queue_id to be zero. Queue ID mapping
1558 * is set via sysfs or module option if desired.
1560 new_slave->queue_id = 0;
1562 /* Save slave's original mtu and then set it to match the bond */
1563 new_slave->original_mtu = slave_dev->mtu;
1564 res = dev_set_mtu(slave_dev, bond->dev->mtu);
1565 if (res) {
1566 pr_debug("Error %d calling dev_set_mtu\n", res);
1567 goto err_free;
1571 * Save slave's original ("permanent") mac address for modes
1572 * that need it, and for restoring it upon release, and then
1573 * set it to the master's address
1575 memcpy(new_slave->perm_hwaddr, slave_dev->dev_addr, ETH_ALEN);
1577 if (!bond->params.fail_over_mac) {
1579 * Set slave to master's mac address. The application already
1580 * set the master's mac address to that of the first slave
1582 memcpy(addr.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
1583 addr.sa_family = slave_dev->type;
1584 res = dev_set_mac_address(slave_dev, &addr);
1585 if (res) {
1586 pr_debug("Error %d calling set_mac_address\n", res);
1587 goto err_restore_mtu;
1591 res = netdev_set_master(slave_dev, bond_dev);
1592 if (res) {
1593 pr_debug("Error %d calling netdev_set_master\n", res);
1594 goto err_restore_mac;
1596 /* open the slave since the application closed it */
1597 res = dev_open(slave_dev);
1598 if (res) {
1599 pr_debug("Opening slave %s failed\n", slave_dev->name);
1600 goto err_unset_master;
1603 new_slave->dev = slave_dev;
1604 slave_dev->priv_flags |= IFF_BONDING;
1606 if (bond_is_lb(bond)) {
1607 /* bond_alb_init_slave() must be called before all other stages since
1608 * it might fail and we do not want to have to undo everything
1610 res = bond_alb_init_slave(bond, new_slave);
1611 if (res)
1612 goto err_close;
1615 /* If the mode USES_PRIMARY, then the new slave gets the
1616 * master's promisc (and mc) settings only if it becomes the
1617 * curr_active_slave, and that is taken care of later when calling
1618 * bond_change_active()
1620 if (!USES_PRIMARY(bond->params.mode)) {
1621 /* set promiscuity level to new slave */
1622 if (bond_dev->flags & IFF_PROMISC) {
1623 res = dev_set_promiscuity(slave_dev, 1);
1624 if (res)
1625 goto err_close;
1628 /* set allmulti level to new slave */
1629 if (bond_dev->flags & IFF_ALLMULTI) {
1630 res = dev_set_allmulti(slave_dev, 1);
1631 if (res)
1632 goto err_close;
1635 netif_addr_lock_bh(bond_dev);
1636 /* upload master's mc_list to new slave */
1637 netdev_for_each_mc_addr(ha, bond_dev)
1638 dev_mc_add(slave_dev, ha->addr);
1639 netif_addr_unlock_bh(bond_dev);
1642 if (bond->params.mode == BOND_MODE_8023AD) {
1643 /* add lacpdu mc addr to mc list */
1644 u8 lacpdu_multicast[ETH_ALEN] = MULTICAST_LACPDU_ADDR;
1646 dev_mc_add(slave_dev, lacpdu_multicast);
1649 bond_add_vlans_on_slave(bond, slave_dev);
1651 write_lock_bh(&bond->lock);
1653 bond_attach_slave(bond, new_slave);
1655 new_slave->delay = 0;
1656 new_slave->link_failure_count = 0;
1658 bond_compute_features(bond);
1660 write_unlock_bh(&bond->lock);
1662 read_lock(&bond->lock);
1664 new_slave->last_arp_rx = jiffies;
1666 if (bond->params.miimon && !bond->params.use_carrier) {
1667 link_reporting = bond_check_dev_link(bond, slave_dev, 1);
1669 if ((link_reporting == -1) && !bond->params.arp_interval) {
1671 * miimon is set but a bonded network driver
1672 * does not support ETHTOOL/MII and
1673 * arp_interval is not set. Note: if
1674 * use_carrier is enabled, we will never go
1675 * here (because netif_carrier is always
1676 * supported); thus, we don't need to change
1677 * the messages for netif_carrier.
1679 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",
1680 bond_dev->name, slave_dev->name);
1681 } else if (link_reporting == -1) {
1682 /* unable get link status using mii/ethtool */
1683 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",
1684 bond_dev->name, slave_dev->name);
1688 /* check for initial state */
1689 if (!bond->params.miimon ||
1690 (bond_check_dev_link(bond, slave_dev, 0) == BMSR_LSTATUS)) {
1691 if (bond->params.updelay) {
1692 pr_debug("Initial state of slave_dev is BOND_LINK_BACK\n");
1693 new_slave->link = BOND_LINK_BACK;
1694 new_slave->delay = bond->params.updelay;
1695 } else {
1696 pr_debug("Initial state of slave_dev is BOND_LINK_UP\n");
1697 new_slave->link = BOND_LINK_UP;
1699 new_slave->jiffies = jiffies;
1700 } else {
1701 pr_debug("Initial state of slave_dev is BOND_LINK_DOWN\n");
1702 new_slave->link = BOND_LINK_DOWN;
1705 if (bond_update_speed_duplex(new_slave) &&
1706 (new_slave->link != BOND_LINK_DOWN)) {
1707 pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
1708 bond_dev->name, new_slave->dev->name);
1710 if (bond->params.mode == BOND_MODE_8023AD) {
1711 pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
1712 bond_dev->name);
1716 if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
1717 /* if there is a primary slave, remember it */
1718 if (strcmp(bond->params.primary, new_slave->dev->name) == 0) {
1719 bond->primary_slave = new_slave;
1720 bond->force_primary = true;
1724 write_lock_bh(&bond->curr_slave_lock);
1726 switch (bond->params.mode) {
1727 case BOND_MODE_ACTIVEBACKUP:
1728 bond_set_slave_inactive_flags(new_slave);
1729 bond_select_active_slave(bond);
1730 break;
1731 case BOND_MODE_8023AD:
1732 /* in 802.3ad mode, the internal mechanism
1733 * will activate the slaves in the selected
1734 * aggregator
1736 bond_set_slave_inactive_flags(new_slave);
1737 /* if this is the first slave */
1738 if (bond->slave_cnt == 1) {
1739 SLAVE_AD_INFO(new_slave).id = 1;
1740 /* Initialize AD with the number of times that the AD timer is called in 1 second
1741 * can be called only after the mac address of the bond is set
1743 bond_3ad_initialize(bond, 1000/AD_TIMER_INTERVAL,
1744 bond->params.lacp_fast);
1745 } else {
1746 SLAVE_AD_INFO(new_slave).id =
1747 SLAVE_AD_INFO(new_slave->prev).id + 1;
1750 bond_3ad_bind_slave(new_slave);
1751 break;
1752 case BOND_MODE_TLB:
1753 case BOND_MODE_ALB:
1754 new_slave->state = BOND_STATE_ACTIVE;
1755 bond_set_slave_inactive_flags(new_slave);
1756 bond_select_active_slave(bond);
1757 break;
1758 default:
1759 pr_debug("This slave is always active in trunk mode\n");
1761 /* always active in trunk mode */
1762 new_slave->state = BOND_STATE_ACTIVE;
1764 /* In trunking mode there is little meaning to curr_active_slave
1765 * anyway (it holds no special properties of the bond device),
1766 * so we can change it without calling change_active_interface()
1768 if (!bond->curr_active_slave)
1769 bond->curr_active_slave = new_slave;
1771 break;
1772 } /* switch(bond_mode) */
1774 write_unlock_bh(&bond->curr_slave_lock);
1776 bond_set_carrier(bond);
1778 #ifdef CONFIG_NET_POLL_CONTROLLER
1779 if (slaves_support_netpoll(bond_dev)) {
1780 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1781 if (bond_dev->npinfo)
1782 slave_dev->npinfo = bond_dev->npinfo;
1783 } else if (!(bond_dev->priv_flags & IFF_DISABLE_NETPOLL)) {
1784 bond_dev->priv_flags |= IFF_DISABLE_NETPOLL;
1785 pr_info("New slave device %s does not support netpoll\n",
1786 slave_dev->name);
1787 pr_info("Disabling netpoll support for %s\n", bond_dev->name);
1789 #endif
1790 read_unlock(&bond->lock);
1792 res = bond_create_slave_symlinks(bond_dev, slave_dev);
1793 if (res)
1794 goto err_close;
1796 pr_info("%s: enslaving %s as a%s interface with a%s link.\n",
1797 bond_dev->name, slave_dev->name,
1798 new_slave->state == BOND_STATE_ACTIVE ? "n active" : " backup",
1799 new_slave->link != BOND_LINK_DOWN ? "n up" : " down");
1801 /* enslave is successful */
1802 return 0;
1804 /* Undo stages on error */
1805 err_close:
1806 dev_close(slave_dev);
1808 err_unset_master:
1809 netdev_set_master(slave_dev, NULL);
1811 err_restore_mac:
1812 if (!bond->params.fail_over_mac) {
1813 /* XXX TODO - fom follow mode needs to change master's
1814 * MAC if this slave's MAC is in use by the bond, or at
1815 * least print a warning.
1817 memcpy(addr.sa_data, new_slave->perm_hwaddr, ETH_ALEN);
1818 addr.sa_family = slave_dev->type;
1819 dev_set_mac_address(slave_dev, &addr);
1822 err_restore_mtu:
1823 dev_set_mtu(slave_dev, new_slave->original_mtu);
1825 err_free:
1826 kfree(new_slave);
1828 err_undo_flags:
1829 bond_dev->features = old_features;
1831 return res;
1835 * Try to release the slave device <slave> from the bond device <master>
1836 * It is legal to access curr_active_slave without a lock because all the function
1837 * is write-locked.
1839 * The rules for slave state should be:
1840 * for Active/Backup:
1841 * Active stays on all backups go down
1842 * for Bonded connections:
1843 * The first up interface should be left on and all others downed.
1845 int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
1847 struct bonding *bond = netdev_priv(bond_dev);
1848 struct slave *slave, *oldcurrent;
1849 struct sockaddr addr;
1851 /* slave is not a slave or master is not master of this slave */
1852 if (!(slave_dev->flags & IFF_SLAVE) ||
1853 (slave_dev->master != bond_dev)) {
1854 pr_err("%s: Error: cannot release %s.\n",
1855 bond_dev->name, slave_dev->name);
1856 return -EINVAL;
1859 block_netpoll_tx();
1860 netdev_bonding_change(bond_dev, NETDEV_BONDING_DESLAVE);
1861 write_lock_bh(&bond->lock);
1863 slave = bond_get_slave_by_dev(bond, slave_dev);
1864 if (!slave) {
1865 /* not a slave of this bond */
1866 pr_info("%s: %s not enslaved\n",
1867 bond_dev->name, slave_dev->name);
1868 write_unlock_bh(&bond->lock);
1869 unblock_netpoll_tx();
1870 return -EINVAL;
1873 if (!bond->params.fail_over_mac) {
1874 if (!compare_ether_addr(bond_dev->dev_addr, slave->perm_hwaddr) &&
1875 bond->slave_cnt > 1)
1876 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",
1877 bond_dev->name, slave_dev->name,
1878 slave->perm_hwaddr,
1879 bond_dev->name, slave_dev->name);
1882 /* Inform AD package of unbinding of slave. */
1883 if (bond->params.mode == BOND_MODE_8023AD) {
1884 /* must be called before the slave is
1885 * detached from the list
1887 bond_3ad_unbind_slave(slave);
1890 pr_info("%s: releasing %s interface %s\n",
1891 bond_dev->name,
1892 (slave->state == BOND_STATE_ACTIVE) ? "active" : "backup",
1893 slave_dev->name);
1895 oldcurrent = bond->curr_active_slave;
1897 bond->current_arp_slave = NULL;
1899 /* release the slave from its bond */
1900 bond_detach_slave(bond, slave);
1902 bond_compute_features(bond);
1904 if (bond->primary_slave == slave)
1905 bond->primary_slave = NULL;
1907 if (oldcurrent == slave)
1908 bond_change_active_slave(bond, NULL);
1910 if (bond_is_lb(bond)) {
1911 /* Must be called only after the slave has been
1912 * detached from the list and the curr_active_slave
1913 * has been cleared (if our_slave == old_current),
1914 * but before a new active slave is selected.
1916 write_unlock_bh(&bond->lock);
1917 bond_alb_deinit_slave(bond, slave);
1918 write_lock_bh(&bond->lock);
1921 if (oldcurrent == slave) {
1923 * Note that we hold RTNL over this sequence, so there
1924 * is no concern that another slave add/remove event
1925 * will interfere.
1927 write_unlock_bh(&bond->lock);
1928 read_lock(&bond->lock);
1929 write_lock_bh(&bond->curr_slave_lock);
1931 bond_select_active_slave(bond);
1933 write_unlock_bh(&bond->curr_slave_lock);
1934 read_unlock(&bond->lock);
1935 write_lock_bh(&bond->lock);
1938 if (bond->slave_cnt == 0) {
1939 bond_set_carrier(bond);
1941 /* if the last slave was removed, zero the mac address
1942 * of the master so it will be set by the application
1943 * to the mac address of the first slave
1945 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
1947 if (!bond->vlgrp) {
1948 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
1949 } else {
1950 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
1951 bond_dev->name, bond_dev->name);
1952 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
1953 bond_dev->name);
1955 } else if ((bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
1956 !bond_has_challenged_slaves(bond)) {
1957 pr_info("%s: last VLAN challenged slave %s left bond %s. VLAN blocking is removed\n",
1958 bond_dev->name, slave_dev->name, bond_dev->name);
1959 bond_dev->features &= ~NETIF_F_VLAN_CHALLENGED;
1962 write_unlock_bh(&bond->lock);
1963 unblock_netpoll_tx();
1965 /* must do this from outside any spinlocks */
1966 bond_destroy_slave_symlinks(bond_dev, slave_dev);
1968 bond_del_vlans_from_slave(bond, slave_dev);
1970 /* If the mode USES_PRIMARY, then we should only remove its
1971 * promisc and mc settings if it was the curr_active_slave, but that was
1972 * already taken care of above when we detached the slave
1974 if (!USES_PRIMARY(bond->params.mode)) {
1975 /* unset promiscuity level from slave */
1976 if (bond_dev->flags & IFF_PROMISC)
1977 dev_set_promiscuity(slave_dev, -1);
1979 /* unset allmulti level from slave */
1980 if (bond_dev->flags & IFF_ALLMULTI)
1981 dev_set_allmulti(slave_dev, -1);
1983 /* flush master's mc_list from slave */
1984 netif_addr_lock_bh(bond_dev);
1985 bond_mc_list_flush(bond_dev, slave_dev);
1986 netif_addr_unlock_bh(bond_dev);
1989 netdev_set_master(slave_dev, NULL);
1991 #ifdef CONFIG_NET_POLL_CONTROLLER
1992 read_lock_bh(&bond->lock);
1994 if (slaves_support_netpoll(bond_dev))
1995 bond_dev->priv_flags &= ~IFF_DISABLE_NETPOLL;
1996 read_unlock_bh(&bond->lock);
1997 if (slave_dev->netdev_ops->ndo_netpoll_cleanup)
1998 slave_dev->netdev_ops->ndo_netpoll_cleanup(slave_dev);
1999 else
2000 slave_dev->npinfo = NULL;
2001 #endif
2003 /* close slave before restoring its mac address */
2004 dev_close(slave_dev);
2006 if (bond->params.fail_over_mac != BOND_FOM_ACTIVE) {
2007 /* restore original ("permanent") mac address */
2008 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2009 addr.sa_family = slave_dev->type;
2010 dev_set_mac_address(slave_dev, &addr);
2013 dev_set_mtu(slave_dev, slave->original_mtu);
2015 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2016 IFF_SLAVE_INACTIVE | IFF_BONDING |
2017 IFF_SLAVE_NEEDARP);
2019 kfree(slave);
2021 return 0; /* deletion OK */
2025 * First release a slave and than destroy the bond if no more slaves are left.
2026 * Must be under rtnl_lock when this function is called.
2028 static int bond_release_and_destroy(struct net_device *bond_dev,
2029 struct net_device *slave_dev)
2031 struct bonding *bond = netdev_priv(bond_dev);
2032 int ret;
2034 ret = bond_release(bond_dev, slave_dev);
2035 if ((ret == 0) && (bond->slave_cnt == 0)) {
2036 pr_info("%s: destroying bond %s.\n",
2037 bond_dev->name, bond_dev->name);
2038 unregister_netdevice(bond_dev);
2040 return ret;
2044 * This function releases all slaves.
2046 static int bond_release_all(struct net_device *bond_dev)
2048 struct bonding *bond = netdev_priv(bond_dev);
2049 struct slave *slave;
2050 struct net_device *slave_dev;
2051 struct sockaddr addr;
2053 write_lock_bh(&bond->lock);
2055 netif_carrier_off(bond_dev);
2057 if (bond->slave_cnt == 0)
2058 goto out;
2060 bond->current_arp_slave = NULL;
2061 bond->primary_slave = NULL;
2062 bond_change_active_slave(bond, NULL);
2064 while ((slave = bond->first_slave) != NULL) {
2065 /* Inform AD package of unbinding of slave
2066 * before slave is detached from the list.
2068 if (bond->params.mode == BOND_MODE_8023AD)
2069 bond_3ad_unbind_slave(slave);
2071 slave_dev = slave->dev;
2072 bond_detach_slave(bond, slave);
2074 /* now that the slave is detached, unlock and perform
2075 * all the undo steps that should not be called from
2076 * within a lock.
2078 write_unlock_bh(&bond->lock);
2080 if (bond_is_lb(bond)) {
2081 /* must be called only after the slave
2082 * has been detached from the list
2084 bond_alb_deinit_slave(bond, slave);
2087 bond_compute_features(bond);
2089 bond_destroy_slave_symlinks(bond_dev, slave_dev);
2090 bond_del_vlans_from_slave(bond, slave_dev);
2092 /* If the mode USES_PRIMARY, then we should only remove its
2093 * promisc and mc settings if it was the curr_active_slave, but that was
2094 * already taken care of above when we detached the slave
2096 if (!USES_PRIMARY(bond->params.mode)) {
2097 /* unset promiscuity level from slave */
2098 if (bond_dev->flags & IFF_PROMISC)
2099 dev_set_promiscuity(slave_dev, -1);
2101 /* unset allmulti level from slave */
2102 if (bond_dev->flags & IFF_ALLMULTI)
2103 dev_set_allmulti(slave_dev, -1);
2105 /* flush master's mc_list from slave */
2106 netif_addr_lock_bh(bond_dev);
2107 bond_mc_list_flush(bond_dev, slave_dev);
2108 netif_addr_unlock_bh(bond_dev);
2111 netdev_set_master(slave_dev, NULL);
2113 /* close slave before restoring its mac address */
2114 dev_close(slave_dev);
2116 if (!bond->params.fail_over_mac) {
2117 /* restore original ("permanent") mac address*/
2118 memcpy(addr.sa_data, slave->perm_hwaddr, ETH_ALEN);
2119 addr.sa_family = slave_dev->type;
2120 dev_set_mac_address(slave_dev, &addr);
2123 slave_dev->priv_flags &= ~(IFF_MASTER_8023AD | IFF_MASTER_ALB |
2124 IFF_SLAVE_INACTIVE);
2126 kfree(slave);
2128 /* re-acquire the lock before getting the next slave */
2129 write_lock_bh(&bond->lock);
2132 /* zero the mac address of the master so it will be
2133 * set by the application to the mac address of the
2134 * first slave
2136 memset(bond_dev->dev_addr, 0, bond_dev->addr_len);
2138 if (!bond->vlgrp) {
2139 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
2140 } else {
2141 pr_warning("%s: Warning: clearing HW address of %s while it still has VLANs.\n",
2142 bond_dev->name, bond_dev->name);
2143 pr_warning("%s: When re-adding slaves, make sure the bond's HW address matches its VLANs'.\n",
2144 bond_dev->name);
2147 pr_info("%s: released all slaves\n", bond_dev->name);
2149 out:
2150 write_unlock_bh(&bond->lock);
2151 return 0;
2155 * This function changes the active slave to slave <slave_dev>.
2156 * It returns -EINVAL in the following cases.
2157 * - <slave_dev> is not found in the list.
2158 * - There is not active slave now.
2159 * - <slave_dev> is already active.
2160 * - The link state of <slave_dev> is not BOND_LINK_UP.
2161 * - <slave_dev> is not running.
2162 * In these cases, this function does nothing.
2163 * In the other cases, current_slave pointer is changed and 0 is returned.
2165 static int bond_ioctl_change_active(struct net_device *bond_dev, struct net_device *slave_dev)
2167 struct bonding *bond = netdev_priv(bond_dev);
2168 struct slave *old_active = NULL;
2169 struct slave *new_active = NULL;
2170 int res = 0;
2172 if (!USES_PRIMARY(bond->params.mode))
2173 return -EINVAL;
2175 /* Verify that master_dev is indeed the master of slave_dev */
2176 if (!(slave_dev->flags & IFF_SLAVE) || (slave_dev->master != bond_dev))
2177 return -EINVAL;
2179 read_lock(&bond->lock);
2181 read_lock(&bond->curr_slave_lock);
2182 old_active = bond->curr_active_slave;
2183 read_unlock(&bond->curr_slave_lock);
2185 new_active = bond_get_slave_by_dev(bond, slave_dev);
2188 * Changing to the current active: do nothing; return success.
2190 if (new_active && (new_active == old_active)) {
2191 read_unlock(&bond->lock);
2192 return 0;
2195 if ((new_active) &&
2196 (old_active) &&
2197 (new_active->link == BOND_LINK_UP) &&
2198 IS_UP(new_active->dev)) {
2199 block_netpoll_tx();
2200 write_lock_bh(&bond->curr_slave_lock);
2201 bond_change_active_slave(bond, new_active);
2202 write_unlock_bh(&bond->curr_slave_lock);
2203 unblock_netpoll_tx();
2204 } else
2205 res = -EINVAL;
2207 read_unlock(&bond->lock);
2209 return res;
2212 static int bond_info_query(struct net_device *bond_dev, struct ifbond *info)
2214 struct bonding *bond = netdev_priv(bond_dev);
2216 info->bond_mode = bond->params.mode;
2217 info->miimon = bond->params.miimon;
2219 read_lock(&bond->lock);
2220 info->num_slaves = bond->slave_cnt;
2221 read_unlock(&bond->lock);
2223 return 0;
2226 static int bond_slave_info_query(struct net_device *bond_dev, struct ifslave *info)
2228 struct bonding *bond = netdev_priv(bond_dev);
2229 struct slave *slave;
2230 int i, res = -ENODEV;
2232 read_lock(&bond->lock);
2234 bond_for_each_slave(bond, slave, i) {
2235 if (i == (int)info->slave_id) {
2236 res = 0;
2237 strcpy(info->slave_name, slave->dev->name);
2238 info->link = slave->link;
2239 info->state = slave->state;
2240 info->link_failure_count = slave->link_failure_count;
2241 break;
2245 read_unlock(&bond->lock);
2247 return res;
2250 /*-------------------------------- Monitoring -------------------------------*/
2253 static int bond_miimon_inspect(struct bonding *bond)
2255 struct slave *slave;
2256 int i, link_state, commit = 0;
2257 bool ignore_updelay;
2259 ignore_updelay = !bond->curr_active_slave ? true : false;
2261 bond_for_each_slave(bond, slave, i) {
2262 slave->new_link = BOND_LINK_NOCHANGE;
2264 link_state = bond_check_dev_link(bond, slave->dev, 0);
2266 switch (slave->link) {
2267 case BOND_LINK_UP:
2268 if (link_state)
2269 continue;
2271 slave->link = BOND_LINK_FAIL;
2272 slave->delay = bond->params.downdelay;
2273 if (slave->delay) {
2274 pr_info("%s: link status down for %sinterface %s, disabling it in %d ms.\n",
2275 bond->dev->name,
2276 (bond->params.mode ==
2277 BOND_MODE_ACTIVEBACKUP) ?
2278 ((slave->state == BOND_STATE_ACTIVE) ?
2279 "active " : "backup ") : "",
2280 slave->dev->name,
2281 bond->params.downdelay * bond->params.miimon);
2283 /*FALLTHRU*/
2284 case BOND_LINK_FAIL:
2285 if (link_state) {
2287 * recovered before downdelay expired
2289 slave->link = BOND_LINK_UP;
2290 slave->jiffies = jiffies;
2291 pr_info("%s: link status up again after %d ms for interface %s.\n",
2292 bond->dev->name,
2293 (bond->params.downdelay - slave->delay) *
2294 bond->params.miimon,
2295 slave->dev->name);
2296 continue;
2299 if (slave->delay <= 0) {
2300 slave->new_link = BOND_LINK_DOWN;
2301 commit++;
2302 continue;
2305 slave->delay--;
2306 break;
2308 case BOND_LINK_DOWN:
2309 if (!link_state)
2310 continue;
2312 slave->link = BOND_LINK_BACK;
2313 slave->delay = bond->params.updelay;
2315 if (slave->delay) {
2316 pr_info("%s: link status up for interface %s, enabling it in %d ms.\n",
2317 bond->dev->name, slave->dev->name,
2318 ignore_updelay ? 0 :
2319 bond->params.updelay *
2320 bond->params.miimon);
2322 /*FALLTHRU*/
2323 case BOND_LINK_BACK:
2324 if (!link_state) {
2325 slave->link = BOND_LINK_DOWN;
2326 pr_info("%s: link status down again after %d ms for interface %s.\n",
2327 bond->dev->name,
2328 (bond->params.updelay - slave->delay) *
2329 bond->params.miimon,
2330 slave->dev->name);
2332 continue;
2335 if (ignore_updelay)
2336 slave->delay = 0;
2338 if (slave->delay <= 0) {
2339 slave->new_link = BOND_LINK_UP;
2340 commit++;
2341 ignore_updelay = false;
2342 continue;
2345 slave->delay--;
2346 break;
2350 return commit;
2353 static void bond_miimon_commit(struct bonding *bond)
2355 struct slave *slave;
2356 int i;
2358 bond_for_each_slave(bond, slave, i) {
2359 switch (slave->new_link) {
2360 case BOND_LINK_NOCHANGE:
2361 continue;
2363 case BOND_LINK_UP:
2364 slave->link = BOND_LINK_UP;
2365 slave->jiffies = jiffies;
2367 if (bond->params.mode == BOND_MODE_8023AD) {
2368 /* prevent it from being the active one */
2369 slave->state = BOND_STATE_BACKUP;
2370 } else if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
2371 /* make it immediately active */
2372 slave->state = BOND_STATE_ACTIVE;
2373 } else if (slave != bond->primary_slave) {
2374 /* prevent it from being the active one */
2375 slave->state = BOND_STATE_BACKUP;
2378 bond_update_speed_duplex(slave);
2380 pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
2381 bond->dev->name, slave->dev->name,
2382 slave->speed, slave->duplex ? "full" : "half");
2384 /* notify ad that the link status has changed */
2385 if (bond->params.mode == BOND_MODE_8023AD)
2386 bond_3ad_handle_link_change(slave, BOND_LINK_UP);
2388 if (bond_is_lb(bond))
2389 bond_alb_handle_link_change(bond, slave,
2390 BOND_LINK_UP);
2392 if (!bond->curr_active_slave ||
2393 (slave == bond->primary_slave))
2394 goto do_failover;
2396 continue;
2398 case BOND_LINK_DOWN:
2399 if (slave->link_failure_count < UINT_MAX)
2400 slave->link_failure_count++;
2402 slave->link = BOND_LINK_DOWN;
2404 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP ||
2405 bond->params.mode == BOND_MODE_8023AD)
2406 bond_set_slave_inactive_flags(slave);
2408 pr_info("%s: link status definitely down for interface %s, disabling it\n",
2409 bond->dev->name, slave->dev->name);
2411 if (bond->params.mode == BOND_MODE_8023AD)
2412 bond_3ad_handle_link_change(slave,
2413 BOND_LINK_DOWN);
2415 if (bond_is_lb(bond))
2416 bond_alb_handle_link_change(bond, slave,
2417 BOND_LINK_DOWN);
2419 if (slave == bond->curr_active_slave)
2420 goto do_failover;
2422 continue;
2424 default:
2425 pr_err("%s: invalid new link %d on slave %s\n",
2426 bond->dev->name, slave->new_link,
2427 slave->dev->name);
2428 slave->new_link = BOND_LINK_NOCHANGE;
2430 continue;
2433 do_failover:
2434 ASSERT_RTNL();
2435 block_netpoll_tx();
2436 write_lock_bh(&bond->curr_slave_lock);
2437 bond_select_active_slave(bond);
2438 write_unlock_bh(&bond->curr_slave_lock);
2439 unblock_netpoll_tx();
2442 bond_set_carrier(bond);
2446 * bond_mii_monitor
2448 * Really a wrapper that splits the mii monitor into two phases: an
2449 * inspection, then (if inspection indicates something needs to be done)
2450 * an acquisition of appropriate locks followed by a commit phase to
2451 * implement whatever link state changes are indicated.
2453 void bond_mii_monitor(struct work_struct *work)
2455 struct bonding *bond = container_of(work, struct bonding,
2456 mii_work.work);
2458 read_lock(&bond->lock);
2459 if (bond->kill_timers)
2460 goto out;
2462 if (bond->slave_cnt == 0)
2463 goto re_arm;
2465 if (bond->send_grat_arp) {
2466 read_lock(&bond->curr_slave_lock);
2467 bond_send_gratuitous_arp(bond);
2468 read_unlock(&bond->curr_slave_lock);
2471 if (bond->send_unsol_na) {
2472 read_lock(&bond->curr_slave_lock);
2473 bond_send_unsolicited_na(bond);
2474 read_unlock(&bond->curr_slave_lock);
2477 if (bond_miimon_inspect(bond)) {
2478 read_unlock(&bond->lock);
2479 rtnl_lock();
2480 read_lock(&bond->lock);
2482 bond_miimon_commit(bond);
2484 read_unlock(&bond->lock);
2485 rtnl_unlock(); /* might sleep, hold no other locks */
2486 read_lock(&bond->lock);
2489 re_arm:
2490 if (bond->params.miimon)
2491 queue_delayed_work(bond->wq, &bond->mii_work,
2492 msecs_to_jiffies(bond->params.miimon));
2493 out:
2494 read_unlock(&bond->lock);
2497 static __be32 bond_glean_dev_ip(struct net_device *dev)
2499 struct in_device *idev;
2500 struct in_ifaddr *ifa;
2501 __be32 addr = 0;
2503 if (!dev)
2504 return 0;
2506 rcu_read_lock();
2507 idev = __in_dev_get_rcu(dev);
2508 if (!idev)
2509 goto out;
2511 ifa = idev->ifa_list;
2512 if (!ifa)
2513 goto out;
2515 addr = ifa->ifa_local;
2516 out:
2517 rcu_read_unlock();
2518 return addr;
2521 static int bond_has_this_ip(struct bonding *bond, __be32 ip)
2523 struct vlan_entry *vlan;
2525 if (ip == bond->master_ip)
2526 return 1;
2528 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
2529 if (ip == vlan->vlan_ip)
2530 return 1;
2533 return 0;
2537 * We go to the (large) trouble of VLAN tagging ARP frames because
2538 * switches in VLAN mode (especially if ports are configured as
2539 * "native" to a VLAN) might not pass non-tagged frames.
2541 static void bond_arp_send(struct net_device *slave_dev, int arp_op, __be32 dest_ip, __be32 src_ip, unsigned short vlan_id)
2543 struct sk_buff *skb;
2545 pr_debug("arp %d on slave %s: dst %x src %x vid %d\n", arp_op,
2546 slave_dev->name, dest_ip, src_ip, vlan_id);
2548 skb = arp_create(arp_op, ETH_P_ARP, dest_ip, slave_dev, src_ip,
2549 NULL, slave_dev->dev_addr, NULL);
2551 if (!skb) {
2552 pr_err("ARP packet allocation failed\n");
2553 return;
2555 if (vlan_id) {
2556 skb = vlan_put_tag(skb, vlan_id);
2557 if (!skb) {
2558 pr_err("failed to insert VLAN tag\n");
2559 return;
2562 arp_xmit(skb);
2566 static void bond_arp_send_all(struct bonding *bond, struct slave *slave)
2568 int i, vlan_id, rv;
2569 __be32 *targets = bond->params.arp_targets;
2570 struct vlan_entry *vlan;
2571 struct net_device *vlan_dev;
2572 struct flowi fl;
2573 struct rtable *rt;
2575 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
2576 if (!targets[i])
2577 break;
2578 pr_debug("basa: target %x\n", targets[i]);
2579 if (!bond->vlgrp) {
2580 pr_debug("basa: empty vlan: arp_send\n");
2581 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2582 bond->master_ip, 0);
2583 continue;
2587 * If VLANs are configured, we do a route lookup to
2588 * determine which VLAN interface would be used, so we
2589 * can tag the ARP with the proper VLAN tag.
2591 memset(&fl, 0, sizeof(fl));
2592 fl.fl4_dst = targets[i];
2593 fl.fl4_tos = RTO_ONLINK;
2595 rv = ip_route_output_key(dev_net(bond->dev), &rt, &fl);
2596 if (rv) {
2597 if (net_ratelimit()) {
2598 pr_warning("%s: no route to arp_ip_target %pI4\n",
2599 bond->dev->name, &fl.fl4_dst);
2601 continue;
2605 * This target is not on a VLAN
2607 if (rt->dst.dev == bond->dev) {
2608 ip_rt_put(rt);
2609 pr_debug("basa: rtdev == bond->dev: arp_send\n");
2610 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2611 bond->master_ip, 0);
2612 continue;
2615 vlan_id = 0;
2616 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
2617 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
2618 if (vlan_dev == rt->dst.dev) {
2619 vlan_id = vlan->vlan_id;
2620 pr_debug("basa: vlan match on %s %d\n",
2621 vlan_dev->name, vlan_id);
2622 break;
2626 if (vlan_id) {
2627 ip_rt_put(rt);
2628 bond_arp_send(slave->dev, ARPOP_REQUEST, targets[i],
2629 vlan->vlan_ip, vlan_id);
2630 continue;
2633 if (net_ratelimit()) {
2634 pr_warning("%s: no path to arp_ip_target %pI4 via rt.dev %s\n",
2635 bond->dev->name, &fl.fl4_dst,
2636 rt->dst.dev ? rt->dst.dev->name : "NULL");
2638 ip_rt_put(rt);
2643 * Kick out a gratuitous ARP for an IP on the bonding master plus one
2644 * for each VLAN above us.
2646 * Caller must hold curr_slave_lock for read or better
2648 static void bond_send_gratuitous_arp(struct bonding *bond)
2650 struct slave *slave = bond->curr_active_slave;
2651 struct vlan_entry *vlan;
2652 struct net_device *vlan_dev;
2654 pr_debug("bond_send_grat_arp: bond %s slave %s\n",
2655 bond->dev->name, slave ? slave->dev->name : "NULL");
2657 if (!slave || !bond->send_grat_arp ||
2658 test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
2659 return;
2661 bond->send_grat_arp--;
2663 if (bond->master_ip) {
2664 bond_arp_send(slave->dev, ARPOP_REPLY, bond->master_ip,
2665 bond->master_ip, 0);
2668 if (!bond->vlgrp)
2669 return;
2671 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
2672 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
2673 if (vlan->vlan_ip) {
2674 bond_arp_send(slave->dev, ARPOP_REPLY, vlan->vlan_ip,
2675 vlan->vlan_ip, vlan->vlan_id);
2680 static void bond_validate_arp(struct bonding *bond, struct slave *slave, __be32 sip, __be32 tip)
2682 int i;
2683 __be32 *targets = bond->params.arp_targets;
2685 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && targets[i]; i++) {
2686 pr_debug("bva: sip %pI4 tip %pI4 t[%d] %pI4 bhti(tip) %d\n",
2687 &sip, &tip, i, &targets[i],
2688 bond_has_this_ip(bond, tip));
2689 if (sip == targets[i]) {
2690 if (bond_has_this_ip(bond, tip))
2691 slave->last_arp_rx = jiffies;
2692 return;
2697 static int bond_arp_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
2699 struct arphdr *arp;
2700 struct slave *slave;
2701 struct bonding *bond;
2702 unsigned char *arp_ptr;
2703 __be32 sip, tip;
2705 if (dev->priv_flags & IFF_802_1Q_VLAN) {
2707 * When using VLANS and bonding, dev and oriv_dev may be
2708 * incorrect if the physical interface supports VLAN
2709 * acceleration. With this change ARP validation now
2710 * works for hosts only reachable on the VLAN interface.
2712 dev = vlan_dev_real_dev(dev);
2713 orig_dev = dev_get_by_index_rcu(dev_net(skb->dev),skb->skb_iif);
2716 if (!(dev->priv_flags & IFF_BONDING) || !(dev->flags & IFF_MASTER))
2717 goto out;
2719 bond = netdev_priv(dev);
2720 read_lock(&bond->lock);
2722 pr_debug("bond_arp_rcv: bond %s skb->dev %s orig_dev %s\n",
2723 bond->dev->name, skb->dev ? skb->dev->name : "NULL",
2724 orig_dev ? orig_dev->name : "NULL");
2726 slave = bond_get_slave_by_dev(bond, orig_dev);
2727 if (!slave || !slave_do_arp_validate(bond, slave))
2728 goto out_unlock;
2730 skb = skb_share_check(skb, GFP_ATOMIC);
2731 if (!skb)
2732 goto out_unlock;
2734 if (!pskb_may_pull(skb, arp_hdr_len(dev)))
2735 goto out_unlock;
2737 arp = arp_hdr(skb);
2738 if (arp->ar_hln != dev->addr_len ||
2739 skb->pkt_type == PACKET_OTHERHOST ||
2740 skb->pkt_type == PACKET_LOOPBACK ||
2741 arp->ar_hrd != htons(ARPHRD_ETHER) ||
2742 arp->ar_pro != htons(ETH_P_IP) ||
2743 arp->ar_pln != 4)
2744 goto out_unlock;
2746 arp_ptr = (unsigned char *)(arp + 1);
2747 arp_ptr += dev->addr_len;
2748 memcpy(&sip, arp_ptr, 4);
2749 arp_ptr += 4 + dev->addr_len;
2750 memcpy(&tip, arp_ptr, 4);
2752 pr_debug("bond_arp_rcv: %s %s/%d av %d sv %d sip %pI4 tip %pI4\n",
2753 bond->dev->name, slave->dev->name, slave->state,
2754 bond->params.arp_validate, slave_do_arp_validate(bond, slave),
2755 &sip, &tip);
2758 * Backup slaves won't see the ARP reply, but do come through
2759 * here for each ARP probe (so we swap the sip/tip to validate
2760 * the probe). In a "redundant switch, common router" type of
2761 * configuration, the ARP probe will (hopefully) travel from
2762 * the active, through one switch, the router, then the other
2763 * switch before reaching the backup.
2765 if (slave->state == BOND_STATE_ACTIVE)
2766 bond_validate_arp(bond, slave, sip, tip);
2767 else
2768 bond_validate_arp(bond, slave, tip, sip);
2770 out_unlock:
2771 read_unlock(&bond->lock);
2772 out:
2773 dev_kfree_skb(skb);
2774 return NET_RX_SUCCESS;
2778 * this function is called regularly to monitor each slave's link
2779 * ensuring that traffic is being sent and received when arp monitoring
2780 * is used in load-balancing mode. if the adapter has been dormant, then an
2781 * arp is transmitted to generate traffic. see activebackup_arp_monitor for
2782 * arp monitoring in active backup mode.
2784 void bond_loadbalance_arp_mon(struct work_struct *work)
2786 struct bonding *bond = container_of(work, struct bonding,
2787 arp_work.work);
2788 struct slave *slave, *oldcurrent;
2789 int do_failover = 0;
2790 int delta_in_ticks;
2791 int i;
2793 read_lock(&bond->lock);
2795 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
2797 if (bond->kill_timers)
2798 goto out;
2800 if (bond->slave_cnt == 0)
2801 goto re_arm;
2803 read_lock(&bond->curr_slave_lock);
2804 oldcurrent = bond->curr_active_slave;
2805 read_unlock(&bond->curr_slave_lock);
2807 /* see if any of the previous devices are up now (i.e. they have
2808 * xmt and rcv traffic). the curr_active_slave does not come into
2809 * the picture unless it is null. also, slave->jiffies is not needed
2810 * here because we send an arp on each slave and give a slave as
2811 * long as it needs to get the tx/rx within the delta.
2812 * TODO: what about up/down delay in arp mode? it wasn't here before
2813 * so it can wait
2815 bond_for_each_slave(bond, slave, i) {
2816 unsigned long trans_start = dev_trans_start(slave->dev);
2818 if (slave->link != BOND_LINK_UP) {
2819 if (time_in_range(jiffies,
2820 trans_start - delta_in_ticks,
2821 trans_start + delta_in_ticks) &&
2822 time_in_range(jiffies,
2823 slave->dev->last_rx - delta_in_ticks,
2824 slave->dev->last_rx + delta_in_ticks)) {
2826 slave->link = BOND_LINK_UP;
2827 slave->state = BOND_STATE_ACTIVE;
2829 /* primary_slave has no meaning in round-robin
2830 * mode. the window of a slave being up and
2831 * curr_active_slave being null after enslaving
2832 * is closed.
2834 if (!oldcurrent) {
2835 pr_info("%s: link status definitely up for interface %s, ",
2836 bond->dev->name,
2837 slave->dev->name);
2838 do_failover = 1;
2839 } else {
2840 pr_info("%s: interface %s is now up\n",
2841 bond->dev->name,
2842 slave->dev->name);
2845 } else {
2846 /* slave->link == BOND_LINK_UP */
2848 /* not all switches will respond to an arp request
2849 * when the source ip is 0, so don't take the link down
2850 * if we don't know our ip yet
2852 if (!time_in_range(jiffies,
2853 trans_start - delta_in_ticks,
2854 trans_start + 2 * delta_in_ticks) ||
2855 !time_in_range(jiffies,
2856 slave->dev->last_rx - delta_in_ticks,
2857 slave->dev->last_rx + 2 * delta_in_ticks)) {
2859 slave->link = BOND_LINK_DOWN;
2860 slave->state = BOND_STATE_BACKUP;
2862 if (slave->link_failure_count < UINT_MAX)
2863 slave->link_failure_count++;
2865 pr_info("%s: interface %s is now down.\n",
2866 bond->dev->name,
2867 slave->dev->name);
2869 if (slave == oldcurrent)
2870 do_failover = 1;
2874 /* note: if switch is in round-robin mode, all links
2875 * must tx arp to ensure all links rx an arp - otherwise
2876 * links may oscillate or not come up at all; if switch is
2877 * in something like xor mode, there is nothing we can
2878 * do - all replies will be rx'ed on same link causing slaves
2879 * to be unstable during low/no traffic periods
2881 if (IS_UP(slave->dev))
2882 bond_arp_send_all(bond, slave);
2885 if (do_failover) {
2886 block_netpoll_tx();
2887 write_lock_bh(&bond->curr_slave_lock);
2889 bond_select_active_slave(bond);
2891 write_unlock_bh(&bond->curr_slave_lock);
2892 unblock_netpoll_tx();
2895 re_arm:
2896 if (bond->params.arp_interval)
2897 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
2898 out:
2899 read_unlock(&bond->lock);
2903 * Called to inspect slaves for active-backup mode ARP monitor link state
2904 * changes. Sets new_link in slaves to specify what action should take
2905 * place for the slave. Returns 0 if no changes are found, >0 if changes
2906 * to link states must be committed.
2908 * Called with bond->lock held for read.
2910 static int bond_ab_arp_inspect(struct bonding *bond, int delta_in_ticks)
2912 struct slave *slave;
2913 int i, commit = 0;
2914 unsigned long trans_start;
2916 bond_for_each_slave(bond, slave, i) {
2917 slave->new_link = BOND_LINK_NOCHANGE;
2919 if (slave->link != BOND_LINK_UP) {
2920 if (time_in_range(jiffies,
2921 slave_last_rx(bond, slave) - delta_in_ticks,
2922 slave_last_rx(bond, slave) + delta_in_ticks)) {
2924 slave->new_link = BOND_LINK_UP;
2925 commit++;
2928 continue;
2932 * Give slaves 2*delta after being enslaved or made
2933 * active. This avoids bouncing, as the last receive
2934 * times need a full ARP monitor cycle to be updated.
2936 if (time_in_range(jiffies,
2937 slave->jiffies - delta_in_ticks,
2938 slave->jiffies + 2 * delta_in_ticks))
2939 continue;
2942 * Backup slave is down if:
2943 * - No current_arp_slave AND
2944 * - more than 3*delta since last receive AND
2945 * - the bond has an IP address
2947 * Note: a non-null current_arp_slave indicates
2948 * the curr_active_slave went down and we are
2949 * searching for a new one; under this condition
2950 * we only take the curr_active_slave down - this
2951 * gives each slave a chance to tx/rx traffic
2952 * before being taken out
2954 if (slave->state == BOND_STATE_BACKUP &&
2955 !bond->current_arp_slave &&
2956 !time_in_range(jiffies,
2957 slave_last_rx(bond, slave) - delta_in_ticks,
2958 slave_last_rx(bond, slave) + 3 * delta_in_ticks)) {
2960 slave->new_link = BOND_LINK_DOWN;
2961 commit++;
2965 * Active slave is down if:
2966 * - more than 2*delta since transmitting OR
2967 * - (more than 2*delta since receive AND
2968 * the bond has an IP address)
2970 trans_start = dev_trans_start(slave->dev);
2971 if ((slave->state == BOND_STATE_ACTIVE) &&
2972 (!time_in_range(jiffies,
2973 trans_start - delta_in_ticks,
2974 trans_start + 2 * delta_in_ticks) ||
2975 !time_in_range(jiffies,
2976 slave_last_rx(bond, slave) - delta_in_ticks,
2977 slave_last_rx(bond, slave) + 2 * delta_in_ticks))) {
2979 slave->new_link = BOND_LINK_DOWN;
2980 commit++;
2984 return commit;
2988 * Called to commit link state changes noted by inspection step of
2989 * active-backup mode ARP monitor.
2991 * Called with RTNL and bond->lock for read.
2993 static void bond_ab_arp_commit(struct bonding *bond, int delta_in_ticks)
2995 struct slave *slave;
2996 int i;
2997 unsigned long trans_start;
2999 bond_for_each_slave(bond, slave, i) {
3000 switch (slave->new_link) {
3001 case BOND_LINK_NOCHANGE:
3002 continue;
3004 case BOND_LINK_UP:
3005 trans_start = dev_trans_start(slave->dev);
3006 if ((!bond->curr_active_slave &&
3007 time_in_range(jiffies,
3008 trans_start - delta_in_ticks,
3009 trans_start + delta_in_ticks)) ||
3010 bond->curr_active_slave != slave) {
3011 slave->link = BOND_LINK_UP;
3012 bond->current_arp_slave = NULL;
3014 pr_info("%s: link status definitely up for interface %s.\n",
3015 bond->dev->name, slave->dev->name);
3017 if (!bond->curr_active_slave ||
3018 (slave == bond->primary_slave))
3019 goto do_failover;
3023 continue;
3025 case BOND_LINK_DOWN:
3026 if (slave->link_failure_count < UINT_MAX)
3027 slave->link_failure_count++;
3029 slave->link = BOND_LINK_DOWN;
3030 bond_set_slave_inactive_flags(slave);
3032 pr_info("%s: link status definitely down for interface %s, disabling it\n",
3033 bond->dev->name, slave->dev->name);
3035 if (slave == bond->curr_active_slave) {
3036 bond->current_arp_slave = NULL;
3037 goto do_failover;
3040 continue;
3042 default:
3043 pr_err("%s: impossible: new_link %d on slave %s\n",
3044 bond->dev->name, slave->new_link,
3045 slave->dev->name);
3046 continue;
3049 do_failover:
3050 ASSERT_RTNL();
3051 block_netpoll_tx();
3052 write_lock_bh(&bond->curr_slave_lock);
3053 bond_select_active_slave(bond);
3054 write_unlock_bh(&bond->curr_slave_lock);
3055 unblock_netpoll_tx();
3058 bond_set_carrier(bond);
3062 * Send ARP probes for active-backup mode ARP monitor.
3064 * Called with bond->lock held for read.
3066 static void bond_ab_arp_probe(struct bonding *bond)
3068 struct slave *slave;
3069 int i;
3071 read_lock(&bond->curr_slave_lock);
3073 if (bond->current_arp_slave && bond->curr_active_slave)
3074 pr_info("PROBE: c_arp %s && cas %s BAD\n",
3075 bond->current_arp_slave->dev->name,
3076 bond->curr_active_slave->dev->name);
3078 if (bond->curr_active_slave) {
3079 bond_arp_send_all(bond, bond->curr_active_slave);
3080 read_unlock(&bond->curr_slave_lock);
3081 return;
3084 read_unlock(&bond->curr_slave_lock);
3086 /* if we don't have a curr_active_slave, search for the next available
3087 * backup slave from the current_arp_slave and make it the candidate
3088 * for becoming the curr_active_slave
3091 if (!bond->current_arp_slave) {
3092 bond->current_arp_slave = bond->first_slave;
3093 if (!bond->current_arp_slave)
3094 return;
3097 bond_set_slave_inactive_flags(bond->current_arp_slave);
3099 /* search for next candidate */
3100 bond_for_each_slave_from(bond, slave, i, bond->current_arp_slave->next) {
3101 if (IS_UP(slave->dev)) {
3102 slave->link = BOND_LINK_BACK;
3103 bond_set_slave_active_flags(slave);
3104 bond_arp_send_all(bond, slave);
3105 slave->jiffies = jiffies;
3106 bond->current_arp_slave = slave;
3107 break;
3110 /* if the link state is up at this point, we
3111 * mark it down - this can happen if we have
3112 * simultaneous link failures and
3113 * reselect_active_interface doesn't make this
3114 * one the current slave so it is still marked
3115 * up when it is actually down
3117 if (slave->link == BOND_LINK_UP) {
3118 slave->link = BOND_LINK_DOWN;
3119 if (slave->link_failure_count < UINT_MAX)
3120 slave->link_failure_count++;
3122 bond_set_slave_inactive_flags(slave);
3124 pr_info("%s: backup interface %s is now down.\n",
3125 bond->dev->name, slave->dev->name);
3130 void bond_activebackup_arp_mon(struct work_struct *work)
3132 struct bonding *bond = container_of(work, struct bonding,
3133 arp_work.work);
3134 int delta_in_ticks;
3136 read_lock(&bond->lock);
3138 if (bond->kill_timers)
3139 goto out;
3141 delta_in_ticks = msecs_to_jiffies(bond->params.arp_interval);
3143 if (bond->slave_cnt == 0)
3144 goto re_arm;
3146 if (bond->send_grat_arp) {
3147 read_lock(&bond->curr_slave_lock);
3148 bond_send_gratuitous_arp(bond);
3149 read_unlock(&bond->curr_slave_lock);
3152 if (bond->send_unsol_na) {
3153 read_lock(&bond->curr_slave_lock);
3154 bond_send_unsolicited_na(bond);
3155 read_unlock(&bond->curr_slave_lock);
3158 if (bond_ab_arp_inspect(bond, delta_in_ticks)) {
3159 read_unlock(&bond->lock);
3160 rtnl_lock();
3161 read_lock(&bond->lock);
3163 bond_ab_arp_commit(bond, delta_in_ticks);
3165 read_unlock(&bond->lock);
3166 rtnl_unlock();
3167 read_lock(&bond->lock);
3170 bond_ab_arp_probe(bond);
3172 re_arm:
3173 if (bond->params.arp_interval)
3174 queue_delayed_work(bond->wq, &bond->arp_work, delta_in_ticks);
3175 out:
3176 read_unlock(&bond->lock);
3179 /*------------------------------ proc/seq_file-------------------------------*/
3181 #ifdef CONFIG_PROC_FS
3183 static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos)
3184 __acquires(RCU)
3185 __acquires(&bond->lock)
3187 struct bonding *bond = seq->private;
3188 loff_t off = 0;
3189 struct slave *slave;
3190 int i;
3192 /* make sure the bond won't be taken away */
3193 rcu_read_lock();
3194 read_lock(&bond->lock);
3196 if (*pos == 0)
3197 return SEQ_START_TOKEN;
3199 bond_for_each_slave(bond, slave, i) {
3200 if (++off == *pos)
3201 return slave;
3204 return NULL;
3207 static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3209 struct bonding *bond = seq->private;
3210 struct slave *slave = v;
3212 ++*pos;
3213 if (v == SEQ_START_TOKEN)
3214 return bond->first_slave;
3216 slave = slave->next;
3218 return (slave == bond->first_slave) ? NULL : slave;
3221 static void bond_info_seq_stop(struct seq_file *seq, void *v)
3222 __releases(&bond->lock)
3223 __releases(RCU)
3225 struct bonding *bond = seq->private;
3227 read_unlock(&bond->lock);
3228 rcu_read_unlock();
3231 static void bond_info_show_master(struct seq_file *seq)
3233 struct bonding *bond = seq->private;
3234 struct slave *curr;
3235 int i;
3237 read_lock(&bond->curr_slave_lock);
3238 curr = bond->curr_active_slave;
3239 read_unlock(&bond->curr_slave_lock);
3241 seq_printf(seq, "Bonding Mode: %s",
3242 bond_mode_name(bond->params.mode));
3244 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP &&
3245 bond->params.fail_over_mac)
3246 seq_printf(seq, " (fail_over_mac %s)",
3247 fail_over_mac_tbl[bond->params.fail_over_mac].modename);
3249 seq_printf(seq, "\n");
3251 if (bond->params.mode == BOND_MODE_XOR ||
3252 bond->params.mode == BOND_MODE_8023AD) {
3253 seq_printf(seq, "Transmit Hash Policy: %s (%d)\n",
3254 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
3255 bond->params.xmit_policy);
3258 if (USES_PRIMARY(bond->params.mode)) {
3259 seq_printf(seq, "Primary Slave: %s",
3260 (bond->primary_slave) ?
3261 bond->primary_slave->dev->name : "None");
3262 if (bond->primary_slave)
3263 seq_printf(seq, " (primary_reselect %s)",
3264 pri_reselect_tbl[bond->params.primary_reselect].modename);
3266 seq_printf(seq, "\nCurrently Active Slave: %s\n",
3267 (curr) ? curr->dev->name : "None");
3270 seq_printf(seq, "MII Status: %s\n", netif_carrier_ok(bond->dev) ?
3271 "up" : "down");
3272 seq_printf(seq, "MII Polling Interval (ms): %d\n", bond->params.miimon);
3273 seq_printf(seq, "Up Delay (ms): %d\n",
3274 bond->params.updelay * bond->params.miimon);
3275 seq_printf(seq, "Down Delay (ms): %d\n",
3276 bond->params.downdelay * bond->params.miimon);
3279 /* ARP information */
3280 if (bond->params.arp_interval > 0) {
3281 int printed = 0;
3282 seq_printf(seq, "ARP Polling Interval (ms): %d\n",
3283 bond->params.arp_interval);
3285 seq_printf(seq, "ARP IP target/s (n.n.n.n form):");
3287 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
3288 if (!bond->params.arp_targets[i])
3289 break;
3290 if (printed)
3291 seq_printf(seq, ",");
3292 seq_printf(seq, " %pI4", &bond->params.arp_targets[i]);
3293 printed = 1;
3295 seq_printf(seq, "\n");
3298 if (bond->params.mode == BOND_MODE_8023AD) {
3299 struct ad_info ad_info;
3301 seq_puts(seq, "\n802.3ad info\n");
3302 seq_printf(seq, "LACP rate: %s\n",
3303 (bond->params.lacp_fast) ? "fast" : "slow");
3304 seq_printf(seq, "Aggregator selection policy (ad_select): %s\n",
3305 ad_select_tbl[bond->params.ad_select].modename);
3307 if (bond_3ad_get_active_agg_info(bond, &ad_info)) {
3308 seq_printf(seq, "bond %s has no active aggregator\n",
3309 bond->dev->name);
3310 } else {
3311 seq_printf(seq, "Active Aggregator Info:\n");
3313 seq_printf(seq, "\tAggregator ID: %d\n",
3314 ad_info.aggregator_id);
3315 seq_printf(seq, "\tNumber of ports: %d\n",
3316 ad_info.ports);
3317 seq_printf(seq, "\tActor Key: %d\n",
3318 ad_info.actor_key);
3319 seq_printf(seq, "\tPartner Key: %d\n",
3320 ad_info.partner_key);
3321 seq_printf(seq, "\tPartner Mac Address: %pM\n",
3322 ad_info.partner_system);
3327 static void bond_info_show_slave(struct seq_file *seq,
3328 const struct slave *slave)
3330 struct bonding *bond = seq->private;
3332 seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
3333 seq_printf(seq, "MII Status: %s\n",
3334 (slave->link == BOND_LINK_UP) ? "up" : "down");
3335 seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
3336 seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
3337 seq_printf(seq, "Link Failure Count: %u\n",
3338 slave->link_failure_count);
3340 seq_printf(seq, "Permanent HW addr: %pM\n", slave->perm_hwaddr);
3342 if (bond->params.mode == BOND_MODE_8023AD) {
3343 const struct aggregator *agg
3344 = SLAVE_AD_INFO(slave).port.aggregator;
3346 if (agg)
3347 seq_printf(seq, "Aggregator ID: %d\n",
3348 agg->aggregator_identifier);
3349 else
3350 seq_puts(seq, "Aggregator ID: N/A\n");
3352 seq_printf(seq, "Slave queue ID: %d\n", slave->queue_id);
3355 static int bond_info_seq_show(struct seq_file *seq, void *v)
3357 if (v == SEQ_START_TOKEN) {
3358 seq_printf(seq, "%s\n", version);
3359 bond_info_show_master(seq);
3360 } else
3361 bond_info_show_slave(seq, v);
3363 return 0;
3366 static const struct seq_operations bond_info_seq_ops = {
3367 .start = bond_info_seq_start,
3368 .next = bond_info_seq_next,
3369 .stop = bond_info_seq_stop,
3370 .show = bond_info_seq_show,
3373 static int bond_info_open(struct inode *inode, struct file *file)
3375 struct seq_file *seq;
3376 struct proc_dir_entry *proc;
3377 int res;
3379 res = seq_open(file, &bond_info_seq_ops);
3380 if (!res) {
3381 /* recover the pointer buried in proc_dir_entry data */
3382 seq = file->private_data;
3383 proc = PDE(inode);
3384 seq->private = proc->data;
3387 return res;
3390 static const struct file_operations bond_info_fops = {
3391 .owner = THIS_MODULE,
3392 .open = bond_info_open,
3393 .read = seq_read,
3394 .llseek = seq_lseek,
3395 .release = seq_release,
3398 static void bond_create_proc_entry(struct bonding *bond)
3400 struct net_device *bond_dev = bond->dev;
3401 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3403 if (bn->proc_dir) {
3404 bond->proc_entry = proc_create_data(bond_dev->name,
3405 S_IRUGO, bn->proc_dir,
3406 &bond_info_fops, bond);
3407 if (bond->proc_entry == NULL)
3408 pr_warning("Warning: Cannot create /proc/net/%s/%s\n",
3409 DRV_NAME, bond_dev->name);
3410 else
3411 memcpy(bond->proc_file_name, bond_dev->name, IFNAMSIZ);
3415 static void bond_remove_proc_entry(struct bonding *bond)
3417 struct net_device *bond_dev = bond->dev;
3418 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
3420 if (bn->proc_dir && bond->proc_entry) {
3421 remove_proc_entry(bond->proc_file_name, bn->proc_dir);
3422 memset(bond->proc_file_name, 0, IFNAMSIZ);
3423 bond->proc_entry = NULL;
3427 /* Create the bonding directory under /proc/net, if doesn't exist yet.
3428 * Caller must hold rtnl_lock.
3430 static void __net_init bond_create_proc_dir(struct bond_net *bn)
3432 if (!bn->proc_dir) {
3433 bn->proc_dir = proc_mkdir(DRV_NAME, bn->net->proc_net);
3434 if (!bn->proc_dir)
3435 pr_warning("Warning: cannot create /proc/net/%s\n",
3436 DRV_NAME);
3440 /* Destroy the bonding directory under /proc/net, if empty.
3441 * Caller must hold rtnl_lock.
3443 static void __net_exit bond_destroy_proc_dir(struct bond_net *bn)
3445 if (bn->proc_dir) {
3446 remove_proc_entry(DRV_NAME, bn->net->proc_net);
3447 bn->proc_dir = NULL;
3451 #else /* !CONFIG_PROC_FS */
3453 static void bond_create_proc_entry(struct bonding *bond)
3457 static void bond_remove_proc_entry(struct bonding *bond)
3461 static inline void bond_create_proc_dir(struct bond_net *bn)
3465 static inline void bond_destroy_proc_dir(struct bond_net *bn)
3469 #endif /* CONFIG_PROC_FS */
3472 /*-------------------------- netdev event handling --------------------------*/
3475 * Change device name
3477 static int bond_event_changename(struct bonding *bond)
3479 bond_remove_proc_entry(bond);
3480 bond_create_proc_entry(bond);
3482 bond_debug_reregister(bond);
3484 return NOTIFY_DONE;
3487 static int bond_master_netdev_event(unsigned long event,
3488 struct net_device *bond_dev)
3490 struct bonding *event_bond = netdev_priv(bond_dev);
3492 switch (event) {
3493 case NETDEV_CHANGENAME:
3494 return bond_event_changename(event_bond);
3495 default:
3496 break;
3499 return NOTIFY_DONE;
3502 static int bond_slave_netdev_event(unsigned long event,
3503 struct net_device *slave_dev)
3505 struct net_device *bond_dev = slave_dev->master;
3506 struct bonding *bond = netdev_priv(bond_dev);
3508 switch (event) {
3509 case NETDEV_UNREGISTER:
3510 if (bond_dev) {
3511 if (bond->setup_by_slave)
3512 bond_release_and_destroy(bond_dev, slave_dev);
3513 else
3514 bond_release(bond_dev, slave_dev);
3516 break;
3517 case NETDEV_CHANGE:
3518 if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
3519 struct slave *slave;
3521 slave = bond_get_slave_by_dev(bond, slave_dev);
3522 if (slave) {
3523 u16 old_speed = slave->speed;
3524 u16 old_duplex = slave->duplex;
3526 bond_update_speed_duplex(slave);
3528 if (bond_is_lb(bond))
3529 break;
3531 if (old_speed != slave->speed)
3532 bond_3ad_adapter_speed_changed(slave);
3533 if (old_duplex != slave->duplex)
3534 bond_3ad_adapter_duplex_changed(slave);
3538 break;
3539 case NETDEV_DOWN:
3541 * ... Or is it this?
3543 break;
3544 case NETDEV_CHANGEMTU:
3546 * TODO: Should slaves be allowed to
3547 * independently alter their MTU? For
3548 * an active-backup bond, slaves need
3549 * not be the same type of device, so
3550 * MTUs may vary. For other modes,
3551 * slaves arguably should have the
3552 * same MTUs. To do this, we'd need to
3553 * take over the slave's change_mtu
3554 * function for the duration of their
3555 * servitude.
3557 break;
3558 case NETDEV_CHANGENAME:
3560 * TODO: handle changing the primary's name
3562 break;
3563 case NETDEV_FEAT_CHANGE:
3564 bond_compute_features(bond);
3565 break;
3566 default:
3567 break;
3570 return NOTIFY_DONE;
3574 * bond_netdev_event: handle netdev notifier chain events.
3576 * This function receives events for the netdev chain. The caller (an
3577 * ioctl handler calling blocking_notifier_call_chain) holds the necessary
3578 * locks for us to safely manipulate the slave devices (RTNL lock,
3579 * dev_probe_lock).
3581 static int bond_netdev_event(struct notifier_block *this,
3582 unsigned long event, void *ptr)
3584 struct net_device *event_dev = (struct net_device *)ptr;
3586 pr_debug("event_dev: %s, event: %lx\n",
3587 event_dev ? event_dev->name : "None",
3588 event);
3590 if (!(event_dev->priv_flags & IFF_BONDING))
3591 return NOTIFY_DONE;
3593 if (event_dev->flags & IFF_MASTER) {
3594 pr_debug("IFF_MASTER\n");
3595 return bond_master_netdev_event(event, event_dev);
3598 if (event_dev->flags & IFF_SLAVE) {
3599 pr_debug("IFF_SLAVE\n");
3600 return bond_slave_netdev_event(event, event_dev);
3603 return NOTIFY_DONE;
3607 * bond_inetaddr_event: handle inetaddr notifier chain events.
3609 * We keep track of device IPs primarily to use as source addresses in
3610 * ARP monitor probes (rather than spewing out broadcasts all the time).
3612 * We track one IP for the main device (if it has one), plus one per VLAN.
3614 static int bond_inetaddr_event(struct notifier_block *this, unsigned long event, void *ptr)
3616 struct in_ifaddr *ifa = ptr;
3617 struct net_device *vlan_dev, *event_dev = ifa->ifa_dev->dev;
3618 struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
3619 struct bonding *bond;
3620 struct vlan_entry *vlan;
3622 list_for_each_entry(bond, &bn->dev_list, bond_list) {
3623 if (bond->dev == event_dev) {
3624 switch (event) {
3625 case NETDEV_UP:
3626 bond->master_ip = ifa->ifa_local;
3627 return NOTIFY_OK;
3628 case NETDEV_DOWN:
3629 bond->master_ip = bond_glean_dev_ip(bond->dev);
3630 return NOTIFY_OK;
3631 default:
3632 return NOTIFY_DONE;
3636 list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
3637 if (!bond->vlgrp)
3638 continue;
3639 vlan_dev = vlan_group_get_device(bond->vlgrp, vlan->vlan_id);
3640 if (vlan_dev == event_dev) {
3641 switch (event) {
3642 case NETDEV_UP:
3643 vlan->vlan_ip = ifa->ifa_local;
3644 return NOTIFY_OK;
3645 case NETDEV_DOWN:
3646 vlan->vlan_ip =
3647 bond_glean_dev_ip(vlan_dev);
3648 return NOTIFY_OK;
3649 default:
3650 return NOTIFY_DONE;
3655 return NOTIFY_DONE;
3658 static struct notifier_block bond_netdev_notifier = {
3659 .notifier_call = bond_netdev_event,
3662 static struct notifier_block bond_inetaddr_notifier = {
3663 .notifier_call = bond_inetaddr_event,
3666 /*-------------------------- Packet type handling ---------------------------*/
3668 /* register to receive lacpdus on a bond */
3669 static void bond_register_lacpdu(struct bonding *bond)
3671 struct packet_type *pk_type = &(BOND_AD_INFO(bond).ad_pkt_type);
3673 /* initialize packet type */
3674 pk_type->type = PKT_TYPE_LACPDU;
3675 pk_type->dev = bond->dev;
3676 pk_type->func = bond_3ad_lacpdu_recv;
3678 dev_add_pack(pk_type);
3681 /* unregister to receive lacpdus on a bond */
3682 static void bond_unregister_lacpdu(struct bonding *bond)
3684 dev_remove_pack(&(BOND_AD_INFO(bond).ad_pkt_type));
3687 void bond_register_arp(struct bonding *bond)
3689 struct packet_type *pt = &bond->arp_mon_pt;
3691 if (pt->type)
3692 return;
3694 pt->type = htons(ETH_P_ARP);
3695 pt->dev = bond->dev;
3696 pt->func = bond_arp_rcv;
3697 dev_add_pack(pt);
3700 void bond_unregister_arp(struct bonding *bond)
3702 struct packet_type *pt = &bond->arp_mon_pt;
3704 dev_remove_pack(pt);
3705 pt->type = 0;
3708 /*---------------------------- Hashing Policies -----------------------------*/
3711 * Hash for the output device based upon layer 2 and layer 3 data. If
3712 * the packet is not IP mimic bond_xmit_hash_policy_l2()
3714 static int bond_xmit_hash_policy_l23(struct sk_buff *skb, int count)
3716 struct ethhdr *data = (struct ethhdr *)skb->data;
3717 struct iphdr *iph = ip_hdr(skb);
3719 if (skb->protocol == htons(ETH_P_IP)) {
3720 return ((ntohl(iph->saddr ^ iph->daddr) & 0xffff) ^
3721 (data->h_dest[5] ^ data->h_source[5])) % count;
3724 return (data->h_dest[5] ^ data->h_source[5]) % count;
3728 * Hash for the output device based upon layer 3 and layer 4 data. If
3729 * the packet is a frag or not TCP or UDP, just use layer 3 data. If it is
3730 * altogether not IP, mimic bond_xmit_hash_policy_l2()
3732 static int bond_xmit_hash_policy_l34(struct sk_buff *skb, int count)
3734 struct ethhdr *data = (struct ethhdr *)skb->data;
3735 struct iphdr *iph = ip_hdr(skb);
3736 __be16 *layer4hdr = (__be16 *)((u32 *)iph + iph->ihl);
3737 int layer4_xor = 0;
3739 if (skb->protocol == htons(ETH_P_IP)) {
3740 if (!(iph->frag_off & htons(IP_MF|IP_OFFSET)) &&
3741 (iph->protocol == IPPROTO_TCP ||
3742 iph->protocol == IPPROTO_UDP)) {
3743 layer4_xor = ntohs((*layer4hdr ^ *(layer4hdr + 1)));
3745 return (layer4_xor ^
3746 ((ntohl(iph->saddr ^ iph->daddr)) & 0xffff)) % count;
3750 return (data->h_dest[5] ^ data->h_source[5]) % count;
3754 * Hash for the output device based upon layer 2 data
3756 static int bond_xmit_hash_policy_l2(struct sk_buff *skb, int count)
3758 struct ethhdr *data = (struct ethhdr *)skb->data;
3760 return (data->h_dest[5] ^ data->h_source[5]) % count;
3763 /*-------------------------- Device entry points ----------------------------*/
3765 static int bond_open(struct net_device *bond_dev)
3767 struct bonding *bond = netdev_priv(bond_dev);
3769 bond->kill_timers = 0;
3771 INIT_DELAYED_WORK(&bond->mcast_work, bond_resend_igmp_join_requests_delayed);
3773 if (bond_is_lb(bond)) {
3774 /* bond_alb_initialize must be called before the timer
3775 * is started.
3777 if (bond_alb_initialize(bond, (bond->params.mode == BOND_MODE_ALB))) {
3778 /* something went wrong - fail the open operation */
3779 return -ENOMEM;
3782 INIT_DELAYED_WORK(&bond->alb_work, bond_alb_monitor);
3783 queue_delayed_work(bond->wq, &bond->alb_work, 0);
3786 if (bond->params.miimon) { /* link check interval, in milliseconds. */
3787 INIT_DELAYED_WORK(&bond->mii_work, bond_mii_monitor);
3788 queue_delayed_work(bond->wq, &bond->mii_work, 0);
3791 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
3792 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
3793 INIT_DELAYED_WORK(&bond->arp_work,
3794 bond_activebackup_arp_mon);
3795 else
3796 INIT_DELAYED_WORK(&bond->arp_work,
3797 bond_loadbalance_arp_mon);
3799 queue_delayed_work(bond->wq, &bond->arp_work, 0);
3800 if (bond->params.arp_validate)
3801 bond_register_arp(bond);
3804 if (bond->params.mode == BOND_MODE_8023AD) {
3805 INIT_DELAYED_WORK(&bond->ad_work, bond_3ad_state_machine_handler);
3806 queue_delayed_work(bond->wq, &bond->ad_work, 0);
3807 /* register to receive LACPDUs */
3808 bond_register_lacpdu(bond);
3809 bond_3ad_initiate_agg_selection(bond, 1);
3812 return 0;
3815 static int bond_close(struct net_device *bond_dev)
3817 struct bonding *bond = netdev_priv(bond_dev);
3819 if (bond->params.mode == BOND_MODE_8023AD) {
3820 /* Unregister the receive of LACPDUs */
3821 bond_unregister_lacpdu(bond);
3824 if (bond->params.arp_validate)
3825 bond_unregister_arp(bond);
3827 write_lock_bh(&bond->lock);
3829 bond->send_grat_arp = 0;
3830 bond->send_unsol_na = 0;
3832 /* signal timers not to re-arm */
3833 bond->kill_timers = 1;
3835 write_unlock_bh(&bond->lock);
3837 if (bond->params.miimon) { /* link check interval, in milliseconds. */
3838 cancel_delayed_work(&bond->mii_work);
3841 if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
3842 cancel_delayed_work(&bond->arp_work);
3845 switch (bond->params.mode) {
3846 case BOND_MODE_8023AD:
3847 cancel_delayed_work(&bond->ad_work);
3848 break;
3849 case BOND_MODE_TLB:
3850 case BOND_MODE_ALB:
3851 cancel_delayed_work(&bond->alb_work);
3852 break;
3853 default:
3854 break;
3857 if (delayed_work_pending(&bond->mcast_work))
3858 cancel_delayed_work(&bond->mcast_work);
3860 if (bond_is_lb(bond)) {
3861 /* Must be called only after all
3862 * slaves have been released
3864 bond_alb_deinitialize(bond);
3867 return 0;
3870 static struct rtnl_link_stats64 *bond_get_stats(struct net_device *bond_dev,
3871 struct rtnl_link_stats64 *stats)
3873 struct bonding *bond = netdev_priv(bond_dev);
3874 struct rtnl_link_stats64 temp;
3875 struct slave *slave;
3876 int i;
3878 memset(stats, 0, sizeof(*stats));
3880 read_lock_bh(&bond->lock);
3882 bond_for_each_slave(bond, slave, i) {
3883 const struct rtnl_link_stats64 *sstats =
3884 dev_get_stats(slave->dev, &temp);
3886 stats->rx_packets += sstats->rx_packets;
3887 stats->rx_bytes += sstats->rx_bytes;
3888 stats->rx_errors += sstats->rx_errors;
3889 stats->rx_dropped += sstats->rx_dropped;
3891 stats->tx_packets += sstats->tx_packets;
3892 stats->tx_bytes += sstats->tx_bytes;
3893 stats->tx_errors += sstats->tx_errors;
3894 stats->tx_dropped += sstats->tx_dropped;
3896 stats->multicast += sstats->multicast;
3897 stats->collisions += sstats->collisions;
3899 stats->rx_length_errors += sstats->rx_length_errors;
3900 stats->rx_over_errors += sstats->rx_over_errors;
3901 stats->rx_crc_errors += sstats->rx_crc_errors;
3902 stats->rx_frame_errors += sstats->rx_frame_errors;
3903 stats->rx_fifo_errors += sstats->rx_fifo_errors;
3904 stats->rx_missed_errors += sstats->rx_missed_errors;
3906 stats->tx_aborted_errors += sstats->tx_aborted_errors;
3907 stats->tx_carrier_errors += sstats->tx_carrier_errors;
3908 stats->tx_fifo_errors += sstats->tx_fifo_errors;
3909 stats->tx_heartbeat_errors += sstats->tx_heartbeat_errors;
3910 stats->tx_window_errors += sstats->tx_window_errors;
3913 read_unlock_bh(&bond->lock);
3915 return stats;
3918 static int bond_do_ioctl(struct net_device *bond_dev, struct ifreq *ifr, int cmd)
3920 struct net_device *slave_dev = NULL;
3921 struct ifbond k_binfo;
3922 struct ifbond __user *u_binfo = NULL;
3923 struct ifslave k_sinfo;
3924 struct ifslave __user *u_sinfo = NULL;
3925 struct mii_ioctl_data *mii = NULL;
3926 int res = 0;
3928 pr_debug("bond_ioctl: master=%s, cmd=%d\n", bond_dev->name, cmd);
3930 switch (cmd) {
3931 case SIOCGMIIPHY:
3932 mii = if_mii(ifr);
3933 if (!mii)
3934 return -EINVAL;
3936 mii->phy_id = 0;
3937 /* Fall Through */
3938 case SIOCGMIIREG:
3940 * We do this again just in case we were called by SIOCGMIIREG
3941 * instead of SIOCGMIIPHY.
3943 mii = if_mii(ifr);
3944 if (!mii)
3945 return -EINVAL;
3948 if (mii->reg_num == 1) {
3949 struct bonding *bond = netdev_priv(bond_dev);
3950 mii->val_out = 0;
3951 read_lock(&bond->lock);
3952 read_lock(&bond->curr_slave_lock);
3953 if (netif_carrier_ok(bond->dev))
3954 mii->val_out = BMSR_LSTATUS;
3956 read_unlock(&bond->curr_slave_lock);
3957 read_unlock(&bond->lock);
3960 return 0;
3961 case BOND_INFO_QUERY_OLD:
3962 case SIOCBONDINFOQUERY:
3963 u_binfo = (struct ifbond __user *)ifr->ifr_data;
3965 if (copy_from_user(&k_binfo, u_binfo, sizeof(ifbond)))
3966 return -EFAULT;
3968 res = bond_info_query(bond_dev, &k_binfo);
3969 if (res == 0 &&
3970 copy_to_user(u_binfo, &k_binfo, sizeof(ifbond)))
3971 return -EFAULT;
3973 return res;
3974 case BOND_SLAVE_INFO_QUERY_OLD:
3975 case SIOCBONDSLAVEINFOQUERY:
3976 u_sinfo = (struct ifslave __user *)ifr->ifr_data;
3978 if (copy_from_user(&k_sinfo, u_sinfo, sizeof(ifslave)))
3979 return -EFAULT;
3981 res = bond_slave_info_query(bond_dev, &k_sinfo);
3982 if (res == 0 &&
3983 copy_to_user(u_sinfo, &k_sinfo, sizeof(ifslave)))
3984 return -EFAULT;
3986 return res;
3987 default:
3988 /* Go on */
3989 break;
3992 if (!capable(CAP_NET_ADMIN))
3993 return -EPERM;
3995 slave_dev = dev_get_by_name(dev_net(bond_dev), ifr->ifr_slave);
3997 pr_debug("slave_dev=%p:\n", slave_dev);
3999 if (!slave_dev)
4000 res = -ENODEV;
4001 else {
4002 pr_debug("slave_dev->name=%s:\n", slave_dev->name);
4003 switch (cmd) {
4004 case BOND_ENSLAVE_OLD:
4005 case SIOCBONDENSLAVE:
4006 res = bond_enslave(bond_dev, slave_dev);
4007 break;
4008 case BOND_RELEASE_OLD:
4009 case SIOCBONDRELEASE:
4010 res = bond_release(bond_dev, slave_dev);
4011 break;
4012 case BOND_SETHWADDR_OLD:
4013 case SIOCBONDSETHWADDR:
4014 res = bond_sethwaddr(bond_dev, slave_dev);
4015 break;
4016 case BOND_CHANGE_ACTIVE_OLD:
4017 case SIOCBONDCHANGEACTIVE:
4018 res = bond_ioctl_change_active(bond_dev, slave_dev);
4019 break;
4020 default:
4021 res = -EOPNOTSUPP;
4024 dev_put(slave_dev);
4027 return res;
4030 static bool bond_addr_in_mc_list(unsigned char *addr,
4031 struct netdev_hw_addr_list *list,
4032 int addrlen)
4034 struct netdev_hw_addr *ha;
4036 netdev_hw_addr_list_for_each(ha, list)
4037 if (!memcmp(ha->addr, addr, addrlen))
4038 return true;
4040 return false;
4043 static void bond_set_multicast_list(struct net_device *bond_dev)
4045 struct bonding *bond = netdev_priv(bond_dev);
4046 struct netdev_hw_addr *ha;
4047 bool found;
4050 * Do promisc before checking multicast_mode
4052 if ((bond_dev->flags & IFF_PROMISC) && !(bond->flags & IFF_PROMISC))
4054 * FIXME: Need to handle the error when one of the multi-slaves
4055 * encounters error.
4057 bond_set_promiscuity(bond, 1);
4060 if (!(bond_dev->flags & IFF_PROMISC) && (bond->flags & IFF_PROMISC))
4061 bond_set_promiscuity(bond, -1);
4064 /* set allmulti flag to slaves */
4065 if ((bond_dev->flags & IFF_ALLMULTI) && !(bond->flags & IFF_ALLMULTI))
4067 * FIXME: Need to handle the error when one of the multi-slaves
4068 * encounters error.
4070 bond_set_allmulti(bond, 1);
4073 if (!(bond_dev->flags & IFF_ALLMULTI) && (bond->flags & IFF_ALLMULTI))
4074 bond_set_allmulti(bond, -1);
4077 read_lock(&bond->lock);
4079 bond->flags = bond_dev->flags;
4081 /* looking for addresses to add to slaves' mc list */
4082 netdev_for_each_mc_addr(ha, bond_dev) {
4083 found = bond_addr_in_mc_list(ha->addr, &bond->mc_list,
4084 bond_dev->addr_len);
4085 if (!found)
4086 bond_mc_add(bond, ha->addr);
4089 /* looking for addresses to delete from slaves' list */
4090 netdev_hw_addr_list_for_each(ha, &bond->mc_list) {
4091 found = bond_addr_in_mc_list(ha->addr, &bond_dev->mc,
4092 bond_dev->addr_len);
4093 if (!found)
4094 bond_mc_del(bond, ha->addr);
4097 /* save master's multicast list */
4098 __hw_addr_flush(&bond->mc_list);
4099 __hw_addr_add_multiple(&bond->mc_list, &bond_dev->mc,
4100 bond_dev->addr_len, NETDEV_HW_ADDR_T_MULTICAST);
4102 read_unlock(&bond->lock);
4105 static int bond_neigh_setup(struct net_device *dev, struct neigh_parms *parms)
4107 struct bonding *bond = netdev_priv(dev);
4108 struct slave *slave = bond->first_slave;
4110 if (slave) {
4111 const struct net_device_ops *slave_ops
4112 = slave->dev->netdev_ops;
4113 if (slave_ops->ndo_neigh_setup)
4114 return slave_ops->ndo_neigh_setup(slave->dev, parms);
4116 return 0;
4120 * Change the MTU of all of a master's slaves to match the master
4122 static int bond_change_mtu(struct net_device *bond_dev, int new_mtu)
4124 struct bonding *bond = netdev_priv(bond_dev);
4125 struct slave *slave, *stop_at;
4126 int res = 0;
4127 int i;
4129 pr_debug("bond=%p, name=%s, new_mtu=%d\n", bond,
4130 (bond_dev ? bond_dev->name : "None"), new_mtu);
4132 /* Can't hold bond->lock with bh disabled here since
4133 * some base drivers panic. On the other hand we can't
4134 * hold bond->lock without bh disabled because we'll
4135 * deadlock. The only solution is to rely on the fact
4136 * that we're under rtnl_lock here, and the slaves
4137 * list won't change. This doesn't solve the problem
4138 * of setting the slave's MTU while it is
4139 * transmitting, but the assumption is that the base
4140 * driver can handle that.
4142 * TODO: figure out a way to safely iterate the slaves
4143 * list, but without holding a lock around the actual
4144 * call to the base driver.
4147 bond_for_each_slave(bond, slave, i) {
4148 pr_debug("s %p s->p %p c_m %p\n",
4149 slave,
4150 slave->prev,
4151 slave->dev->netdev_ops->ndo_change_mtu);
4153 res = dev_set_mtu(slave->dev, new_mtu);
4155 if (res) {
4156 /* If we failed to set the slave's mtu to the new value
4157 * we must abort the operation even in ACTIVE_BACKUP
4158 * mode, because if we allow the backup slaves to have
4159 * different mtu values than the active slave we'll
4160 * need to change their mtu when doing a failover. That
4161 * means changing their mtu from timer context, which
4162 * is probably not a good idea.
4164 pr_debug("err %d %s\n", res, slave->dev->name);
4165 goto unwind;
4169 bond_dev->mtu = new_mtu;
4171 return 0;
4173 unwind:
4174 /* unwind from head to the slave that failed */
4175 stop_at = slave;
4176 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4177 int tmp_res;
4179 tmp_res = dev_set_mtu(slave->dev, bond_dev->mtu);
4180 if (tmp_res) {
4181 pr_debug("unwind err %d dev %s\n",
4182 tmp_res, slave->dev->name);
4186 return res;
4190 * Change HW address
4192 * Note that many devices must be down to change the HW address, and
4193 * downing the master releases all slaves. We can make bonds full of
4194 * bonding devices to test this, however.
4196 static int bond_set_mac_address(struct net_device *bond_dev, void *addr)
4198 struct bonding *bond = netdev_priv(bond_dev);
4199 struct sockaddr *sa = addr, tmp_sa;
4200 struct slave *slave, *stop_at;
4201 int res = 0;
4202 int i;
4204 if (bond->params.mode == BOND_MODE_ALB)
4205 return bond_alb_set_mac_address(bond_dev, addr);
4208 pr_debug("bond=%p, name=%s\n",
4209 bond, bond_dev ? bond_dev->name : "None");
4212 * If fail_over_mac is set to active, do nothing and return
4213 * success. Returning an error causes ifenslave to fail.
4215 if (bond->params.fail_over_mac == BOND_FOM_ACTIVE)
4216 return 0;
4218 if (!is_valid_ether_addr(sa->sa_data))
4219 return -EADDRNOTAVAIL;
4221 /* Can't hold bond->lock with bh disabled here since
4222 * some base drivers panic. On the other hand we can't
4223 * hold bond->lock without bh disabled because we'll
4224 * deadlock. The only solution is to rely on the fact
4225 * that we're under rtnl_lock here, and the slaves
4226 * list won't change. This doesn't solve the problem
4227 * of setting the slave's hw address while it is
4228 * transmitting, but the assumption is that the base
4229 * driver can handle that.
4231 * TODO: figure out a way to safely iterate the slaves
4232 * list, but without holding a lock around the actual
4233 * call to the base driver.
4236 bond_for_each_slave(bond, slave, i) {
4237 const struct net_device_ops *slave_ops = slave->dev->netdev_ops;
4238 pr_debug("slave %p %s\n", slave, slave->dev->name);
4240 if (slave_ops->ndo_set_mac_address == NULL) {
4241 res = -EOPNOTSUPP;
4242 pr_debug("EOPNOTSUPP %s\n", slave->dev->name);
4243 goto unwind;
4246 res = dev_set_mac_address(slave->dev, addr);
4247 if (res) {
4248 /* TODO: consider downing the slave
4249 * and retry ?
4250 * User should expect communications
4251 * breakage anyway until ARP finish
4252 * updating, so...
4254 pr_debug("err %d %s\n", res, slave->dev->name);
4255 goto unwind;
4259 /* success */
4260 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
4261 return 0;
4263 unwind:
4264 memcpy(tmp_sa.sa_data, bond_dev->dev_addr, bond_dev->addr_len);
4265 tmp_sa.sa_family = bond_dev->type;
4267 /* unwind from head to the slave that failed */
4268 stop_at = slave;
4269 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
4270 int tmp_res;
4272 tmp_res = dev_set_mac_address(slave->dev, &tmp_sa);
4273 if (tmp_res) {
4274 pr_debug("unwind err %d dev %s\n",
4275 tmp_res, slave->dev->name);
4279 return res;
4282 static int bond_xmit_roundrobin(struct sk_buff *skb, struct net_device *bond_dev)
4284 struct bonding *bond = netdev_priv(bond_dev);
4285 struct slave *slave, *start_at;
4286 int i, slave_no, res = 1;
4287 struct iphdr *iph = ip_hdr(skb);
4289 read_lock(&bond->lock);
4291 if (!BOND_IS_OK(bond))
4292 goto out;
4294 * Start with the curr_active_slave that joined the bond as the
4295 * default for sending IGMP traffic. For failover purposes one
4296 * needs to maintain some consistency for the interface that will
4297 * send the join/membership reports. The curr_active_slave found
4298 * will send all of this type of traffic.
4300 if ((iph->protocol == IPPROTO_IGMP) &&
4301 (skb->protocol == htons(ETH_P_IP))) {
4303 read_lock(&bond->curr_slave_lock);
4304 slave = bond->curr_active_slave;
4305 read_unlock(&bond->curr_slave_lock);
4307 if (!slave)
4308 goto out;
4309 } else {
4311 * Concurrent TX may collide on rr_tx_counter; we accept
4312 * that as being rare enough not to justify using an
4313 * atomic op here.
4315 slave_no = bond->rr_tx_counter++ % bond->slave_cnt;
4317 bond_for_each_slave(bond, slave, i) {
4318 slave_no--;
4319 if (slave_no < 0)
4320 break;
4324 start_at = slave;
4325 bond_for_each_slave_from(bond, slave, i, start_at) {
4326 if (IS_UP(slave->dev) &&
4327 (slave->link == BOND_LINK_UP) &&
4328 (slave->state == BOND_STATE_ACTIVE)) {
4329 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4330 break;
4334 out:
4335 if (res) {
4336 /* no suitable interface, frame not sent */
4337 dev_kfree_skb(skb);
4339 read_unlock(&bond->lock);
4340 return NETDEV_TX_OK;
4345 * in active-backup mode, we know that bond->curr_active_slave is always valid if
4346 * the bond has a usable interface.
4348 static int bond_xmit_activebackup(struct sk_buff *skb, struct net_device *bond_dev)
4350 struct bonding *bond = netdev_priv(bond_dev);
4351 int res = 1;
4353 read_lock(&bond->lock);
4354 read_lock(&bond->curr_slave_lock);
4356 if (!BOND_IS_OK(bond))
4357 goto out;
4359 if (!bond->curr_active_slave)
4360 goto out;
4362 res = bond_dev_queue_xmit(bond, skb, bond->curr_active_slave->dev);
4364 out:
4365 if (res)
4366 /* no suitable interface, frame not sent */
4367 dev_kfree_skb(skb);
4369 read_unlock(&bond->curr_slave_lock);
4370 read_unlock(&bond->lock);
4371 return NETDEV_TX_OK;
4375 * In bond_xmit_xor() , we determine the output device by using a pre-
4376 * determined xmit_hash_policy(), If the selected device is not enabled,
4377 * find the next active slave.
4379 static int bond_xmit_xor(struct sk_buff *skb, struct net_device *bond_dev)
4381 struct bonding *bond = netdev_priv(bond_dev);
4382 struct slave *slave, *start_at;
4383 int slave_no;
4384 int i;
4385 int res = 1;
4387 read_lock(&bond->lock);
4389 if (!BOND_IS_OK(bond))
4390 goto out;
4392 slave_no = bond->xmit_hash_policy(skb, bond->slave_cnt);
4394 bond_for_each_slave(bond, slave, i) {
4395 slave_no--;
4396 if (slave_no < 0)
4397 break;
4400 start_at = slave;
4402 bond_for_each_slave_from(bond, slave, i, start_at) {
4403 if (IS_UP(slave->dev) &&
4404 (slave->link == BOND_LINK_UP) &&
4405 (slave->state == BOND_STATE_ACTIVE)) {
4406 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4407 break;
4411 out:
4412 if (res) {
4413 /* no suitable interface, frame not sent */
4414 dev_kfree_skb(skb);
4416 read_unlock(&bond->lock);
4417 return NETDEV_TX_OK;
4421 * in broadcast mode, we send everything to all usable interfaces.
4423 static int bond_xmit_broadcast(struct sk_buff *skb, struct net_device *bond_dev)
4425 struct bonding *bond = netdev_priv(bond_dev);
4426 struct slave *slave, *start_at;
4427 struct net_device *tx_dev = NULL;
4428 int i;
4429 int res = 1;
4431 read_lock(&bond->lock);
4433 if (!BOND_IS_OK(bond))
4434 goto out;
4436 read_lock(&bond->curr_slave_lock);
4437 start_at = bond->curr_active_slave;
4438 read_unlock(&bond->curr_slave_lock);
4440 if (!start_at)
4441 goto out;
4443 bond_for_each_slave_from(bond, slave, i, start_at) {
4444 if (IS_UP(slave->dev) &&
4445 (slave->link == BOND_LINK_UP) &&
4446 (slave->state == BOND_STATE_ACTIVE)) {
4447 if (tx_dev) {
4448 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
4449 if (!skb2) {
4450 pr_err("%s: Error: bond_xmit_broadcast(): skb_clone() failed\n",
4451 bond_dev->name);
4452 continue;
4455 res = bond_dev_queue_xmit(bond, skb2, tx_dev);
4456 if (res) {
4457 dev_kfree_skb(skb2);
4458 continue;
4461 tx_dev = slave->dev;
4465 if (tx_dev)
4466 res = bond_dev_queue_xmit(bond, skb, tx_dev);
4468 out:
4469 if (res)
4470 /* no suitable interface, frame not sent */
4471 dev_kfree_skb(skb);
4473 /* frame sent to all suitable interfaces */
4474 read_unlock(&bond->lock);
4475 return NETDEV_TX_OK;
4478 /*------------------------- Device initialization ---------------------------*/
4480 static void bond_set_xmit_hash_policy(struct bonding *bond)
4482 switch (bond->params.xmit_policy) {
4483 case BOND_XMIT_POLICY_LAYER23:
4484 bond->xmit_hash_policy = bond_xmit_hash_policy_l23;
4485 break;
4486 case BOND_XMIT_POLICY_LAYER34:
4487 bond->xmit_hash_policy = bond_xmit_hash_policy_l34;
4488 break;
4489 case BOND_XMIT_POLICY_LAYER2:
4490 default:
4491 bond->xmit_hash_policy = bond_xmit_hash_policy_l2;
4492 break;
4497 * Lookup the slave that corresponds to a qid
4499 static inline int bond_slave_override(struct bonding *bond,
4500 struct sk_buff *skb)
4502 int i, res = 1;
4503 struct slave *slave = NULL;
4504 struct slave *check_slave;
4506 read_lock(&bond->lock);
4508 if (!BOND_IS_OK(bond) || !skb->queue_mapping)
4509 goto out;
4511 /* Find out if any slaves have the same mapping as this skb. */
4512 bond_for_each_slave(bond, check_slave, i) {
4513 if (check_slave->queue_id == skb->queue_mapping) {
4514 slave = check_slave;
4515 break;
4519 /* If the slave isn't UP, use default transmit policy. */
4520 if (slave && slave->queue_id && IS_UP(slave->dev) &&
4521 (slave->link == BOND_LINK_UP)) {
4522 res = bond_dev_queue_xmit(bond, skb, slave->dev);
4525 out:
4526 read_unlock(&bond->lock);
4527 return res;
4530 static u16 bond_select_queue(struct net_device *dev, struct sk_buff *skb)
4533 * This helper function exists to help dev_pick_tx get the correct
4534 * destination queue. Using a helper function skips the a call to
4535 * skb_tx_hash and will put the skbs in the queue we expect on their
4536 * way down to the bonding driver.
4538 return skb->queue_mapping;
4541 static netdev_tx_t bond_start_xmit(struct sk_buff *skb, struct net_device *dev)
4543 struct bonding *bond = netdev_priv(dev);
4546 * If we risk deadlock from transmitting this in the
4547 * netpoll path, tell netpoll to queue the frame for later tx
4549 if (is_netpoll_tx_blocked(dev))
4550 return NETDEV_TX_BUSY;
4552 if (TX_QUEUE_OVERRIDE(bond->params.mode)) {
4553 if (!bond_slave_override(bond, skb))
4554 return NETDEV_TX_OK;
4557 switch (bond->params.mode) {
4558 case BOND_MODE_ROUNDROBIN:
4559 return bond_xmit_roundrobin(skb, dev);
4560 case BOND_MODE_ACTIVEBACKUP:
4561 return bond_xmit_activebackup(skb, dev);
4562 case BOND_MODE_XOR:
4563 return bond_xmit_xor(skb, dev);
4564 case BOND_MODE_BROADCAST:
4565 return bond_xmit_broadcast(skb, dev);
4566 case BOND_MODE_8023AD:
4567 return bond_3ad_xmit_xor(skb, dev);
4568 case BOND_MODE_ALB:
4569 case BOND_MODE_TLB:
4570 return bond_alb_xmit(skb, dev);
4571 default:
4572 /* Should never happen, mode already checked */
4573 pr_err("%s: Error: Unknown bonding mode %d\n",
4574 dev->name, bond->params.mode);
4575 WARN_ON_ONCE(1);
4576 dev_kfree_skb(skb);
4577 return NETDEV_TX_OK;
4583 * set bond mode specific net device operations
4585 void bond_set_mode_ops(struct bonding *bond, int mode)
4587 struct net_device *bond_dev = bond->dev;
4589 switch (mode) {
4590 case BOND_MODE_ROUNDROBIN:
4591 break;
4592 case BOND_MODE_ACTIVEBACKUP:
4593 break;
4594 case BOND_MODE_XOR:
4595 bond_set_xmit_hash_policy(bond);
4596 break;
4597 case BOND_MODE_BROADCAST:
4598 break;
4599 case BOND_MODE_8023AD:
4600 bond_set_master_3ad_flags(bond);
4601 bond_set_xmit_hash_policy(bond);
4602 break;
4603 case BOND_MODE_ALB:
4604 bond_set_master_alb_flags(bond);
4605 /* FALLTHRU */
4606 case BOND_MODE_TLB:
4607 break;
4608 default:
4609 /* Should never happen, mode already checked */
4610 pr_err("%s: Error: Unknown bonding mode %d\n",
4611 bond_dev->name, mode);
4612 break;
4616 static void bond_ethtool_get_drvinfo(struct net_device *bond_dev,
4617 struct ethtool_drvinfo *drvinfo)
4619 strncpy(drvinfo->driver, DRV_NAME, 32);
4620 strncpy(drvinfo->version, DRV_VERSION, 32);
4621 snprintf(drvinfo->fw_version, 32, "%d", BOND_ABI_VERSION);
4624 static const struct ethtool_ops bond_ethtool_ops = {
4625 .get_drvinfo = bond_ethtool_get_drvinfo,
4626 .get_link = ethtool_op_get_link,
4627 .get_tx_csum = ethtool_op_get_tx_csum,
4628 .get_sg = ethtool_op_get_sg,
4629 .get_tso = ethtool_op_get_tso,
4630 .get_ufo = ethtool_op_get_ufo,
4631 .get_flags = ethtool_op_get_flags,
4634 static const struct net_device_ops bond_netdev_ops = {
4635 .ndo_init = bond_init,
4636 .ndo_uninit = bond_uninit,
4637 .ndo_open = bond_open,
4638 .ndo_stop = bond_close,
4639 .ndo_start_xmit = bond_start_xmit,
4640 .ndo_select_queue = bond_select_queue,
4641 .ndo_get_stats64 = bond_get_stats,
4642 .ndo_do_ioctl = bond_do_ioctl,
4643 .ndo_set_multicast_list = bond_set_multicast_list,
4644 .ndo_change_mtu = bond_change_mtu,
4645 .ndo_set_mac_address = bond_set_mac_address,
4646 .ndo_neigh_setup = bond_neigh_setup,
4647 .ndo_vlan_rx_register = bond_vlan_rx_register,
4648 .ndo_vlan_rx_add_vid = bond_vlan_rx_add_vid,
4649 .ndo_vlan_rx_kill_vid = bond_vlan_rx_kill_vid,
4650 #ifdef CONFIG_NET_POLL_CONTROLLER
4651 .ndo_netpoll_cleanup = bond_netpoll_cleanup,
4652 .ndo_poll_controller = bond_poll_controller,
4653 #endif
4656 static void bond_destructor(struct net_device *bond_dev)
4658 struct bonding *bond = netdev_priv(bond_dev);
4659 if (bond->wq)
4660 destroy_workqueue(bond->wq);
4661 free_netdev(bond_dev);
4664 static void bond_setup(struct net_device *bond_dev)
4666 struct bonding *bond = netdev_priv(bond_dev);
4668 /* initialize rwlocks */
4669 rwlock_init(&bond->lock);
4670 rwlock_init(&bond->curr_slave_lock);
4672 bond->params = bonding_defaults;
4674 /* Initialize pointers */
4675 bond->dev = bond_dev;
4676 INIT_LIST_HEAD(&bond->vlan_list);
4678 /* Initialize the device entry points */
4679 ether_setup(bond_dev);
4680 bond_dev->netdev_ops = &bond_netdev_ops;
4681 bond_dev->ethtool_ops = &bond_ethtool_ops;
4682 bond_set_mode_ops(bond, bond->params.mode);
4684 bond_dev->destructor = bond_destructor;
4686 /* Initialize the device options */
4687 bond_dev->tx_queue_len = 0;
4688 bond_dev->flags |= IFF_MASTER|IFF_MULTICAST;
4689 bond_dev->priv_flags |= IFF_BONDING;
4690 bond_dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
4692 if (bond->params.arp_interval)
4693 bond_dev->priv_flags |= IFF_MASTER_ARPMON;
4695 /* At first, we block adding VLANs. That's the only way to
4696 * prevent problems that occur when adding VLANs over an
4697 * empty bond. The block will be removed once non-challenged
4698 * slaves are enslaved.
4700 bond_dev->features |= NETIF_F_VLAN_CHALLENGED;
4702 /* don't acquire bond device's netif_tx_lock when
4703 * transmitting */
4704 bond_dev->features |= NETIF_F_LLTX;
4706 /* By default, we declare the bond to be fully
4707 * VLAN hardware accelerated capable. Special
4708 * care is taken in the various xmit functions
4709 * when there are slaves that are not hw accel
4710 * capable
4712 bond_dev->features |= (NETIF_F_HW_VLAN_TX |
4713 NETIF_F_HW_VLAN_RX |
4714 NETIF_F_HW_VLAN_FILTER);
4716 /* By default, we enable GRO on bonding devices.
4717 * Actual support requires lowlevel drivers are GRO ready.
4719 bond_dev->features |= NETIF_F_GRO;
4722 static void bond_work_cancel_all(struct bonding *bond)
4724 write_lock_bh(&bond->lock);
4725 bond->kill_timers = 1;
4726 write_unlock_bh(&bond->lock);
4728 if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
4729 cancel_delayed_work(&bond->mii_work);
4731 if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
4732 cancel_delayed_work(&bond->arp_work);
4734 if (bond->params.mode == BOND_MODE_ALB &&
4735 delayed_work_pending(&bond->alb_work))
4736 cancel_delayed_work(&bond->alb_work);
4738 if (bond->params.mode == BOND_MODE_8023AD &&
4739 delayed_work_pending(&bond->ad_work))
4740 cancel_delayed_work(&bond->ad_work);
4742 if (delayed_work_pending(&bond->mcast_work))
4743 cancel_delayed_work(&bond->mcast_work);
4747 * Destroy a bonding device.
4748 * Must be under rtnl_lock when this function is called.
4750 static void bond_uninit(struct net_device *bond_dev)
4752 struct bonding *bond = netdev_priv(bond_dev);
4753 struct vlan_entry *vlan, *tmp;
4755 bond_netpoll_cleanup(bond_dev);
4757 /* Release the bonded slaves */
4758 bond_release_all(bond_dev);
4760 list_del(&bond->bond_list);
4762 bond_work_cancel_all(bond);
4764 bond_remove_proc_entry(bond);
4766 bond_debug_unregister(bond);
4768 __hw_addr_flush(&bond->mc_list);
4770 list_for_each_entry_safe(vlan, tmp, &bond->vlan_list, vlan_list) {
4771 list_del(&vlan->vlan_list);
4772 kfree(vlan);
4776 /*------------------------- Module initialization ---------------------------*/
4779 * Convert string input module parms. Accept either the
4780 * number of the mode or its string name. A bit complicated because
4781 * some mode names are substrings of other names, and calls from sysfs
4782 * may have whitespace in the name (trailing newlines, for example).
4784 int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl)
4786 int modeint = -1, i, rv;
4787 char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, };
4789 for (p = (char *)buf; *p; p++)
4790 if (!(isdigit(*p) || isspace(*p)))
4791 break;
4793 if (*p)
4794 rv = sscanf(buf, "%20s", modestr);
4795 else
4796 rv = sscanf(buf, "%d", &modeint);
4798 if (!rv)
4799 return -1;
4801 for (i = 0; tbl[i].modename; i++) {
4802 if (modeint == tbl[i].mode)
4803 return tbl[i].mode;
4804 if (strcmp(modestr, tbl[i].modename) == 0)
4805 return tbl[i].mode;
4808 return -1;
4811 static int bond_check_params(struct bond_params *params)
4813 int arp_validate_value, fail_over_mac_value, primary_reselect_value;
4816 * Convert string parameters.
4818 if (mode) {
4819 bond_mode = bond_parse_parm(mode, bond_mode_tbl);
4820 if (bond_mode == -1) {
4821 pr_err("Error: Invalid bonding mode \"%s\"\n",
4822 mode == NULL ? "NULL" : mode);
4823 return -EINVAL;
4827 if (xmit_hash_policy) {
4828 if ((bond_mode != BOND_MODE_XOR) &&
4829 (bond_mode != BOND_MODE_8023AD)) {
4830 pr_info("xmit_hash_policy param is irrelevant in mode %s\n",
4831 bond_mode_name(bond_mode));
4832 } else {
4833 xmit_hashtype = bond_parse_parm(xmit_hash_policy,
4834 xmit_hashtype_tbl);
4835 if (xmit_hashtype == -1) {
4836 pr_err("Error: Invalid xmit_hash_policy \"%s\"\n",
4837 xmit_hash_policy == NULL ? "NULL" :
4838 xmit_hash_policy);
4839 return -EINVAL;
4844 if (lacp_rate) {
4845 if (bond_mode != BOND_MODE_8023AD) {
4846 pr_info("lacp_rate param is irrelevant in mode %s\n",
4847 bond_mode_name(bond_mode));
4848 } else {
4849 lacp_fast = bond_parse_parm(lacp_rate, bond_lacp_tbl);
4850 if (lacp_fast == -1) {
4851 pr_err("Error: Invalid lacp rate \"%s\"\n",
4852 lacp_rate == NULL ? "NULL" : lacp_rate);
4853 return -EINVAL;
4858 if (ad_select) {
4859 params->ad_select = bond_parse_parm(ad_select, ad_select_tbl);
4860 if (params->ad_select == -1) {
4861 pr_err("Error: Invalid ad_select \"%s\"\n",
4862 ad_select == NULL ? "NULL" : ad_select);
4863 return -EINVAL;
4866 if (bond_mode != BOND_MODE_8023AD) {
4867 pr_warning("ad_select param only affects 802.3ad mode\n");
4869 } else {
4870 params->ad_select = BOND_AD_STABLE;
4873 if (max_bonds < 0) {
4874 pr_warning("Warning: max_bonds (%d) not in range %d-%d, so it was reset to BOND_DEFAULT_MAX_BONDS (%d)\n",
4875 max_bonds, 0, INT_MAX, BOND_DEFAULT_MAX_BONDS);
4876 max_bonds = BOND_DEFAULT_MAX_BONDS;
4879 if (miimon < 0) {
4880 pr_warning("Warning: miimon module parameter (%d), not in range 0-%d, so it was reset to %d\n",
4881 miimon, INT_MAX, BOND_LINK_MON_INTERV);
4882 miimon = BOND_LINK_MON_INTERV;
4885 if (updelay < 0) {
4886 pr_warning("Warning: updelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4887 updelay, INT_MAX);
4888 updelay = 0;
4891 if (downdelay < 0) {
4892 pr_warning("Warning: downdelay module parameter (%d), not in range 0-%d, so it was reset to 0\n",
4893 downdelay, INT_MAX);
4894 downdelay = 0;
4897 if ((use_carrier != 0) && (use_carrier != 1)) {
4898 pr_warning("Warning: use_carrier module parameter (%d), not of valid value (0/1), so it was set to 1\n",
4899 use_carrier);
4900 use_carrier = 1;
4903 if (num_grat_arp < 0 || num_grat_arp > 255) {
4904 pr_warning("Warning: num_grat_arp (%d) not in range 0-255 so it was reset to 1\n",
4905 num_grat_arp);
4906 num_grat_arp = 1;
4909 if (num_unsol_na < 0 || num_unsol_na > 255) {
4910 pr_warning("Warning: num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
4911 num_unsol_na);
4912 num_unsol_na = 1;
4915 /* reset values for 802.3ad */
4916 if (bond_mode == BOND_MODE_8023AD) {
4917 if (!miimon) {
4918 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");
4919 pr_warning("Forcing miimon to 100msec\n");
4920 miimon = 100;
4924 if (tx_queues < 1 || tx_queues > 255) {
4925 pr_warning("Warning: tx_queues (%d) should be between "
4926 "1 and 255, resetting to %d\n",
4927 tx_queues, BOND_DEFAULT_TX_QUEUES);
4928 tx_queues = BOND_DEFAULT_TX_QUEUES;
4931 if ((all_slaves_active != 0) && (all_slaves_active != 1)) {
4932 pr_warning("Warning: all_slaves_active module parameter (%d), "
4933 "not of valid value (0/1), so it was set to "
4934 "0\n", all_slaves_active);
4935 all_slaves_active = 0;
4938 if (resend_igmp < 0 || resend_igmp > 255) {
4939 pr_warning("Warning: resend_igmp (%d) should be between "
4940 "0 and 255, resetting to %d\n",
4941 resend_igmp, BOND_DEFAULT_RESEND_IGMP);
4942 resend_igmp = BOND_DEFAULT_RESEND_IGMP;
4945 /* reset values for TLB/ALB */
4946 if ((bond_mode == BOND_MODE_TLB) ||
4947 (bond_mode == BOND_MODE_ALB)) {
4948 if (!miimon) {
4949 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");
4950 pr_warning("Forcing miimon to 100msec\n");
4951 miimon = 100;
4955 if (bond_mode == BOND_MODE_ALB) {
4956 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",
4957 updelay);
4960 if (!miimon) {
4961 if (updelay || downdelay) {
4962 /* just warn the user the up/down delay will have
4963 * no effect since miimon is zero...
4965 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",
4966 updelay, downdelay);
4968 } else {
4969 /* don't allow arp monitoring */
4970 if (arp_interval) {
4971 pr_warning("Warning: miimon (%d) and arp_interval (%d) can't be used simultaneously, disabling ARP monitoring\n",
4972 miimon, arp_interval);
4973 arp_interval = 0;
4976 if ((updelay % miimon) != 0) {
4977 pr_warning("Warning: updelay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
4978 updelay, miimon,
4979 (updelay / miimon) * miimon);
4982 updelay /= miimon;
4984 if ((downdelay % miimon) != 0) {
4985 pr_warning("Warning: downdelay (%d) is not a multiple of miimon (%d), downdelay rounded to %d ms\n",
4986 downdelay, miimon,
4987 (downdelay / miimon) * miimon);
4990 downdelay /= miimon;
4993 if (arp_interval < 0) {
4994 pr_warning("Warning: arp_interval module parameter (%d) , not in range 0-%d, so it was reset to %d\n",
4995 arp_interval, INT_MAX, BOND_LINK_ARP_INTERV);
4996 arp_interval = BOND_LINK_ARP_INTERV;
4999 for (arp_ip_count = 0;
5000 (arp_ip_count < BOND_MAX_ARP_TARGETS) && arp_ip_target[arp_ip_count];
5001 arp_ip_count++) {
5002 /* not complete check, but should be good enough to
5003 catch mistakes */
5004 if (!isdigit(arp_ip_target[arp_ip_count][0])) {
5005 pr_warning("Warning: bad arp_ip_target module parameter (%s), ARP monitoring will not be performed\n",
5006 arp_ip_target[arp_ip_count]);
5007 arp_interval = 0;
5008 } else {
5009 __be32 ip = in_aton(arp_ip_target[arp_ip_count]);
5010 arp_target[arp_ip_count] = ip;
5014 if (arp_interval && !arp_ip_count) {
5015 /* don't allow arping if no arp_ip_target given... */
5016 pr_warning("Warning: arp_interval module parameter (%d) specified without providing an arp_ip_target parameter, arp_interval was reset to 0\n",
5017 arp_interval);
5018 arp_interval = 0;
5021 if (arp_validate) {
5022 if (bond_mode != BOND_MODE_ACTIVEBACKUP) {
5023 pr_err("arp_validate only supported in active-backup mode\n");
5024 return -EINVAL;
5026 if (!arp_interval) {
5027 pr_err("arp_validate requires arp_interval\n");
5028 return -EINVAL;
5031 arp_validate_value = bond_parse_parm(arp_validate,
5032 arp_validate_tbl);
5033 if (arp_validate_value == -1) {
5034 pr_err("Error: invalid arp_validate \"%s\"\n",
5035 arp_validate == NULL ? "NULL" : arp_validate);
5036 return -EINVAL;
5038 } else
5039 arp_validate_value = 0;
5041 if (miimon) {
5042 pr_info("MII link monitoring set to %d ms\n", miimon);
5043 } else if (arp_interval) {
5044 int i;
5046 pr_info("ARP monitoring set to %d ms, validate %s, with %d target(s):",
5047 arp_interval,
5048 arp_validate_tbl[arp_validate_value].modename,
5049 arp_ip_count);
5051 for (i = 0; i < arp_ip_count; i++)
5052 pr_info(" %s", arp_ip_target[i]);
5054 pr_info("\n");
5056 } else if (max_bonds) {
5057 /* miimon and arp_interval not set, we need one so things
5058 * work as expected, see bonding.txt for details
5060 pr_warning("Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.\n");
5063 if (primary && !USES_PRIMARY(bond_mode)) {
5064 /* currently, using a primary only makes sense
5065 * in active backup, TLB or ALB modes
5067 pr_warning("Warning: %s primary device specified but has no effect in %s mode\n",
5068 primary, bond_mode_name(bond_mode));
5069 primary = NULL;
5072 if (primary && primary_reselect) {
5073 primary_reselect_value = bond_parse_parm(primary_reselect,
5074 pri_reselect_tbl);
5075 if (primary_reselect_value == -1) {
5076 pr_err("Error: Invalid primary_reselect \"%s\"\n",
5077 primary_reselect ==
5078 NULL ? "NULL" : primary_reselect);
5079 return -EINVAL;
5081 } else {
5082 primary_reselect_value = BOND_PRI_RESELECT_ALWAYS;
5085 if (fail_over_mac) {
5086 fail_over_mac_value = bond_parse_parm(fail_over_mac,
5087 fail_over_mac_tbl);
5088 if (fail_over_mac_value == -1) {
5089 pr_err("Error: invalid fail_over_mac \"%s\"\n",
5090 arp_validate == NULL ? "NULL" : arp_validate);
5091 return -EINVAL;
5094 if (bond_mode != BOND_MODE_ACTIVEBACKUP)
5095 pr_warning("Warning: fail_over_mac only affects active-backup mode.\n");
5096 } else {
5097 fail_over_mac_value = BOND_FOM_NONE;
5100 /* fill params struct with the proper values */
5101 params->mode = bond_mode;
5102 params->xmit_policy = xmit_hashtype;
5103 params->miimon = miimon;
5104 params->num_grat_arp = num_grat_arp;
5105 params->num_unsol_na = num_unsol_na;
5106 params->arp_interval = arp_interval;
5107 params->arp_validate = arp_validate_value;
5108 params->updelay = updelay;
5109 params->downdelay = downdelay;
5110 params->use_carrier = use_carrier;
5111 params->lacp_fast = lacp_fast;
5112 params->primary[0] = 0;
5113 params->primary_reselect = primary_reselect_value;
5114 params->fail_over_mac = fail_over_mac_value;
5115 params->tx_queues = tx_queues;
5116 params->all_slaves_active = all_slaves_active;
5117 params->resend_igmp = resend_igmp;
5119 if (primary) {
5120 strncpy(params->primary, primary, IFNAMSIZ);
5121 params->primary[IFNAMSIZ - 1] = 0;
5124 memcpy(params->arp_targets, arp_target, sizeof(arp_target));
5126 return 0;
5129 static struct lock_class_key bonding_netdev_xmit_lock_key;
5130 static struct lock_class_key bonding_netdev_addr_lock_key;
5132 static void bond_set_lockdep_class_one(struct net_device *dev,
5133 struct netdev_queue *txq,
5134 void *_unused)
5136 lockdep_set_class(&txq->_xmit_lock,
5137 &bonding_netdev_xmit_lock_key);
5140 static void bond_set_lockdep_class(struct net_device *dev)
5142 lockdep_set_class(&dev->addr_list_lock,
5143 &bonding_netdev_addr_lock_key);
5144 netdev_for_each_tx_queue(dev, bond_set_lockdep_class_one, NULL);
5148 * Called from registration process
5150 static int bond_init(struct net_device *bond_dev)
5152 struct bonding *bond = netdev_priv(bond_dev);
5153 struct bond_net *bn = net_generic(dev_net(bond_dev), bond_net_id);
5154 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
5156 pr_debug("Begin bond_init for %s\n", bond_dev->name);
5159 * Initialize locks that may be required during
5160 * en/deslave operations. All of the bond_open work
5161 * (of which this is part) should really be moved to
5162 * a phase prior to dev_open
5164 spin_lock_init(&(bond_info->tx_hashtbl_lock));
5165 spin_lock_init(&(bond_info->rx_hashtbl_lock));
5167 bond->wq = create_singlethread_workqueue(bond_dev->name);
5168 if (!bond->wq)
5169 return -ENOMEM;
5171 bond_set_lockdep_class(bond_dev);
5173 netif_carrier_off(bond_dev);
5175 bond_create_proc_entry(bond);
5176 list_add_tail(&bond->bond_list, &bn->dev_list);
5178 bond_prepare_sysfs_group(bond);
5180 bond_debug_register(bond);
5182 __hw_addr_init(&bond->mc_list);
5183 return 0;
5186 static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
5188 if (tb[IFLA_ADDRESS]) {
5189 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
5190 return -EINVAL;
5191 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
5192 return -EADDRNOTAVAIL;
5194 return 0;
5197 static struct rtnl_link_ops bond_link_ops __read_mostly = {
5198 .kind = "bond",
5199 .priv_size = sizeof(struct bonding),
5200 .setup = bond_setup,
5201 .validate = bond_validate,
5204 /* Create a new bond based on the specified name and bonding parameters.
5205 * If name is NULL, obtain a suitable "bond%d" name for us.
5206 * Caller must NOT hold rtnl_lock; we need to release it here before we
5207 * set up our sysfs entries.
5209 int bond_create(struct net *net, const char *name)
5211 struct net_device *bond_dev;
5212 int res;
5214 rtnl_lock();
5216 bond_dev = alloc_netdev_mq(sizeof(struct bonding), name ? name : "",
5217 bond_setup, tx_queues);
5218 if (!bond_dev) {
5219 pr_err("%s: eek! can't alloc netdev!\n", name);
5220 rtnl_unlock();
5221 return -ENOMEM;
5224 dev_net_set(bond_dev, net);
5225 bond_dev->rtnl_link_ops = &bond_link_ops;
5227 if (!name) {
5228 res = dev_alloc_name(bond_dev, "bond%d");
5229 if (res < 0)
5230 goto out;
5231 } else {
5233 * If we're given a name to register
5234 * we need to ensure that its not already
5235 * registered
5237 res = -EEXIST;
5238 if (__dev_get_by_name(net, name) != NULL)
5239 goto out;
5242 res = register_netdevice(bond_dev);
5244 out:
5245 rtnl_unlock();
5246 if (res < 0)
5247 bond_destructor(bond_dev);
5248 return res;
5251 static int __net_init bond_net_init(struct net *net)
5253 struct bond_net *bn = net_generic(net, bond_net_id);
5255 bn->net = net;
5256 INIT_LIST_HEAD(&bn->dev_list);
5258 bond_create_proc_dir(bn);
5260 return 0;
5263 static void __net_exit bond_net_exit(struct net *net)
5265 struct bond_net *bn = net_generic(net, bond_net_id);
5267 bond_destroy_proc_dir(bn);
5270 static struct pernet_operations bond_net_ops = {
5271 .init = bond_net_init,
5272 .exit = bond_net_exit,
5273 .id = &bond_net_id,
5274 .size = sizeof(struct bond_net),
5277 static int __init bonding_init(void)
5279 int i;
5280 int res;
5282 pr_info("%s", version);
5284 res = bond_check_params(&bonding_defaults);
5285 if (res)
5286 goto out;
5288 res = register_pernet_subsys(&bond_net_ops);
5289 if (res)
5290 goto out;
5292 res = rtnl_link_register(&bond_link_ops);
5293 if (res)
5294 goto err_link;
5296 bond_create_debugfs();
5298 for (i = 0; i < max_bonds; i++) {
5299 res = bond_create(&init_net, NULL);
5300 if (res)
5301 goto err;
5304 res = bond_create_sysfs();
5305 if (res)
5306 goto err;
5308 register_netdevice_notifier(&bond_netdev_notifier);
5309 register_inetaddr_notifier(&bond_inetaddr_notifier);
5310 bond_register_ipv6_notifier();
5311 out:
5312 return res;
5313 err:
5314 rtnl_link_unregister(&bond_link_ops);
5315 err_link:
5316 unregister_pernet_subsys(&bond_net_ops);
5317 goto out;
5321 static void __exit bonding_exit(void)
5323 unregister_netdevice_notifier(&bond_netdev_notifier);
5324 unregister_inetaddr_notifier(&bond_inetaddr_notifier);
5325 bond_unregister_ipv6_notifier();
5327 bond_destroy_sysfs();
5328 bond_destroy_debugfs();
5330 rtnl_link_unregister(&bond_link_ops);
5331 unregister_pernet_subsys(&bond_net_ops);
5333 #ifdef CONFIG_NET_POLL_CONTROLLER
5335 * Make sure we don't have an imbalance on our netpoll blocking
5337 WARN_ON(atomic_read(&netpoll_block_tx));
5338 #endif
5341 module_init(bonding_init);
5342 module_exit(bonding_exit);
5343 MODULE_LICENSE("GPL");
5344 MODULE_VERSION(DRV_VERSION);
5345 MODULE_DESCRIPTION(DRV_DESCRIPTION ", v" DRV_VERSION);
5346 MODULE_AUTHOR("Thomas Davis, tadavis@lbl.gov and many others");
5347 MODULE_ALIAS_RTNL_LINK("bond");