blob: 4e386836d34f066a1bdece63db14cdae2b804b57 [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
352 bond->params.mode = new_value;
353 bond_set_mode_ops(bond, bond->params.mode);
354 pr_info("%s: setting mode to %s (%d).\n",
355 bond->dev->name, bond_mode_tbl[new_value].modename,
356 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800357out:
nikolay@redhat.comea6836d2013-05-18 01:18:28 +0000358 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800359 return ret;
360}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000361static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
362 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800363
364/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000365 * Show and set the bonding transmit hash method.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800366 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700367static ssize_t bonding_show_xmit_hash(struct device *d,
368 struct device_attribute *attr,
369 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800370{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700371 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800372
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800373 return sprintf(buf, "%s %d\n",
374 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
375 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800376}
377
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700378static ssize_t bonding_store_xmit_hash(struct device *d,
379 struct device_attribute *attr,
380 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800381{
382 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700383 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800384
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;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800391 } else {
392 bond->params.xmit_policy = new_value;
393 bond_set_mode_ops(bond, bond->params.mode);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800394 pr_info("%s: setting xmit hash policy to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000395 bond->dev->name,
396 xmit_hashtype_tbl[new_value].modename, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800397 }
Nikolay Aleksandrov53edee22013-05-24 00:59:47 +0000398
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800399 return ret;
400}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000401static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
402 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800403
404/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700405 * Show and set arp_validate.
406 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700407static ssize_t bonding_show_arp_validate(struct device *d,
408 struct device_attribute *attr,
409 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700410{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700411 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700412
413 return sprintf(buf, "%s %d\n",
414 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800415 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700416}
417
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700418static ssize_t bonding_store_arp_validate(struct device *d,
419 struct device_attribute *attr,
420 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700421{
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200422 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700423 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700424
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200425 if (!rtnl_trylock())
426 return restart_syscall();
Jay Vosburghece95f72008-01-17 16:25:01 -0800427 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700428 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800429 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700430 bond->dev->name, buf);
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200431 ret = -EINVAL;
432 goto out;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700433 }
434 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800435 pr_err("%s: arp_validate only supported in active-backup mode.\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700436 bond->dev->name);
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200437 ret = -EINVAL;
438 goto out;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700439 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800440 pr_info("%s: setting arp_validate to %s (%d).\n",
441 bond->dev->name, arp_validate_tbl[new_value].modename,
442 new_value);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700443
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700444 bond->params.arp_validate = new_value;
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200445out:
446 rtnl_unlock();
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700447
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200448 return ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700449}
450
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000451static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
452 bonding_store_arp_validate);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200453/*
454 * Show and set arp_all_targets.
455 */
456static ssize_t bonding_show_arp_all_targets(struct device *d,
457 struct device_attribute *attr,
458 char *buf)
459{
460 struct bonding *bond = to_bond(d);
461 int value = bond->params.arp_all_targets;
462
463 return sprintf(buf, "%s %d\n", arp_all_targets_tbl[value].modename,
464 value);
465}
466
467static ssize_t bonding_store_arp_all_targets(struct device *d,
468 struct device_attribute *attr,
469 const char *buf, size_t count)
470{
471 struct bonding *bond = to_bond(d);
472 int new_value;
473
474 new_value = bond_parse_parm(buf, arp_all_targets_tbl);
475 if (new_value < 0) {
476 pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
477 bond->dev->name, buf);
478 return -EINVAL;
479 }
480 pr_info("%s: setting arp_all_targets to %s (%d).\n",
481 bond->dev->name, arp_all_targets_tbl[new_value].modename,
482 new_value);
483
484 bond->params.arp_all_targets = new_value;
485
486 return count;
487}
488
489static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
490 bonding_show_arp_all_targets, bonding_store_arp_all_targets);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700491
492/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700493 * Show and store fail_over_mac. User only allowed to change the
494 * value when there are no slaves.
495 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000496static ssize_t bonding_show_fail_over_mac(struct device *d,
497 struct device_attribute *attr,
498 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700499{
500 struct bonding *bond = to_bond(d);
501
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700502 return sprintf(buf, "%s %d\n",
503 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
504 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700505}
506
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000507static ssize_t bonding_store_fail_over_mac(struct device *d,
508 struct device_attribute *attr,
509 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700510{
dingtianhong9402b742013-07-23 15:25:39 +0800511 int new_value, ret = count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700512 struct bonding *bond = to_bond(d);
513
dingtianhong9402b742013-07-23 15:25:39 +0800514 if (!rtnl_trylock())
515 return restart_syscall();
516
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200517 if (!list_empty(&bond->slave_list)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800518 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700519 bond->dev->name);
dingtianhong9402b742013-07-23 15:25:39 +0800520 ret = -EPERM;
521 goto out;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700522 }
523
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700524 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
525 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800526 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700527 bond->dev->name, buf);
dingtianhong9402b742013-07-23 15:25:39 +0800528 ret = -EINVAL;
529 goto out;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700530 }
531
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700532 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800533 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
534 bond->dev->name, fail_over_mac_tbl[new_value].modename,
535 new_value);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700536
dingtianhong9402b742013-07-23 15:25:39 +0800537out:
538 rtnl_unlock();
539 return ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700540}
541
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000542static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
543 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700544
545/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800546 * Show and set the arp timer interval. There are two tricky bits
547 * here. First, if ARP monitoring is activated, then we must disable
548 * MII monitoring. Second, if the ARP timer isn't running, we must
549 * start it.
550 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700551static ssize_t bonding_show_arp_interval(struct device *d,
552 struct device_attribute *attr,
553 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800554{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700555 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800556
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800557 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800558}
559
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700560static ssize_t bonding_store_arp_interval(struct device *d,
561 struct device_attribute *attr,
562 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800563{
564 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700565 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800566
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000567 if (!rtnl_trylock())
568 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800569 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800570 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800571 bond->dev->name);
572 ret = -EINVAL;
573 goto out;
574 }
575 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000576 pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800577 bond->dev->name, new_value, INT_MAX);
578 ret = -EINVAL;
579 goto out;
580 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000581 if (bond->params.mode == BOND_MODE_ALB ||
582 bond->params.mode == BOND_MODE_TLB) {
583 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
584 bond->dev->name, bond->dev->name);
585 ret = -EINVAL;
586 goto out;
587 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800588 pr_info("%s: Setting ARP monitoring interval to %d.\n",
589 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800590 bond->params.arp_interval = new_value;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000591 if (new_value) {
592 if (bond->params.miimon) {
593 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
594 bond->dev->name, bond->dev->name);
595 bond->params.miimon = 0;
596 }
597 if (!bond->params.arp_targets[0])
598 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
599 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800600 }
601 if (bond->dev->flags & IFF_UP) {
602 /* If the interface is up, we may need to fire off
603 * the ARP timer. If the interface is down, the
604 * timer will get fired off when the open function
605 * is called.
606 */
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000607 if (!new_value) {
608 cancel_delayed_work_sync(&bond->arp_work);
609 } else {
610 cancel_delayed_work_sync(&bond->mii_work);
611 queue_delayed_work(bond->wq, &bond->arp_work, 0);
612 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800613 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800614out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000615 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800616 return ret;
617}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000618static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
619 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800620
621/*
622 * Show and set the arp targets.
623 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700624static ssize_t bonding_show_arp_targets(struct device *d,
625 struct device_attribute *attr,
626 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800627{
628 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700629 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800630
631 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
632 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700633 res += sprintf(buf + res, "%pI4 ",
634 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800635 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800636 if (res)
637 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800638 return res;
639}
640
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700641static ssize_t bonding_store_arp_targets(struct device *d,
642 struct device_attribute *attr,
643 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800644{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700645 struct bonding *bond = to_bond(d);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200646 struct slave *slave;
647 __be32 newtarget, *targets;
648 unsigned long *targets_rx;
649 int ind, i, j, ret = -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800650
651 targets = bond->params.arp_targets;
652 newtarget = in_aton(buf + 1);
653 /* look for adds */
654 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400655 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800656 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700657 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800658 goto out;
659 }
660
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200661 if (bond_get_targets_ip(targets, newtarget) != -1) { /* dup */
662 pr_err("%s: ARP target %pI4 is already present\n",
663 bond->dev->name, &newtarget);
664 goto out;
665 }
666
Veaceslav Falico8599b522013-06-24 11:49:34 +0200667 ind = bond_get_targets_ip(targets, 0); /* first free slot */
668 if (ind == -1) {
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200669 pr_err("%s: ARP target table is full!\n",
670 bond->dev->name);
671 goto out;
672 }
673
674 pr_info("%s: adding ARP target %pI4.\n", bond->dev->name,
675 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200676 /* not to race with bond_arp_rcv */
677 write_lock_bh(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200678 bond_for_each_slave(bond, slave)
Veaceslav Falico8599b522013-06-24 11:49:34 +0200679 slave->target_last_arp_rx[ind] = jiffies;
680 targets[ind] = newtarget;
681 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000682 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400683 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800684 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700685 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800686 goto out;
687 }
688
Veaceslav Falico8599b522013-06-24 11:49:34 +0200689 ind = bond_get_targets_ip(targets, newtarget);
690 if (ind == -1) {
691 pr_err("%s: unable to remove nonexistent ARP target %pI4.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800692 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800693 goto out;
694 }
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200695
Veaceslav Falico8599b522013-06-24 11:49:34 +0200696 if (ind == 0 && !targets[1] && bond->params.arp_interval)
697 pr_warn("%s: removing last arp target with arp_interval on\n",
698 bond->dev->name);
699
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200700 pr_info("%s: removing ARP target %pI4.\n", bond->dev->name,
701 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200702
703 write_lock_bh(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200704 bond_for_each_slave(bond, slave) {
Veaceslav Falico8599b522013-06-24 11:49:34 +0200705 targets_rx = slave->target_last_arp_rx;
706 j = ind;
707 for (; (j < BOND_MAX_ARP_TARGETS-1) && targets[j+1]; j++)
708 targets_rx[j] = targets_rx[j+1];
709 targets_rx[j] = 0;
710 }
711 for (i = ind; (i < BOND_MAX_ARP_TARGETS-1) && targets[i+1]; i++)
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200712 targets[i] = targets[i+1];
713 targets[i] = 0;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200714 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000715 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800716 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
717 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800718 ret = -EPERM;
719 goto out;
720 }
721
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200722 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800723out:
724 return ret;
725}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700726static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800727
728/*
729 * Show and set the up and down delays. These must be multiples of the
730 * MII monitoring value, and are stored internally as the multiplier.
731 * Thus, we must translate to MS for the real world.
732 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700733static ssize_t bonding_show_downdelay(struct device *d,
734 struct device_attribute *attr,
735 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800736{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700737 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800738
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800739 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800740}
741
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700742static ssize_t bonding_store_downdelay(struct device *d,
743 struct device_attribute *attr,
744 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800745{
746 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700747 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800748
749 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800750 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800751 bond->dev->name);
752 ret = -EPERM;
753 goto out;
754 }
755
756 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800757 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800758 ret = -EINVAL;
759 goto out;
760 }
761 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800762 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000763 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800764 ret = -EINVAL;
765 goto out;
766 } else {
767 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800768 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 +0000769 bond->dev->name, new_value,
770 bond->params.miimon,
771 (new_value / bond->params.miimon) *
772 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800773 }
774 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800775 pr_info("%s: Setting down delay to %d.\n",
776 bond->dev->name,
777 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800778
779 }
780
781out:
782 return ret;
783}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000784static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
785 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800786
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700787static ssize_t bonding_show_updelay(struct device *d,
788 struct device_attribute *attr,
789 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800790{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700791 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800792
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800793 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800794
795}
796
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700797static ssize_t bonding_store_updelay(struct device *d,
798 struct device_attribute *attr,
799 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800800{
801 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700802 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800803
804 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800805 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800806 bond->dev->name);
807 ret = -EPERM;
808 goto out;
809 }
810
811 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800812 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800813 bond->dev->name);
814 ret = -EINVAL;
815 goto out;
816 }
817 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000818 pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n",
819 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800820 ret = -EINVAL;
821 goto out;
822 } else {
823 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800824 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 +0000825 bond->dev->name, new_value,
826 bond->params.miimon,
827 (new_value / bond->params.miimon) *
828 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800829 }
830 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800831 pr_info("%s: Setting up delay to %d.\n",
832 bond->dev->name,
833 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800834 }
835
836out:
837 return ret;
838}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000839static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
840 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800841
842/*
843 * Show and set the LACP interval. Interface must be down, and the mode
844 * must be set to 802.3ad mode.
845 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700846static ssize_t bonding_show_lacp(struct device *d,
847 struct device_attribute *attr,
848 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800849{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700850 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800851
852 return sprintf(buf, "%s %d\n",
853 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800854 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800855}
856
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700857static ssize_t bonding_store_lacp(struct device *d,
858 struct device_attribute *attr,
859 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800860{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700861 struct bonding *bond = to_bond(d);
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200862 int new_value, ret = count;
863
864 if (!rtnl_trylock())
865 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800866
867 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800868 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800869 bond->dev->name);
870 ret = -EPERM;
871 goto out;
872 }
873
874 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800875 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800876 bond->dev->name);
877 ret = -EPERM;
878 goto out;
879 }
880
Jay Vosburghece95f72008-01-17 16:25:01 -0800881 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800882
883 if ((new_value == 1) || (new_value == 0)) {
884 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000885 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800886 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000887 bond->dev->name, bond_lacp_tbl[new_value].modename,
888 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800889 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800890 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000891 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800892 ret = -EINVAL;
893 }
894out:
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200895 rtnl_unlock();
896
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800897 return ret;
898}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000899static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
900 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800901
stephen hemminger655f8912011-06-22 09:54:39 +0000902static ssize_t bonding_show_min_links(struct device *d,
903 struct device_attribute *attr,
904 char *buf)
905{
906 struct bonding *bond = to_bond(d);
907
908 return sprintf(buf, "%d\n", bond->params.min_links);
909}
910
911static ssize_t bonding_store_min_links(struct device *d,
912 struct device_attribute *attr,
913 const char *buf, size_t count)
914{
915 struct bonding *bond = to_bond(d);
916 int ret;
917 unsigned int new_value;
918
919 ret = kstrtouint(buf, 0, &new_value);
920 if (ret < 0) {
921 pr_err("%s: Ignoring invalid min links value %s.\n",
922 bond->dev->name, buf);
923 return ret;
924 }
925
926 pr_info("%s: Setting min links value to %u\n",
927 bond->dev->name, new_value);
928 bond->params.min_links = new_value;
929 return count;
930}
931static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
932 bonding_show_min_links, bonding_store_min_links);
933
Jay Vosburghfd989c82008-11-04 17:51:16 -0800934static ssize_t bonding_show_ad_select(struct device *d,
935 struct device_attribute *attr,
936 char *buf)
937{
938 struct bonding *bond = to_bond(d);
939
940 return sprintf(buf, "%s %d\n",
941 ad_select_tbl[bond->params.ad_select].modename,
942 bond->params.ad_select);
943}
944
945
946static ssize_t bonding_store_ad_select(struct device *d,
947 struct device_attribute *attr,
948 const char *buf, size_t count)
949{
950 int new_value, ret = count;
951 struct bonding *bond = to_bond(d);
952
953 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800954 pr_err("%s: Unable to update ad_select because interface is up.\n",
955 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800956 ret = -EPERM;
957 goto out;
958 }
959
960 new_value = bond_parse_parm(buf, ad_select_tbl);
961
962 if (new_value != -1) {
963 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800964 pr_info("%s: Setting ad_select to %s (%d).\n",
965 bond->dev->name, ad_select_tbl[new_value].modename,
966 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800967 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800968 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800969 bond->dev->name, (int)strlen(buf) - 1, buf);
970 ret = -EINVAL;
971 }
972out:
973 return ret;
974}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000975static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
976 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800977
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800978/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000979 * Show and set the number of peer notifications to send after a failover event.
980 */
981static ssize_t bonding_show_num_peer_notif(struct device *d,
982 struct device_attribute *attr,
983 char *buf)
984{
985 struct bonding *bond = to_bond(d);
986 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
987}
988
989static ssize_t bonding_store_num_peer_notif(struct device *d,
990 struct device_attribute *attr,
991 const char *buf, size_t count)
992{
993 struct bonding *bond = to_bond(d);
994 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
995 return err ? err : count;
996}
997static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
998 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
999static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
1000 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
1001
1002/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001003 * Show and set the MII monitor interval. There are two tricky bits
1004 * here. First, if MII monitoring is activated, then we must disable
1005 * ARP monitoring. Second, if the timer isn't running, we must
1006 * start it.
1007 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001008static ssize_t bonding_show_miimon(struct device *d,
1009 struct device_attribute *attr,
1010 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001011{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001012 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001013
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001014 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001015}
1016
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001017static ssize_t bonding_store_miimon(struct device *d,
1018 struct device_attribute *attr,
1019 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001020{
1021 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001022 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001023
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001024 if (!rtnl_trylock())
1025 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001026 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001027 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001028 bond->dev->name);
1029 ret = -EINVAL;
1030 goto out;
1031 }
1032 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001033 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001034 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001035 ret = -EINVAL;
1036 goto out;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001037 }
1038 pr_info("%s: Setting MII monitoring interval to %d.\n",
1039 bond->dev->name, new_value);
1040 bond->params.miimon = new_value;
1041 if (bond->params.updelay)
1042 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
1043 bond->dev->name,
1044 bond->params.updelay * bond->params.miimon);
1045 if (bond->params.downdelay)
1046 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
1047 bond->dev->name,
1048 bond->params.downdelay * bond->params.miimon);
1049 if (new_value && bond->params.arp_interval) {
1050 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
1051 bond->dev->name);
1052 bond->params.arp_interval = 0;
1053 if (bond->params.arp_validate)
1054 bond->params.arp_validate = BOND_ARP_VALIDATE_NONE;
1055 }
1056 if (bond->dev->flags & IFF_UP) {
1057 /* If the interface is up, we may need to fire off
1058 * the MII timer. If the interface is down, the
1059 * timer will get fired off when the open function
1060 * is called.
1061 */
1062 if (!new_value) {
1063 cancel_delayed_work_sync(&bond->mii_work);
1064 } else {
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001065 cancel_delayed_work_sync(&bond->arp_work);
1066 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001067 }
1068 }
1069out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001070 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001071 return ret;
1072}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001073static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1074 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001075
1076/*
1077 * Show and set the primary slave. The store function is much
1078 * simpler than bonding_store_slaves function because it only needs to
1079 * handle one interface name.
1080 * The bond must be a mode that supports a primary for this be
1081 * set.
1082 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001083static ssize_t bonding_show_primary(struct device *d,
1084 struct device_attribute *attr,
1085 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001086{
1087 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001088 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001089
1090 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001091 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001092
1093 return count;
1094}
1095
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001096static ssize_t bonding_store_primary(struct device *d,
1097 struct device_attribute *attr,
1098 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001099{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001100 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001101 char ifname[IFNAMSIZ];
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001102 struct slave *slave;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001103
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001104 if (!rtnl_trylock())
1105 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001106 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001107 read_lock(&bond->lock);
1108 write_lock_bh(&bond->curr_slave_lock);
1109
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001110 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001111 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1112 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001113 goto out;
1114 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001115
nikolay@redhat.comeb6e98a2012-10-31 04:42:51 +00001116 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001117
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001118 /* check to see if we are clearing primary */
1119 if (!strlen(ifname) || buf[0] == '\n') {
1120 pr_info("%s: Setting primary slave to None.\n",
1121 bond->dev->name);
1122 bond->primary_slave = NULL;
Milos Vyleteleb492f72013-01-29 09:59:00 +00001123 memset(bond->params.primary, 0, sizeof(bond->params.primary));
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001124 bond_select_active_slave(bond);
1125 goto out;
1126 }
1127
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001128 bond_for_each_slave(bond, slave) {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001129 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1130 pr_info("%s: Setting %s as primary slave.\n",
1131 bond->dev->name, slave->dev->name);
1132 bond->primary_slave = slave;
1133 strcpy(bond->params.primary, slave->dev->name);
1134 bond_select_active_slave(bond);
1135 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001136 }
1137 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001138
Weiping Pan8a936642012-06-10 23:00:20 +00001139 strncpy(bond->params.primary, ifname, IFNAMSIZ);
1140 bond->params.primary[IFNAMSIZ - 1] = 0;
1141
1142 pr_info("%s: Recording %s as primary, "
1143 "but it has not been enslaved to %s yet.\n",
1144 bond->dev->name, ifname, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001145out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001146 write_unlock_bh(&bond->curr_slave_lock);
1147 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001148 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001149 rtnl_unlock();
1150
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001151 return count;
1152}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001153static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1154 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001155
1156/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001157 * Show and set the primary_reselect flag.
1158 */
1159static ssize_t bonding_show_primary_reselect(struct device *d,
1160 struct device_attribute *attr,
1161 char *buf)
1162{
1163 struct bonding *bond = to_bond(d);
1164
1165 return sprintf(buf, "%s %d\n",
1166 pri_reselect_tbl[bond->params.primary_reselect].modename,
1167 bond->params.primary_reselect);
1168}
1169
1170static ssize_t bonding_store_primary_reselect(struct device *d,
1171 struct device_attribute *attr,
1172 const char *buf, size_t count)
1173{
1174 int new_value, ret = count;
1175 struct bonding *bond = to_bond(d);
1176
1177 if (!rtnl_trylock())
1178 return restart_syscall();
1179
1180 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1181 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001182 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001183 bond->dev->name,
1184 (int) strlen(buf) - 1, buf);
1185 ret = -EINVAL;
1186 goto out;
1187 }
1188
1189 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001190 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001191 bond->dev->name, pri_reselect_tbl[new_value].modename,
1192 new_value);
1193
Neil Hormane843fa52010-10-13 16:01:50 +00001194 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001195 read_lock(&bond->lock);
1196 write_lock_bh(&bond->curr_slave_lock);
1197 bond_select_active_slave(bond);
1198 write_unlock_bh(&bond->curr_slave_lock);
1199 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001200 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001201out:
1202 rtnl_unlock();
1203 return ret;
1204}
1205static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1206 bonding_show_primary_reselect,
1207 bonding_store_primary_reselect);
1208
1209/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001210 * Show and set the use_carrier flag.
1211 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001212static ssize_t bonding_show_carrier(struct device *d,
1213 struct device_attribute *attr,
1214 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001215{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001216 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001217
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001218 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001219}
1220
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001221static ssize_t bonding_store_carrier(struct device *d,
1222 struct device_attribute *attr,
1223 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001224{
1225 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001226 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001227
1228
1229 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001230 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001231 bond->dev->name);
1232 ret = -EINVAL;
1233 goto out;
1234 }
1235 if ((new_value == 0) || (new_value == 1)) {
1236 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001237 pr_info("%s: Setting use_carrier to %d.\n",
1238 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001239 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001240 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1241 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001242 }
1243out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001244 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001245}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001246static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1247 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001248
1249
1250/*
1251 * Show and set currently active_slave.
1252 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001253static ssize_t bonding_show_active_slave(struct device *d,
1254 struct device_attribute *attr,
1255 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001256{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001257 struct bonding *bond = to_bond(d);
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001258 struct slave *curr;
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001259 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001260
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001261 rcu_read_lock();
1262 curr = rcu_dereference(bond->curr_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001263 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001264 count = sprintf(buf, "%s\n", curr->dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001265 rcu_read_unlock();
1266
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001267 return count;
1268}
1269
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001270static ssize_t bonding_store_active_slave(struct device *d,
1271 struct device_attribute *attr,
1272 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001273{
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001274 struct slave *slave, *old_active, *new_active;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001275 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001276 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001277
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001278 if (!rtnl_trylock())
1279 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001280
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001281 old_active = new_active = NULL;
Neil Hormane843fa52010-10-13 16:01:50 +00001282 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001283 read_lock(&bond->lock);
1284 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001285
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001286 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001287 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001288 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001289 goto out;
1290 }
1291
nikolay@redhat.comc84e1592012-10-31 06:03:52 +00001292 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001293
1294 /* check to see if we are clearing active */
1295 if (!strlen(ifname) || buf[0] == '\n') {
1296 pr_info("%s: Clearing current active slave.\n",
1297 bond->dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001298 rcu_assign_pointer(bond->curr_active_slave, NULL);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001299 bond_select_active_slave(bond);
1300 goto out;
1301 }
1302
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001303 bond_for_each_slave(bond, slave) {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001304 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1305 old_active = bond->curr_active_slave;
1306 new_active = slave;
1307 if (new_active == old_active) {
1308 /* do nothing */
1309 pr_info("%s: %s is already the current"
1310 " active slave.\n",
1311 bond->dev->name,
1312 slave->dev->name);
1313 goto out;
dingtianhong38c49162013-07-23 15:25:32 +08001314 } else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001315 if ((new_active) &&
1316 (old_active) &&
1317 (new_active->link == BOND_LINK_UP) &&
1318 IS_UP(new_active->dev)) {
1319 pr_info("%s: Setting %s as active"
1320 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001321 bond->dev->name,
1322 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001323 bond_change_active_slave(bond,
1324 new_active);
dingtianhong38c49162013-07-23 15:25:32 +08001325 } else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001326 pr_info("%s: Could not set %s as"
1327 " active slave; either %s is"
1328 " down or the link is down.\n",
1329 bond->dev->name,
1330 slave->dev->name,
1331 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001332 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001333 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001334 }
1335 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001336 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001337
1338 pr_info("%s: Unable to set %.*s as active slave.\n",
1339 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001340 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001341 write_unlock_bh(&bond->curr_slave_lock);
1342 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001343 unblock_netpoll_tx();
1344
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001345 rtnl_unlock();
1346
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001347 return count;
1348
1349}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001350static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1351 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001352
1353
1354/*
1355 * Show link status of the bond interface.
1356 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001357static ssize_t bonding_show_mii_status(struct device *d,
1358 struct device_attribute *attr,
1359 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001360{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001361 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001362
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001363 return sprintf(buf, "%s\n", bond->curr_active_slave ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001364}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001365static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001366
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001367/*
1368 * Show current 802.3ad aggregator ID.
1369 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001370static ssize_t bonding_show_ad_aggregator(struct device *d,
1371 struct device_attribute *attr,
1372 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001373{
1374 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001375 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001376
1377 if (bond->params.mode == BOND_MODE_8023AD) {
1378 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001379 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001380 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001381 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001382 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001383
1384 return count;
1385}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001386static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001387
1388
1389/*
1390 * Show number of active 802.3ad ports.
1391 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001392static ssize_t bonding_show_ad_num_ports(struct device *d,
1393 struct device_attribute *attr,
1394 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001395{
1396 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001397 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001398
1399 if (bond->params.mode == BOND_MODE_8023AD) {
1400 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001401 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001402 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001403 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001404 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001405
1406 return count;
1407}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001408static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001409
1410
1411/*
1412 * Show current 802.3ad actor key.
1413 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001414static ssize_t bonding_show_ad_actor_key(struct device *d,
1415 struct device_attribute *attr,
1416 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001417{
1418 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001419 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001420
1421 if (bond->params.mode == BOND_MODE_8023AD) {
1422 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001423 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001424 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001425 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001426 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001427
1428 return count;
1429}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001430static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001431
1432
1433/*
1434 * Show current 802.3ad partner key.
1435 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001436static ssize_t bonding_show_ad_partner_key(struct device *d,
1437 struct device_attribute *attr,
1438 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001439{
1440 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001441 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001442
1443 if (bond->params.mode == BOND_MODE_8023AD) {
1444 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001445 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001446 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001447 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001448 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001449
1450 return count;
1451}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001452static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001453
1454
1455/*
1456 * Show current 802.3ad partner mac.
1457 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001458static ssize_t bonding_show_ad_partner_mac(struct device *d,
1459 struct device_attribute *attr,
1460 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001461{
1462 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001463 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001464
1465 if (bond->params.mode == BOND_MODE_8023AD) {
1466 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001467 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001468 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001469 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001470
1471 return count;
1472}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001473static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001474
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001475/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001476 * Show the queue_ids of the slaves in the current bond.
1477 */
1478static ssize_t bonding_show_queue_id(struct device *d,
1479 struct device_attribute *attr,
1480 char *buf)
1481{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001482 struct bonding *bond = to_bond(d);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001483 struct slave *slave;
1484 int res = 0;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001485
1486 if (!rtnl_trylock())
1487 return restart_syscall();
1488
1489 read_lock(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001490 bond_for_each_slave(bond, slave) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001491 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1492 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001493 if ((PAGE_SIZE - res) > 10)
1494 res = PAGE_SIZE - 10;
1495 res += sprintf(buf + res, "++more++ ");
1496 break;
1497 }
1498 res += sprintf(buf + res, "%s:%d ",
1499 slave->dev->name, slave->queue_id);
1500 }
1501 read_unlock(&bond->lock);
1502 if (res)
1503 buf[res-1] = '\n'; /* eat the leftover space */
1504 rtnl_unlock();
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001505
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001506 return res;
1507}
1508
1509/*
1510 * Set the queue_ids of the slaves in the current bond. The bond
1511 * interface must be enslaved for this to work.
1512 */
1513static ssize_t bonding_store_queue_id(struct device *d,
1514 struct device_attribute *attr,
1515 const char *buffer, size_t count)
1516{
1517 struct slave *slave, *update_slave;
1518 struct bonding *bond = to_bond(d);
1519 u16 qid;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001520 int ret = count;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001521 char *delim;
1522 struct net_device *sdev = NULL;
1523
1524 if (!rtnl_trylock())
1525 return restart_syscall();
1526
1527 /* delim will point to queue id if successful */
1528 delim = strchr(buffer, ':');
1529 if (!delim)
1530 goto err_no_cmd;
1531
1532 /*
1533 * Terminate string that points to device name and bump it
1534 * up one, so we can read the queue id there.
1535 */
1536 *delim = '\0';
1537 if (sscanf(++delim, "%hd\n", &qid) != 1)
1538 goto err_no_cmd;
1539
1540 /* Check buffer length, valid ifname and queue id */
1541 if (strlen(buffer) > IFNAMSIZ ||
1542 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001543 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001544 goto err_no_cmd;
1545
1546 /* Get the pointer to that interface if it exists */
1547 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1548 if (!sdev)
1549 goto err_no_cmd;
1550
1551 read_lock(&bond->lock);
1552
1553 /* Search for thes slave and check for duplicate qids */
1554 update_slave = NULL;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001555 bond_for_each_slave(bond, slave) {
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001556 if (sdev == slave->dev)
1557 /*
1558 * We don't need to check the matching
1559 * slave for dups, since we're overwriting it
1560 */
1561 update_slave = slave;
1562 else if (qid && qid == slave->queue_id) {
1563 goto err_no_cmd_unlock;
1564 }
1565 }
1566
1567 if (!update_slave)
1568 goto err_no_cmd_unlock;
1569
1570 /* Actually set the qids for the slave */
1571 update_slave->queue_id = qid;
1572
1573 read_unlock(&bond->lock);
1574out:
1575 rtnl_unlock();
1576 return ret;
1577
1578err_no_cmd_unlock:
1579 read_unlock(&bond->lock);
1580err_no_cmd:
1581 pr_info("invalid input for queue_id set for %s.\n",
1582 bond->dev->name);
1583 ret = -EPERM;
1584 goto out;
1585}
1586
1587static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1588 bonding_store_queue_id);
1589
1590
1591/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001592 * Show and set the all_slaves_active flag.
1593 */
1594static ssize_t bonding_show_slaves_active(struct device *d,
1595 struct device_attribute *attr,
1596 char *buf)
1597{
1598 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001599
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001600 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1601}
1602
1603static ssize_t bonding_store_slaves_active(struct device *d,
1604 struct device_attribute *attr,
1605 const char *buf, size_t count)
1606{
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001607 struct bonding *bond = to_bond(d);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001608 int new_value, ret = count;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001609 struct slave *slave;
1610
1611 if (sscanf(buf, "%d", &new_value) != 1) {
1612 pr_err("%s: no all_slaves_active value specified.\n",
1613 bond->dev->name);
1614 ret = -EINVAL;
1615 goto out;
1616 }
1617
1618 if (new_value == bond->params.all_slaves_active)
1619 goto out;
1620
1621 if ((new_value == 0) || (new_value == 1)) {
1622 bond->params.all_slaves_active = new_value;
1623 } else {
1624 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1625 bond->dev->name, new_value);
1626 ret = -EINVAL;
1627 goto out;
1628 }
1629
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001630 read_lock(&bond->lock);
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001631 bond_for_each_slave(bond, slave) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001632 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001633 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001634 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001635 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001636 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001637 }
1638 }
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001639 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001640out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001641 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001642}
1643static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1644 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001645
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001646/*
1647 * Show and set the number of IGMP membership reports to send on link failure
1648 */
1649static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001650 struct device_attribute *attr,
1651 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001652{
1653 struct bonding *bond = to_bond(d);
1654
1655 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1656}
1657
1658static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001659 struct device_attribute *attr,
1660 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001661{
1662 int new_value, ret = count;
1663 struct bonding *bond = to_bond(d);
1664
1665 if (sscanf(buf, "%d", &new_value) != 1) {
1666 pr_err("%s: no resend_igmp value specified.\n",
1667 bond->dev->name);
1668 ret = -EINVAL;
1669 goto out;
1670 }
1671
Flavio Leitner94265cf2011-05-25 08:38:58 +00001672 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001673 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1674 bond->dev->name, new_value);
1675 ret = -EINVAL;
1676 goto out;
1677 }
1678
1679 pr_info("%s: Setting resend_igmp to %d.\n",
1680 bond->dev->name, new_value);
1681 bond->params.resend_igmp = new_value;
1682out:
1683 return ret;
1684}
1685
1686static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1687 bonding_show_resend_igmp, bonding_store_resend_igmp);
1688
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001689static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001690 &dev_attr_slaves.attr,
1691 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001692 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001693 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001694 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001695 &dev_attr_arp_interval.attr,
1696 &dev_attr_arp_ip_target.attr,
1697 &dev_attr_downdelay.attr,
1698 &dev_attr_updelay.attr,
1699 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001700 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001701 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001702 &dev_attr_num_grat_arp.attr,
1703 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001704 &dev_attr_miimon.attr,
1705 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001706 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001707 &dev_attr_use_carrier.attr,
1708 &dev_attr_active_slave.attr,
1709 &dev_attr_mii_status.attr,
1710 &dev_attr_ad_aggregator.attr,
1711 &dev_attr_ad_num_ports.attr,
1712 &dev_attr_ad_actor_key.attr,
1713 &dev_attr_ad_partner_key.attr,
1714 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001715 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001716 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001717 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001718 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001719 NULL,
1720};
1721
1722static struct attribute_group bonding_group = {
1723 .name = "bonding",
1724 .attrs = per_bond_attrs,
1725};
1726
1727/*
1728 * Initialize sysfs. This sets up the bonding_masters file in
1729 * /sys/class/net.
1730 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001731int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001732{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001733 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001734
Eric W. Biederman4c224002011-10-12 21:56:25 +00001735 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001736 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001737
1738 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001739 /*
1740 * Permit multiple loads of the module by ignoring failures to
1741 * create the bonding_masters sysfs file. Bonding devices
1742 * created by second or subsequent loads of the module will
1743 * not be listed in, or controllable by, bonding_masters, but
1744 * will have the usual "bonding" sysfs directory.
1745 *
1746 * This is done to preserve backwards compatibility for
1747 * initscripts/sysconfig, which load bonding multiple times to
1748 * configure multiple bonding devices.
1749 */
1750 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001751 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001752 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001753 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001754 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001755 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001756 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001757 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001758
1759 return ret;
1760
1761}
1762
1763/*
1764 * Remove /sys/class/net/bonding_masters.
1765 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001766void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001767{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001768 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001769}
1770
1771/*
1772 * Initialize sysfs for each bond. This sets up and registers
1773 * the 'bondctl' directory for each individual bond under /sys/class/net.
1774 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001775void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001776{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001777 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001778}
1779