blob: 1c9e09fbdff8346e99413e0313d03ed401f463e2 [file] [log] [blame]
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001/*
2 * Copyright(c) 2004-2005 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
Mitch Williamsb76cdba2005-11-09 10:36:41 -080021 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -080022
23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Mitch Williamsb76cdba2005-11-09 10:36:41 -080025#include <linux/kernel.h>
26#include <linux/module.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080027#include <linux/device.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040028#include <linux/sched.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080029#include <linux/fs.h>
30#include <linux/types.h>
31#include <linux/string.h>
32#include <linux/netdevice.h>
33#include <linux/inetdevice.h>
34#include <linux/in.h>
35#include <linux/sysfs.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080036#include <linux/ctype.h>
37#include <linux/inet.h>
38#include <linux/rtnetlink.h>
Stephen Hemminger5c5129b2009-06-12 19:02:51 +000039#include <linux/etherdevice.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070040#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000041#include <net/netns/generic.h>
42#include <linux/nsproxy.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080043
Mitch Williamsb76cdba2005-11-09 10:36:41 -080044#include "bonding.h"
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -080045
Stephen Hemminger3d632c32009-06-12 19:02:48 +000046#define to_dev(obj) container_of(obj, struct device, kobj)
Wang Chen454d7c92008-11-12 23:37:49 -080047#define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
Mitch Williamsb76cdba2005-11-09 10:36:41 -080048
Mitch Williamsb76cdba2005-11-09 10:36:41 -080049/*
50 * "show" function for the bond_masters attribute.
51 * The class parameter is ignored.
52 */
Andi Kleen28812fe2010-01-05 12:48:07 +010053static ssize_t bonding_show_bonds(struct class *cls,
54 struct class_attribute *attr,
55 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -080056{
Eric W. Biederman4c224002011-10-12 21:56:25 +000057 struct bond_net *bn =
58 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080059 int res = 0;
60 struct bonding *bond;
61
Stephen Hemminger7e083842009-06-12 19:02:46 +000062 rtnl_lock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080063
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000064 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -080065 if (res > (PAGE_SIZE - IFNAMSIZ)) {
66 /* not enough space for another interface name */
67 if ((PAGE_SIZE - res) > 10)
68 res = PAGE_SIZE - 10;
Wagner Ferencb8843662007-12-06 23:40:30 -080069 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -080070 break;
71 }
Wagner Ferencb8843662007-12-06 23:40:30 -080072 res += sprintf(buf + res, "%s ", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080073 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -080074 if (res)
75 buf[res-1] = '\n'; /* eat the leftover space */
Stephen Hemminger7e083842009-06-12 19:02:46 +000076
77 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080078 return res;
79}
80
Eric W. Biederman4c224002011-10-12 21:56:25 +000081static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname)
Stephen Hemminger373500d2009-06-12 19:02:50 +000082{
83 struct bonding *bond;
84
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000085 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Stephen Hemminger373500d2009-06-12 19:02:50 +000086 if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0)
87 return bond->dev;
88 }
89 return NULL;
90}
91
Mitch Williamsb76cdba2005-11-09 10:36:41 -080092/*
93 * "store" function for the bond_masters attribute. This is what
94 * creates and deletes entire bonds.
95 *
96 * The class parameter is ignored.
97 *
98 */
99
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000100static ssize_t bonding_store_bonds(struct class *cls,
Andi Kleen28812fe2010-01-05 12:48:07 +0100101 struct class_attribute *attr,
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000102 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800103{
Eric W. Biederman4c224002011-10-12 21:56:25 +0000104 struct bond_net *bn =
105 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800106 char command[IFNAMSIZ + 1] = {0, };
107 char *ifname;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800108 int rv, res = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800109
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800110 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
111 ifname = command + 1;
112 if ((strlen(command) <= 1) ||
113 !dev_valid_name(ifname))
114 goto err_no_cmd;
115
116 if (command[0] == '+') {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800117 pr_info("%s is being created...\n", ifname);
Eric W. Biederman4c224002011-10-12 21:56:25 +0000118 rv = bond_create(bn->net, ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800119 if (rv) {
Phil Oester5f86cad12011-03-14 06:22:06 +0000120 if (rv == -EEXIST)
121 pr_info("%s already exists.\n", ifname);
122 else
123 pr_info("%s creation failed.\n", ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800124 res = rv;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800125 }
Stephen Hemminger373500d2009-06-12 19:02:50 +0000126 } else if (command[0] == '-') {
127 struct net_device *bond_dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800128
Jay Vosburgh027ea042008-01-17 16:25:02 -0800129 rtnl_lock();
Eric W. Biederman4c224002011-10-12 21:56:25 +0000130 bond_dev = bond_get_by_name(bn, ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000131 if (bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800132 pr_info("%s is being deleted...\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000133 unregister_netdevice(bond_dev);
134 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800135 pr_err("unable to delete non-existent %s\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000136 res = -ENODEV;
137 }
138 rtnl_unlock();
139 } else
140 goto err_no_cmd;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800141
Stephen Hemminger373500d2009-06-12 19:02:50 +0000142 /* Always return either count or an error. If you return 0, you'll
143 * get called forever, which is bad.
144 */
145 return res;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800146
147err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800148 pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n");
Jay Vosburghc4ebc662008-05-02 17:49:38 -0700149 return -EPERM;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800150}
Stephen Hemminger373500d2009-06-12 19:02:50 +0000151
Eric W. Biederman4c224002011-10-12 21:56:25 +0000152static const void *bonding_namespace(struct class *cls,
153 const struct class_attribute *attr)
154{
155 const struct bond_net *bn =
156 container_of(attr, struct bond_net, class_attr_bonding_masters);
157 return bn->net;
158}
159
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800160/* class attribute for bond_masters file. This ends up in /sys/class/net */
Eric W. Biederman4c224002011-10-12 21:56:25 +0000161static const struct class_attribute class_attr_bonding_masters = {
162 .attr = {
163 .name = "bonding_masters",
164 .mode = S_IWUSR | S_IRUGO,
165 },
166 .show = bonding_show_bonds,
167 .store = bonding_store_bonds,
168 .namespace = bonding_namespace,
169};
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800170
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000171int bond_create_slave_symlinks(struct net_device *master,
172 struct net_device *slave)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800173{
174 char linkname[IFNAMSIZ+7];
175 int ret = 0;
176
177 /* first, create a link from the slave back to the master */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700178 ret = sysfs_create_link(&(slave->dev.kobj), &(master->dev.kobj),
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800179 "master");
180 if (ret)
181 return ret;
182 /* next, create a link from the master to the slave */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000183 sprintf(linkname, "slave_%s", slave->name);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700184 ret = sysfs_create_link(&(master->dev.kobj), &(slave->dev.kobj),
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800185 linkname);
186 return ret;
187
188}
189
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000190void bond_destroy_slave_symlinks(struct net_device *master,
191 struct net_device *slave)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800192{
193 char linkname[IFNAMSIZ+7];
194
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700195 sysfs_remove_link(&(slave->dev.kobj), "master");
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000196 sprintf(linkname, "slave_%s", slave->name);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700197 sysfs_remove_link(&(master->dev.kobj), linkname);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800198}
199
200
201/*
202 * Show the slaves in the current bond.
203 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700204static ssize_t bonding_show_slaves(struct device *d,
205 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800206{
207 struct slave *slave;
208 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700209 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800210
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700211 read_lock(&bond->lock);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800212 bond_for_each_slave(bond, slave, i) {
213 if (res > (PAGE_SIZE - IFNAMSIZ)) {
214 /* not enough space for another interface name */
215 if ((PAGE_SIZE - res) > 10)
216 res = PAGE_SIZE - 10;
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800217 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800218 break;
219 }
220 res += sprintf(buf + res, "%s ", slave->dev->name);
221 }
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700222 read_unlock(&bond->lock);
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800223 if (res)
224 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800225 return res;
226}
227
228/*
229 * Set the slaves in the current bond. The bond interface must be
230 * up for this to succeed.
Jiri Pirkof9f35452010-05-18 05:46:39 +0000231 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
232 * All hard work should be done there.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800233 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700234static ssize_t bonding_store_slaves(struct device *d,
235 struct device_attribute *attr,
236 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800237{
238 char command[IFNAMSIZ + 1] = { 0, };
239 char *ifname;
Jiri Pirkof9f35452010-05-18 05:46:39 +0000240 int res, ret = count;
241 struct net_device *dev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700242 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800243
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000244 if (!rtnl_trylock())
245 return restart_syscall();
Jay Vosburgh027ea042008-01-17 16:25:02 -0800246
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800247 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
248 ifname = command + 1;
249 if ((strlen(command) <= 1) ||
250 !dev_valid_name(ifname))
251 goto err_no_cmd;
252
Jiri Pirkof9f35452010-05-18 05:46:39 +0000253 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
254 if (!dev) {
255 pr_info("%s: Interface %s does not exist!\n",
256 bond->dev->name, ifname);
257 ret = -ENODEV;
258 goto out;
259 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800260
Jiri Pirkof9f35452010-05-18 05:46:39 +0000261 switch (command[0]) {
262 case '+':
263 pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800264 res = bond_enslave(bond->dev, dev);
Jiri Pirkof9f35452010-05-18 05:46:39 +0000265 break;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000266
Jiri Pirkof9f35452010-05-18 05:46:39 +0000267 case '-':
268 pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name);
269 res = bond_release(bond->dev, dev);
270 break;
271
272 default:
273 goto err_no_cmd;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800274 }
275
Jiri Pirkof9f35452010-05-18 05:46:39 +0000276 if (res)
277 ret = res;
278 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800279
280err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800281 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
282 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800283 ret = -EPERM;
284
285out:
Jay Vosburgh027ea042008-01-17 16:25:02 -0800286 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800287 return ret;
288}
289
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000290static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
291 bonding_store_slaves);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800292
293/*
294 * Show and set the bonding mode. The bond interface must be down to
295 * change the mode.
296 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700297static ssize_t bonding_show_mode(struct device *d,
298 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800299{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700300 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800301
302 return sprintf(buf, "%s %d\n",
303 bond_mode_tbl[bond->params.mode].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800304 bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800305}
306
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700307static ssize_t bonding_store_mode(struct device *d,
308 struct device_attribute *attr,
309 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800310{
311 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700312 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800313
314 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800315 pr_err("unable to update mode of %s because interface is up.\n",
316 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800317 ret = -EPERM;
318 goto out;
319 }
320
Veaceslav Falico4a8bb7e2011-11-15 06:44:42 +0000321 if (bond->slave_cnt > 0) {
322 pr_err("unable to update mode of %s because it has slaves.\n",
323 bond->dev->name);
324 ret = -EPERM;
325 goto out;
326 }
327
Jay Vosburghece95f72008-01-17 16:25:01 -0800328 new_value = bond_parse_parm(buf, bond_mode_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800329 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800330 pr_err("%s: Ignoring invalid mode value %.*s.\n",
331 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800332 ret = -EINVAL;
333 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800334 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000335 if ((new_value == BOND_MODE_ALB ||
336 new_value == BOND_MODE_TLB) &&
337 bond->params.arp_interval) {
338 pr_err("%s: %s mode is incompatible with arp monitoring.\n",
339 bond->dev->name, bond_mode_tbl[new_value].modename);
340 ret = -EINVAL;
341 goto out;
342 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000343
344 bond->params.mode = new_value;
345 bond_set_mode_ops(bond, bond->params.mode);
346 pr_info("%s: setting mode to %s (%d).\n",
347 bond->dev->name, bond_mode_tbl[new_value].modename,
348 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800349out:
350 return ret;
351}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000352static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
353 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800354
355/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000356 * Show and set the bonding transmit hash method.
357 * The bond interface must be down to change the xmit hash policy.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800358 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700359static ssize_t bonding_show_xmit_hash(struct device *d,
360 struct device_attribute *attr,
361 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800362{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700363 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800364
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800365 return sprintf(buf, "%s %d\n",
366 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
367 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800368}
369
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700370static ssize_t bonding_store_xmit_hash(struct device *d,
371 struct device_attribute *attr,
372 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800373{
374 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700375 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800376
377 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800378 pr_err("%s: Interface is up. Unable to update xmit policy.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800379 bond->dev->name);
380 ret = -EPERM;
381 goto out;
382 }
383
Jay Vosburghece95f72008-01-17 16:25:01 -0800384 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800385 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800386 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800387 bond->dev->name,
388 (int)strlen(buf) - 1, buf);
389 ret = -EINVAL;
390 goto out;
391 } else {
392 bond->params.xmit_policy = new_value;
393 bond_set_mode_ops(bond, bond->params.mode);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800394 pr_info("%s: setting xmit hash policy to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000395 bond->dev->name,
396 xmit_hashtype_tbl[new_value].modename, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800397 }
398out:
399 return ret;
400}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000401static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
402 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800403
404/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700405 * Show and set arp_validate.
406 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700407static ssize_t bonding_show_arp_validate(struct device *d,
408 struct device_attribute *attr,
409 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700410{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700411 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700412
413 return sprintf(buf, "%s %d\n",
414 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800415 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700416}
417
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700418static ssize_t bonding_store_arp_validate(struct device *d,
419 struct device_attribute *attr,
420 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700421{
422 int new_value;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700423 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700424
Jay Vosburghece95f72008-01-17 16:25:01 -0800425 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700426 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800427 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700428 bond->dev->name, buf);
429 return -EINVAL;
430 }
431 if (new_value && (bond->params.mode != BOND_MODE_ACTIVEBACKUP)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800432 pr_err("%s: arp_validate only supported in active-backup mode.\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700433 bond->dev->name);
434 return -EINVAL;
435 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800436 pr_info("%s: setting arp_validate to %s (%d).\n",
437 bond->dev->name, arp_validate_tbl[new_value].modename,
438 new_value);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700439
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700440 bond->params.arp_validate = new_value;
441
442 return count;
443}
444
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000445static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
446 bonding_store_arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700447
448/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700449 * Show and store fail_over_mac. User only allowed to change the
450 * value when there are no slaves.
451 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000452static ssize_t bonding_show_fail_over_mac(struct device *d,
453 struct device_attribute *attr,
454 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700455{
456 struct bonding *bond = to_bond(d);
457
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700458 return sprintf(buf, "%s %d\n",
459 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
460 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700461}
462
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000463static ssize_t bonding_store_fail_over_mac(struct device *d,
464 struct device_attribute *attr,
465 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700466{
467 int new_value;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700468 struct bonding *bond = to_bond(d);
469
470 if (bond->slave_cnt != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800471 pr_err("%s: Can't alter fail_over_mac with slaves in bond.\n",
Jay Vosburghdd957c52007-10-09 19:57:24 -0700472 bond->dev->name);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700473 return -EPERM;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700474 }
475
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700476 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
477 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800478 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700479 bond->dev->name, buf);
480 return -EINVAL;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700481 }
482
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700483 bond->params.fail_over_mac = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800484 pr_info("%s: Setting fail_over_mac to %s (%d).\n",
485 bond->dev->name, fail_over_mac_tbl[new_value].modename,
486 new_value);
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700487
488 return count;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700489}
490
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000491static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
492 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700493
494/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800495 * Show and set the arp timer interval. There are two tricky bits
496 * here. First, if ARP monitoring is activated, then we must disable
497 * MII monitoring. Second, if the ARP timer isn't running, we must
498 * start it.
499 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700500static ssize_t bonding_show_arp_interval(struct device *d,
501 struct device_attribute *attr,
502 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800503{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700504 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800505
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800506 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800507}
508
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700509static ssize_t bonding_store_arp_interval(struct device *d,
510 struct device_attribute *attr,
511 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800512{
513 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700514 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800515
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000516 if (!rtnl_trylock())
517 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800518 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800519 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800520 bond->dev->name);
521 ret = -EINVAL;
522 goto out;
523 }
524 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800525 pr_err("%s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800526 bond->dev->name, new_value, INT_MAX);
527 ret = -EINVAL;
528 goto out;
529 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000530 if (bond->params.mode == BOND_MODE_ALB ||
531 bond->params.mode == BOND_MODE_TLB) {
532 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
533 bond->dev->name, bond->dev->name);
534 ret = -EINVAL;
535 goto out;
536 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800537 pr_info("%s: Setting ARP monitoring interval to %d.\n",
538 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800539 bond->params.arp_interval = new_value;
540 if (bond->params.miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800541 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
542 bond->dev->name, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800543 bond->params.miimon = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800544 }
545 if (!bond->params.arp_targets[0]) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800546 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
547 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800548 }
549 if (bond->dev->flags & IFF_UP) {
550 /* If the interface is up, we may need to fire off
551 * the ARP timer. If the interface is down, the
552 * timer will get fired off when the open function
553 * is called.
554 */
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000555 cancel_delayed_work_sync(&bond->mii_work);
556 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800557 }
558
559out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000560 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800561 return ret;
562}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000563static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
564 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800565
566/*
567 * Show and set the arp targets.
568 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700569static ssize_t bonding_show_arp_targets(struct device *d,
570 struct device_attribute *attr,
571 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800572{
573 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700574 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800575
576 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
577 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700578 res += sprintf(buf + res, "%pI4 ",
579 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800580 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800581 if (res)
582 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800583 return res;
584}
585
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700586static ssize_t bonding_store_arp_targets(struct device *d,
587 struct device_attribute *attr,
588 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800589{
Al Virod3bb52b2007-08-22 20:06:58 -0400590 __be32 newtarget;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800591 int i = 0, done = 0, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700592 struct bonding *bond = to_bond(d);
Al Virod3bb52b2007-08-22 20:06:58 -0400593 __be32 *targets;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800594
595 targets = bond->params.arp_targets;
596 newtarget = in_aton(buf + 1);
597 /* look for adds */
598 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400599 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800600 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700601 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800602 ret = -EINVAL;
603 goto out;
604 }
605 /* look for an empty slot to put the target in, and check for dupes */
Brian Haley5a31bec2009-04-13 00:11:30 -0700606 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800607 if (targets[i] == newtarget) { /* duplicate */
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800608 pr_err("%s: ARP target %pI4 is already present\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700609 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800610 ret = -EINVAL;
611 goto out;
612 }
Brian Haley5a31bec2009-04-13 00:11:30 -0700613 if (targets[i] == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800614 pr_info("%s: adding ARP target %pI4.\n",
615 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800616 done = 1;
617 targets[i] = newtarget;
618 }
619 }
620 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800621 pr_err("%s: ARP target table is full!\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800622 bond->dev->name);
623 ret = -EINVAL;
624 goto out;
625 }
626
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000627 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400628 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800629 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700630 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800631 ret = -EINVAL;
632 goto out;
633 }
634
Brian Haley5a31bec2009-04-13 00:11:30 -0700635 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800636 if (targets[i] == newtarget) {
Brian Haley5a31bec2009-04-13 00:11:30 -0700637 int j;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800638 pr_info("%s: removing ARP target %pI4.\n",
639 bond->dev->name, &newtarget);
Brian Haley5a31bec2009-04-13 00:11:30 -0700640 for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++)
641 targets[j] = targets[j+1];
642
643 targets[j] = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800644 done = 1;
645 }
646 }
647 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800648 pr_info("%s: unable to remove nonexistent ARP target %pI4.\n",
649 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800650 ret = -EINVAL;
651 goto out;
652 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000653 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800654 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
655 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800656 ret = -EPERM;
657 goto out;
658 }
659
660out:
661 return ret;
662}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700663static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800664
665/*
666 * Show and set the up and down delays. These must be multiples of the
667 * MII monitoring value, and are stored internally as the multiplier.
668 * Thus, we must translate to MS for the real world.
669 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700670static ssize_t bonding_show_downdelay(struct device *d,
671 struct device_attribute *attr,
672 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800673{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700674 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800675
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800676 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800677}
678
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700679static ssize_t bonding_store_downdelay(struct device *d,
680 struct device_attribute *attr,
681 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800682{
683 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700684 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800685
686 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800687 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800688 bond->dev->name);
689 ret = -EPERM;
690 goto out;
691 }
692
693 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800694 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800695 ret = -EINVAL;
696 goto out;
697 }
698 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800699 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800700 bond->dev->name, new_value, 1, INT_MAX);
701 ret = -EINVAL;
702 goto out;
703 } else {
704 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800705 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 +0000706 bond->dev->name, new_value,
707 bond->params.miimon,
708 (new_value / bond->params.miimon) *
709 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800710 }
711 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800712 pr_info("%s: Setting down delay to %d.\n",
713 bond->dev->name,
714 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800715
716 }
717
718out:
719 return ret;
720}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000721static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
722 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800723
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700724static ssize_t bonding_show_updelay(struct device *d,
725 struct device_attribute *attr,
726 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800727{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700728 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800729
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800730 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800731
732}
733
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700734static ssize_t bonding_store_updelay(struct device *d,
735 struct device_attribute *attr,
736 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800737{
738 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700739 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800740
741 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800742 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800743 bond->dev->name);
744 ret = -EPERM;
745 goto out;
746 }
747
748 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800749 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800750 bond->dev->name);
751 ret = -EINVAL;
752 goto out;
753 }
754 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800755 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800756 bond->dev->name, new_value, 1, INT_MAX);
757 ret = -EINVAL;
758 goto out;
759 } else {
760 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800761 pr_warning("%s: Warning: up delay (%d) is not a multiple of miimon (%d), updelay rounded to %d ms\n",
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000762 bond->dev->name, new_value,
763 bond->params.miimon,
764 (new_value / bond->params.miimon) *
765 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800766 }
767 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800768 pr_info("%s: Setting up delay to %d.\n",
769 bond->dev->name,
770 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800771 }
772
773out:
774 return ret;
775}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000776static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
777 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800778
779/*
780 * Show and set the LACP interval. Interface must be down, and the mode
781 * must be set to 802.3ad mode.
782 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700783static ssize_t bonding_show_lacp(struct device *d,
784 struct device_attribute *attr,
785 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800786{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700787 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800788
789 return sprintf(buf, "%s %d\n",
790 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800791 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800792}
793
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700794static ssize_t bonding_store_lacp(struct device *d,
795 struct device_attribute *attr,
796 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800797{
798 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700799 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800800
801 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800802 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800803 bond->dev->name);
804 ret = -EPERM;
805 goto out;
806 }
807
808 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800809 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800810 bond->dev->name);
811 ret = -EPERM;
812 goto out;
813 }
814
Jay Vosburghece95f72008-01-17 16:25:01 -0800815 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800816
817 if ((new_value == 1) || (new_value == 0)) {
818 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000819 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800820 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000821 bond->dev->name, bond_lacp_tbl[new_value].modename,
822 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800823 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800824 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000825 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800826 ret = -EINVAL;
827 }
828out:
829 return ret;
830}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000831static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
832 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800833
stephen hemminger655f8912011-06-22 09:54:39 +0000834static ssize_t bonding_show_min_links(struct device *d,
835 struct device_attribute *attr,
836 char *buf)
837{
838 struct bonding *bond = to_bond(d);
839
840 return sprintf(buf, "%d\n", bond->params.min_links);
841}
842
843static ssize_t bonding_store_min_links(struct device *d,
844 struct device_attribute *attr,
845 const char *buf, size_t count)
846{
847 struct bonding *bond = to_bond(d);
848 int ret;
849 unsigned int new_value;
850
851 ret = kstrtouint(buf, 0, &new_value);
852 if (ret < 0) {
853 pr_err("%s: Ignoring invalid min links value %s.\n",
854 bond->dev->name, buf);
855 return ret;
856 }
857
858 pr_info("%s: Setting min links value to %u\n",
859 bond->dev->name, new_value);
860 bond->params.min_links = new_value;
861 return count;
862}
863static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
864 bonding_show_min_links, bonding_store_min_links);
865
Jay Vosburghfd989c82008-11-04 17:51:16 -0800866static ssize_t bonding_show_ad_select(struct device *d,
867 struct device_attribute *attr,
868 char *buf)
869{
870 struct bonding *bond = to_bond(d);
871
872 return sprintf(buf, "%s %d\n",
873 ad_select_tbl[bond->params.ad_select].modename,
874 bond->params.ad_select);
875}
876
877
878static ssize_t bonding_store_ad_select(struct device *d,
879 struct device_attribute *attr,
880 const char *buf, size_t count)
881{
882 int new_value, ret = count;
883 struct bonding *bond = to_bond(d);
884
885 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800886 pr_err("%s: Unable to update ad_select because interface is up.\n",
887 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800888 ret = -EPERM;
889 goto out;
890 }
891
892 new_value = bond_parse_parm(buf, ad_select_tbl);
893
894 if (new_value != -1) {
895 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800896 pr_info("%s: Setting ad_select to %s (%d).\n",
897 bond->dev->name, ad_select_tbl[new_value].modename,
898 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800899 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800900 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800901 bond->dev->name, (int)strlen(buf) - 1, buf);
902 ret = -EINVAL;
903 }
904out:
905 return ret;
906}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000907static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
908 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800909
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800910/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000911 * Show and set the number of peer notifications to send after a failover event.
912 */
913static ssize_t bonding_show_num_peer_notif(struct device *d,
914 struct device_attribute *attr,
915 char *buf)
916{
917 struct bonding *bond = to_bond(d);
918 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
919}
920
921static ssize_t bonding_store_num_peer_notif(struct device *d,
922 struct device_attribute *attr,
923 const char *buf, size_t count)
924{
925 struct bonding *bond = to_bond(d);
926 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
927 return err ? err : count;
928}
929static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
930 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
931static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
932 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
933
934/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800935 * Show and set the MII monitor interval. There are two tricky bits
936 * here. First, if MII monitoring is activated, then we must disable
937 * ARP monitoring. Second, if the timer isn't running, we must
938 * start it.
939 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700940static ssize_t bonding_show_miimon(struct device *d,
941 struct device_attribute *attr,
942 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800943{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700944 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800945
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800946 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800947}
948
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700949static ssize_t bonding_store_miimon(struct device *d,
950 struct device_attribute *attr,
951 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800952{
953 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700954 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800955
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000956 if (!rtnl_trylock())
957 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800958 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800959 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800960 bond->dev->name);
961 ret = -EINVAL;
962 goto out;
963 }
964 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800965 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800966 bond->dev->name, new_value, 1, INT_MAX);
967 ret = -EINVAL;
968 goto out;
969 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800970 pr_info("%s: Setting MII monitoring interval to %d.\n",
971 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800972 bond->params.miimon = new_value;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000973 if (bond->params.updelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800974 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
975 bond->dev->name,
976 bond->params.updelay * bond->params.miimon);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000977 if (bond->params.downdelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800978 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
979 bond->dev->name,
980 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800981 if (bond->params.arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800982 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
983 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800984 bond->params.arp_interval = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700985 if (bond->params.arp_validate) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700986 bond->params.arp_validate =
987 BOND_ARP_VALIDATE_NONE;
988 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800989 }
990
991 if (bond->dev->flags & IFF_UP) {
992 /* If the interface is up, we may need to fire off
993 * the MII timer. If the interface is down, the
994 * timer will get fired off when the open function
995 * is called.
996 */
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000997 cancel_delayed_work_sync(&bond->arp_work);
998 queue_delayed_work(bond->wq, &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800999 }
1000 }
1001out:
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +00001002 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001003 return ret;
1004}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001005static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1006 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001007
1008/*
1009 * Show and set the primary slave. The store function is much
1010 * simpler than bonding_store_slaves function because it only needs to
1011 * handle one interface name.
1012 * The bond must be a mode that supports a primary for this be
1013 * set.
1014 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001015static ssize_t bonding_show_primary(struct device *d,
1016 struct device_attribute *attr,
1017 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001018{
1019 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001020 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001021
1022 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001023 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001024
1025 return count;
1026}
1027
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001028static ssize_t bonding_store_primary(struct device *d,
1029 struct device_attribute *attr,
1030 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001031{
1032 int i;
1033 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001034 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001035 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001036
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001037 if (!rtnl_trylock())
1038 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001039 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001040 read_lock(&bond->lock);
1041 write_lock_bh(&bond->curr_slave_lock);
1042
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001043 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001044 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1045 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001046 goto out;
1047 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001048
nikolay@redhat.comeb6e98a2012-10-31 04:42:51 +00001049 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001050
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001051 /* check to see if we are clearing primary */
1052 if (!strlen(ifname) || buf[0] == '\n') {
1053 pr_info("%s: Setting primary slave to None.\n",
1054 bond->dev->name);
1055 bond->primary_slave = NULL;
Milos Vyleteleb492f72013-01-29 09:59:00 +00001056 memset(bond->params.primary, 0, sizeof(bond->params.primary));
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001057 bond_select_active_slave(bond);
1058 goto out;
1059 }
1060
1061 bond_for_each_slave(bond, slave, i) {
1062 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1063 pr_info("%s: Setting %s as primary slave.\n",
1064 bond->dev->name, slave->dev->name);
1065 bond->primary_slave = slave;
1066 strcpy(bond->params.primary, slave->dev->name);
1067 bond_select_active_slave(bond);
1068 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001069 }
1070 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001071
Weiping Pan8a936642012-06-10 23:00:20 +00001072 strncpy(bond->params.primary, ifname, IFNAMSIZ);
1073 bond->params.primary[IFNAMSIZ - 1] = 0;
1074
1075 pr_info("%s: Recording %s as primary, "
1076 "but it has not been enslaved to %s yet.\n",
1077 bond->dev->name, ifname, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001078out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001079 write_unlock_bh(&bond->curr_slave_lock);
1080 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001081 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001082 rtnl_unlock();
1083
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001084 return count;
1085}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001086static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1087 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001088
1089/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001090 * Show and set the primary_reselect flag.
1091 */
1092static ssize_t bonding_show_primary_reselect(struct device *d,
1093 struct device_attribute *attr,
1094 char *buf)
1095{
1096 struct bonding *bond = to_bond(d);
1097
1098 return sprintf(buf, "%s %d\n",
1099 pri_reselect_tbl[bond->params.primary_reselect].modename,
1100 bond->params.primary_reselect);
1101}
1102
1103static ssize_t bonding_store_primary_reselect(struct device *d,
1104 struct device_attribute *attr,
1105 const char *buf, size_t count)
1106{
1107 int new_value, ret = count;
1108 struct bonding *bond = to_bond(d);
1109
1110 if (!rtnl_trylock())
1111 return restart_syscall();
1112
1113 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1114 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001115 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001116 bond->dev->name,
1117 (int) strlen(buf) - 1, buf);
1118 ret = -EINVAL;
1119 goto out;
1120 }
1121
1122 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001123 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001124 bond->dev->name, pri_reselect_tbl[new_value].modename,
1125 new_value);
1126
Neil Hormane843fa52010-10-13 16:01:50 +00001127 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001128 read_lock(&bond->lock);
1129 write_lock_bh(&bond->curr_slave_lock);
1130 bond_select_active_slave(bond);
1131 write_unlock_bh(&bond->curr_slave_lock);
1132 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001133 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001134out:
1135 rtnl_unlock();
1136 return ret;
1137}
1138static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1139 bonding_show_primary_reselect,
1140 bonding_store_primary_reselect);
1141
1142/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001143 * Show and set the use_carrier flag.
1144 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001145static ssize_t bonding_show_carrier(struct device *d,
1146 struct device_attribute *attr,
1147 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001148{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001149 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001150
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001151 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001152}
1153
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001154static ssize_t bonding_store_carrier(struct device *d,
1155 struct device_attribute *attr,
1156 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001157{
1158 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001159 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001160
1161
1162 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001163 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001164 bond->dev->name);
1165 ret = -EINVAL;
1166 goto out;
1167 }
1168 if ((new_value == 0) || (new_value == 1)) {
1169 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001170 pr_info("%s: Setting use_carrier to %d.\n",
1171 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001172 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001173 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1174 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001175 }
1176out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001177 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001178}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001179static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1180 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001181
1182
1183/*
1184 * Show and set currently active_slave.
1185 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001186static ssize_t bonding_show_active_slave(struct device *d,
1187 struct device_attribute *attr,
1188 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001189{
1190 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001191 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001192 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001193
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001194 read_lock(&bond->curr_slave_lock);
1195 curr = bond->curr_active_slave;
1196 read_unlock(&bond->curr_slave_lock);
1197
1198 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001199 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001200 return count;
1201}
1202
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001203static ssize_t bonding_store_active_slave(struct device *d,
1204 struct device_attribute *attr,
1205 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001206{
1207 int i;
1208 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001209 struct slave *old_active = NULL;
1210 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001211 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001212 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001213
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001214 if (!rtnl_trylock())
1215 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001216
1217 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001218 read_lock(&bond->lock);
1219 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001220
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001221 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001222 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001223 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001224 goto out;
1225 }
1226
nikolay@redhat.comc84e1592012-10-31 06:03:52 +00001227 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001228
1229 /* check to see if we are clearing active */
1230 if (!strlen(ifname) || buf[0] == '\n') {
1231 pr_info("%s: Clearing current active slave.\n",
1232 bond->dev->name);
1233 bond->curr_active_slave = NULL;
1234 bond_select_active_slave(bond);
1235 goto out;
1236 }
1237
1238 bond_for_each_slave(bond, slave, i) {
1239 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1240 old_active = bond->curr_active_slave;
1241 new_active = slave;
1242 if (new_active == old_active) {
1243 /* do nothing */
1244 pr_info("%s: %s is already the current"
1245 " active slave.\n",
1246 bond->dev->name,
1247 slave->dev->name);
1248 goto out;
1249 }
1250 else {
1251 if ((new_active) &&
1252 (old_active) &&
1253 (new_active->link == BOND_LINK_UP) &&
1254 IS_UP(new_active->dev)) {
1255 pr_info("%s: Setting %s as active"
1256 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001257 bond->dev->name,
1258 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001259 bond_change_active_slave(bond,
1260 new_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001261 }
1262 else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001263 pr_info("%s: Could not set %s as"
1264 " active slave; either %s is"
1265 " down or the link is down.\n",
1266 bond->dev->name,
1267 slave->dev->name,
1268 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001269 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001270 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001271 }
1272 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001273 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001274
1275 pr_info("%s: Unable to set %.*s as active slave.\n",
1276 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001277 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001278 write_unlock_bh(&bond->curr_slave_lock);
1279 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001280 unblock_netpoll_tx();
1281
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001282 rtnl_unlock();
1283
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001284 return count;
1285
1286}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001287static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1288 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001289
1290
1291/*
1292 * Show link status of the bond interface.
1293 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001294static ssize_t bonding_show_mii_status(struct device *d,
1295 struct device_attribute *attr,
1296 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001297{
1298 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001299 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001300
1301 read_lock(&bond->curr_slave_lock);
1302 curr = bond->curr_active_slave;
1303 read_unlock(&bond->curr_slave_lock);
1304
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001305 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001306}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001307static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001308
1309
1310/*
1311 * Show current 802.3ad aggregator ID.
1312 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001313static ssize_t bonding_show_ad_aggregator(struct device *d,
1314 struct device_attribute *attr,
1315 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001316{
1317 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001318 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001319
1320 if (bond->params.mode == BOND_MODE_8023AD) {
1321 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001322 count = sprintf(buf, "%d\n",
1323 (bond_3ad_get_active_agg_info(bond, &ad_info))
1324 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001325 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001326
1327 return count;
1328}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001329static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001330
1331
1332/*
1333 * Show number of active 802.3ad ports.
1334 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001335static ssize_t bonding_show_ad_num_ports(struct device *d,
1336 struct device_attribute *attr,
1337 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001338{
1339 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001340 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001341
1342 if (bond->params.mode == BOND_MODE_8023AD) {
1343 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001344 count = sprintf(buf, "%d\n",
1345 (bond_3ad_get_active_agg_info(bond, &ad_info))
1346 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001347 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001348
1349 return count;
1350}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001351static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001352
1353
1354/*
1355 * Show current 802.3ad actor key.
1356 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001357static ssize_t bonding_show_ad_actor_key(struct device *d,
1358 struct device_attribute *attr,
1359 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001360{
1361 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001362 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001363
1364 if (bond->params.mode == BOND_MODE_8023AD) {
1365 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001366 count = sprintf(buf, "%d\n",
1367 (bond_3ad_get_active_agg_info(bond, &ad_info))
1368 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001369 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001370
1371 return count;
1372}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001373static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001374
1375
1376/*
1377 * Show current 802.3ad partner key.
1378 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001379static ssize_t bonding_show_ad_partner_key(struct device *d,
1380 struct device_attribute *attr,
1381 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001382{
1383 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001384 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001385
1386 if (bond->params.mode == BOND_MODE_8023AD) {
1387 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001388 count = sprintf(buf, "%d\n",
1389 (bond_3ad_get_active_agg_info(bond, &ad_info))
1390 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001391 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001392
1393 return count;
1394}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001395static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001396
1397
1398/*
1399 * Show current 802.3ad partner mac.
1400 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001401static ssize_t bonding_show_ad_partner_mac(struct device *d,
1402 struct device_attribute *attr,
1403 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001404{
1405 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001406 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001407
1408 if (bond->params.mode == BOND_MODE_8023AD) {
1409 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001410 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001411 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001412 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001413
1414 return count;
1415}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001416static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001417
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001418/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001419 * Show the queue_ids of the slaves in the current bond.
1420 */
1421static ssize_t bonding_show_queue_id(struct device *d,
1422 struct device_attribute *attr,
1423 char *buf)
1424{
1425 struct slave *slave;
1426 int i, res = 0;
1427 struct bonding *bond = to_bond(d);
1428
1429 if (!rtnl_trylock())
1430 return restart_syscall();
1431
1432 read_lock(&bond->lock);
1433 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001434 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1435 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001436 if ((PAGE_SIZE - res) > 10)
1437 res = PAGE_SIZE - 10;
1438 res += sprintf(buf + res, "++more++ ");
1439 break;
1440 }
1441 res += sprintf(buf + res, "%s:%d ",
1442 slave->dev->name, slave->queue_id);
1443 }
1444 read_unlock(&bond->lock);
1445 if (res)
1446 buf[res-1] = '\n'; /* eat the leftover space */
1447 rtnl_unlock();
1448 return res;
1449}
1450
1451/*
1452 * Set the queue_ids of the slaves in the current bond. The bond
1453 * interface must be enslaved for this to work.
1454 */
1455static ssize_t bonding_store_queue_id(struct device *d,
1456 struct device_attribute *attr,
1457 const char *buffer, size_t count)
1458{
1459 struct slave *slave, *update_slave;
1460 struct bonding *bond = to_bond(d);
1461 u16 qid;
1462 int i, ret = count;
1463 char *delim;
1464 struct net_device *sdev = NULL;
1465
1466 if (!rtnl_trylock())
1467 return restart_syscall();
1468
1469 /* delim will point to queue id if successful */
1470 delim = strchr(buffer, ':');
1471 if (!delim)
1472 goto err_no_cmd;
1473
1474 /*
1475 * Terminate string that points to device name and bump it
1476 * up one, so we can read the queue id there.
1477 */
1478 *delim = '\0';
1479 if (sscanf(++delim, "%hd\n", &qid) != 1)
1480 goto err_no_cmd;
1481
1482 /* Check buffer length, valid ifname and queue id */
1483 if (strlen(buffer) > IFNAMSIZ ||
1484 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001485 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001486 goto err_no_cmd;
1487
1488 /* Get the pointer to that interface if it exists */
1489 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1490 if (!sdev)
1491 goto err_no_cmd;
1492
1493 read_lock(&bond->lock);
1494
1495 /* Search for thes slave and check for duplicate qids */
1496 update_slave = NULL;
1497 bond_for_each_slave(bond, slave, i) {
1498 if (sdev == slave->dev)
1499 /*
1500 * We don't need to check the matching
1501 * slave for dups, since we're overwriting it
1502 */
1503 update_slave = slave;
1504 else if (qid && qid == slave->queue_id) {
1505 goto err_no_cmd_unlock;
1506 }
1507 }
1508
1509 if (!update_slave)
1510 goto err_no_cmd_unlock;
1511
1512 /* Actually set the qids for the slave */
1513 update_slave->queue_id = qid;
1514
1515 read_unlock(&bond->lock);
1516out:
1517 rtnl_unlock();
1518 return ret;
1519
1520err_no_cmd_unlock:
1521 read_unlock(&bond->lock);
1522err_no_cmd:
1523 pr_info("invalid input for queue_id set for %s.\n",
1524 bond->dev->name);
1525 ret = -EPERM;
1526 goto out;
1527}
1528
1529static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1530 bonding_store_queue_id);
1531
1532
1533/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001534 * Show and set the all_slaves_active flag.
1535 */
1536static ssize_t bonding_show_slaves_active(struct device *d,
1537 struct device_attribute *attr,
1538 char *buf)
1539{
1540 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001541
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001542 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1543}
1544
1545static ssize_t bonding_store_slaves_active(struct device *d,
1546 struct device_attribute *attr,
1547 const char *buf, size_t count)
1548{
1549 int i, new_value, ret = count;
1550 struct bonding *bond = to_bond(d);
1551 struct slave *slave;
1552
1553 if (sscanf(buf, "%d", &new_value) != 1) {
1554 pr_err("%s: no all_slaves_active value specified.\n",
1555 bond->dev->name);
1556 ret = -EINVAL;
1557 goto out;
1558 }
1559
1560 if (new_value == bond->params.all_slaves_active)
1561 goto out;
1562
1563 if ((new_value == 0) || (new_value == 1)) {
1564 bond->params.all_slaves_active = new_value;
1565 } else {
1566 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1567 bond->dev->name, new_value);
1568 ret = -EINVAL;
1569 goto out;
1570 }
1571
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001572 read_lock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001573 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001574 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001575 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001576 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001577 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001578 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001579 }
1580 }
nikolay@redhat.come196c0e2012-11-29 01:37:59 +00001581 read_unlock(&bond->lock);
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001582out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001583 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001584}
1585static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1586 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001587
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001588/*
1589 * Show and set the number of IGMP membership reports to send on link failure
1590 */
1591static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001592 struct device_attribute *attr,
1593 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001594{
1595 struct bonding *bond = to_bond(d);
1596
1597 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1598}
1599
1600static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001601 struct device_attribute *attr,
1602 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001603{
1604 int new_value, ret = count;
1605 struct bonding *bond = to_bond(d);
1606
1607 if (sscanf(buf, "%d", &new_value) != 1) {
1608 pr_err("%s: no resend_igmp value specified.\n",
1609 bond->dev->name);
1610 ret = -EINVAL;
1611 goto out;
1612 }
1613
Flavio Leitner94265cf2011-05-25 08:38:58 +00001614 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001615 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1616 bond->dev->name, new_value);
1617 ret = -EINVAL;
1618 goto out;
1619 }
1620
1621 pr_info("%s: Setting resend_igmp to %d.\n",
1622 bond->dev->name, new_value);
1623 bond->params.resend_igmp = new_value;
1624out:
1625 return ret;
1626}
1627
1628static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1629 bonding_show_resend_igmp, bonding_store_resend_igmp);
1630
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001631static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001632 &dev_attr_slaves.attr,
1633 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001634 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001635 &dev_attr_arp_validate.attr,
1636 &dev_attr_arp_interval.attr,
1637 &dev_attr_arp_ip_target.attr,
1638 &dev_attr_downdelay.attr,
1639 &dev_attr_updelay.attr,
1640 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001641 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001642 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001643 &dev_attr_num_grat_arp.attr,
1644 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001645 &dev_attr_miimon.attr,
1646 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001647 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001648 &dev_attr_use_carrier.attr,
1649 &dev_attr_active_slave.attr,
1650 &dev_attr_mii_status.attr,
1651 &dev_attr_ad_aggregator.attr,
1652 &dev_attr_ad_num_ports.attr,
1653 &dev_attr_ad_actor_key.attr,
1654 &dev_attr_ad_partner_key.attr,
1655 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001656 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001657 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001658 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001659 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001660 NULL,
1661};
1662
1663static struct attribute_group bonding_group = {
1664 .name = "bonding",
1665 .attrs = per_bond_attrs,
1666};
1667
1668/*
1669 * Initialize sysfs. This sets up the bonding_masters file in
1670 * /sys/class/net.
1671 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001672int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001673{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001674 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001675
Eric W. Biederman4c224002011-10-12 21:56:25 +00001676 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001677 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001678
1679 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001680 /*
1681 * Permit multiple loads of the module by ignoring failures to
1682 * create the bonding_masters sysfs file. Bonding devices
1683 * created by second or subsequent loads of the module will
1684 * not be listed in, or controllable by, bonding_masters, but
1685 * will have the usual "bonding" sysfs directory.
1686 *
1687 * This is done to preserve backwards compatibility for
1688 * initscripts/sysconfig, which load bonding multiple times to
1689 * configure multiple bonding devices.
1690 */
1691 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001692 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001693 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001694 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001695 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001696 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001697 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001698 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001699
1700 return ret;
1701
1702}
1703
1704/*
1705 * Remove /sys/class/net/bonding_masters.
1706 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001707void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001708{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001709 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001710}
1711
1712/*
1713 * Initialize sysfs for each bond. This sets up and registers
1714 * the 'bondctl' directory for each individual bond under /sys/class/net.
1715 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001716void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001717{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001718 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001719}
1720