blob: c29b836749b6323fe86c35e7762b25a3c8596978 [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/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 Williamsb76cdba2005-11-09 10:36:41 -080036#include <linux/ctype.h>
37#include <linux/inet.h>
38#include <linux/rtnetlink.h>
Stephen Hemminger5c5129b2009-06-12 19:02:51 +000039#include <linux/etherdevice.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070040#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000041#include <net/netns/generic.h>
42#include <linux/nsproxy.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080043
Mitch Williamsb76cdba2005-11-09 10:36:41 -080044#include "bonding.h"
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -080045
Stephen Hemminger3d632c32009-06-12 19:02:48 +000046#define to_dev(obj) container_of(obj, struct device, kobj)
Wang Chen454d7c92008-11-12 23:37:49 -080047#define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
Mitch Williamsb76cdba2005-11-09 10:36:41 -080048
Mitch Williamsb76cdba2005-11-09 10:36:41 -080049/*
50 * "show" function for the bond_masters attribute.
51 * The class parameter is ignored.
52 */
Andi Kleen28812fe2010-01-05 12:48:07 +010053static ssize_t bonding_show_bonds(struct class *cls,
54 struct class_attribute *attr,
55 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -080056{
Eric W. Biederman4c224002011-10-12 21:56:25 +000057 struct bond_net *bn =
58 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080059 int res = 0;
60 struct bonding *bond;
61
Stephen Hemminger7e083842009-06-12 19:02:46 +000062 rtnl_lock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080063
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000064 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -080065 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 Ferencb8843662007-12-06 23:40:30 -080069 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -080070 break;
71 }
Wagner Ferencb8843662007-12-06 23:40:30 -080072 res += sprintf(buf + res, "%s ", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080073 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -080074 if (res)
75 buf[res-1] = '\n'; /* eat the leftover space */
Stephen Hemminger7e083842009-06-12 19:02:46 +000076
77 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080078 return res;
79}
80
Eric W. Biederman4c224002011-10-12 21:56:25 +000081static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname)
Stephen Hemminger373500d2009-06-12 19:02:50 +000082{
83 struct bonding *bond;
84
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000085 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Stephen Hemminger373500d2009-06-12 19:02:50 +000086 if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0)
87 return bond->dev;
88 }
89 return NULL;
90}
91
Mitch Williamsb76cdba2005-11-09 10:36:41 -080092/*
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 Hemminger3d632c32009-06-12 19:02:48 +0000100static ssize_t bonding_store_bonds(struct class *cls,
Andi Kleen28812fe2010-01-05 12:48:07 +0100101 struct class_attribute *attr,
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000102 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800103{
Eric W. Biederman4c224002011-10-12 21:56:25 +0000104 struct bond_net *bn =
105 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800106 char command[IFNAMSIZ + 1] = {0, };
107 char *ifname;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800108 int rv, res = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800109
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800110 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 Perchesa4aee5c2009-12-13 20:06:07 -0800117 pr_info("%s is being created...\n", ifname);
Eric W. Biederman4c224002011-10-12 21:56:25 +0000118 rv = bond_create(bn->net, ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800119 if (rv) {
Phil Oester5f86cad12011-03-14 06:22:06 +0000120 if (rv == -EEXIST)
121 pr_info("%s already exists.\n", ifname);
122 else
123 pr_info("%s creation failed.\n", ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800124 res = rv;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800125 }
Stephen Hemminger373500d2009-06-12 19:02:50 +0000126 } else if (command[0] == '-') {
127 struct net_device *bond_dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800128
Jay Vosburgh027ea042008-01-17 16:25:02 -0800129 rtnl_lock();
Eric W. Biederman4c224002011-10-12 21:56:25 +0000130 bond_dev = bond_get_by_name(bn, ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000131 if (bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800132 pr_info("%s is being deleted...\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000133 unregister_netdevice(bond_dev);
134 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800135 pr_err("unable to delete non-existent %s\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000136 res = -ENODEV;
137 }
138 rtnl_unlock();
139 } else
140 goto err_no_cmd;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800141
Stephen Hemminger373500d2009-06-12 19:02:50 +0000142 /* 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 Williamsb76cdba2005-11-09 10:36:41 -0800146
147err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800148 pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n");
Jay Vosburghc4ebc662008-05-02 17:49:38 -0700149 return -EPERM;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800150}
Stephen Hemminger373500d2009-06-12 19:02:50 +0000151
Eric W. Biederman4c224002011-10-12 21:56:25 +0000152static 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 Williamsb76cdba2005-11-09 10:36:41 -0800160/* class attribute for bond_masters file. This ends up in /sys/class/net */
Eric W. Biederman4c224002011-10-12 21:56:25 +0000161static 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 Williamsb76cdba2005-11-09 10:36:41 -0800170
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000171int bond_create_slave_symlinks(struct net_device *master,
172 struct net_device *slave)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800173{
174 char linkname[IFNAMSIZ+7];
175 int ret = 0;
176
177 /* first, create a link from the slave back to the master */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700178 ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj),
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800179 "master");
180 if (ret)
181 return ret;
182 /* next, create a link from the master to the slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000183 sprintf(linkname, "slave_%s", slave->name);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700184 ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj),
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800185 linkname);
Veaceslav Falico9fe16b72013-03-26 17:43:28 +0100186
187 /* free the master link created earlier in case of error */
188 if (ret)
189 sysfs_remove_link(&(slave->dev.kobj), "master");
190
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800191 return ret;
192
193}
194
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000195void bond_destroy_slave_symlinks(struct net_device *master,
196 struct net_device *slave)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800197{
198 char linkname[IFNAMSIZ+7];
199
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700200 sysfs_remove_link(&(slave->dev.kobj), "master");
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000201 sprintf(linkname, "slave_%s", slave->name);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700202 sysfs_remove_link(&(master->dev.kobj), linkname);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800203}
204
205
206/*
207 * Show the slaves in the current bond.
208 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700209static ssize_t bonding_show_slaves(struct device *d,
210 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800211{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700212 struct bonding *bond = to_bond(d);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200213 struct slave *slave;
214 int res = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800215
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700216 read_lock(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200217 bond_for_each_slave(bond, slave) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800218 if (res > (PAGE_SIZE - IFNAMSIZ)) {
219 /* not enough space for another interface name */
220 if ((PAGE_SIZE - res) > 10)
221 res = PAGE_SIZE - 10;
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800222 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800223 break;
224 }
225 res += sprintf(buf + res, "%s ", slave->dev->name);
226 }
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700227 read_unlock(&bond->lock);
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800228 if (res)
229 buf[res-1] = '\n'; /* eat the leftover space */
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200230
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800231 return res;
232}
233
234/*
Veaceslav Falicod6641cc2013-05-28 01:26:13 +0000235 * Set the slaves in the current bond.
Jiri Pirkof9f35452010-05-18 05:46:39 +0000236 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
237 * All hard work should be done there.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800238 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700239static ssize_t bonding_store_slaves(struct device *d,
240 struct device_attribute *attr,
241 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800242{
243 char command[IFNAMSIZ + 1] = { 0, };
244 char *ifname;
Jiri Pirkof9f35452010-05-18 05:46:39 +0000245 int res, ret = count;
246 struct net_device *dev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700247 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800248
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000249 if (!rtnl_trylock())
250 return restart_syscall();
Jay Vosburgh027ea042008-01-17 16:25:02 -0800251
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800252 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
253 ifname = command + 1;
254 if ((strlen(command) <= 1) ||
255 !dev_valid_name(ifname))
256 goto err_no_cmd;
257
Jiri Pirkof9f35452010-05-18 05:46:39 +0000258 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
259 if (!dev) {
260 pr_info("%s: Interface %s does not exist!\n",
261 bond->dev->name, ifname);
262 ret = -ENODEV;
263 goto out;
264 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800265
Jiri Pirkof9f35452010-05-18 05:46:39 +0000266 switch (command[0]) {
267 case '+':
268 pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800269 res = bond_enslave(bond->dev, dev);
Jiri Pirkof9f35452010-05-18 05:46:39 +0000270 break;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000271
Jiri Pirkof9f35452010-05-18 05:46:39 +0000272 case '-':
273 pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name);
274 res = bond_release(bond->dev, dev);
275 break;
276
277 default:
278 goto err_no_cmd;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800279 }
280
Jiri Pirkof9f35452010-05-18 05:46:39 +0000281 if (res)
282 ret = res;
283 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800284
285err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800286 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
287 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800288 ret = -EPERM;
289
290out:
Jay Vosburgh027ea042008-01-17 16:25:02 -0800291 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800292 return ret;
293}
294
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000295static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
296 bonding_store_slaves);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800297
298/*
299 * Show and set the bonding mode. The bond interface must be down to
300 * change the mode.
301 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700302static ssize_t bonding_show_mode(struct device *d,
303 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800304{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700305 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800306
307 return sprintf(buf, "%s %d\n",
308 bond_mode_tbl[bond->params.mode].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800309 bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800310}
311
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700312static ssize_t bonding_store_mode(struct device *d,
313 struct device_attribute *attr,
314 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800315{
316 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700317 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800318
nikolay@redhat.comea6836d2013-05-18 01:18:28 +0000319 if (!rtnl_trylock())
320 return restart_syscall();
321
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800322 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800323 pr_err("unable to update mode of %s because interface is up.\n",
324 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800325 ret = -EPERM;
326 goto out;
327 }
328
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200329 if (!list_empty(&bond->slave_list)) {
Veaceslav Falico4a8bb7e2011-11-15 06:44:42 +0000330 pr_err("unable to update mode of %s because it has slaves.\n",
331 bond->dev->name);
332 ret = -EPERM;
333 goto out;
334 }
335
Jay Vosburghece95f72008-01-17 16:25:01 -0800336 new_value = bond_parse_parm(buf, bond_mode_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800337 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800338 pr_err("%s: Ignoring invalid mode value %.*s.\n",
339 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800340 ret = -EINVAL;
341 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800342 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000343 if ((new_value == BOND_MODE_ALB ||
344 new_value == BOND_MODE_TLB) &&
345 bond->params.arp_interval) {
346 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
347 bond->dev->name, bond_mode_tbl[new_value].modename);
348 ret = -EINVAL;
349 goto out;
350 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000351
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200352 /* don't cache arp_validate between modes */
353 bond->params.arp_validate = BOND_ARP_VALIDATE_NONE;
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000354 bond->params.mode = new_value;
355 bond_set_mode_ops(bond, bond->params.mode);
356 pr_info("%s: setting mode to %s (%d).\n",
357 bond->dev->name, bond_mode_tbl[new_value].modename,
358 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800359out:
nikolay@redhat.comea6836d2013-05-18 01:18:28 +0000360 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800361 return ret;
362}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000363static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
364 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800365
366/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000367 * Show and set the bonding transmit hash method.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800368 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700369static ssize_t bonding_show_xmit_hash(struct device *d,
370 struct device_attribute *attr,
371 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800372{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700373 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800374
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800375 return sprintf(buf, "%s %d\n",
376 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
377 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800378}
379
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700380static ssize_t bonding_store_xmit_hash(struct device *d,
381 struct device_attribute *attr,
382 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800383{
384 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700385 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800386
Jay Vosburghece95f72008-01-17 16:25:01 -0800387 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800388 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800389 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800390 bond->dev->name,
391 (int)strlen(buf) - 1, buf);
392 ret = -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800393 } else {
394 bond->params.xmit_policy = new_value;
395 bond_set_mode_ops(bond, bond->params.mode);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800396 pr_info("%s: setting xmit hash policy to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000397 bond->dev->name,
398 xmit_hashtype_tbl[new_value].modename, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800399 }
Nikolay Aleksandrov53edee22013-05-24 00:59:47 +0000400
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800401 return ret;
402}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000403static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
404 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800405
406/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700407 * Show and set arp_validate.
408 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700409static ssize_t bonding_show_arp_validate(struct device *d,
410 struct device_attribute *attr,
411 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700412{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700413 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700414
415 return sprintf(buf, "%s %d\n",
416 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800417 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700418}
419
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700420static ssize_t bonding_store_arp_validate(struct device *d,
421 struct device_attribute *attr,
422 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700423{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700424 struct bonding *bond = to_bond(d);
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200425 int new_value, ret = count;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700426
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200427 if (!rtnl_trylock())
428 return restart_syscall();
Jay Vosburghece95f72008-01-17 16:25:01 -0800429 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700430 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800431 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700432 bond->dev->name, buf);
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200433 ret = -EINVAL;
434 goto out;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700435 }
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200436 if (bond->params.mode != BOND_MODE_ACTIVEBACKUP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800437 pr_err("%s: arp_validate only supported in active-backup mode.\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700438 bond->dev->name);
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200439 ret = -EINVAL;
440 goto out;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700441 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800442 pr_info("%s: setting arp_validate to %s (%d).\n",
443 bond->dev->name, arp_validate_tbl[new_value].modename,
444 new_value);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700445
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200446 if (bond->dev->flags & IFF_UP) {
447 if (!new_value)
448 bond->recv_probe = NULL;
449 else if (bond->params.arp_interval)
450 bond->recv_probe = bond_arp_rcv;
451 }
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700452 bond->params.arp_validate = new_value;
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200453out:
454 rtnl_unlock();
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700455
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200456 return ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700457}
458
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000459static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
460 bonding_store_arp_validate);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200461/*
462 * Show and set arp_all_targets.
463 */
464static ssize_t bonding_show_arp_all_targets(struct device *d,
465 struct device_attribute *attr,
466 char *buf)
467{
468 struct bonding *bond = to_bond(d);
469 int value = bond->params.arp_all_targets;
470
471 return sprintf(buf, "%s %d\n", arp_all_targets_tbl[value].modename,
472 value);
473}
474
475static ssize_t bonding_store_arp_all_targets(struct device *d,
476 struct device_attribute *attr,
477 const char *buf, size_t count)
478{
479 struct bonding *bond = to_bond(d);
480 int new_value;
481
482 new_value = bond_parse_parm(buf, arp_all_targets_tbl);
483 if (new_value < 0) {
484 pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
485 bond->dev->name, buf);
486 return -EINVAL;
487 }
488 pr_info("%s: setting arp_all_targets to %s (%d).\n",
489 bond->dev->name, arp_all_targets_tbl[new_value].modename,
490 new_value);
491
492 bond->params.arp_all_targets = new_value;
493
494 return count;
495}
496
497static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
498 bonding_show_arp_all_targets, bonding_store_arp_all_targets);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700499
500/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700501 * Show and store fail_over_mac. User only allowed to change the
502 * value when there are no slaves.
503 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000504static ssize_t bonding_show_fail_over_mac(struct device *d,
505 struct device_attribute *attr,
506 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700507{
508 struct bonding *bond = to_bond(d);
509
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700510 return sprintf(buf, "%s %d\n",
511 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
512 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700513}
514
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000515static ssize_t bonding_store_fail_over_mac(struct device *d,
516 struct device_attribute *attr,
517 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700518{
dingtianhong9402b742013-07-23 15:25:39 +0800519 int new_value, ret = count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700520 struct bonding *bond = to_bond(d);
521
dingtianhong9402b742013-07-23 15:25:39 +0800522 if (!rtnl_trylock())
523 return restart_syscall();
524
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200525 if (!list_empty(&bond->slave_list)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800526 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700527 bond->dev->name);
dingtianhong9402b742013-07-23 15:25:39 +0800528 ret = -EPERM;
529 goto out;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700530 }
531
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700532 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
533 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800534 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700535 bond->dev->name, buf);
dingtianhong9402b742013-07-23 15:25:39 +0800536 ret = -EINVAL;
537 goto out;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700538 }
539
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700540 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800541 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
542 bond->dev->name, fail_over_mac_tbl[new_value].modename,
543 new_value);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700544
dingtianhong9402b742013-07-23 15:25:39 +0800545out:
546 rtnl_unlock();
547 return ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700548}
549
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000550static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
551 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700552
553/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800554 * Show and set the arp timer interval. There are two tricky bits
555 * here. First, if ARP monitoring is activated, then we must disable
556 * MII monitoring. Second, if the ARP timer isn't running, we must
557 * start it.
558 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700559static ssize_t bonding_show_arp_interval(struct device *d,
560 struct device_attribute *attr,
561 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800562{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700563 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800564
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800565 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800566}
567
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700568static ssize_t bonding_store_arp_interval(struct device *d,
569 struct device_attribute *attr,
570 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800571{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700572 struct bonding *bond = to_bond(d);
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200573 int new_value, ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800574
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000575 if (!rtnl_trylock())
576 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800577 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800578 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800579 bond->dev->name);
580 ret = -EINVAL;
581 goto out;
582 }
583 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000584 pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800585 bond->dev->name, new_value, INT_MAX);
586 ret = -EINVAL;
587 goto out;
588 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000589 if (bond->params.mode == BOND_MODE_ALB ||
590 bond->params.mode == BOND_MODE_TLB) {
591 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
592 bond->dev->name, bond->dev->name);
593 ret = -EINVAL;
594 goto out;
595 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800596 pr_info("%s: Setting ARP monitoring interval to %d.\n",
597 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800598 bond->params.arp_interval = new_value;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000599 if (new_value) {
600 if (bond->params.miimon) {
601 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
602 bond->dev->name, bond->dev->name);
603 bond->params.miimon = 0;
604 }
605 if (!bond->params.arp_targets[0])
606 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
607 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800608 }
609 if (bond->dev->flags & IFF_UP) {
610 /* If the interface is up, we may need to fire off
611 * the ARP timer. If the interface is down, the
612 * timer will get fired off when the open function
613 * is called.
614 */
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000615 if (!new_value) {
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200616 if (bond->params.arp_validate)
617 bond->recv_probe = NULL;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000618 cancel_delayed_work_sync(&bond->arp_work);
619 } else {
nikolay@redhat.com5bb9e0b2013-09-07 00:00:26 +0200620 /* arp_validate can be set only in active-backup mode */
621 if (bond->params.arp_validate)
622 bond->recv_probe = bond_arp_rcv;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000623 cancel_delayed_work_sync(&bond->mii_work);
624 queue_delayed_work(bond->wq, &bond->arp_work, 0);
625 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800626 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800627out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000628 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800629 return ret;
630}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000631static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
632 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800633
634/*
635 * Show and set the arp targets.
636 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700637static ssize_t bonding_show_arp_targets(struct device *d,
638 struct device_attribute *attr,
639 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800640{
641 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700642 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800643
644 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
645 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700646 res += sprintf(buf + res, "%pI4 ",
647 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800648 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800649 if (res)
650 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800651 return res;
652}
653
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700654static ssize_t bonding_store_arp_targets(struct device *d,
655 struct device_attribute *attr,
656 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800657{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700658 struct bonding *bond = to_bond(d);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200659 struct slave *slave;
660 __be32 newtarget, *targets;
661 unsigned long *targets_rx;
662 int ind, i, j, ret = -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800663
664 targets = bond->params.arp_targets;
665 newtarget = in_aton(buf + 1);
666 /* look for adds */
667 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400668 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800669 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700670 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800671 goto out;
672 }
673
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200674 if (bond_get_targets_ip(targets, newtarget) != -1) { /* dup */
675 pr_err("%s: ARP target %pI4 is already present\n",
676 bond->dev->name, &newtarget);
677 goto out;
678 }
679
Veaceslav Falico8599b522013-06-24 11:49:34 +0200680 ind = bond_get_targets_ip(targets, 0); /* first free slot */
681 if (ind == -1) {
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200682 pr_err("%s: ARP target table is full!\n",
683 bond->dev->name);
684 goto out;
685 }
686
687 pr_info("%s: adding ARP target %pI4.\n", bond->dev->name,
688 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200689 /* not to race with bond_arp_rcv */
690 write_lock_bh(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200691 bond_for_each_slave(bond, slave)
Veaceslav Falico8599b522013-06-24 11:49:34 +0200692 slave->target_last_arp_rx[ind] = jiffies;
693 targets[ind] = newtarget;
694 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000695 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400696 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800697 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700698 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800699 goto out;
700 }
701
Veaceslav Falico8599b522013-06-24 11:49:34 +0200702 ind = bond_get_targets_ip(targets, newtarget);
703 if (ind == -1) {
704 pr_err("%s: unable to remove nonexistent ARP target %pI4.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800705 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800706 goto out;
707 }
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200708
Veaceslav Falico8599b522013-06-24 11:49:34 +0200709 if (ind == 0 && !targets[1] && bond->params.arp_interval)
710 pr_warn("%s: removing last arp target with arp_interval on\n",
711 bond->dev->name);
712
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200713 pr_info("%s: removing ARP target %pI4.\n", bond->dev->name,
714 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200715
716 write_lock_bh(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200717 bond_for_each_slave(bond, slave) {
Veaceslav Falico8599b522013-06-24 11:49:34 +0200718 targets_rx = slave->target_last_arp_rx;
719 j = ind;
720 for (; (j < BOND_MAX_ARP_TARGETS-1) && targets[j+1]; j++)
721 targets_rx[j] = targets_rx[j+1];
722 targets_rx[j] = 0;
723 }
724 for (i = ind; (i < BOND_MAX_ARP_TARGETS-1) && targets[i+1]; i++)
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200725 targets[i] = targets[i+1];
726 targets[i] = 0;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200727 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000728 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800729 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
730 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800731 ret = -EPERM;
732 goto out;
733 }
734
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200735 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800736out:
737 return ret;
738}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700739static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800740
741/*
742 * Show and set the up and down delays. These must be multiples of the
743 * MII monitoring value, and are stored internally as the multiplier.
744 * Thus, we must translate to MS for the real world.
745 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700746static ssize_t bonding_show_downdelay(struct device *d,
747 struct device_attribute *attr,
748 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800749{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700750 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800751
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800752 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800753}
754
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700755static ssize_t bonding_store_downdelay(struct device *d,
756 struct device_attribute *attr,
757 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800758{
759 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700760 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800761
762 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800763 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800764 bond->dev->name);
765 ret = -EPERM;
766 goto out;
767 }
768
769 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800770 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800771 ret = -EINVAL;
772 goto out;
773 }
774 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800775 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000776 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800777 ret = -EINVAL;
778 goto out;
779 } else {
780 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800781 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 +0000782 bond->dev->name, new_value,
783 bond->params.miimon,
784 (new_value / bond->params.miimon) *
785 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800786 }
787 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800788 pr_info("%s: Setting down delay to %d.\n",
789 bond->dev->name,
790 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800791
792 }
793
794out:
795 return ret;
796}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000797static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
798 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800799
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700800static ssize_t bonding_show_updelay(struct device *d,
801 struct device_attribute *attr,
802 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800803{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700804 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800805
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800806 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800807
808}
809
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700810static ssize_t bonding_store_updelay(struct device *d,
811 struct device_attribute *attr,
812 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800813{
814 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700815 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800816
817 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800818 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800819 bond->dev->name);
820 ret = -EPERM;
821 goto out;
822 }
823
824 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800825 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800826 bond->dev->name);
827 ret = -EINVAL;
828 goto out;
829 }
830 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000831 pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n",
832 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800833 ret = -EINVAL;
834 goto out;
835 } else {
836 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800837 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 +0000838 bond->dev->name, new_value,
839 bond->params.miimon,
840 (new_value / bond->params.miimon) *
841 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800842 }
843 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800844 pr_info("%s: Setting up delay to %d.\n",
845 bond->dev->name,
846 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800847 }
848
849out:
850 return ret;
851}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000852static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
853 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800854
855/*
856 * Show and set the LACP interval. Interface must be down, and the mode
857 * must be set to 802.3ad mode.
858 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700859static ssize_t bonding_show_lacp(struct device *d,
860 struct device_attribute *attr,
861 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800862{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700863 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800864
865 return sprintf(buf, "%s %d\n",
866 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800867 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800868}
869
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700870static ssize_t bonding_store_lacp(struct device *d,
871 struct device_attribute *attr,
872 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800873{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700874 struct bonding *bond = to_bond(d);
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200875 int new_value, ret = count;
876
877 if (!rtnl_trylock())
878 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800879
880 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800881 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800882 bond->dev->name);
883 ret = -EPERM;
884 goto out;
885 }
886
887 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800888 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800889 bond->dev->name);
890 ret = -EPERM;
891 goto out;
892 }
893
Jay Vosburghece95f72008-01-17 16:25:01 -0800894 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800895
896 if ((new_value == 1) || (new_value == 0)) {
897 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000898 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800899 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000900 bond->dev->name, bond_lacp_tbl[new_value].modename,
901 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800902 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800903 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000904 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800905 ret = -EINVAL;
906 }
907out:
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200908 rtnl_unlock();
909
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800910 return ret;
911}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000912static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
913 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800914
stephen hemminger655f8912011-06-22 09:54:39 +0000915static ssize_t bonding_show_min_links(struct device *d,
916 struct device_attribute *attr,
917 char *buf)
918{
919 struct bonding *bond = to_bond(d);
920
921 return sprintf(buf, "%d\n", bond->params.min_links);
922}
923
924static ssize_t bonding_store_min_links(struct device *d,
925 struct device_attribute *attr,
926 const char *buf, size_t count)
927{
928 struct bonding *bond = to_bond(d);
929 int ret;
930 unsigned int new_value;
931
932 ret = kstrtouint(buf, 0, &new_value);
933 if (ret < 0) {
934 pr_err("%s: Ignoring invalid min links value %s.\n",
935 bond->dev->name, buf);
936 return ret;
937 }
938
939 pr_info("%s: Setting min links value to %u\n",
940 bond->dev->name, new_value);
941 bond->params.min_links = new_value;
942 return count;
943}
944static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
945 bonding_show_min_links, bonding_store_min_links);
946
Jay Vosburghfd989c82008-11-04 17:51:16 -0800947static ssize_t bonding_show_ad_select(struct device *d,
948 struct device_attribute *attr,
949 char *buf)
950{
951 struct bonding *bond = to_bond(d);
952
953 return sprintf(buf, "%s %d\n",
954 ad_select_tbl[bond->params.ad_select].modename,
955 bond->params.ad_select);
956}
957
958
959static ssize_t bonding_store_ad_select(struct device *d,
960 struct device_attribute *attr,
961 const char *buf, size_t count)
962{
963 int new_value, ret = count;
964 struct bonding *bond = to_bond(d);
965
966 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800967 pr_err("%s: Unable to update ad_select because interface is up.\n",
968 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800969 ret = -EPERM;
970 goto out;
971 }
972
973 new_value = bond_parse_parm(buf, ad_select_tbl);
974
975 if (new_value != -1) {
976 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800977 pr_info("%s: Setting ad_select to %s (%d).\n",
978 bond->dev->name, ad_select_tbl[new_value].modename,
979 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800980 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800981 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800982 bond->dev->name, (int)strlen(buf) - 1, buf);
983 ret = -EINVAL;
984 }
985out:
986 return ret;
987}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000988static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
989 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800990
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800991/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000992 * Show and set the number of peer notifications to send after a failover event.
993 */
994static ssize_t bonding_show_num_peer_notif(struct device *d,
995 struct device_attribute *attr,
996 char *buf)
997{
998 struct bonding *bond = to_bond(d);
999 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
1000}
1001
1002static ssize_t bonding_store_num_peer_notif(struct device *d,
1003 struct device_attribute *attr,
1004 const char *buf, size_t count)
1005{
1006 struct bonding *bond = to_bond(d);
1007 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
1008 return err ? err : count;
1009}
1010static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
1011 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
1012static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
1013 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
1014
1015/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001016 * Show and set the MII monitor interval. There are two tricky bits
1017 * here. First, if MII monitoring is activated, then we must disable
1018 * ARP monitoring. Second, if the timer isn't running, we must
1019 * start it.
1020 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001021static ssize_t bonding_show_miimon(struct device *d,
1022 struct device_attribute *attr,
1023 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001024{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001025 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001026
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001027 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001028}
1029
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001030static ssize_t bonding_store_miimon(struct device *d,
1031 struct device_attribute *attr,
1032 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001033{
1034 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001035 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001036
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001037 if (!rtnl_trylock())
1038 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001039 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001040 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001041 bond->dev->name);
1042 ret = -EINVAL;
1043 goto out;
1044 }
1045 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001046 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001047 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001048 ret = -EINVAL;
1049 goto out;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001050 }
1051 pr_info("%s: Setting MII monitoring interval to %d.\n",
1052 bond->dev->name, new_value);
1053 bond->params.miimon = new_value;
1054 if (bond->params.updelay)
1055 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
1056 bond->dev->name,
1057 bond->params.updelay * bond->params.miimon);
1058 if (bond->params.downdelay)
1059 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
1060 bond->dev->name,
1061 bond->params.downdelay * bond->params.miimon);
1062 if (new_value && bond->params.arp_interval) {
1063 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
1064 bond->dev->name);
1065 bond->params.arp_interval = 0;
1066 if (bond->params.arp_validate)
1067 bond->params.arp_validate = BOND_ARP_VALIDATE_NONE;
1068 }
1069 if (bond->dev->flags & IFF_UP) {
1070 /* If the interface is up, we may need to fire off
1071 * the MII timer. If the interface is down, the
1072 * timer will get fired off when the open function
1073 * is called.
1074 */
1075 if (!new_value) {
1076 cancel_delayed_work_sync(&bond->mii_work);
1077 } else {
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001078 cancel_delayed_work_sync(&bond->arp_work);
1079 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001080 }
1081 }
1082out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001083 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001084 return ret;
1085}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001086static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1087 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001088
1089/*
1090 * Show and set the primary slave. The store function is much
1091 * simpler than bonding_store_slaves function because it only needs to
1092 * handle one interface name.
1093 * The bond must be a mode that supports a primary for this be
1094 * set.
1095 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001096static ssize_t bonding_show_primary(struct device *d,
1097 struct device_attribute *attr,
1098 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001099{
1100 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001101 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001102
1103 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001104 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001105
1106 return count;
1107}
1108
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001109static ssize_t bonding_store_primary(struct device *d,
1110 struct device_attribute *attr,
1111 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001112{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001113 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001114 char ifname[IFNAMSIZ];
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001115 struct slave *slave;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001116
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001117 if (!rtnl_trylock())
1118 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001119 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001120 read_lock(&bond->lock);
1121 write_lock_bh(&bond->curr_slave_lock);
1122
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001123 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001124 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1125 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001126 goto out;
1127 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001128
nikolay@redhat.comeb6e98a2012-10-31 04:42:51 +00001129 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001130
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001131 /* check to see if we are clearing primary */
1132 if (!strlen(ifname) || buf[0] == '\n') {
1133 pr_info("%s: Setting primary slave to None.\n",
1134 bond->dev->name);
1135 bond->primary_slave = NULL;
Milos Vyleteleb492f72013-01-29 09:59:00 +00001136 memset(bond->params.primary, 0, sizeof(bond->params.primary));
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001137 bond_select_active_slave(bond);
1138 goto out;
1139 }
1140
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001141 bond_for_each_slave(bond, slave) {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001142 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1143 pr_info("%s: Setting %s as primary slave.\n",
1144 bond->dev->name, slave->dev->name);
1145 bond->primary_slave = slave;
1146 strcpy(bond->params.primary, slave->dev->name);
1147 bond_select_active_slave(bond);
1148 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001149 }
1150 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001151
Weiping Pan8a936642012-06-10 23:00:20 +00001152 strncpy(bond->params.primary, ifname, IFNAMSIZ);
1153 bond->params.primary[IFNAMSIZ - 1] = 0;
1154
1155 pr_info("%s: Recording %s as primary, "
1156 "but it has not been enslaved to %s yet.\n",
1157 bond->dev->name, ifname, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001158out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001159 write_unlock_bh(&bond->curr_slave_lock);
1160 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001161 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001162 rtnl_unlock();
1163
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001164 return count;
1165}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001166static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1167 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001168
1169/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001170 * Show and set the primary_reselect flag.
1171 */
1172static ssize_t bonding_show_primary_reselect(struct device *d,
1173 struct device_attribute *attr,
1174 char *buf)
1175{
1176 struct bonding *bond = to_bond(d);
1177
1178 return sprintf(buf, "%s %d\n",
1179 pri_reselect_tbl[bond->params.primary_reselect].modename,
1180 bond->params.primary_reselect);
1181}
1182
1183static ssize_t bonding_store_primary_reselect(struct device *d,
1184 struct device_attribute *attr,
1185 const char *buf, size_t count)
1186{
1187 int new_value, ret = count;
1188 struct bonding *bond = to_bond(d);
1189
1190 if (!rtnl_trylock())
1191 return restart_syscall();
1192
1193 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1194 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001195 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001196 bond->dev->name,
1197 (int) strlen(buf) - 1, buf);
1198 ret = -EINVAL;
1199 goto out;
1200 }
1201
1202 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001203 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001204 bond->dev->name, pri_reselect_tbl[new_value].modename,
1205 new_value);
1206
Neil Hormane843fa52010-10-13 16:01:50 +00001207 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001208 read_lock(&bond->lock);
1209 write_lock_bh(&bond->curr_slave_lock);
1210 bond_select_active_slave(bond);
1211 write_unlock_bh(&bond->curr_slave_lock);
1212 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001213 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001214out:
1215 rtnl_unlock();
1216 return ret;
1217}
1218static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1219 bonding_show_primary_reselect,
1220 bonding_store_primary_reselect);
1221
1222/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001223 * Show and set the use_carrier flag.
1224 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001225static ssize_t bonding_show_carrier(struct device *d,
1226 struct device_attribute *attr,
1227 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001228{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001229 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001230
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001231 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001232}
1233
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001234static ssize_t bonding_store_carrier(struct device *d,
1235 struct device_attribute *attr,
1236 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001237{
1238 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001239 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001240
1241
1242 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001243 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001244 bond->dev->name);
1245 ret = -EINVAL;
1246 goto out;
1247 }
1248 if ((new_value == 0) || (new_value == 1)) {
1249 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001250 pr_info("%s: Setting use_carrier to %d.\n",
1251 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001252 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001253 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1254 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001255 }
1256out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001257 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001258}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001259static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1260 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001261
1262
1263/*
1264 * Show and set currently active_slave.
1265 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001266static ssize_t bonding_show_active_slave(struct device *d,
1267 struct device_attribute *attr,
1268 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001269{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001270 struct bonding *bond = to_bond(d);
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001271 struct slave *curr;
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001272 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001273
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001274 rcu_read_lock();
1275 curr = rcu_dereference(bond->curr_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001276 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001277 count = sprintf(buf, "%s\n", curr->dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001278 rcu_read_unlock();
1279
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001280 return count;
1281}
1282
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001283static ssize_t bonding_store_active_slave(struct device *d,
1284 struct device_attribute *attr,
1285 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001286{
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001287 struct slave *slave, *old_active, *new_active;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001288 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001289 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001290
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001291 if (!rtnl_trylock())
1292 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001293
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001294 old_active = new_active = NULL;
Neil Hormane843fa52010-10-13 16:01:50 +00001295 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001296 read_lock(&bond->lock);
1297 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001298
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001299 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001300 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001301 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001302 goto out;
1303 }
1304
nikolay@redhat.comc84e1592012-10-31 06:03:52 +00001305 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001306
1307 /* check to see if we are clearing active */
1308 if (!strlen(ifname) || buf[0] == '\n') {
1309 pr_info("%s: Clearing current active slave.\n",
1310 bond->dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001311 rcu_assign_pointer(bond->curr_active_slave, NULL);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001312 bond_select_active_slave(bond);
1313 goto out;
1314 }
1315
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001316 bond_for_each_slave(bond, slave) {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001317 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1318 old_active = bond->curr_active_slave;
1319 new_active = slave;
1320 if (new_active == old_active) {
1321 /* do nothing */
1322 pr_info("%s: %s is already the current"
1323 " active slave.\n",
1324 bond->dev->name,
1325 slave->dev->name);
1326 goto out;
dingtianhong38c49162013-07-23 15:25:32 +08001327 } else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001328 if ((new_active) &&
1329 (old_active) &&
1330 (new_active->link == BOND_LINK_UP) &&
1331 IS_UP(new_active->dev)) {
1332 pr_info("%s: Setting %s as active"
1333 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001334 bond->dev->name,
1335 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001336 bond_change_active_slave(bond,
1337 new_active);
dingtianhong38c49162013-07-23 15:25:32 +08001338 } else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001339 pr_info("%s: Could not set %s as"
1340 " active slave; either %s is"
1341 " down or the link is down.\n",
1342 bond->dev->name,
1343 slave->dev->name,
1344 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001345 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001346 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001347 }
1348 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001349 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001350
1351 pr_info("%s: Unable to set %.*s as active slave.\n",
1352 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001353 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001354 write_unlock_bh(&bond->curr_slave_lock);
1355 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001356 unblock_netpoll_tx();
1357
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001358 rtnl_unlock();
1359
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001360 return count;
1361
1362}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001363static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1364 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001365
1366
1367/*
1368 * Show link status of the bond interface.
1369 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001370static ssize_t bonding_show_mii_status(struct device *d,
1371 struct device_attribute *attr,
1372 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001373{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001374 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001375
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001376 return sprintf(buf, "%s\n", bond->curr_active_slave ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001377}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001378static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001379
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001380/*
1381 * Show current 802.3ad aggregator ID.
1382 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001383static ssize_t bonding_show_ad_aggregator(struct device *d,
1384 struct device_attribute *attr,
1385 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001386{
1387 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001388 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001389
1390 if (bond->params.mode == BOND_MODE_8023AD) {
1391 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001392 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001393 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001394 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001395 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001396
1397 return count;
1398}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001399static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001400
1401
1402/*
1403 * Show number of active 802.3ad ports.
1404 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001405static ssize_t bonding_show_ad_num_ports(struct device *d,
1406 struct device_attribute *attr,
1407 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001408{
1409 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001410 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001411
1412 if (bond->params.mode == BOND_MODE_8023AD) {
1413 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001414 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001415 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001416 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001417 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001418
1419 return count;
1420}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001421static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001422
1423
1424/*
1425 * Show current 802.3ad actor key.
1426 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001427static ssize_t bonding_show_ad_actor_key(struct device *d,
1428 struct device_attribute *attr,
1429 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001430{
1431 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001432 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001433
1434 if (bond->params.mode == BOND_MODE_8023AD) {
1435 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001436 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001437 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001438 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001439 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001440
1441 return count;
1442}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001443static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001444
1445
1446/*
1447 * Show current 802.3ad partner key.
1448 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001449static ssize_t bonding_show_ad_partner_key(struct device *d,
1450 struct device_attribute *attr,
1451 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001452{
1453 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001454 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001455
1456 if (bond->params.mode == BOND_MODE_8023AD) {
1457 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001458 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001459 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001460 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001461 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001462
1463 return count;
1464}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001465static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001466
1467
1468/*
1469 * Show current 802.3ad partner mac.
1470 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001471static ssize_t bonding_show_ad_partner_mac(struct device *d,
1472 struct device_attribute *attr,
1473 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001474{
1475 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001476 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001477
1478 if (bond->params.mode == BOND_MODE_8023AD) {
1479 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001480 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001481 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001482 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001483
1484 return count;
1485}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001486static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001487
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001488/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001489 * Show the queue_ids of the slaves in the current bond.
1490 */
1491static ssize_t bonding_show_queue_id(struct device *d,
1492 struct device_attribute *attr,
1493 char *buf)
1494{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001495 struct bonding *bond = to_bond(d);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001496 struct slave *slave;
1497 int res = 0;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001498
1499 if (!rtnl_trylock())
1500 return restart_syscall();
1501
1502 read_lock(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001503 bond_for_each_slave(bond, slave) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001504 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1505 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001506 if ((PAGE_SIZE - res) > 10)
1507 res = PAGE_SIZE - 10;
1508 res += sprintf(buf + res, "++more++ ");
1509 break;
1510 }
1511 res += sprintf(buf + res, "%s:%d ",
1512 slave->dev->name, slave->queue_id);
1513 }
1514 read_unlock(&bond->lock);
1515 if (res)
1516 buf[res-1] = '\n'; /* eat the leftover space */
1517 rtnl_unlock();
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001518
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001519 return res;
1520}
1521
1522/*
1523 * Set the queue_ids of the slaves in the current bond. The bond
1524 * interface must be enslaved for this to work.
1525 */
1526static ssize_t bonding_store_queue_id(struct device *d,
1527 struct device_attribute *attr,
1528 const char *buffer, size_t count)
1529{
1530 struct slave *slave, *update_slave;
1531 struct bonding *bond = to_bond(d);
1532 u16 qid;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001533 int ret = count;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001534 char *delim;
1535 struct net_device *sdev = NULL;
1536
1537 if (!rtnl_trylock())
1538 return restart_syscall();
1539
1540 /* delim will point to queue id if successful */
1541 delim = strchr(buffer, ':');
1542 if (!delim)
1543 goto err_no_cmd;
1544
1545 /*
1546 * Terminate string that points to device name and bump it
1547 * up one, so we can read the queue id there.
1548 */
1549 *delim = '\0';
1550 if (sscanf(++delim, "%hd\n", &qid) != 1)
1551 goto err_no_cmd;
1552
1553 /* Check buffer length, valid ifname and queue id */
1554 if (strlen(buffer) > IFNAMSIZ ||
1555 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001556 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001557 goto err_no_cmd;
1558
1559 /* Get the pointer to that interface if it exists */
1560 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1561 if (!sdev)
1562 goto err_no_cmd;
1563
1564 read_lock(&bond->lock);
1565
1566 /* Search for thes slave and check for duplicate qids */
1567 update_slave = NULL;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001568 bond_for_each_slave(bond, slave) {
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001569 if (sdev == slave->dev)
1570 /*
1571 * We don't need to check the matching
1572 * slave for dups, since we're overwriting it
1573 */
1574 update_slave = slave;
1575 else if (qid && qid == slave->queue_id) {
1576 goto err_no_cmd_unlock;
1577 }
1578 }
1579
1580 if (!update_slave)
1581 goto err_no_cmd_unlock;
1582
1583 /* Actually set the qids for the slave */
1584 update_slave->queue_id = qid;
1585
1586 read_unlock(&bond->lock);
1587out:
1588 rtnl_unlock();
1589 return ret;
1590
1591err_no_cmd_unlock:
1592 read_unlock(&bond->lock);
1593err_no_cmd:
1594 pr_info("invalid input for queue_id set for %s.\n",
1595 bond->dev->name);
1596 ret = -EPERM;
1597 goto out;
1598}
1599
1600static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1601 bonding_store_queue_id);
1602
1603
1604/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001605 * Show and set the all_slaves_active flag.
1606 */
1607static ssize_t bonding_show_slaves_active(struct device *d,
1608 struct device_attribute *attr,
1609 char *buf)
1610{
1611 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001612
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001613 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1614}
1615
1616static ssize_t bonding_store_slaves_active(struct device *d,
1617 struct device_attribute *attr,
1618 const char *buf, size_t count)
1619{
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001620 struct bonding *bond = to_bond(d);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001621 int new_value, ret = count;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001622 struct slave *slave;
1623
1624 if (sscanf(buf, "%d", &new_value) != 1) {
1625 pr_err("%s: no all_slaves_active value specified.\n",
1626 bond->dev->name);
1627 ret = -EINVAL;
1628 goto out;
1629 }
1630
1631 if (new_value == bond->params.all_slaves_active)
1632 goto out;
1633
1634 if ((new_value == 0) || (new_value == 1)) {
1635 bond->params.all_slaves_active = new_value;
1636 } else {
1637 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1638 bond->dev->name, new_value);
1639 ret = -EINVAL;
1640 goto out;
1641 }
1642
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001643 read_lock(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001644 bond_for_each_slave(bond, slave) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001645 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001646 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001647 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001648 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001649 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001650 }
1651 }
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001652 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001653out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001654 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001655}
1656static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1657 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001658
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001659/*
1660 * Show and set the number of IGMP membership reports to send on link failure
1661 */
1662static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001663 struct device_attribute *attr,
1664 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001665{
1666 struct bonding *bond = to_bond(d);
1667
1668 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1669}
1670
1671static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001672 struct device_attribute *attr,
1673 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001674{
1675 int new_value, ret = count;
1676 struct bonding *bond = to_bond(d);
1677
1678 if (sscanf(buf, "%d", &new_value) != 1) {
1679 pr_err("%s: no resend_igmp value specified.\n",
1680 bond->dev->name);
1681 ret = -EINVAL;
1682 goto out;
1683 }
1684
Flavio Leitner94265cf2011-05-25 08:38:58 +00001685 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001686 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1687 bond->dev->name, new_value);
1688 ret = -EINVAL;
1689 goto out;
1690 }
1691
1692 pr_info("%s: Setting resend_igmp to %d.\n",
1693 bond->dev->name, new_value);
1694 bond->params.resend_igmp = new_value;
1695out:
1696 return ret;
1697}
1698
1699static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1700 bonding_show_resend_igmp, bonding_store_resend_igmp);
1701
Neil Horman7eacd032013-09-13 11:05:33 -04001702
1703static ssize_t bonding_show_lp_interval(struct device *d,
1704 struct device_attribute *attr,
1705 char *buf)
1706{
1707 struct bonding *bond = to_bond(d);
1708 return sprintf(buf, "%d\n", bond->params.lp_interval);
1709}
1710
1711static ssize_t bonding_store_lp_interval(struct device *d,
1712 struct device_attribute *attr,
1713 const char *buf, size_t count)
1714{
1715 struct bonding *bond = to_bond(d);
1716 int new_value, ret = count;
1717
1718 if (sscanf(buf, "%d", &new_value) != 1) {
1719 pr_err("%s: no lp interval value specified.\n",
1720 bond->dev->name);
1721 ret = -EINVAL;
1722 goto out;
1723 }
1724
1725 if (new_value <= 0) {
1726 pr_err ("%s: lp_interval must be between 1 and %d\n",
1727 bond->dev->name, INT_MAX);
1728 ret = -EINVAL;
1729 goto out;
1730 }
1731
1732 bond->params.lp_interval = new_value;
1733out:
1734 return ret;
1735}
1736
1737static DEVICE_ATTR(lp_interval, S_IRUGO | S_IWUSR,
1738 bonding_show_lp_interval, bonding_store_lp_interval);
1739
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001740static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001741 &dev_attr_slaves.attr,
1742 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001743 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001744 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001745 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001746 &dev_attr_arp_interval.attr,
1747 &dev_attr_arp_ip_target.attr,
1748 &dev_attr_downdelay.attr,
1749 &dev_attr_updelay.attr,
1750 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001751 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001752 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001753 &dev_attr_num_grat_arp.attr,
1754 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001755 &dev_attr_miimon.attr,
1756 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001757 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001758 &dev_attr_use_carrier.attr,
1759 &dev_attr_active_slave.attr,
1760 &dev_attr_mii_status.attr,
1761 &dev_attr_ad_aggregator.attr,
1762 &dev_attr_ad_num_ports.attr,
1763 &dev_attr_ad_actor_key.attr,
1764 &dev_attr_ad_partner_key.attr,
1765 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001766 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001767 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001768 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001769 &dev_attr_min_links.attr,
Neil Horman7eacd032013-09-13 11:05:33 -04001770 &dev_attr_lp_interval.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001771 NULL,
1772};
1773
1774static struct attribute_group bonding_group = {
1775 .name = "bonding",
1776 .attrs = per_bond_attrs,
1777};
1778
1779/*
1780 * Initialize sysfs. This sets up the bonding_masters file in
1781 * /sys/class/net.
1782 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001783int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001784{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001785 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001786
Eric W. Biederman4c224002011-10-12 21:56:25 +00001787 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001788 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001789
1790 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001791 /*
1792 * Permit multiple loads of the module by ignoring failures to
1793 * create the bonding_masters sysfs file. Bonding devices
1794 * created by second or subsequent loads of the module will
1795 * not be listed in, or controllable by, bonding_masters, but
1796 * will have the usual "bonding" sysfs directory.
1797 *
1798 * This is done to preserve backwards compatibility for
1799 * initscripts/sysconfig, which load bonding multiple times to
1800 * configure multiple bonding devices.
1801 */
1802 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001803 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001804 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001805 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001806 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001807 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001808 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001809 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001810
1811 return ret;
1812
1813}
1814
1815/*
1816 * Remove /sys/class/net/bonding_masters.
1817 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001818void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001819{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001820 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001821}
1822
1823/*
1824 * Initialize sysfs for each bond. This sets up and registers
1825 * the 'bondctl' directory for each individual bond under /sys/class/net.
1826 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001827void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001828{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001829 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001830}
1831