blob: ae02c194c01b6909e379144ac68f2dbb8a08a20d [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{
212 struct slave *slave;
213 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700214 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800215
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700216 read_lock(&bond->lock);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800217 bond_for_each_slave(bond, slave, i) {
218 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 */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800230 return res;
231}
232
233/*
Veaceslav Falicod6641cc2013-05-28 01:26:13 +0000234 * Set the slaves in the current bond.
Jiri Pirkof9f35452010-05-18 05:46:39 +0000235 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
236 * All hard work should be done there.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800237 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700238static ssize_t bonding_store_slaves(struct device *d,
239 struct device_attribute *attr,
240 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800241{
242 char command[IFNAMSIZ + 1] = { 0, };
243 char *ifname;
Jiri Pirkof9f35452010-05-18 05:46:39 +0000244 int res, ret = count;
245 struct net_device *dev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700246 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800247
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000248 if (!rtnl_trylock())
249 return restart_syscall();
Jay Vosburgh027ea042008-01-17 16:25:02 -0800250
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800251 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
252 ifname = command + 1;
253 if ((strlen(command) <= 1) ||
254 !dev_valid_name(ifname))
255 goto err_no_cmd;
256
Jiri Pirkof9f35452010-05-18 05:46:39 +0000257 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
258 if (!dev) {
259 pr_info("%s: Interface %s does not exist!\n",
260 bond->dev->name, ifname);
261 ret = -ENODEV;
262 goto out;
263 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800264
Jiri Pirkof9f35452010-05-18 05:46:39 +0000265 switch (command[0]) {
266 case '+':
267 pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800268 res = bond_enslave(bond->dev, dev);
Jiri Pirkof9f35452010-05-18 05:46:39 +0000269 break;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000270
Jiri Pirkof9f35452010-05-18 05:46:39 +0000271 case '-':
272 pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name);
273 res = bond_release(bond->dev, dev);
274 break;
275
276 default:
277 goto err_no_cmd;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800278 }
279
Jiri Pirkof9f35452010-05-18 05:46:39 +0000280 if (res)
281 ret = res;
282 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800283
284err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800285 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
286 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800287 ret = -EPERM;
288
289out:
Jay Vosburgh027ea042008-01-17 16:25:02 -0800290 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800291 return ret;
292}
293
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000294static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
295 bonding_store_slaves);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800296
297/*
298 * Show and set the bonding mode. The bond interface must be down to
299 * change the mode.
300 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700301static ssize_t bonding_show_mode(struct device *d,
302 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800303{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700304 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800305
306 return sprintf(buf, "%s %d\n",
307 bond_mode_tbl[bond->params.mode].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800308 bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800309}
310
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700311static ssize_t bonding_store_mode(struct device *d,
312 struct device_attribute *attr,
313 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800314{
315 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700316 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800317
nikolay@redhat.comea6836d2013-05-18 01:18:28 +0000318 if (!rtnl_trylock())
319 return restart_syscall();
320
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800321 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800322 pr_err("unable to update mode of %s because interface is up.\n",
323 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800324 ret = -EPERM;
325 goto out;
326 }
327
Veaceslav Falico4a8bb7e2011-11-15 06:44:42 +0000328 if (bond->slave_cnt > 0) {
329 pr_err("unable to update mode of %s because it has slaves.\n",
330 bond->dev->name);
331 ret = -EPERM;
332 goto out;
333 }
334
Jay Vosburghece95f72008-01-17 16:25:01 -0800335 new_value = bond_parse_parm(buf, bond_mode_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800336 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800337 pr_err("%s: Ignoring invalid mode value %.*s.\n",
338 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800339 ret = -EINVAL;
340 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800341 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000342 if ((new_value == BOND_MODE_ALB ||
343 new_value == BOND_MODE_TLB) &&
344 bond->params.arp_interval) {
345 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
346 bond->dev->name, bond_mode_tbl[new_value].modename);
347 ret = -EINVAL;
348 goto out;
349 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000350
351 bond->params.mode = new_value;
352 bond_set_mode_ops(bond, bond->params.mode);
353 pr_info("%s: setting mode to %s (%d).\n",
354 bond->dev->name, bond_mode_tbl[new_value].modename,
355 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800356out:
nikolay@redhat.comea6836d2013-05-18 01:18:28 +0000357 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800358 return ret;
359}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000360static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
361 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800362
363/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000364 * Show and set the bonding transmit hash method.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800365 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700366static ssize_t bonding_show_xmit_hash(struct device *d,
367 struct device_attribute *attr,
368 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800369{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700370 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800371
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800372 return sprintf(buf, "%s %d\n",
373 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
374 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800375}
376
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700377static ssize_t bonding_store_xmit_hash(struct device *d,
378 struct device_attribute *attr,
379 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800380{
381 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700382 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800383
Jay Vosburghece95f72008-01-17 16:25:01 -0800384 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800385 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800386 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800387 bond->dev->name,
388 (int)strlen(buf) - 1, buf);
389 ret = -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800390 } else {
391 bond->params.xmit_policy = new_value;
392 bond_set_mode_ops(bond, bond->params.mode);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800393 pr_info("%s: setting xmit hash policy to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000394 bond->dev->name,
395 xmit_hashtype_tbl[new_value].modename, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800396 }
Nikolay Aleksandrov53edee22013-05-24 00:59:47 +0000397
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800398 return ret;
399}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000400static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
401 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800402
403/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700404 * Show and set arp_validate.
405 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700406static ssize_t bonding_show_arp_validate(struct device *d,
407 struct device_attribute *attr,
408 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700409{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700410 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700411
412 return sprintf(buf, "%s %d\n",
413 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800414 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700415}
416
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700417static ssize_t bonding_store_arp_validate(struct device *d,
418 struct device_attribute *attr,
419 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700420{
421 int new_value;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700422 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700423
Jay Vosburghece95f72008-01-17 16:25:01 -0800424 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700425 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800426 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700427 bond->dev->name, buf);
428 return -EINVAL;
429 }
430 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800431 pr_err("%s: arp_validate only supported in active-backup mode.\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700432 bond->dev->name);
433 return -EINVAL;
434 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800435 pr_info("%s: setting arp_validate to %s (%d).\n",
436 bond->dev->name, arp_validate_tbl[new_value].modename,
437 new_value);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700438
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700439 bond->params.arp_validate = new_value;
440
441 return count;
442}
443
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000444static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
445 bonding_store_arp_validate);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200446/*
447 * Show and set arp_all_targets.
448 */
449static ssize_t bonding_show_arp_all_targets(struct device *d,
450 struct device_attribute *attr,
451 char *buf)
452{
453 struct bonding *bond = to_bond(d);
454 int value = bond->params.arp_all_targets;
455
456 return sprintf(buf, "%s %d\n", arp_all_targets_tbl[value].modename,
457 value);
458}
459
460static ssize_t bonding_store_arp_all_targets(struct device *d,
461 struct device_attribute *attr,
462 const char *buf, size_t count)
463{
464 struct bonding *bond = to_bond(d);
465 int new_value;
466
467 new_value = bond_parse_parm(buf, arp_all_targets_tbl);
468 if (new_value < 0) {
469 pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
470 bond->dev->name, buf);
471 return -EINVAL;
472 }
473 pr_info("%s: setting arp_all_targets to %s (%d).\n",
474 bond->dev->name, arp_all_targets_tbl[new_value].modename,
475 new_value);
476
477 bond->params.arp_all_targets = new_value;
478
479 return count;
480}
481
482static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
483 bonding_show_arp_all_targets, bonding_store_arp_all_targets);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700484
485/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700486 * Show and store fail_over_mac. User only allowed to change the
487 * value when there are no slaves.
488 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000489static ssize_t bonding_show_fail_over_mac(struct device *d,
490 struct device_attribute *attr,
491 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700492{
493 struct bonding *bond = to_bond(d);
494
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700495 return sprintf(buf, "%s %d\n",
496 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
497 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700498}
499
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000500static ssize_t bonding_store_fail_over_mac(struct device *d,
501 struct device_attribute *attr,
502 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700503{
dingtianhong9402b742013-07-23 15:25:39 +0800504 int new_value, ret = count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700505 struct bonding *bond = to_bond(d);
506
dingtianhong9402b742013-07-23 15:25:39 +0800507 if (!rtnl_trylock())
508 return restart_syscall();
509
Jay Vosburghdd957c52007-10-09 19:57:24 -0700510 if (bond->slave_cnt != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800511 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700512 bond->dev->name);
dingtianhong9402b742013-07-23 15:25:39 +0800513 ret = -EPERM;
514 goto out;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700515 }
516
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700517 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
518 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800519 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700520 bond->dev->name, buf);
dingtianhong9402b742013-07-23 15:25:39 +0800521 ret = -EINVAL;
522 goto out;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700523 }
524
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700525 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800526 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
527 bond->dev->name, fail_over_mac_tbl[new_value].modename,
528 new_value);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700529
dingtianhong9402b742013-07-23 15:25:39 +0800530out:
531 rtnl_unlock();
532 return ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700533}
534
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000535static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
536 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700537
538/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800539 * Show and set the arp timer interval. There are two tricky bits
540 * here. First, if ARP monitoring is activated, then we must disable
541 * MII monitoring. Second, if the ARP timer isn't running, we must
542 * start it.
543 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700544static ssize_t bonding_show_arp_interval(struct device *d,
545 struct device_attribute *attr,
546 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800547{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700548 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800549
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800550 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800551}
552
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700553static ssize_t bonding_store_arp_interval(struct device *d,
554 struct device_attribute *attr,
555 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800556{
557 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700558 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800559
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000560 if (!rtnl_trylock())
561 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800562 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800563 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800564 bond->dev->name);
565 ret = -EINVAL;
566 goto out;
567 }
568 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000569 pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800570 bond->dev->name, new_value, INT_MAX);
571 ret = -EINVAL;
572 goto out;
573 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000574 if (bond->params.mode == BOND_MODE_ALB ||
575 bond->params.mode == BOND_MODE_TLB) {
576 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
577 bond->dev->name, bond->dev->name);
578 ret = -EINVAL;
579 goto out;
580 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800581 pr_info("%s: Setting ARP monitoring interval to %d.\n",
582 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800583 bond->params.arp_interval = new_value;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000584 if (new_value) {
585 if (bond->params.miimon) {
586 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
587 bond->dev->name, bond->dev->name);
588 bond->params.miimon = 0;
589 }
590 if (!bond->params.arp_targets[0])
591 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
592 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800593 }
594 if (bond->dev->flags & IFF_UP) {
595 /* If the interface is up, we may need to fire off
596 * the ARP timer. If the interface is down, the
597 * timer will get fired off when the open function
598 * is called.
599 */
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000600 if (!new_value) {
601 cancel_delayed_work_sync(&bond->arp_work);
602 } else {
603 cancel_delayed_work_sync(&bond->mii_work);
604 queue_delayed_work(bond->wq, &bond->arp_work, 0);
605 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800606 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800607out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000608 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800609 return ret;
610}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000611static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
612 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800613
614/*
615 * Show and set the arp targets.
616 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700617static ssize_t bonding_show_arp_targets(struct device *d,
618 struct device_attribute *attr,
619 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800620{
621 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700622 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800623
624 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
625 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700626 res += sprintf(buf + res, "%pI4 ",
627 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800628 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800629 if (res)
630 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800631 return res;
632}
633
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700634static ssize_t bonding_store_arp_targets(struct device *d,
635 struct device_attribute *attr,
636 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800637{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700638 struct bonding *bond = to_bond(d);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200639 struct slave *slave;
640 __be32 newtarget, *targets;
641 unsigned long *targets_rx;
642 int ind, i, j, ret = -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800643
644 targets = bond->params.arp_targets;
645 newtarget = in_aton(buf + 1);
646 /* look for adds */
647 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400648 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800649 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700650 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800651 goto out;
652 }
653
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200654 if (bond_get_targets_ip(targets, newtarget) != -1) { /* dup */
655 pr_err("%s: ARP target %pI4 is already present\n",
656 bond->dev->name, &newtarget);
657 goto out;
658 }
659
Veaceslav Falico8599b522013-06-24 11:49:34 +0200660 ind = bond_get_targets_ip(targets, 0); /* first free slot */
661 if (ind == -1) {
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200662 pr_err("%s: ARP target table is full!\n",
663 bond->dev->name);
664 goto out;
665 }
666
667 pr_info("%s: adding ARP target %pI4.\n", bond->dev->name,
668 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200669 /* not to race with bond_arp_rcv */
670 write_lock_bh(&bond->lock);
671 bond_for_each_slave(bond, slave, i)
672 slave->target_last_arp_rx[ind] = jiffies;
673 targets[ind] = newtarget;
674 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000675 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400676 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800677 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700678 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800679 goto out;
680 }
681
Veaceslav Falico8599b522013-06-24 11:49:34 +0200682 ind = bond_get_targets_ip(targets, newtarget);
683 if (ind == -1) {
684 pr_err("%s: unable to remove nonexistent ARP target %pI4.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800685 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800686 goto out;
687 }
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200688
Veaceslav Falico8599b522013-06-24 11:49:34 +0200689 if (ind == 0 && !targets[1] && bond->params.arp_interval)
690 pr_warn("%s: removing last arp target with arp_interval on\n",
691 bond->dev->name);
692
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200693 pr_info("%s: removing ARP target %pI4.\n", bond->dev->name,
694 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200695
696 write_lock_bh(&bond->lock);
697 bond_for_each_slave(bond, slave, i) {
698 targets_rx = slave->target_last_arp_rx;
699 j = ind;
700 for (; (j < BOND_MAX_ARP_TARGETS-1) && targets[j+1]; j++)
701 targets_rx[j] = targets_rx[j+1];
702 targets_rx[j] = 0;
703 }
704 for (i = ind; (i < BOND_MAX_ARP_TARGETS-1) && targets[i+1]; i++)
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200705 targets[i] = targets[i+1];
706 targets[i] = 0;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200707 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000708 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800709 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
710 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800711 ret = -EPERM;
712 goto out;
713 }
714
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200715 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800716out:
717 return ret;
718}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700719static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800720
721/*
722 * Show and set the up and down delays. These must be multiples of the
723 * MII monitoring value, and are stored internally as the multiplier.
724 * Thus, we must translate to MS for the real world.
725 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700726static ssize_t bonding_show_downdelay(struct device *d,
727 struct device_attribute *attr,
728 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800729{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700730 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800731
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800732 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800733}
734
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700735static ssize_t bonding_store_downdelay(struct device *d,
736 struct device_attribute *attr,
737 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800738{
739 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700740 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800741
742 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800743 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800744 bond->dev->name);
745 ret = -EPERM;
746 goto out;
747 }
748
749 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800750 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800751 ret = -EINVAL;
752 goto out;
753 }
754 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800755 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000756 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800757 ret = -EINVAL;
758 goto out;
759 } else {
760 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800761 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 +0000762 bond->dev->name, new_value,
763 bond->params.miimon,
764 (new_value / bond->params.miimon) *
765 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800766 }
767 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800768 pr_info("%s: Setting down delay to %d.\n",
769 bond->dev->name,
770 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800771
772 }
773
774out:
775 return ret;
776}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000777static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
778 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800779
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700780static ssize_t bonding_show_updelay(struct device *d,
781 struct device_attribute *attr,
782 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800783{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700784 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800785
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800786 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800787
788}
789
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700790static ssize_t bonding_store_updelay(struct device *d,
791 struct device_attribute *attr,
792 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800793{
794 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700795 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800796
797 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800798 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800799 bond->dev->name);
800 ret = -EPERM;
801 goto out;
802 }
803
804 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800805 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800806 bond->dev->name);
807 ret = -EINVAL;
808 goto out;
809 }
810 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000811 pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n",
812 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800813 ret = -EINVAL;
814 goto out;
815 } else {
816 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800817 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 +0000818 bond->dev->name, new_value,
819 bond->params.miimon,
820 (new_value / bond->params.miimon) *
821 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800822 }
823 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800824 pr_info("%s: Setting up delay to %d.\n",
825 bond->dev->name,
826 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800827 }
828
829out:
830 return ret;
831}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000832static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
833 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800834
835/*
836 * Show and set the LACP interval. Interface must be down, and the mode
837 * must be set to 802.3ad mode.
838 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700839static ssize_t bonding_show_lacp(struct device *d,
840 struct device_attribute *attr,
841 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800842{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700843 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800844
845 return sprintf(buf, "%s %d\n",
846 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800847 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800848}
849
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700850static ssize_t bonding_store_lacp(struct device *d,
851 struct device_attribute *attr,
852 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800853{
854 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700855 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800856
857 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800858 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800859 bond->dev->name);
860 ret = -EPERM;
861 goto out;
862 }
863
864 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800865 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800866 bond->dev->name);
867 ret = -EPERM;
868 goto out;
869 }
870
Jay Vosburghece95f72008-01-17 16:25:01 -0800871 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800872
873 if ((new_value == 1) || (new_value == 0)) {
874 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000875 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800876 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000877 bond->dev->name, bond_lacp_tbl[new_value].modename,
878 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800879 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800880 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000881 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800882 ret = -EINVAL;
883 }
884out:
885 return ret;
886}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000887static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
888 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800889
stephen hemminger655f8912011-06-22 09:54:39 +0000890static ssize_t bonding_show_min_links(struct device *d,
891 struct device_attribute *attr,
892 char *buf)
893{
894 struct bonding *bond = to_bond(d);
895
896 return sprintf(buf, "%d\n", bond->params.min_links);
897}
898
899static ssize_t bonding_store_min_links(struct device *d,
900 struct device_attribute *attr,
901 const char *buf, size_t count)
902{
903 struct bonding *bond = to_bond(d);
904 int ret;
905 unsigned int new_value;
906
907 ret = kstrtouint(buf, 0, &new_value);
908 if (ret < 0) {
909 pr_err("%s: Ignoring invalid min links value %s.\n",
910 bond->dev->name, buf);
911 return ret;
912 }
913
914 pr_info("%s: Setting min links value to %u\n",
915 bond->dev->name, new_value);
916 bond->params.min_links = new_value;
917 return count;
918}
919static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
920 bonding_show_min_links, bonding_store_min_links);
921
Jay Vosburghfd989c82008-11-04 17:51:16 -0800922static ssize_t bonding_show_ad_select(struct device *d,
923 struct device_attribute *attr,
924 char *buf)
925{
926 struct bonding *bond = to_bond(d);
927
928 return sprintf(buf, "%s %d\n",
929 ad_select_tbl[bond->params.ad_select].modename,
930 bond->params.ad_select);
931}
932
933
934static ssize_t bonding_store_ad_select(struct device *d,
935 struct device_attribute *attr,
936 const char *buf, size_t count)
937{
938 int new_value, ret = count;
939 struct bonding *bond = to_bond(d);
940
941 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800942 pr_err("%s: Unable to update ad_select because interface is up.\n",
943 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800944 ret = -EPERM;
945 goto out;
946 }
947
948 new_value = bond_parse_parm(buf, ad_select_tbl);
949
950 if (new_value != -1) {
951 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800952 pr_info("%s: Setting ad_select to %s (%d).\n",
953 bond->dev->name, ad_select_tbl[new_value].modename,
954 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800955 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800956 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800957 bond->dev->name, (int)strlen(buf) - 1, buf);
958 ret = -EINVAL;
959 }
960out:
961 return ret;
962}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000963static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
964 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800965
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800966/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000967 * Show and set the number of peer notifications to send after a failover event.
968 */
969static ssize_t bonding_show_num_peer_notif(struct device *d,
970 struct device_attribute *attr,
971 char *buf)
972{
973 struct bonding *bond = to_bond(d);
974 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
975}
976
977static ssize_t bonding_store_num_peer_notif(struct device *d,
978 struct device_attribute *attr,
979 const char *buf, size_t count)
980{
981 struct bonding *bond = to_bond(d);
982 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
983 return err ? err : count;
984}
985static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
986 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
987static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
988 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
989
990/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800991 * Show and set the MII monitor interval. There are two tricky bits
992 * here. First, if MII monitoring is activated, then we must disable
993 * ARP monitoring. Second, if the timer isn't running, we must
994 * start it.
995 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700996static ssize_t bonding_show_miimon(struct device *d,
997 struct device_attribute *attr,
998 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800999{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001000 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001001
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001002 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001003}
1004
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001005static ssize_t bonding_store_miimon(struct device *d,
1006 struct device_attribute *attr,
1007 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001008{
1009 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001010 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001011
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001012 if (!rtnl_trylock())
1013 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001014 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001015 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001016 bond->dev->name);
1017 ret = -EINVAL;
1018 goto out;
1019 }
1020 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001021 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001022 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001023 ret = -EINVAL;
1024 goto out;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001025 }
1026 pr_info("%s: Setting MII monitoring interval to %d.\n",
1027 bond->dev->name, new_value);
1028 bond->params.miimon = new_value;
1029 if (bond->params.updelay)
1030 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
1031 bond->dev->name,
1032 bond->params.updelay * bond->params.miimon);
1033 if (bond->params.downdelay)
1034 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
1035 bond->dev->name,
1036 bond->params.downdelay * bond->params.miimon);
1037 if (new_value && bond->params.arp_interval) {
1038 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
1039 bond->dev->name);
1040 bond->params.arp_interval = 0;
1041 if (bond->params.arp_validate)
1042 bond->params.arp_validate = BOND_ARP_VALIDATE_NONE;
1043 }
1044 if (bond->dev->flags & IFF_UP) {
1045 /* If the interface is up, we may need to fire off
1046 * the MII timer. If the interface is down, the
1047 * timer will get fired off when the open function
1048 * is called.
1049 */
1050 if (!new_value) {
1051 cancel_delayed_work_sync(&bond->mii_work);
1052 } else {
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001053 cancel_delayed_work_sync(&bond->arp_work);
1054 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001055 }
1056 }
1057out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001058 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001059 return ret;
1060}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001061static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1062 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001063
1064/*
1065 * Show and set the primary slave. The store function is much
1066 * simpler than bonding_store_slaves function because it only needs to
1067 * handle one interface name.
1068 * The bond must be a mode that supports a primary for this be
1069 * set.
1070 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001071static ssize_t bonding_show_primary(struct device *d,
1072 struct device_attribute *attr,
1073 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001074{
1075 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001076 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001077
1078 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001079 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001080
1081 return count;
1082}
1083
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001084static ssize_t bonding_store_primary(struct device *d,
1085 struct device_attribute *attr,
1086 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001087{
1088 int i;
1089 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001090 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001091 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001092
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001093 if (!rtnl_trylock())
1094 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001095 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001096 read_lock(&bond->lock);
1097 write_lock_bh(&bond->curr_slave_lock);
1098
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001099 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001100 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1101 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001102 goto out;
1103 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001104
nikolay@redhat.comeb6e98a2012-10-31 04:42:51 +00001105 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001106
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001107 /* check to see if we are clearing primary */
1108 if (!strlen(ifname) || buf[0] == '\n') {
1109 pr_info("%s: Setting primary slave to None.\n",
1110 bond->dev->name);
1111 bond->primary_slave = NULL;
Milos Vyleteleb492f72013-01-29 09:59:00 +00001112 memset(bond->params.primary, 0, sizeof(bond->params.primary));
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001113 bond_select_active_slave(bond);
1114 goto out;
1115 }
1116
1117 bond_for_each_slave(bond, slave, i) {
1118 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1119 pr_info("%s: Setting %s as primary slave.\n",
1120 bond->dev->name, slave->dev->name);
1121 bond->primary_slave = slave;
1122 strcpy(bond->params.primary, slave->dev->name);
1123 bond_select_active_slave(bond);
1124 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001125 }
1126 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001127
Weiping Pan8a936642012-06-10 23:00:20 +00001128 strncpy(bond->params.primary, ifname, IFNAMSIZ);
1129 bond->params.primary[IFNAMSIZ - 1] = 0;
1130
1131 pr_info("%s: Recording %s as primary, "
1132 "but it has not been enslaved to %s yet.\n",
1133 bond->dev->name, ifname, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001134out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001135 write_unlock_bh(&bond->curr_slave_lock);
1136 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001137 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001138 rtnl_unlock();
1139
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001140 return count;
1141}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001142static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1143 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001144
1145/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001146 * Show and set the primary_reselect flag.
1147 */
1148static ssize_t bonding_show_primary_reselect(struct device *d,
1149 struct device_attribute *attr,
1150 char *buf)
1151{
1152 struct bonding *bond = to_bond(d);
1153
1154 return sprintf(buf, "%s %d\n",
1155 pri_reselect_tbl[bond->params.primary_reselect].modename,
1156 bond->params.primary_reselect);
1157}
1158
1159static ssize_t bonding_store_primary_reselect(struct device *d,
1160 struct device_attribute *attr,
1161 const char *buf, size_t count)
1162{
1163 int new_value, ret = count;
1164 struct bonding *bond = to_bond(d);
1165
1166 if (!rtnl_trylock())
1167 return restart_syscall();
1168
1169 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1170 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001171 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001172 bond->dev->name,
1173 (int) strlen(buf) - 1, buf);
1174 ret = -EINVAL;
1175 goto out;
1176 }
1177
1178 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001179 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001180 bond->dev->name, pri_reselect_tbl[new_value].modename,
1181 new_value);
1182
Neil Hormane843fa52010-10-13 16:01:50 +00001183 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001184 read_lock(&bond->lock);
1185 write_lock_bh(&bond->curr_slave_lock);
1186 bond_select_active_slave(bond);
1187 write_unlock_bh(&bond->curr_slave_lock);
1188 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001189 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001190out:
1191 rtnl_unlock();
1192 return ret;
1193}
1194static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1195 bonding_show_primary_reselect,
1196 bonding_store_primary_reselect);
1197
1198/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001199 * Show and set the use_carrier flag.
1200 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001201static ssize_t bonding_show_carrier(struct device *d,
1202 struct device_attribute *attr,
1203 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001204{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001205 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001206
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001207 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001208}
1209
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001210static ssize_t bonding_store_carrier(struct device *d,
1211 struct device_attribute *attr,
1212 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001213{
1214 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001215 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001216
1217
1218 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001219 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001220 bond->dev->name);
1221 ret = -EINVAL;
1222 goto out;
1223 }
1224 if ((new_value == 0) || (new_value == 1)) {
1225 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001226 pr_info("%s: Setting use_carrier to %d.\n",
1227 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001228 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001229 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1230 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001231 }
1232out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001233 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001234}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001235static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1236 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001237
1238
1239/*
1240 * Show and set currently active_slave.
1241 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001242static ssize_t bonding_show_active_slave(struct device *d,
1243 struct device_attribute *attr,
1244 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001245{
1246 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001247 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001248 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001249
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001250 read_lock(&bond->curr_slave_lock);
1251 curr = bond->curr_active_slave;
1252 read_unlock(&bond->curr_slave_lock);
1253
1254 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001255 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001256 return count;
1257}
1258
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001259static ssize_t bonding_store_active_slave(struct device *d,
1260 struct device_attribute *attr,
1261 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001262{
1263 int i;
1264 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001265 struct slave *old_active = NULL;
1266 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001267 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001268 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001269
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001270 if (!rtnl_trylock())
1271 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001272
1273 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001274 read_lock(&bond->lock);
1275 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001276
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001277 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001278 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001279 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001280 goto out;
1281 }
1282
nikolay@redhat.comc84e1592012-10-31 06:03:52 +00001283 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001284
1285 /* check to see if we are clearing active */
1286 if (!strlen(ifname) || buf[0] == '\n') {
1287 pr_info("%s: Clearing current active slave.\n",
1288 bond->dev->name);
1289 bond->curr_active_slave = NULL;
1290 bond_select_active_slave(bond);
1291 goto out;
1292 }
1293
1294 bond_for_each_slave(bond, slave, i) {
1295 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1296 old_active = bond->curr_active_slave;
1297 new_active = slave;
1298 if (new_active == old_active) {
1299 /* do nothing */
1300 pr_info("%s: %s is already the current"
1301 " active slave.\n",
1302 bond->dev->name,
1303 slave->dev->name);
1304 goto out;
dingtianhong38c49162013-07-23 15:25:32 +08001305 } else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001306 if ((new_active) &&
1307 (old_active) &&
1308 (new_active->link == BOND_LINK_UP) &&
1309 IS_UP(new_active->dev)) {
1310 pr_info("%s: Setting %s as active"
1311 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001312 bond->dev->name,
1313 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001314 bond_change_active_slave(bond,
1315 new_active);
dingtianhong38c49162013-07-23 15:25:32 +08001316 } else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001317 pr_info("%s: Could not set %s as"
1318 " active slave; either %s is"
1319 " down or the link is down.\n",
1320 bond->dev->name,
1321 slave->dev->name,
1322 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001323 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001324 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001325 }
1326 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001327 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001328
1329 pr_info("%s: Unable to set %.*s as active slave.\n",
1330 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001331 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001332 write_unlock_bh(&bond->curr_slave_lock);
1333 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001334 unblock_netpoll_tx();
1335
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001336 rtnl_unlock();
1337
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001338 return count;
1339
1340}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001341static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1342 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001343
1344
1345/*
1346 * Show link status of the bond interface.
1347 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001348static ssize_t bonding_show_mii_status(struct device *d,
1349 struct device_attribute *attr,
1350 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001351{
1352 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001353 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001354
1355 read_lock(&bond->curr_slave_lock);
1356 curr = bond->curr_active_slave;
1357 read_unlock(&bond->curr_slave_lock);
1358
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001359 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001360}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001361static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001362
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001363/*
1364 * Show current 802.3ad aggregator ID.
1365 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001366static ssize_t bonding_show_ad_aggregator(struct device *d,
1367 struct device_attribute *attr,
1368 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001369{
1370 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001371 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001372
1373 if (bond->params.mode == BOND_MODE_8023AD) {
1374 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001375 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001376 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001377 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001378 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001379
1380 return count;
1381}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001382static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001383
1384
1385/*
1386 * Show number of active 802.3ad ports.
1387 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001388static ssize_t bonding_show_ad_num_ports(struct device *d,
1389 struct device_attribute *attr,
1390 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001391{
1392 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001393 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001394
1395 if (bond->params.mode == BOND_MODE_8023AD) {
1396 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001397 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001398 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001399 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001400 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001401
1402 return count;
1403}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001404static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001405
1406
1407/*
1408 * Show current 802.3ad actor key.
1409 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001410static ssize_t bonding_show_ad_actor_key(struct device *d,
1411 struct device_attribute *attr,
1412 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001413{
1414 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001415 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001416
1417 if (bond->params.mode == BOND_MODE_8023AD) {
1418 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001419 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001420 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001421 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001422 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001423
1424 return count;
1425}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001426static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001427
1428
1429/*
1430 * Show current 802.3ad partner key.
1431 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001432static ssize_t bonding_show_ad_partner_key(struct device *d,
1433 struct device_attribute *attr,
1434 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001435{
1436 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001437 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001438
1439 if (bond->params.mode == BOND_MODE_8023AD) {
1440 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001441 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001442 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001443 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001444 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001445
1446 return count;
1447}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001448static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001449
1450
1451/*
1452 * Show current 802.3ad partner mac.
1453 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001454static ssize_t bonding_show_ad_partner_mac(struct device *d,
1455 struct device_attribute *attr,
1456 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001457{
1458 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001459 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001460
1461 if (bond->params.mode == BOND_MODE_8023AD) {
1462 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001463 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001464 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001465 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001466
1467 return count;
1468}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001469static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001470
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001471/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001472 * Show the queue_ids of the slaves in the current bond.
1473 */
1474static ssize_t bonding_show_queue_id(struct device *d,
1475 struct device_attribute *attr,
1476 char *buf)
1477{
1478 struct slave *slave;
1479 int i, res = 0;
1480 struct bonding *bond = to_bond(d);
1481
1482 if (!rtnl_trylock())
1483 return restart_syscall();
1484
1485 read_lock(&bond->lock);
1486 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001487 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1488 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001489 if ((PAGE_SIZE - res) > 10)
1490 res = PAGE_SIZE - 10;
1491 res += sprintf(buf + res, "++more++ ");
1492 break;
1493 }
1494 res += sprintf(buf + res, "%s:%d ",
1495 slave->dev->name, slave->queue_id);
1496 }
1497 read_unlock(&bond->lock);
1498 if (res)
1499 buf[res-1] = '\n'; /* eat the leftover space */
1500 rtnl_unlock();
1501 return res;
1502}
1503
1504/*
1505 * Set the queue_ids of the slaves in the current bond. The bond
1506 * interface must be enslaved for this to work.
1507 */
1508static ssize_t bonding_store_queue_id(struct device *d,
1509 struct device_attribute *attr,
1510 const char *buffer, size_t count)
1511{
1512 struct slave *slave, *update_slave;
1513 struct bonding *bond = to_bond(d);
1514 u16 qid;
1515 int i, ret = count;
1516 char *delim;
1517 struct net_device *sdev = NULL;
1518
1519 if (!rtnl_trylock())
1520 return restart_syscall();
1521
1522 /* delim will point to queue id if successful */
1523 delim = strchr(buffer, ':');
1524 if (!delim)
1525 goto err_no_cmd;
1526
1527 /*
1528 * Terminate string that points to device name and bump it
1529 * up one, so we can read the queue id there.
1530 */
1531 *delim = '\0';
1532 if (sscanf(++delim, "%hd\n", &qid) != 1)
1533 goto err_no_cmd;
1534
1535 /* Check buffer length, valid ifname and queue id */
1536 if (strlen(buffer) > IFNAMSIZ ||
1537 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001538 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001539 goto err_no_cmd;
1540
1541 /* Get the pointer to that interface if it exists */
1542 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1543 if (!sdev)
1544 goto err_no_cmd;
1545
1546 read_lock(&bond->lock);
1547
1548 /* Search for thes slave and check for duplicate qids */
1549 update_slave = NULL;
1550 bond_for_each_slave(bond, slave, i) {
1551 if (sdev == slave->dev)
1552 /*
1553 * We don't need to check the matching
1554 * slave for dups, since we're overwriting it
1555 */
1556 update_slave = slave;
1557 else if (qid && qid == slave->queue_id) {
1558 goto err_no_cmd_unlock;
1559 }
1560 }
1561
1562 if (!update_slave)
1563 goto err_no_cmd_unlock;
1564
1565 /* Actually set the qids for the slave */
1566 update_slave->queue_id = qid;
1567
1568 read_unlock(&bond->lock);
1569out:
1570 rtnl_unlock();
1571 return ret;
1572
1573err_no_cmd_unlock:
1574 read_unlock(&bond->lock);
1575err_no_cmd:
1576 pr_info("invalid input for queue_id set for %s.\n",
1577 bond->dev->name);
1578 ret = -EPERM;
1579 goto out;
1580}
1581
1582static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1583 bonding_store_queue_id);
1584
1585
1586/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001587 * Show and set the all_slaves_active flag.
1588 */
1589static ssize_t bonding_show_slaves_active(struct device *d,
1590 struct device_attribute *attr,
1591 char *buf)
1592{
1593 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001594
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001595 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1596}
1597
1598static ssize_t bonding_store_slaves_active(struct device *d,
1599 struct device_attribute *attr,
1600 const char *buf, size_t count)
1601{
1602 int i, new_value, ret = count;
1603 struct bonding *bond = to_bond(d);
1604 struct slave *slave;
1605
1606 if (sscanf(buf, "%d", &new_value) != 1) {
1607 pr_err("%s: no all_slaves_active value specified.\n",
1608 bond->dev->name);
1609 ret = -EINVAL;
1610 goto out;
1611 }
1612
1613 if (new_value == bond->params.all_slaves_active)
1614 goto out;
1615
1616 if ((new_value == 0) || (new_value == 1)) {
1617 bond->params.all_slaves_active = new_value;
1618 } else {
1619 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1620 bond->dev->name, new_value);
1621 ret = -EINVAL;
1622 goto out;
1623 }
1624
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001625 read_lock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001626 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001627 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001628 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001629 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001630 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001631 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001632 }
1633 }
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001634 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001635out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001636 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001637}
1638static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1639 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001640
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001641/*
1642 * Show and set the number of IGMP membership reports to send on link failure
1643 */
1644static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001645 struct device_attribute *attr,
1646 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001647{
1648 struct bonding *bond = to_bond(d);
1649
1650 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1651}
1652
1653static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001654 struct device_attribute *attr,
1655 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001656{
1657 int new_value, ret = count;
1658 struct bonding *bond = to_bond(d);
1659
1660 if (sscanf(buf, "%d", &new_value) != 1) {
1661 pr_err("%s: no resend_igmp value specified.\n",
1662 bond->dev->name);
1663 ret = -EINVAL;
1664 goto out;
1665 }
1666
Flavio Leitner94265cf2011-05-25 08:38:58 +00001667 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001668 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1669 bond->dev->name, new_value);
1670 ret = -EINVAL;
1671 goto out;
1672 }
1673
1674 pr_info("%s: Setting resend_igmp to %d.\n",
1675 bond->dev->name, new_value);
1676 bond->params.resend_igmp = new_value;
1677out:
1678 return ret;
1679}
1680
1681static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1682 bonding_show_resend_igmp, bonding_store_resend_igmp);
1683
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001684static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001685 &dev_attr_slaves.attr,
1686 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001687 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001688 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001689 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001690 &dev_attr_arp_interval.attr,
1691 &dev_attr_arp_ip_target.attr,
1692 &dev_attr_downdelay.attr,
1693 &dev_attr_updelay.attr,
1694 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001695 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001696 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001697 &dev_attr_num_grat_arp.attr,
1698 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001699 &dev_attr_miimon.attr,
1700 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001701 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001702 &dev_attr_use_carrier.attr,
1703 &dev_attr_active_slave.attr,
1704 &dev_attr_mii_status.attr,
1705 &dev_attr_ad_aggregator.attr,
1706 &dev_attr_ad_num_ports.attr,
1707 &dev_attr_ad_actor_key.attr,
1708 &dev_attr_ad_partner_key.attr,
1709 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001710 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001711 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001712 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001713 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001714 NULL,
1715};
1716
1717static struct attribute_group bonding_group = {
1718 .name = "bonding",
1719 .attrs = per_bond_attrs,
1720};
1721
1722/*
1723 * Initialize sysfs. This sets up the bonding_masters file in
1724 * /sys/class/net.
1725 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001726int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001727{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001728 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001729
Eric W. Biederman4c224002011-10-12 21:56:25 +00001730 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001731 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001732
1733 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001734 /*
1735 * Permit multiple loads of the module by ignoring failures to
1736 * create the bonding_masters sysfs file. Bonding devices
1737 * created by second or subsequent loads of the module will
1738 * not be listed in, or controllable by, bonding_masters, but
1739 * will have the usual "bonding" sysfs directory.
1740 *
1741 * This is done to preserve backwards compatibility for
1742 * initscripts/sysconfig, which load bonding multiple times to
1743 * configure multiple bonding devices.
1744 */
1745 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001746 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001747 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001748 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001749 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001750 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001751 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001752 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001753
1754 return ret;
1755
1756}
1757
1758/*
1759 * Remove /sys/class/net/bonding_masters.
1760 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001761void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001762{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001763 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001764}
1765
1766/*
1767 * Initialize sysfs for each bond. This sets up and registers
1768 * the 'bondctl' directory for each individual bond under /sys/class/net.
1769 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001770void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001771{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001772 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001773}
1774