3 * Copyright(c) 2004-2005 Intel Corporation. All rights reserved.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 * The full GNU General Public License is included in this distribution in the
20 * file called LICENSE.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/device.h>
26 #include <linux/sysdev.h>
28 #include <linux/types.h>
29 #include <linux/string.h>
30 #include <linux/netdevice.h>
31 #include <linux/inetdevice.h>
33 #include <linux/sysfs.h>
34 #include <linux/string.h>
35 #include <linux/ctype.h>
36 #include <linux/inet.h>
37 #include <linux/rtnetlink.h>
39 /* #define BONDING_DEBUG 1 */
41 #define to_dev(obj) container_of(obj,struct device,kobj)
42 #define to_bond(cd) ((struct bonding *)(to_net_dev(cd)->priv))
44 /*---------------------------- Declarations -------------------------------*/
47 extern struct list_head bond_dev_list;
48 extern struct bond_params bonding_defaults;
49 extern struct bond_parm_tbl bond_mode_tbl[];
50 extern struct bond_parm_tbl bond_lacp_tbl[];
51 extern struct bond_parm_tbl xmit_hashtype_tbl[];
52 extern struct bond_parm_tbl arp_validate_tbl[];
54 static int expected_refcount = -1;
55 static struct class *netdev_class;
56 /*--------------------------- Data Structures -----------------------------*/
58 /* Bonding sysfs lock. Why can't we just use the subsytem lock?
59 * Because kobject_register tries to acquire the subsystem lock. If
60 * we already hold the lock (which we would if the user was creating
61 * a new bond through the sysfs interface), we deadlock.
62 * This lock is only needed when deleting a bond - we need to make sure
63 * that we don't collide with an ongoing ioctl.
66 struct rw_semaphore bonding_rwsem;
71 /*------------------------------ Functions --------------------------------*/
74 * "show" function for the bond_masters attribute.
75 * The class parameter is ignored.
77 static ssize_t bonding_show_bonds(struct class *cls, char *buffer)
82 down_read(&(bonding_rwsem));
84 list_for_each_entry(bond, &bond_dev_list, bond_list) {
85 if (res > (PAGE_SIZE - IFNAMSIZ)) {
86 /* not enough space for another interface name */
87 if ((PAGE_SIZE - res) > 10)
89 res += sprintf(buffer + res, "++more++");
92 res += sprintf(buffer + res, "%s ",
95 res += sprintf(buffer + res, "\n");
97 up_read(&(bonding_rwsem));
102 * "store" function for the bond_masters attribute. This is what
103 * creates and deletes entire bonds.
105 * The class parameter is ignored.
109 static ssize_t bonding_store_bonds(struct class *cls, const char *buffer, size_t count)
111 char command[IFNAMSIZ + 1] = {0, };
114 struct bonding *bond;
117 down_write(&(bonding_rwsem));
118 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
119 ifname = command + 1;
120 if ((strlen(command) <= 1) ||
121 !dev_valid_name(ifname))
124 if (command[0] == '+') {
126 /* Check to see if the bond already exists. */
127 list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list)
128 if (strnicmp(bond->dev->name, ifname, IFNAMSIZ) == 0) {
129 printk(KERN_ERR DRV_NAME
130 ": cannot add bond %s; it already exists\n",
136 printk(KERN_INFO DRV_NAME
137 ": %s is being created...\n", ifname);
138 if (bond_create(ifname, &bonding_defaults, &bond)) {
139 printk(KERN_INFO DRV_NAME
140 ": %s interface already exists. Bond creation failed.\n",
147 if (command[0] == '-') {
148 list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list)
149 if (strnicmp(bond->dev->name, ifname, IFNAMSIZ) == 0) {
151 /* check the ref count on the bond's kobject.
152 * If it's > expected, then there's a file open,
153 * and we have to fail.
155 if (atomic_read(&bond->dev->dev.kobj.kref.refcount)
156 > expected_refcount){
158 printk(KERN_INFO DRV_NAME
159 ": Unable remove bond %s due to open references.\n",
164 printk(KERN_INFO DRV_NAME
165 ": %s is being deleted...\n",
167 bond_deinit(bond->dev);
168 bond_destroy_sysfs_entry(bond);
169 unregister_netdevice(bond->dev);
174 printk(KERN_ERR DRV_NAME
175 ": unable to delete non-existent bond %s\n", ifname);
181 printk(KERN_ERR DRV_NAME
182 ": no command found in bonding_masters. Use +ifname or -ifname.\n");
185 /* Always return either count or an error. If you return 0, you'll
186 * get called forever, which is bad.
189 up_write(&(bonding_rwsem));
192 /* class attribute for bond_masters file. This ends up in /sys/class/net */
193 static CLASS_ATTR(bonding_masters, S_IWUSR | S_IRUGO,
194 bonding_show_bonds, bonding_store_bonds);
196 int bond_create_slave_symlinks(struct net_device *master, struct net_device *slave)
198 char linkname[IFNAMSIZ+7];
201 /* first, create a link from the slave back to the master */
202 ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj),
206 /* next, create a link from the master to the slave */
207 sprintf(linkname,"slave_%s",slave->name);
208 ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj),
214 void bond_destroy_slave_symlinks(struct net_device *master, struct net_device *slave)
216 char linkname[IFNAMSIZ+7];
218 sysfs_remove_link(&(slave->dev.kobj), "master");
219 sprintf(linkname,"slave_%s",slave->name);
220 sysfs_remove_link(&(master->dev.kobj), linkname);
225 * Show the slaves in the current bond.
227 static ssize_t bonding_show_slaves(struct device *d,
228 struct device_attribute *attr, char *buf)
232 struct bonding *bond = to_bond(d);
234 read_lock_bh(&bond->lock);
235 bond_for_each_slave(bond, slave, i) {
236 if (res > (PAGE_SIZE - IFNAMSIZ)) {
237 /* not enough space for another interface name */
238 if ((PAGE_SIZE - res) > 10)
239 res = PAGE_SIZE - 10;
240 res += sprintf(buf + res, "++more++");
243 res += sprintf(buf + res, "%s ", slave->dev->name);
245 read_unlock_bh(&bond->lock);
246 res += sprintf(buf + res, "\n");
252 * Set the slaves in the current bond. The bond interface must be
253 * up for this to succeed.
254 * This function is largely the same flow as bonding_update_bonds().
256 static ssize_t bonding_store_slaves(struct device *d,
257 struct device_attribute *attr,
258 const char *buffer, size_t count)
260 char command[IFNAMSIZ + 1] = { 0, };
262 int i, res, found, ret = count;
264 struct net_device *dev = NULL;
265 struct bonding *bond = to_bond(d);
267 /* Quick sanity check -- is the bond interface up? */
268 if (!(bond->dev->flags & IFF_UP)) {
269 printk(KERN_ERR DRV_NAME
270 ": %s: Unable to update slaves because interface is down.\n",
276 /* Note: We can't hold bond->lock here, as bond_create grabs it. */
278 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
279 ifname = command + 1;
280 if ((strlen(command) <= 1) ||
281 !dev_valid_name(ifname))
284 if (command[0] == '+') {
286 /* Got a slave name in ifname. Is it already in the list? */
288 read_lock_bh(&bond->lock);
289 bond_for_each_slave(bond, slave, i)
290 if (strnicmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
291 printk(KERN_ERR DRV_NAME
292 ": %s: Interface %s is already enslaved!\n",
293 bond->dev->name, ifname);
295 read_unlock_bh(&bond->lock);
299 read_unlock_bh(&bond->lock);
300 printk(KERN_INFO DRV_NAME ": %s: Adding slave %s.\n",
301 bond->dev->name, ifname);
302 dev = dev_get_by_name(ifname);
304 printk(KERN_INFO DRV_NAME
305 ": %s: Interface %s does not exist!\n",
306 bond->dev->name, ifname);
313 if (dev->flags & IFF_UP) {
314 printk(KERN_ERR DRV_NAME
315 ": %s: Error: Unable to enslave %s "
316 "because it is already up.\n",
317 bond->dev->name, dev->name);
321 /* If this is the first slave, then we need to set
322 the master's hardware address to be the same as the
324 if (!(*((u32 *) & (bond->dev->dev_addr[0])))) {
325 memcpy(bond->dev->dev_addr, dev->dev_addr,
329 /* Set the slave's MTU to match the bond */
330 if (dev->mtu != bond->dev->mtu) {
331 if (dev->change_mtu) {
332 res = dev->change_mtu(dev,
339 dev->mtu = bond->dev->mtu;
343 res = bond_enslave(bond->dev, dev);
351 if (command[0] == '-') {
353 bond_for_each_slave(bond, slave, i)
354 if (strnicmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
359 printk(KERN_INFO DRV_NAME ": %s: Removing slave %s\n",
360 bond->dev->name, dev->name);
362 res = bond_release(bond->dev, dev);
368 /* set the slave MTU to the default */
369 if (dev->change_mtu) {
370 dev->change_mtu(dev, 1500);
376 printk(KERN_ERR DRV_NAME ": unable to remove non-existent slave %s for bond %s.\n",
377 ifname, bond->dev->name);
384 printk(KERN_ERR DRV_NAME ": no command found in slaves file for bond %s. Use +ifname or -ifname.\n", bond->dev->name);
391 static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves, bonding_store_slaves);
394 * Show and set the bonding mode. The bond interface must be down to
397 static ssize_t bonding_show_mode(struct device *d,
398 struct device_attribute *attr, char *buf)
400 struct bonding *bond = to_bond(d);
402 return sprintf(buf, "%s %d\n",
403 bond_mode_tbl[bond->params.mode].modename,
404 bond->params.mode) + 1;
407 static ssize_t bonding_store_mode(struct device *d,
408 struct device_attribute *attr,
409 const char *buf, size_t count)
411 int new_value, ret = count;
412 struct bonding *bond = to_bond(d);
414 if (bond->dev->flags & IFF_UP) {
415 printk(KERN_ERR DRV_NAME
416 ": unable to update mode of %s because interface is up.\n",
422 new_value = bond_parse_parm((char *)buf, bond_mode_tbl);
424 printk(KERN_ERR DRV_NAME
425 ": %s: Ignoring invalid mode value %.*s.\n",
427 (int)strlen(buf) - 1, buf);
431 if (bond->params.mode == BOND_MODE_8023AD)
432 bond_unset_master_3ad_flags(bond);
434 if (bond->params.mode == BOND_MODE_ALB)
435 bond_unset_master_alb_flags(bond);
437 bond->params.mode = new_value;
438 bond_set_mode_ops(bond, bond->params.mode);
439 printk(KERN_INFO DRV_NAME ": %s: setting mode to %s (%d).\n",
440 bond->dev->name, bond_mode_tbl[new_value].modename, new_value);
445 static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, bonding_show_mode, bonding_store_mode);
448 * Show and set the bonding transmit hash method. The bond interface must be down to
449 * change the xmit hash policy.
451 static ssize_t bonding_show_xmit_hash(struct device *d,
452 struct device_attribute *attr,
456 struct bonding *bond = to_bond(d);
458 if ((bond->params.mode != BOND_MODE_XOR) &&
459 (bond->params.mode != BOND_MODE_8023AD)) {
461 count = sprintf(buf, "NA\n") + 1;
463 count = sprintf(buf, "%s %d\n",
464 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
465 bond->params.xmit_policy) + 1;
471 static ssize_t bonding_store_xmit_hash(struct device *d,
472 struct device_attribute *attr,
473 const char *buf, size_t count)
475 int new_value, ret = count;
476 struct bonding *bond = to_bond(d);
478 if (bond->dev->flags & IFF_UP) {
479 printk(KERN_ERR DRV_NAME
480 "%s: Interface is up. Unable to update xmit policy.\n",
486 if ((bond->params.mode != BOND_MODE_XOR) &&
487 (bond->params.mode != BOND_MODE_8023AD)) {
488 printk(KERN_ERR DRV_NAME
489 "%s: Transmit hash policy is irrelevant in this mode.\n",
495 new_value = bond_parse_parm((char *)buf, xmit_hashtype_tbl);
497 printk(KERN_ERR DRV_NAME
498 ": %s: Ignoring invalid xmit hash policy value %.*s.\n",
500 (int)strlen(buf) - 1, buf);
504 bond->params.xmit_policy = new_value;
505 bond_set_mode_ops(bond, bond->params.mode);
506 printk(KERN_INFO DRV_NAME ": %s: setting xmit hash policy to %s (%d).\n",
507 bond->dev->name, xmit_hashtype_tbl[new_value].modename, new_value);
512 static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR, bonding_show_xmit_hash, bonding_store_xmit_hash);
515 * Show and set arp_validate.
517 static ssize_t bonding_show_arp_validate(struct device *d,
518 struct device_attribute *attr,
521 struct bonding *bond = to_bond(d);
523 return sprintf(buf, "%s %d\n",
524 arp_validate_tbl[bond->params.arp_validate].modename,
525 bond->params.arp_validate) + 1;
528 static ssize_t bonding_store_arp_validate(struct device *d,
529 struct device_attribute *attr,
530 const char *buf, size_t count)
533 struct bonding *bond = to_bond(d);
535 new_value = bond_parse_parm((char *)buf, arp_validate_tbl);
537 printk(KERN_ERR DRV_NAME
538 ": %s: Ignoring invalid arp_validate value %s\n",
539 bond->dev->name, buf);
542 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
543 printk(KERN_ERR DRV_NAME
544 ": %s: arp_validate only supported in active-backup mode.\n",
548 printk(KERN_INFO DRV_NAME ": %s: setting arp_validate to %s (%d).\n",
549 bond->dev->name, arp_validate_tbl[new_value].modename,
552 if (!bond->params.arp_validate && new_value) {
553 bond_register_arp(bond);
554 } else if (bond->params.arp_validate && !new_value) {
555 bond_unregister_arp(bond);
558 bond->params.arp_validate = new_value;
563 static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate, bonding_store_arp_validate);
566 * Show and set the arp timer interval. There are two tricky bits
567 * here. First, if ARP monitoring is activated, then we must disable
568 * MII monitoring. Second, if the ARP timer isn't running, we must
571 static ssize_t bonding_show_arp_interval(struct device *d,
572 struct device_attribute *attr,
575 struct bonding *bond = to_bond(d);
577 return sprintf(buf, "%d\n", bond->params.arp_interval) + 1;
580 static ssize_t bonding_store_arp_interval(struct device *d,
581 struct device_attribute *attr,
582 const char *buf, size_t count)
584 int new_value, ret = count;
585 struct bonding *bond = to_bond(d);
587 if (sscanf(buf, "%d", &new_value) != 1) {
588 printk(KERN_ERR DRV_NAME
589 ": %s: no arp_interval value specified.\n",
595 printk(KERN_ERR DRV_NAME
596 ": %s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
597 bond->dev->name, new_value, INT_MAX);
602 printk(KERN_INFO DRV_NAME
603 ": %s: Setting ARP monitoring interval to %d.\n",
604 bond->dev->name, new_value);
605 bond->params.arp_interval = new_value;
606 if (bond->params.miimon) {
607 printk(KERN_INFO DRV_NAME
608 ": %s: ARP monitoring cannot be used with MII monitoring. "
609 "%s Disabling MII monitoring.\n",
610 bond->dev->name, bond->dev->name);
611 bond->params.miimon = 0;
612 /* Kill MII timer, else it brings bond's link down */
613 if (bond->arp_timer.function) {
614 printk(KERN_INFO DRV_NAME
615 ": %s: Kill MII timer, else it brings bond's link down...\n",
617 del_timer_sync(&bond->mii_timer);
620 if (!bond->params.arp_targets[0]) {
621 printk(KERN_INFO DRV_NAME
622 ": %s: ARP monitoring has been set up, "
623 "but no ARP targets have been specified.\n",
626 if (bond->dev->flags & IFF_UP) {
627 /* If the interface is up, we may need to fire off
628 * the ARP timer. If the interface is down, the
629 * timer will get fired off when the open function
632 if (bond->arp_timer.function) {
633 /* The timer's already set up, so fire it off */
634 mod_timer(&bond->arp_timer, jiffies + 1);
636 /* Set up the timer. */
637 init_timer(&bond->arp_timer);
638 bond->arp_timer.expires = jiffies + 1;
639 bond->arp_timer.data =
640 (unsigned long) bond->dev;
641 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP) {
642 bond->arp_timer.function =
644 &bond_activebackup_arp_mon;
646 bond->arp_timer.function =
648 &bond_loadbalance_arp_mon;
650 add_timer(&bond->arp_timer);
657 static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR , bonding_show_arp_interval, bonding_store_arp_interval);
660 * Show and set the arp targets.
662 static ssize_t bonding_show_arp_targets(struct device *d,
663 struct device_attribute *attr,
667 struct bonding *bond = to_bond(d);
669 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
670 if (bond->params.arp_targets[i])
671 res += sprintf(buf + res, "%u.%u.%u.%u ",
672 NIPQUAD(bond->params.arp_targets[i]));
675 res--; /* eat the leftover space */
676 res += sprintf(buf + res, "\n");
681 static ssize_t bonding_store_arp_targets(struct device *d,
682 struct device_attribute *attr,
683 const char *buf, size_t count)
686 int i = 0, done = 0, ret = count;
687 struct bonding *bond = to_bond(d);
690 targets = bond->params.arp_targets;
691 newtarget = in_aton(buf + 1);
694 if ((newtarget == 0) || (newtarget == INADDR_BROADCAST)) {
695 printk(KERN_ERR DRV_NAME
696 ": %s: invalid ARP target %u.%u.%u.%u specified for addition\n",
697 bond->dev->name, NIPQUAD(newtarget));
701 /* look for an empty slot to put the target in, and check for dupes */
702 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
703 if (targets[i] == newtarget) { /* duplicate */
704 printk(KERN_ERR DRV_NAME
705 ": %s: ARP target %u.%u.%u.%u is already present\n",
706 bond->dev->name, NIPQUAD(newtarget));
712 if (targets[i] == 0 && !done) {
713 printk(KERN_INFO DRV_NAME
714 ": %s: adding ARP target %d.%d.%d.%d.\n",
715 bond->dev->name, NIPQUAD(newtarget));
717 targets[i] = newtarget;
721 printk(KERN_ERR DRV_NAME
722 ": %s: ARP target table is full!\n",
729 else if (buf[0] == '-') {
730 if ((newtarget == 0) || (newtarget == INADDR_BROADCAST)) {
731 printk(KERN_ERR DRV_NAME
732 ": %s: invalid ARP target %d.%d.%d.%d specified for removal\n",
733 bond->dev->name, NIPQUAD(newtarget));
738 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
739 if (targets[i] == newtarget) {
740 printk(KERN_INFO DRV_NAME
741 ": %s: removing ARP target %d.%d.%d.%d.\n",
742 bond->dev->name, NIPQUAD(newtarget));
748 printk(KERN_INFO DRV_NAME
749 ": %s: unable to remove nonexistent ARP target %d.%d.%d.%d.\n",
750 bond->dev->name, NIPQUAD(newtarget));
756 printk(KERN_ERR DRV_NAME ": no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
765 static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
768 * Show and set the up and down delays. These must be multiples of the
769 * MII monitoring value, and are stored internally as the multiplier.
770 * Thus, we must translate to MS for the real world.
772 static ssize_t bonding_show_downdelay(struct device *d,
773 struct device_attribute *attr,
776 struct bonding *bond = to_bond(d);
778 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon) + 1;
781 static ssize_t bonding_store_downdelay(struct device *d,
782 struct device_attribute *attr,
783 const char *buf, size_t count)
785 int new_value, ret = count;
786 struct bonding *bond = to_bond(d);
788 if (!(bond->params.miimon)) {
789 printk(KERN_ERR DRV_NAME
790 ": %s: Unable to set down delay as MII monitoring is disabled\n",
796 if (sscanf(buf, "%d", &new_value) != 1) {
797 printk(KERN_ERR DRV_NAME
798 ": %s: no down delay value specified.\n",
804 printk(KERN_ERR DRV_NAME
805 ": %s: Invalid down delay value %d not in range %d-%d; rejected.\n",
806 bond->dev->name, new_value, 1, INT_MAX);
810 if ((new_value % bond->params.miimon) != 0) {
811 printk(KERN_WARNING DRV_NAME
812 ": %s: Warning: down delay (%d) is not a multiple "
813 "of miimon (%d), delay rounded to %d ms\n",
814 bond->dev->name, new_value, bond->params.miimon,
815 (new_value / bond->params.miimon) *
816 bond->params.miimon);
818 bond->params.downdelay = new_value / bond->params.miimon;
819 printk(KERN_INFO DRV_NAME ": %s: Setting down delay to %d.\n",
820 bond->dev->name, bond->params.downdelay * bond->params.miimon);
827 static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR , bonding_show_downdelay, bonding_store_downdelay);
829 static ssize_t bonding_show_updelay(struct device *d,
830 struct device_attribute *attr,
833 struct bonding *bond = to_bond(d);
835 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon) + 1;
839 static ssize_t bonding_store_updelay(struct device *d,
840 struct device_attribute *attr,
841 const char *buf, size_t count)
843 int new_value, ret = count;
844 struct bonding *bond = to_bond(d);
846 if (!(bond->params.miimon)) {
847 printk(KERN_ERR DRV_NAME
848 ": %s: Unable to set up delay as MII monitoring is disabled\n",
854 if (sscanf(buf, "%d", &new_value) != 1) {
855 printk(KERN_ERR DRV_NAME
856 ": %s: no up delay value specified.\n",
862 printk(KERN_ERR DRV_NAME
863 ": %s: Invalid down delay value %d not in range %d-%d; rejected.\n",
864 bond->dev->name, new_value, 1, INT_MAX);
868 if ((new_value % bond->params.miimon) != 0) {
869 printk(KERN_WARNING DRV_NAME
870 ": %s: Warning: up delay (%d) is not a multiple "
871 "of miimon (%d), updelay rounded to %d ms\n",
872 bond->dev->name, new_value, bond->params.miimon,
873 (new_value / bond->params.miimon) *
874 bond->params.miimon);
876 bond->params.updelay = new_value / bond->params.miimon;
877 printk(KERN_INFO DRV_NAME ": %s: Setting up delay to %d.\n",
878 bond->dev->name, bond->params.updelay * bond->params.miimon);
885 static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR , bonding_show_updelay, bonding_store_updelay);
888 * Show and set the LACP interval. Interface must be down, and the mode
889 * must be set to 802.3ad mode.
891 static ssize_t bonding_show_lacp(struct device *d,
892 struct device_attribute *attr,
895 struct bonding *bond = to_bond(d);
897 return sprintf(buf, "%s %d\n",
898 bond_lacp_tbl[bond->params.lacp_fast].modename,
899 bond->params.lacp_fast) + 1;
902 static ssize_t bonding_store_lacp(struct device *d,
903 struct device_attribute *attr,
904 const char *buf, size_t count)
906 int new_value, ret = count;
907 struct bonding *bond = to_bond(d);
909 if (bond->dev->flags & IFF_UP) {
910 printk(KERN_ERR DRV_NAME
911 ": %s: Unable to update LACP rate because interface is up.\n",
917 if (bond->params.mode != BOND_MODE_8023AD) {
918 printk(KERN_ERR DRV_NAME
919 ": %s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
925 new_value = bond_parse_parm((char *)buf, bond_lacp_tbl);
927 if ((new_value == 1) || (new_value == 0)) {
928 bond->params.lacp_fast = new_value;
929 printk(KERN_INFO DRV_NAME
930 ": %s: Setting LACP rate to %s (%d).\n",
931 bond->dev->name, bond_lacp_tbl[new_value].modename, new_value);
933 printk(KERN_ERR DRV_NAME
934 ": %s: Ignoring invalid LACP rate value %.*s.\n",
935 bond->dev->name, (int)strlen(buf) - 1, buf);
941 static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR, bonding_show_lacp, bonding_store_lacp);
944 * Show and set the MII monitor interval. There are two tricky bits
945 * here. First, if MII monitoring is activated, then we must disable
946 * ARP monitoring. Second, if the timer isn't running, we must
949 static ssize_t bonding_show_miimon(struct device *d,
950 struct device_attribute *attr,
953 struct bonding *bond = to_bond(d);
955 return sprintf(buf, "%d\n", bond->params.miimon) + 1;
958 static ssize_t bonding_store_miimon(struct device *d,
959 struct device_attribute *attr,
960 const char *buf, size_t count)
962 int new_value, ret = count;
963 struct bonding *bond = to_bond(d);
965 if (sscanf(buf, "%d", &new_value) != 1) {
966 printk(KERN_ERR DRV_NAME
967 ": %s: no miimon value specified.\n",
973 printk(KERN_ERR DRV_NAME
974 ": %s: Invalid miimon value %d not in range %d-%d; rejected.\n",
975 bond->dev->name, new_value, 1, INT_MAX);
979 printk(KERN_INFO DRV_NAME
980 ": %s: Setting MII monitoring interval to %d.\n",
981 bond->dev->name, new_value);
982 bond->params.miimon = new_value;
983 if(bond->params.updelay)
984 printk(KERN_INFO DRV_NAME
985 ": %s: Note: Updating updelay (to %d) "
986 "since it is a multiple of the miimon value.\n",
988 bond->params.updelay * bond->params.miimon);
989 if(bond->params.downdelay)
990 printk(KERN_INFO DRV_NAME
991 ": %s: Note: Updating downdelay (to %d) "
992 "since it is a multiple of the miimon value.\n",
994 bond->params.downdelay * bond->params.miimon);
995 if (bond->params.arp_interval) {
996 printk(KERN_INFO DRV_NAME
997 ": %s: MII monitoring cannot be used with "
998 "ARP monitoring. Disabling ARP monitoring...\n",
1000 bond->params.arp_interval = 0;
1001 if (bond->params.arp_validate) {
1002 bond_unregister_arp(bond);
1003 bond->params.arp_validate =
1004 BOND_ARP_VALIDATE_NONE;
1006 /* Kill ARP timer, else it brings bond's link down */
1007 if (bond->mii_timer.function) {
1008 printk(KERN_INFO DRV_NAME
1009 ": %s: Kill ARP timer, else it brings bond's link down...\n",
1011 del_timer_sync(&bond->arp_timer);
1015 if (bond->dev->flags & IFF_UP) {
1016 /* If the interface is up, we may need to fire off
1017 * the MII timer. If the interface is down, the
1018 * timer will get fired off when the open function
1021 if (bond->mii_timer.function) {
1022 /* The timer's already set up, so fire it off */
1023 mod_timer(&bond->mii_timer, jiffies + 1);
1025 /* Set up the timer. */
1026 init_timer(&bond->mii_timer);
1027 bond->mii_timer.expires = jiffies + 1;
1028 bond->mii_timer.data =
1029 (unsigned long) bond->dev;
1030 bond->mii_timer.function =
1031 (void *) &bond_mii_monitor;
1032 add_timer(&bond->mii_timer);
1039 static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR, bonding_show_miimon, bonding_store_miimon);
1042 * Show and set the primary slave. The store function is much
1043 * simpler than bonding_store_slaves function because it only needs to
1044 * handle one interface name.
1045 * The bond must be a mode that supports a primary for this be
1048 static ssize_t bonding_show_primary(struct device *d,
1049 struct device_attribute *attr,
1053 struct bonding *bond = to_bond(d);
1055 if (bond->primary_slave)
1056 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name) + 1;
1058 count = sprintf(buf, "\n") + 1;
1063 static ssize_t bonding_store_primary(struct device *d,
1064 struct device_attribute *attr,
1065 const char *buf, size_t count)
1068 struct slave *slave;
1069 struct bonding *bond = to_bond(d);
1071 write_lock_bh(&bond->lock);
1072 if (!USES_PRIMARY(bond->params.mode)) {
1073 printk(KERN_INFO DRV_NAME
1074 ": %s: Unable to set primary slave; %s is in mode %d\n",
1075 bond->dev->name, bond->dev->name, bond->params.mode);
1077 bond_for_each_slave(bond, slave, i) {
1079 (slave->dev->name, buf,
1080 strlen(slave->dev->name)) == 0) {
1081 printk(KERN_INFO DRV_NAME
1082 ": %s: Setting %s as primary slave.\n",
1083 bond->dev->name, slave->dev->name);
1084 bond->primary_slave = slave;
1085 bond_select_active_slave(bond);
1090 /* if we got here, then we didn't match the name of any slave */
1092 if (strlen(buf) == 0 || buf[0] == '\n') {
1093 printk(KERN_INFO DRV_NAME
1094 ": %s: Setting primary slave to None.\n",
1096 bond->primary_slave = NULL;
1097 bond_select_active_slave(bond);
1099 printk(KERN_INFO DRV_NAME
1100 ": %s: Unable to set %.*s as primary slave as it is not a slave.\n",
1101 bond->dev->name, (int)strlen(buf) - 1, buf);
1105 write_unlock_bh(&bond->lock);
1108 static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR, bonding_show_primary, bonding_store_primary);
1111 * Show and set the use_carrier flag.
1113 static ssize_t bonding_show_carrier(struct device *d,
1114 struct device_attribute *attr,
1117 struct bonding *bond = to_bond(d);
1119 return sprintf(buf, "%d\n", bond->params.use_carrier) + 1;
1122 static ssize_t bonding_store_carrier(struct device *d,
1123 struct device_attribute *attr,
1124 const char *buf, size_t count)
1126 int new_value, ret = count;
1127 struct bonding *bond = to_bond(d);
1130 if (sscanf(buf, "%d", &new_value) != 1) {
1131 printk(KERN_ERR DRV_NAME
1132 ": %s: no use_carrier value specified.\n",
1137 if ((new_value == 0) || (new_value == 1)) {
1138 bond->params.use_carrier = new_value;
1139 printk(KERN_INFO DRV_NAME ": %s: Setting use_carrier to %d.\n",
1140 bond->dev->name, new_value);
1142 printk(KERN_INFO DRV_NAME
1143 ": %s: Ignoring invalid use_carrier value %d.\n",
1144 bond->dev->name, new_value);
1149 static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR, bonding_show_carrier, bonding_store_carrier);
1153 * Show and set currently active_slave.
1155 static ssize_t bonding_show_active_slave(struct device *d,
1156 struct device_attribute *attr,
1160 struct bonding *bond = to_bond(d);
1164 read_lock(&bond->curr_slave_lock);
1165 curr = bond->curr_active_slave;
1166 read_unlock(&bond->curr_slave_lock);
1168 if (USES_PRIMARY(bond->params.mode) && curr)
1169 count = sprintf(buf, "%s\n", curr->dev->name) + 1;
1171 count = sprintf(buf, "\n") + 1;
1175 static ssize_t bonding_store_active_slave(struct device *d,
1176 struct device_attribute *attr,
1177 const char *buf, size_t count)
1180 struct slave *slave;
1181 struct slave *old_active = NULL;
1182 struct slave *new_active = NULL;
1183 struct bonding *bond = to_bond(d);
1185 write_lock_bh(&bond->lock);
1186 if (!USES_PRIMARY(bond->params.mode)) {
1187 printk(KERN_INFO DRV_NAME
1188 ": %s: Unable to change active slave; %s is in mode %d\n",
1189 bond->dev->name, bond->dev->name, bond->params.mode);
1191 bond_for_each_slave(bond, slave, i) {
1193 (slave->dev->name, buf,
1194 strlen(slave->dev->name)) == 0) {
1195 old_active = bond->curr_active_slave;
1197 if (new_active == old_active) {
1199 printk(KERN_INFO DRV_NAME
1200 ": %s: %s is already the current active slave.\n",
1201 bond->dev->name, slave->dev->name);
1207 (new_active->link == BOND_LINK_UP) &&
1208 IS_UP(new_active->dev)) {
1209 printk(KERN_INFO DRV_NAME
1210 ": %s: Setting %s as active slave.\n",
1211 bond->dev->name, slave->dev->name);
1212 bond_change_active_slave(bond, new_active);
1215 printk(KERN_INFO DRV_NAME
1216 ": %s: Could not set %s as active slave; "
1217 "either %s is down or the link is down.\n",
1218 bond->dev->name, slave->dev->name,
1226 /* if we got here, then we didn't match the name of any slave */
1228 if (strlen(buf) == 0 || buf[0] == '\n') {
1229 printk(KERN_INFO DRV_NAME
1230 ": %s: Setting active slave to None.\n",
1232 bond->primary_slave = NULL;
1233 bond_select_active_slave(bond);
1235 printk(KERN_INFO DRV_NAME
1236 ": %s: Unable to set %.*s as active slave as it is not a slave.\n",
1237 bond->dev->name, (int)strlen(buf) - 1, buf);
1241 write_unlock_bh(&bond->lock);
1245 static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR, bonding_show_active_slave, bonding_store_active_slave);
1249 * Show link status of the bond interface.
1251 static ssize_t bonding_show_mii_status(struct device *d,
1252 struct device_attribute *attr,
1256 struct bonding *bond = to_bond(d);
1258 read_lock(&bond->curr_slave_lock);
1259 curr = bond->curr_active_slave;
1260 read_unlock(&bond->curr_slave_lock);
1262 return sprintf(buf, "%s\n", (curr) ? "up" : "down") + 1;
1264 static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
1268 * Show current 802.3ad aggregator ID.
1270 static ssize_t bonding_show_ad_aggregator(struct device *d,
1271 struct device_attribute *attr,
1275 struct bonding *bond = to_bond(d);
1277 if (bond->params.mode == BOND_MODE_8023AD) {
1278 struct ad_info ad_info;
1279 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0 : ad_info.aggregator_id) + 1;
1282 count = sprintf(buf, "\n") + 1;
1286 static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
1290 * Show number of active 802.3ad ports.
1292 static ssize_t bonding_show_ad_num_ports(struct device *d,
1293 struct device_attribute *attr,
1297 struct bonding *bond = to_bond(d);
1299 if (bond->params.mode == BOND_MODE_8023AD) {
1300 struct ad_info ad_info;
1301 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0: ad_info.ports) + 1;
1304 count = sprintf(buf, "\n") + 1;
1308 static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
1312 * Show current 802.3ad actor key.
1314 static ssize_t bonding_show_ad_actor_key(struct device *d,
1315 struct device_attribute *attr,
1319 struct bonding *bond = to_bond(d);
1321 if (bond->params.mode == BOND_MODE_8023AD) {
1322 struct ad_info ad_info;
1323 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0 : ad_info.actor_key) + 1;
1326 count = sprintf(buf, "\n") + 1;
1330 static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
1334 * Show current 802.3ad partner key.
1336 static ssize_t bonding_show_ad_partner_key(struct device *d,
1337 struct device_attribute *attr,
1341 struct bonding *bond = to_bond(d);
1343 if (bond->params.mode == BOND_MODE_8023AD) {
1344 struct ad_info ad_info;
1345 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0 : ad_info.partner_key) + 1;
1348 count = sprintf(buf, "\n") + 1;
1352 static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
1356 * Show current 802.3ad partner mac.
1358 static ssize_t bonding_show_ad_partner_mac(struct device *d,
1359 struct device_attribute *attr,
1363 struct bonding *bond = to_bond(d);
1365 if (bond->params.mode == BOND_MODE_8023AD) {
1366 struct ad_info ad_info;
1367 if (!bond_3ad_get_active_agg_info(bond, &ad_info)) {
1368 count = sprintf(buf,"%02x:%02x:%02x:%02x:%02x:%02x\n",
1369 ad_info.partner_system[0],
1370 ad_info.partner_system[1],
1371 ad_info.partner_system[2],
1372 ad_info.partner_system[3],
1373 ad_info.partner_system[4],
1374 ad_info.partner_system[5]) + 1;
1378 count = sprintf(buf, "\n") + 1;
1382 static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
1386 static struct attribute *per_bond_attrs[] = {
1387 &dev_attr_slaves.attr,
1388 &dev_attr_mode.attr,
1389 &dev_attr_arp_validate.attr,
1390 &dev_attr_arp_interval.attr,
1391 &dev_attr_arp_ip_target.attr,
1392 &dev_attr_downdelay.attr,
1393 &dev_attr_updelay.attr,
1394 &dev_attr_lacp_rate.attr,
1395 &dev_attr_xmit_hash_policy.attr,
1396 &dev_attr_miimon.attr,
1397 &dev_attr_primary.attr,
1398 &dev_attr_use_carrier.attr,
1399 &dev_attr_active_slave.attr,
1400 &dev_attr_mii_status.attr,
1401 &dev_attr_ad_aggregator.attr,
1402 &dev_attr_ad_num_ports.attr,
1403 &dev_attr_ad_actor_key.attr,
1404 &dev_attr_ad_partner_key.attr,
1405 &dev_attr_ad_partner_mac.attr,
1409 static struct attribute_group bonding_group = {
1411 .attrs = per_bond_attrs,
1415 * Initialize sysfs. This sets up the bonding_masters file in
1418 int bond_create_sysfs(void)
1421 struct bonding *firstbond;
1423 init_rwsem(&bonding_rwsem);
1425 /* get the netdev class pointer */
1426 firstbond = container_of(bond_dev_list.next, struct bonding, bond_list);
1430 netdev_class = firstbond->dev->dev.class;
1434 ret = class_create_file(netdev_class, &class_attr_bonding_masters);
1436 * Permit multiple loads of the module by ignoring failures to
1437 * create the bonding_masters sysfs file. Bonding devices
1438 * created by second or subsequent loads of the module will
1439 * not be listed in, or controllable by, bonding_masters, but
1440 * will have the usual "bonding" sysfs directory.
1442 * This is done to preserve backwards compatibility for
1443 * initscripts/sysconfig, which load bonding multiple times to
1444 * configure multiple bonding devices.
1446 if (ret == -EEXIST) {
1447 netdev_class = NULL;
1456 * Remove /sys/class/net/bonding_masters.
1458 void bond_destroy_sysfs(void)
1461 class_remove_file(netdev_class, &class_attr_bonding_masters);
1465 * Initialize sysfs for each bond. This sets up and registers
1466 * the 'bondctl' directory for each individual bond under /sys/class/net.
1468 int bond_create_sysfs_entry(struct bonding *bond)
1470 struct net_device *dev = bond->dev;
1473 err = sysfs_create_group(&(dev->dev.kobj), &bonding_group);
1475 printk(KERN_EMERG "eek! didn't create group!\n");
1478 if (expected_refcount < 1)
1479 expected_refcount = atomic_read(&bond->dev->dev.kobj.kref.refcount);
1484 * Remove sysfs entries for each bond.
1486 void bond_destroy_sysfs_entry(struct bonding *bond)
1488 struct net_device *dev = bond->dev;
1490 sysfs_remove_group(&(dev->dev.kobj), &bonding_group);