blob: 780c157e05d96e13e082d8a393d070a3cdcf8fad [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
521 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800522 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800523 bond->dev->name);
524 ret = -EINVAL;
525 goto out;
526 }
527 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800528 pr_err("%s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800529 bond->dev->name, new_value, INT_MAX);
530 ret = -EINVAL;
531 goto out;
532 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000533 if (bond->params.mode == BOND_MODE_ALB ||
534 bond->params.mode == BOND_MODE_TLB) {
535 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
536 bond->dev->name, bond->dev->name);
537 ret = -EINVAL;
538 goto out;
539 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800540 pr_info("%s: Setting ARP monitoring interval to %d.\n",
541 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800542 bond->params.arp_interval = new_value;
543 if (bond->params.miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800544 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
545 bond->dev->name, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800546 bond->params.miimon = 0;
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700547 if (delayed_work_pending(&bond->mii_work)) {
548 cancel_delayed_work(&bond->mii_work);
549 flush_workqueue(bond->wq);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800550 }
551 }
552 if (!bond->params.arp_targets[0]) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800553 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 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700562 if (!delayed_work_pending(&bond->arp_work)) {
563 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
564 INIT_DELAYED_WORK(&bond->arp_work,
565 bond_activebackup_arp_mon);
566 else
567 INIT_DELAYED_WORK(&bond->arp_work,
568 bond_loadbalance_arp_mon);
569
570 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800571 }
572 }
573
574out:
575 return ret;
576}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000577static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
578 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800579
580/*
581 * Show and set the arp targets.
582 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700583static ssize_t bonding_show_arp_targets(struct device *d,
584 struct device_attribute *attr,
585 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800586{
587 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700588 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800589
590 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
591 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700592 res += sprintf(buf + res, "%pI4 ",
593 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800594 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800595 if (res)
596 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800597 return res;
598}
599
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700600static ssize_t bonding_store_arp_targets(struct device *d,
601 struct device_attribute *attr,
602 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800603{
Al Virod3bb52b2007-08-22 20:06:58 -0400604 __be32 newtarget;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800605 int i = 0, done = 0, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700606 struct bonding *bond = to_bond(d);
Al Virod3bb52b2007-08-22 20:06:58 -0400607 __be32 *targets;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800608
609 targets = bond->params.arp_targets;
610 newtarget = in_aton(buf + 1);
611 /* look for adds */
612 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400613 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800614 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700615 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800616 ret = -EINVAL;
617 goto out;
618 }
619 /* look for an empty slot to put the target in, and check for dupes */
Brian Haley5a31bec2009-04-13 00:11:30 -0700620 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800621 if (targets[i] == newtarget) { /* duplicate */
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800622 pr_err("%s: ARP target %pI4 is already present\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700623 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800624 ret = -EINVAL;
625 goto out;
626 }
Brian Haley5a31bec2009-04-13 00:11:30 -0700627 if (targets[i] == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800628 pr_info("%s: adding ARP target %pI4.\n",
629 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800630 done = 1;
631 targets[i] = newtarget;
632 }
633 }
634 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800635 pr_err("%s: ARP target table is full!\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800636 bond->dev->name);
637 ret = -EINVAL;
638 goto out;
639 }
640
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000641 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400642 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800643 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700644 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800645 ret = -EINVAL;
646 goto out;
647 }
648
Brian Haley5a31bec2009-04-13 00:11:30 -0700649 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800650 if (targets[i] == newtarget) {
Brian Haley5a31bec2009-04-13 00:11:30 -0700651 int j;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800652 pr_info("%s: removing ARP target %pI4.\n",
653 bond->dev->name, &newtarget);
Brian Haley5a31bec2009-04-13 00:11:30 -0700654 for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++)
655 targets[j] = targets[j+1];
656
657 targets[j] = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800658 done = 1;
659 }
660 }
661 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800662 pr_info("%s: unable to remove nonexistent ARP target %pI4.\n",
663 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800664 ret = -EINVAL;
665 goto out;
666 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000667 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800668 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
669 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800670 ret = -EPERM;
671 goto out;
672 }
673
674out:
675 return ret;
676}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700677static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800678
679/*
680 * Show and set the up and down delays. These must be multiples of the
681 * MII monitoring value, and are stored internally as the multiplier.
682 * Thus, we must translate to MS for the real world.
683 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700684static ssize_t bonding_show_downdelay(struct device *d,
685 struct device_attribute *attr,
686 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800687{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700688 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800689
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800690 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800691}
692
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700693static ssize_t bonding_store_downdelay(struct device *d,
694 struct device_attribute *attr,
695 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800696{
697 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700698 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800699
700 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800701 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800702 bond->dev->name);
703 ret = -EPERM;
704 goto out;
705 }
706
707 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800708 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800709 ret = -EINVAL;
710 goto out;
711 }
712 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800713 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800714 bond->dev->name, new_value, 1, INT_MAX);
715 ret = -EINVAL;
716 goto out;
717 } else {
718 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800719 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 +0000720 bond->dev->name, new_value,
721 bond->params.miimon,
722 (new_value / bond->params.miimon) *
723 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800724 }
725 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800726 pr_info("%s: Setting down delay to %d.\n",
727 bond->dev->name,
728 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800729
730 }
731
732out:
733 return ret;
734}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000735static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
736 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800737
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700738static ssize_t bonding_show_updelay(struct device *d,
739 struct device_attribute *attr,
740 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800741{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700742 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800743
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800744 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800745
746}
747
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700748static ssize_t bonding_store_updelay(struct device *d,
749 struct device_attribute *attr,
750 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800751{
752 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700753 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800754
755 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800756 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800757 bond->dev->name);
758 ret = -EPERM;
759 goto out;
760 }
761
762 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800763 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800764 bond->dev->name);
765 ret = -EINVAL;
766 goto out;
767 }
768 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800769 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800770 bond->dev->name, new_value, 1, INT_MAX);
771 ret = -EINVAL;
772 goto out;
773 } else {
774 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800775 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 +0000776 bond->dev->name, new_value,
777 bond->params.miimon,
778 (new_value / bond->params.miimon) *
779 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800780 }
781 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800782 pr_info("%s: Setting up delay to %d.\n",
783 bond->dev->name,
784 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800785 }
786
787out:
788 return ret;
789}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000790static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
791 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800792
793/*
794 * Show and set the LACP interval. Interface must be down, and the mode
795 * must be set to 802.3ad mode.
796 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700797static ssize_t bonding_show_lacp(struct device *d,
798 struct device_attribute *attr,
799 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800800{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700801 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800802
803 return sprintf(buf, "%s %d\n",
804 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800805 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800806}
807
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700808static ssize_t bonding_store_lacp(struct device *d,
809 struct device_attribute *attr,
810 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800811{
812 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700813 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800814
815 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800816 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800817 bond->dev->name);
818 ret = -EPERM;
819 goto out;
820 }
821
822 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800823 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800824 bond->dev->name);
825 ret = -EPERM;
826 goto out;
827 }
828
Jay Vosburghece95f72008-01-17 16:25:01 -0800829 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800830
831 if ((new_value == 1) || (new_value == 0)) {
832 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000833 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800834 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000835 bond->dev->name, bond_lacp_tbl[new_value].modename,
836 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800837 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800838 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000839 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800840 ret = -EINVAL;
841 }
842out:
843 return ret;
844}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000845static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
846 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800847
stephen hemminger655f8912011-06-22 09:54:39 +0000848static ssize_t bonding_show_min_links(struct device *d,
849 struct device_attribute *attr,
850 char *buf)
851{
852 struct bonding *bond = to_bond(d);
853
854 return sprintf(buf, "%d\n", bond->params.min_links);
855}
856
857static ssize_t bonding_store_min_links(struct device *d,
858 struct device_attribute *attr,
859 const char *buf, size_t count)
860{
861 struct bonding *bond = to_bond(d);
862 int ret;
863 unsigned int new_value;
864
865 ret = kstrtouint(buf, 0, &new_value);
866 if (ret < 0) {
867 pr_err("%s: Ignoring invalid min links value %s.\n",
868 bond->dev->name, buf);
869 return ret;
870 }
871
872 pr_info("%s: Setting min links value to %u\n",
873 bond->dev->name, new_value);
874 bond->params.min_links = new_value;
875 return count;
876}
877static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
878 bonding_show_min_links, bonding_store_min_links);
879
Jay Vosburghfd989c82008-11-04 17:51:16 -0800880static ssize_t bonding_show_ad_select(struct device *d,
881 struct device_attribute *attr,
882 char *buf)
883{
884 struct bonding *bond = to_bond(d);
885
886 return sprintf(buf, "%s %d\n",
887 ad_select_tbl[bond->params.ad_select].modename,
888 bond->params.ad_select);
889}
890
891
892static ssize_t bonding_store_ad_select(struct device *d,
893 struct device_attribute *attr,
894 const char *buf, size_t count)
895{
896 int new_value, ret = count;
897 struct bonding *bond = to_bond(d);
898
899 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800900 pr_err("%s: Unable to update ad_select because interface is up.\n",
901 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800902 ret = -EPERM;
903 goto out;
904 }
905
906 new_value = bond_parse_parm(buf, ad_select_tbl);
907
908 if (new_value != -1) {
909 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800910 pr_info("%s: Setting ad_select to %s (%d).\n",
911 bond->dev->name, ad_select_tbl[new_value].modename,
912 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800913 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800914 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800915 bond->dev->name, (int)strlen(buf) - 1, buf);
916 ret = -EINVAL;
917 }
918out:
919 return ret;
920}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000921static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
922 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800923
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800924/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000925 * Show and set the number of peer notifications to send after a failover event.
926 */
927static ssize_t bonding_show_num_peer_notif(struct device *d,
928 struct device_attribute *attr,
929 char *buf)
930{
931 struct bonding *bond = to_bond(d);
932 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
933}
934
935static ssize_t bonding_store_num_peer_notif(struct device *d,
936 struct device_attribute *attr,
937 const char *buf, size_t count)
938{
939 struct bonding *bond = to_bond(d);
940 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
941 return err ? err : count;
942}
943static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
944 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
945static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
946 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
947
948/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800949 * Show and set the MII monitor interval. There are two tricky bits
950 * here. First, if MII monitoring is activated, then we must disable
951 * ARP monitoring. Second, if the timer isn't running, we must
952 * start it.
953 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700954static ssize_t bonding_show_miimon(struct device *d,
955 struct device_attribute *attr,
956 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800957{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700958 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800959
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800960 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800961}
962
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700963static ssize_t bonding_store_miimon(struct device *d,
964 struct device_attribute *attr,
965 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800966{
967 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700968 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800969
970 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800971 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800972 bond->dev->name);
973 ret = -EINVAL;
974 goto out;
975 }
976 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800977 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800978 bond->dev->name, new_value, 1, INT_MAX);
979 ret = -EINVAL;
980 goto out;
981 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800982 pr_info("%s: Setting MII monitoring interval to %d.\n",
983 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800984 bond->params.miimon = new_value;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000985 if (bond->params.updelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800986 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
987 bond->dev->name,
988 bond->params.updelay * bond->params.miimon);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000989 if (bond->params.downdelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800990 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
991 bond->dev->name,
992 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800993 if (bond->params.arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800994 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
995 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800996 bond->params.arp_interval = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700997 if (bond->params.arp_validate) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700998 bond->params.arp_validate =
999 BOND_ARP_VALIDATE_NONE;
1000 }
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001001 if (delayed_work_pending(&bond->arp_work)) {
1002 cancel_delayed_work(&bond->arp_work);
1003 flush_workqueue(bond->wq);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001004 }
1005 }
1006
1007 if (bond->dev->flags & IFF_UP) {
1008 /* If the interface is up, we may need to fire off
1009 * the MII timer. If the interface is down, the
1010 * timer will get fired off when the open function
1011 * is called.
1012 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001013 if (!delayed_work_pending(&bond->mii_work)) {
1014 INIT_DELAYED_WORK(&bond->mii_work,
1015 bond_mii_monitor);
1016 queue_delayed_work(bond->wq,
1017 &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001018 }
1019 }
1020 }
1021out:
1022 return ret;
1023}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001024static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1025 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001026
1027/*
1028 * Show and set the primary slave. The store function is much
1029 * simpler than bonding_store_slaves function because it only needs to
1030 * handle one interface name.
1031 * The bond must be a mode that supports a primary for this be
1032 * set.
1033 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001034static ssize_t bonding_show_primary(struct device *d,
1035 struct device_attribute *attr,
1036 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001037{
1038 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001039 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001040
1041 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001042 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001043
1044 return count;
1045}
1046
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001047static ssize_t bonding_store_primary(struct device *d,
1048 struct device_attribute *attr,
1049 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001050{
1051 int i;
1052 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001053 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001054 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001055
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001056 if (!rtnl_trylock())
1057 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001058 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001059 read_lock(&bond->lock);
1060 write_lock_bh(&bond->curr_slave_lock);
1061
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001062 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001063 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1064 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001065 goto out;
1066 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001067
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001068 sscanf(buf, "%16s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001069
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001070 /* check to see if we are clearing primary */
1071 if (!strlen(ifname) || buf[0] == '\n') {
1072 pr_info("%s: Setting primary slave to None.\n",
1073 bond->dev->name);
1074 bond->primary_slave = NULL;
1075 bond_select_active_slave(bond);
1076 goto out;
1077 }
1078
1079 bond_for_each_slave(bond, slave, i) {
1080 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1081 pr_info("%s: Setting %s as primary slave.\n",
1082 bond->dev->name, slave->dev->name);
1083 bond->primary_slave = slave;
1084 strcpy(bond->params.primary, slave->dev->name);
1085 bond_select_active_slave(bond);
1086 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001087 }
1088 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001089
1090 pr_info("%s: Unable to set %.*s as primary slave.\n",
1091 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001092out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001093 write_unlock_bh(&bond->curr_slave_lock);
1094 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001095 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001096 rtnl_unlock();
1097
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001098 return count;
1099}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001100static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1101 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001102
1103/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001104 * Show and set the primary_reselect flag.
1105 */
1106static ssize_t bonding_show_primary_reselect(struct device *d,
1107 struct device_attribute *attr,
1108 char *buf)
1109{
1110 struct bonding *bond = to_bond(d);
1111
1112 return sprintf(buf, "%s %d\n",
1113 pri_reselect_tbl[bond->params.primary_reselect].modename,
1114 bond->params.primary_reselect);
1115}
1116
1117static ssize_t bonding_store_primary_reselect(struct device *d,
1118 struct device_attribute *attr,
1119 const char *buf, size_t count)
1120{
1121 int new_value, ret = count;
1122 struct bonding *bond = to_bond(d);
1123
1124 if (!rtnl_trylock())
1125 return restart_syscall();
1126
1127 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1128 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001129 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001130 bond->dev->name,
1131 (int) strlen(buf) - 1, buf);
1132 ret = -EINVAL;
1133 goto out;
1134 }
1135
1136 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001137 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001138 bond->dev->name, pri_reselect_tbl[new_value].modename,
1139 new_value);
1140
Neil Hormane843fa52010-10-13 16:01:50 +00001141 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001142 read_lock(&bond->lock);
1143 write_lock_bh(&bond->curr_slave_lock);
1144 bond_select_active_slave(bond);
1145 write_unlock_bh(&bond->curr_slave_lock);
1146 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001147 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001148out:
1149 rtnl_unlock();
1150 return ret;
1151}
1152static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1153 bonding_show_primary_reselect,
1154 bonding_store_primary_reselect);
1155
1156/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001157 * Show and set the use_carrier flag.
1158 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001159static ssize_t bonding_show_carrier(struct device *d,
1160 struct device_attribute *attr,
1161 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001162{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001163 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001164
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001165 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001166}
1167
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001168static ssize_t bonding_store_carrier(struct device *d,
1169 struct device_attribute *attr,
1170 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001171{
1172 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001173 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001174
1175
1176 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001177 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001178 bond->dev->name);
1179 ret = -EINVAL;
1180 goto out;
1181 }
1182 if ((new_value == 0) || (new_value == 1)) {
1183 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001184 pr_info("%s: Setting use_carrier to %d.\n",
1185 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001186 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001187 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1188 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001189 }
1190out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001191 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001192}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001193static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1194 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001195
1196
1197/*
1198 * Show and set currently active_slave.
1199 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001200static ssize_t bonding_show_active_slave(struct device *d,
1201 struct device_attribute *attr,
1202 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001203{
1204 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001205 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001206 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001207
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001208 read_lock(&bond->curr_slave_lock);
1209 curr = bond->curr_active_slave;
1210 read_unlock(&bond->curr_slave_lock);
1211
1212 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001213 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001214 return count;
1215}
1216
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001217static ssize_t bonding_store_active_slave(struct device *d,
1218 struct device_attribute *attr,
1219 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001220{
1221 int i;
1222 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001223 struct slave *old_active = NULL;
1224 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001225 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001226 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001227
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001228 if (!rtnl_trylock())
1229 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001230
1231 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001232 read_lock(&bond->lock);
1233 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001234
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001235 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001236 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001237 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001238 goto out;
1239 }
1240
1241 sscanf(buf, "%16s", ifname); /* IFNAMSIZ */
1242
1243 /* check to see if we are clearing active */
1244 if (!strlen(ifname) || buf[0] == '\n') {
1245 pr_info("%s: Clearing current active slave.\n",
1246 bond->dev->name);
1247 bond->curr_active_slave = NULL;
1248 bond_select_active_slave(bond);
1249 goto out;
1250 }
1251
1252 bond_for_each_slave(bond, slave, i) {
1253 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1254 old_active = bond->curr_active_slave;
1255 new_active = slave;
1256 if (new_active == old_active) {
1257 /* do nothing */
1258 pr_info("%s: %s is already the current"
1259 " active slave.\n",
1260 bond->dev->name,
1261 slave->dev->name);
1262 goto out;
1263 }
1264 else {
1265 if ((new_active) &&
1266 (old_active) &&
1267 (new_active->link == BOND_LINK_UP) &&
1268 IS_UP(new_active->dev)) {
1269 pr_info("%s: Setting %s as active"
1270 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001271 bond->dev->name,
1272 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001273 bond_change_active_slave(bond,
1274 new_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001275 }
1276 else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001277 pr_info("%s: Could not set %s as"
1278 " active slave; either %s is"
1279 " down or the link is down.\n",
1280 bond->dev->name,
1281 slave->dev->name,
1282 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001283 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001284 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001285 }
1286 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001287 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001288
1289 pr_info("%s: Unable to set %.*s as active slave.\n",
1290 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001291 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001292 write_unlock_bh(&bond->curr_slave_lock);
1293 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001294 unblock_netpoll_tx();
1295
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001296 rtnl_unlock();
1297
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001298 return count;
1299
1300}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001301static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1302 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001303
1304
1305/*
1306 * Show link status of the bond interface.
1307 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001308static ssize_t bonding_show_mii_status(struct device *d,
1309 struct device_attribute *attr,
1310 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001311{
1312 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001313 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001314
1315 read_lock(&bond->curr_slave_lock);
1316 curr = bond->curr_active_slave;
1317 read_unlock(&bond->curr_slave_lock);
1318
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001319 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001320}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001321static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001322
1323
1324/*
1325 * Show current 802.3ad aggregator ID.
1326 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001327static ssize_t bonding_show_ad_aggregator(struct device *d,
1328 struct device_attribute *attr,
1329 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001330{
1331 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001332 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001333
1334 if (bond->params.mode == BOND_MODE_8023AD) {
1335 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001336 count = sprintf(buf, "%d\n",
1337 (bond_3ad_get_active_agg_info(bond, &ad_info))
1338 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001339 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001340
1341 return count;
1342}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001343static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001344
1345
1346/*
1347 * Show number of active 802.3ad ports.
1348 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001349static ssize_t bonding_show_ad_num_ports(struct device *d,
1350 struct device_attribute *attr,
1351 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001352{
1353 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001354 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001355
1356 if (bond->params.mode == BOND_MODE_8023AD) {
1357 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001358 count = sprintf(buf, "%d\n",
1359 (bond_3ad_get_active_agg_info(bond, &ad_info))
1360 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001361 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001362
1363 return count;
1364}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001365static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001366
1367
1368/*
1369 * Show current 802.3ad actor key.
1370 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001371static ssize_t bonding_show_ad_actor_key(struct device *d,
1372 struct device_attribute *attr,
1373 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001374{
1375 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001376 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001377
1378 if (bond->params.mode == BOND_MODE_8023AD) {
1379 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001380 count = sprintf(buf, "%d\n",
1381 (bond_3ad_get_active_agg_info(bond, &ad_info))
1382 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001383 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001384
1385 return count;
1386}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001387static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001388
1389
1390/*
1391 * Show current 802.3ad partner key.
1392 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001393static ssize_t bonding_show_ad_partner_key(struct device *d,
1394 struct device_attribute *attr,
1395 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001396{
1397 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001398 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001399
1400 if (bond->params.mode == BOND_MODE_8023AD) {
1401 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001402 count = sprintf(buf, "%d\n",
1403 (bond_3ad_get_active_agg_info(bond, &ad_info))
1404 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001405 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001406
1407 return count;
1408}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001409static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001410
1411
1412/*
1413 * Show current 802.3ad partner mac.
1414 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001415static ssize_t bonding_show_ad_partner_mac(struct device *d,
1416 struct device_attribute *attr,
1417 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001418{
1419 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001420 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001421
1422 if (bond->params.mode == BOND_MODE_8023AD) {
1423 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001424 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001425 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001426 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001427
1428 return count;
1429}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001430static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001431
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001432/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001433 * Show the queue_ids of the slaves in the current bond.
1434 */
1435static ssize_t bonding_show_queue_id(struct device *d,
1436 struct device_attribute *attr,
1437 char *buf)
1438{
1439 struct slave *slave;
1440 int i, res = 0;
1441 struct bonding *bond = to_bond(d);
1442
1443 if (!rtnl_trylock())
1444 return restart_syscall();
1445
1446 read_lock(&bond->lock);
1447 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001448 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1449 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001450 if ((PAGE_SIZE - res) > 10)
1451 res = PAGE_SIZE - 10;
1452 res += sprintf(buf + res, "++more++ ");
1453 break;
1454 }
1455 res += sprintf(buf + res, "%s:%d ",
1456 slave->dev->name, slave->queue_id);
1457 }
1458 read_unlock(&bond->lock);
1459 if (res)
1460 buf[res-1] = '\n'; /* eat the leftover space */
1461 rtnl_unlock();
1462 return res;
1463}
1464
1465/*
1466 * Set the queue_ids of the slaves in the current bond. The bond
1467 * interface must be enslaved for this to work.
1468 */
1469static ssize_t bonding_store_queue_id(struct device *d,
1470 struct device_attribute *attr,
1471 const char *buffer, size_t count)
1472{
1473 struct slave *slave, *update_slave;
1474 struct bonding *bond = to_bond(d);
1475 u16 qid;
1476 int i, ret = count;
1477 char *delim;
1478 struct net_device *sdev = NULL;
1479
1480 if (!rtnl_trylock())
1481 return restart_syscall();
1482
1483 /* delim will point to queue id if successful */
1484 delim = strchr(buffer, ':');
1485 if (!delim)
1486 goto err_no_cmd;
1487
1488 /*
1489 * Terminate string that points to device name and bump it
1490 * up one, so we can read the queue id there.
1491 */
1492 *delim = '\0';
1493 if (sscanf(++delim, "%hd\n", &qid) != 1)
1494 goto err_no_cmd;
1495
1496 /* Check buffer length, valid ifname and queue id */
1497 if (strlen(buffer) > IFNAMSIZ ||
1498 !dev_valid_name(buffer) ||
1499 qid > bond->params.tx_queues)
1500 goto err_no_cmd;
1501
1502 /* Get the pointer to that interface if it exists */
1503 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1504 if (!sdev)
1505 goto err_no_cmd;
1506
1507 read_lock(&bond->lock);
1508
1509 /* Search for thes slave and check for duplicate qids */
1510 update_slave = NULL;
1511 bond_for_each_slave(bond, slave, i) {
1512 if (sdev == slave->dev)
1513 /*
1514 * We don't need to check the matching
1515 * slave for dups, since we're overwriting it
1516 */
1517 update_slave = slave;
1518 else if (qid && qid == slave->queue_id) {
1519 goto err_no_cmd_unlock;
1520 }
1521 }
1522
1523 if (!update_slave)
1524 goto err_no_cmd_unlock;
1525
1526 /* Actually set the qids for the slave */
1527 update_slave->queue_id = qid;
1528
1529 read_unlock(&bond->lock);
1530out:
1531 rtnl_unlock();
1532 return ret;
1533
1534err_no_cmd_unlock:
1535 read_unlock(&bond->lock);
1536err_no_cmd:
1537 pr_info("invalid input for queue_id set for %s.\n",
1538 bond->dev->name);
1539 ret = -EPERM;
1540 goto out;
1541}
1542
1543static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1544 bonding_store_queue_id);
1545
1546
1547/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001548 * Show and set the all_slaves_active flag.
1549 */
1550static ssize_t bonding_show_slaves_active(struct device *d,
1551 struct device_attribute *attr,
1552 char *buf)
1553{
1554 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001555
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001556 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1557}
1558
1559static ssize_t bonding_store_slaves_active(struct device *d,
1560 struct device_attribute *attr,
1561 const char *buf, size_t count)
1562{
1563 int i, new_value, ret = count;
1564 struct bonding *bond = to_bond(d);
1565 struct slave *slave;
1566
1567 if (sscanf(buf, "%d", &new_value) != 1) {
1568 pr_err("%s: no all_slaves_active value specified.\n",
1569 bond->dev->name);
1570 ret = -EINVAL;
1571 goto out;
1572 }
1573
1574 if (new_value == bond->params.all_slaves_active)
1575 goto out;
1576
1577 if ((new_value == 0) || (new_value == 1)) {
1578 bond->params.all_slaves_active = new_value;
1579 } else {
1580 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1581 bond->dev->name, new_value);
1582 ret = -EINVAL;
1583 goto out;
1584 }
1585
nikolay@redhat.com1097b6a2012-11-29 01:37:59 +00001586 read_lock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001587 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001588 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001589 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001590 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001591 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001592 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001593 }
1594 }
nikolay@redhat.com1097b6a2012-11-29 01:37:59 +00001595 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001596out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001597 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001598}
1599static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1600 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001601
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001602/*
1603 * Show and set the number of IGMP membership reports to send on link failure
1604 */
1605static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001606 struct device_attribute *attr,
1607 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001608{
1609 struct bonding *bond = to_bond(d);
1610
1611 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1612}
1613
1614static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001615 struct device_attribute *attr,
1616 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001617{
1618 int new_value, ret = count;
1619 struct bonding *bond = to_bond(d);
1620
1621 if (sscanf(buf, "%d", &new_value) != 1) {
1622 pr_err("%s: no resend_igmp value specified.\n",
1623 bond->dev->name);
1624 ret = -EINVAL;
1625 goto out;
1626 }
1627
Flavio Leitner94265cf2011-05-25 08:38:58 +00001628 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001629 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1630 bond->dev->name, new_value);
1631 ret = -EINVAL;
1632 goto out;
1633 }
1634
1635 pr_info("%s: Setting resend_igmp to %d.\n",
1636 bond->dev->name, new_value);
1637 bond->params.resend_igmp = new_value;
1638out:
1639 return ret;
1640}
1641
1642static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1643 bonding_show_resend_igmp, bonding_store_resend_igmp);
1644
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001645static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001646 &dev_attr_slaves.attr,
1647 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001648 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001649 &dev_attr_arp_validate.attr,
1650 &dev_attr_arp_interval.attr,
1651 &dev_attr_arp_ip_target.attr,
1652 &dev_attr_downdelay.attr,
1653 &dev_attr_updelay.attr,
1654 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001655 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001656 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001657 &dev_attr_num_grat_arp.attr,
1658 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001659 &dev_attr_miimon.attr,
1660 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001661 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001662 &dev_attr_use_carrier.attr,
1663 &dev_attr_active_slave.attr,
1664 &dev_attr_mii_status.attr,
1665 &dev_attr_ad_aggregator.attr,
1666 &dev_attr_ad_num_ports.attr,
1667 &dev_attr_ad_actor_key.attr,
1668 &dev_attr_ad_partner_key.attr,
1669 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001670 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001671 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001672 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001673 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001674 NULL,
1675};
1676
1677static struct attribute_group bonding_group = {
1678 .name = "bonding",
1679 .attrs = per_bond_attrs,
1680};
1681
1682/*
1683 * Initialize sysfs. This sets up the bonding_masters file in
1684 * /sys/class/net.
1685 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001686int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001687{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001688 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001689
Eric W. Biederman4c224002011-10-12 21:56:25 +00001690 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001691 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001692
1693 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001694 /*
1695 * Permit multiple loads of the module by ignoring failures to
1696 * create the bonding_masters sysfs file. Bonding devices
1697 * created by second or subsequent loads of the module will
1698 * not be listed in, or controllable by, bonding_masters, but
1699 * will have the usual "bonding" sysfs directory.
1700 *
1701 * This is done to preserve backwards compatibility for
1702 * initscripts/sysconfig, which load bonding multiple times to
1703 * configure multiple bonding devices.
1704 */
1705 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001706 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001707 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001708 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001709 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001710 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001711 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001712 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001713
1714 return ret;
1715
1716}
1717
1718/*
1719 * Remove /sys/class/net/bonding_masters.
1720 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001721void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001722{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001723 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001724}
1725
1726/*
1727 * Initialize sysfs for each bond. This sets up and registers
1728 * the 'bondctl' directory for each individual bond under /sys/class/net.
1729 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001730void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001731{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001732 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001733}
1734