blob: dc36a3d7d9e983a15583260a572e6dac7451acb5 [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{
504 int new_value;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700505 struct bonding *bond = to_bond(d);
506
507 if (bond->slave_cnt != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800508 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700509 bond->dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700510 return -EPERM;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700511 }
512
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700513 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
514 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800515 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700516 bond->dev->name, buf);
517 return -EINVAL;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700518 }
519
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700520 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800521 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
522 bond->dev->name, fail_over_mac_tbl[new_value].modename,
523 new_value);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700524
525 return count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700526}
527
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000528static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
529 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700530
531/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800532 * Show and set the arp timer interval. There are two tricky bits
533 * here. First, if ARP monitoring is activated, then we must disable
534 * MII monitoring. Second, if the ARP timer isn't running, we must
535 * start it.
536 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700537static ssize_t bonding_show_arp_interval(struct device *d,
538 struct device_attribute *attr,
539 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800540{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700541 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800542
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800543 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800544}
545
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700546static ssize_t bonding_store_arp_interval(struct device *d,
547 struct device_attribute *attr,
548 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800549{
550 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700551 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800552
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000553 if (!rtnl_trylock())
554 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800555 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800556 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800557 bond->dev->name);
558 ret = -EINVAL;
559 goto out;
560 }
561 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000562 pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800563 bond->dev->name, new_value, INT_MAX);
564 ret = -EINVAL;
565 goto out;
566 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000567 if (bond->params.mode == BOND_MODE_ALB ||
568 bond->params.mode == BOND_MODE_TLB) {
569 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
570 bond->dev->name, bond->dev->name);
571 ret = -EINVAL;
572 goto out;
573 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800574 pr_info("%s: Setting ARP monitoring interval to %d.\n",
575 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800576 bond->params.arp_interval = new_value;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000577 if (new_value) {
578 if (bond->params.miimon) {
579 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
580 bond->dev->name, bond->dev->name);
581 bond->params.miimon = 0;
582 }
583 if (!bond->params.arp_targets[0])
584 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
585 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800586 }
587 if (bond->dev->flags & IFF_UP) {
588 /* If the interface is up, we may need to fire off
589 * the ARP timer. If the interface is down, the
590 * timer will get fired off when the open function
591 * is called.
592 */
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000593 if (!new_value) {
594 cancel_delayed_work_sync(&bond->arp_work);
595 } else {
596 cancel_delayed_work_sync(&bond->mii_work);
597 queue_delayed_work(bond->wq, &bond->arp_work, 0);
598 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800599 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800600out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000601 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800602 return ret;
603}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000604static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
605 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800606
607/*
608 * Show and set the arp targets.
609 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700610static ssize_t bonding_show_arp_targets(struct device *d,
611 struct device_attribute *attr,
612 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800613{
614 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700615 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800616
617 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
618 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700619 res += sprintf(buf + res, "%pI4 ",
620 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800621 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800622 if (res)
623 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800624 return res;
625}
626
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700627static ssize_t bonding_store_arp_targets(struct device *d,
628 struct device_attribute *attr,
629 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800630{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700631 struct bonding *bond = to_bond(d);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200632 struct slave *slave;
633 __be32 newtarget, *targets;
634 unsigned long *targets_rx;
635 int ind, i, j, ret = -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800636
637 targets = bond->params.arp_targets;
638 newtarget = in_aton(buf + 1);
639 /* look for adds */
640 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400641 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800642 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700643 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800644 goto out;
645 }
646
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200647 if (bond_get_targets_ip(targets, newtarget) != -1) { /* dup */
648 pr_err("%s: ARP target %pI4 is already present\n",
649 bond->dev->name, &newtarget);
650 goto out;
651 }
652
Veaceslav Falico8599b522013-06-24 11:49:34 +0200653 ind = bond_get_targets_ip(targets, 0); /* first free slot */
654 if (ind == -1) {
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200655 pr_err("%s: ARP target table is full!\n",
656 bond->dev->name);
657 goto out;
658 }
659
660 pr_info("%s: adding ARP target %pI4.\n", bond->dev->name,
661 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200662 /* not to race with bond_arp_rcv */
663 write_lock_bh(&bond->lock);
664 bond_for_each_slave(bond, slave, i)
665 slave->target_last_arp_rx[ind] = jiffies;
666 targets[ind] = newtarget;
667 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000668 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400669 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800670 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700671 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800672 goto out;
673 }
674
Veaceslav Falico8599b522013-06-24 11:49:34 +0200675 ind = bond_get_targets_ip(targets, newtarget);
676 if (ind == -1) {
677 pr_err("%s: unable to remove nonexistent ARP target %pI4.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800678 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800679 goto out;
680 }
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200681
Veaceslav Falico8599b522013-06-24 11:49:34 +0200682 if (ind == 0 && !targets[1] && bond->params.arp_interval)
683 pr_warn("%s: removing last arp target with arp_interval on\n",
684 bond->dev->name);
685
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200686 pr_info("%s: removing ARP target %pI4.\n", bond->dev->name,
687 &newtarget);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200688
689 write_lock_bh(&bond->lock);
690 bond_for_each_slave(bond, slave, i) {
691 targets_rx = slave->target_last_arp_rx;
692 j = ind;
693 for (; (j < BOND_MAX_ARP_TARGETS-1) && targets[j+1]; j++)
694 targets_rx[j] = targets_rx[j+1];
695 targets_rx[j] = 0;
696 }
697 for (i = ind; (i < BOND_MAX_ARP_TARGETS-1) && targets[i+1]; i++)
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200698 targets[i] = targets[i+1];
699 targets[i] = 0;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200700 write_unlock_bh(&bond->lock);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000701 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800702 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
703 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800704 ret = -EPERM;
705 goto out;
706 }
707
Veaceslav Falico87a7b842013-06-24 11:49:29 +0200708 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800709out:
710 return ret;
711}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700712static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800713
714/*
715 * Show and set the up and down delays. These must be multiples of the
716 * MII monitoring value, and are stored internally as the multiplier.
717 * Thus, we must translate to MS for the real world.
718 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700719static ssize_t bonding_show_downdelay(struct device *d,
720 struct device_attribute *attr,
721 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800722{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700723 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800724
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800725 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800726}
727
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700728static ssize_t bonding_store_downdelay(struct device *d,
729 struct device_attribute *attr,
730 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800731{
732 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700733 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800734
735 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800736 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800737 bond->dev->name);
738 ret = -EPERM;
739 goto out;
740 }
741
742 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800743 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800744 ret = -EINVAL;
745 goto out;
746 }
747 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800748 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000749 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800750 ret = -EINVAL;
751 goto out;
752 } else {
753 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800754 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 +0000755 bond->dev->name, new_value,
756 bond->params.miimon,
757 (new_value / bond->params.miimon) *
758 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800759 }
760 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800761 pr_info("%s: Setting down delay to %d.\n",
762 bond->dev->name,
763 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800764
765 }
766
767out:
768 return ret;
769}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000770static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
771 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800772
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700773static ssize_t bonding_show_updelay(struct device *d,
774 struct device_attribute *attr,
775 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800776{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700777 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800778
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800779 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800780
781}
782
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700783static ssize_t bonding_store_updelay(struct device *d,
784 struct device_attribute *attr,
785 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800786{
787 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700788 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800789
790 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800791 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800792 bond->dev->name);
793 ret = -EPERM;
794 goto out;
795 }
796
797 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800798 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800799 bond->dev->name);
800 ret = -EINVAL;
801 goto out;
802 }
803 if (new_value < 0) {
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +0000804 pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n",
805 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800806 ret = -EINVAL;
807 goto out;
808 } else {
809 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800810 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 +0000811 bond->dev->name, new_value,
812 bond->params.miimon,
813 (new_value / bond->params.miimon) *
814 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800815 }
816 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800817 pr_info("%s: Setting up delay to %d.\n",
818 bond->dev->name,
819 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800820 }
821
822out:
823 return ret;
824}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000825static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
826 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800827
828/*
829 * Show and set the LACP interval. Interface must be down, and the mode
830 * must be set to 802.3ad mode.
831 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700832static ssize_t bonding_show_lacp(struct device *d,
833 struct device_attribute *attr,
834 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800835{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700836 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800837
838 return sprintf(buf, "%s %d\n",
839 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800840 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800841}
842
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700843static ssize_t bonding_store_lacp(struct device *d,
844 struct device_attribute *attr,
845 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800846{
847 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700848 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800849
850 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800851 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800852 bond->dev->name);
853 ret = -EPERM;
854 goto out;
855 }
856
857 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800858 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800859 bond->dev->name);
860 ret = -EPERM;
861 goto out;
862 }
863
Jay Vosburghece95f72008-01-17 16:25:01 -0800864 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800865
866 if ((new_value == 1) || (new_value == 0)) {
867 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000868 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800869 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000870 bond->dev->name, bond_lacp_tbl[new_value].modename,
871 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800872 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800873 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000874 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800875 ret = -EINVAL;
876 }
877out:
878 return ret;
879}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000880static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
881 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800882
stephen hemminger655f8912011-06-22 09:54:39 +0000883static ssize_t bonding_show_min_links(struct device *d,
884 struct device_attribute *attr,
885 char *buf)
886{
887 struct bonding *bond = to_bond(d);
888
889 return sprintf(buf, "%d\n", bond->params.min_links);
890}
891
892static ssize_t bonding_store_min_links(struct device *d,
893 struct device_attribute *attr,
894 const char *buf, size_t count)
895{
896 struct bonding *bond = to_bond(d);
897 int ret;
898 unsigned int new_value;
899
900 ret = kstrtouint(buf, 0, &new_value);
901 if (ret < 0) {
902 pr_err("%s: Ignoring invalid min links value %s.\n",
903 bond->dev->name, buf);
904 return ret;
905 }
906
907 pr_info("%s: Setting min links value to %u\n",
908 bond->dev->name, new_value);
909 bond->params.min_links = new_value;
910 return count;
911}
912static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
913 bonding_show_min_links, bonding_store_min_links);
914
Jay Vosburghfd989c82008-11-04 17:51:16 -0800915static ssize_t bonding_show_ad_select(struct device *d,
916 struct device_attribute *attr,
917 char *buf)
918{
919 struct bonding *bond = to_bond(d);
920
921 return sprintf(buf, "%s %d\n",
922 ad_select_tbl[bond->params.ad_select].modename,
923 bond->params.ad_select);
924}
925
926
927static ssize_t bonding_store_ad_select(struct device *d,
928 struct device_attribute *attr,
929 const char *buf, size_t count)
930{
931 int new_value, ret = count;
932 struct bonding *bond = to_bond(d);
933
934 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800935 pr_err("%s: Unable to update ad_select because interface is up.\n",
936 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800937 ret = -EPERM;
938 goto out;
939 }
940
941 new_value = bond_parse_parm(buf, ad_select_tbl);
942
943 if (new_value != -1) {
944 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800945 pr_info("%s: Setting ad_select to %s (%d).\n",
946 bond->dev->name, ad_select_tbl[new_value].modename,
947 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800948 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800949 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800950 bond->dev->name, (int)strlen(buf) - 1, buf);
951 ret = -EINVAL;
952 }
953out:
954 return ret;
955}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000956static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
957 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800958
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800959/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000960 * Show and set the number of peer notifications to send after a failover event.
961 */
962static ssize_t bonding_show_num_peer_notif(struct device *d,
963 struct device_attribute *attr,
964 char *buf)
965{
966 struct bonding *bond = to_bond(d);
967 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
968}
969
970static ssize_t bonding_store_num_peer_notif(struct device *d,
971 struct device_attribute *attr,
972 const char *buf, size_t count)
973{
974 struct bonding *bond = to_bond(d);
975 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
976 return err ? err : count;
977}
978static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
979 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
980static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
981 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
982
983/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800984 * Show and set the MII monitor interval. There are two tricky bits
985 * here. First, if MII monitoring is activated, then we must disable
986 * ARP monitoring. Second, if the timer isn't running, we must
987 * start it.
988 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700989static ssize_t bonding_show_miimon(struct device *d,
990 struct device_attribute *attr,
991 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800992{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700993 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800994
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800995 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800996}
997
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700998static ssize_t bonding_store_miimon(struct device *d,
999 struct device_attribute *attr,
1000 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001001{
1002 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001003 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001004
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001005 if (!rtnl_trylock())
1006 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001007 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001008 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001009 bond->dev->name);
1010 ret = -EINVAL;
1011 goto out;
1012 }
1013 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001014 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001015 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001016 ret = -EINVAL;
1017 goto out;
nikolay@redhat.com1bc7db12013-03-27 03:32:41 +00001018 }
1019 pr_info("%s: Setting MII monitoring interval to %d.\n",
1020 bond->dev->name, new_value);
1021 bond->params.miimon = new_value;
1022 if (bond->params.updelay)
1023 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
1024 bond->dev->name,
1025 bond->params.updelay * bond->params.miimon);
1026 if (bond->params.downdelay)
1027 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
1028 bond->dev->name,
1029 bond->params.downdelay * bond->params.miimon);
1030 if (new_value && bond->params.arp_interval) {
1031 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
1032 bond->dev->name);
1033 bond->params.arp_interval = 0;
1034 if (bond->params.arp_validate)
1035 bond->params.arp_validate = BOND_ARP_VALIDATE_NONE;
1036 }
1037 if (bond->dev->flags & IFF_UP) {
1038 /* If the interface is up, we may need to fire off
1039 * the MII timer. If the interface is down, the
1040 * timer will get fired off when the open function
1041 * is called.
1042 */
1043 if (!new_value) {
1044 cancel_delayed_work_sync(&bond->mii_work);
1045 } else {
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001046 cancel_delayed_work_sync(&bond->arp_work);
1047 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001048 }
1049 }
1050out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001051 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001052 return ret;
1053}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001054static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1055 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001056
1057/*
1058 * Show and set the primary slave. The store function is much
1059 * simpler than bonding_store_slaves function because it only needs to
1060 * handle one interface name.
1061 * The bond must be a mode that supports a primary for this be
1062 * set.
1063 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001064static ssize_t bonding_show_primary(struct device *d,
1065 struct device_attribute *attr,
1066 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001067{
1068 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001069 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001070
1071 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001072 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001073
1074 return count;
1075}
1076
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001077static ssize_t bonding_store_primary(struct device *d,
1078 struct device_attribute *attr,
1079 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001080{
1081 int i;
1082 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001083 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001084 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001085
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001086 if (!rtnl_trylock())
1087 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001088 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001089 read_lock(&bond->lock);
1090 write_lock_bh(&bond->curr_slave_lock);
1091
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001092 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001093 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1094 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001095 goto out;
1096 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001097
nikolay@redhat.comeb6e98a2012-10-31 04:42:51 +00001098 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001099
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001100 /* check to see if we are clearing primary */
1101 if (!strlen(ifname) || buf[0] == '\n') {
1102 pr_info("%s: Setting primary slave to None.\n",
1103 bond->dev->name);
1104 bond->primary_slave = NULL;
Milos Vyleteleb492f72013-01-29 09:59:00 +00001105 memset(bond->params.primary, 0, sizeof(bond->params.primary));
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001106 bond_select_active_slave(bond);
1107 goto out;
1108 }
1109
1110 bond_for_each_slave(bond, slave, i) {
1111 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1112 pr_info("%s: Setting %s as primary slave.\n",
1113 bond->dev->name, slave->dev->name);
1114 bond->primary_slave = slave;
1115 strcpy(bond->params.primary, slave->dev->name);
1116 bond_select_active_slave(bond);
1117 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001118 }
1119 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001120
Weiping Pan8a936642012-06-10 23:00:20 +00001121 strncpy(bond->params.primary, ifname, IFNAMSIZ);
1122 bond->params.primary[IFNAMSIZ - 1] = 0;
1123
1124 pr_info("%s: Recording %s as primary, "
1125 "but it has not been enslaved to %s yet.\n",
1126 bond->dev->name, ifname, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001127out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001128 write_unlock_bh(&bond->curr_slave_lock);
1129 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001130 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001131 rtnl_unlock();
1132
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001133 return count;
1134}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001135static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1136 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001137
1138/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001139 * Show and set the primary_reselect flag.
1140 */
1141static ssize_t bonding_show_primary_reselect(struct device *d,
1142 struct device_attribute *attr,
1143 char *buf)
1144{
1145 struct bonding *bond = to_bond(d);
1146
1147 return sprintf(buf, "%s %d\n",
1148 pri_reselect_tbl[bond->params.primary_reselect].modename,
1149 bond->params.primary_reselect);
1150}
1151
1152static ssize_t bonding_store_primary_reselect(struct device *d,
1153 struct device_attribute *attr,
1154 const char *buf, size_t count)
1155{
1156 int new_value, ret = count;
1157 struct bonding *bond = to_bond(d);
1158
1159 if (!rtnl_trylock())
1160 return restart_syscall();
1161
1162 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1163 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001164 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001165 bond->dev->name,
1166 (int) strlen(buf) - 1, buf);
1167 ret = -EINVAL;
1168 goto out;
1169 }
1170
1171 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001172 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001173 bond->dev->name, pri_reselect_tbl[new_value].modename,
1174 new_value);
1175
Neil Hormane843fa52010-10-13 16:01:50 +00001176 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001177 read_lock(&bond->lock);
1178 write_lock_bh(&bond->curr_slave_lock);
1179 bond_select_active_slave(bond);
1180 write_unlock_bh(&bond->curr_slave_lock);
1181 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001182 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001183out:
1184 rtnl_unlock();
1185 return ret;
1186}
1187static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1188 bonding_show_primary_reselect,
1189 bonding_store_primary_reselect);
1190
1191/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001192 * Show and set the use_carrier flag.
1193 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001194static ssize_t bonding_show_carrier(struct device *d,
1195 struct device_attribute *attr,
1196 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001197{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001198 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001199
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001200 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001201}
1202
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001203static ssize_t bonding_store_carrier(struct device *d,
1204 struct device_attribute *attr,
1205 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001206{
1207 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001208 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001209
1210
1211 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001212 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001213 bond->dev->name);
1214 ret = -EINVAL;
1215 goto out;
1216 }
1217 if ((new_value == 0) || (new_value == 1)) {
1218 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001219 pr_info("%s: Setting use_carrier to %d.\n",
1220 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001221 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001222 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1223 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001224 }
1225out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001226 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001227}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001228static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1229 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001230
1231
1232/*
1233 * Show and set currently active_slave.
1234 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001235static ssize_t bonding_show_active_slave(struct device *d,
1236 struct device_attribute *attr,
1237 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001238{
1239 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001240 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001241 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001242
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001243 read_lock(&bond->curr_slave_lock);
1244 curr = bond->curr_active_slave;
1245 read_unlock(&bond->curr_slave_lock);
1246
1247 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001248 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001249 return count;
1250}
1251
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001252static ssize_t bonding_store_active_slave(struct device *d,
1253 struct device_attribute *attr,
1254 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001255{
1256 int i;
1257 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001258 struct slave *old_active = NULL;
1259 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001260 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001261 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001262
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001263 if (!rtnl_trylock())
1264 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001265
1266 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001267 read_lock(&bond->lock);
1268 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001269
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001270 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001271 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001272 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001273 goto out;
1274 }
1275
nikolay@redhat.comc84e1592012-10-31 06:03:52 +00001276 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001277
1278 /* check to see if we are clearing active */
1279 if (!strlen(ifname) || buf[0] == '\n') {
1280 pr_info("%s: Clearing current active slave.\n",
1281 bond->dev->name);
1282 bond->curr_active_slave = NULL;
1283 bond_select_active_slave(bond);
1284 goto out;
1285 }
1286
1287 bond_for_each_slave(bond, slave, i) {
1288 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1289 old_active = bond->curr_active_slave;
1290 new_active = slave;
1291 if (new_active == old_active) {
1292 /* do nothing */
1293 pr_info("%s: %s is already the current"
1294 " active slave.\n",
1295 bond->dev->name,
1296 slave->dev->name);
1297 goto out;
1298 }
1299 else {
1300 if ((new_active) &&
1301 (old_active) &&
1302 (new_active->link == BOND_LINK_UP) &&
1303 IS_UP(new_active->dev)) {
1304 pr_info("%s: Setting %s as active"
1305 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001306 bond->dev->name,
1307 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001308 bond_change_active_slave(bond,
1309 new_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001310 }
1311 else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001312 pr_info("%s: Could not set %s as"
1313 " active slave; either %s is"
1314 " down or the link is down.\n",
1315 bond->dev->name,
1316 slave->dev->name,
1317 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001318 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001319 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001320 }
1321 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001322 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001323
1324 pr_info("%s: Unable to set %.*s as active slave.\n",
1325 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001326 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001327 write_unlock_bh(&bond->curr_slave_lock);
1328 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001329 unblock_netpoll_tx();
1330
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001331 rtnl_unlock();
1332
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001333 return count;
1334
1335}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001336static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1337 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001338
1339
1340/*
1341 * Show link status of the bond interface.
1342 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001343static ssize_t bonding_show_mii_status(struct device *d,
1344 struct device_attribute *attr,
1345 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001346{
1347 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001348 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001349
1350 read_lock(&bond->curr_slave_lock);
1351 curr = bond->curr_active_slave;
1352 read_unlock(&bond->curr_slave_lock);
1353
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001354 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001355}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001356static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001357
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001358/*
1359 * Show current 802.3ad aggregator ID.
1360 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001361static ssize_t bonding_show_ad_aggregator(struct device *d,
1362 struct device_attribute *attr,
1363 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001364{
1365 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001366 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001367
1368 if (bond->params.mode == BOND_MODE_8023AD) {
1369 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001370 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001371 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001372 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001373 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001374
1375 return count;
1376}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001377static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001378
1379
1380/*
1381 * Show number of active 802.3ad ports.
1382 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001383static ssize_t bonding_show_ad_num_ports(struct device *d,
1384 struct device_attribute *attr,
1385 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001386{
1387 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001388 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001389
1390 if (bond->params.mode == BOND_MODE_8023AD) {
1391 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001392 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001393 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001394 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001395 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001396
1397 return count;
1398}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001399static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001400
1401
1402/*
1403 * Show current 802.3ad actor key.
1404 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001405static ssize_t bonding_show_ad_actor_key(struct device *d,
1406 struct device_attribute *attr,
1407 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001408{
1409 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001410 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001411
1412 if (bond->params.mode == BOND_MODE_8023AD) {
1413 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001414 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001415 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001416 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001417 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001418
1419 return count;
1420}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001421static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001422
1423
1424/*
1425 * Show current 802.3ad partner key.
1426 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001427static ssize_t bonding_show_ad_partner_key(struct device *d,
1428 struct device_attribute *attr,
1429 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001430{
1431 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001432 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001433
1434 if (bond->params.mode == BOND_MODE_8023AD) {
1435 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001436 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001437 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001438 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001439 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001440
1441 return count;
1442}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001443static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001444
1445
1446/*
1447 * Show current 802.3ad partner mac.
1448 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001449static ssize_t bonding_show_ad_partner_mac(struct device *d,
1450 struct device_attribute *attr,
1451 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001452{
1453 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001454 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001455
1456 if (bond->params.mode == BOND_MODE_8023AD) {
1457 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001458 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001459 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001460 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001461
1462 return count;
1463}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001464static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001465
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001466/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001467 * Show the queue_ids of the slaves in the current bond.
1468 */
1469static ssize_t bonding_show_queue_id(struct device *d,
1470 struct device_attribute *attr,
1471 char *buf)
1472{
1473 struct slave *slave;
1474 int i, res = 0;
1475 struct bonding *bond = to_bond(d);
1476
1477 if (!rtnl_trylock())
1478 return restart_syscall();
1479
1480 read_lock(&bond->lock);
1481 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001482 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1483 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001484 if ((PAGE_SIZE - res) > 10)
1485 res = PAGE_SIZE - 10;
1486 res += sprintf(buf + res, "++more++ ");
1487 break;
1488 }
1489 res += sprintf(buf + res, "%s:%d ",
1490 slave->dev->name, slave->queue_id);
1491 }
1492 read_unlock(&bond->lock);
1493 if (res)
1494 buf[res-1] = '\n'; /* eat the leftover space */
1495 rtnl_unlock();
1496 return res;
1497}
1498
1499/*
1500 * Set the queue_ids of the slaves in the current bond. The bond
1501 * interface must be enslaved for this to work.
1502 */
1503static ssize_t bonding_store_queue_id(struct device *d,
1504 struct device_attribute *attr,
1505 const char *buffer, size_t count)
1506{
1507 struct slave *slave, *update_slave;
1508 struct bonding *bond = to_bond(d);
1509 u16 qid;
1510 int i, ret = count;
1511 char *delim;
1512 struct net_device *sdev = NULL;
1513
1514 if (!rtnl_trylock())
1515 return restart_syscall();
1516
1517 /* delim will point to queue id if successful */
1518 delim = strchr(buffer, ':');
1519 if (!delim)
1520 goto err_no_cmd;
1521
1522 /*
1523 * Terminate string that points to device name and bump it
1524 * up one, so we can read the queue id there.
1525 */
1526 *delim = '\0';
1527 if (sscanf(++delim, "%hd\n", &qid) != 1)
1528 goto err_no_cmd;
1529
1530 /* Check buffer length, valid ifname and queue id */
1531 if (strlen(buffer) > IFNAMSIZ ||
1532 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001533 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001534 goto err_no_cmd;
1535
1536 /* Get the pointer to that interface if it exists */
1537 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1538 if (!sdev)
1539 goto err_no_cmd;
1540
1541 read_lock(&bond->lock);
1542
1543 /* Search for thes slave and check for duplicate qids */
1544 update_slave = NULL;
1545 bond_for_each_slave(bond, slave, i) {
1546 if (sdev == slave->dev)
1547 /*
1548 * We don't need to check the matching
1549 * slave for dups, since we're overwriting it
1550 */
1551 update_slave = slave;
1552 else if (qid && qid == slave->queue_id) {
1553 goto err_no_cmd_unlock;
1554 }
1555 }
1556
1557 if (!update_slave)
1558 goto err_no_cmd_unlock;
1559
1560 /* Actually set the qids for the slave */
1561 update_slave->queue_id = qid;
1562
1563 read_unlock(&bond->lock);
1564out:
1565 rtnl_unlock();
1566 return ret;
1567
1568err_no_cmd_unlock:
1569 read_unlock(&bond->lock);
1570err_no_cmd:
1571 pr_info("invalid input for queue_id set for %s.\n",
1572 bond->dev->name);
1573 ret = -EPERM;
1574 goto out;
1575}
1576
1577static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1578 bonding_store_queue_id);
1579
1580
1581/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001582 * Show and set the all_slaves_active flag.
1583 */
1584static ssize_t bonding_show_slaves_active(struct device *d,
1585 struct device_attribute *attr,
1586 char *buf)
1587{
1588 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001589
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001590 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1591}
1592
1593static ssize_t bonding_store_slaves_active(struct device *d,
1594 struct device_attribute *attr,
1595 const char *buf, size_t count)
1596{
1597 int i, new_value, ret = count;
1598 struct bonding *bond = to_bond(d);
1599 struct slave *slave;
1600
1601 if (sscanf(buf, "%d", &new_value) != 1) {
1602 pr_err("%s: no all_slaves_active value specified.\n",
1603 bond->dev->name);
1604 ret = -EINVAL;
1605 goto out;
1606 }
1607
1608 if (new_value == bond->params.all_slaves_active)
1609 goto out;
1610
1611 if ((new_value == 0) || (new_value == 1)) {
1612 bond->params.all_slaves_active = new_value;
1613 } else {
1614 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1615 bond->dev->name, new_value);
1616 ret = -EINVAL;
1617 goto out;
1618 }
1619
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001620 read_lock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001621 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001622 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001623 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001624 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001625 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001626 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001627 }
1628 }
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001629 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001630out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001631 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001632}
1633static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1634 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001635
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001636/*
1637 * Show and set the number of IGMP membership reports to send on link failure
1638 */
1639static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001640 struct device_attribute *attr,
1641 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001642{
1643 struct bonding *bond = to_bond(d);
1644
1645 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1646}
1647
1648static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001649 struct device_attribute *attr,
1650 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001651{
1652 int new_value, ret = count;
1653 struct bonding *bond = to_bond(d);
1654
1655 if (sscanf(buf, "%d", &new_value) != 1) {
1656 pr_err("%s: no resend_igmp value specified.\n",
1657 bond->dev->name);
1658 ret = -EINVAL;
1659 goto out;
1660 }
1661
Flavio Leitner94265cf2011-05-25 08:38:58 +00001662 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001663 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1664 bond->dev->name, new_value);
1665 ret = -EINVAL;
1666 goto out;
1667 }
1668
1669 pr_info("%s: Setting resend_igmp to %d.\n",
1670 bond->dev->name, new_value);
1671 bond->params.resend_igmp = new_value;
1672out:
1673 return ret;
1674}
1675
1676static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1677 bonding_show_resend_igmp, bonding_store_resend_igmp);
1678
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001679static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001680 &dev_attr_slaves.attr,
1681 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001682 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001683 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001684 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001685 &dev_attr_arp_interval.attr,
1686 &dev_attr_arp_ip_target.attr,
1687 &dev_attr_downdelay.attr,
1688 &dev_attr_updelay.attr,
1689 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001690 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001691 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001692 &dev_attr_num_grat_arp.attr,
1693 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001694 &dev_attr_miimon.attr,
1695 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001696 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001697 &dev_attr_use_carrier.attr,
1698 &dev_attr_active_slave.attr,
1699 &dev_attr_mii_status.attr,
1700 &dev_attr_ad_aggregator.attr,
1701 &dev_attr_ad_num_ports.attr,
1702 &dev_attr_ad_actor_key.attr,
1703 &dev_attr_ad_partner_key.attr,
1704 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001705 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001706 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001707 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001708 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001709 NULL,
1710};
1711
1712static struct attribute_group bonding_group = {
1713 .name = "bonding",
1714 .attrs = per_bond_attrs,
1715};
1716
1717/*
1718 * Initialize sysfs. This sets up the bonding_masters file in
1719 * /sys/class/net.
1720 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001721int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001722{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001723 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001724
Eric W. Biederman4c224002011-10-12 21:56:25 +00001725 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001726 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001727
1728 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001729 /*
1730 * Permit multiple loads of the module by ignoring failures to
1731 * create the bonding_masters sysfs file. Bonding devices
1732 * created by second or subsequent loads of the module will
1733 * not be listed in, or controllable by, bonding_masters, but
1734 * will have the usual "bonding" sysfs directory.
1735 *
1736 * This is done to preserve backwards compatibility for
1737 * initscripts/sysconfig, which load bonding multiple times to
1738 * configure multiple bonding devices.
1739 */
1740 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001741 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001742 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001743 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001744 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001745 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001746 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001747 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001748
1749 return ret;
1750
1751}
1752
1753/*
1754 * Remove /sys/class/net/bonding_masters.
1755 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001756void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001757{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001758 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001759}
1760
1761/*
1762 * Initialize sysfs for each bond. This sets up and registers
1763 * the 'bondctl' directory for each individual bond under /sys/class/net.
1764 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001765void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001766{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001767 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001768}
1769