blob: f42a00ac38d791662f0300941a2a949d771442aa [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 Oester5f86cad2011-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 Falicob11b7d92013-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/*
234 * Set the slaves in the current bond. The bond interface must be
235 * up for this to succeed.
Jiri Pirkof9f35452010-05-18 05:46:39 +0000236 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
237 * All hard work should be done there.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800238 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700239static ssize_t bonding_store_slaves(struct device *d,
240 struct device_attribute *attr,
241 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800242{
243 char command[IFNAMSIZ + 1] = { 0, };
244 char *ifname;
Jiri Pirkof9f35452010-05-18 05:46:39 +0000245 int res, ret = count;
246 struct net_device *dev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700247 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800248
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000249 if (!rtnl_trylock())
250 return restart_syscall();
Jay Vosburgh027ea042008-01-17 16:25:02 -0800251
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800252 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
253 ifname = command + 1;
254 if ((strlen(command) <= 1) ||
255 !dev_valid_name(ifname))
256 goto err_no_cmd;
257
Jiri Pirkof9f35452010-05-18 05:46:39 +0000258 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
259 if (!dev) {
260 pr_info("%s: Interface %s does not exist!\n",
261 bond->dev->name, ifname);
262 ret = -ENODEV;
263 goto out;
264 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800265
Jiri Pirkof9f35452010-05-18 05:46:39 +0000266 switch (command[0]) {
267 case '+':
268 pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800269 res = bond_enslave(bond->dev, dev);
Jiri Pirkof9f35452010-05-18 05:46:39 +0000270 break;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000271
Jiri Pirkof9f35452010-05-18 05:46:39 +0000272 case '-':
273 pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name);
274 res = bond_release(bond->dev, dev);
275 break;
276
277 default:
278 goto err_no_cmd;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800279 }
280
Jiri Pirkof9f35452010-05-18 05:46:39 +0000281 if (res)
282 ret = res;
283 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800284
285err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800286 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
287 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800288 ret = -EPERM;
289
290out:
Jay Vosburgh027ea042008-01-17 16:25:02 -0800291 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800292 return ret;
293}
294
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000295static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
296 bonding_store_slaves);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800297
298/*
299 * Show and set the bonding mode. The bond interface must be down to
300 * change the mode.
301 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700302static ssize_t bonding_show_mode(struct device *d,
303 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800304{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700305 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800306
307 return sprintf(buf, "%s %d\n",
308 bond_mode_tbl[bond->params.mode].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800309 bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800310}
311
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700312static ssize_t bonding_store_mode(struct device *d,
313 struct device_attribute *attr,
314 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800315{
316 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700317 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800318
319 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800320 pr_err("unable to update mode of %s because interface is up.\n",
321 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800322 ret = -EPERM;
323 goto out;
324 }
325
Veaceslav Falico4a8bb7e2011-11-15 06:44:42 +0000326 if (bond->slave_cnt > 0) {
327 pr_err("unable to update mode of %s because it has slaves.\n",
328 bond->dev->name);
329 ret = -EPERM;
330 goto out;
331 }
332
Jay Vosburghece95f72008-01-17 16:25:01 -0800333 new_value = bond_parse_parm(buf, bond_mode_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800334 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800335 pr_err("%s: Ignoring invalid mode value %.*s.\n",
336 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800337 ret = -EINVAL;
338 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800339 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000340 if ((new_value == BOND_MODE_ALB ||
341 new_value == BOND_MODE_TLB) &&
342 bond->params.arp_interval) {
343 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
344 bond->dev->name, bond_mode_tbl[new_value].modename);
345 ret = -EINVAL;
346 goto out;
347 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000348
349 bond->params.mode = new_value;
350 bond_set_mode_ops(bond, bond->params.mode);
351 pr_info("%s: setting mode to %s (%d).\n",
352 bond->dev->name, bond_mode_tbl[new_value].modename,
353 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800354out:
355 return ret;
356}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000357static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
358 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800359
360/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000361 * Show and set the bonding transmit hash method.
362 * The bond interface must be down to change the xmit hash policy.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800363 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700364static ssize_t bonding_show_xmit_hash(struct device *d,
365 struct device_attribute *attr,
366 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800367{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700368 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800369
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800370 return sprintf(buf, "%s %d\n",
371 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
372 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800373}
374
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700375static ssize_t bonding_store_xmit_hash(struct device *d,
376 struct device_attribute *attr,
377 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800378{
379 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700380 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800381
382 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800383 pr_err("%s: Interface is up. Unable to update xmit policy.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800384 bond->dev->name);
385 ret = -EPERM;
386 goto out;
387 }
388
Jay Vosburghece95f72008-01-17 16:25:01 -0800389 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800390 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800391 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800392 bond->dev->name,
393 (int)strlen(buf) - 1, buf);
394 ret = -EINVAL;
395 goto out;
396 } else {
397 bond->params.xmit_policy = new_value;
398 bond_set_mode_ops(bond, bond->params.mode);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800399 pr_info("%s: setting xmit hash policy to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000400 bond->dev->name,
401 xmit_hashtype_tbl[new_value].modename, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800402 }
403out:
404 return ret;
405}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000406static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
407 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800408
409/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700410 * Show and set arp_validate.
411 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700412static ssize_t bonding_show_arp_validate(struct device *d,
413 struct device_attribute *attr,
414 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700415{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700416 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700417
418 return sprintf(buf, "%s %d\n",
419 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800420 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700421}
422
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700423static ssize_t bonding_store_arp_validate(struct device *d,
424 struct device_attribute *attr,
425 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700426{
427 int new_value;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700428 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700429
Jay Vosburghece95f72008-01-17 16:25:01 -0800430 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700431 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800432 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700433 bond->dev->name, buf);
434 return -EINVAL;
435 }
436 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800437 pr_err("%s: arp_validate only supported in active-backup mode.\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700438 bond->dev->name);
439 return -EINVAL;
440 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800441 pr_info("%s: setting arp_validate to %s (%d).\n",
442 bond->dev->name, arp_validate_tbl[new_value].modename,
443 new_value);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700444
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700445 bond->params.arp_validate = new_value;
446
447 return count;
448}
449
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000450static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
451 bonding_store_arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700452
453/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700454 * Show and store fail_over_mac. User only allowed to change the
455 * value when there are no slaves.
456 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000457static ssize_t bonding_show_fail_over_mac(struct device *d,
458 struct device_attribute *attr,
459 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700460{
461 struct bonding *bond = to_bond(d);
462
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700463 return sprintf(buf, "%s %d\n",
464 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
465 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700466}
467
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000468static ssize_t bonding_store_fail_over_mac(struct device *d,
469 struct device_attribute *attr,
470 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700471{
472 int new_value;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700473 struct bonding *bond = to_bond(d);
474
475 if (bond->slave_cnt != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800476 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700477 bond->dev->name);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700478 return -EPERM;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700479 }
480
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700481 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
482 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800483 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700484 bond->dev->name, buf);
485 return -EINVAL;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700486 }
487
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700488 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800489 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
490 bond->dev->name, fail_over_mac_tbl[new_value].modename,
491 new_value);
Jay Vosburgh3915c1e2008-05-17 21:10:14 -0700492
493 return count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700494}
495
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000496static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
497 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700498
499/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800500 * Show and set the arp timer interval. There are two tricky bits
501 * here. First, if ARP monitoring is activated, then we must disable
502 * MII monitoring. Second, if the ARP timer isn't running, we must
503 * start it.
504 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700505static ssize_t bonding_show_arp_interval(struct device *d,
506 struct device_attribute *attr,
507 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800508{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700509 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800510
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800511 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800512}
513
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700514static ssize_t bonding_store_arp_interval(struct device *d,
515 struct device_attribute *attr,
516 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800517{
518 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700519 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800520
nikolay@redhat.comd98ea182012-11-29 01:31:31 +0000521 if (!rtnl_trylock())
522 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800523 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800524 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800525 bond->dev->name);
526 ret = -EINVAL;
527 goto out;
528 }
529 if (new_value < 0) {
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000530 pr_err("%s: Invalid arp_interval value %d not in range 0-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800531 bond->dev->name, new_value, INT_MAX);
532 ret = -EINVAL;
533 goto out;
534 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000535 if (bond->params.mode == BOND_MODE_ALB ||
Veaceslav Falicoc22fc042013-11-12 15:37:40 +0100536 bond->params.mode == BOND_MODE_TLB ||
537 bond->params.mode == BOND_MODE_8023AD) {
538 pr_info("%s: ARP monitoring cannot be used with ALB/TLB/802.3ad. Only MII monitoring is supported on %s.\n",
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000539 bond->dev->name, bond->dev->name);
540 ret = -EINVAL;
541 goto out;
542 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800543 pr_info("%s: Setting ARP monitoring interval to %d.\n",
544 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800545 bond->params.arp_interval = new_value;
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000546 if (new_value) {
547 if (bond->params.miimon) {
548 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
549 bond->dev->name, bond->dev->name);
550 bond->params.miimon = 0;
551 }
552 if (!bond->params.arp_targets[0])
553 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
554 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800555 }
556 if (bond->dev->flags & IFF_UP) {
557 /* If the interface is up, we may need to fire off
558 * the ARP timer. If the interface is down, the
559 * timer will get fired off when the open function
560 * is called.
561 */
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000562 if (!new_value) {
563 cancel_delayed_work_sync(&bond->arp_work);
564 } else {
565 cancel_delayed_work_sync(&bond->mii_work);
566 queue_delayed_work(bond->wq, &bond->arp_work, 0);
567 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800568 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800569out:
nikolay@redhat.comd98ea182012-11-29 01:31:31 +0000570 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800571 return ret;
572}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000573static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
574 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800575
576/*
577 * Show and set the arp targets.
578 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700579static ssize_t bonding_show_arp_targets(struct device *d,
580 struct device_attribute *attr,
581 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800582{
583 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700584 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800585
586 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
587 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700588 res += sprintf(buf + res, "%pI4 ",
589 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800590 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800591 if (res)
592 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800593 return res;
594}
595
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700596static ssize_t bonding_store_arp_targets(struct device *d,
597 struct device_attribute *attr,
598 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800599{
Al Virod3bb52b2007-08-22 20:06:58 -0400600 __be32 newtarget;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800601 int i = 0, done = 0, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700602 struct bonding *bond = to_bond(d);
Al Virod3bb52b2007-08-22 20:06:58 -0400603 __be32 *targets;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800604
605 targets = bond->params.arp_targets;
606 newtarget = in_aton(buf + 1);
607 /* look for adds */
608 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400609 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800610 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700611 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800612 ret = -EINVAL;
613 goto out;
614 }
615 /* look for an empty slot to put the target in, and check for dupes */
Brian Haley5a31bec2009-04-13 00:11:30 -0700616 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800617 if (targets[i] == newtarget) { /* duplicate */
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800618 pr_err("%s: ARP target %pI4 is already present\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700619 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800620 ret = -EINVAL;
621 goto out;
622 }
Brian Haley5a31bec2009-04-13 00:11:30 -0700623 if (targets[i] == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800624 pr_info("%s: adding ARP target %pI4.\n",
625 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800626 done = 1;
627 targets[i] = newtarget;
628 }
629 }
630 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800631 pr_err("%s: ARP target table is full!\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800632 bond->dev->name);
633 ret = -EINVAL;
634 goto out;
635 }
636
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000637 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400638 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800639 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700640 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800641 ret = -EINVAL;
642 goto out;
643 }
644
Brian Haley5a31bec2009-04-13 00:11:30 -0700645 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800646 if (targets[i] == newtarget) {
Brian Haley5a31bec2009-04-13 00:11:30 -0700647 int j;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800648 pr_info("%s: removing ARP target %pI4.\n",
649 bond->dev->name, &newtarget);
Brian Haley5a31bec2009-04-13 00:11:30 -0700650 for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++)
651 targets[j] = targets[j+1];
652
653 targets[j] = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800654 done = 1;
655 }
656 }
657 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800658 pr_info("%s: unable to remove nonexistent ARP target %pI4.\n",
659 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800660 ret = -EINVAL;
661 goto out;
662 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000663 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800664 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
665 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800666 ret = -EPERM;
667 goto out;
668 }
669
670out:
671 return ret;
672}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700673static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800674
675/*
676 * Show and set the up and down delays. These must be multiples of the
677 * MII monitoring value, and are stored internally as the multiplier.
678 * Thus, we must translate to MS for the real world.
679 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700680static ssize_t bonding_show_downdelay(struct device *d,
681 struct device_attribute *attr,
682 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800683{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700684 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800685
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800686 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800687}
688
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700689static ssize_t bonding_store_downdelay(struct device *d,
690 struct device_attribute *attr,
691 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800692{
693 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700694 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800695
Nikolay Aleksandrove6f3fa42013-11-13 17:07:46 +0100696 if (!rtnl_trylock())
697 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800698 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800699 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800700 bond->dev->name);
701 ret = -EPERM;
702 goto out;
703 }
704
705 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800706 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800707 ret = -EINVAL;
708 goto out;
709 }
710 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800711 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000712 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800713 ret = -EINVAL;
714 goto out;
715 } else {
716 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800717 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 +0000718 bond->dev->name, new_value,
719 bond->params.miimon,
720 (new_value / bond->params.miimon) *
721 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800722 }
723 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800724 pr_info("%s: Setting down delay to %d.\n",
725 bond->dev->name,
726 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800727
728 }
729
730out:
Nikolay Aleksandrove6f3fa42013-11-13 17:07:46 +0100731 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800732 return ret;
733}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000734static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
735 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800736
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700737static ssize_t bonding_show_updelay(struct device *d,
738 struct device_attribute *attr,
739 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800740{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700741 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800742
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800743 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800744
745}
746
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700747static ssize_t bonding_store_updelay(struct device *d,
748 struct device_attribute *attr,
749 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800750{
751 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700752 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800753
Nikolay Aleksandrove6f3fa42013-11-13 17:07:46 +0100754 if (!rtnl_trylock())
755 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800756 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800757 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800758 bond->dev->name);
759 ret = -EPERM;
760 goto out;
761 }
762
763 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800764 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800765 bond->dev->name);
766 ret = -EINVAL;
767 goto out;
768 }
769 if (new_value < 0) {
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000770 pr_err("%s: Invalid up delay value %d not in range %d-%d; rejected.\n",
771 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800772 ret = -EINVAL;
773 goto out;
774 } else {
775 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800776 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 +0000777 bond->dev->name, new_value,
778 bond->params.miimon,
779 (new_value / bond->params.miimon) *
780 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800781 }
782 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800783 pr_info("%s: Setting up delay to %d.\n",
784 bond->dev->name,
785 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800786 }
787
788out:
Nikolay Aleksandrove6f3fa42013-11-13 17:07:46 +0100789 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800790 return ret;
791}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000792static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
793 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800794
795/*
796 * Show and set the LACP interval. Interface must be down, and the mode
797 * must be set to 802.3ad mode.
798 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700799static ssize_t bonding_show_lacp(struct device *d,
800 struct device_attribute *attr,
801 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800802{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700803 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800804
805 return sprintf(buf, "%s %d\n",
806 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800807 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800808}
809
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700810static ssize_t bonding_store_lacp(struct device *d,
811 struct device_attribute *attr,
812 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800813{
814 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700815 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800816
817 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800818 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800819 bond->dev->name);
820 ret = -EPERM;
821 goto out;
822 }
823
824 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800825 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800826 bond->dev->name);
827 ret = -EPERM;
828 goto out;
829 }
830
Jay Vosburghece95f72008-01-17 16:25:01 -0800831 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800832
833 if ((new_value == 1) || (new_value == 0)) {
834 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000835 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800836 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000837 bond->dev->name, bond_lacp_tbl[new_value].modename,
838 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800839 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800840 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000841 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800842 ret = -EINVAL;
843 }
844out:
845 return ret;
846}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000847static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
848 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800849
stephen hemminger655f8912011-06-22 09:54:39 +0000850static ssize_t bonding_show_min_links(struct device *d,
851 struct device_attribute *attr,
852 char *buf)
853{
854 struct bonding *bond = to_bond(d);
855
856 return sprintf(buf, "%d\n", bond->params.min_links);
857}
858
859static ssize_t bonding_store_min_links(struct device *d,
860 struct device_attribute *attr,
861 const char *buf, size_t count)
862{
863 struct bonding *bond = to_bond(d);
864 int ret;
865 unsigned int new_value;
866
867 ret = kstrtouint(buf, 0, &new_value);
868 if (ret < 0) {
869 pr_err("%s: Ignoring invalid min links value %s.\n",
870 bond->dev->name, buf);
871 return ret;
872 }
873
874 pr_info("%s: Setting min links value to %u\n",
875 bond->dev->name, new_value);
876 bond->params.min_links = new_value;
877 return count;
878}
879static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
880 bonding_show_min_links, bonding_store_min_links);
881
Jay Vosburghfd989c82008-11-04 17:51:16 -0800882static ssize_t bonding_show_ad_select(struct device *d,
883 struct device_attribute *attr,
884 char *buf)
885{
886 struct bonding *bond = to_bond(d);
887
888 return sprintf(buf, "%s %d\n",
889 ad_select_tbl[bond->params.ad_select].modename,
890 bond->params.ad_select);
891}
892
893
894static ssize_t bonding_store_ad_select(struct device *d,
895 struct device_attribute *attr,
896 const char *buf, size_t count)
897{
898 int new_value, ret = count;
899 struct bonding *bond = to_bond(d);
900
901 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800902 pr_err("%s: Unable to update ad_select because interface is up.\n",
903 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800904 ret = -EPERM;
905 goto out;
906 }
907
908 new_value = bond_parse_parm(buf, ad_select_tbl);
909
910 if (new_value != -1) {
911 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800912 pr_info("%s: Setting ad_select to %s (%d).\n",
913 bond->dev->name, ad_select_tbl[new_value].modename,
914 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800915 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800916 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800917 bond->dev->name, (int)strlen(buf) - 1, buf);
918 ret = -EINVAL;
919 }
920out:
921 return ret;
922}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000923static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
924 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800925
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800926/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000927 * Show and set the number of peer notifications to send after a failover event.
928 */
929static ssize_t bonding_show_num_peer_notif(struct device *d,
930 struct device_attribute *attr,
931 char *buf)
932{
933 struct bonding *bond = to_bond(d);
934 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
935}
936
937static ssize_t bonding_store_num_peer_notif(struct device *d,
938 struct device_attribute *attr,
939 const char *buf, size_t count)
940{
941 struct bonding *bond = to_bond(d);
942 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
943 return err ? err : count;
944}
945static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
946 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
947static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
948 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
949
950/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800951 * Show and set the MII monitor interval. There are two tricky bits
952 * here. First, if MII monitoring is activated, then we must disable
953 * ARP monitoring. Second, if the timer isn't running, we must
954 * start it.
955 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700956static ssize_t bonding_show_miimon(struct device *d,
957 struct device_attribute *attr,
958 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800959{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700960 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800961
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800962 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800963}
964
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700965static ssize_t bonding_store_miimon(struct device *d,
966 struct device_attribute *attr,
967 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800968{
969 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700970 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800971
nikolay@redhat.comd98ea182012-11-29 01:31:31 +0000972 if (!rtnl_trylock())
973 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800974 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800975 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800976 bond->dev->name);
977 ret = -EINVAL;
978 goto out;
979 }
980 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800981 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000982 bond->dev->name, new_value, 0, INT_MAX);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800983 ret = -EINVAL;
984 goto out;
nikolay@redhat.comae8c63b2013-03-27 03:32:41 +0000985 }
986 pr_info("%s: Setting MII monitoring interval to %d.\n",
987 bond->dev->name, new_value);
988 bond->params.miimon = new_value;
989 if (bond->params.updelay)
990 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
991 bond->dev->name,
992 bond->params.updelay * bond->params.miimon);
993 if (bond->params.downdelay)
994 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
995 bond->dev->name,
996 bond->params.downdelay * bond->params.miimon);
997 if (new_value && bond->params.arp_interval) {
998 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
999 bond->dev->name);
1000 bond->params.arp_interval = 0;
1001 if (bond->params.arp_validate)
1002 bond->params.arp_validate = BOND_ARP_VALIDATE_NONE;
1003 }
1004 if (bond->dev->flags & IFF_UP) {
1005 /* If the interface is up, we may need to fire off
1006 * the MII timer. If the interface is down, the
1007 * timer will get fired off when the open function
1008 * is called.
1009 */
1010 if (!new_value) {
1011 cancel_delayed_work_sync(&bond->mii_work);
1012 } else {
nikolay@redhat.comd98ea182012-11-29 01:31:31 +00001013 cancel_delayed_work_sync(&bond->arp_work);
1014 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001015 }
1016 }
1017out:
nikolay@redhat.comd98ea182012-11-29 01:31:31 +00001018 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001019 return ret;
1020}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001021static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1022 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001023
1024/*
1025 * Show and set the primary slave. The store function is much
1026 * simpler than bonding_store_slaves function because it only needs to
1027 * handle one interface name.
1028 * The bond must be a mode that supports a primary for this be
1029 * set.
1030 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001031static ssize_t bonding_show_primary(struct device *d,
1032 struct device_attribute *attr,
1033 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001034{
1035 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001036 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001037
1038 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001039 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001040
1041 return count;
1042}
1043
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001044static ssize_t bonding_store_primary(struct device *d,
1045 struct device_attribute *attr,
1046 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001047{
1048 int i;
1049 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001050 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001051 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001052
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001053 if (!rtnl_trylock())
1054 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001055 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001056 read_lock(&bond->lock);
1057 write_lock_bh(&bond->curr_slave_lock);
1058
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001059 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001060 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1061 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001062 goto out;
1063 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001064
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001065 sscanf(buf, "%16s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001066
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001067 /* check to see if we are clearing primary */
1068 if (!strlen(ifname) || buf[0] == '\n') {
1069 pr_info("%s: Setting primary slave to None.\n",
1070 bond->dev->name);
1071 bond->primary_slave = NULL;
1072 bond_select_active_slave(bond);
1073 goto out;
1074 }
1075
1076 bond_for_each_slave(bond, slave, i) {
1077 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1078 pr_info("%s: Setting %s as primary slave.\n",
1079 bond->dev->name, slave->dev->name);
1080 bond->primary_slave = slave;
1081 strcpy(bond->params.primary, slave->dev->name);
1082 bond_select_active_slave(bond);
1083 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001084 }
1085 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001086
1087 pr_info("%s: Unable to set %.*s as primary slave.\n",
1088 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001089out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001090 write_unlock_bh(&bond->curr_slave_lock);
1091 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001092 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001093 rtnl_unlock();
1094
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001095 return count;
1096}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001097static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1098 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001099
1100/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001101 * Show and set the primary_reselect flag.
1102 */
1103static ssize_t bonding_show_primary_reselect(struct device *d,
1104 struct device_attribute *attr,
1105 char *buf)
1106{
1107 struct bonding *bond = to_bond(d);
1108
1109 return sprintf(buf, "%s %d\n",
1110 pri_reselect_tbl[bond->params.primary_reselect].modename,
1111 bond->params.primary_reselect);
1112}
1113
1114static ssize_t bonding_store_primary_reselect(struct device *d,
1115 struct device_attribute *attr,
1116 const char *buf, size_t count)
1117{
1118 int new_value, ret = count;
1119 struct bonding *bond = to_bond(d);
1120
1121 if (!rtnl_trylock())
1122 return restart_syscall();
1123
1124 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1125 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001126 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001127 bond->dev->name,
1128 (int) strlen(buf) - 1, buf);
1129 ret = -EINVAL;
1130 goto out;
1131 }
1132
1133 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001134 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001135 bond->dev->name, pri_reselect_tbl[new_value].modename,
1136 new_value);
1137
Neil Hormane843fa52010-10-13 16:01:50 +00001138 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001139 read_lock(&bond->lock);
1140 write_lock_bh(&bond->curr_slave_lock);
1141 bond_select_active_slave(bond);
1142 write_unlock_bh(&bond->curr_slave_lock);
1143 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001144 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001145out:
1146 rtnl_unlock();
1147 return ret;
1148}
1149static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1150 bonding_show_primary_reselect,
1151 bonding_store_primary_reselect);
1152
1153/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001154 * Show and set the use_carrier flag.
1155 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001156static ssize_t bonding_show_carrier(struct device *d,
1157 struct device_attribute *attr,
1158 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001159{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001160 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001161
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001162 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001163}
1164
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001165static ssize_t bonding_store_carrier(struct device *d,
1166 struct device_attribute *attr,
1167 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001168{
1169 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001170 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001171
1172
1173 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001174 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001175 bond->dev->name);
1176 ret = -EINVAL;
1177 goto out;
1178 }
1179 if ((new_value == 0) || (new_value == 1)) {
1180 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001181 pr_info("%s: Setting use_carrier to %d.\n",
1182 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001183 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001184 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1185 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001186 }
1187out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001188 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001189}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001190static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1191 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001192
1193
1194/*
1195 * Show and set currently active_slave.
1196 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001197static ssize_t bonding_show_active_slave(struct device *d,
1198 struct device_attribute *attr,
1199 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001200{
1201 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001202 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001203 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001204
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001205 read_lock(&bond->curr_slave_lock);
1206 curr = bond->curr_active_slave;
1207 read_unlock(&bond->curr_slave_lock);
1208
1209 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001210 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001211 return count;
1212}
1213
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001214static ssize_t bonding_store_active_slave(struct device *d,
1215 struct device_attribute *attr,
1216 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001217{
1218 int i;
1219 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001220 struct slave *old_active = NULL;
1221 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001222 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001223 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001224
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001225 if (!rtnl_trylock())
1226 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001227
1228 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001229 read_lock(&bond->lock);
1230 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001231
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001232 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001233 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001234 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001235 goto out;
1236 }
1237
1238 sscanf(buf, "%16s", ifname); /* IFNAMSIZ */
1239
1240 /* check to see if we are clearing active */
1241 if (!strlen(ifname) || buf[0] == '\n') {
1242 pr_info("%s: Clearing current active slave.\n",
1243 bond->dev->name);
1244 bond->curr_active_slave = NULL;
1245 bond_select_active_slave(bond);
1246 goto out;
1247 }
1248
1249 bond_for_each_slave(bond, slave, i) {
1250 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1251 old_active = bond->curr_active_slave;
1252 new_active = slave;
1253 if (new_active == old_active) {
1254 /* do nothing */
1255 pr_info("%s: %s is already the current"
1256 " active slave.\n",
1257 bond->dev->name,
1258 slave->dev->name);
1259 goto out;
1260 }
1261 else {
1262 if ((new_active) &&
1263 (old_active) &&
1264 (new_active->link == BOND_LINK_UP) &&
1265 IS_UP(new_active->dev)) {
1266 pr_info("%s: Setting %s as active"
1267 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001268 bond->dev->name,
1269 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001270 bond_change_active_slave(bond,
1271 new_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001272 }
1273 else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001274 pr_info("%s: Could not set %s as"
1275 " active slave; either %s is"
1276 " down or the link is down.\n",
1277 bond->dev->name,
1278 slave->dev->name,
1279 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001280 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001281 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001282 }
1283 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001284 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001285
1286 pr_info("%s: Unable to set %.*s as active slave.\n",
1287 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001288 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001289 write_unlock_bh(&bond->curr_slave_lock);
1290 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001291 unblock_netpoll_tx();
1292
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001293 rtnl_unlock();
1294
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001295 return count;
1296
1297}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001298static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1299 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001300
1301
1302/*
1303 * Show link status of the bond interface.
1304 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001305static ssize_t bonding_show_mii_status(struct device *d,
1306 struct device_attribute *attr,
1307 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001308{
1309 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001310 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001311
1312 read_lock(&bond->curr_slave_lock);
1313 curr = bond->curr_active_slave;
1314 read_unlock(&bond->curr_slave_lock);
1315
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001316 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001317}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001318static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001319
1320
1321/*
1322 * Show current 802.3ad aggregator ID.
1323 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001324static ssize_t bonding_show_ad_aggregator(struct device *d,
1325 struct device_attribute *attr,
1326 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001327{
1328 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001329 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001330
1331 if (bond->params.mode == BOND_MODE_8023AD) {
1332 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001333 count = sprintf(buf, "%d\n",
1334 (bond_3ad_get_active_agg_info(bond, &ad_info))
1335 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001336 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001337
1338 return count;
1339}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001340static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001341
1342
1343/*
1344 * Show number of active 802.3ad ports.
1345 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001346static ssize_t bonding_show_ad_num_ports(struct device *d,
1347 struct device_attribute *attr,
1348 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001349{
1350 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001351 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001352
1353 if (bond->params.mode == BOND_MODE_8023AD) {
1354 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001355 count = sprintf(buf, "%d\n",
1356 (bond_3ad_get_active_agg_info(bond, &ad_info))
1357 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001358 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001359
1360 return count;
1361}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001362static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001363
1364
1365/*
1366 * Show current 802.3ad actor key.
1367 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001368static ssize_t bonding_show_ad_actor_key(struct device *d,
1369 struct device_attribute *attr,
1370 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001371{
1372 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001373 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001374
1375 if (bond->params.mode == BOND_MODE_8023AD) {
1376 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001377 count = sprintf(buf, "%d\n",
1378 (bond_3ad_get_active_agg_info(bond, &ad_info))
1379 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001380 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001381
1382 return count;
1383}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001384static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001385
1386
1387/*
1388 * Show current 802.3ad partner key.
1389 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001390static ssize_t bonding_show_ad_partner_key(struct device *d,
1391 struct device_attribute *attr,
1392 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001393{
1394 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001395 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001396
1397 if (bond->params.mode == BOND_MODE_8023AD) {
1398 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001399 count = sprintf(buf, "%d\n",
1400 (bond_3ad_get_active_agg_info(bond, &ad_info))
1401 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001402 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001403
1404 return count;
1405}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001406static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001407
1408
1409/*
1410 * Show current 802.3ad partner mac.
1411 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001412static ssize_t bonding_show_ad_partner_mac(struct device *d,
1413 struct device_attribute *attr,
1414 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001415{
1416 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001417 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001418
1419 if (bond->params.mode == BOND_MODE_8023AD) {
1420 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001421 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001422 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001423 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001424
1425 return count;
1426}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001427static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001428
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001429/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001430 * Show the queue_ids of the slaves in the current bond.
1431 */
1432static ssize_t bonding_show_queue_id(struct device *d,
1433 struct device_attribute *attr,
1434 char *buf)
1435{
1436 struct slave *slave;
1437 int i, res = 0;
1438 struct bonding *bond = to_bond(d);
1439
1440 if (!rtnl_trylock())
1441 return restart_syscall();
1442
1443 read_lock(&bond->lock);
1444 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001445 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1446 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001447 if ((PAGE_SIZE - res) > 10)
1448 res = PAGE_SIZE - 10;
1449 res += sprintf(buf + res, "++more++ ");
1450 break;
1451 }
1452 res += sprintf(buf + res, "%s:%d ",
1453 slave->dev->name, slave->queue_id);
1454 }
1455 read_unlock(&bond->lock);
1456 if (res)
1457 buf[res-1] = '\n'; /* eat the leftover space */
1458 rtnl_unlock();
1459 return res;
1460}
1461
1462/*
1463 * Set the queue_ids of the slaves in the current bond. The bond
1464 * interface must be enslaved for this to work.
1465 */
1466static ssize_t bonding_store_queue_id(struct device *d,
1467 struct device_attribute *attr,
1468 const char *buffer, size_t count)
1469{
1470 struct slave *slave, *update_slave;
1471 struct bonding *bond = to_bond(d);
1472 u16 qid;
1473 int i, ret = count;
1474 char *delim;
1475 struct net_device *sdev = NULL;
1476
1477 if (!rtnl_trylock())
1478 return restart_syscall();
1479
1480 /* delim will point to queue id if successful */
1481 delim = strchr(buffer, ':');
1482 if (!delim)
1483 goto err_no_cmd;
1484
1485 /*
1486 * Terminate string that points to device name and bump it
1487 * up one, so we can read the queue id there.
1488 */
1489 *delim = '\0';
1490 if (sscanf(++delim, "%hd\n", &qid) != 1)
1491 goto err_no_cmd;
1492
1493 /* Check buffer length, valid ifname and queue id */
1494 if (strlen(buffer) > IFNAMSIZ ||
1495 !dev_valid_name(buffer) ||
1496 qid > bond->params.tx_queues)
1497 goto err_no_cmd;
1498
1499 /* Get the pointer to that interface if it exists */
1500 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1501 if (!sdev)
1502 goto err_no_cmd;
1503
1504 read_lock(&bond->lock);
1505
1506 /* Search for thes slave and check for duplicate qids */
1507 update_slave = NULL;
1508 bond_for_each_slave(bond, slave, i) {
1509 if (sdev == slave->dev)
1510 /*
1511 * We don't need to check the matching
1512 * slave for dups, since we're overwriting it
1513 */
1514 update_slave = slave;
1515 else if (qid && qid == slave->queue_id) {
1516 goto err_no_cmd_unlock;
1517 }
1518 }
1519
1520 if (!update_slave)
1521 goto err_no_cmd_unlock;
1522
1523 /* Actually set the qids for the slave */
1524 update_slave->queue_id = qid;
1525
1526 read_unlock(&bond->lock);
1527out:
1528 rtnl_unlock();
1529 return ret;
1530
1531err_no_cmd_unlock:
1532 read_unlock(&bond->lock);
1533err_no_cmd:
1534 pr_info("invalid input for queue_id set for %s.\n",
1535 bond->dev->name);
1536 ret = -EPERM;
1537 goto out;
1538}
1539
1540static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1541 bonding_store_queue_id);
1542
1543
1544/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001545 * Show and set the all_slaves_active flag.
1546 */
1547static ssize_t bonding_show_slaves_active(struct device *d,
1548 struct device_attribute *attr,
1549 char *buf)
1550{
1551 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001552
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001553 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1554}
1555
1556static ssize_t bonding_store_slaves_active(struct device *d,
1557 struct device_attribute *attr,
1558 const char *buf, size_t count)
1559{
1560 int i, new_value, ret = count;
1561 struct bonding *bond = to_bond(d);
1562 struct slave *slave;
1563
1564 if (sscanf(buf, "%d", &new_value) != 1) {
1565 pr_err("%s: no all_slaves_active value specified.\n",
1566 bond->dev->name);
1567 ret = -EINVAL;
1568 goto out;
1569 }
1570
1571 if (new_value == bond->params.all_slaves_active)
1572 goto out;
1573
1574 if ((new_value == 0) || (new_value == 1)) {
1575 bond->params.all_slaves_active = new_value;
1576 } else {
1577 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1578 bond->dev->name, new_value);
1579 ret = -EINVAL;
1580 goto out;
1581 }
1582
nikolay@redhat.com1097b6a2012-11-29 01:37:59 +00001583 read_lock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001584 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001585 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001586 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001587 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001588 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001589 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001590 }
1591 }
nikolay@redhat.com1097b6a2012-11-29 01:37:59 +00001592 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001593out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001594 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001595}
1596static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1597 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001598
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001599/*
1600 * Show and set the number of IGMP membership reports to send on link failure
1601 */
1602static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001603 struct device_attribute *attr,
1604 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001605{
1606 struct bonding *bond = to_bond(d);
1607
1608 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1609}
1610
1611static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001612 struct device_attribute *attr,
1613 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001614{
1615 int new_value, ret = count;
1616 struct bonding *bond = to_bond(d);
1617
1618 if (sscanf(buf, "%d", &new_value) != 1) {
1619 pr_err("%s: no resend_igmp value specified.\n",
1620 bond->dev->name);
1621 ret = -EINVAL;
1622 goto out;
1623 }
1624
Flavio Leitner94265cf2011-05-25 08:38:58 +00001625 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001626 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1627 bond->dev->name, new_value);
1628 ret = -EINVAL;
1629 goto out;
1630 }
1631
1632 pr_info("%s: Setting resend_igmp to %d.\n",
1633 bond->dev->name, new_value);
1634 bond->params.resend_igmp = new_value;
1635out:
1636 return ret;
1637}
1638
1639static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1640 bonding_show_resend_igmp, bonding_store_resend_igmp);
1641
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001642static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001643 &dev_attr_slaves.attr,
1644 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001645 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001646 &dev_attr_arp_validate.attr,
1647 &dev_attr_arp_interval.attr,
1648 &dev_attr_arp_ip_target.attr,
1649 &dev_attr_downdelay.attr,
1650 &dev_attr_updelay.attr,
1651 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001652 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001653 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001654 &dev_attr_num_grat_arp.attr,
1655 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001656 &dev_attr_miimon.attr,
1657 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001658 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001659 &dev_attr_use_carrier.attr,
1660 &dev_attr_active_slave.attr,
1661 &dev_attr_mii_status.attr,
1662 &dev_attr_ad_aggregator.attr,
1663 &dev_attr_ad_num_ports.attr,
1664 &dev_attr_ad_actor_key.attr,
1665 &dev_attr_ad_partner_key.attr,
1666 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001667 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001668 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001669 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001670 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001671 NULL,
1672};
1673
1674static struct attribute_group bonding_group = {
1675 .name = "bonding",
1676 .attrs = per_bond_attrs,
1677};
1678
1679/*
1680 * Initialize sysfs. This sets up the bonding_masters file in
1681 * /sys/class/net.
1682 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001683int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001684{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001685 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001686
Eric W. Biederman4c224002011-10-12 21:56:25 +00001687 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001688 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001689
1690 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001691 /*
1692 * Permit multiple loads of the module by ignoring failures to
1693 * create the bonding_masters sysfs file. Bonding devices
1694 * created by second or subsequent loads of the module will
1695 * not be listed in, or controllable by, bonding_masters, but
1696 * will have the usual "bonding" sysfs directory.
1697 *
1698 * This is done to preserve backwards compatibility for
1699 * initscripts/sysconfig, which load bonding multiple times to
1700 * configure multiple bonding devices.
1701 */
1702 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001703 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001704 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001705 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001706 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001707 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001708 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001709 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001710
1711 return ret;
1712
1713}
1714
1715/*
1716 * Remove /sys/class/net/bonding_masters.
1717 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001718void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001719{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001720 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001721}
1722
1723/*
1724 * Initialize sysfs for each bond. This sets up and registers
1725 * the 'bondctl' directory for each individual bond under /sys/class/net.
1726 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001727void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001728{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001729 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001730}
1731