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/ctype.h>
35 #include <linux/inet.h>
36 #include <linux/rtnetlink.h>
37 #include <net/net_namespace.h>
41 #define to_dev(obj) container_of(obj,struct device,kobj)
42 #define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
44 /*---------------------------- Declarations -------------------------------*/
46 static int expected_refcount = -1;
47 /*--------------------------- Data Structures -----------------------------*/
49 /* Bonding sysfs lock. Why can't we just use the subsystem lock?
50 * Because kobject_register tries to acquire the subsystem lock. If
51 * we already hold the lock (which we would if the user was creating
52 * a new bond through the sysfs interface), we deadlock.
53 * This lock is only needed when deleting a bond - we need to make sure
54 * that we don't collide with an ongoing ioctl.
57 struct rw_semaphore bonding_rwsem;
62 /*------------------------------ Functions --------------------------------*/
65 * "show" function for the bond_masters attribute.
66 * The class parameter is ignored.
68 static ssize_t bonding_show_bonds(struct class *cls, char *buf)
73 down_read(&(bonding_rwsem));
75 list_for_each_entry(bond, &bond_dev_list, bond_list) {
76 if (res > (PAGE_SIZE - IFNAMSIZ)) {
77 /* not enough space for another interface name */
78 if ((PAGE_SIZE - res) > 10)
80 res += sprintf(buf + res, "++more++ ");
83 res += sprintf(buf + res, "%s ", bond->dev->name);
86 buf[res-1] = '\n'; /* eat the leftover space */
87 up_read(&(bonding_rwsem));
92 * "store" function for the bond_masters attribute. This is what
93 * creates and deletes entire bonds.
95 * The class parameter is ignored.
99 static ssize_t bonding_store_bonds(struct class *cls, const char *buffer, size_t count)
101 char command[IFNAMSIZ + 1] = {0, };
104 struct bonding *bond;
106 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
107 ifname = command + 1;
108 if ((strlen(command) <= 1) ||
109 !dev_valid_name(ifname))
112 if (command[0] == '+') {
113 printk(KERN_INFO DRV_NAME
114 ": %s is being created...\n", ifname);
115 rv = bond_create(ifname, &bonding_defaults);
117 printk(KERN_INFO DRV_NAME ": Bond creation failed.\n");
123 if (command[0] == '-') {
125 down_write(&bonding_rwsem);
127 list_for_each_entry(bond, &bond_dev_list, bond_list)
128 if (strnicmp(bond->dev->name, ifname, IFNAMSIZ) == 0) {
129 /* check the ref count on the bond's kobject.
130 * If it's > expected, then there's a file open,
131 * and we have to fail.
133 if (atomic_read(&bond->dev->dev.kobj.kref.refcount)
134 > expected_refcount){
135 printk(KERN_INFO DRV_NAME
136 ": Unable remove bond %s due to open references.\n",
141 printk(KERN_INFO DRV_NAME
142 ": %s is being deleted...\n",
148 printk(KERN_ERR DRV_NAME
149 ": unable to delete non-existent bond %s\n", ifname);
155 printk(KERN_ERR DRV_NAME
156 ": no command found in bonding_masters. Use +ifname or -ifname.\n");
160 up_write(&bonding_rwsem);
163 /* Always return either count or an error. If you return 0, you'll
164 * get called forever, which is bad.
169 /* class attribute for bond_masters file. This ends up in /sys/class/net */
170 static CLASS_ATTR(bonding_masters, S_IWUSR | S_IRUGO,
171 bonding_show_bonds, bonding_store_bonds);
173 int bond_create_slave_symlinks(struct net_device *master, struct net_device *slave)
175 char linkname[IFNAMSIZ+7];
178 /* first, create a link from the slave back to the master */
179 ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj),
183 /* next, create a link from the master to the slave */
184 sprintf(linkname,"slave_%s",slave->name);
185 ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj),
191 void bond_destroy_slave_symlinks(struct net_device *master, struct net_device *slave)
193 char linkname[IFNAMSIZ+7];
195 sysfs_remove_link(&(slave->dev.kobj), "master");
196 sprintf(linkname,"slave_%s",slave->name);
197 sysfs_remove_link(&(master->dev.kobj), linkname);
202 * Show the slaves in the current bond.
204 static ssize_t bonding_show_slaves(struct device *d,
205 struct device_attribute *attr, char *buf)
209 struct bonding *bond = to_bond(d);
211 read_lock(&bond->lock);
212 bond_for_each_slave(bond, slave, i) {
213 if (res > (PAGE_SIZE - IFNAMSIZ)) {
214 /* not enough space for another interface name */
215 if ((PAGE_SIZE - res) > 10)
216 res = PAGE_SIZE - 10;
217 res += sprintf(buf + res, "++more++ ");
220 res += sprintf(buf + res, "%s ", slave->dev->name);
222 read_unlock(&bond->lock);
224 buf[res-1] = '\n'; /* eat the leftover space */
229 * Set the slaves in the current bond. The bond interface must be
230 * up for this to succeed.
231 * This function is largely the same flow as bonding_update_bonds().
233 static ssize_t bonding_store_slaves(struct device *d,
234 struct device_attribute *attr,
235 const char *buffer, size_t count)
237 char command[IFNAMSIZ + 1] = { 0, };
239 int i, res, found, ret = count;
242 struct net_device *dev = NULL;
243 struct bonding *bond = to_bond(d);
245 /* Quick sanity check -- is the bond interface up? */
246 if (!(bond->dev->flags & IFF_UP)) {
247 printk(KERN_WARNING DRV_NAME
248 ": %s: doing slave updates when interface is down.\n",
252 /* Note: We can't hold bond->lock here, as bond_create grabs it. */
255 down_write(&(bonding_rwsem));
257 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
258 ifname = command + 1;
259 if ((strlen(command) <= 1) ||
260 !dev_valid_name(ifname))
263 if (command[0] == '+') {
265 /* Got a slave name in ifname. Is it already in the list? */
267 read_lock(&bond->lock);
268 bond_for_each_slave(bond, slave, i)
269 if (strnicmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
270 printk(KERN_ERR DRV_NAME
271 ": %s: Interface %s is already enslaved!\n",
272 bond->dev->name, ifname);
274 read_unlock(&bond->lock);
278 read_unlock(&bond->lock);
279 printk(KERN_INFO DRV_NAME ": %s: Adding slave %s.\n",
280 bond->dev->name, ifname);
281 dev = dev_get_by_name(&init_net, ifname);
283 printk(KERN_INFO DRV_NAME
284 ": %s: Interface %s does not exist!\n",
285 bond->dev->name, ifname);
292 if (dev->flags & IFF_UP) {
293 printk(KERN_ERR DRV_NAME
294 ": %s: Error: Unable to enslave %s "
295 "because it is already up.\n",
296 bond->dev->name, dev->name);
300 /* If this is the first slave, then we need to set
301 the master's hardware address to be the same as the
303 if (!(*((u32 *) & (bond->dev->dev_addr[0])))) {
304 memcpy(bond->dev->dev_addr, dev->dev_addr,
308 /* Set the slave's MTU to match the bond */
309 original_mtu = dev->mtu;
310 res = dev_set_mtu(dev, bond->dev->mtu);
316 res = bond_enslave(bond->dev, dev);
317 bond_for_each_slave(bond, slave, i)
318 if (strnicmp(slave->dev->name, ifname, IFNAMSIZ) == 0)
319 slave->original_mtu = original_mtu;
326 if (command[0] == '-') {
329 bond_for_each_slave(bond, slave, i)
330 if (strnicmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
332 original_mtu = slave->original_mtu;
336 printk(KERN_INFO DRV_NAME ": %s: Removing slave %s\n",
337 bond->dev->name, dev->name);
338 res = bond_release(bond->dev, dev);
343 /* set the slave MTU to the default */
344 dev_set_mtu(dev, original_mtu);
347 printk(KERN_ERR DRV_NAME ": unable to remove non-existent slave %s for bond %s.\n",
348 ifname, bond->dev->name);
355 printk(KERN_ERR DRV_NAME ": no command found in slaves file for bond %s. Use +ifname or -ifname.\n", bond->dev->name);
359 up_write(&(bonding_rwsem));
364 static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves, bonding_store_slaves);
367 * Show and set the bonding mode. The bond interface must be down to
370 static ssize_t bonding_show_mode(struct device *d,
371 struct device_attribute *attr, char *buf)
373 struct bonding *bond = to_bond(d);
375 return sprintf(buf, "%s %d\n",
376 bond_mode_tbl[bond->params.mode].modename,
380 static ssize_t bonding_store_mode(struct device *d,
381 struct device_attribute *attr,
382 const char *buf, size_t count)
384 int new_value, ret = count;
385 struct bonding *bond = to_bond(d);
387 if (bond->dev->flags & IFF_UP) {
388 printk(KERN_ERR DRV_NAME
389 ": unable to update mode of %s because interface is up.\n",
395 new_value = bond_parse_parm(buf, bond_mode_tbl);
397 printk(KERN_ERR DRV_NAME
398 ": %s: Ignoring invalid mode value %.*s.\n",
400 (int)strlen(buf) - 1, buf);
404 if (bond->params.mode == BOND_MODE_8023AD)
405 bond_unset_master_3ad_flags(bond);
407 if (bond->params.mode == BOND_MODE_ALB)
408 bond_unset_master_alb_flags(bond);
410 bond->params.mode = new_value;
411 bond_set_mode_ops(bond, bond->params.mode);
412 printk(KERN_INFO DRV_NAME ": %s: setting mode to %s (%d).\n",
413 bond->dev->name, bond_mode_tbl[new_value].modename, new_value);
418 static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, bonding_show_mode, bonding_store_mode);
421 * Show and set the bonding transmit hash method. The bond interface must be down to
422 * change the xmit hash policy.
424 static ssize_t bonding_show_xmit_hash(struct device *d,
425 struct device_attribute *attr,
428 struct bonding *bond = to_bond(d);
430 return sprintf(buf, "%s %d\n",
431 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
432 bond->params.xmit_policy);
435 static ssize_t bonding_store_xmit_hash(struct device *d,
436 struct device_attribute *attr,
437 const char *buf, size_t count)
439 int new_value, ret = count;
440 struct bonding *bond = to_bond(d);
442 if (bond->dev->flags & IFF_UP) {
443 printk(KERN_ERR DRV_NAME
444 "%s: Interface is up. Unable to update xmit policy.\n",
450 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
452 printk(KERN_ERR DRV_NAME
453 ": %s: Ignoring invalid xmit hash policy value %.*s.\n",
455 (int)strlen(buf) - 1, buf);
459 bond->params.xmit_policy = new_value;
460 bond_set_mode_ops(bond, bond->params.mode);
461 printk(KERN_INFO DRV_NAME ": %s: setting xmit hash policy to %s (%d).\n",
462 bond->dev->name, xmit_hashtype_tbl[new_value].modename, new_value);
467 static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR, bonding_show_xmit_hash, bonding_store_xmit_hash);
470 * Show and set arp_validate.
472 static ssize_t bonding_show_arp_validate(struct device *d,
473 struct device_attribute *attr,
476 struct bonding *bond = to_bond(d);
478 return sprintf(buf, "%s %d\n",
479 arp_validate_tbl[bond->params.arp_validate].modename,
480 bond->params.arp_validate);
483 static ssize_t bonding_store_arp_validate(struct device *d,
484 struct device_attribute *attr,
485 const char *buf, size_t count)
488 struct bonding *bond = to_bond(d);
490 new_value = bond_parse_parm(buf, arp_validate_tbl);
492 printk(KERN_ERR DRV_NAME
493 ": %s: Ignoring invalid arp_validate value %s\n",
494 bond->dev->name, buf);
497 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
498 printk(KERN_ERR DRV_NAME
499 ": %s: arp_validate only supported in active-backup mode.\n",
503 printk(KERN_INFO DRV_NAME ": %s: setting arp_validate to %s (%d).\n",
504 bond->dev->name, arp_validate_tbl[new_value].modename,
507 if (!bond->params.arp_validate && new_value) {
508 bond_register_arp(bond);
509 } else if (bond->params.arp_validate && !new_value) {
510 bond_unregister_arp(bond);
513 bond->params.arp_validate = new_value;
518 static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate, bonding_store_arp_validate);
521 * Show and store fail_over_mac. User only allowed to change the
522 * value when there are no slaves.
524 static ssize_t bonding_show_fail_over_mac(struct device *d, struct device_attribute *attr, char *buf)
526 struct bonding *bond = to_bond(d);
528 return sprintf(buf, "%s %d\n",
529 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
530 bond->params.fail_over_mac);
533 static ssize_t bonding_store_fail_over_mac(struct device *d, struct device_attribute *attr, const char *buf, size_t count)
536 struct bonding *bond = to_bond(d);
538 if (bond->slave_cnt != 0) {
539 printk(KERN_ERR DRV_NAME
540 ": %s: Can't alter fail_over_mac with slaves in bond.\n",
545 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
547 printk(KERN_ERR DRV_NAME
548 ": %s: Ignoring invalid fail_over_mac value %s.\n",
549 bond->dev->name, buf);
553 bond->params.fail_over_mac = new_value;
554 printk(KERN_INFO DRV_NAME ": %s: Setting fail_over_mac to %s (%d).\n",
555 bond->dev->name, fail_over_mac_tbl[new_value].modename,
561 static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR, bonding_show_fail_over_mac, bonding_store_fail_over_mac);
564 * Show and set the arp timer interval. There are two tricky bits
565 * here. First, if ARP monitoring is activated, then we must disable
566 * MII monitoring. Second, if the ARP timer isn't running, we must
569 static ssize_t bonding_show_arp_interval(struct device *d,
570 struct device_attribute *attr,
573 struct bonding *bond = to_bond(d);
575 return sprintf(buf, "%d\n", bond->params.arp_interval);
578 static ssize_t bonding_store_arp_interval(struct device *d,
579 struct device_attribute *attr,
580 const char *buf, size_t count)
582 int new_value, ret = count;
583 struct bonding *bond = to_bond(d);
585 if (sscanf(buf, "%d", &new_value) != 1) {
586 printk(KERN_ERR DRV_NAME
587 ": %s: no arp_interval value specified.\n",
593 printk(KERN_ERR DRV_NAME
594 ": %s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
595 bond->dev->name, new_value, INT_MAX);
600 printk(KERN_INFO DRV_NAME
601 ": %s: Setting ARP monitoring interval to %d.\n",
602 bond->dev->name, new_value);
603 bond->params.arp_interval = new_value;
604 if (bond->params.arp_interval)
605 bond->dev->priv_flags |= IFF_MASTER_ARPMON;
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 if (delayed_work_pending(&bond->mii_work)) {
613 cancel_delayed_work(&bond->mii_work);
614 flush_workqueue(bond->wq);
617 if (!bond->params.arp_targets[0]) {
618 printk(KERN_INFO DRV_NAME
619 ": %s: ARP monitoring has been set up, "
620 "but no ARP targets have been specified.\n",
623 if (bond->dev->flags & IFF_UP) {
624 /* If the interface is up, we may need to fire off
625 * the ARP timer. If the interface is down, the
626 * timer will get fired off when the open function
629 if (!delayed_work_pending(&bond->arp_work)) {
630 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
631 INIT_DELAYED_WORK(&bond->arp_work,
632 bond_activebackup_arp_mon);
634 INIT_DELAYED_WORK(&bond->arp_work,
635 bond_loadbalance_arp_mon);
637 queue_delayed_work(bond->wq, &bond->arp_work, 0);
644 static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR , bonding_show_arp_interval, bonding_store_arp_interval);
647 * Show and set the arp targets.
649 static ssize_t bonding_show_arp_targets(struct device *d,
650 struct device_attribute *attr,
654 struct bonding *bond = to_bond(d);
656 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
657 if (bond->params.arp_targets[i])
658 res += sprintf(buf + res, "%pI4 ",
659 &bond->params.arp_targets[i]);
662 buf[res-1] = '\n'; /* eat the leftover space */
666 static ssize_t bonding_store_arp_targets(struct device *d,
667 struct device_attribute *attr,
668 const char *buf, size_t count)
671 int i = 0, done = 0, ret = count;
672 struct bonding *bond = to_bond(d);
675 targets = bond->params.arp_targets;
676 newtarget = in_aton(buf + 1);
679 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
680 printk(KERN_ERR DRV_NAME
681 ": %s: invalid ARP target %pI4 specified for addition\n",
682 bond->dev->name, &newtarget);
686 /* look for an empty slot to put the target in, and check for dupes */
687 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
688 if (targets[i] == newtarget) { /* duplicate */
689 printk(KERN_ERR DRV_NAME
690 ": %s: ARP target %pI4 is already present\n",
691 bond->dev->name, &newtarget);
697 if (targets[i] == 0 && !done) {
698 printk(KERN_INFO DRV_NAME
699 ": %s: adding ARP target %pI4.\n",
700 bond->dev->name, &newtarget);
702 targets[i] = newtarget;
706 printk(KERN_ERR DRV_NAME
707 ": %s: ARP target table is full!\n",
714 else if (buf[0] == '-') {
715 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
716 printk(KERN_ERR DRV_NAME
717 ": %s: invalid ARP target %pI4 specified for removal\n",
718 bond->dev->name, &newtarget);
723 for (i = 0; (i < BOND_MAX_ARP_TARGETS); i++) {
724 if (targets[i] == newtarget) {
725 printk(KERN_INFO DRV_NAME
726 ": %s: removing ARP target %pI4.\n",
727 bond->dev->name, &newtarget);
733 printk(KERN_INFO DRV_NAME
734 ": %s: unable to remove nonexistent ARP target %pI4.\n",
735 bond->dev->name, &newtarget);
741 printk(KERN_ERR DRV_NAME ": no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
750 static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
753 * Show and set the up and down delays. These must be multiples of the
754 * MII monitoring value, and are stored internally as the multiplier.
755 * Thus, we must translate to MS for the real world.
757 static ssize_t bonding_show_downdelay(struct device *d,
758 struct device_attribute *attr,
761 struct bonding *bond = to_bond(d);
763 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
766 static ssize_t bonding_store_downdelay(struct device *d,
767 struct device_attribute *attr,
768 const char *buf, size_t count)
770 int new_value, ret = count;
771 struct bonding *bond = to_bond(d);
773 if (!(bond->params.miimon)) {
774 printk(KERN_ERR DRV_NAME
775 ": %s: Unable to set down delay as MII monitoring is disabled\n",
781 if (sscanf(buf, "%d", &new_value) != 1) {
782 printk(KERN_ERR DRV_NAME
783 ": %s: no down delay value specified.\n",
789 printk(KERN_ERR DRV_NAME
790 ": %s: Invalid down delay value %d not in range %d-%d; rejected.\n",
791 bond->dev->name, new_value, 1, INT_MAX);
795 if ((new_value % bond->params.miimon) != 0) {
796 printk(KERN_WARNING DRV_NAME
797 ": %s: Warning: down delay (%d) is not a multiple "
798 "of miimon (%d), delay rounded to %d ms\n",
799 bond->dev->name, new_value, bond->params.miimon,
800 (new_value / bond->params.miimon) *
801 bond->params.miimon);
803 bond->params.downdelay = new_value / bond->params.miimon;
804 printk(KERN_INFO DRV_NAME ": %s: Setting down delay to %d.\n",
805 bond->dev->name, bond->params.downdelay * bond->params.miimon);
812 static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR , bonding_show_downdelay, bonding_store_downdelay);
814 static ssize_t bonding_show_updelay(struct device *d,
815 struct device_attribute *attr,
818 struct bonding *bond = to_bond(d);
820 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
824 static ssize_t bonding_store_updelay(struct device *d,
825 struct device_attribute *attr,
826 const char *buf, size_t count)
828 int new_value, ret = count;
829 struct bonding *bond = to_bond(d);
831 if (!(bond->params.miimon)) {
832 printk(KERN_ERR DRV_NAME
833 ": %s: Unable to set up delay as MII monitoring is disabled\n",
839 if (sscanf(buf, "%d", &new_value) != 1) {
840 printk(KERN_ERR DRV_NAME
841 ": %s: no up delay value specified.\n",
847 printk(KERN_ERR DRV_NAME
848 ": %s: Invalid down delay value %d not in range %d-%d; rejected.\n",
849 bond->dev->name, new_value, 1, INT_MAX);
853 if ((new_value % bond->params.miimon) != 0) {
854 printk(KERN_WARNING DRV_NAME
855 ": %s: Warning: up delay (%d) is not a multiple "
856 "of miimon (%d), updelay rounded to %d ms\n",
857 bond->dev->name, new_value, bond->params.miimon,
858 (new_value / bond->params.miimon) *
859 bond->params.miimon);
861 bond->params.updelay = new_value / bond->params.miimon;
862 printk(KERN_INFO DRV_NAME ": %s: Setting up delay to %d.\n",
863 bond->dev->name, bond->params.updelay * bond->params.miimon);
870 static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR , bonding_show_updelay, bonding_store_updelay);
873 * Show and set the LACP interval. Interface must be down, and the mode
874 * must be set to 802.3ad mode.
876 static ssize_t bonding_show_lacp(struct device *d,
877 struct device_attribute *attr,
880 struct bonding *bond = to_bond(d);
882 return sprintf(buf, "%s %d\n",
883 bond_lacp_tbl[bond->params.lacp_fast].modename,
884 bond->params.lacp_fast);
887 static ssize_t bonding_store_lacp(struct device *d,
888 struct device_attribute *attr,
889 const char *buf, size_t count)
891 int new_value, ret = count;
892 struct bonding *bond = to_bond(d);
894 if (bond->dev->flags & IFF_UP) {
895 printk(KERN_ERR DRV_NAME
896 ": %s: Unable to update LACP rate because interface is up.\n",
902 if (bond->params.mode != BOND_MODE_8023AD) {
903 printk(KERN_ERR DRV_NAME
904 ": %s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
910 new_value = bond_parse_parm(buf, bond_lacp_tbl);
912 if ((new_value == 1) || (new_value == 0)) {
913 bond->params.lacp_fast = new_value;
914 printk(KERN_INFO DRV_NAME
915 ": %s: Setting LACP rate to %s (%d).\n",
916 bond->dev->name, bond_lacp_tbl[new_value].modename, new_value);
918 printk(KERN_ERR DRV_NAME
919 ": %s: Ignoring invalid LACP rate value %.*s.\n",
920 bond->dev->name, (int)strlen(buf) - 1, buf);
926 static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR, bonding_show_lacp, bonding_store_lacp);
928 static ssize_t bonding_show_ad_select(struct device *d,
929 struct device_attribute *attr,
932 struct bonding *bond = to_bond(d);
934 return sprintf(buf, "%s %d\n",
935 ad_select_tbl[bond->params.ad_select].modename,
936 bond->params.ad_select);
940 static ssize_t bonding_store_ad_select(struct device *d,
941 struct device_attribute *attr,
942 const char *buf, size_t count)
944 int new_value, ret = count;
945 struct bonding *bond = to_bond(d);
947 if (bond->dev->flags & IFF_UP) {
948 printk(KERN_ERR DRV_NAME
949 ": %s: Unable to update ad_select because interface "
950 "is up.\n", bond->dev->name);
955 new_value = bond_parse_parm(buf, ad_select_tbl);
957 if (new_value != -1) {
958 bond->params.ad_select = new_value;
959 printk(KERN_INFO DRV_NAME
960 ": %s: Setting ad_select to %s (%d).\n",
961 bond->dev->name, ad_select_tbl[new_value].modename,
964 printk(KERN_ERR DRV_NAME
965 ": %s: Ignoring invalid ad_select value %.*s.\n",
966 bond->dev->name, (int)strlen(buf) - 1, buf);
973 static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR, bonding_show_ad_select, bonding_store_ad_select);
976 * Show and set the number of grat ARP to send after a failover event.
978 static ssize_t bonding_show_n_grat_arp(struct device *d,
979 struct device_attribute *attr,
982 struct bonding *bond = to_bond(d);
984 return sprintf(buf, "%d\n", bond->params.num_grat_arp);
987 static ssize_t bonding_store_n_grat_arp(struct device *d,
988 struct device_attribute *attr,
989 const char *buf, size_t count)
991 int new_value, ret = count;
992 struct bonding *bond = to_bond(d);
994 if (sscanf(buf, "%d", &new_value) != 1) {
995 printk(KERN_ERR DRV_NAME
996 ": %s: no num_grat_arp value specified.\n",
1001 if (new_value < 0 || new_value > 255) {
1002 printk(KERN_ERR DRV_NAME
1003 ": %s: Invalid num_grat_arp value %d not in range 0-255; rejected.\n",
1004 bond->dev->name, new_value);
1008 bond->params.num_grat_arp = new_value;
1013 static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR, bonding_show_n_grat_arp, bonding_store_n_grat_arp);
1016 * Show and set the number of unsolicted NA's to send after a failover event.
1018 static ssize_t bonding_show_n_unsol_na(struct device *d,
1019 struct device_attribute *attr,
1022 struct bonding *bond = to_bond(d);
1024 return sprintf(buf, "%d\n", bond->params.num_unsol_na);
1027 static ssize_t bonding_store_n_unsol_na(struct device *d,
1028 struct device_attribute *attr,
1029 const char *buf, size_t count)
1031 int new_value, ret = count;
1032 struct bonding *bond = to_bond(d);
1034 if (sscanf(buf, "%d", &new_value) != 1) {
1035 printk(KERN_ERR DRV_NAME
1036 ": %s: no num_unsol_na value specified.\n",
1041 if (new_value < 0 || new_value > 255) {
1042 printk(KERN_ERR DRV_NAME
1043 ": %s: Invalid num_unsol_na value %d not in range 0-255; rejected.\n",
1044 bond->dev->name, new_value);
1048 bond->params.num_unsol_na = new_value;
1053 static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR, bonding_show_n_unsol_na, bonding_store_n_unsol_na);
1056 * Show and set the MII monitor interval. There are two tricky bits
1057 * here. First, if MII monitoring is activated, then we must disable
1058 * ARP monitoring. Second, if the timer isn't running, we must
1061 static ssize_t bonding_show_miimon(struct device *d,
1062 struct device_attribute *attr,
1065 struct bonding *bond = to_bond(d);
1067 return sprintf(buf, "%d\n", bond->params.miimon);
1070 static ssize_t bonding_store_miimon(struct device *d,
1071 struct device_attribute *attr,
1072 const char *buf, size_t count)
1074 int new_value, ret = count;
1075 struct bonding *bond = to_bond(d);
1077 if (sscanf(buf, "%d", &new_value) != 1) {
1078 printk(KERN_ERR DRV_NAME
1079 ": %s: no miimon value specified.\n",
1084 if (new_value < 0) {
1085 printk(KERN_ERR DRV_NAME
1086 ": %s: Invalid miimon value %d not in range %d-%d; rejected.\n",
1087 bond->dev->name, new_value, 1, INT_MAX);
1091 printk(KERN_INFO DRV_NAME
1092 ": %s: Setting MII monitoring interval to %d.\n",
1093 bond->dev->name, new_value);
1094 bond->params.miimon = new_value;
1095 if(bond->params.updelay)
1096 printk(KERN_INFO DRV_NAME
1097 ": %s: Note: Updating updelay (to %d) "
1098 "since it is a multiple of the miimon value.\n",
1100 bond->params.updelay * bond->params.miimon);
1101 if(bond->params.downdelay)
1102 printk(KERN_INFO DRV_NAME
1103 ": %s: Note: Updating downdelay (to %d) "
1104 "since it is a multiple of the miimon value.\n",
1106 bond->params.downdelay * bond->params.miimon);
1107 if (bond->params.arp_interval) {
1108 printk(KERN_INFO DRV_NAME
1109 ": %s: MII monitoring cannot be used with "
1110 "ARP monitoring. Disabling ARP monitoring...\n",
1112 bond->params.arp_interval = 0;
1113 bond->dev->priv_flags &= ~IFF_MASTER_ARPMON;
1114 if (bond->params.arp_validate) {
1115 bond_unregister_arp(bond);
1116 bond->params.arp_validate =
1117 BOND_ARP_VALIDATE_NONE;
1119 if (delayed_work_pending(&bond->arp_work)) {
1120 cancel_delayed_work(&bond->arp_work);
1121 flush_workqueue(bond->wq);
1125 if (bond->dev->flags & IFF_UP) {
1126 /* If the interface is up, we may need to fire off
1127 * the MII timer. If the interface is down, the
1128 * timer will get fired off when the open function
1131 if (!delayed_work_pending(&bond->mii_work)) {
1132 INIT_DELAYED_WORK(&bond->mii_work,
1134 queue_delayed_work(bond->wq,
1135 &bond->mii_work, 0);
1142 static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR, bonding_show_miimon, bonding_store_miimon);
1145 * Show and set the primary slave. The store function is much
1146 * simpler than bonding_store_slaves function because it only needs to
1147 * handle one interface name.
1148 * The bond must be a mode that supports a primary for this be
1151 static ssize_t bonding_show_primary(struct device *d,
1152 struct device_attribute *attr,
1156 struct bonding *bond = to_bond(d);
1158 if (bond->primary_slave)
1159 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
1164 static ssize_t bonding_store_primary(struct device *d,
1165 struct device_attribute *attr,
1166 const char *buf, size_t count)
1169 struct slave *slave;
1170 struct bonding *bond = to_bond(d);
1173 read_lock(&bond->lock);
1174 write_lock_bh(&bond->curr_slave_lock);
1176 if (!USES_PRIMARY(bond->params.mode)) {
1177 printk(KERN_INFO DRV_NAME
1178 ": %s: Unable to set primary slave; %s is in mode %d\n",
1179 bond->dev->name, bond->dev->name, bond->params.mode);
1181 bond_for_each_slave(bond, slave, i) {
1183 (slave->dev->name, buf,
1184 strlen(slave->dev->name)) == 0) {
1185 printk(KERN_INFO DRV_NAME
1186 ": %s: Setting %s as primary slave.\n",
1187 bond->dev->name, slave->dev->name);
1188 bond->primary_slave = slave;
1189 bond_select_active_slave(bond);
1194 /* if we got here, then we didn't match the name of any slave */
1196 if (strlen(buf) == 0 || buf[0] == '\n') {
1197 printk(KERN_INFO DRV_NAME
1198 ": %s: Setting primary slave to None.\n",
1200 bond->primary_slave = NULL;
1201 bond_select_active_slave(bond);
1203 printk(KERN_INFO DRV_NAME
1204 ": %s: Unable to set %.*s as primary slave as it is not a slave.\n",
1205 bond->dev->name, (int)strlen(buf) - 1, buf);
1209 write_unlock_bh(&bond->curr_slave_lock);
1210 read_unlock(&bond->lock);
1215 static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR, bonding_show_primary, bonding_store_primary);
1218 * Show and set the use_carrier flag.
1220 static ssize_t bonding_show_carrier(struct device *d,
1221 struct device_attribute *attr,
1224 struct bonding *bond = to_bond(d);
1226 return sprintf(buf, "%d\n", bond->params.use_carrier);
1229 static ssize_t bonding_store_carrier(struct device *d,
1230 struct device_attribute *attr,
1231 const char *buf, size_t count)
1233 int new_value, ret = count;
1234 struct bonding *bond = to_bond(d);
1237 if (sscanf(buf, "%d", &new_value) != 1) {
1238 printk(KERN_ERR DRV_NAME
1239 ": %s: no use_carrier value specified.\n",
1244 if ((new_value == 0) || (new_value == 1)) {
1245 bond->params.use_carrier = new_value;
1246 printk(KERN_INFO DRV_NAME ": %s: Setting use_carrier to %d.\n",
1247 bond->dev->name, new_value);
1249 printk(KERN_INFO DRV_NAME
1250 ": %s: Ignoring invalid use_carrier value %d.\n",
1251 bond->dev->name, new_value);
1256 static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR, bonding_show_carrier, bonding_store_carrier);
1260 * Show and set currently active_slave.
1262 static ssize_t bonding_show_active_slave(struct device *d,
1263 struct device_attribute *attr,
1267 struct bonding *bond = to_bond(d);
1270 read_lock(&bond->curr_slave_lock);
1271 curr = bond->curr_active_slave;
1272 read_unlock(&bond->curr_slave_lock);
1274 if (USES_PRIMARY(bond->params.mode) && curr)
1275 count = sprintf(buf, "%s\n", curr->dev->name);
1279 static ssize_t bonding_store_active_slave(struct device *d,
1280 struct device_attribute *attr,
1281 const char *buf, size_t count)
1284 struct slave *slave;
1285 struct slave *old_active = NULL;
1286 struct slave *new_active = NULL;
1287 struct bonding *bond = to_bond(d);
1290 read_lock(&bond->lock);
1291 write_lock_bh(&bond->curr_slave_lock);
1293 if (!USES_PRIMARY(bond->params.mode)) {
1294 printk(KERN_INFO DRV_NAME
1295 ": %s: Unable to change active slave; %s is in mode %d\n",
1296 bond->dev->name, bond->dev->name, bond->params.mode);
1298 bond_for_each_slave(bond, slave, i) {
1300 (slave->dev->name, buf,
1301 strlen(slave->dev->name)) == 0) {
1302 old_active = bond->curr_active_slave;
1304 if (new_active == old_active) {
1306 printk(KERN_INFO DRV_NAME
1307 ": %s: %s is already the current active slave.\n",
1308 bond->dev->name, slave->dev->name);
1314 (new_active->link == BOND_LINK_UP) &&
1315 IS_UP(new_active->dev)) {
1316 printk(KERN_INFO DRV_NAME
1317 ": %s: Setting %s as active slave.\n",
1318 bond->dev->name, slave->dev->name);
1319 bond_change_active_slave(bond, new_active);
1322 printk(KERN_INFO DRV_NAME
1323 ": %s: Could not set %s as active slave; "
1324 "either %s is down or the link is down.\n",
1325 bond->dev->name, slave->dev->name,
1333 /* if we got here, then we didn't match the name of any slave */
1335 if (strlen(buf) == 0 || buf[0] == '\n') {
1336 printk(KERN_INFO DRV_NAME
1337 ": %s: Setting active slave to None.\n",
1339 bond->primary_slave = NULL;
1340 bond_select_active_slave(bond);
1342 printk(KERN_INFO DRV_NAME
1343 ": %s: Unable to set %.*s as active slave as it is not a slave.\n",
1344 bond->dev->name, (int)strlen(buf) - 1, buf);
1348 write_unlock_bh(&bond->curr_slave_lock);
1349 read_unlock(&bond->lock);
1355 static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR, bonding_show_active_slave, bonding_store_active_slave);
1359 * Show link status of the bond interface.
1361 static ssize_t bonding_show_mii_status(struct device *d,
1362 struct device_attribute *attr,
1366 struct bonding *bond = to_bond(d);
1368 read_lock(&bond->curr_slave_lock);
1369 curr = bond->curr_active_slave;
1370 read_unlock(&bond->curr_slave_lock);
1372 return sprintf(buf, "%s\n", (curr) ? "up" : "down");
1374 static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
1378 * Show current 802.3ad aggregator ID.
1380 static ssize_t bonding_show_ad_aggregator(struct device *d,
1381 struct device_attribute *attr,
1385 struct bonding *bond = to_bond(d);
1387 if (bond->params.mode == BOND_MODE_8023AD) {
1388 struct ad_info ad_info;
1389 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0 : ad_info.aggregator_id);
1394 static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
1398 * Show number of active 802.3ad ports.
1400 static ssize_t bonding_show_ad_num_ports(struct device *d,
1401 struct device_attribute *attr,
1405 struct bonding *bond = to_bond(d);
1407 if (bond->params.mode == BOND_MODE_8023AD) {
1408 struct ad_info ad_info;
1409 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0: ad_info.ports);
1414 static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
1418 * Show current 802.3ad actor key.
1420 static ssize_t bonding_show_ad_actor_key(struct device *d,
1421 struct device_attribute *attr,
1425 struct bonding *bond = to_bond(d);
1427 if (bond->params.mode == BOND_MODE_8023AD) {
1428 struct ad_info ad_info;
1429 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0 : ad_info.actor_key);
1434 static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
1438 * Show current 802.3ad partner key.
1440 static ssize_t bonding_show_ad_partner_key(struct device *d,
1441 struct device_attribute *attr,
1445 struct bonding *bond = to_bond(d);
1447 if (bond->params.mode == BOND_MODE_8023AD) {
1448 struct ad_info ad_info;
1449 count = sprintf(buf, "%d\n", (bond_3ad_get_active_agg_info(bond, &ad_info)) ? 0 : ad_info.partner_key);
1454 static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
1458 * Show current 802.3ad partner mac.
1460 static ssize_t bonding_show_ad_partner_mac(struct device *d,
1461 struct device_attribute *attr,
1465 struct bonding *bond = to_bond(d);
1467 if (bond->params.mode == BOND_MODE_8023AD) {
1468 struct ad_info ad_info;
1469 if (!bond_3ad_get_active_agg_info(bond, &ad_info)) {
1470 count = sprintf(buf, "%pM\n", ad_info.partner_system);
1476 static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
1480 static struct attribute *per_bond_attrs[] = {
1481 &dev_attr_slaves.attr,
1482 &dev_attr_mode.attr,
1483 &dev_attr_fail_over_mac.attr,
1484 &dev_attr_arp_validate.attr,
1485 &dev_attr_arp_interval.attr,
1486 &dev_attr_arp_ip_target.attr,
1487 &dev_attr_downdelay.attr,
1488 &dev_attr_updelay.attr,
1489 &dev_attr_lacp_rate.attr,
1490 &dev_attr_ad_select.attr,
1491 &dev_attr_xmit_hash_policy.attr,
1492 &dev_attr_num_grat_arp.attr,
1493 &dev_attr_num_unsol_na.attr,
1494 &dev_attr_miimon.attr,
1495 &dev_attr_primary.attr,
1496 &dev_attr_use_carrier.attr,
1497 &dev_attr_active_slave.attr,
1498 &dev_attr_mii_status.attr,
1499 &dev_attr_ad_aggregator.attr,
1500 &dev_attr_ad_num_ports.attr,
1501 &dev_attr_ad_actor_key.attr,
1502 &dev_attr_ad_partner_key.attr,
1503 &dev_attr_ad_partner_mac.attr,
1507 static struct attribute_group bonding_group = {
1509 .attrs = per_bond_attrs,
1513 * Initialize sysfs. This sets up the bonding_masters file in
1516 int bond_create_sysfs(void)
1520 ret = netdev_class_create_file(&class_attr_bonding_masters);
1522 * Permit multiple loads of the module by ignoring failures to
1523 * create the bonding_masters sysfs file. Bonding devices
1524 * created by second or subsequent loads of the module will
1525 * not be listed in, or controllable by, bonding_masters, but
1526 * will have the usual "bonding" sysfs directory.
1528 * This is done to preserve backwards compatibility for
1529 * initscripts/sysconfig, which load bonding multiple times to
1530 * configure multiple bonding devices.
1532 if (ret == -EEXIST) {
1533 /* Is someone being kinky and naming a device bonding_master? */
1534 if (__dev_get_by_name(&init_net,
1535 class_attr_bonding_masters.attr.name))
1537 "network device named %s already exists in sysfs",
1538 class_attr_bonding_masters.attr.name);
1546 * Remove /sys/class/net/bonding_masters.
1548 void bond_destroy_sysfs(void)
1550 netdev_class_remove_file(&class_attr_bonding_masters);
1554 * Initialize sysfs for each bond. This sets up and registers
1555 * the 'bondctl' directory for each individual bond under /sys/class/net.
1557 int bond_create_sysfs_entry(struct bonding *bond)
1559 struct net_device *dev = bond->dev;
1562 err = sysfs_create_group(&(dev->dev.kobj), &bonding_group);
1564 printk(KERN_EMERG "eek! didn't create group!\n");
1567 if (expected_refcount < 1)
1568 expected_refcount = atomic_read(&bond->dev->dev.kobj.kref.refcount);
1573 * Remove sysfs entries for each bond.
1575 void bond_destroy_sysfs_entry(struct bonding *bond)
1577 struct net_device *dev = bond->dev;
1579 sysfs_remove_group(&(dev->dev.kobj), &bonding_group);