blob: d81638c33fdb3f42e6eac70a349db8bf524831dd [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
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080015 * with this program; if not, see <http://www.gnu.org/licenses/>.
Mitch Williamsb76cdba2005-11-09 10:36:41 -080016 *
17 * The full GNU General Public License is included in this distribution in the
18 * file called LICENSE.
19 *
Mitch Williamsb76cdba2005-11-09 10:36:41 -080020 */
Joe Perchesa4aee5c2009-12-13 20:06:07 -080021
22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
Mitch Williamsb76cdba2005-11-09 10:36:41 -080024#include <linux/kernel.h>
25#include <linux/module.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080026#include <linux/device.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040027#include <linux/sched.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080028#include <linux/fs.h>
29#include <linux/types.h>
30#include <linux/string.h>
31#include <linux/netdevice.h>
32#include <linux/inetdevice.h>
33#include <linux/in.h>
34#include <linux/sysfs.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080035#include <linux/ctype.h>
36#include <linux/inet.h>
37#include <linux/rtnetlink.h>
Stephen Hemminger5c5129b2009-06-12 19:02:51 +000038#include <linux/etherdevice.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070039#include <net/net_namespace.h>
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000040#include <net/netns/generic.h>
41#include <linux/nsproxy.h>
Mitch Williamsb76cdba2005-11-09 10:36:41 -080042
Mitch Williamsb76cdba2005-11-09 10:36:41 -080043#include "bonding.h"
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -080044
Stephen Hemminger3d632c32009-06-12 19:02:48 +000045#define to_dev(obj) container_of(obj, struct device, kobj)
Wang Chen454d7c92008-11-12 23:37:49 -080046#define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
Mitch Williamsb76cdba2005-11-09 10:36:41 -080047
Mitch Williamsb76cdba2005-11-09 10:36:41 -080048/*
49 * "show" function for the bond_masters attribute.
50 * The class parameter is ignored.
51 */
Andi Kleen28812fe2010-01-05 12:48:07 +010052static ssize_t bonding_show_bonds(struct class *cls,
53 struct class_attribute *attr,
54 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -080055{
Eric W. Biederman4c224002011-10-12 21:56:25 +000056 struct bond_net *bn =
57 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080058 int res = 0;
59 struct bonding *bond;
60
Stephen Hemminger7e083842009-06-12 19:02:46 +000061 rtnl_lock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080062
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000063 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -080064 if (res > (PAGE_SIZE - IFNAMSIZ)) {
65 /* not enough space for another interface name */
66 if ((PAGE_SIZE - res) > 10)
67 res = PAGE_SIZE - 10;
Wagner Ferencb8843662007-12-06 23:40:30 -080068 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -080069 break;
70 }
Wagner Ferencb8843662007-12-06 23:40:30 -080071 res += sprintf(buf + res, "%s ", bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -080072 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -080073 if (res)
74 buf[res-1] = '\n'; /* eat the leftover space */
Stephen Hemminger7e083842009-06-12 19:02:46 +000075
76 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -080077 return res;
78}
79
Eric W. Biederman4c224002011-10-12 21:56:25 +000080static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname)
Stephen Hemminger373500d2009-06-12 19:02:50 +000081{
82 struct bonding *bond;
83
Eric W. Biedermanec87fd32009-10-29 14:18:26 +000084 list_for_each_entry(bond, &bn->dev_list, bond_list) {
Stephen Hemminger373500d2009-06-12 19:02:50 +000085 if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0)
86 return bond->dev;
87 }
88 return NULL;
89}
90
Mitch Williamsb76cdba2005-11-09 10:36:41 -080091/*
92 * "store" function for the bond_masters attribute. This is what
93 * creates and deletes entire bonds.
94 *
95 * The class parameter is ignored.
96 *
97 */
98
Stephen Hemminger3d632c32009-06-12 19:02:48 +000099static ssize_t bonding_store_bonds(struct class *cls,
Andi Kleen28812fe2010-01-05 12:48:07 +0100100 struct class_attribute *attr,
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000101 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800102{
Eric W. Biederman4c224002011-10-12 21:56:25 +0000103 struct bond_net *bn =
104 container_of(attr, struct bond_net, class_attr_bonding_masters);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800105 char command[IFNAMSIZ + 1] = {0, };
106 char *ifname;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800107 int rv, res = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800108
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800109 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
110 ifname = command + 1;
111 if ((strlen(command) <= 1) ||
112 !dev_valid_name(ifname))
113 goto err_no_cmd;
114
115 if (command[0] == '+') {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800116 pr_info("%s is being created...\n", ifname);
Eric W. Biederman4c224002011-10-12 21:56:25 +0000117 rv = bond_create(bn->net, ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800118 if (rv) {
Phil Oester5f86cad12011-03-14 06:22:06 +0000119 if (rv == -EEXIST)
120 pr_info("%s already exists.\n", ifname);
121 else
122 pr_info("%s creation failed.\n", ifname);
Jay Vosburgh027ea042008-01-17 16:25:02 -0800123 res = rv;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800124 }
Stephen Hemminger373500d2009-06-12 19:02:50 +0000125 } else if (command[0] == '-') {
126 struct net_device *bond_dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800127
Jay Vosburgh027ea042008-01-17 16:25:02 -0800128 rtnl_lock();
Eric W. Biederman4c224002011-10-12 21:56:25 +0000129 bond_dev = bond_get_by_name(bn, ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000130 if (bond_dev) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800131 pr_info("%s is being deleted...\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000132 unregister_netdevice(bond_dev);
133 } else {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800134 pr_err("unable to delete non-existent %s\n", ifname);
Stephen Hemminger373500d2009-06-12 19:02:50 +0000135 res = -ENODEV;
136 }
137 rtnl_unlock();
138 } else
139 goto err_no_cmd;
Jay Vosburgh027ea042008-01-17 16:25:02 -0800140
Stephen Hemminger373500d2009-06-12 19:02:50 +0000141 /* Always return either count or an error. If you return 0, you'll
142 * get called forever, which is bad.
143 */
144 return res;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800145
146err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800147 pr_err("no command found in bonding_masters. Use +ifname or -ifname.\n");
Jay Vosburghc4ebc662008-05-02 17:49:38 -0700148 return -EPERM;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800149}
Stephen Hemminger373500d2009-06-12 19:02:50 +0000150
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800151/* class attribute for bond_masters file. This ends up in /sys/class/net */
Eric W. Biederman4c224002011-10-12 21:56:25 +0000152static const struct class_attribute class_attr_bonding_masters = {
153 .attr = {
154 .name = "bonding_masters",
155 .mode = S_IWUSR | S_IRUGO,
156 },
157 .show = bonding_show_bonds,
158 .store = bonding_store_bonds,
Eric W. Biederman4c224002011-10-12 21:56:25 +0000159};
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800160
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800161/*
162 * Show the slaves in the current bond.
163 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700164static ssize_t bonding_show_slaves(struct device *d,
165 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800166{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700167 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +0200168 struct list_head *iter;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200169 struct slave *slave;
170 int res = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800171
dingtianhong4d1ae5f2013-10-15 16:28:42 +0800172 if (!rtnl_trylock())
173 return restart_syscall();
174
Veaceslav Falico9caff1e2013-09-25 09:20:14 +0200175 bond_for_each_slave(bond, slave, iter) {
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800176 if (res > (PAGE_SIZE - IFNAMSIZ)) {
177 /* not enough space for another interface name */
178 if ((PAGE_SIZE - res) > 10)
179 res = PAGE_SIZE - 10;
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800180 res += sprintf(buf + res, "++more++ ");
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800181 break;
182 }
183 res += sprintf(buf + res, "%s ", slave->dev->name);
184 }
dingtianhong4d1ae5f2013-10-15 16:28:42 +0800185
186 rtnl_unlock();
187
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800188 if (res)
189 buf[res-1] = '\n'; /* eat the leftover space */
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200190
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800191 return res;
192}
193
194/*
Veaceslav Falicod6641cc2013-05-28 01:26:13 +0000195 * Set the slaves in the current bond.
Jiri Pirkof9f35452010-05-18 05:46:39 +0000196 * This is supposed to be only thin wrapper for bond_enslave and bond_release.
197 * All hard work should be done there.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800198 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700199static ssize_t bonding_store_slaves(struct device *d,
200 struct device_attribute *attr,
201 const char *buffer, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800202{
203 char command[IFNAMSIZ + 1] = { 0, };
204 char *ifname;
Jiri Pirkof9f35452010-05-18 05:46:39 +0000205 int res, ret = count;
206 struct net_device *dev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700207 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800208
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000209 if (!rtnl_trylock())
210 return restart_syscall();
Jay Vosburgh027ea042008-01-17 16:25:02 -0800211
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800212 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
213 ifname = command + 1;
214 if ((strlen(command) <= 1) ||
215 !dev_valid_name(ifname))
216 goto err_no_cmd;
217
Jiri Pirkof9f35452010-05-18 05:46:39 +0000218 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
219 if (!dev) {
220 pr_info("%s: Interface %s does not exist!\n",
221 bond->dev->name, ifname);
222 ret = -ENODEV;
223 goto out;
224 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800225
Jiri Pirkof9f35452010-05-18 05:46:39 +0000226 switch (command[0]) {
227 case '+':
228 pr_info("%s: Adding slave %s.\n", bond->dev->name, dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800229 res = bond_enslave(bond->dev, dev);
Jiri Pirkof9f35452010-05-18 05:46:39 +0000230 break;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000231
Jiri Pirkof9f35452010-05-18 05:46:39 +0000232 case '-':
233 pr_info("%s: Removing slave %s.\n", bond->dev->name, dev->name);
234 res = bond_release(bond->dev, dev);
235 break;
236
237 default:
238 goto err_no_cmd;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800239 }
240
Jiri Pirkof9f35452010-05-18 05:46:39 +0000241 if (res)
242 ret = res;
243 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800244
245err_no_cmd:
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800246 pr_err("no command found in slaves file for bond %s. Use +ifname or -ifname.\n",
247 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800248 ret = -EPERM;
249
250out:
Jay Vosburgh027ea042008-01-17 16:25:02 -0800251 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800252 return ret;
253}
254
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000255static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
256 bonding_store_slaves);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800257
258/*
259 * Show and set the bonding mode. The bond interface must be down to
260 * change the mode.
261 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700262static ssize_t bonding_show_mode(struct device *d,
263 struct device_attribute *attr, char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800264{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700265 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov2b3798d2014-01-22 14:53:17 +0100266 struct bond_opt_value *val;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800267
Nikolay Aleksandrov2b3798d2014-01-22 14:53:17 +0100268 val = bond_opt_get_val(BOND_OPT_MODE, bond->params.mode);
269
270 return sprintf(buf, "%s %d\n", val->string, bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800271}
272
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700273static ssize_t bonding_store_mode(struct device *d,
274 struct device_attribute *attr,
275 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800276{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700277 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov2b3798d2014-01-22 14:53:17 +0100278 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800279
Nikolay Aleksandrov2b3798d2014-01-22 14:53:17 +0100280 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_MODE, (char *)buf);
281 if (!ret)
Jiri Pirko72be35f2013-10-18 17:43:34 +0200282 ret = count;
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000283
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800284 return ret;
285}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000286static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
287 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800288
289/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000290 * Show and set the bonding transmit hash method.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800291 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700292static ssize_t bonding_show_xmit_hash(struct device *d,
293 struct device_attribute *attr,
294 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800295{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700296 struct bonding *bond = to_bond(d);
Nikolay Aleksandrova4b32ce2014-01-22 14:53:19 +0100297 struct bond_opt_value *val;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800298
Nikolay Aleksandrova4b32ce2014-01-22 14:53:19 +0100299 val = bond_opt_get_val(BOND_OPT_XMIT_HASH, bond->params.xmit_policy);
300
301 return sprintf(buf, "%s %d\n", val->string, bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800302}
303
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700304static ssize_t bonding_store_xmit_hash(struct device *d,
305 struct device_attribute *attr,
306 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800307{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700308 struct bonding *bond = to_bond(d);
Nikolay Aleksandrova4b32ce2014-01-22 14:53:19 +0100309 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800310
Nikolay Aleksandrova4b32ce2014-01-22 14:53:19 +0100311 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_XMIT_HASH, (char *)buf);
sfeldma@cumulusnetworks.comf70161c2013-12-15 16:42:12 -0800312 if (!ret)
313 ret = count;
314
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800315 return ret;
316}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000317static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
318 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800319
320/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700321 * Show and set arp_validate.
322 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700323static ssize_t bonding_show_arp_validate(struct device *d,
324 struct device_attribute *attr,
325 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700326{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700327 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700328
329 return sprintf(buf, "%s %d\n",
330 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800331 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700332}
333
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700334static ssize_t bonding_store_arp_validate(struct device *d,
335 struct device_attribute *attr,
336 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700337{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700338 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800339 int new_value, ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700340
Jay Vosburghece95f72008-01-17 16:25:01 -0800341 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700342 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800343 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700344 bond->dev->name, buf);
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800345 return -EINVAL;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700346 }
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800347 if (!rtnl_trylock())
348 return restart_syscall();
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700349
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800350 ret = bond_option_arp_validate_set(bond, new_value);
351 if (!ret)
352 ret = count;
353
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200354 rtnl_unlock();
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700355
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200356 return ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700357}
358
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000359static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
360 bonding_store_arp_validate);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200361/*
362 * Show and set arp_all_targets.
363 */
364static ssize_t bonding_show_arp_all_targets(struct device *d,
365 struct device_attribute *attr,
366 char *buf)
367{
368 struct bonding *bond = to_bond(d);
369 int value = bond->params.arp_all_targets;
370
371 return sprintf(buf, "%s %d\n", arp_all_targets_tbl[value].modename,
372 value);
373}
374
375static ssize_t bonding_store_arp_all_targets(struct device *d,
376 struct device_attribute *attr,
377 const char *buf, size_t count)
378{
379 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800380 int new_value, ret;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200381
382 new_value = bond_parse_parm(buf, arp_all_targets_tbl);
383 if (new_value < 0) {
384 pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
385 bond->dev->name, buf);
386 return -EINVAL;
387 }
Veaceslav Falico8599b522013-06-24 11:49:34 +0200388
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800389 if (!rtnl_trylock())
390 return restart_syscall();
Veaceslav Falico8599b522013-06-24 11:49:34 +0200391
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800392 ret = bond_option_arp_all_targets_set(bond, new_value);
393 if (!ret)
394 ret = count;
395
396 rtnl_unlock();
397
398 return ret;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200399}
400
401static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
402 bonding_show_arp_all_targets, bonding_store_arp_all_targets);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700403
404/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700405 * Show and store fail_over_mac. User only allowed to change the
406 * value when there are no slaves.
407 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000408static ssize_t bonding_show_fail_over_mac(struct device *d,
409 struct device_attribute *attr,
410 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700411{
412 struct bonding *bond = to_bond(d);
413
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700414 return sprintf(buf, "%s %d\n",
415 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
416 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700417}
418
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000419static ssize_t bonding_store_fail_over_mac(struct device *d,
420 struct device_attribute *attr,
421 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700422{
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800423 int new_value, ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700424 struct bonding *bond = to_bond(d);
425
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700426 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
427 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800428 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700429 bond->dev->name, buf);
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800430 return -EINVAL;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700431 }
432
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800433 if (!rtnl_trylock())
434 return restart_syscall();
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700435
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800436 ret = bond_option_fail_over_mac_set(bond, new_value);
437 if (!ret)
438 ret = count;
439
dingtianhong9402b742013-07-23 15:25:39 +0800440 rtnl_unlock();
441 return ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700442}
443
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000444static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
445 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700446
447/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800448 * Show and set the arp timer interval. There are two tricky bits
449 * here. First, if ARP monitoring is activated, then we must disable
450 * MII monitoring. Second, if the ARP timer isn't running, we must
451 * start it.
452 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700453static ssize_t bonding_show_arp_interval(struct device *d,
454 struct device_attribute *attr,
455 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800456{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700457 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800458
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800459 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800460}
461
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700462static ssize_t bonding_store_arp_interval(struct device *d,
463 struct device_attribute *attr,
464 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800465{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700466 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com06151db2013-12-12 14:10:24 -0800467 int new_value, ret;
468
469 if (sscanf(buf, "%d", &new_value) != 1) {
470 pr_err("%s: no arp_interval value specified.\n",
471 bond->dev->name);
472 return -EINVAL;
473 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800474
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000475 if (!rtnl_trylock())
476 return restart_syscall();
sfeldma@cumulusnetworks.com06151db2013-12-12 14:10:24 -0800477
478 ret = bond_option_arp_interval_set(bond, new_value);
479 if (!ret)
480 ret = count;
481
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000482 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800483 return ret;
484}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000485static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
486 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800487
488/*
489 * Show and set the arp targets.
490 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700491static ssize_t bonding_show_arp_targets(struct device *d,
492 struct device_attribute *attr,
493 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800494{
495 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700496 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800497
498 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
499 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700500 res += sprintf(buf + res, "%pI4 ",
501 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800502 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800503 if (res)
504 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800505 return res;
506}
507
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700508static ssize_t bonding_store_arp_targets(struct device *d,
509 struct device_attribute *attr,
510 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800511{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700512 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800513 __be32 target;
514 int ret = -EPERM;
515
516 if (!in4_pton(buf + 1, -1, (u8 *)&target, -1, NULL)) {
517 pr_err("%s: invalid ARP target %pI4 specified\n",
518 bond->dev->name, &target);
519 return -EPERM;
520 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800521
dingtianhong4d1ae5f2013-10-15 16:28:42 +0800522 if (!rtnl_trylock())
523 return restart_syscall();
524
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800525 if (buf[0] == '+')
526 ret = bond_option_arp_ip_target_add(bond, target);
527 else if (buf[0] == '-')
528 ret = bond_option_arp_ip_target_rem(bond, target);
529 else
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800530 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
531 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800532
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800533 if (!ret)
534 ret = count;
535
dingtianhong4d1ae5f2013-10-15 16:28:42 +0800536 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800537 return ret;
538}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700539static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800540
541/*
542 * Show and set the up and down delays. These must be multiples of the
543 * MII monitoring value, and are stored internally as the multiplier.
544 * Thus, we must translate to MS for the real world.
545 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700546static ssize_t bonding_show_downdelay(struct device *d,
547 struct device_attribute *attr,
548 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800549{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700550 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800551
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800552 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800553}
554
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700555static ssize_t bonding_store_downdelay(struct device *d,
556 struct device_attribute *attr,
557 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800558{
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800559 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700560 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800561
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800562 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800563 pr_err("%s: no down delay value specified.\n", bond->dev->name);
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800564 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800565 }
566
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800567 if (!rtnl_trylock())
568 return restart_syscall();
569
570 ret = bond_option_downdelay_set(bond, new_value);
571 if (!ret)
572 ret = count;
573
Nikolay Aleksandrovb869ccf2013-11-13 17:07:46 +0100574 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800575 return ret;
576}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000577static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
578 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800579
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700580static ssize_t bonding_show_updelay(struct device *d,
581 struct device_attribute *attr,
582 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800583{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700584 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800585
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800586 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800587
588}
589
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700590static ssize_t bonding_store_updelay(struct device *d,
591 struct device_attribute *attr,
592 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800593{
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800594 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700595 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800596
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800597 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800598 pr_err("%s: no up delay value specified.\n",
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800599 bond->dev->name);
600 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800601 }
602
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800603 if (!rtnl_trylock())
604 return restart_syscall();
605
606 ret = bond_option_updelay_set(bond, new_value);
607 if (!ret)
608 ret = count;
609
Nikolay Aleksandrovb869ccf2013-11-13 17:07:46 +0100610 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800611 return ret;
612}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000613static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
614 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800615
616/*
617 * Show and set the LACP interval. Interface must be down, and the mode
618 * must be set to 802.3ad mode.
619 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700620static ssize_t bonding_show_lacp(struct device *d,
621 struct device_attribute *attr,
622 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800623{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700624 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800625
626 return sprintf(buf, "%s %d\n",
627 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800628 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800629}
630
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700631static ssize_t bonding_store_lacp(struct device *d,
632 struct device_attribute *attr,
633 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800634{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700635 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com998e40bb2014-01-03 14:18:41 -0800636 int new_value, ret;
637
638 new_value = bond_parse_parm(buf, bond_lacp_tbl);
639 if (new_value < 0) {
640 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
641 bond->dev->name, (int)strlen(buf) - 1, buf);
642 return -EINVAL;
643 }
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200644
645 if (!rtnl_trylock())
646 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800647
sfeldma@cumulusnetworks.com998e40bb2014-01-03 14:18:41 -0800648 ret = bond_option_lacp_rate_set(bond, new_value);
649 if (!ret)
650 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800651
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200652 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800653 return ret;
654}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000655static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
656 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800657
stephen hemminger655f8912011-06-22 09:54:39 +0000658static ssize_t bonding_show_min_links(struct device *d,
659 struct device_attribute *attr,
660 char *buf)
661{
662 struct bonding *bond = to_bond(d);
663
664 return sprintf(buf, "%d\n", bond->params.min_links);
665}
666
667static ssize_t bonding_store_min_links(struct device *d,
668 struct device_attribute *attr,
669 const char *buf, size_t count)
670{
671 struct bonding *bond = to_bond(d);
672 int ret;
673 unsigned int new_value;
674
675 ret = kstrtouint(buf, 0, &new_value);
676 if (ret < 0) {
677 pr_err("%s: Ignoring invalid min links value %s.\n",
678 bond->dev->name, buf);
679 return ret;
680 }
681
sfeldma@cumulusnetworks.com7d101002013-12-17 21:30:23 -0800682 if (!rtnl_trylock())
683 return restart_syscall();
684
685 ret = bond_option_min_links_set(bond, new_value);
686 if (!ret)
687 ret = count;
688
689 rtnl_unlock();
690 return ret;
stephen hemminger655f8912011-06-22 09:54:39 +0000691}
692static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
693 bonding_show_min_links, bonding_store_min_links);
694
Jay Vosburghfd989c82008-11-04 17:51:16 -0800695static ssize_t bonding_show_ad_select(struct device *d,
696 struct device_attribute *attr,
697 char *buf)
698{
699 struct bonding *bond = to_bond(d);
700
701 return sprintf(buf, "%s %d\n",
702 ad_select_tbl[bond->params.ad_select].modename,
703 bond->params.ad_select);
704}
705
706
707static ssize_t bonding_store_ad_select(struct device *d,
708 struct device_attribute *attr,
709 const char *buf, size_t count)
710{
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800711 int new_value, ret;
Jay Vosburghfd989c82008-11-04 17:51:16 -0800712 struct bonding *bond = to_bond(d);
713
Jay Vosburghfd989c82008-11-04 17:51:16 -0800714 new_value = bond_parse_parm(buf, ad_select_tbl);
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800715 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800716 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800717 bond->dev->name, (int)strlen(buf) - 1, buf);
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800718 return -EINVAL;
Jay Vosburghfd989c82008-11-04 17:51:16 -0800719 }
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800720
721 if (!rtnl_trylock())
722 return restart_syscall();
723
724 ret = bond_option_ad_select_set(bond, new_value);
725 if (!ret)
726 ret = count;
727
728 rtnl_unlock();
Jay Vosburghfd989c82008-11-04 17:51:16 -0800729 return ret;
730}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000731static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
732 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800733
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800734/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000735 * Show and set the number of peer notifications to send after a failover event.
736 */
737static ssize_t bonding_show_num_peer_notif(struct device *d,
738 struct device_attribute *attr,
739 char *buf)
740{
741 struct bonding *bond = to_bond(d);
742 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
743}
744
745static ssize_t bonding_store_num_peer_notif(struct device *d,
746 struct device_attribute *attr,
747 const char *buf, size_t count)
748{
749 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800750 u8 new_value;
751 int ret;
752
753 ret = kstrtou8(buf, 10, &new_value);
Veaceslav Falico0b238102014-01-06 11:54:40 +0100754 if (ret) {
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800755 pr_err("%s: invalid value %s specified.\n",
756 bond->dev->name, buf);
757 return ret;
758 }
759
760 if (!rtnl_trylock())
761 return restart_syscall();
762
763 ret = bond_option_num_peer_notif_set(bond, new_value);
764 if (!ret)
765 ret = count;
766
767 rtnl_unlock();
768 return ret;
Ben Hutchingsad246c92011-04-26 15:25:52 +0000769}
770static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
771 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
772static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
773 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
774
775/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800776 * Show and set the MII monitor interval. There are two tricky bits
777 * here. First, if MII monitoring is activated, then we must disable
778 * ARP monitoring. Second, if the timer isn't running, we must
779 * start it.
780 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700781static ssize_t bonding_show_miimon(struct device *d,
782 struct device_attribute *attr,
783 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800784{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700785 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800786
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800787 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800788}
789
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700790static ssize_t bonding_store_miimon(struct device *d,
791 struct device_attribute *attr,
792 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800793{
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800794 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700795 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800796
797 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800798 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800799 bond->dev->name);
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800800 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800801 }
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800802
803 if (!rtnl_trylock())
804 return restart_syscall();
805
806 ret = bond_option_miimon_set(bond, new_value);
807 if (!ret)
808 ret = count;
809
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000810 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800811 return ret;
812}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000813static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
814 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800815
816/*
817 * Show and set the primary slave. The store function is much
818 * simpler than bonding_store_slaves function because it only needs to
819 * handle one interface name.
820 * The bond must be a mode that supports a primary for this be
821 * set.
822 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700823static ssize_t bonding_show_primary(struct device *d,
824 struct device_attribute *attr,
825 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800826{
827 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700828 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800829
830 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800831 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800832
833 return count;
834}
835
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700836static ssize_t bonding_store_primary(struct device *d,
837 struct device_attribute *attr,
838 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800839{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700840 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000841 char ifname[IFNAMSIZ];
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800842 int ret;
843
844 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
845 if (ifname[0] == '\n')
846 ifname[0] = '\0';
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800847
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000848 if (!rtnl_trylock())
849 return restart_syscall();
Jay Vosburghe934dd72008-01-17 16:24:57 -0800850
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800851 ret = bond_option_primary_set(bond, ifname);
852 if (!ret)
853 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800854
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700855 rtnl_unlock();
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800856 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800857}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000858static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
859 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800860
861/*
Jiri Pirkoa5499522009-09-25 03:28:09 +0000862 * Show and set the primary_reselect flag.
863 */
864static ssize_t bonding_show_primary_reselect(struct device *d,
865 struct device_attribute *attr,
866 char *buf)
867{
868 struct bonding *bond = to_bond(d);
869
870 return sprintf(buf, "%s %d\n",
871 pri_reselect_tbl[bond->params.primary_reselect].modename,
872 bond->params.primary_reselect);
873}
874
875static ssize_t bonding_store_primary_reselect(struct device *d,
876 struct device_attribute *attr,
877 const char *buf, size_t count)
878{
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800879 int new_value, ret;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000880 struct bonding *bond = to_bond(d);
881
Jiri Pirkoa5499522009-09-25 03:28:09 +0000882 new_value = bond_parse_parm(buf, pri_reselect_tbl);
883 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800884 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +0000885 bond->dev->name,
886 (int) strlen(buf) - 1, buf);
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800887 return -EINVAL;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000888 }
889
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800890 if (!rtnl_trylock())
891 return restart_syscall();
Jiri Pirkoa5499522009-09-25 03:28:09 +0000892
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800893 ret = bond_option_primary_reselect_set(bond, new_value);
894 if (!ret)
895 ret = count;
896
Jiri Pirkoa5499522009-09-25 03:28:09 +0000897 rtnl_unlock();
898 return ret;
899}
900static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
901 bonding_show_primary_reselect,
902 bonding_store_primary_reselect);
903
904/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800905 * Show and set the use_carrier flag.
906 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700907static ssize_t bonding_show_carrier(struct device *d,
908 struct device_attribute *attr,
909 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800910{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700911 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800912
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800913 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800914}
915
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700916static ssize_t bonding_store_carrier(struct device *d,
917 struct device_attribute *attr,
918 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800919{
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800920 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700921 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800922
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800923 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800924 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800925 bond->dev->name);
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800926 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800927 }
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800928
929 if (!rtnl_trylock())
930 return restart_syscall();
931
932 ret = bond_option_use_carrier_set(bond, new_value);
933 if (!ret)
934 ret = count;
935
936 rtnl_unlock();
Jiri Pirko672bda32011-01-25 11:03:25 +0000937 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800938}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000939static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
940 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800941
942
943/*
944 * Show and set currently active_slave.
945 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700946static ssize_t bonding_show_active_slave(struct device *d,
947 struct device_attribute *attr,
948 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800949{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700950 struct bonding *bond = to_bond(d);
Jiri Pirko752d48b2013-10-18 17:43:37 +0200951 struct net_device *slave_dev;
Wagner Ferenc16cd0162007-12-06 23:40:29 -0800952 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800953
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200954 rcu_read_lock();
Jiri Pirko752d48b2013-10-18 17:43:37 +0200955 slave_dev = bond_option_active_slave_get_rcu(bond);
956 if (slave_dev)
957 count = sprintf(buf, "%s\n", slave_dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200958 rcu_read_unlock();
959
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800960 return count;
961}
962
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700963static ssize_t bonding_store_active_slave(struct device *d,
964 struct device_attribute *attr,
965 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800966{
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200967 int ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700968 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000969 char ifname[IFNAMSIZ];
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200970 struct net_device *dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800971
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000972 if (!rtnl_trylock())
973 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +0000974
nikolay@redhat.comc84e1592012-10-31 06:03:52 +0000975 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000976 if (!strlen(ifname) || buf[0] == '\n') {
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200977 dev = NULL;
978 } else {
979 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
980 if (!dev) {
981 ret = -ENODEV;
982 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800983 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800984 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000985
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200986 ret = bond_option_active_slave_set(bond, dev);
987 if (!ret)
988 ret = count;
Neil Hormane843fa52010-10-13 16:01:50 +0000989
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200990 out:
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700991 rtnl_unlock();
992
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200993 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800994
995}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000996static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
997 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800998
999
1000/*
1001 * Show link status of the bond interface.
1002 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001003static ssize_t bonding_show_mii_status(struct device *d,
1004 struct device_attribute *attr,
1005 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001006{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001007 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001008
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001009 return sprintf(buf, "%s\n", bond->curr_active_slave ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001010}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001011static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001012
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001013/*
1014 * Show current 802.3ad aggregator ID.
1015 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001016static ssize_t bonding_show_ad_aggregator(struct device *d,
1017 struct device_attribute *attr,
1018 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001019{
1020 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001021 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001022
1023 if (bond->params.mode == BOND_MODE_8023AD) {
1024 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001025 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001026 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001027 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001028 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001029
1030 return count;
1031}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001032static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001033
1034
1035/*
1036 * Show number of active 802.3ad ports.
1037 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001038static ssize_t bonding_show_ad_num_ports(struct device *d,
1039 struct device_attribute *attr,
1040 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001041{
1042 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001043 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001044
1045 if (bond->params.mode == BOND_MODE_8023AD) {
1046 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001047 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001048 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001049 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001050 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001051
1052 return count;
1053}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001054static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001055
1056
1057/*
1058 * Show current 802.3ad actor key.
1059 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001060static ssize_t bonding_show_ad_actor_key(struct device *d,
1061 struct device_attribute *attr,
1062 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001063{
1064 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001065 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001066
1067 if (bond->params.mode == BOND_MODE_8023AD) {
1068 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001069 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001070 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001071 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001072 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001073
1074 return count;
1075}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001076static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001077
1078
1079/*
1080 * Show current 802.3ad partner key.
1081 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001082static ssize_t bonding_show_ad_partner_key(struct device *d,
1083 struct device_attribute *attr,
1084 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001085{
1086 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001087 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001088
1089 if (bond->params.mode == BOND_MODE_8023AD) {
1090 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001091 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001092 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001093 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001094 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001095
1096 return count;
1097}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001098static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001099
1100
1101/*
1102 * Show current 802.3ad partner mac.
1103 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001104static ssize_t bonding_show_ad_partner_mac(struct device *d,
1105 struct device_attribute *attr,
1106 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001107{
1108 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001109 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001110
1111 if (bond->params.mode == BOND_MODE_8023AD) {
1112 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001113 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001114 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001115 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001116
1117 return count;
1118}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001119static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001120
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001121/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001122 * Show the queue_ids of the slaves in the current bond.
1123 */
1124static ssize_t bonding_show_queue_id(struct device *d,
1125 struct device_attribute *attr,
1126 char *buf)
1127{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001128 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001129 struct list_head *iter;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001130 struct slave *slave;
1131 int res = 0;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001132
1133 if (!rtnl_trylock())
1134 return restart_syscall();
1135
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001136 bond_for_each_slave(bond, slave, iter) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001137 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1138 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001139 if ((PAGE_SIZE - res) > 10)
1140 res = PAGE_SIZE - 10;
1141 res += sprintf(buf + res, "++more++ ");
1142 break;
1143 }
1144 res += sprintf(buf + res, "%s:%d ",
1145 slave->dev->name, slave->queue_id);
1146 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001147 if (res)
1148 buf[res-1] = '\n'; /* eat the leftover space */
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001149
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001150 rtnl_unlock();
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001151
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001152 return res;
1153}
1154
1155/*
1156 * Set the queue_ids of the slaves in the current bond. The bond
1157 * interface must be enslaved for this to work.
1158 */
1159static ssize_t bonding_store_queue_id(struct device *d,
1160 struct device_attribute *attr,
1161 const char *buffer, size_t count)
1162{
1163 struct slave *slave, *update_slave;
1164 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001165 struct list_head *iter;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001166 u16 qid;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001167 int ret = count;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001168 char *delim;
1169 struct net_device *sdev = NULL;
1170
1171 if (!rtnl_trylock())
1172 return restart_syscall();
1173
1174 /* delim will point to queue id if successful */
1175 delim = strchr(buffer, ':');
1176 if (!delim)
1177 goto err_no_cmd;
1178
1179 /*
1180 * Terminate string that points to device name and bump it
1181 * up one, so we can read the queue id there.
1182 */
1183 *delim = '\0';
1184 if (sscanf(++delim, "%hd\n", &qid) != 1)
1185 goto err_no_cmd;
1186
1187 /* Check buffer length, valid ifname and queue id */
1188 if (strlen(buffer) > IFNAMSIZ ||
1189 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001190 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001191 goto err_no_cmd;
1192
1193 /* Get the pointer to that interface if it exists */
1194 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1195 if (!sdev)
1196 goto err_no_cmd;
1197
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001198 /* Search for thes slave and check for duplicate qids */
1199 update_slave = NULL;
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001200 bond_for_each_slave(bond, slave, iter) {
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001201 if (sdev == slave->dev)
1202 /*
1203 * We don't need to check the matching
1204 * slave for dups, since we're overwriting it
1205 */
1206 update_slave = slave;
1207 else if (qid && qid == slave->queue_id) {
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001208 goto err_no_cmd;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001209 }
1210 }
1211
1212 if (!update_slave)
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001213 goto err_no_cmd;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001214
1215 /* Actually set the qids for the slave */
1216 update_slave->queue_id = qid;
1217
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001218out:
1219 rtnl_unlock();
1220 return ret;
1221
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001222err_no_cmd:
1223 pr_info("invalid input for queue_id set for %s.\n",
1224 bond->dev->name);
1225 ret = -EPERM;
1226 goto out;
1227}
1228
1229static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1230 bonding_store_queue_id);
1231
1232
1233/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001234 * Show and set the all_slaves_active flag.
1235 */
1236static ssize_t bonding_show_slaves_active(struct device *d,
1237 struct device_attribute *attr,
1238 char *buf)
1239{
1240 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001241
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001242 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1243}
1244
1245static ssize_t bonding_store_slaves_active(struct device *d,
1246 struct device_attribute *attr,
1247 const char *buf, size_t count)
1248{
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001249 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001250 int new_value, ret;
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001251
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001252 if (sscanf(buf, "%d", &new_value) != 1) {
1253 pr_err("%s: no all_slaves_active value specified.\n",
1254 bond->dev->name);
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001255 return -EINVAL;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001256 }
1257
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001258 if (!rtnl_trylock())
1259 return restart_syscall();
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001260
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001261 ret = bond_option_all_slaves_active_set(bond, new_value);
1262 if (!ret)
1263 ret = count;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001264
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001265 rtnl_unlock();
Jiri Pirko672bda32011-01-25 11:03:25 +00001266 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001267}
1268static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1269 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001270
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001271/*
1272 * Show and set the number of IGMP membership reports to send on link failure
1273 */
1274static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001275 struct device_attribute *attr,
1276 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001277{
1278 struct bonding *bond = to_bond(d);
1279
1280 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1281}
1282
1283static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001284 struct device_attribute *attr,
1285 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001286{
1287 int new_value, ret = count;
1288 struct bonding *bond = to_bond(d);
1289
1290 if (sscanf(buf, "%d", &new_value) != 1) {
1291 pr_err("%s: no resend_igmp value specified.\n",
1292 bond->dev->name);
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001293 return -EINVAL;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001294 }
1295
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001296 if (!rtnl_trylock())
1297 return restart_syscall();
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001298
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001299 ret = bond_option_resend_igmp_set(bond, new_value);
1300 if (!ret)
1301 ret = count;
1302
1303 rtnl_unlock();
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001304 return ret;
1305}
1306
1307static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1308 bonding_show_resend_igmp, bonding_store_resend_igmp);
1309
Neil Horman7eacd032013-09-13 11:05:33 -04001310
1311static ssize_t bonding_show_lp_interval(struct device *d,
1312 struct device_attribute *attr,
1313 char *buf)
1314{
1315 struct bonding *bond = to_bond(d);
1316 return sprintf(buf, "%d\n", bond->params.lp_interval);
1317}
1318
1319static ssize_t bonding_store_lp_interval(struct device *d,
1320 struct device_attribute *attr,
1321 const char *buf, size_t count)
1322{
1323 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001324 int new_value, ret;
Neil Horman7eacd032013-09-13 11:05:33 -04001325
1326 if (sscanf(buf, "%d", &new_value) != 1) {
1327 pr_err("%s: no lp interval value specified.\n",
1328 bond->dev->name);
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001329 return -EINVAL;
Neil Horman7eacd032013-09-13 11:05:33 -04001330 }
1331
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001332 if (!rtnl_trylock())
1333 return restart_syscall();
Neil Horman7eacd032013-09-13 11:05:33 -04001334
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001335 ret = bond_option_lp_interval_set(bond, new_value);
1336 if (!ret)
1337 ret = count;
1338
1339 rtnl_unlock();
Neil Horman7eacd032013-09-13 11:05:33 -04001340 return ret;
1341}
1342
1343static DEVICE_ATTR(lp_interval, S_IRUGO | S_IWUSR,
1344 bonding_show_lp_interval, bonding_store_lp_interval);
1345
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001346static ssize_t bonding_show_packets_per_slave(struct device *d,
1347 struct device_attribute *attr,
1348 char *buf)
1349{
1350 struct bonding *bond = to_bond(d);
Nikolay Aleksandrova752a8b2013-12-05 11:36:58 +01001351 unsigned int packets_per_slave = bond->params.packets_per_slave;
Nikolay Aleksandrova752a8b2013-12-05 11:36:58 +01001352 return sprintf(buf, "%u\n", packets_per_slave);
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001353}
1354
1355static ssize_t bonding_store_packets_per_slave(struct device *d,
1356 struct device_attribute *attr,
1357 const char *buf, size_t count)
1358{
1359 struct bonding *bond = to_bond(d);
Nikolay Aleksandrovaa59d852014-01-22 14:53:18 +01001360 int ret;
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001361
Nikolay Aleksandrovaa59d852014-01-22 14:53:18 +01001362 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_PACKETS_PER_SLAVE,
1363 (char *)buf);
sfeldma@cumulusnetworks.comc13ab3f2013-12-17 21:30:37 -08001364 if (!ret)
1365 ret = count;
1366
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001367 return ret;
1368}
1369
1370static DEVICE_ATTR(packets_per_slave, S_IRUGO | S_IWUSR,
1371 bonding_show_packets_per_slave,
1372 bonding_store_packets_per_slave);
1373
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001374static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001375 &dev_attr_slaves.attr,
1376 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001377 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001378 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001379 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001380 &dev_attr_arp_interval.attr,
1381 &dev_attr_arp_ip_target.attr,
1382 &dev_attr_downdelay.attr,
1383 &dev_attr_updelay.attr,
1384 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001385 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001386 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001387 &dev_attr_num_grat_arp.attr,
1388 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001389 &dev_attr_miimon.attr,
1390 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001391 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001392 &dev_attr_use_carrier.attr,
1393 &dev_attr_active_slave.attr,
1394 &dev_attr_mii_status.attr,
1395 &dev_attr_ad_aggregator.attr,
1396 &dev_attr_ad_num_ports.attr,
1397 &dev_attr_ad_actor_key.attr,
1398 &dev_attr_ad_partner_key.attr,
1399 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001400 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001401 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001402 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001403 &dev_attr_min_links.attr,
Neil Horman7eacd032013-09-13 11:05:33 -04001404 &dev_attr_lp_interval.attr,
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001405 &dev_attr_packets_per_slave.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001406 NULL,
1407};
1408
1409static struct attribute_group bonding_group = {
1410 .name = "bonding",
1411 .attrs = per_bond_attrs,
1412};
1413
1414/*
1415 * Initialize sysfs. This sets up the bonding_masters file in
1416 * /sys/class/net.
1417 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001418int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001419{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001420 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001421
Eric W. Biederman4c224002011-10-12 21:56:25 +00001422 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001423 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001424
Tejun Heo58292cbe2013-09-11 22:29:04 -04001425 ret = netdev_class_create_file_ns(&bn->class_attr_bonding_masters,
1426 bn->net);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001427 /*
1428 * Permit multiple loads of the module by ignoring failures to
1429 * create the bonding_masters sysfs file. Bonding devices
1430 * created by second or subsequent loads of the module will
1431 * not be listed in, or controllable by, bonding_masters, but
1432 * will have the usual "bonding" sysfs directory.
1433 *
1434 * This is done to preserve backwards compatibility for
1435 * initscripts/sysconfig, which load bonding multiple times to
1436 * configure multiple bonding devices.
1437 */
1438 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001439 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001440 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001441 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001442 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001443 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001444 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001445 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001446
1447 return ret;
1448
1449}
1450
1451/*
1452 * Remove /sys/class/net/bonding_masters.
1453 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001454void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001455{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001456 netdev_class_remove_file_ns(&bn->class_attr_bonding_masters, bn->net);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001457}
1458
1459/*
1460 * Initialize sysfs for each bond. This sets up and registers
1461 * the 'bondctl' directory for each individual bond under /sys/class/net.
1462 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001463void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001464{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001465 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001466}
1467