blob: ef8d2a080d17f4c61b8f28aa7e07bc54ed5c0abc [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
516 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800517 pr_err("%s: no arp_interval value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800518 bond->dev->name);
519 ret = -EINVAL;
520 goto out;
521 }
522 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800523 pr_err("%s: Invalid arp_interval value %d not in range 1-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800524 bond->dev->name, new_value, INT_MAX);
525 ret = -EINVAL;
526 goto out;
527 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000528 if (bond->params.mode == BOND_MODE_ALB ||
529 bond->params.mode == BOND_MODE_TLB) {
530 pr_info("%s: ARP monitoring cannot be used with ALB/TLB. Only MII monitoring is supported on %s.\n",
531 bond->dev->name, bond->dev->name);
532 ret = -EINVAL;
533 goto out;
534 }
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800535 pr_info("%s: Setting ARP monitoring interval to %d.\n",
536 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800537 bond->params.arp_interval = new_value;
538 if (bond->params.miimon) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800539 pr_info("%s: ARP monitoring cannot be used with MII monitoring. %s Disabling MII monitoring.\n",
540 bond->dev->name, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800541 bond->params.miimon = 0;
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700542 if (delayed_work_pending(&bond->mii_work)) {
543 cancel_delayed_work(&bond->mii_work);
544 flush_workqueue(bond->wq);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800545 }
546 }
547 if (!bond->params.arp_targets[0]) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800548 pr_info("%s: ARP monitoring has been set up, but no ARP targets have been specified.\n",
549 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800550 }
551 if (bond->dev->flags & IFF_UP) {
552 /* If the interface is up, we may need to fire off
553 * the ARP timer. If the interface is down, the
554 * timer will get fired off when the open function
555 * is called.
556 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700557 if (!delayed_work_pending(&bond->arp_work)) {
558 if (bond->params.mode == BOND_MODE_ACTIVEBACKUP)
559 INIT_DELAYED_WORK(&bond->arp_work,
560 bond_activebackup_arp_mon);
561 else
562 INIT_DELAYED_WORK(&bond->arp_work,
563 bond_loadbalance_arp_mon);
564
565 queue_delayed_work(bond->wq, &bond->arp_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800566 }
567 }
568
569out:
570 return ret;
571}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000572static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
573 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800574
575/*
576 * Show and set the arp targets.
577 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700578static ssize_t bonding_show_arp_targets(struct device *d,
579 struct device_attribute *attr,
580 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800581{
582 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700583 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800584
585 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
586 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700587 res += sprintf(buf + res, "%pI4 ",
588 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800589 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800590 if (res)
591 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800592 return res;
593}
594
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700595static ssize_t bonding_store_arp_targets(struct device *d,
596 struct device_attribute *attr,
597 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800598{
Al Virod3bb52b2007-08-22 20:06:58 -0400599 __be32 newtarget;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800600 int i = 0, done = 0, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700601 struct bonding *bond = to_bond(d);
Al Virod3bb52b2007-08-22 20:06:58 -0400602 __be32 *targets;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800603
604 targets = bond->params.arp_targets;
605 newtarget = in_aton(buf + 1);
606 /* look for adds */
607 if (buf[0] == '+') {
Al Virod3bb52b2007-08-22 20:06:58 -0400608 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800609 pr_err("%s: invalid ARP target %pI4 specified for addition\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700610 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800611 ret = -EINVAL;
612 goto out;
613 }
614 /* look for an empty slot to put the target in, and check for dupes */
Brian Haley5a31bec2009-04-13 00:11:30 -0700615 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800616 if (targets[i] == newtarget) { /* duplicate */
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800617 pr_err("%s: ARP target %pI4 is already present\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700618 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800619 ret = -EINVAL;
620 goto out;
621 }
Brian Haley5a31bec2009-04-13 00:11:30 -0700622 if (targets[i] == 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800623 pr_info("%s: adding ARP target %pI4.\n",
624 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800625 done = 1;
626 targets[i] = newtarget;
627 }
628 }
629 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800630 pr_err("%s: ARP target table is full!\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800631 bond->dev->name);
632 ret = -EINVAL;
633 goto out;
634 }
635
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000636 } else if (buf[0] == '-') {
Al Virod3bb52b2007-08-22 20:06:58 -0400637 if ((newtarget == 0) || (newtarget == htonl(INADDR_BROADCAST))) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800638 pr_err("%s: invalid ARP target %pI4 specified for removal\n",
Harvey Harrison63779432008-10-31 00:56:00 -0700639 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800640 ret = -EINVAL;
641 goto out;
642 }
643
Brian Haley5a31bec2009-04-13 00:11:30 -0700644 for (i = 0; (i < BOND_MAX_ARP_TARGETS) && !done; i++) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800645 if (targets[i] == newtarget) {
Brian Haley5a31bec2009-04-13 00:11:30 -0700646 int j;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800647 pr_info("%s: removing ARP target %pI4.\n",
648 bond->dev->name, &newtarget);
Brian Haley5a31bec2009-04-13 00:11:30 -0700649 for (j = i; (j < (BOND_MAX_ARP_TARGETS-1)) && targets[j+1]; j++)
650 targets[j] = targets[j+1];
651
652 targets[j] = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800653 done = 1;
654 }
655 }
656 if (!done) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800657 pr_info("%s: unable to remove nonexistent ARP target %pI4.\n",
658 bond->dev->name, &newtarget);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800659 ret = -EINVAL;
660 goto out;
661 }
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000662 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800663 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
664 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800665 ret = -EPERM;
666 goto out;
667 }
668
669out:
670 return ret;
671}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700672static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800673
674/*
675 * Show and set the up and down delays. These must be multiples of the
676 * MII monitoring value, and are stored internally as the multiplier.
677 * Thus, we must translate to MS for the real world.
678 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700679static ssize_t bonding_show_downdelay(struct device *d,
680 struct device_attribute *attr,
681 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800682{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700683 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800684
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800685 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800686}
687
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700688static ssize_t bonding_store_downdelay(struct device *d,
689 struct device_attribute *attr,
690 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800691{
692 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700693 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800694
695 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800696 pr_err("%s: Unable to set down delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800697 bond->dev->name);
698 ret = -EPERM;
699 goto out;
700 }
701
702 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800703 pr_err("%s: no down delay value specified.\n", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800704 ret = -EINVAL;
705 goto out;
706 }
707 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800708 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800709 bond->dev->name, new_value, 1, INT_MAX);
710 ret = -EINVAL;
711 goto out;
712 } else {
713 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800714 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 +0000715 bond->dev->name, new_value,
716 bond->params.miimon,
717 (new_value / bond->params.miimon) *
718 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800719 }
720 bond->params.downdelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800721 pr_info("%s: Setting down delay to %d.\n",
722 bond->dev->name,
723 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800724
725 }
726
727out:
728 return ret;
729}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000730static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
731 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800732
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700733static ssize_t bonding_show_updelay(struct device *d,
734 struct device_attribute *attr,
735 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800736{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700737 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800738
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800739 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800740
741}
742
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700743static ssize_t bonding_store_updelay(struct device *d,
744 struct device_attribute *attr,
745 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800746{
747 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700748 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800749
750 if (!(bond->params.miimon)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800751 pr_err("%s: Unable to set up delay as MII monitoring is disabled\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800752 bond->dev->name);
753 ret = -EPERM;
754 goto out;
755 }
756
757 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800758 pr_err("%s: no up delay value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800759 bond->dev->name);
760 ret = -EINVAL;
761 goto out;
762 }
763 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800764 pr_err("%s: Invalid down delay value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800765 bond->dev->name, new_value, 1, INT_MAX);
766 ret = -EINVAL;
767 goto out;
768 } else {
769 if ((new_value % bond->params.miimon) != 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800770 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 +0000771 bond->dev->name, new_value,
772 bond->params.miimon,
773 (new_value / bond->params.miimon) *
774 bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800775 }
776 bond->params.updelay = new_value / bond->params.miimon;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800777 pr_info("%s: Setting up delay to %d.\n",
778 bond->dev->name,
779 bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800780 }
781
782out:
783 return ret;
784}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000785static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
786 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800787
788/*
789 * Show and set the LACP interval. Interface must be down, and the mode
790 * must be set to 802.3ad mode.
791 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700792static ssize_t bonding_show_lacp(struct device *d,
793 struct device_attribute *attr,
794 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800795{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700796 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800797
798 return sprintf(buf, "%s %d\n",
799 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800800 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800801}
802
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700803static ssize_t bonding_store_lacp(struct device *d,
804 struct device_attribute *attr,
805 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800806{
807 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700808 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800809
810 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800811 pr_err("%s: Unable to update LACP rate because interface is up.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800812 bond->dev->name);
813 ret = -EPERM;
814 goto out;
815 }
816
817 if (bond->params.mode != BOND_MODE_8023AD) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800818 pr_err("%s: Unable to update LACP rate because bond is not in 802.3ad mode.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800819 bond->dev->name);
820 ret = -EPERM;
821 goto out;
822 }
823
Jay Vosburghece95f72008-01-17 16:25:01 -0800824 new_value = bond_parse_parm(buf, bond_lacp_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800825
826 if ((new_value == 1) || (new_value == 0)) {
827 bond->params.lacp_fast = new_value;
Peter Pan(潘卫平)ba824a82011-06-08 21:19:01 +0000828 bond_3ad_update_lacp_rate(bond);
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800829 pr_info("%s: Setting LACP rate to %s (%d).\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000830 bond->dev->name, bond_lacp_tbl[new_value].modename,
831 new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800832 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800833 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000834 bond->dev->name, (int)strlen(buf) - 1, buf);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800835 ret = -EINVAL;
836 }
837out:
838 return ret;
839}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000840static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
841 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800842
stephen hemminger655f8912011-06-22 09:54:39 +0000843static ssize_t bonding_show_min_links(struct device *d,
844 struct device_attribute *attr,
845 char *buf)
846{
847 struct bonding *bond = to_bond(d);
848
849 return sprintf(buf, "%d\n", bond->params.min_links);
850}
851
852static ssize_t bonding_store_min_links(struct device *d,
853 struct device_attribute *attr,
854 const char *buf, size_t count)
855{
856 struct bonding *bond = to_bond(d);
857 int ret;
858 unsigned int new_value;
859
860 ret = kstrtouint(buf, 0, &new_value);
861 if (ret < 0) {
862 pr_err("%s: Ignoring invalid min links value %s.\n",
863 bond->dev->name, buf);
864 return ret;
865 }
866
867 pr_info("%s: Setting min links value to %u\n",
868 bond->dev->name, new_value);
869 bond->params.min_links = new_value;
870 return count;
871}
872static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
873 bonding_show_min_links, bonding_store_min_links);
874
Jay Vosburghfd989c82008-11-04 17:51:16 -0800875static ssize_t bonding_show_ad_select(struct device *d,
876 struct device_attribute *attr,
877 char *buf)
878{
879 struct bonding *bond = to_bond(d);
880
881 return sprintf(buf, "%s %d\n",
882 ad_select_tbl[bond->params.ad_select].modename,
883 bond->params.ad_select);
884}
885
886
887static ssize_t bonding_store_ad_select(struct device *d,
888 struct device_attribute *attr,
889 const char *buf, size_t count)
890{
891 int new_value, ret = count;
892 struct bonding *bond = to_bond(d);
893
894 if (bond->dev->flags & IFF_UP) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800895 pr_err("%s: Unable to update ad_select because interface is up.\n",
896 bond->dev->name);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800897 ret = -EPERM;
898 goto out;
899 }
900
901 new_value = bond_parse_parm(buf, ad_select_tbl);
902
903 if (new_value != -1) {
904 bond->params.ad_select = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800905 pr_info("%s: Setting ad_select to %s (%d).\n",
906 bond->dev->name, ad_select_tbl[new_value].modename,
907 new_value);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800908 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800909 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800910 bond->dev->name, (int)strlen(buf) - 1, buf);
911 ret = -EINVAL;
912 }
913out:
914 return ret;
915}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000916static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
917 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800918
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800919/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000920 * Show and set the number of peer notifications to send after a failover event.
921 */
922static ssize_t bonding_show_num_peer_notif(struct device *d,
923 struct device_attribute *attr,
924 char *buf)
925{
926 struct bonding *bond = to_bond(d);
927 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
928}
929
930static ssize_t bonding_store_num_peer_notif(struct device *d,
931 struct device_attribute *attr,
932 const char *buf, size_t count)
933{
934 struct bonding *bond = to_bond(d);
935 int err = kstrtou8(buf, 10, &bond->params.num_peer_notif);
936 return err ? err : count;
937}
938static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
939 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
940static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
941 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
942
943/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800944 * Show and set the MII monitor interval. There are two tricky bits
945 * here. First, if MII monitoring is activated, then we must disable
946 * ARP monitoring. Second, if the timer isn't running, we must
947 * start it.
948 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700949static ssize_t bonding_show_miimon(struct device *d,
950 struct device_attribute *attr,
951 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800952{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700953 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800954
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800955 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800956}
957
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700958static ssize_t bonding_store_miimon(struct device *d,
959 struct device_attribute *attr,
960 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800961{
962 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700963 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800964
965 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800966 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800967 bond->dev->name);
968 ret = -EINVAL;
969 goto out;
970 }
971 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800972 pr_err("%s: Invalid miimon value %d not in range %d-%d; rejected.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800973 bond->dev->name, new_value, 1, INT_MAX);
974 ret = -EINVAL;
975 goto out;
976 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800977 pr_info("%s: Setting MII monitoring interval to %d.\n",
978 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800979 bond->params.miimon = new_value;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000980 if (bond->params.updelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800981 pr_info("%s: Note: Updating updelay (to %d) since it is a multiple of the miimon value.\n",
982 bond->dev->name,
983 bond->params.updelay * bond->params.miimon);
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000984 if (bond->params.downdelay)
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800985 pr_info("%s: Note: Updating downdelay (to %d) since it is a multiple of the miimon value.\n",
986 bond->dev->name,
987 bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800988 if (bond->params.arp_interval) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800989 pr_info("%s: MII monitoring cannot be used with ARP monitoring. Disabling ARP monitoring...\n",
990 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800991 bond->params.arp_interval = 0;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700992 if (bond->params.arp_validate) {
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700993 bond->params.arp_validate =
994 BOND_ARP_VALIDATE_NONE;
995 }
Jay Vosburgh1b76b312007-10-17 17:37:45 -0700996 if (delayed_work_pending(&bond->arp_work)) {
997 cancel_delayed_work(&bond->arp_work);
998 flush_workqueue(bond->wq);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800999 }
1000 }
1001
1002 if (bond->dev->flags & IFF_UP) {
1003 /* If the interface is up, we may need to fire off
1004 * the MII timer. If the interface is down, the
1005 * timer will get fired off when the open function
1006 * is called.
1007 */
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001008 if (!delayed_work_pending(&bond->mii_work)) {
1009 INIT_DELAYED_WORK(&bond->mii_work,
1010 bond_mii_monitor);
1011 queue_delayed_work(bond->wq,
1012 &bond->mii_work, 0);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001013 }
1014 }
1015 }
1016out:
1017 return ret;
1018}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001019static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
1020 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001021
1022/*
1023 * Show and set the primary slave. The store function is much
1024 * simpler than bonding_store_slaves function because it only needs to
1025 * handle one interface name.
1026 * The bond must be a mode that supports a primary for this be
1027 * set.
1028 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001029static ssize_t bonding_show_primary(struct device *d,
1030 struct device_attribute *attr,
1031 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001032{
1033 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001034 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001035
1036 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001037 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001038
1039 return count;
1040}
1041
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001042static ssize_t bonding_store_primary(struct device *d,
1043 struct device_attribute *attr,
1044 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001045{
1046 int i;
1047 struct slave *slave;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001048 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001049 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001050
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001051 if (!rtnl_trylock())
1052 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001053 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001054 read_lock(&bond->lock);
1055 write_lock_bh(&bond->curr_slave_lock);
1056
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001057 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001058 pr_info("%s: Unable to set primary slave; %s is in mode %d\n",
1059 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001060 goto out;
1061 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001062
nikolay@redhat.comeb6e98a2012-10-31 04:42:51 +00001063 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001064
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001065 /* check to see if we are clearing primary */
1066 if (!strlen(ifname) || buf[0] == '\n') {
1067 pr_info("%s: Setting primary slave to None.\n",
1068 bond->dev->name);
1069 bond->primary_slave = NULL;
1070 bond_select_active_slave(bond);
1071 goto out;
1072 }
1073
1074 bond_for_each_slave(bond, slave, i) {
1075 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1076 pr_info("%s: Setting %s as primary slave.\n",
1077 bond->dev->name, slave->dev->name);
1078 bond->primary_slave = slave;
1079 strcpy(bond->params.primary, slave->dev->name);
1080 bond_select_active_slave(bond);
1081 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001082 }
1083 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001084
Weiping Pan8a936642012-06-10 23:00:20 +00001085 strncpy(bond->params.primary, ifname, IFNAMSIZ);
1086 bond->params.primary[IFNAMSIZ - 1] = 0;
1087
1088 pr_info("%s: Recording %s as primary, "
1089 "but it has not been enslaved to %s yet.\n",
1090 bond->dev->name, ifname, bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001091out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001092 write_unlock_bh(&bond->curr_slave_lock);
1093 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001094 unblock_netpoll_tx();
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001095 rtnl_unlock();
1096
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001097 return count;
1098}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001099static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
1100 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001101
1102/*
Jiri Pirkoa5499522009-09-25 03:28:09 +00001103 * Show and set the primary_reselect flag.
1104 */
1105static ssize_t bonding_show_primary_reselect(struct device *d,
1106 struct device_attribute *attr,
1107 char *buf)
1108{
1109 struct bonding *bond = to_bond(d);
1110
1111 return sprintf(buf, "%s %d\n",
1112 pri_reselect_tbl[bond->params.primary_reselect].modename,
1113 bond->params.primary_reselect);
1114}
1115
1116static ssize_t bonding_store_primary_reselect(struct device *d,
1117 struct device_attribute *attr,
1118 const char *buf, size_t count)
1119{
1120 int new_value, ret = count;
1121 struct bonding *bond = to_bond(d);
1122
1123 if (!rtnl_trylock())
1124 return restart_syscall();
1125
1126 new_value = bond_parse_parm(buf, pri_reselect_tbl);
1127 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001128 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001129 bond->dev->name,
1130 (int) strlen(buf) - 1, buf);
1131 ret = -EINVAL;
1132 goto out;
1133 }
1134
1135 bond->params.primary_reselect = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001136 pr_info("%s: setting primary_reselect to %s (%d).\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +00001137 bond->dev->name, pri_reselect_tbl[new_value].modename,
1138 new_value);
1139
Neil Hormane843fa52010-10-13 16:01:50 +00001140 block_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001141 read_lock(&bond->lock);
1142 write_lock_bh(&bond->curr_slave_lock);
1143 bond_select_active_slave(bond);
1144 write_unlock_bh(&bond->curr_slave_lock);
1145 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001146 unblock_netpoll_tx();
Jiri Pirkoa5499522009-09-25 03:28:09 +00001147out:
1148 rtnl_unlock();
1149 return ret;
1150}
1151static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
1152 bonding_show_primary_reselect,
1153 bonding_store_primary_reselect);
1154
1155/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001156 * Show and set the use_carrier flag.
1157 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001158static ssize_t bonding_show_carrier(struct device *d,
1159 struct device_attribute *attr,
1160 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001161{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001162 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001163
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001164 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001165}
1166
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001167static ssize_t bonding_store_carrier(struct device *d,
1168 struct device_attribute *attr,
1169 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001170{
1171 int new_value, ret = count;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001172 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001173
1174
1175 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001176 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001177 bond->dev->name);
1178 ret = -EINVAL;
1179 goto out;
1180 }
1181 if ((new_value == 0) || (new_value == 1)) {
1182 bond->params.use_carrier = new_value;
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001183 pr_info("%s: Setting use_carrier to %d.\n",
1184 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001185 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001186 pr_info("%s: Ignoring invalid use_carrier value %d.\n",
1187 bond->dev->name, new_value);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001188 }
1189out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001190 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001191}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001192static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
1193 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001194
1195
1196/*
1197 * Show and set currently active_slave.
1198 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001199static ssize_t bonding_show_active_slave(struct device *d,
1200 struct device_attribute *attr,
1201 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001202{
1203 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001204 struct bonding *bond = to_bond(d);
Wagner Ferenc16cd0162007-12-06 23:40:29 -08001205 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001206
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001207 read_lock(&bond->curr_slave_lock);
1208 curr = bond->curr_active_slave;
1209 read_unlock(&bond->curr_slave_lock);
1210
1211 if (USES_PRIMARY(bond->params.mode) && curr)
Wagner Ferenc7bd46502007-12-06 23:40:28 -08001212 count = sprintf(buf, "%s\n", curr->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001213 return count;
1214}
1215
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001216static ssize_t bonding_store_active_slave(struct device *d,
1217 struct device_attribute *attr,
1218 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001219{
1220 int i;
1221 struct slave *slave;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001222 struct slave *old_active = NULL;
1223 struct slave *new_active = NULL;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001224 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001225 char ifname[IFNAMSIZ];
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001226
Eric W. Biederman496a60c2009-05-13 17:02:50 +00001227 if (!rtnl_trylock())
1228 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +00001229
1230 block_netpoll_tx();
Jay Vosburghe934dd72008-01-17 16:24:57 -08001231 read_lock(&bond->lock);
1232 write_lock_bh(&bond->curr_slave_lock);
Jay Vosburgh1466a212007-11-06 13:33:28 -08001233
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001234 if (!USES_PRIMARY(bond->params.mode)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001235 pr_info("%s: Unable to change active slave; %s is in mode %d\n",
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001236 bond->dev->name, bond->dev->name, bond->params.mode);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001237 goto out;
1238 }
1239
nikolay@redhat.comc84e1592012-10-31 06:03:52 +00001240 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001241
1242 /* check to see if we are clearing active */
1243 if (!strlen(ifname) || buf[0] == '\n') {
1244 pr_info("%s: Clearing current active slave.\n",
1245 bond->dev->name);
1246 bond->curr_active_slave = NULL;
1247 bond_select_active_slave(bond);
1248 goto out;
1249 }
1250
1251 bond_for_each_slave(bond, slave, i) {
1252 if (strncmp(slave->dev->name, ifname, IFNAMSIZ) == 0) {
1253 old_active = bond->curr_active_slave;
1254 new_active = slave;
1255 if (new_active == old_active) {
1256 /* do nothing */
1257 pr_info("%s: %s is already the current"
1258 " active slave.\n",
1259 bond->dev->name,
1260 slave->dev->name);
1261 goto out;
1262 }
1263 else {
1264 if ((new_active) &&
1265 (old_active) &&
1266 (new_active->link == BOND_LINK_UP) &&
1267 IS_UP(new_active->dev)) {
1268 pr_info("%s: Setting %s as active"
1269 " slave.\n",
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001270 bond->dev->name,
1271 slave->dev->name);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001272 bond_change_active_slave(bond,
1273 new_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001274 }
1275 else {
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001276 pr_info("%s: Could not set %s as"
1277 " active slave; either %s is"
1278 " down or the link is down.\n",
1279 bond->dev->name,
1280 slave->dev->name,
1281 slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001282 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001283 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001284 }
1285 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001286 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001287
1288 pr_info("%s: Unable to set %.*s as active slave.\n",
1289 bond->dev->name, (int)strlen(buf) - 1, buf);
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001290 out:
Jay Vosburghe934dd72008-01-17 16:24:57 -08001291 write_unlock_bh(&bond->curr_slave_lock);
1292 read_unlock(&bond->lock);
Neil Hormane843fa52010-10-13 16:01:50 +00001293 unblock_netpoll_tx();
1294
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001295 rtnl_unlock();
1296
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001297 return count;
1298
1299}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001300static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1301 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001302
1303
1304/*
1305 * Show link status of the bond interface.
1306 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001307static ssize_t bonding_show_mii_status(struct device *d,
1308 struct device_attribute *attr,
1309 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001310{
1311 struct slave *curr;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001312 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001313
1314 read_lock(&bond->curr_slave_lock);
1315 curr = bond->curr_active_slave;
1316 read_unlock(&bond->curr_slave_lock);
1317
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001318 return sprintf(buf, "%s\n", curr ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001319}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001320static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001321
1322
1323/*
1324 * Show current 802.3ad aggregator ID.
1325 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001326static ssize_t bonding_show_ad_aggregator(struct device *d,
1327 struct device_attribute *attr,
1328 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001329{
1330 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001331 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001332
1333 if (bond->params.mode == BOND_MODE_8023AD) {
1334 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001335 count = sprintf(buf, "%d\n",
1336 (bond_3ad_get_active_agg_info(bond, &ad_info))
1337 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001338 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001339
1340 return count;
1341}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001342static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001343
1344
1345/*
1346 * Show number of active 802.3ad ports.
1347 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001348static ssize_t bonding_show_ad_num_ports(struct device *d,
1349 struct device_attribute *attr,
1350 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001351{
1352 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001353 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001354
1355 if (bond->params.mode == BOND_MODE_8023AD) {
1356 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001357 count = sprintf(buf, "%d\n",
1358 (bond_3ad_get_active_agg_info(bond, &ad_info))
1359 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001360 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001361
1362 return count;
1363}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001364static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001365
1366
1367/*
1368 * Show current 802.3ad actor key.
1369 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001370static ssize_t bonding_show_ad_actor_key(struct device *d,
1371 struct device_attribute *attr,
1372 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001373{
1374 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001375 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001376
1377 if (bond->params.mode == BOND_MODE_8023AD) {
1378 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001379 count = sprintf(buf, "%d\n",
1380 (bond_3ad_get_active_agg_info(bond, &ad_info))
1381 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001382 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001383
1384 return count;
1385}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001386static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001387
1388
1389/*
1390 * Show current 802.3ad partner key.
1391 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001392static ssize_t bonding_show_ad_partner_key(struct device *d,
1393 struct device_attribute *attr,
1394 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001395{
1396 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001397 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001398
1399 if (bond->params.mode == BOND_MODE_8023AD) {
1400 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001401 count = sprintf(buf, "%d\n",
1402 (bond_3ad_get_active_agg_info(bond, &ad_info))
1403 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001404 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001405
1406 return count;
1407}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001408static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001409
1410
1411/*
1412 * Show current 802.3ad partner mac.
1413 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001414static ssize_t bonding_show_ad_partner_mac(struct device *d,
1415 struct device_attribute *attr,
1416 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001417{
1418 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001419 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001420
1421 if (bond->params.mode == BOND_MODE_8023AD) {
1422 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001423 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001424 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001425 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001426
1427 return count;
1428}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001429static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001430
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001431/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001432 * Show the queue_ids of the slaves in the current bond.
1433 */
1434static ssize_t bonding_show_queue_id(struct device *d,
1435 struct device_attribute *attr,
1436 char *buf)
1437{
1438 struct slave *slave;
1439 int i, res = 0;
1440 struct bonding *bond = to_bond(d);
1441
1442 if (!rtnl_trylock())
1443 return restart_syscall();
1444
1445 read_lock(&bond->lock);
1446 bond_for_each_slave(bond, slave, i) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001447 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1448 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001449 if ((PAGE_SIZE - res) > 10)
1450 res = PAGE_SIZE - 10;
1451 res += sprintf(buf + res, "++more++ ");
1452 break;
1453 }
1454 res += sprintf(buf + res, "%s:%d ",
1455 slave->dev->name, slave->queue_id);
1456 }
1457 read_unlock(&bond->lock);
1458 if (res)
1459 buf[res-1] = '\n'; /* eat the leftover space */
1460 rtnl_unlock();
1461 return res;
1462}
1463
1464/*
1465 * Set the queue_ids of the slaves in the current bond. The bond
1466 * interface must be enslaved for this to work.
1467 */
1468static ssize_t bonding_store_queue_id(struct device *d,
1469 struct device_attribute *attr,
1470 const char *buffer, size_t count)
1471{
1472 struct slave *slave, *update_slave;
1473 struct bonding *bond = to_bond(d);
1474 u16 qid;
1475 int i, ret = count;
1476 char *delim;
1477 struct net_device *sdev = NULL;
1478
1479 if (!rtnl_trylock())
1480 return restart_syscall();
1481
1482 /* delim will point to queue id if successful */
1483 delim = strchr(buffer, ':');
1484 if (!delim)
1485 goto err_no_cmd;
1486
1487 /*
1488 * Terminate string that points to device name and bump it
1489 * up one, so we can read the queue id there.
1490 */
1491 *delim = '\0';
1492 if (sscanf(++delim, "%hd\n", &qid) != 1)
1493 goto err_no_cmd;
1494
1495 /* Check buffer length, valid ifname and queue id */
1496 if (strlen(buffer) > IFNAMSIZ ||
1497 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001498 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001499 goto err_no_cmd;
1500
1501 /* Get the pointer to that interface if it exists */
1502 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1503 if (!sdev)
1504 goto err_no_cmd;
1505
1506 read_lock(&bond->lock);
1507
1508 /* Search for thes slave and check for duplicate qids */
1509 update_slave = NULL;
1510 bond_for_each_slave(bond, slave, i) {
1511 if (sdev == slave->dev)
1512 /*
1513 * We don't need to check the matching
1514 * slave for dups, since we're overwriting it
1515 */
1516 update_slave = slave;
1517 else if (qid && qid == slave->queue_id) {
1518 goto err_no_cmd_unlock;
1519 }
1520 }
1521
1522 if (!update_slave)
1523 goto err_no_cmd_unlock;
1524
1525 /* Actually set the qids for the slave */
1526 update_slave->queue_id = qid;
1527
1528 read_unlock(&bond->lock);
1529out:
1530 rtnl_unlock();
1531 return ret;
1532
1533err_no_cmd_unlock:
1534 read_unlock(&bond->lock);
1535err_no_cmd:
1536 pr_info("invalid input for queue_id set for %s.\n",
1537 bond->dev->name);
1538 ret = -EPERM;
1539 goto out;
1540}
1541
1542static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1543 bonding_store_queue_id);
1544
1545
1546/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001547 * Show and set the all_slaves_active flag.
1548 */
1549static ssize_t bonding_show_slaves_active(struct device *d,
1550 struct device_attribute *attr,
1551 char *buf)
1552{
1553 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001554
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001555 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1556}
1557
1558static ssize_t bonding_store_slaves_active(struct device *d,
1559 struct device_attribute *attr,
1560 const char *buf, size_t count)
1561{
1562 int i, new_value, ret = count;
1563 struct bonding *bond = to_bond(d);
1564 struct slave *slave;
1565
1566 if (sscanf(buf, "%d", &new_value) != 1) {
1567 pr_err("%s: no all_slaves_active value specified.\n",
1568 bond->dev->name);
1569 ret = -EINVAL;
1570 goto out;
1571 }
1572
1573 if (new_value == bond->params.all_slaves_active)
1574 goto out;
1575
1576 if ((new_value == 0) || (new_value == 1)) {
1577 bond->params.all_slaves_active = new_value;
1578 } else {
1579 pr_info("%s: Ignoring invalid all_slaves_active value %d.\n",
1580 bond->dev->name, new_value);
1581 ret = -EINVAL;
1582 goto out;
1583 }
1584
1585 bond_for_each_slave(bond, slave, i) {
Jiri Pirkoe30bc062011-03-12 03:14:37 +00001586 if (!bond_is_active_slave(slave)) {
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001587 if (new_value)
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001588 slave->inactive = 0;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001589 else
Jiri Pirko2d7011c2011-03-16 08:46:43 +00001590 slave->inactive = 1;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001591 }
1592 }
1593out:
Jiri Pirko672bda32011-01-25 11:03:25 +00001594 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001595}
1596static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1597 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001598
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001599/*
1600 * Show and set the number of IGMP membership reports to send on link failure
1601 */
1602static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001603 struct device_attribute *attr,
1604 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001605{
1606 struct bonding *bond = to_bond(d);
1607
1608 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1609}
1610
1611static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001612 struct device_attribute *attr,
1613 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001614{
1615 int new_value, ret = count;
1616 struct bonding *bond = to_bond(d);
1617
1618 if (sscanf(buf, "%d", &new_value) != 1) {
1619 pr_err("%s: no resend_igmp value specified.\n",
1620 bond->dev->name);
1621 ret = -EINVAL;
1622 goto out;
1623 }
1624
Flavio Leitner94265cf2011-05-25 08:38:58 +00001625 if (new_value < 0 || new_value > 255) {
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001626 pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
1627 bond->dev->name, new_value);
1628 ret = -EINVAL;
1629 goto out;
1630 }
1631
1632 pr_info("%s: Setting resend_igmp to %d.\n",
1633 bond->dev->name, new_value);
1634 bond->params.resend_igmp = new_value;
1635out:
1636 return ret;
1637}
1638
1639static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1640 bonding_show_resend_igmp, bonding_store_resend_igmp);
1641
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001642static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001643 &dev_attr_slaves.attr,
1644 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001645 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001646 &dev_attr_arp_validate.attr,
1647 &dev_attr_arp_interval.attr,
1648 &dev_attr_arp_ip_target.attr,
1649 &dev_attr_downdelay.attr,
1650 &dev_attr_updelay.attr,
1651 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001652 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001653 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001654 &dev_attr_num_grat_arp.attr,
1655 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001656 &dev_attr_miimon.attr,
1657 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001658 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001659 &dev_attr_use_carrier.attr,
1660 &dev_attr_active_slave.attr,
1661 &dev_attr_mii_status.attr,
1662 &dev_attr_ad_aggregator.attr,
1663 &dev_attr_ad_num_ports.attr,
1664 &dev_attr_ad_actor_key.attr,
1665 &dev_attr_ad_partner_key.attr,
1666 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001667 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001668 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001669 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001670 &dev_attr_min_links.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001671 NULL,
1672};
1673
1674static struct attribute_group bonding_group = {
1675 .name = "bonding",
1676 .attrs = per_bond_attrs,
1677};
1678
1679/*
1680 * Initialize sysfs. This sets up the bonding_masters file in
1681 * /sys/class/net.
1682 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001683int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001684{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001685 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001686
Eric W. Biederman4c224002011-10-12 21:56:25 +00001687 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001688 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001689
1690 ret = netdev_class_create_file(&bn->class_attr_bonding_masters);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001691 /*
1692 * Permit multiple loads of the module by ignoring failures to
1693 * create the bonding_masters sysfs file. Bonding devices
1694 * created by second or subsequent loads of the module will
1695 * not be listed in, or controllable by, bonding_masters, but
1696 * will have the usual "bonding" sysfs directory.
1697 *
1698 * This is done to preserve backwards compatibility for
1699 * initscripts/sysconfig, which load bonding multiple times to
1700 * configure multiple bonding devices.
1701 */
1702 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001703 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001704 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001705 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001706 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001707 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001708 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001709 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001710
1711 return ret;
1712
1713}
1714
1715/*
1716 * Remove /sys/class/net/bonding_masters.
1717 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001718void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001719{
Eric W. Biederman4c224002011-10-12 21:56:25 +00001720 netdev_class_remove_file(&bn->class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001721}
1722
1723/*
1724 * Initialize sysfs for each bond. This sets up and registers
1725 * the 'bondctl' directory for each individual bond under /sys/class/net.
1726 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001727void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001728{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001729 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001730}
1731