Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2004-2005 Intel Corporation. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the |
| 6 | * Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but |
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | * for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along |
| 15 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 21 | */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 22 | |
| 23 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 24 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/module.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 27 | #include <linux/device.h> |
Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 28 | #include <linux/sched.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 29 | #include <linux/fs.h> |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/string.h> |
| 32 | #include <linux/netdevice.h> |
| 33 | #include <linux/inetdevice.h> |
| 34 | #include <linux/in.h> |
| 35 | #include <linux/sysfs.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 36 | #include <linux/ctype.h> |
| 37 | #include <linux/inet.h> |
| 38 | #include <linux/rtnetlink.h> |
Stephen Hemminger | 5c5129b | 2009-06-12 19:02:51 +0000 | [diff] [blame] | 39 | #include <linux/etherdevice.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 40 | #include <net/net_namespace.h> |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 41 | #include <net/netns/generic.h> |
| 42 | #include <linux/nsproxy.h> |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 43 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 44 | #include "bonding.h" |
Holger Eitzenberger | 5a03cdb | 2008-12-09 23:09:22 -0800 | [diff] [blame] | 45 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 46 | #define to_dev(obj) container_of(obj, struct device, kobj) |
Wang Chen | 454d7c9 | 2008-11-12 23:37:49 -0800 | [diff] [blame] | 47 | #define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd)))) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 48 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 49 | /* |
| 50 | * "show" function for the bond_masters attribute. |
| 51 | * The class parameter is ignored. |
| 52 | */ |
Andi Kleen | 28812fe | 2010-01-05 12:48:07 +0100 | [diff] [blame] | 53 | static ssize_t bonding_show_bonds(struct class *cls, |
| 54 | struct class_attribute *attr, |
| 55 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 56 | { |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 57 | struct bond_net *bn = |
| 58 | container_of(attr, struct bond_net, class_attr_bonding_masters); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 59 | int res = 0; |
| 60 | struct bonding *bond; |
| 61 | |
Stephen Hemminger | 7e08384 | 2009-06-12 19:02:46 +0000 | [diff] [blame] | 62 | rtnl_lock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 63 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 64 | list_for_each_entry(bond, &bn->dev_list, bond_list) { |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 65 | if (res > (PAGE_SIZE - IFNAMSIZ)) { |
| 66 | /* not enough space for another interface name */ |
| 67 | if ((PAGE_SIZE - res) > 10) |
| 68 | res = PAGE_SIZE - 10; |
Wagner Ferenc | b884366 | 2007-12-06 23:40:30 -0800 | [diff] [blame] | 69 | res += sprintf(buf + res, "++more++ "); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 70 | break; |
| 71 | } |
Wagner Ferenc | b884366 | 2007-12-06 23:40:30 -0800 | [diff] [blame] | 72 | res += sprintf(buf + res, "%s ", bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 73 | } |
Wagner Ferenc | 1dcdcd6 | 2007-12-06 23:40:31 -0800 | [diff] [blame] | 74 | if (res) |
| 75 | buf[res-1] = '\n'; /* eat the leftover space */ |
Stephen Hemminger | 7e08384 | 2009-06-12 19:02:46 +0000 | [diff] [blame] | 76 | |
| 77 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 78 | return res; |
| 79 | } |
| 80 | |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 81 | static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname) |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 82 | { |
| 83 | struct bonding *bond; |
| 84 | |
Eric W. Biederman | ec87fd3 | 2009-10-29 14:18:26 +0000 | [diff] [blame] | 85 | list_for_each_entry(bond, &bn->dev_list, bond_list) { |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 86 | if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0) |
| 87 | return bond->dev; |
| 88 | } |
| 89 | return NULL; |
| 90 | } |
| 91 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 92 | /* |
| 93 | * "store" function for the bond_masters attribute. This is what |
| 94 | * creates and deletes entire bonds. |
| 95 | * |
| 96 | * The class parameter is ignored. |
| 97 | * |
| 98 | */ |
| 99 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 100 | static ssize_t bonding_store_bonds(struct class *cls, |
Andi Kleen | 28812fe | 2010-01-05 12:48:07 +0100 | [diff] [blame] | 101 | struct class_attribute *attr, |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 102 | const char *buffer, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 103 | { |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 104 | struct bond_net *bn = |
| 105 | container_of(attr, struct bond_net, class_attr_bonding_masters); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 106 | char command[IFNAMSIZ + 1] = {0, }; |
| 107 | char *ifname; |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 108 | int rv, res = count; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 109 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 110 | sscanf(buffer, "%16s", command); /* IFNAMSIZ*/ |
| 111 | ifname = command + 1; |
| 112 | if ((strlen(command) <= 1) || |
| 113 | !dev_valid_name(ifname)) |
| 114 | goto err_no_cmd; |
| 115 | |
| 116 | if (command[0] == '+') { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 117 | pr_info("%s is being created...\n", ifname); |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 118 | rv = bond_create(bn->net, ifname); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 119 | if (rv) { |
Phil Oester | 5f86cad1 | 2011-03-14 06:22:06 +0000 | [diff] [blame] | 120 | if (rv == -EEXIST) |
| 121 | pr_info("%s already exists.\n", ifname); |
| 122 | else |
| 123 | pr_info("%s creation failed.\n", ifname); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 124 | res = rv; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 125 | } |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 126 | } else if (command[0] == '-') { |
| 127 | struct net_device *bond_dev; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 128 | |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 129 | rtnl_lock(); |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 130 | bond_dev = bond_get_by_name(bn, ifname); |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 131 | if (bond_dev) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 132 | pr_info("%s is being deleted...\n", ifname); |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 133 | unregister_netdevice(bond_dev); |
| 134 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 135 | pr_err("unable to delete non-existent %s\n", ifname); |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 136 | res = -ENODEV; |
| 137 | } |
| 138 | rtnl_unlock(); |
| 139 | } else |
| 140 | goto err_no_cmd; |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 141 | |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 142 | /* Always return either count or an error. If you return 0, you'll |
| 143 | * get called forever, which is bad. |
| 144 | */ |
| 145 | return res; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 146 | |
| 147 | err_no_cmd: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 148 | pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n"); |
Jay Vosburgh | c4ebc66 | 2008-05-02 17:49:38 -0700 | [diff] [blame] | 149 | return -EPERM; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 150 | } |
Stephen Hemminger | 373500d | 2009-06-12 19:02:50 +0000 | [diff] [blame] | 151 | |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 152 | static const void *bonding_namespace(struct class *cls, |
| 153 | const struct class_attribute *attr) |
| 154 | { |
| 155 | const struct bond_net *bn = |
| 156 | container_of(attr, struct bond_net, class_attr_bonding_masters); |
| 157 | return bn->net; |
| 158 | } |
| 159 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 160 | /* class attribute for bond_masters file. This ends up in /sys/class/net */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 161 | static const struct class_attribute class_attr_bonding_masters = { |
| 162 | .attr = { |
| 163 | .name = "bonding_masters", |
| 164 | .mode = S_IWUSR | S_IRUGO, |
| 165 | }, |
| 166 | .show = bonding_show_bonds, |
| 167 | .store = bonding_store_bonds, |
| 168 | .namespace = bonding_namespace, |
| 169 | }; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 170 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 171 | int bond_create_slave_symlinks(struct net_device *master, |
| 172 | struct net_device *slave) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 173 | { |
| 174 | char linkname[IFNAMSIZ+7]; |
| 175 | int ret = 0; |
| 176 | |
| 177 | /* first, create a link from the slave back to the master */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 178 | ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj), |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 179 | "master"); |
| 180 | if (ret) |
| 181 | return ret; |
| 182 | /* next, create a link from the master to the slave */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 183 | sprintf(linkname, "slave_%s", slave->name); |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 184 | ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj), |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 185 | linkname); |
| 186 | return ret; |
| 187 | |
| 188 | } |
| 189 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 190 | void bond_destroy_slave_symlinks(struct net_device *master, |
| 191 | struct net_device *slave) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 192 | { |
| 193 | char linkname[IFNAMSIZ+7]; |
| 194 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 195 | sysfs_remove_link(&(slave->dev.kobj), "master"); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 196 | sprintf(linkname, "slave_%s", slave->name); |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 197 | sysfs_remove_link(&(master->dev.kobj), linkname); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | |
| 201 | /* |
| 202 | * Show the slaves in the current bond. |
| 203 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 204 | static ssize_t bonding_show_slaves(struct device *d, |
| 205 | struct device_attribute *attr, char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 206 | { |
| 207 | struct slave *slave; |
| 208 | int i, res = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 209 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 210 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 211 | read_lock(&bond->lock); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 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; |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 217 | res += sprintf(buf + res, "++more++ "); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 218 | break; |
| 219 | } |
| 220 | res += sprintf(buf + res, "%s ", slave->dev->name); |
| 221 | } |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 222 | read_unlock(&bond->lock); |
Wagner Ferenc | 1dcdcd6 | 2007-12-06 23:40:31 -0800 | [diff] [blame] | 223 | if (res) |
| 224 | buf[res-1] = '\n'; /* eat the leftover space */ |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 225 | return res; |
| 226 | } |
| 227 | |
| 228 | /* |
| 229 | * Set the slaves in the current bond. The bond interface must be |
| 230 | * up for this to succeed. |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 231 | * This is supposed to be only thin wrapper for bond_enslave and bond_release. |
| 232 | * All hard work should be done there. |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 233 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 234 | static ssize_t bonding_store_slaves(struct device *d, |
| 235 | struct device_attribute *attr, |
| 236 | const char *buffer, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 237 | { |
| 238 | char command[IFNAMSIZ + 1] = { 0, }; |
| 239 | char *ifname; |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 240 | int res, ret = count; |
| 241 | struct net_device *dev; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 242 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 243 | |
Eric W. Biederman | 496a60c | 2009-05-13 17:02:50 +0000 | [diff] [blame] | 244 | if (!rtnl_trylock()) |
| 245 | return restart_syscall(); |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 246 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 247 | sscanf(buffer, "%16s", command); /* IFNAMSIZ*/ |
| 248 | ifname = command + 1; |
| 249 | if ((strlen(command) <= 1) || |
| 250 | !dev_valid_name(ifname)) |
| 251 | goto err_no_cmd; |
| 252 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 253 | dev = __dev_get_by_name(dev_net(bond->dev), ifname); |
| 254 | if (!dev) { |
| 255 | pr_info("%s: Interface %s does not exist!\n", |
| 256 | bond->dev->name, ifname); |
| 257 | ret = -ENODEV; |
| 258 | goto out; |
| 259 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 260 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 261 | switch (command[0]) { |
| 262 | case '+': |
| 263 | pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 264 | res = bond_enslave(bond->dev, dev); |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 265 | break; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 266 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 267 | case '-': |
| 268 | pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name); |
| 269 | res = bond_release(bond->dev, dev); |
| 270 | break; |
| 271 | |
| 272 | default: |
| 273 | goto err_no_cmd; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 274 | } |
| 275 | |
Jiri Pirko | f9f3545 | 2010-05-18 05:46:39 +0000 | [diff] [blame] | 276 | if (res) |
| 277 | ret = res; |
| 278 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 279 | |
| 280 | err_no_cmd: |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 281 | pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n", |
| 282 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 283 | ret = -EPERM; |
| 284 | |
| 285 | out: |
Jay Vosburgh | 027ea04 | 2008-01-17 16:25:02 -0800 | [diff] [blame] | 286 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 287 | return ret; |
| 288 | } |
| 289 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 290 | static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves, |
| 291 | bonding_store_slaves); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 292 | |
| 293 | /* |
| 294 | * Show and set the bonding mode. The bond interface must be down to |
| 295 | * change the mode. |
| 296 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 297 | static ssize_t bonding_show_mode(struct device *d, |
| 298 | struct device_attribute *attr, char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 299 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 300 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 301 | |
| 302 | return sprintf(buf, "%s %d\n", |
| 303 | bond_mode_tbl[bond->params.mode].modename, |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 304 | bond->params.mode); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 305 | } |
| 306 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 307 | static ssize_t bonding_store_mode(struct device *d, |
| 308 | struct device_attribute *attr, |
| 309 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 310 | { |
| 311 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 312 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 313 | |
| 314 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 315 | pr_err("unable to update mode of %s because interface is up.\n", |
| 316 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 317 | ret = -EPERM; |
| 318 | goto out; |
| 319 | } |
| 320 | |
Veaceslav Falico | 4a8bb7e | 2011-11-15 06:44:42 +0000 | [diff] [blame] | 321 | if (bond->slave_cnt > 0) { |
| 322 | pr_err("unable to update mode of %s because it has slaves.\n", |
| 323 | bond->dev->name); |
| 324 | ret = -EPERM; |
| 325 | goto out; |
| 326 | } |
| 327 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 328 | new_value = bond_parse_parm(buf, bond_mode_tbl); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 329 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 330 | pr_err("%s: Ignoring invalid mode value %.*s.\n", |
| 331 | bond->dev->name, (int)strlen(buf) - 1, buf); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 332 | ret = -EINVAL; |
| 333 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 334 | } |
Andy Gospodarek | c5cb002 | 2010-07-28 15:13:56 +0000 | [diff] [blame] | 335 | if ((new_value == BOND_MODE_ALB || |
| 336 | new_value == BOND_MODE_TLB) && |
| 337 | bond->params.arp_interval) { |
| 338 | pr_err("%s: %s mode is incompatible with arp monitoring.\n", |
| 339 | bond->dev->name, bond_mode_tbl[new_value].modename); |
| 340 | ret = -EINVAL; |
| 341 | goto out; |
| 342 | } |
Andy Gospodarek | c5cb002 | 2010-07-28 15:13:56 +0000 | [diff] [blame] | 343 | |
| 344 | bond->params.mode = new_value; |
| 345 | bond_set_mode_ops(bond, bond->params.mode); |
| 346 | pr_info("%s: setting mode to %s (%d).\n", |
| 347 | bond->dev->name, bond_mode_tbl[new_value].modename, |
| 348 | new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 349 | out: |
| 350 | return ret; |
| 351 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 352 | static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, |
| 353 | bonding_show_mode, bonding_store_mode); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 354 | |
| 355 | /* |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 356 | * Show and set the bonding transmit hash method. |
| 357 | * The bond interface must be down to change the xmit hash policy. |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 358 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 359 | static ssize_t bonding_show_xmit_hash(struct device *d, |
| 360 | struct device_attribute *attr, |
| 361 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 362 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 363 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 364 | |
Wagner Ferenc | 8e4b932 | 2007-12-06 23:40:32 -0800 | [diff] [blame] | 365 | return sprintf(buf, "%s %d\n", |
| 366 | xmit_hashtype_tbl[bond->params.xmit_policy].modename, |
| 367 | bond->params.xmit_policy); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 368 | } |
| 369 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 370 | static ssize_t bonding_store_xmit_hash(struct device *d, |
| 371 | struct device_attribute *attr, |
| 372 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 373 | { |
| 374 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 375 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 376 | |
| 377 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 378 | pr_err("%s: Interface is up. Unable to update xmit policy.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 379 | bond->dev->name); |
| 380 | ret = -EPERM; |
| 381 | goto out; |
| 382 | } |
| 383 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 384 | new_value = bond_parse_parm(buf, xmit_hashtype_tbl); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 385 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 386 | pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 387 | bond->dev->name, |
| 388 | (int)strlen(buf) - 1, buf); |
| 389 | ret = -EINVAL; |
| 390 | goto out; |
| 391 | } else { |
| 392 | bond->params.xmit_policy = new_value; |
| 393 | bond_set_mode_ops(bond, bond->params.mode); |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 394 | pr_info("%s: setting xmit hash policy to %s (%d).\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 395 | bond->dev->name, |
| 396 | xmit_hashtype_tbl[new_value].modename, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 397 | } |
| 398 | out: |
| 399 | return ret; |
| 400 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 401 | static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR, |
| 402 | bonding_show_xmit_hash, bonding_store_xmit_hash); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 403 | |
| 404 | /* |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 405 | * Show and set arp_validate. |
| 406 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 407 | static ssize_t bonding_show_arp_validate(struct device *d, |
| 408 | struct device_attribute *attr, |
| 409 | char *buf) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 410 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 411 | struct bonding *bond = to_bond(d); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 412 | |
| 413 | return sprintf(buf, "%s %d\n", |
| 414 | arp_validate_tbl[bond->params.arp_validate].modename, |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 415 | bond->params.arp_validate); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 418 | static ssize_t bonding_store_arp_validate(struct device *d, |
| 419 | struct device_attribute *attr, |
| 420 | const char *buf, size_t count) |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 421 | { |
| 422 | int new_value; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 423 | struct bonding *bond = to_bond(d); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 424 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 425 | new_value = bond_parse_parm(buf, arp_validate_tbl); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 426 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 427 | pr_err("%s: Ignoring invalid arp_validate value %s\n", |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 428 | bond->dev->name, buf); |
| 429 | return -EINVAL; |
| 430 | } |
| 431 | if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 432 | pr_err("%s: arp_validate only supported in active-backup mode.\n", |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 433 | bond->dev->name); |
| 434 | return -EINVAL; |
| 435 | } |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 436 | pr_info("%s: setting arp_validate to %s (%d).\n", |
| 437 | bond->dev->name, arp_validate_tbl[new_value].modename, |
| 438 | new_value); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 439 | |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 440 | bond->params.arp_validate = new_value; |
| 441 | |
| 442 | return count; |
| 443 | } |
| 444 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 445 | static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate, |
| 446 | bonding_store_arp_validate); |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 447 | |
| 448 | /* |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 449 | * Show and store fail_over_mac. User only allowed to change the |
| 450 | * value when there are no slaves. |
| 451 | */ |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 452 | static ssize_t bonding_show_fail_over_mac(struct device *d, |
| 453 | struct device_attribute *attr, |
| 454 | char *buf) |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 455 | { |
| 456 | struct bonding *bond = to_bond(d); |
| 457 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 458 | return sprintf(buf, "%s %d\n", |
| 459 | fail_over_mac_tbl[bond->params.fail_over_mac].modename, |
| 460 | bond->params.fail_over_mac); |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 463 | static ssize_t bonding_store_fail_over_mac(struct device *d, |
| 464 | struct device_attribute *attr, |
| 465 | const char *buf, size_t count) |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 466 | { |
| 467 | int new_value; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 468 | struct bonding *bond = to_bond(d); |
| 469 | |
| 470 | if (bond->slave_cnt != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 471 | pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n", |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 472 | bond->dev->name); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 473 | return -EPERM; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 476 | new_value = bond_parse_parm(buf, fail_over_mac_tbl); |
| 477 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 478 | pr_err("%s: Ignoring invalid fail_over_mac value %s.\n", |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 479 | bond->dev->name, buf); |
| 480 | return -EINVAL; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 483 | bond->params.fail_over_mac = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 484 | pr_info("%s: Setting fail_over_mac to %s (%d).\n", |
| 485 | bond->dev->name, fail_over_mac_tbl[new_value].modename, |
| 486 | new_value); |
Jay Vosburgh | 3915c1e8 | 2008-05-17 21:10:14 -0700 | [diff] [blame] | 487 | |
| 488 | return count; |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 491 | static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR, |
| 492 | bonding_show_fail_over_mac, bonding_store_fail_over_mac); |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 493 | |
| 494 | /* |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 495 | * Show and set the arp timer interval. There are two tricky bits |
| 496 | * here. First, if ARP monitoring is activated, then we must disable |
| 497 | * MII monitoring. Second, if the ARP timer isn't running, we must |
| 498 | * start it. |
| 499 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 500 | static ssize_t bonding_show_arp_interval(struct device *d, |
| 501 | struct device_attribute *attr, |
| 502 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 503 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 504 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 505 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 506 | return sprintf(buf, "%d\n", bond->params.arp_interval); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 507 | } |
| 508 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 509 | static ssize_t bonding_store_arp_interval(struct device *d, |
| 510 | struct device_attribute *attr, |
| 511 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 512 | { |
| 513 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 514 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 515 | |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame^] | 516 | if (!rtnl_trylock()) |
| 517 | return restart_syscall(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 518 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 519 | pr_err("%s: no arp_interval value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 520 | bond->dev->name); |
| 521 | ret = -EINVAL; |
| 522 | goto out; |
| 523 | } |
| 524 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 525 | pr_err("%s: Invalid arp_interval value %d not in range 1-%d; rejected.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 526 | bond->dev->name, new_value, INT_MAX); |
| 527 | ret = -EINVAL; |
| 528 | goto out; |
| 529 | } |
Andy Gospodarek | c5cb002 | 2010-07-28 15:13:56 +0000 | [diff] [blame] | 530 | if (bond->params.mode == BOND_MODE_ALB || |
| 531 | bond->params.mode == BOND_MODE_TLB) { |
| 532 | pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n", |
| 533 | bond->dev->name, bond->dev->name); |
| 534 | ret = -EINVAL; |
| 535 | goto out; |
| 536 | } |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 537 | pr_info("%s: Setting ARP monitoring interval to %d.\n", |
| 538 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 539 | bond->params.arp_interval = new_value; |
| 540 | if (bond->params.miimon) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 541 | pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n", |
| 542 | bond->dev->name, bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 543 | bond->params.miimon = 0; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 544 | } |
| 545 | if (!bond->params.arp_targets[0]) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 546 | pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n", |
| 547 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 548 | } |
| 549 | if (bond->dev->flags & IFF_UP) { |
| 550 | /* If the interface is up, we may need to fire off |
| 551 | * the ARP timer. If the interface is down, the |
| 552 | * timer will get fired off when the open function |
| 553 | * is called. |
| 554 | */ |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame^] | 555 | cancel_delayed_work_sync(&bond->mii_work); |
| 556 | queue_delayed_work(bond->wq, &bond->arp_work, 0); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | out: |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame^] | 560 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 561 | return ret; |
| 562 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 563 | static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR, |
| 564 | bonding_show_arp_interval, bonding_store_arp_interval); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 565 | |
| 566 | /* |
| 567 | * Show and set the arp targets. |
| 568 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 569 | static ssize_t bonding_show_arp_targets(struct device *d, |
| 570 | struct device_attribute *attr, |
| 571 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 572 | { |
| 573 | int i, res = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 574 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 575 | |
| 576 | for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) { |
| 577 | if (bond->params.arp_targets[i]) |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 578 | res += sprintf(buf + res, "%pI4 ", |
| 579 | &bond->params.arp_targets[i]); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 580 | } |
Wagner Ferenc | 1dcdcd6 | 2007-12-06 23:40:31 -0800 | [diff] [blame] | 581 | if (res) |
| 582 | buf[res-1] = '\n'; /* eat the leftover space */ |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 583 | return res; |
| 584 | } |
| 585 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 586 | static ssize_t bonding_store_arp_targets(struct device *d, |
| 587 | struct device_attribute *attr, |
| 588 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 589 | { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 590 | __be32 newtarget; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 591 | int i = 0, done = 0, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 592 | struct bonding *bond = to_bond(d); |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 593 | __be32 *targets; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 594 | |
| 595 | targets = bond->params.arp_targets; |
| 596 | newtarget = in_aton(buf + 1); |
| 597 | /* look for adds */ |
| 598 | if (buf[0] == '+') { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 599 | if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 600 | pr_err("%s: invalid ARP target %pI4 specified for addition\n", |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 601 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 602 | ret = -EINVAL; |
| 603 | goto out; |
| 604 | } |
| 605 | /* look for an empty slot to put the target in, and check for dupes */ |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 606 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 607 | if (targets[i] == newtarget) { /* duplicate */ |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 608 | pr_err("%s: ARP target %pI4 is already present\n", |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 609 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 610 | ret = -EINVAL; |
| 611 | goto out; |
| 612 | } |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 613 | if (targets[i] == 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 614 | pr_info("%s: adding ARP target %pI4.\n", |
| 615 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 616 | done = 1; |
| 617 | targets[i] = newtarget; |
| 618 | } |
| 619 | } |
| 620 | if (!done) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 621 | pr_err("%s: ARP target table is full!\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 622 | bond->dev->name); |
| 623 | ret = -EINVAL; |
| 624 | goto out; |
| 625 | } |
| 626 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 627 | } else if (buf[0] == '-') { |
Al Viro | d3bb52b | 2007-08-22 20:06:58 -0400 | [diff] [blame] | 628 | if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 629 | pr_err("%s: invalid ARP target %pI4 specified for removal\n", |
Harvey Harrison | 6377943 | 2008-10-31 00:56:00 -0700 | [diff] [blame] | 630 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 631 | ret = -EINVAL; |
| 632 | goto out; |
| 633 | } |
| 634 | |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 635 | for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) { |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 636 | if (targets[i] == newtarget) { |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 637 | int j; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 638 | pr_info("%s: removing ARP target %pI4.\n", |
| 639 | bond->dev->name, &newtarget); |
Brian Haley | 5a31bec | 2009-04-13 00:11:30 -0700 | [diff] [blame] | 640 | for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++) |
| 641 | targets[j] = targets[j+1]; |
| 642 | |
| 643 | targets[j] = 0; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 644 | done = 1; |
| 645 | } |
| 646 | } |
| 647 | if (!done) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 648 | pr_info("%s: unable to remove nonexistent ARP target %pI4.\n", |
| 649 | bond->dev->name, &newtarget); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 650 | ret = -EINVAL; |
| 651 | goto out; |
| 652 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 653 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 654 | pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n", |
| 655 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 656 | ret = -EPERM; |
| 657 | goto out; |
| 658 | } |
| 659 | |
| 660 | out: |
| 661 | return ret; |
| 662 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 663 | static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 664 | |
| 665 | /* |
| 666 | * Show and set the up and down delays. These must be multiples of the |
| 667 | * MII monitoring value, and are stored internally as the multiplier. |
| 668 | * Thus, we must translate to MS for the real world. |
| 669 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 670 | static ssize_t bonding_show_downdelay(struct device *d, |
| 671 | struct device_attribute *attr, |
| 672 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 673 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 674 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 675 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 676 | return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 677 | } |
| 678 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 679 | static ssize_t bonding_store_downdelay(struct device *d, |
| 680 | struct device_attribute *attr, |
| 681 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 682 | { |
| 683 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 684 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 685 | |
| 686 | if (!(bond->params.miimon)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 687 | pr_err("%s: Unable to set down delay as MII monitoring is disabled\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 688 | bond->dev->name); |
| 689 | ret = -EPERM; |
| 690 | goto out; |
| 691 | } |
| 692 | |
| 693 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 694 | pr_err("%s: no down delay value specified.\n", bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 695 | ret = -EINVAL; |
| 696 | goto out; |
| 697 | } |
| 698 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 699 | pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 700 | bond->dev->name, new_value, 1, INT_MAX); |
| 701 | ret = -EINVAL; |
| 702 | goto out; |
| 703 | } else { |
| 704 | if ((new_value % bond->params.miimon) != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 705 | pr_warning("%s: Warning: down delay (%d) is not a multiple of miimon (%d), delay rounded to %d ms\n", |
Jiri Pirko | e5e2a8f | 2009-08-13 04:11:52 +0000 | [diff] [blame] | 706 | bond->dev->name, new_value, |
| 707 | bond->params.miimon, |
| 708 | (new_value / bond->params.miimon) * |
| 709 | bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 710 | } |
| 711 | bond->params.downdelay = new_value / bond->params.miimon; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 712 | pr_info("%s: Setting down delay to %d.\n", |
| 713 | bond->dev->name, |
| 714 | bond->params.downdelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 715 | |
| 716 | } |
| 717 | |
| 718 | out: |
| 719 | return ret; |
| 720 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 721 | static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR, |
| 722 | bonding_show_downdelay, bonding_store_downdelay); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 723 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 724 | static ssize_t bonding_show_updelay(struct device *d, |
| 725 | struct device_attribute *attr, |
| 726 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 727 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 728 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 729 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 730 | return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 731 | |
| 732 | } |
| 733 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 734 | static ssize_t bonding_store_updelay(struct device *d, |
| 735 | struct device_attribute *attr, |
| 736 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 737 | { |
| 738 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 739 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 740 | |
| 741 | if (!(bond->params.miimon)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 742 | pr_err("%s: Unable to set up delay as MII monitoring is disabled\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 743 | bond->dev->name); |
| 744 | ret = -EPERM; |
| 745 | goto out; |
| 746 | } |
| 747 | |
| 748 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 749 | pr_err("%s: no up delay value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 750 | bond->dev->name); |
| 751 | ret = -EINVAL; |
| 752 | goto out; |
| 753 | } |
| 754 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 755 | pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 756 | bond->dev->name, new_value, 1, INT_MAX); |
| 757 | ret = -EINVAL; |
| 758 | goto out; |
| 759 | } else { |
| 760 | if ((new_value % bond->params.miimon) != 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 761 | pr_warning("%s: Warning: up delay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n", |
Jiri Pirko | e5e2a8f | 2009-08-13 04:11:52 +0000 | [diff] [blame] | 762 | bond->dev->name, new_value, |
| 763 | bond->params.miimon, |
| 764 | (new_value / bond->params.miimon) * |
| 765 | bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 766 | } |
| 767 | bond->params.updelay = new_value / bond->params.miimon; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 768 | pr_info("%s: Setting up delay to %d.\n", |
| 769 | bond->dev->name, |
| 770 | bond->params.updelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | out: |
| 774 | return ret; |
| 775 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 776 | static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR, |
| 777 | bonding_show_updelay, bonding_store_updelay); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 778 | |
| 779 | /* |
| 780 | * Show and set the LACP interval. Interface must be down, and the mode |
| 781 | * must be set to 802.3ad mode. |
| 782 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 783 | static ssize_t bonding_show_lacp(struct device *d, |
| 784 | struct device_attribute *attr, |
| 785 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 786 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 787 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 788 | |
| 789 | return sprintf(buf, "%s %d\n", |
| 790 | bond_lacp_tbl[bond->params.lacp_fast].modename, |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 791 | bond->params.lacp_fast); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 792 | } |
| 793 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 794 | static ssize_t bonding_store_lacp(struct device *d, |
| 795 | struct device_attribute *attr, |
| 796 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 797 | { |
| 798 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 799 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 800 | |
| 801 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 802 | pr_err("%s: Unable to update LACP rate because interface is up.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 803 | bond->dev->name); |
| 804 | ret = -EPERM; |
| 805 | goto out; |
| 806 | } |
| 807 | |
| 808 | if (bond->params.mode != BOND_MODE_8023AD) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 809 | pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 810 | bond->dev->name); |
| 811 | ret = -EPERM; |
| 812 | goto out; |
| 813 | } |
| 814 | |
Jay Vosburgh | ece95f7 | 2008-01-17 16:25:01 -0800 | [diff] [blame] | 815 | new_value = bond_parse_parm(buf, bond_lacp_tbl); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 816 | |
| 817 | if ((new_value == 1) || (new_value == 0)) { |
| 818 | bond->params.lacp_fast = new_value; |
Peter Pan(潘卫平) | ba824a8 | 2011-06-08 21:19:01 +0000 | [diff] [blame] | 819 | bond_3ad_update_lacp_rate(bond); |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 820 | pr_info("%s: Setting LACP rate to %s (%d).\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 821 | bond->dev->name, bond_lacp_tbl[new_value].modename, |
| 822 | new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 823 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 824 | pr_err("%s: Ignoring invalid LACP rate value %.*s.\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 825 | bond->dev->name, (int)strlen(buf) - 1, buf); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 826 | ret = -EINVAL; |
| 827 | } |
| 828 | out: |
| 829 | return ret; |
| 830 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 831 | static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR, |
| 832 | bonding_show_lacp, bonding_store_lacp); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 833 | |
stephen hemminger | 655f891 | 2011-06-22 09:54:39 +0000 | [diff] [blame] | 834 | static ssize_t bonding_show_min_links(struct device *d, |
| 835 | struct device_attribute *attr, |
| 836 | char *buf) |
| 837 | { |
| 838 | struct bonding *bond = to_bond(d); |
| 839 | |
| 840 | return sprintf(buf, "%d\n", bond->params.min_links); |
| 841 | } |
| 842 | |
| 843 | static ssize_t bonding_store_min_links(struct device *d, |
| 844 | struct device_attribute *attr, |
| 845 | const char *buf, size_t count) |
| 846 | { |
| 847 | struct bonding *bond = to_bond(d); |
| 848 | int ret; |
| 849 | unsigned int new_value; |
| 850 | |
| 851 | ret = kstrtouint(buf, 0, &new_value); |
| 852 | if (ret < 0) { |
| 853 | pr_err("%s: Ignoring invalid min links value %s.\n", |
| 854 | bond->dev->name, buf); |
| 855 | return ret; |
| 856 | } |
| 857 | |
| 858 | pr_info("%s: Setting min links value to %u\n", |
| 859 | bond->dev->name, new_value); |
| 860 | bond->params.min_links = new_value; |
| 861 | return count; |
| 862 | } |
| 863 | static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR, |
| 864 | bonding_show_min_links, bonding_store_min_links); |
| 865 | |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 866 | static ssize_t bonding_show_ad_select(struct device *d, |
| 867 | struct device_attribute *attr, |
| 868 | char *buf) |
| 869 | { |
| 870 | struct bonding *bond = to_bond(d); |
| 871 | |
| 872 | return sprintf(buf, "%s %d\n", |
| 873 | ad_select_tbl[bond->params.ad_select].modename, |
| 874 | bond->params.ad_select); |
| 875 | } |
| 876 | |
| 877 | |
| 878 | static ssize_t bonding_store_ad_select(struct device *d, |
| 879 | struct device_attribute *attr, |
| 880 | const char *buf, size_t count) |
| 881 | { |
| 882 | int new_value, ret = count; |
| 883 | struct bonding *bond = to_bond(d); |
| 884 | |
| 885 | if (bond->dev->flags & IFF_UP) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 886 | pr_err("%s: Unable to update ad_select because interface is up.\n", |
| 887 | bond->dev->name); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 888 | ret = -EPERM; |
| 889 | goto out; |
| 890 | } |
| 891 | |
| 892 | new_value = bond_parse_parm(buf, ad_select_tbl); |
| 893 | |
| 894 | if (new_value != -1) { |
| 895 | bond->params.ad_select = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 896 | pr_info("%s: Setting ad_select to %s (%d).\n", |
| 897 | bond->dev->name, ad_select_tbl[new_value].modename, |
| 898 | new_value); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 899 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 900 | pr_err("%s: Ignoring invalid ad_select value %.*s.\n", |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 901 | bond->dev->name, (int)strlen(buf) - 1, buf); |
| 902 | ret = -EINVAL; |
| 903 | } |
| 904 | out: |
| 905 | return ret; |
| 906 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 907 | static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR, |
| 908 | bonding_show_ad_select, bonding_store_ad_select); |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 909 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 910 | /* |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 911 | * Show and set the number of peer notifications to send after a failover event. |
| 912 | */ |
| 913 | static ssize_t bonding_show_num_peer_notif(struct device *d, |
| 914 | struct device_attribute *attr, |
| 915 | char *buf) |
| 916 | { |
| 917 | struct bonding *bond = to_bond(d); |
| 918 | return sprintf(buf, "%d\n", bond->params.num_peer_notif); |
| 919 | } |
| 920 | |
| 921 | static ssize_t bonding_store_num_peer_notif(struct device *d, |
| 922 | struct device_attribute *attr, |
| 923 | const char *buf, size_t count) |
| 924 | { |
| 925 | struct bonding *bond = to_bond(d); |
| 926 | int err = kstrtou8(buf, 10, &bond->params.num_peer_notif); |
| 927 | return err ? err : count; |
| 928 | } |
| 929 | static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR, |
| 930 | bonding_show_num_peer_notif, bonding_store_num_peer_notif); |
| 931 | static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR, |
| 932 | bonding_show_num_peer_notif, bonding_store_num_peer_notif); |
| 933 | |
| 934 | /* |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 935 | * Show and set the MII monitor interval. There are two tricky bits |
| 936 | * here. First, if MII monitoring is activated, then we must disable |
| 937 | * ARP monitoring. Second, if the timer isn't running, we must |
| 938 | * start it. |
| 939 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 940 | static ssize_t bonding_show_miimon(struct device *d, |
| 941 | struct device_attribute *attr, |
| 942 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 943 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 944 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 945 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 946 | return sprintf(buf, "%d\n", bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 947 | } |
| 948 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 949 | static ssize_t bonding_store_miimon(struct device *d, |
| 950 | struct device_attribute *attr, |
| 951 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 952 | { |
| 953 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 954 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 955 | |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame^] | 956 | if (!rtnl_trylock()) |
| 957 | return restart_syscall(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 958 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 959 | pr_err("%s: no miimon value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 960 | bond->dev->name); |
| 961 | ret = -EINVAL; |
| 962 | goto out; |
| 963 | } |
| 964 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 965 | pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 966 | bond->dev->name, new_value, 1, INT_MAX); |
| 967 | ret = -EINVAL; |
| 968 | goto out; |
| 969 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 970 | pr_info("%s: Setting MII monitoring interval to %d.\n", |
| 971 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 972 | bond->params.miimon = new_value; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 973 | if (bond->params.updelay) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 974 | pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n", |
| 975 | bond->dev->name, |
| 976 | bond->params.updelay * bond->params.miimon); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 977 | if (bond->params.downdelay) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 978 | pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n", |
| 979 | bond->dev->name, |
| 980 | bond->params.downdelay * bond->params.miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 981 | if (bond->params.arp_interval) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 982 | pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n", |
| 983 | bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 984 | bond->params.arp_interval = 0; |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 985 | if (bond->params.arp_validate) { |
Jay Vosburgh | f5b2b96 | 2006-09-22 21:54:53 -0700 | [diff] [blame] | 986 | bond->params.arp_validate = |
| 987 | BOND_ARP_VALIDATE_NONE; |
| 988 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | if (bond->dev->flags & IFF_UP) { |
| 992 | /* If the interface is up, we may need to fire off |
| 993 | * the MII timer. If the interface is down, the |
| 994 | * timer will get fired off when the open function |
| 995 | * is called. |
| 996 | */ |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame^] | 997 | cancel_delayed_work_sync(&bond->arp_work); |
| 998 | queue_delayed_work(bond->wq, &bond->mii_work, 0); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 999 | } |
| 1000 | } |
| 1001 | out: |
nikolay@redhat.com | fbb0c41 | 2012-11-29 01:31:31 +0000 | [diff] [blame^] | 1002 | rtnl_unlock(); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1003 | return ret; |
| 1004 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1005 | static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR, |
| 1006 | bonding_show_miimon, bonding_store_miimon); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1007 | |
| 1008 | /* |
| 1009 | * Show and set the primary slave. The store function is much |
| 1010 | * simpler than bonding_store_slaves function because it only needs to |
| 1011 | * handle one interface name. |
| 1012 | * The bond must be a mode that supports a primary for this be |
| 1013 | * set. |
| 1014 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1015 | static ssize_t bonding_show_primary(struct device *d, |
| 1016 | struct device_attribute *attr, |
| 1017 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1018 | { |
| 1019 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1020 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1021 | |
| 1022 | if (bond->primary_slave) |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 1023 | count = sprintf(buf, "%s\n", bond->primary_slave->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1024 | |
| 1025 | return count; |
| 1026 | } |
| 1027 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1028 | static ssize_t bonding_store_primary(struct device *d, |
| 1029 | struct device_attribute *attr, |
| 1030 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1031 | { |
| 1032 | int i; |
| 1033 | struct slave *slave; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1034 | struct bonding *bond = to_bond(d); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1035 | char ifname[IFNAMSIZ]; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1036 | |
Eric W. Biederman | 496a60c | 2009-05-13 17:02:50 +0000 | [diff] [blame] | 1037 | if (!rtnl_trylock()) |
| 1038 | return restart_syscall(); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1039 | block_netpoll_tx(); |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1040 | read_lock(&bond->lock); |
| 1041 | write_lock_bh(&bond->curr_slave_lock); |
| 1042 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1043 | if (!USES_PRIMARY(bond->params.mode)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1044 | pr_info("%s: Unable to set primary slave; %s is in mode %d\n", |
| 1045 | bond->dev->name, bond->dev->name, bond->params.mode); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1046 | goto out; |
| 1047 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1048 | |
nikolay@redhat.com | eb6e98a | 2012-10-31 04:42:51 +0000 | [diff] [blame] | 1049 | sscanf(buf, "%15s", ifname); /* IFNAMSIZ */ |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1050 | |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1051 | /* check to see if we are clearing primary */ |
| 1052 | if (!strlen(ifname) || buf[0] == '\n') { |
| 1053 | pr_info("%s: Setting primary slave to None.\n", |
| 1054 | bond->dev->name); |
| 1055 | bond->primary_slave = NULL; |
| 1056 | bond_select_active_slave(bond); |
| 1057 | goto out; |
| 1058 | } |
| 1059 | |
| 1060 | bond_for_each_slave(bond, slave, i) { |
| 1061 | if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) { |
| 1062 | pr_info("%s: Setting %s as primary slave.\n", |
| 1063 | bond->dev->name, slave->dev->name); |
| 1064 | bond->primary_slave = slave; |
| 1065 | strcpy(bond->params.primary, slave->dev->name); |
| 1066 | bond_select_active_slave(bond); |
| 1067 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1068 | } |
| 1069 | } |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1070 | |
Weiping Pan | 8a93664 | 2012-06-10 23:00:20 +0000 | [diff] [blame] | 1071 | strncpy(bond->params.primary, ifname, IFNAMSIZ); |
| 1072 | bond->params.primary[IFNAMSIZ - 1] = 0; |
| 1073 | |
| 1074 | pr_info("%s: Recording %s as primary, " |
| 1075 | "but it has not been enslaved to %s yet.\n", |
| 1076 | bond->dev->name, ifname, bond->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1077 | out: |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1078 | write_unlock_bh(&bond->curr_slave_lock); |
| 1079 | read_unlock(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1080 | unblock_netpoll_tx(); |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 1081 | rtnl_unlock(); |
| 1082 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1083 | return count; |
| 1084 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1085 | static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR, |
| 1086 | bonding_show_primary, bonding_store_primary); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1087 | |
| 1088 | /* |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1089 | * Show and set the primary_reselect flag. |
| 1090 | */ |
| 1091 | static ssize_t bonding_show_primary_reselect(struct device *d, |
| 1092 | struct device_attribute *attr, |
| 1093 | char *buf) |
| 1094 | { |
| 1095 | struct bonding *bond = to_bond(d); |
| 1096 | |
| 1097 | return sprintf(buf, "%s %d\n", |
| 1098 | pri_reselect_tbl[bond->params.primary_reselect].modename, |
| 1099 | bond->params.primary_reselect); |
| 1100 | } |
| 1101 | |
| 1102 | static ssize_t bonding_store_primary_reselect(struct device *d, |
| 1103 | struct device_attribute *attr, |
| 1104 | const char *buf, size_t count) |
| 1105 | { |
| 1106 | int new_value, ret = count; |
| 1107 | struct bonding *bond = to_bond(d); |
| 1108 | |
| 1109 | if (!rtnl_trylock()) |
| 1110 | return restart_syscall(); |
| 1111 | |
| 1112 | new_value = bond_parse_parm(buf, pri_reselect_tbl); |
| 1113 | if (new_value < 0) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1114 | pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n", |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1115 | bond->dev->name, |
| 1116 | (int) strlen(buf) - 1, buf); |
| 1117 | ret = -EINVAL; |
| 1118 | goto out; |
| 1119 | } |
| 1120 | |
| 1121 | bond->params.primary_reselect = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1122 | pr_info("%s: setting primary_reselect to %s (%d).\n", |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1123 | bond->dev->name, pri_reselect_tbl[new_value].modename, |
| 1124 | new_value); |
| 1125 | |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1126 | block_netpoll_tx(); |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1127 | read_lock(&bond->lock); |
| 1128 | write_lock_bh(&bond->curr_slave_lock); |
| 1129 | bond_select_active_slave(bond); |
| 1130 | write_unlock_bh(&bond->curr_slave_lock); |
| 1131 | read_unlock(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1132 | unblock_netpoll_tx(); |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1133 | out: |
| 1134 | rtnl_unlock(); |
| 1135 | return ret; |
| 1136 | } |
| 1137 | static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR, |
| 1138 | bonding_show_primary_reselect, |
| 1139 | bonding_store_primary_reselect); |
| 1140 | |
| 1141 | /* |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1142 | * Show and set the use_carrier flag. |
| 1143 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1144 | static ssize_t bonding_show_carrier(struct device *d, |
| 1145 | struct device_attribute *attr, |
| 1146 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1147 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1148 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1149 | |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 1150 | return sprintf(buf, "%d\n", bond->params.use_carrier); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1151 | } |
| 1152 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1153 | static ssize_t bonding_store_carrier(struct device *d, |
| 1154 | struct device_attribute *attr, |
| 1155 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1156 | { |
| 1157 | int new_value, ret = count; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1158 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1159 | |
| 1160 | |
| 1161 | if (sscanf(buf, "%d", &new_value) != 1) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1162 | pr_err("%s: no use_carrier value specified.\n", |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1163 | bond->dev->name); |
| 1164 | ret = -EINVAL; |
| 1165 | goto out; |
| 1166 | } |
| 1167 | if ((new_value == 0) || (new_value == 1)) { |
| 1168 | bond->params.use_carrier = new_value; |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1169 | pr_info("%s: Setting use_carrier to %d.\n", |
| 1170 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1171 | } else { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1172 | pr_info("%s: Ignoring invalid use_carrier value %d.\n", |
| 1173 | bond->dev->name, new_value); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1174 | } |
| 1175 | out: |
Jiri Pirko | 672bda3 | 2011-01-25 11:03:25 +0000 | [diff] [blame] | 1176 | return ret; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1177 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1178 | static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR, |
| 1179 | bonding_show_carrier, bonding_store_carrier); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1180 | |
| 1181 | |
| 1182 | /* |
| 1183 | * Show and set currently active_slave. |
| 1184 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1185 | static ssize_t bonding_show_active_slave(struct device *d, |
| 1186 | struct device_attribute *attr, |
| 1187 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1188 | { |
| 1189 | struct slave *curr; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1190 | struct bonding *bond = to_bond(d); |
Wagner Ferenc | 16cd016 | 2007-12-06 23:40:29 -0800 | [diff] [blame] | 1191 | int count = 0; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1192 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1193 | read_lock(&bond->curr_slave_lock); |
| 1194 | curr = bond->curr_active_slave; |
| 1195 | read_unlock(&bond->curr_slave_lock); |
| 1196 | |
| 1197 | if (USES_PRIMARY(bond->params.mode) && curr) |
Wagner Ferenc | 7bd4650 | 2007-12-06 23:40:28 -0800 | [diff] [blame] | 1198 | count = sprintf(buf, "%s\n", curr->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1199 | return count; |
| 1200 | } |
| 1201 | |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1202 | static ssize_t bonding_store_active_slave(struct device *d, |
| 1203 | struct device_attribute *attr, |
| 1204 | const char *buf, size_t count) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1205 | { |
| 1206 | int i; |
| 1207 | struct slave *slave; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1208 | struct slave *old_active = NULL; |
| 1209 | struct slave *new_active = NULL; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1210 | struct bonding *bond = to_bond(d); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1211 | char ifname[IFNAMSIZ]; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1212 | |
Eric W. Biederman | 496a60c | 2009-05-13 17:02:50 +0000 | [diff] [blame] | 1213 | if (!rtnl_trylock()) |
| 1214 | return restart_syscall(); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1215 | |
| 1216 | block_netpoll_tx(); |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1217 | read_lock(&bond->lock); |
| 1218 | write_lock_bh(&bond->curr_slave_lock); |
Jay Vosburgh | 1466a21 | 2007-11-06 13:33:28 -0800 | [diff] [blame] | 1219 | |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1220 | if (!USES_PRIMARY(bond->params.mode)) { |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1221 | pr_info("%s: Unable to change active slave; %s is in mode %d\n", |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1222 | bond->dev->name, bond->dev->name, bond->params.mode); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1223 | goto out; |
| 1224 | } |
| 1225 | |
nikolay@redhat.com | c84e159 | 2012-10-31 06:03:52 +0000 | [diff] [blame] | 1226 | sscanf(buf, "%15s", ifname); /* IFNAMSIZ */ |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1227 | |
| 1228 | /* check to see if we are clearing active */ |
| 1229 | if (!strlen(ifname) || buf[0] == '\n') { |
| 1230 | pr_info("%s: Clearing current active slave.\n", |
| 1231 | bond->dev->name); |
| 1232 | bond->curr_active_slave = NULL; |
| 1233 | bond_select_active_slave(bond); |
| 1234 | goto out; |
| 1235 | } |
| 1236 | |
| 1237 | bond_for_each_slave(bond, slave, i) { |
| 1238 | if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) { |
| 1239 | old_active = bond->curr_active_slave; |
| 1240 | new_active = slave; |
| 1241 | if (new_active == old_active) { |
| 1242 | /* do nothing */ |
| 1243 | pr_info("%s: %s is already the current" |
| 1244 | " active slave.\n", |
| 1245 | bond->dev->name, |
| 1246 | slave->dev->name); |
| 1247 | goto out; |
| 1248 | } |
| 1249 | else { |
| 1250 | if ((new_active) && |
| 1251 | (old_active) && |
| 1252 | (new_active->link == BOND_LINK_UP) && |
| 1253 | IS_UP(new_active->dev)) { |
| 1254 | pr_info("%s: Setting %s as active" |
| 1255 | " slave.\n", |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1256 | bond->dev->name, |
| 1257 | slave->dev->name); |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1258 | bond_change_active_slave(bond, |
| 1259 | new_active); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1260 | } |
| 1261 | else { |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1262 | pr_info("%s: Could not set %s as" |
| 1263 | " active slave; either %s is" |
| 1264 | " down or the link is down.\n", |
| 1265 | bond->dev->name, |
| 1266 | slave->dev->name, |
| 1267 | slave->dev->name); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1268 | } |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1269 | goto out; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1270 | } |
| 1271 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1272 | } |
Andy Gospodarek | f4bb2e9 | 2011-07-26 11:12:27 +0000 | [diff] [blame] | 1273 | |
| 1274 | pr_info("%s: Unable to set %.*s as active slave.\n", |
| 1275 | bond->dev->name, (int)strlen(buf) - 1, buf); |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1276 | out: |
Jay Vosburgh | e934dd7 | 2008-01-17 16:24:57 -0800 | [diff] [blame] | 1277 | write_unlock_bh(&bond->curr_slave_lock); |
| 1278 | read_unlock(&bond->lock); |
Neil Horman | e843fa5 | 2010-10-13 16:01:50 +0000 | [diff] [blame] | 1279 | unblock_netpoll_tx(); |
| 1280 | |
Jay Vosburgh | 6603a6f | 2007-10-17 17:37:50 -0700 | [diff] [blame] | 1281 | rtnl_unlock(); |
| 1282 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1283 | return count; |
| 1284 | |
| 1285 | } |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1286 | static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR, |
| 1287 | bonding_show_active_slave, bonding_store_active_slave); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1288 | |
| 1289 | |
| 1290 | /* |
| 1291 | * Show link status of the bond interface. |
| 1292 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1293 | static ssize_t bonding_show_mii_status(struct device *d, |
| 1294 | struct device_attribute *attr, |
| 1295 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1296 | { |
| 1297 | struct slave *curr; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1298 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1299 | |
| 1300 | read_lock(&bond->curr_slave_lock); |
| 1301 | curr = bond->curr_active_slave; |
| 1302 | read_unlock(&bond->curr_slave_lock); |
| 1303 | |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1304 | return sprintf(buf, "%s\n", curr ? "up" : "down"); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1305 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1306 | static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1307 | |
| 1308 | |
| 1309 | /* |
| 1310 | * Show current 802.3ad aggregator ID. |
| 1311 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1312 | static ssize_t bonding_show_ad_aggregator(struct device *d, |
| 1313 | struct device_attribute *attr, |
| 1314 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1315 | { |
| 1316 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1317 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1318 | |
| 1319 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1320 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1321 | count = sprintf(buf, "%d\n", |
| 1322 | (bond_3ad_get_active_agg_info(bond, &ad_info)) |
| 1323 | ? 0 : ad_info.aggregator_id); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1324 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1325 | |
| 1326 | return count; |
| 1327 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1328 | static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1329 | |
| 1330 | |
| 1331 | /* |
| 1332 | * Show number of active 802.3ad ports. |
| 1333 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1334 | static ssize_t bonding_show_ad_num_ports(struct device *d, |
| 1335 | struct device_attribute *attr, |
| 1336 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1337 | { |
| 1338 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1339 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1340 | |
| 1341 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1342 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1343 | count = sprintf(buf, "%d\n", |
| 1344 | (bond_3ad_get_active_agg_info(bond, &ad_info)) |
| 1345 | ? 0 : ad_info.ports); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1346 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1347 | |
| 1348 | return count; |
| 1349 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1350 | static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1351 | |
| 1352 | |
| 1353 | /* |
| 1354 | * Show current 802.3ad actor key. |
| 1355 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1356 | static ssize_t bonding_show_ad_actor_key(struct device *d, |
| 1357 | struct device_attribute *attr, |
| 1358 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1359 | { |
| 1360 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1361 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1362 | |
| 1363 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1364 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1365 | count = sprintf(buf, "%d\n", |
| 1366 | (bond_3ad_get_active_agg_info(bond, &ad_info)) |
| 1367 | ? 0 : ad_info.actor_key); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1368 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1369 | |
| 1370 | return count; |
| 1371 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1372 | static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1373 | |
| 1374 | |
| 1375 | /* |
| 1376 | * Show current 802.3ad partner key. |
| 1377 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1378 | static ssize_t bonding_show_ad_partner_key(struct device *d, |
| 1379 | struct device_attribute *attr, |
| 1380 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1381 | { |
| 1382 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1383 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1384 | |
| 1385 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1386 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1387 | count = sprintf(buf, "%d\n", |
| 1388 | (bond_3ad_get_active_agg_info(bond, &ad_info)) |
| 1389 | ? 0 : ad_info.partner_key); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1390 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1391 | |
| 1392 | return count; |
| 1393 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1394 | static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1395 | |
| 1396 | |
| 1397 | /* |
| 1398 | * Show current 802.3ad partner mac. |
| 1399 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1400 | static ssize_t bonding_show_ad_partner_mac(struct device *d, |
| 1401 | struct device_attribute *attr, |
| 1402 | char *buf) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1403 | { |
| 1404 | int count = 0; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1405 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1406 | |
| 1407 | if (bond->params.mode == BOND_MODE_8023AD) { |
| 1408 | struct ad_info ad_info; |
Stephen Hemminger | 3d632c3 | 2009-06-12 19:02:48 +0000 | [diff] [blame] | 1409 | if (!bond_3ad_get_active_agg_info(bond, &ad_info)) |
Johannes Berg | e174961 | 2008-10-27 15:59:26 -0700 | [diff] [blame] | 1410 | count = sprintf(buf, "%pM\n", ad_info.partner_system); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1411 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1412 | |
| 1413 | return count; |
| 1414 | } |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1415 | static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1416 | |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1417 | /* |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1418 | * Show the queue_ids of the slaves in the current bond. |
| 1419 | */ |
| 1420 | static ssize_t bonding_show_queue_id(struct device *d, |
| 1421 | struct device_attribute *attr, |
| 1422 | char *buf) |
| 1423 | { |
| 1424 | struct slave *slave; |
| 1425 | int i, res = 0; |
| 1426 | struct bonding *bond = to_bond(d); |
| 1427 | |
| 1428 | if (!rtnl_trylock()) |
| 1429 | return restart_syscall(); |
| 1430 | |
| 1431 | read_lock(&bond->lock); |
| 1432 | bond_for_each_slave(bond, slave, i) { |
Nicolas de Pesloüan | 7923668 | 2010-07-14 18:24:54 -0700 | [diff] [blame] | 1433 | if (res > (PAGE_SIZE - IFNAMSIZ - 6)) { |
| 1434 | /* not enough space for another interface_name:queue_id pair */ |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1435 | if ((PAGE_SIZE - res) > 10) |
| 1436 | res = PAGE_SIZE - 10; |
| 1437 | res += sprintf(buf + res, "++more++ "); |
| 1438 | break; |
| 1439 | } |
| 1440 | res += sprintf(buf + res, "%s:%d ", |
| 1441 | slave->dev->name, slave->queue_id); |
| 1442 | } |
| 1443 | read_unlock(&bond->lock); |
| 1444 | if (res) |
| 1445 | buf[res-1] = '\n'; /* eat the leftover space */ |
| 1446 | rtnl_unlock(); |
| 1447 | return res; |
| 1448 | } |
| 1449 | |
| 1450 | /* |
| 1451 | * Set the queue_ids of the slaves in the current bond. The bond |
| 1452 | * interface must be enslaved for this to work. |
| 1453 | */ |
| 1454 | static ssize_t bonding_store_queue_id(struct device *d, |
| 1455 | struct device_attribute *attr, |
| 1456 | const char *buffer, size_t count) |
| 1457 | { |
| 1458 | struct slave *slave, *update_slave; |
| 1459 | struct bonding *bond = to_bond(d); |
| 1460 | u16 qid; |
| 1461 | int i, ret = count; |
| 1462 | char *delim; |
| 1463 | struct net_device *sdev = NULL; |
| 1464 | |
| 1465 | if (!rtnl_trylock()) |
| 1466 | return restart_syscall(); |
| 1467 | |
| 1468 | /* delim will point to queue id if successful */ |
| 1469 | delim = strchr(buffer, ':'); |
| 1470 | if (!delim) |
| 1471 | goto err_no_cmd; |
| 1472 | |
| 1473 | /* |
| 1474 | * Terminate string that points to device name and bump it |
| 1475 | * up one, so we can read the queue id there. |
| 1476 | */ |
| 1477 | *delim = '\0'; |
| 1478 | if (sscanf(++delim, "%hd\n", &qid) != 1) |
| 1479 | goto err_no_cmd; |
| 1480 | |
| 1481 | /* Check buffer length, valid ifname and queue id */ |
| 1482 | if (strlen(buffer) > IFNAMSIZ || |
| 1483 | !dev_valid_name(buffer) || |
Jiri Pirko | 8a540ff | 2012-07-20 02:28:50 +0000 | [diff] [blame] | 1484 | qid > bond->dev->real_num_tx_queues) |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1485 | goto err_no_cmd; |
| 1486 | |
| 1487 | /* Get the pointer to that interface if it exists */ |
| 1488 | sdev = __dev_get_by_name(dev_net(bond->dev), buffer); |
| 1489 | if (!sdev) |
| 1490 | goto err_no_cmd; |
| 1491 | |
| 1492 | read_lock(&bond->lock); |
| 1493 | |
| 1494 | /* Search for thes slave and check for duplicate qids */ |
| 1495 | update_slave = NULL; |
| 1496 | bond_for_each_slave(bond, slave, i) { |
| 1497 | if (sdev == slave->dev) |
| 1498 | /* |
| 1499 | * We don't need to check the matching |
| 1500 | * slave for dups, since we're overwriting it |
| 1501 | */ |
| 1502 | update_slave = slave; |
| 1503 | else if (qid && qid == slave->queue_id) { |
| 1504 | goto err_no_cmd_unlock; |
| 1505 | } |
| 1506 | } |
| 1507 | |
| 1508 | if (!update_slave) |
| 1509 | goto err_no_cmd_unlock; |
| 1510 | |
| 1511 | /* Actually set the qids for the slave */ |
| 1512 | update_slave->queue_id = qid; |
| 1513 | |
| 1514 | read_unlock(&bond->lock); |
| 1515 | out: |
| 1516 | rtnl_unlock(); |
| 1517 | return ret; |
| 1518 | |
| 1519 | err_no_cmd_unlock: |
| 1520 | read_unlock(&bond->lock); |
| 1521 | err_no_cmd: |
| 1522 | pr_info("invalid input for queue_id set for %s.\n", |
| 1523 | bond->dev->name); |
| 1524 | ret = -EPERM; |
| 1525 | goto out; |
| 1526 | } |
| 1527 | |
| 1528 | static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id, |
| 1529 | bonding_store_queue_id); |
| 1530 | |
| 1531 | |
| 1532 | /* |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1533 | * Show and set the all_slaves_active flag. |
| 1534 | */ |
| 1535 | static ssize_t bonding_show_slaves_active(struct device *d, |
| 1536 | struct device_attribute *attr, |
| 1537 | char *buf) |
| 1538 | { |
| 1539 | struct bonding *bond = to_bond(d); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1540 | |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1541 | return sprintf(buf, "%d\n", bond->params.all_slaves_active); |
| 1542 | } |
| 1543 | |
| 1544 | static ssize_t bonding_store_slaves_active(struct device *d, |
| 1545 | struct device_attribute *attr, |
| 1546 | const char *buf, size_t count) |
| 1547 | { |
| 1548 | int i, new_value, ret = count; |
| 1549 | struct bonding *bond = to_bond(d); |
| 1550 | struct slave *slave; |
| 1551 | |
| 1552 | if (sscanf(buf, "%d", &new_value) != 1) { |
| 1553 | pr_err("%s: no all_slaves_active value specified.\n", |
| 1554 | bond->dev->name); |
| 1555 | ret = -EINVAL; |
| 1556 | goto out; |
| 1557 | } |
| 1558 | |
| 1559 | if (new_value == bond->params.all_slaves_active) |
| 1560 | goto out; |
| 1561 | |
| 1562 | if ((new_value == 0) || (new_value == 1)) { |
| 1563 | bond->params.all_slaves_active = new_value; |
| 1564 | } else { |
| 1565 | pr_info("%s: Ignoring invalid all_slaves_active value %d.\n", |
| 1566 | bond->dev->name, new_value); |
| 1567 | ret = -EINVAL; |
| 1568 | goto out; |
| 1569 | } |
| 1570 | |
| 1571 | bond_for_each_slave(bond, slave, i) { |
Jiri Pirko | e30bc06 | 2011-03-12 03:14:37 +0000 | [diff] [blame] | 1572 | if (!bond_is_active_slave(slave)) { |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1573 | if (new_value) |
Jiri Pirko | 2d7011c | 2011-03-16 08:46:43 +0000 | [diff] [blame] | 1574 | slave->inactive = 0; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1575 | else |
Jiri Pirko | 2d7011c | 2011-03-16 08:46:43 +0000 | [diff] [blame] | 1576 | slave->inactive = 1; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1577 | } |
| 1578 | } |
| 1579 | out: |
Jiri Pirko | 672bda3 | 2011-01-25 11:03:25 +0000 | [diff] [blame] | 1580 | return ret; |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1581 | } |
| 1582 | static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR, |
| 1583 | bonding_show_slaves_active, bonding_store_slaves_active); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1584 | |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1585 | /* |
| 1586 | * Show and set the number of IGMP membership reports to send on link failure |
| 1587 | */ |
| 1588 | static ssize_t bonding_show_resend_igmp(struct device *d, |
Flavio Leitner | 94265cf | 2011-05-25 08:38:58 +0000 | [diff] [blame] | 1589 | struct device_attribute *attr, |
| 1590 | char *buf) |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1591 | { |
| 1592 | struct bonding *bond = to_bond(d); |
| 1593 | |
| 1594 | return sprintf(buf, "%d\n", bond->params.resend_igmp); |
| 1595 | } |
| 1596 | |
| 1597 | static ssize_t bonding_store_resend_igmp(struct device *d, |
Flavio Leitner | 94265cf | 2011-05-25 08:38:58 +0000 | [diff] [blame] | 1598 | struct device_attribute *attr, |
| 1599 | const char *buf, size_t count) |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1600 | { |
| 1601 | int new_value, ret = count; |
| 1602 | struct bonding *bond = to_bond(d); |
| 1603 | |
| 1604 | if (sscanf(buf, "%d", &new_value) != 1) { |
| 1605 | pr_err("%s: no resend_igmp value specified.\n", |
| 1606 | bond->dev->name); |
| 1607 | ret = -EINVAL; |
| 1608 | goto out; |
| 1609 | } |
| 1610 | |
Flavio Leitner | 94265cf | 2011-05-25 08:38:58 +0000 | [diff] [blame] | 1611 | if (new_value < 0 || new_value > 255) { |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1612 | pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n", |
| 1613 | bond->dev->name, new_value); |
| 1614 | ret = -EINVAL; |
| 1615 | goto out; |
| 1616 | } |
| 1617 | |
| 1618 | pr_info("%s: Setting resend_igmp to %d.\n", |
| 1619 | bond->dev->name, new_value); |
| 1620 | bond->params.resend_igmp = new_value; |
| 1621 | out: |
| 1622 | return ret; |
| 1623 | } |
| 1624 | |
| 1625 | static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR, |
| 1626 | bonding_show_resend_igmp, bonding_store_resend_igmp); |
| 1627 | |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1628 | static struct attribute *per_bond_attrs[] = { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1629 | &dev_attr_slaves.attr, |
| 1630 | &dev_attr_mode.attr, |
Jay Vosburgh | dd957c5 | 2007-10-09 19:57:24 -0700 | [diff] [blame] | 1631 | &dev_attr_fail_over_mac.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1632 | &dev_attr_arp_validate.attr, |
| 1633 | &dev_attr_arp_interval.attr, |
| 1634 | &dev_attr_arp_ip_target.attr, |
| 1635 | &dev_attr_downdelay.attr, |
| 1636 | &dev_attr_updelay.attr, |
| 1637 | &dev_attr_lacp_rate.attr, |
Jay Vosburgh | fd989c8 | 2008-11-04 17:51:16 -0800 | [diff] [blame] | 1638 | &dev_attr_ad_select.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1639 | &dev_attr_xmit_hash_policy.attr, |
Ben Hutchings | ad246c9 | 2011-04-26 15:25:52 +0000 | [diff] [blame] | 1640 | &dev_attr_num_grat_arp.attr, |
| 1641 | &dev_attr_num_unsol_na.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1642 | &dev_attr_miimon.attr, |
| 1643 | &dev_attr_primary.attr, |
Jiri Pirko | a549952 | 2009-09-25 03:28:09 +0000 | [diff] [blame] | 1644 | &dev_attr_primary_reselect.attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1645 | &dev_attr_use_carrier.attr, |
| 1646 | &dev_attr_active_slave.attr, |
| 1647 | &dev_attr_mii_status.attr, |
| 1648 | &dev_attr_ad_aggregator.attr, |
| 1649 | &dev_attr_ad_num_ports.attr, |
| 1650 | &dev_attr_ad_actor_key.attr, |
| 1651 | &dev_attr_ad_partner_key.attr, |
| 1652 | &dev_attr_ad_partner_mac.attr, |
Andy Gospodarek | bb1d912 | 2010-06-02 08:40:18 +0000 | [diff] [blame] | 1653 | &dev_attr_queue_id.attr, |
Andy Gospodarek | ebd8e49 | 2010-06-02 08:39:21 +0000 | [diff] [blame] | 1654 | &dev_attr_all_slaves_active.attr, |
Flavio Leitner | c2952c3 | 2010-10-05 14:23:59 +0000 | [diff] [blame] | 1655 | &dev_attr_resend_igmp.attr, |
stephen hemminger | 655f891 | 2011-06-22 09:54:39 +0000 | [diff] [blame] | 1656 | &dev_attr_min_links.attr, |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1657 | NULL, |
| 1658 | }; |
| 1659 | |
| 1660 | static struct attribute_group bonding_group = { |
| 1661 | .name = "bonding", |
| 1662 | .attrs = per_bond_attrs, |
| 1663 | }; |
| 1664 | |
| 1665 | /* |
| 1666 | * Initialize sysfs. This sets up the bonding_masters file in |
| 1667 | * /sys/class/net. |
| 1668 | */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1669 | int bond_create_sysfs(struct bond_net *bn) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1670 | { |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 1671 | int ret; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1672 | |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1673 | bn->class_attr_bonding_masters = class_attr_bonding_masters; |
Eric W. Biederman | 01718e3 | 2011-10-21 22:43:07 +0000 | [diff] [blame] | 1674 | sysfs_attr_init(&bn->class_attr_bonding_masters.attr); |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1675 | |
| 1676 | ret = netdev_class_create_file(&bn->class_attr_bonding_masters); |
Jay Vosburgh | 877cbd3 | 2007-01-19 18:15:47 -0800 | [diff] [blame] | 1677 | /* |
| 1678 | * Permit multiple loads of the module by ignoring failures to |
| 1679 | * create the bonding_masters sysfs file. Bonding devices |
| 1680 | * created by second or subsequent loads of the module will |
| 1681 | * not be listed in, or controllable by, bonding_masters, but |
| 1682 | * will have the usual "bonding" sysfs directory. |
| 1683 | * |
| 1684 | * This is done to preserve backwards compatibility for |
| 1685 | * initscripts/sysconfig, which load bonding multiple times to |
| 1686 | * configure multiple bonding devices. |
| 1687 | */ |
| 1688 | if (ret == -EEXIST) { |
Stephen Hemminger | 38d2f38 | 2008-05-14 22:35:04 -0700 | [diff] [blame] | 1689 | /* Is someone being kinky and naming a device bonding_master? */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1690 | if (__dev_get_by_name(bn->net, |
Stephen Hemminger | 38d2f38 | 2008-05-14 22:35:04 -0700 | [diff] [blame] | 1691 | class_attr_bonding_masters.attr.name)) |
Joe Perches | a4aee5c | 2009-12-13 20:06:07 -0800 | [diff] [blame] | 1692 | pr_err("network device named %s already exists in sysfs", |
Stephen Hemminger | 38d2f38 | 2008-05-14 22:35:04 -0700 | [diff] [blame] | 1693 | class_attr_bonding_masters.attr.name); |
Stephen Hemminger | 130aa61 | 2009-06-11 05:46:04 -0700 | [diff] [blame] | 1694 | ret = 0; |
Jay Vosburgh | 877cbd3 | 2007-01-19 18:15:47 -0800 | [diff] [blame] | 1695 | } |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1696 | |
| 1697 | return ret; |
| 1698 | |
| 1699 | } |
| 1700 | |
| 1701 | /* |
| 1702 | * Remove /sys/class/net/bonding_masters. |
| 1703 | */ |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1704 | void bond_destroy_sysfs(struct bond_net *bn) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1705 | { |
Eric W. Biederman | 4c22400 | 2011-10-12 21:56:25 +0000 | [diff] [blame] | 1706 | netdev_class_remove_file(&bn->class_attr_bonding_masters); |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | /* |
| 1710 | * Initialize sysfs for each bond. This sets up and registers |
| 1711 | * the 'bondctl' directory for each individual bond under /sys/class/net. |
| 1712 | */ |
Eric W. Biederman | 6151b3d | 2009-10-29 14:18:22 +0000 | [diff] [blame] | 1713 | void bond_prepare_sysfs_group(struct bonding *bond) |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1714 | { |
Eric W. Biederman | 6151b3d | 2009-10-29 14:18:22 +0000 | [diff] [blame] | 1715 | bond->dev->sysfs_groups[0] = &bonding_group; |
Mitch Williams | b76cdba | 2005-11-09 10:36:41 -0800 | [diff] [blame] | 1716 | } |
| 1717 | |