blob: 4ef7e2fd9fe6f5b577c13fc56a5b2ae45a54a0bd [file] [log] [blame]
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001/*
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 Williamsb76cdba2005-11-09 10:36:41 -080021 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -080022
23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Mitch Williamsb76cdba2005-11-09 10:36:41 -080025#include <linux/kernel.h>
26#include <linux/module.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080027#include <linux/device.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040028#include <linux/sched.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080029#include <linux/sysdev.h>
30#include <linux/fs.h>
31#include <linux/types.h>
32#include <linux/string.h>
33#include <linux/netdevice.h>
34#include <linux/inetdevice.h>
35#include <linux/in.h>
36#include <linux/sysfs.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080037#include <linux/ctype.h>
38#include <linux/inet.h>
39#include <linux/rtnetlink.h>
Stephen Hemminger5c5129b2009-06-12 19:02:51 +000040#include <linux/etherdevice.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070041#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000042#include <net/netns/generic.h>
43#include <linux/nsproxy.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080044
Mitch Williamsb76cdba2005-11-09 10:36:41 -080045#include "bonding.h"
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -080046
Stephen Hemminger3d632c32009-06-12 19:02:48 +000047#define to_dev(obj) container_of(obj, struct device, kobj)
Wang Chen454d7c92008-11-12 23:37:49 -080048#define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
Mitch Williamsb76cdba2005-11-09 10:36:41 -080049
Mitch Williamsb76cdba2005-11-09 10:36:41 -080050/*
51 * "show" function for the bond_masters attribute.
52 * The class parameter is ignored.
53 */
Andi Kleen28812fe2010-01-05 12:48:07 +010054static ssize_t bonding_show_bonds(struct class *cls,
55 struct class_attribute *attr,
56 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -080057{
Eric W. Biederman4c224002011-10-12 21:56:25 +000058 struct bond_net *bn =
59 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080060 int res = 0;
61 struct bonding *bond;
62
Stephen Hemminger7e083842009-06-12 19:02:46 +000063 rtnl_lock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080064
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000065 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -080066 if (res > (PAGE_SIZE - IFNAMSIZ)) {
67 /* not enough space for another interface name */
68 if ((PAGE_SIZE - res) > 10)
69 res = PAGE_SIZE - 10;
Wagner Ferencb8843662007-12-06 23:40:30 -080070 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -080071 break;
72 }
Wagner Ferencb8843662007-12-06 23:40:30 -080073 res += sprintf(buf + res, "%s ", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080074 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -080075 if (res)
76 buf[res-1] = '\n'; /* eat the leftover space */
Stephen Hemminger7e083842009-06-12 19:02:46 +000077
78 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080079 return res;
80}
81
Eric W. Biederman4c224002011-10-12 21:56:25 +000082static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname)
Stephen Hemminger373500d2009-06-12 19:02:50 +000083{
84 struct bonding *bond;
85
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000086 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Stephen Hemminger373500d2009-06-12 19:02:50 +000087 if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0)
88 return bond->dev;
89 }
90 return NULL;
91}
92
Mitch Williamsb76cdba2005-11-09 10:36:41 -080093/*
94 * "store" function for the bond_masters attribute. This is what
95 * creates and deletes entire bonds.
96 *
97 * The class parameter is ignored.
98 *
99 */
100
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101static ssize_t bonding_store_bonds(struct class *cls,
Andi Kleen28812fe2010-01-05 12:48:07 +0100102 struct class_attribute *attr,
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000103 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800104{
Eric W. Biederman4c224002011-10-12 21:56:25 +0000105 struct bond_net *bn =
106 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800107 char command[IFNAMSIZ + 1] = {0, };
108 char *ifname;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800109 int rv, res = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800110
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800111 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
112 ifname = command + 1;
113 if ((strlen(command) <= 1) ||
114 !dev_valid_name(ifname))
115 goto err_no_cmd;
116
117 if (command[0] == '+') {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800118 pr_info("%s is being created...\n", ifname);
Eric W. Biederman4c224002011-10-12 21:56:25 +0000119 rv = bond_create(bn->net, ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800120 if (rv) {
Phil Oester5f86cad12011-03-14 06:22:06 +0000121 if (rv == -EEXIST)
122 pr_info("%s already exists.\n", ifname);
123 else
124 pr_info("%s creation failed.\n", ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800125 res = rv;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800126 }
Stephen Hemminger373500d2009-06-12 19:02:50 +0000127 } else if (command[0] == '-') {
128 struct net_device *bond_dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800129
Jay Vosburgh027ea042008-01-17 16:25:02 -0800130 rtnl_lock();
Eric W. Biederman4c224002011-10-12 21:56:25 +0000131 bond_dev = bond_get_by_name(bn, ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000132 if (bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800133 pr_info("%s is being deleted...\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000134 unregister_netdevice(bond_dev);
135 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800136 pr_err("unable to delete non-existent %s\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000137 res = -ENODEV;
138 }
139 rtnl_unlock();
140 } else
141 goto err_no_cmd;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800142
Stephen Hemminger373500d2009-06-12 19:02:50 +0000143 /* Always return either count or an error. If you return 0, you'll
144 * get called forever, which is bad.
145 */
146 return res;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800147
148err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800149 pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n");
Jay Vosburghc4ebc662008-05-02 17:49:38 -0700150 return -EPERM;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800151}
Stephen Hemminger373500d2009-06-12 19:02:50 +0000152
Eric W. Biederman4c224002011-10-12 21:56:25 +0000153static const void *bonding_namespace(struct class *cls,
154 const struct class_attribute *attr)
155{
156 const struct bond_net *bn =
157 container_of(attr, struct bond_net, class_attr_bonding_masters);
158 return bn->net;
159}
160
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800161/* class attribute for bond_masters file. This ends up in /sys/class/net */
Eric W. Biederman4c224002011-10-12 21:56:25 +0000162static const struct class_attribute class_attr_bonding_masters = {
163 .attr = {
164 .name = "bonding_masters",
165 .mode = S_IWUSR | S_IRUGO,
166 },
167 .show = bonding_show_bonds,
168 .store = bonding_store_bonds,
169 .namespace = bonding_namespace,
170};
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800171
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000172int bond_create_slave_symlinks(struct net_device *master,
173 struct net_device *slave)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800174{
175 char linkname[IFNAMSIZ+7];
176 int ret = 0;
177
178 /* first, create a link from the slave back to the master */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700179 ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj),
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800180 "master");
181 if (ret)
182 return ret;
183 /* next, create a link from the master to the slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000184 sprintf(linkname, "slave_%s", slave->name);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700185 ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj),
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800186 linkname);
187 return ret;
188
189}
190
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000191void bond_destroy_slave_symlinks(struct net_device *master,
192 struct net_device *slave)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800193{
194 char linkname[IFNAMSIZ+7];
195
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700196 sysfs_remove_link(&(slave->dev.kobj), "master");
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000197 sprintf(linkname, "slave_%s", slave->name);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700198 sysfs_remove_link(&(master->dev.kobj), linkname);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800199}
200
201
202/*
203 * Show the slaves in the current bond.
204 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700205static ssize_t bonding_show_slaves(struct device *d,
206 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800207{
208 struct slave *slave;
209 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700210 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800211
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700212 read_lock(&bond->lock);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800213 bond_for_each_slave(bond, slave, i) {
214 if (res > (PAGE_SIZE - IFNAMSIZ)) {
215 /* not enough space for another interface name */
216 if ((PAGE_SIZE - res) > 10)
217 res = PAGE_SIZE - 10;
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800218 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800219 break;
220 }
221 res += sprintf(buf + res, "%s ", slave->dev->name);
222 }
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700223 read_unlock(&bond->lock);
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800224 if (res)
225 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800226 return res;
227}
228
229/*
230 * Set the slaves in the current bond. The bond interface must be
231 * up for this to succeed.
Jiri Pirkof9f35452010-05-18 05:46:39 +0000232 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
233 * All hard work should be done there.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800234 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700235static ssize_t bonding_store_slaves(struct device *d,
236 struct device_attribute *attr,
237 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800238{
239 char command[IFNAMSIZ + 1] = { 0, };
240 char *ifname;
Jiri Pirkof9f35452010-05-18 05:46:39 +0000241 int res, ret = count;
242 struct net_device *dev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700243 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800244
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000245 if (!rtnl_trylock())
246 return restart_syscall();
Jay Vosburgh027ea042008-01-17 16:25:02 -0800247
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800248 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
249 ifname = command + 1;
250 if ((strlen(command) <= 1) ||
251 !dev_valid_name(ifname))
252 goto err_no_cmd;
253
Jiri Pirkof9f35452010-05-18 05:46:39 +0000254 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
255 if (!dev) {
256 pr_info("%s: Interface %s does not exist!\n",
257 bond->dev->name, ifname);
258 ret = -ENODEV;
259 goto out;
260 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800261
Jiri Pirkof9f35452010-05-18 05:46:39 +0000262 switch (command[0]) {
263 case '+':
264 pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800265 res = bond_enslave(bond->dev, dev);
Jiri Pirkof9f35452010-05-18 05:46:39 +0000266 break;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000267
Jiri Pirkof9f35452010-05-18 05:46:39 +0000268 case '-':
269 pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name);
270 res = bond_release(bond->dev, dev);
271 break;
272
273 default:
274 goto err_no_cmd;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800275 }
276
Jiri Pirkof9f35452010-05-18 05:46:39 +0000277 if (res)
278 ret = res;
279 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800280
281err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800282 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
283 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800284 ret = -EPERM;
285
286out:
Jay Vosburgh027ea042008-01-17 16:25:02 -0800287 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800288 return ret;
289}
290
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000291static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
292 bonding_store_slaves);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800293
294/*
295 * Show and set the bonding mode. The bond interface must be down to
296 * change the mode.
297 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700298static ssize_t bonding_show_mode(struct device *d,
299 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800300{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700301 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800302
303 return sprintf(buf, "%s %d\n",
304 bond_mode_tbl[bond->params.mode].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800305 bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800306}
307
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700308static ssize_t bonding_store_mode(struct device *d,
309 struct device_attribute *attr,
310 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800311{
312 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700313 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800314
315 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800316 pr_err("unable to update mode of %s because interface is up.\n",
317 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800318 ret = -EPERM;
319 goto out;
320 }
321
Veaceslav Falico4a8bb7e2011-11-15 06:44:42 +0000322 if (bond->slave_cnt > 0) {
323 pr_err("unable to update mode of %s because it has slaves.\n",
324 bond->dev->name);
325 ret = -EPERM;
326 goto out;
327 }
328
Jay Vosburghece95f72008-01-17 16:25:01 -0800329 new_value = bond_parse_parm(buf, bond_mode_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800330 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800331 pr_err("%s: Ignoring invalid mode value %.*s.\n",
332 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800333 ret = -EINVAL;
334 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800335 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000336 if ((new_value == BOND_MODE_ALB ||
337 new_value == BOND_MODE_TLB) &&
338 bond->params.arp_interval) {
339 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
340 bond->dev->name, bond_mode_tbl[new_value].modename);
341 ret = -EINVAL;
342 goto out;
343 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000344
345 bond->params.mode = new_value;
346 bond_set_mode_ops(bond, bond->params.mode);
347 pr_info("%s: setting mode to %s (%d).\n",
348 bond->dev->name, bond_mode_tbl[new_value].modename,
349 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800350out:
351 return ret;
352}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000353static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
354 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800355
356/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000357 * Show and set the bonding transmit hash method.
358 * The bond interface must be down to change the xmit hash policy.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800359 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700360static ssize_t bonding_show_xmit_hash(struct device *d,
361 struct device_attribute *attr,
362 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800363{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700364 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800365
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800366 return sprintf(buf, "%s %d\n",
367 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
368 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800369}
370
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700371static ssize_t bonding_store_xmit_hash(struct device *d,
372 struct device_attribute *attr,
373 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800374{
375 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700376 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800377
378 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800379 pr_err("%s: Interface is up. Unable to update xmit policy.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800380 bond->dev->name);
381 ret = -EPERM;
382 goto out;
383 }
384
Jay Vosburghece95f72008-01-17 16:25:01 -0800385 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800386 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800387 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800388 bond->dev->name,
389 (int)strlen(buf) - 1, buf);
390 ret = -EINVAL;
391 goto out;
392 } else {
393 bond->params.xmit_policy = new_value;
394 bond_set_mode_ops(bond, bond->params.mode);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800395 pr_info("%s: setting xmit hash policy to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000396 bond->dev->name,
397 xmit_hashtype_tbl[new_value].modename, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800398 }
399out:
400 return ret;
401}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000402static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
403 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800404
405/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700406 * Show and set arp_validate.
407 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700408static ssize_t bonding_show_arp_validate(struct device *d,
409 struct device_attribute *attr,
410 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700411{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700412 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700413
414 return sprintf(buf, "%s %d\n",
415 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800416 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700417}
418
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700419static ssize_t bonding_store_arp_validate(struct device *d,
420 struct device_attribute *attr,
421 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700422{
423 int new_value;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700424 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700425
Jay Vosburghece95f72008-01-17 16:25:01 -0800426 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700427 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800428 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700429 bond->dev->name, buf);
430 return -EINVAL;
431 }
432 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800433 pr_err("%s: arp_validate only supported in active-backup mode.\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700434 bond->dev->name);
435 return -EINVAL;
436 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800437 pr_info("%s: setting arp_validate to %s (%d).\n",
438 bond->dev->name, arp_validate_tbl[new_value].modename,
439 new_value);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700440
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700441 bond->params.arp_validate = new_value;
442
443 return count;
444}
445
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000446static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
447 bonding_store_arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700448
449/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700450 * Show and store fail_over_mac. User only allowed to change the
451 * value when there are no slaves.
452 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000453static ssize_t bonding_show_fail_over_mac(struct device *d,
454 struct device_attribute *attr,
455 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700456{
457 struct bonding *bond = to_bond(d);
458
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700459 return sprintf(buf, "%s %d\n",
460 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
461 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700462}
463
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000464static ssize_t bonding_store_fail_over_mac(struct device *d,
465 struct device_attribute *attr,
466 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700467{
468 int new_value;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700469 struct bonding *bond = to_bond(d);
470
471 if (bond->slave_cnt != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800472 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700473 bond->dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700474 return -EPERM;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700475 }
476
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700477 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
478 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800479 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700480 bond->dev->name, buf);
481 return -EINVAL;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700482 }
483
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700484 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800485 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
486 bond->dev->name, fail_over_mac_tbl[new_value].modename,
487 new_value);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700488
489 return count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700490}
491
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000492static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
493 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700494
495/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800496 * Show and set the arp timer interval. There are two tricky bits
497 * here. First, if ARP monitoring is activated, then we must disable
498 * MII monitoring. Second, if the ARP timer isn't running, we must
499 * start it.
500 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700501static ssize_t bonding_show_arp_interval(struct device *d,
502 struct device_attribute *attr,
503 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800504{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700505 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800506
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800507 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800508}
509
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700510static ssize_t bonding_store_arp_interval(struct device *d,
511 struct device_attribute *attr,
512 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800513{
514 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700515 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800516
517 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800518 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800519 bond->dev->name);
520 ret = -EINVAL;
521 goto out;
522 }
523 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800524 pr_err("%s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800525 bond->dev->name, new_value, INT_MAX);
526 ret = -EINVAL;
527 goto out;
528 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000529 if (bond->params.mode == BOND_MODE_ALB ||
530 bond->params.mode == BOND_MODE_TLB) {
531 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
532 bond->dev->name, bond->dev->name);
533 ret = -EINVAL;
534 goto out;
535 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800536 pr_info("%s: Setting ARP monitoring interval to %d.\n",
537 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800538 bond->params.arp_interval = new_value;
539 if (bond->params.miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800540 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
541 bond->dev->name, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800542 bond->params.miimon = 0;
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700543 if (delayed_work_pending(&bond->mii_work)) {
544 cancel_delayed_work(&bond->mii_work);
545 flush_workqueue(bond->wq);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800546 }
547 }
548 if (!bond->params.arp_targets[0]) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800549 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
550 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800551 }
552 if (bond->dev->flags & IFF_UP) {
553 /* If the interface is up, we may need to fire off
554 * the ARP timer. If the interface is down, the
555 * timer will get fired off when the open function
556 * is called.
557 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700558 if (!delayed_work_pending(&bond->arp_work)) {
559 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
560 INIT_DELAYED_WORK(&bond->arp_work,
561 bond_activebackup_arp_mon);
562 else
563 INIT_DELAYED_WORK(&bond->arp_work,
564 bond_loadbalance_arp_mon);
565
566 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800567 }
568 }
569
570out:
571 return ret;
572}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000573static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
574 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800575
576/*
577 * Show and set the arp targets.
578 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700579static ssize_t bonding_show_arp_targets(struct device *d,
580 struct device_attribute *attr,
581 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800582{
583 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700584 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800585
586 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
587 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700588 res += sprintf(buf + res, "%pI4 ",
589 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800590 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800591 if (res)
592 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800593 return res;
594}
595
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700596static ssize_t bonding_store_arp_targets(struct device *d,
597 struct device_attribute *attr,
598 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800599{
Al Virod3bb52b2007-08-22 20:06:58 -0400600 __be32 newtarget;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800601 int i = 0, done = 0, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700602 struct bonding *bond = to_bond(d);
Al Virod3bb52b2007-08-22 20:06:58 -0400603 __be32 *targets;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800604
605 targets = bond->params.arp_targets;
606 newtarget = in_aton(buf + 1);
607 /* look for adds */
608 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400609 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800610 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700611 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800612 ret = -EINVAL;
613 goto out;
614 }
615 /* look for an empty slot to put the target in, and check for dupes */
Brian Haley5a31bec2009-04-13 00:11:30 -0700616 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800617 if (targets[i] == newtarget) { /* duplicate */
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800618 pr_err("%s: ARP target %pI4 is already present\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700619 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800620 ret = -EINVAL;
621 goto out;
622 }
Brian Haley5a31bec2009-04-13 00:11:30 -0700623 if (targets[i] == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800624 pr_info("%s: adding ARP target %pI4.\n",
625 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800626 done = 1;
627 targets[i] = newtarget;
628 }
629 }
630 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800631 pr_err("%s: ARP target table is full!\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800632 bond->dev->name);
633 ret = -EINVAL;
634 goto out;
635 }
636
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000637 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400638 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800639 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700640 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800641 ret = -EINVAL;
642 goto out;
643 }
644
Brian Haley5a31bec2009-04-13 00:11:30 -0700645 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800646 if (targets[i] == newtarget) {
Brian Haley5a31bec2009-04-13 00:11:30 -0700647 int j;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800648 pr_info("%s: removing ARP target %pI4.\n",
649 bond->dev->name, &newtarget);
Brian Haley5a31bec2009-04-13 00:11:30 -0700650 for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++)
651 targets[j] = targets[j+1];
652
653 targets[j] = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800654 done = 1;
655 }
656 }
657 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800658 pr_info("%s: unable to remove nonexistent ARP target %pI4.\n",
659 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800660 ret = -EINVAL;
661 goto out;
662 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000663 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800664 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
665 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800666 ret = -EPERM;
667 goto out;
668 }
669
670out:
671 return ret;
672}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700673static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800674
675/*
676 * Show and set the up and down delays. These must be multiples of the
677 * MII monitoring value, and are stored internally as the multiplier.
678 * Thus, we must translate to MS for the real world.
679 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700680static ssize_t bonding_show_downdelay(struct device *d,
681 struct device_attribute *attr,
682 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800683{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700684 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800685
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800686 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800687}
688
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700689static ssize_t bonding_store_downdelay(struct device *d,
690 struct device_attribute *attr,
691 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800692{
693 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700694 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800695
696 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800697 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800698 bond->dev->name);
699 ret = -EPERM;
700 goto out;
701 }
702
703 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800704 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800705 ret = -EINVAL;
706 goto out;
707 }
708 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800709 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800710 bond->dev->name, new_value, 1, INT_MAX);
711 ret = -EINVAL;
712 goto out;
713 } else {
714 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800715 pr_warning("%s: Warning: down delay (%d) is not a multiple of miimon (%d), delay rounded to %d ms\n",
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000716 bond->dev->name, new_value,
717 bond->params.miimon,
718 (new_value / bond->params.miimon) *
719 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800720 }
721 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800722 pr_info("%s: Setting down delay to %d.\n",
723 bond->dev->name,
724 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800725
726 }
727
728out:
729 return ret;
730}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000731static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
732 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800733
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700734static ssize_t bonding_show_updelay(struct device *d,
735 struct device_attribute *attr,
736 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800737{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700738 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800739
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800740 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800741
742}
743
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700744static ssize_t bonding_store_updelay(struct device *d,
745 struct device_attribute *attr,
746 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800747{
748 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700749 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800750
751 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800752 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800753 bond->dev->name);
754 ret = -EPERM;
755 goto out;
756 }
757
758 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800759 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800760 bond->dev->name);
761 ret = -EINVAL;
762 goto out;
763 }
764 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800765 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800766 bond->dev->name, new_value, 1, INT_MAX);
767 ret = -EINVAL;
768 goto out;
769 } else {
770 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800771 pr_warning("%s: Warning: up delay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000772 bond->dev->name, new_value,
773 bond->params.miimon,
774 (new_value / bond->params.miimon) *
775 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800776 }
777 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800778 pr_info("%s: Setting up delay to %d.\n",
779 bond->dev->name,
780 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800781 }
782
783out:
784 return ret;
785}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000786static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
787 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800788
789/*
790 * Show and set the LACP interval. Interface must be down, and the mode
791 * must be set to 802.3ad mode.
792 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700793static ssize_t bonding_show_lacp(struct device *d,
794 struct device_attribute *attr,
795 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800796{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700797 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800798
799 return sprintf(buf, "%s %d\n",
800 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800801 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800802}
803
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700804static ssize_t bonding_store_lacp(struct device *d,
805 struct device_attribute *attr,
806 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800807{
808 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700809 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800810
811 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800812 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800813 bond->dev->name);
814 ret = -EPERM;
815 goto out;
816 }
817
818 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800819 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800820 bond->dev->name);
821 ret = -EPERM;
822 goto out;
823 }
824
Jay Vosburghece95f72008-01-17 16:25:01 -0800825 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800826
827 if ((new_value == 1) || (new_value == 0)) {
828 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000829 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800830 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000831 bond->dev->name, bond_lacp_tbl[new_value].modename,
832 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800833 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800834 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000835 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800836 ret = -EINVAL;
837 }
838out:
839 return ret;
840}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000841static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
842 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800843
stephen hemminger655f8912011-06-22 09:54:39 +0000844static ssize_t bonding_show_min_links(struct device *d,
845 struct device_attribute *attr,
846 char *buf)
847{
848 struct bonding *bond = to_bond(d);
849
850 return sprintf(buf, "%d\n", bond->params.min_links);
851}
852
853static ssize_t bonding_store_min_links(struct device *d,
854 struct device_attribute *attr,
855 const char *buf, size_t count)
856{
857 struct bonding *bond = to_bond(d);
858 int ret;
859 unsigned int new_value;
860
861 ret = kstrtouint(buf, 0, &new_value);
862 if (ret < 0) {
863 pr_err("%s: Ignoring invalid min links value %s.\n",
864 bond->dev->name, buf);
865 return ret;
866 }
867
868 pr_info("%s: Setting min links value to %u\n",
869 bond->dev->name, new_value);
870 bond->params.min_links = new_value;
871 return count;
872}
873static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
874 bonding_show_min_links, bonding_store_min_links);
875
Jay Vosburghfd989c82008-11-04 17:51:16 -0800876static ssize_t bonding_show_ad_select(struct device *d,
877 struct device_attribute *attr,
878 char *buf)
879{
880 struct bonding *bond = to_bond(d);
881
882 return sprintf(buf, "%s %d\n",
883 ad_select_tbl[bond->params.ad_select].modename,
884 bond->params.ad_select);
885}
886
887
888static ssize_t bonding_store_ad_select(struct device *d,
889 struct device_attribute *attr,
890 const char *buf, size_t count)
891{
892 int new_value, ret = count;
893 struct bonding *bond = to_bond(d);
894
895 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800896 pr_err("%s: Unable to update ad_select because interface is up.\n",
897 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800898 ret = -EPERM;
899 goto out;
900 }
901
902 new_value = bond_parse_parm(buf, ad_select_tbl);
903
904 if (new_value != -1) {
905 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800906 pr_info("%s: Setting ad_select to %s (%d).\n",
907 bond->dev->name, ad_select_tbl[new_value].modename,
908 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800909 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800910 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800911 bond->dev->name, (int)strlen(buf) - 1, buf);
912 ret = -EINVAL;
913 }
914out:
915 return ret;
916}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000917static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
918 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800919
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800920/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000921 * Show and set the number of peer notifications to send after a failover event.
922 */
923static ssize_t bonding_show_num_peer_notif(struct device *d,
924 struct device_attribute *attr,
925 char *buf)
926{
927 struct bonding *bond = to_bond(d);
928 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
929}
930
931static ssize_t bonding_store_num_peer_notif(struct device *d,
932 struct device_attribute *attr,
933 const char *buf, size_t count)
934{
935 struct bonding *bond = to_bond(d);
936 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
937 return err ? err : count;
938}
939static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
940 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
941static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
942 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
943
944/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800945 * Show and set the MII monitor interval. There are two tricky bits
946 * here. First, if MII monitoring is activated, then we must disable
947 * ARP monitoring. Second, if the timer isn't running, we must
948 * start it.
949 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700950static ssize_t bonding_show_miimon(struct device *d,
951 struct device_attribute *attr,
952 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800953{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700954 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800955
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800956 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800957}
958
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700959static ssize_t bonding_store_miimon(struct device *d,
960 struct device_attribute *attr,
961 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800962{
963 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700964 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800965
966 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800967 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800968 bond->dev->name);
969 ret = -EINVAL;
970 goto out;
971 }
972 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800973 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800974 bond->dev->name, new_value, 1, INT_MAX);
975 ret = -EINVAL;
976 goto out;
977 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800978 pr_info("%s: Setting MII monitoring interval to %d.\n",
979 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800980 bond->params.miimon = new_value;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000981 if (bond->params.updelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800982 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
983 bond->dev->name,
984 bond->params.updelay * bond->params.miimon);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000985 if (bond->params.downdelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800986 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
987 bond->dev->name,
988 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800989 if (bond->params.arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800990 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
991 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800992 bond->params.arp_interval = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700993 if (bond->params.arp_validate) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700994 bond->params.arp_validate =
995 BOND_ARP_VALIDATE_NONE;
996 }
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700997 if (delayed_work_pending(&bond->arp_work)) {
998 cancel_delayed_work(&bond->arp_work);
999 flush_workqueue(bond->wq);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001000 }
1001 }
1002
1003 if (bond->dev->flags & IFF_UP) {
1004 /* If the interface is up, we may need to fire off
1005 * the MII timer. If the interface is down, the
1006 * timer will get fired off when the open function
1007 * is called.
1008 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001009 if (!delayed_work_pending(&bond->mii_work)) {
1010 INIT_DELAYED_WORK(&bond->mii_work,
1011 bond_mii_monitor);
1012 queue_delayed_work(bond->wq,
1013 &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001014 }
1015 }
1016 }
1017out:
1018 return ret;
1019}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001020static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1021 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001022
1023/*
1024 * Show and set the primary slave. The store function is much
1025 * simpler than bonding_store_slaves function because it only needs to
1026 * handle one interface name.
1027 * The bond must be a mode that supports a primary for this be
1028 * set.
1029 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001030static ssize_t bonding_show_primary(struct device *d,
1031 struct device_attribute *attr,
1032 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001033{
1034 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001035 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001036
1037 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001038 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001039
1040 return count;
1041}
1042
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001043static ssize_t bonding_store_primary(struct device *d,
1044 struct device_attribute *attr,
1045 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001046{
1047 int i;
1048 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001049 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001050 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001051
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001052 if (!rtnl_trylock())
1053 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001054 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001055 read_lock(&bond->lock);
1056 write_lock_bh(&bond->curr_slave_lock);
1057
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001058 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001059 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1060 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001061 goto out;
1062 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001063
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001064 sscanf(buf, "%16s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001065
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001066 /* check to see if we are clearing primary */
1067 if (!strlen(ifname) || buf[0] == '\n') {
1068 pr_info("%s: Setting primary slave to None.\n",
1069 bond->dev->name);
1070 bond->primary_slave = NULL;
1071 bond_select_active_slave(bond);
1072 goto out;
1073 }
1074
1075 bond_for_each_slave(bond, slave, i) {
1076 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1077 pr_info("%s: Setting %s as primary slave.\n",
1078 bond->dev->name, slave->dev->name);
1079 bond->primary_slave = slave;
1080 strcpy(bond->params.primary, slave->dev->name);
1081 bond_select_active_slave(bond);
1082 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001083 }
1084 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001085
1086 pr_info("%s: Unable to set %.*s as primary slave.\n",
1087 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001088out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001089 write_unlock_bh(&bond->curr_slave_lock);
1090 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001091 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001092 rtnl_unlock();
1093
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001094 return count;
1095}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001096static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1097 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001098
1099/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001100 * Show and set the primary_reselect flag.
1101 */
1102static ssize_t bonding_show_primary_reselect(struct device *d,
1103 struct device_attribute *attr,
1104 char *buf)
1105{
1106 struct bonding *bond = to_bond(d);
1107
1108 return sprintf(buf, "%s %d\n",
1109 pri_reselect_tbl[bond->params.primary_reselect].modename,
1110 bond->params.primary_reselect);
1111}
1112
1113static ssize_t bonding_store_primary_reselect(struct device *d,
1114 struct device_attribute *attr,
1115 const char *buf, size_t count)
1116{
1117 int new_value, ret = count;
1118 struct bonding *bond = to_bond(d);
1119
1120 if (!rtnl_trylock())
1121 return restart_syscall();
1122
1123 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1124 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001125 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001126 bond->dev->name,
1127 (int) strlen(buf) - 1, buf);
1128 ret = -EINVAL;
1129 goto out;
1130 }
1131
1132 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001133 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001134 bond->dev->name, pri_reselect_tbl[new_value].modename,
1135 new_value);
1136
Neil Hormane843fa52010-10-13 16:01:50 +00001137 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001138 read_lock(&bond->lock);
1139 write_lock_bh(&bond->curr_slave_lock);
1140 bond_select_active_slave(bond);
1141 write_unlock_bh(&bond->curr_slave_lock);
1142 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001143 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001144out:
1145 rtnl_unlock();
1146 return ret;
1147}
1148static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1149 bonding_show_primary_reselect,
1150 bonding_store_primary_reselect);
1151
1152/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001153 * Show and set the use_carrier flag.
1154 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001155static ssize_t bonding_show_carrier(struct device *d,
1156 struct device_attribute *attr,
1157 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001158{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001159 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001160
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001161 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001162}
1163
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001164static ssize_t bonding_store_carrier(struct device *d,
1165 struct device_attribute *attr,
1166 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001167{
1168 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001169 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001170
1171
1172 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001173 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001174 bond->dev->name);
1175 ret = -EINVAL;
1176 goto out;
1177 }
1178 if ((new_value == 0) || (new_value == 1)) {
1179 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001180 pr_info("%s: Setting use_carrier to %d.\n",
1181 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001182 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001183 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1184 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001185 }
1186out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001187 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001188}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001189static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1190 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001191
1192
1193/*
1194 * Show and set currently active_slave.
1195 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001196static ssize_t bonding_show_active_slave(struct device *d,
1197 struct device_attribute *attr,
1198 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001199{
1200 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001201 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001202 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001203
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001204 read_lock(&bond->curr_slave_lock);
1205 curr = bond->curr_active_slave;
1206 read_unlock(&bond->curr_slave_lock);
1207
1208 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001209 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001210 return count;
1211}
1212
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001213static ssize_t bonding_store_active_slave(struct device *d,
1214 struct device_attribute *attr,
1215 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001216{
1217 int i;
1218 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001219 struct slave *old_active = NULL;
1220 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001221 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001222 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001223
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001224 if (!rtnl_trylock())
1225 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001226
1227 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001228 read_lock(&bond->lock);
1229 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001230
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001231 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001232 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001233 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001234 goto out;
1235 }
1236
1237 sscanf(buf, "%16s", ifname); /* IFNAMSIZ */
1238
1239 /* check to see if we are clearing active */
1240 if (!strlen(ifname) || buf[0] == '\n') {
1241 pr_info("%s: Clearing current active slave.\n",
1242 bond->dev->name);
1243 bond->curr_active_slave = NULL;
1244 bond_select_active_slave(bond);
1245 goto out;
1246 }
1247
1248 bond_for_each_slave(bond, slave, i) {
1249 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1250 old_active = bond->curr_active_slave;
1251 new_active = slave;
1252 if (new_active == old_active) {
1253 /* do nothing */
1254 pr_info("%s: %s is already the current"
1255 " active slave.\n",
1256 bond->dev->name,
1257 slave->dev->name);
1258 goto out;
1259 }
1260 else {
1261 if ((new_active) &&
1262 (old_active) &&
1263 (new_active->link == BOND_LINK_UP) &&
1264 IS_UP(new_active->dev)) {
1265 pr_info("%s: Setting %s as active"
1266 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001267 bond->dev->name,
1268 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001269 bond_change_active_slave(bond,
1270 new_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001271 }
1272 else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001273 pr_info("%s: Could not set %s as"
1274 " active slave; either %s is"
1275 " down or the link is down.\n",
1276 bond->dev->name,
1277 slave->dev->name,
1278 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001279 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001280 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001281 }
1282 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001283 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001284
1285 pr_info("%s: Unable to set %.*s as active slave.\n",
1286 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001287 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001288 write_unlock_bh(&bond->curr_slave_lock);
1289 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001290 unblock_netpoll_tx();
1291
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001292 rtnl_unlock();
1293
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001294 return count;
1295
1296}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001297static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1298 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001299
1300
1301/*
1302 * Show link status of the bond interface.
1303 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001304static ssize_t bonding_show_mii_status(struct device *d,
1305 struct device_attribute *attr,
1306 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001307{
1308 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001309 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001310
1311 read_lock(&bond->curr_slave_lock);
1312 curr = bond->curr_active_slave;
1313 read_unlock(&bond->curr_slave_lock);
1314
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001315 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001316}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001317static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001318
1319
1320/*
1321 * Show current 802.3ad aggregator ID.
1322 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001323static ssize_t bonding_show_ad_aggregator(struct device *d,
1324 struct device_attribute *attr,
1325 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001326{
1327 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001328 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001329
1330 if (bond->params.mode == BOND_MODE_8023AD) {
1331 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001332 count = sprintf(buf, "%d\n",
1333 (bond_3ad_get_active_agg_info(bond, &ad_info))
1334 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001335 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001336
1337 return count;
1338}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001339static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001340
1341
1342/*
1343 * Show number of active 802.3ad ports.
1344 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001345static ssize_t bonding_show_ad_num_ports(struct device *d,
1346 struct device_attribute *attr,
1347 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001348{
1349 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001350 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001351
1352 if (bond->params.mode == BOND_MODE_8023AD) {
1353 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001354 count = sprintf(buf, "%d\n",
1355 (bond_3ad_get_active_agg_info(bond, &ad_info))
1356 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001357 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001358
1359 return count;
1360}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001361static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001362
1363
1364/*
1365 * Show current 802.3ad actor key.
1366 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001367static ssize_t bonding_show_ad_actor_key(struct device *d,
1368 struct device_attribute *attr,
1369 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001370{
1371 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001372 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001373
1374 if (bond->params.mode == BOND_MODE_8023AD) {
1375 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001376 count = sprintf(buf, "%d\n",
1377 (bond_3ad_get_active_agg_info(bond, &ad_info))
1378 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001379 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001380
1381 return count;
1382}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001383static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001384
1385
1386/*
1387 * Show current 802.3ad partner key.
1388 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001389static ssize_t bonding_show_ad_partner_key(struct device *d,
1390 struct device_attribute *attr,
1391 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001392{
1393 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001394 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001395
1396 if (bond->params.mode == BOND_MODE_8023AD) {
1397 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001398 count = sprintf(buf, "%d\n",
1399 (bond_3ad_get_active_agg_info(bond, &ad_info))
1400 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001401 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001402
1403 return count;
1404}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001405static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001406
1407
1408/*
1409 * Show current 802.3ad partner mac.
1410 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001411static ssize_t bonding_show_ad_partner_mac(struct device *d,
1412 struct device_attribute *attr,
1413 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001414{
1415 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001416 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001417
1418 if (bond->params.mode == BOND_MODE_8023AD) {
1419 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001420 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001421 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001422 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001423
1424 return count;
1425}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001426static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001427
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001428/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001429 * Show the queue_ids of the slaves in the current bond.
1430 */
1431static ssize_t bonding_show_queue_id(struct device *d,
1432 struct device_attribute *attr,
1433 char *buf)
1434{
1435 struct slave *slave;
1436 int i, res = 0;
1437 struct bonding *bond = to_bond(d);
1438
1439 if (!rtnl_trylock())
1440 return restart_syscall();
1441
1442 read_lock(&bond->lock);
1443 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001444 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1445 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001446 if ((PAGE_SIZE - res) > 10)
1447 res = PAGE_SIZE - 10;
1448 res += sprintf(buf + res, "++more++ ");
1449 break;
1450 }
1451 res += sprintf(buf + res, "%s:%d ",
1452 slave->dev->name, slave->queue_id);
1453 }
1454 read_unlock(&bond->lock);
1455 if (res)
1456 buf[res-1] = '\n'; /* eat the leftover space */
1457 rtnl_unlock();
1458 return res;
1459}
1460
1461/*
1462 * Set the queue_ids of the slaves in the current bond. The bond
1463 * interface must be enslaved for this to work.
1464 */
1465static ssize_t bonding_store_queue_id(struct device *d,
1466 struct device_attribute *attr,
1467 const char *buffer, size_t count)
1468{
1469 struct slave *slave, *update_slave;
1470 struct bonding *bond = to_bond(d);
1471 u16 qid;
1472 int i, ret = count;
1473 char *delim;
1474 struct net_device *sdev = NULL;
1475
1476 if (!rtnl_trylock())
1477 return restart_syscall();
1478
1479 /* delim will point to queue id if successful */
1480 delim = strchr(buffer, ':');
1481 if (!delim)
1482 goto err_no_cmd;
1483
1484 /*
1485 * Terminate string that points to device name and bump it
1486 * up one, so we can read the queue id there.
1487 */
1488 *delim = '\0';
1489 if (sscanf(++delim, "%hd\n", &qid) != 1)
1490 goto err_no_cmd;
1491
1492 /* Check buffer length, valid ifname and queue id */
1493 if (strlen(buffer) > IFNAMSIZ ||
1494 !dev_valid_name(buffer) ||
1495 qid > bond->params.tx_queues)
1496 goto err_no_cmd;
1497
1498 /* Get the pointer to that interface if it exists */
1499 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1500 if (!sdev)
1501 goto err_no_cmd;
1502
1503 read_lock(&bond->lock);
1504
1505 /* Search for thes slave and check for duplicate qids */
1506 update_slave = NULL;
1507 bond_for_each_slave(bond, slave, i) {
1508 if (sdev == slave->dev)
1509 /*
1510 * We don't need to check the matching
1511 * slave for dups, since we're overwriting it
1512 */
1513 update_slave = slave;
1514 else if (qid && qid == slave->queue_id) {
1515 goto err_no_cmd_unlock;
1516 }
1517 }
1518
1519 if (!update_slave)
1520 goto err_no_cmd_unlock;
1521
1522 /* Actually set the qids for the slave */
1523 update_slave->queue_id = qid;
1524
1525 read_unlock(&bond->lock);
1526out:
1527 rtnl_unlock();
1528 return ret;
1529
1530err_no_cmd_unlock:
1531 read_unlock(&bond->lock);
1532err_no_cmd:
1533 pr_info("invalid input for queue_id set for %s.\n",
1534 bond->dev->name);
1535 ret = -EPERM;
1536 goto out;
1537}
1538
1539static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1540 bonding_store_queue_id);
1541
1542
1543/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001544 * Show and set the all_slaves_active flag.
1545 */
1546static ssize_t bonding_show_slaves_active(struct device *d,
1547 struct device_attribute *attr,
1548 char *buf)
1549{
1550 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001551
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001552 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1553}
1554
1555static ssize_t bonding_store_slaves_active(struct device *d,
1556 struct device_attribute *attr,
1557 const char *buf, size_t count)
1558{
1559 int i, new_value, ret = count;
1560 struct bonding *bond = to_bond(d);
1561 struct slave *slave;
1562
1563 if (sscanf(buf, "%d", &new_value) != 1) {
1564 pr_err("%s: no all_slaves_active value specified.\n",
1565 bond->dev->name);
1566 ret = -EINVAL;
1567 goto out;
1568 }
1569
1570 if (new_value == bond->params.all_slaves_active)
1571 goto out;
1572
1573 if ((new_value == 0) || (new_value == 1)) {
1574 bond->params.all_slaves_active = new_value;
1575 } else {
1576 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1577 bond->dev->name, new_value);
1578 ret = -EINVAL;
1579 goto out;
1580 }
1581
1582 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001583 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001584 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001585 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001586 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001587 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001588 }
1589 }
1590out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001591 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001592}
1593static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1594 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001595
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001596/*
1597 * Show and set the number of IGMP membership reports to send on link failure
1598 */
1599static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001600 struct device_attribute *attr,
1601 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001602{
1603 struct bonding *bond = to_bond(d);
1604
1605 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1606}
1607
1608static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001609 struct device_attribute *attr,
1610 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001611{
1612 int new_value, ret = count;
1613 struct bonding *bond = to_bond(d);
1614
1615 if (sscanf(buf, "%d", &new_value) != 1) {
1616 pr_err("%s: no resend_igmp value specified.\n",
1617 bond->dev->name);
1618 ret = -EINVAL;
1619 goto out;
1620 }
1621
Flavio Leitner94265cf2011-05-25 08:38:58 +00001622 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001623 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1624 bond->dev->name, new_value);
1625 ret = -EINVAL;
1626 goto out;
1627 }
1628
1629 pr_info("%s: Setting resend_igmp to %d.\n",
1630 bond->dev->name, new_value);
1631 bond->params.resend_igmp = new_value;
1632out:
1633 return ret;
1634}
1635
1636static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1637 bonding_show_resend_igmp, bonding_store_resend_igmp);
1638
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001639static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001640 &dev_attr_slaves.attr,
1641 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001642 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001643 &dev_attr_arp_validate.attr,
1644 &dev_attr_arp_interval.attr,
1645 &dev_attr_arp_ip_target.attr,
1646 &dev_attr_downdelay.attr,
1647 &dev_attr_updelay.attr,
1648 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001649 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001650 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001651 &dev_attr_num_grat_arp.attr,
1652 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001653 &dev_attr_miimon.attr,
1654 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001655 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001656 &dev_attr_use_carrier.attr,
1657 &dev_attr_active_slave.attr,
1658 &dev_attr_mii_status.attr,
1659 &dev_attr_ad_aggregator.attr,
1660 &dev_attr_ad_num_ports.attr,
1661 &dev_attr_ad_actor_key.attr,
1662 &dev_attr_ad_partner_key.attr,
1663 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001664 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001665 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001666 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001667 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001668 NULL,
1669};
1670
1671static struct attribute_group bonding_group = {
1672 .name = "bonding",
1673 .attrs = per_bond_attrs,
1674};
1675
1676/*
1677 * Initialize sysfs. This sets up the bonding_masters file in
1678 * /sys/class/net.
1679 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001680int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001681{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001682 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001683
Eric W. Biederman4c224002011-10-12 21:56:25 +00001684 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001685 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001686
1687 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001688 /*
1689 * Permit multiple loads of the module by ignoring failures to
1690 * create the bonding_masters sysfs file. Bonding devices
1691 * created by second or subsequent loads of the module will
1692 * not be listed in, or controllable by, bonding_masters, but
1693 * will have the usual "bonding" sysfs directory.
1694 *
1695 * This is done to preserve backwards compatibility for
1696 * initscripts/sysconfig, which load bonding multiple times to
1697 * configure multiple bonding devices.
1698 */
1699 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001700 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001701 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001702 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001703 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001704 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001705 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001706 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001707
1708 return ret;
1709
1710}
1711
1712/*
1713 * Remove /sys/class/net/bonding_masters.
1714 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001715void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001716{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001717 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001718}
1719
1720/*
1721 * Initialize sysfs for each bond. This sets up and registers
1722 * the 'bondctl' directory for each individual bond under /sys/class/net.
1723 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001724void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001725{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001726 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001727}
1728