blob: c083e9a66ece736493295ba6044ea2377b446d11 [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);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800266
267 return sprintf(buf, "%s %d\n",
268 bond_mode_tbl[bond->params.mode].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800269 bond->params.mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800270}
271
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700272static ssize_t bonding_store_mode(struct device *d,
273 struct device_attribute *attr,
274 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800275{
Jiri Pirko72be35f2013-10-18 17:43:34 +0200276 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700277 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800278
Jay Vosburghece95f72008-01-17 16:25:01 -0800279 new_value = bond_parse_parm(buf, bond_mode_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800280 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800281 pr_err("%s: Ignoring invalid mode value %.*s.\n",
282 bond->dev->name, (int)strlen(buf) - 1, buf);
Jiri Pirko72be35f2013-10-18 17:43:34 +0200283 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800284 }
Jiri Pirko72be35f2013-10-18 17:43:34 +0200285 if (!rtnl_trylock())
286 return restart_syscall();
287
288 ret = bond_option_mode_set(bond, new_value);
289 if (!ret) {
290 pr_info("%s: setting mode to %s (%d).\n",
291 bond->dev->name, bond_mode_tbl[new_value].modename,
292 new_value);
293 ret = count;
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000294 }
Andy Gospodarekc5cb0022010-07-28 15:13:56 +0000295
nikolay@redhat.comea6836d2013-05-18 01:18:28 +0000296 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800297 return ret;
298}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000299static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
300 bonding_show_mode, bonding_store_mode);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800301
302/*
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000303 * Show and set the bonding transmit hash method.
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800304 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700305static ssize_t bonding_show_xmit_hash(struct device *d,
306 struct device_attribute *attr,
307 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800308{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700309 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800310
Wagner Ferenc8e4b9322007-12-06 23:40:32 -0800311 return sprintf(buf, "%s %d\n",
312 xmit_hashtype_tbl[bond->params.xmit_policy].modename,
313 bond->params.xmit_policy);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800314}
315
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700316static ssize_t bonding_store_xmit_hash(struct device *d,
317 struct device_attribute *attr,
318 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800319{
sfeldma@cumulusnetworks.comf70161c2013-12-15 16:42:12 -0800320 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700321 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800322
Jay Vosburghece95f72008-01-17 16:25:01 -0800323 new_value = bond_parse_parm(buf, xmit_hashtype_tbl);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800324 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800325 pr_err("%s: Ignoring invalid xmit hash policy value %.*s.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800326 bond->dev->name,
327 (int)strlen(buf) - 1, buf);
sfeldma@cumulusnetworks.comf70161c2013-12-15 16:42:12 -0800328 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800329 }
Nikolay Aleksandrov53edee22013-05-24 00:59:47 +0000330
sfeldma@cumulusnetworks.comf70161c2013-12-15 16:42:12 -0800331 if (!rtnl_trylock())
332 return restart_syscall();
333
334 ret = bond_option_xmit_hash_policy_set(bond, new_value);
335 if (!ret)
336 ret = count;
337
338 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800339 return ret;
340}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000341static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
342 bonding_show_xmit_hash, bonding_store_xmit_hash);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800343
344/*
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700345 * Show and set arp_validate.
346 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700347static ssize_t bonding_show_arp_validate(struct device *d,
348 struct device_attribute *attr,
349 char *buf)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700350{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700351 struct bonding *bond = to_bond(d);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700352
353 return sprintf(buf, "%s %d\n",
354 arp_validate_tbl[bond->params.arp_validate].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800355 bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700356}
357
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700358static ssize_t bonding_store_arp_validate(struct device *d,
359 struct device_attribute *attr,
360 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700361{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700362 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800363 int new_value, ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700364
Jay Vosburghece95f72008-01-17 16:25:01 -0800365 new_value = bond_parse_parm(buf, arp_validate_tbl);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700366 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800367 pr_err("%s: Ignoring invalid arp_validate value %s\n",
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700368 bond->dev->name, buf);
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800369 return -EINVAL;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700370 }
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800371 if (!rtnl_trylock())
372 return restart_syscall();
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700373
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800374 ret = bond_option_arp_validate_set(bond, new_value);
375 if (!ret)
376 ret = count;
377
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200378 rtnl_unlock();
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700379
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200380 return ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700381}
382
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000383static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
384 bonding_store_arp_validate);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200385/*
386 * Show and set arp_all_targets.
387 */
388static ssize_t bonding_show_arp_all_targets(struct device *d,
389 struct device_attribute *attr,
390 char *buf)
391{
392 struct bonding *bond = to_bond(d);
393 int value = bond->params.arp_all_targets;
394
395 return sprintf(buf, "%s %d\n", arp_all_targets_tbl[value].modename,
396 value);
397}
398
399static ssize_t bonding_store_arp_all_targets(struct device *d,
400 struct device_attribute *attr,
401 const char *buf, size_t count)
402{
403 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800404 int new_value, ret;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200405
406 new_value = bond_parse_parm(buf, arp_all_targets_tbl);
407 if (new_value < 0) {
408 pr_err("%s: Ignoring invalid arp_all_targets value %s\n",
409 bond->dev->name, buf);
410 return -EINVAL;
411 }
Veaceslav Falico8599b522013-06-24 11:49:34 +0200412
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800413 if (!rtnl_trylock())
414 return restart_syscall();
Veaceslav Falico8599b522013-06-24 11:49:34 +0200415
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800416 ret = bond_option_arp_all_targets_set(bond, new_value);
417 if (!ret)
418 ret = count;
419
420 rtnl_unlock();
421
422 return ret;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200423}
424
425static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
426 bonding_show_arp_all_targets, bonding_store_arp_all_targets);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700427
428/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700429 * Show and store fail_over_mac. User only allowed to change the
430 * value when there are no slaves.
431 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000432static ssize_t bonding_show_fail_over_mac(struct device *d,
433 struct device_attribute *attr,
434 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700435{
436 struct bonding *bond = to_bond(d);
437
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700438 return sprintf(buf, "%s %d\n",
439 fail_over_mac_tbl[bond->params.fail_over_mac].modename,
440 bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700441}
442
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000443static ssize_t bonding_store_fail_over_mac(struct device *d,
444 struct device_attribute *attr,
445 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700446{
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800447 int new_value, ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700448 struct bonding *bond = to_bond(d);
449
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700450 new_value = bond_parse_parm(buf, fail_over_mac_tbl);
451 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800452 pr_err("%s: Ignoring invalid fail_over_mac value %s.\n",
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700453 bond->dev->name, buf);
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800454 return -EINVAL;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700455 }
456
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800457 if (!rtnl_trylock())
458 return restart_syscall();
Jay Vosburgh3915c1e82008-05-17 21:10:14 -0700459
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800460 ret = bond_option_fail_over_mac_set(bond, new_value);
461 if (!ret)
462 ret = count;
463
dingtianhong9402b742013-07-23 15:25:39 +0800464 rtnl_unlock();
465 return ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700466}
467
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000468static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
469 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700470
471/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800472 * Show and set the arp timer interval. There are two tricky bits
473 * here. First, if ARP monitoring is activated, then we must disable
474 * MII monitoring. Second, if the ARP timer isn't running, we must
475 * start it.
476 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700477static ssize_t bonding_show_arp_interval(struct device *d,
478 struct device_attribute *attr,
479 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800480{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700481 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800482
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800483 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800484}
485
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700486static ssize_t bonding_store_arp_interval(struct device *d,
487 struct device_attribute *attr,
488 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800489{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700490 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com06151db2013-12-12 14:10:24 -0800491 int new_value, ret;
492
493 if (sscanf(buf, "%d", &new_value) != 1) {
494 pr_err("%s: no arp_interval value specified.\n",
495 bond->dev->name);
496 return -EINVAL;
497 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800498
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000499 if (!rtnl_trylock())
500 return restart_syscall();
sfeldma@cumulusnetworks.com06151db2013-12-12 14:10:24 -0800501
502 ret = bond_option_arp_interval_set(bond, new_value);
503 if (!ret)
504 ret = count;
505
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000506 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800507 return ret;
508}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000509static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
510 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800511
512/*
513 * Show and set the arp targets.
514 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700515static ssize_t bonding_show_arp_targets(struct device *d,
516 struct device_attribute *attr,
517 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800518{
519 int i, res = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700520 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800521
522 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
523 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700524 res += sprintf(buf + res, "%pI4 ",
525 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800526 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800527 if (res)
528 buf[res-1] = '\n'; /* eat the leftover space */
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800529 return res;
530}
531
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700532static ssize_t bonding_store_arp_targets(struct device *d,
533 struct device_attribute *attr,
534 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800535{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700536 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800537 __be32 target;
538 int ret = -EPERM;
539
540 if (!in4_pton(buf + 1, -1, (u8 *)&target, -1, NULL)) {
541 pr_err("%s: invalid ARP target %pI4 specified\n",
542 bond->dev->name, &target);
543 return -EPERM;
544 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800545
dingtianhong4d1ae5f2013-10-15 16:28:42 +0800546 if (!rtnl_trylock())
547 return restart_syscall();
548
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800549 if (buf[0] == '+')
550 ret = bond_option_arp_ip_target_add(bond, target);
551 else if (buf[0] == '-')
552 ret = bond_option_arp_ip_target_rem(bond, target);
553 else
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800554 pr_err("no command found in arp_ip_targets file for bond %s. Use +<addr> or -<addr>.\n",
555 bond->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800556
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800557 if (!ret)
558 ret = count;
559
dingtianhong4d1ae5f2013-10-15 16:28:42 +0800560 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800561 return ret;
562}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700563static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800564
565/*
566 * Show and set the up and down delays. These must be multiples of the
567 * MII monitoring value, and are stored internally as the multiplier.
568 * Thus, we must translate to MS for the real world.
569 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700570static ssize_t bonding_show_downdelay(struct device *d,
571 struct device_attribute *attr,
572 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800573{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700574 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800575
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800576 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800577}
578
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700579static ssize_t bonding_store_downdelay(struct device *d,
580 struct device_attribute *attr,
581 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800582{
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800583 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700584 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800585
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800586 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800587 pr_err("%s: no down delay value specified.\n", bond->dev->name);
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800588 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800589 }
590
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800591 if (!rtnl_trylock())
592 return restart_syscall();
593
594 ret = bond_option_downdelay_set(bond, new_value);
595 if (!ret)
596 ret = count;
597
Nikolay Aleksandrovb869ccf2013-11-13 17:07:46 +0100598 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800599 return ret;
600}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000601static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
602 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800603
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700604static ssize_t bonding_show_updelay(struct device *d,
605 struct device_attribute *attr,
606 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800607{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700608 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800609
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800610 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800611
612}
613
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700614static ssize_t bonding_store_updelay(struct device *d,
615 struct device_attribute *attr,
616 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800617{
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800618 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700619 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800620
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800621 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800622 pr_err("%s: no up delay value specified.\n",
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800623 bond->dev->name);
624 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800625 }
626
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800627 if (!rtnl_trylock())
628 return restart_syscall();
629
630 ret = bond_option_updelay_set(bond, new_value);
631 if (!ret)
632 ret = count;
633
Nikolay Aleksandrovb869ccf2013-11-13 17:07:46 +0100634 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800635 return ret;
636}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000637static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
638 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800639
640/*
641 * Show and set the LACP interval. Interface must be down, and the mode
642 * must be set to 802.3ad mode.
643 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700644static ssize_t bonding_show_lacp(struct device *d,
645 struct device_attribute *attr,
646 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800647{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700648 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800649
650 return sprintf(buf, "%s %d\n",
651 bond_lacp_tbl[bond->params.lacp_fast].modename,
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800652 bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800653}
654
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700655static ssize_t bonding_store_lacp(struct device *d,
656 struct device_attribute *attr,
657 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800658{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700659 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com998e40bb2014-01-03 14:18:41 -0800660 int new_value, ret;
661
662 new_value = bond_parse_parm(buf, bond_lacp_tbl);
663 if (new_value < 0) {
664 pr_err("%s: Ignoring invalid LACP rate value %.*s.\n",
665 bond->dev->name, (int)strlen(buf) - 1, buf);
666 return -EINVAL;
667 }
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200668
669 if (!rtnl_trylock())
670 return restart_syscall();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800671
sfeldma@cumulusnetworks.com998e40bb2014-01-03 14:18:41 -0800672 ret = bond_option_lacp_rate_set(bond, new_value);
673 if (!ret)
674 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800675
nikolay@redhat.comc5093162013-09-02 13:51:40 +0200676 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800677 return ret;
678}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000679static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
680 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800681
stephen hemminger655f8912011-06-22 09:54:39 +0000682static ssize_t bonding_show_min_links(struct device *d,
683 struct device_attribute *attr,
684 char *buf)
685{
686 struct bonding *bond = to_bond(d);
687
688 return sprintf(buf, "%d\n", bond->params.min_links);
689}
690
691static ssize_t bonding_store_min_links(struct device *d,
692 struct device_attribute *attr,
693 const char *buf, size_t count)
694{
695 struct bonding *bond = to_bond(d);
696 int ret;
697 unsigned int new_value;
698
699 ret = kstrtouint(buf, 0, &new_value);
700 if (ret < 0) {
701 pr_err("%s: Ignoring invalid min links value %s.\n",
702 bond->dev->name, buf);
703 return ret;
704 }
705
sfeldma@cumulusnetworks.com7d101002013-12-17 21:30:23 -0800706 if (!rtnl_trylock())
707 return restart_syscall();
708
709 ret = bond_option_min_links_set(bond, new_value);
710 if (!ret)
711 ret = count;
712
713 rtnl_unlock();
714 return ret;
stephen hemminger655f8912011-06-22 09:54:39 +0000715}
716static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
717 bonding_show_min_links, bonding_store_min_links);
718
Jay Vosburghfd989c82008-11-04 17:51:16 -0800719static ssize_t bonding_show_ad_select(struct device *d,
720 struct device_attribute *attr,
721 char *buf)
722{
723 struct bonding *bond = to_bond(d);
724
725 return sprintf(buf, "%s %d\n",
726 ad_select_tbl[bond->params.ad_select].modename,
727 bond->params.ad_select);
728}
729
730
731static ssize_t bonding_store_ad_select(struct device *d,
732 struct device_attribute *attr,
733 const char *buf, size_t count)
734{
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800735 int new_value, ret;
Jay Vosburghfd989c82008-11-04 17:51:16 -0800736 struct bonding *bond = to_bond(d);
737
Jay Vosburghfd989c82008-11-04 17:51:16 -0800738 new_value = bond_parse_parm(buf, ad_select_tbl);
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800739 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800740 pr_err("%s: Ignoring invalid ad_select value %.*s.\n",
Jay Vosburghfd989c82008-11-04 17:51:16 -0800741 bond->dev->name, (int)strlen(buf) - 1, buf);
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800742 return -EINVAL;
Jay Vosburghfd989c82008-11-04 17:51:16 -0800743 }
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800744
745 if (!rtnl_trylock())
746 return restart_syscall();
747
748 ret = bond_option_ad_select_set(bond, new_value);
749 if (!ret)
750 ret = count;
751
752 rtnl_unlock();
Jay Vosburghfd989c82008-11-04 17:51:16 -0800753 return ret;
754}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000755static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
756 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800757
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800758/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000759 * Show and set the number of peer notifications to send after a failover event.
760 */
761static ssize_t bonding_show_num_peer_notif(struct device *d,
762 struct device_attribute *attr,
763 char *buf)
764{
765 struct bonding *bond = to_bond(d);
766 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
767}
768
769static ssize_t bonding_store_num_peer_notif(struct device *d,
770 struct device_attribute *attr,
771 const char *buf, size_t count)
772{
773 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800774 u8 new_value;
775 int ret;
776
777 ret = kstrtou8(buf, 10, &new_value);
Veaceslav Falico0b238102014-01-06 11:54:40 +0100778 if (ret) {
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800779 pr_err("%s: invalid value %s specified.\n",
780 bond->dev->name, buf);
781 return ret;
782 }
783
784 if (!rtnl_trylock())
785 return restart_syscall();
786
787 ret = bond_option_num_peer_notif_set(bond, new_value);
788 if (!ret)
789 ret = count;
790
791 rtnl_unlock();
792 return ret;
Ben Hutchingsad246c92011-04-26 15:25:52 +0000793}
794static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
795 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
796static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
797 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
798
799/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800800 * Show and set the MII monitor interval. There are two tricky bits
801 * here. First, if MII monitoring is activated, then we must disable
802 * ARP monitoring. Second, if the timer isn't running, we must
803 * start it.
804 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700805static ssize_t bonding_show_miimon(struct device *d,
806 struct device_attribute *attr,
807 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800808{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700809 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800810
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800811 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800812}
813
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700814static ssize_t bonding_store_miimon(struct device *d,
815 struct device_attribute *attr,
816 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800817{
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800818 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700819 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800820
821 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800822 pr_err("%s: no miimon value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800823 bond->dev->name);
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800824 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800825 }
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800826
827 if (!rtnl_trylock())
828 return restart_syscall();
829
830 ret = bond_option_miimon_set(bond, new_value);
831 if (!ret)
832 ret = count;
833
nikolay@redhat.comfbb0c412012-11-29 01:31:31 +0000834 rtnl_unlock();
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800835 return ret;
836}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000837static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
838 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800839
840/*
841 * Show and set the primary slave. The store function is much
842 * simpler than bonding_store_slaves function because it only needs to
843 * handle one interface name.
844 * The bond must be a mode that supports a primary for this be
845 * set.
846 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700847static ssize_t bonding_show_primary(struct device *d,
848 struct device_attribute *attr,
849 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800850{
851 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700852 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800853
854 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800855 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800856
857 return count;
858}
859
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700860static ssize_t bonding_store_primary(struct device *d,
861 struct device_attribute *attr,
862 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800863{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700864 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000865 char ifname[IFNAMSIZ];
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800866 int ret;
867
868 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
869 if (ifname[0] == '\n')
870 ifname[0] = '\0';
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800871
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000872 if (!rtnl_trylock())
873 return restart_syscall();
Jay Vosburghe934dd72008-01-17 16:24:57 -0800874
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800875 ret = bond_option_primary_set(bond, ifname);
876 if (!ret)
877 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800878
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700879 rtnl_unlock();
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800880 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800881}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000882static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
883 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800884
885/*
Jiri Pirkoa5499522009-09-25 03:28:09 +0000886 * Show and set the primary_reselect flag.
887 */
888static ssize_t bonding_show_primary_reselect(struct device *d,
889 struct device_attribute *attr,
890 char *buf)
891{
892 struct bonding *bond = to_bond(d);
893
894 return sprintf(buf, "%s %d\n",
895 pri_reselect_tbl[bond->params.primary_reselect].modename,
896 bond->params.primary_reselect);
897}
898
899static ssize_t bonding_store_primary_reselect(struct device *d,
900 struct device_attribute *attr,
901 const char *buf, size_t count)
902{
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800903 int new_value, ret;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000904 struct bonding *bond = to_bond(d);
905
Jiri Pirkoa5499522009-09-25 03:28:09 +0000906 new_value = bond_parse_parm(buf, pri_reselect_tbl);
907 if (new_value < 0) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800908 pr_err("%s: Ignoring invalid primary_reselect value %.*s.\n",
Jiri Pirkoa5499522009-09-25 03:28:09 +0000909 bond->dev->name,
910 (int) strlen(buf) - 1, buf);
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800911 return -EINVAL;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000912 }
913
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800914 if (!rtnl_trylock())
915 return restart_syscall();
Jiri Pirkoa5499522009-09-25 03:28:09 +0000916
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800917 ret = bond_option_primary_reselect_set(bond, new_value);
918 if (!ret)
919 ret = count;
920
Jiri Pirkoa5499522009-09-25 03:28:09 +0000921 rtnl_unlock();
922 return ret;
923}
924static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
925 bonding_show_primary_reselect,
926 bonding_store_primary_reselect);
927
928/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800929 * Show and set the use_carrier flag.
930 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700931static ssize_t bonding_show_carrier(struct device *d,
932 struct device_attribute *attr,
933 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800934{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700935 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800936
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800937 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800938}
939
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700940static ssize_t bonding_store_carrier(struct device *d,
941 struct device_attribute *attr,
942 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800943{
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800944 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700945 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800946
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800947 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800948 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800949 bond->dev->name);
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800950 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800951 }
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800952
953 if (!rtnl_trylock())
954 return restart_syscall();
955
956 ret = bond_option_use_carrier_set(bond, new_value);
957 if (!ret)
958 ret = count;
959
960 rtnl_unlock();
Jiri Pirko672bda32011-01-25 11:03:25 +0000961 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800962}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000963static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
964 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800965
966
967/*
968 * Show and set currently active_slave.
969 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700970static ssize_t bonding_show_active_slave(struct device *d,
971 struct device_attribute *attr,
972 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800973{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700974 struct bonding *bond = to_bond(d);
Jiri Pirko752d48b2013-10-18 17:43:37 +0200975 struct net_device *slave_dev;
Wagner Ferenc16cd0162007-12-06 23:40:29 -0800976 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800977
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200978 rcu_read_lock();
Jiri Pirko752d48b2013-10-18 17:43:37 +0200979 slave_dev = bond_option_active_slave_get_rcu(bond);
980 if (slave_dev)
981 count = sprintf(buf, "%s\n", slave_dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200982 rcu_read_unlock();
983
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800984 return count;
985}
986
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700987static ssize_t bonding_store_active_slave(struct device *d,
988 struct device_attribute *attr,
989 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800990{
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200991 int ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700992 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000993 char ifname[IFNAMSIZ];
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200994 struct net_device *dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800995
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000996 if (!rtnl_trylock())
997 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +0000998
nikolay@redhat.comc84e1592012-10-31 06:03:52 +0000999 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001000 if (!strlen(ifname) || buf[0] == '\n') {
Jiri Pirkod9e32b22013-10-18 17:43:35 +02001001 dev = NULL;
1002 } else {
1003 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
1004 if (!dev) {
1005 ret = -ENODEV;
1006 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001007 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001008 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +00001009
Jiri Pirkod9e32b22013-10-18 17:43:35 +02001010 ret = bond_option_active_slave_set(bond, dev);
1011 if (!ret)
1012 ret = count;
Neil Hormane843fa52010-10-13 16:01:50 +00001013
Jiri Pirkod9e32b22013-10-18 17:43:35 +02001014 out:
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001015 rtnl_unlock();
1016
Jiri Pirkod9e32b22013-10-18 17:43:35 +02001017 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001018
1019}
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001020static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
1021 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001022
1023
1024/*
1025 * Show link status of the bond interface.
1026 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001027static ssize_t bonding_show_mii_status(struct device *d,
1028 struct device_attribute *attr,
1029 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001030{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001031 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001032
nikolay@redhat.com278b2082013-08-01 16:54:51 +02001033 return sprintf(buf, "%s\n", bond->curr_active_slave ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001034}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001035static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001036
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001037/*
1038 * Show current 802.3ad aggregator ID.
1039 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001040static ssize_t bonding_show_ad_aggregator(struct device *d,
1041 struct device_attribute *attr,
1042 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001043{
1044 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001045 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001046
1047 if (bond->params.mode == BOND_MODE_8023AD) {
1048 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001049 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001050 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001051 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001052 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001053
1054 return count;
1055}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001056static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001057
1058
1059/*
1060 * Show number of active 802.3ad ports.
1061 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001062static ssize_t bonding_show_ad_num_ports(struct device *d,
1063 struct device_attribute *attr,
1064 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001065{
1066 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001067 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001068
1069 if (bond->params.mode == BOND_MODE_8023AD) {
1070 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001071 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001072 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001073 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001074 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001075
1076 return count;
1077}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001078static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001079
1080
1081/*
1082 * Show current 802.3ad actor key.
1083 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001084static ssize_t bonding_show_ad_actor_key(struct device *d,
1085 struct device_attribute *attr,
1086 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001087{
1088 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001089 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001090
1091 if (bond->params.mode == BOND_MODE_8023AD) {
1092 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001093 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001094 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001095 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001096 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001097
1098 return count;
1099}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001100static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001101
1102
1103/*
1104 * Show current 802.3ad partner key.
1105 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001106static ssize_t bonding_show_ad_partner_key(struct device *d,
1107 struct device_attribute *attr,
1108 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001109{
1110 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001111 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001112
1113 if (bond->params.mode == BOND_MODE_8023AD) {
1114 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001115 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +00001116 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001117 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001118 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001119
1120 return count;
1121}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001122static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001123
1124
1125/*
1126 * Show current 802.3ad partner mac.
1127 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001128static ssize_t bonding_show_ad_partner_mac(struct device *d,
1129 struct device_attribute *attr,
1130 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001131{
1132 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001133 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001134
1135 if (bond->params.mode == BOND_MODE_8023AD) {
1136 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +00001137 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -07001138 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001139 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001140
1141 return count;
1142}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001143static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001144
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001145/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001146 * Show the queue_ids of the slaves in the current bond.
1147 */
1148static ssize_t bonding_show_queue_id(struct device *d,
1149 struct device_attribute *attr,
1150 char *buf)
1151{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001152 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001153 struct list_head *iter;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001154 struct slave *slave;
1155 int res = 0;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001156
1157 if (!rtnl_trylock())
1158 return restart_syscall();
1159
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001160 bond_for_each_slave(bond, slave, iter) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -07001161 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
1162 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001163 if ((PAGE_SIZE - res) > 10)
1164 res = PAGE_SIZE - 10;
1165 res += sprintf(buf + res, "++more++ ");
1166 break;
1167 }
1168 res += sprintf(buf + res, "%s:%d ",
1169 slave->dev->name, slave->queue_id);
1170 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001171 if (res)
1172 buf[res-1] = '\n'; /* eat the leftover space */
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001173
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001174 rtnl_unlock();
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001175
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001176 return res;
1177}
1178
1179/*
1180 * Set the queue_ids of the slaves in the current bond. The bond
1181 * interface must be enslaved for this to work.
1182 */
1183static ssize_t bonding_store_queue_id(struct device *d,
1184 struct device_attribute *attr,
1185 const char *buffer, size_t count)
1186{
1187 struct slave *slave, *update_slave;
1188 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001189 struct list_head *iter;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001190 u16 qid;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001191 int ret = count;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001192 char *delim;
1193 struct net_device *sdev = NULL;
1194
1195 if (!rtnl_trylock())
1196 return restart_syscall();
1197
1198 /* delim will point to queue id if successful */
1199 delim = strchr(buffer, ':');
1200 if (!delim)
1201 goto err_no_cmd;
1202
1203 /*
1204 * Terminate string that points to device name and bump it
1205 * up one, so we can read the queue id there.
1206 */
1207 *delim = '\0';
1208 if (sscanf(++delim, "%hd\n", &qid) != 1)
1209 goto err_no_cmd;
1210
1211 /* Check buffer length, valid ifname and queue id */
1212 if (strlen(buffer) > IFNAMSIZ ||
1213 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001214 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001215 goto err_no_cmd;
1216
1217 /* Get the pointer to that interface if it exists */
1218 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1219 if (!sdev)
1220 goto err_no_cmd;
1221
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001222 /* Search for thes slave and check for duplicate qids */
1223 update_slave = NULL;
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001224 bond_for_each_slave(bond, slave, iter) {
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001225 if (sdev == slave->dev)
1226 /*
1227 * We don't need to check the matching
1228 * slave for dups, since we're overwriting it
1229 */
1230 update_slave = slave;
1231 else if (qid && qid == slave->queue_id) {
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001232 goto err_no_cmd;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001233 }
1234 }
1235
1236 if (!update_slave)
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001237 goto err_no_cmd;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001238
1239 /* Actually set the qids for the slave */
1240 update_slave->queue_id = qid;
1241
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001242out:
1243 rtnl_unlock();
1244 return ret;
1245
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001246err_no_cmd:
1247 pr_info("invalid input for queue_id set for %s.\n",
1248 bond->dev->name);
1249 ret = -EPERM;
1250 goto out;
1251}
1252
1253static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1254 bonding_store_queue_id);
1255
1256
1257/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001258 * Show and set the all_slaves_active flag.
1259 */
1260static ssize_t bonding_show_slaves_active(struct device *d,
1261 struct device_attribute *attr,
1262 char *buf)
1263{
1264 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001265
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001266 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1267}
1268
1269static ssize_t bonding_store_slaves_active(struct device *d,
1270 struct device_attribute *attr,
1271 const char *buf, size_t count)
1272{
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001273 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001274 int new_value, ret;
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001275
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001276 if (sscanf(buf, "%d", &new_value) != 1) {
1277 pr_err("%s: no all_slaves_active value specified.\n",
1278 bond->dev->name);
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001279 return -EINVAL;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001280 }
1281
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001282 if (!rtnl_trylock())
1283 return restart_syscall();
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001284
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001285 ret = bond_option_all_slaves_active_set(bond, new_value);
1286 if (!ret)
1287 ret = count;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001288
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001289 rtnl_unlock();
Jiri Pirko672bda32011-01-25 11:03:25 +00001290 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001291}
1292static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1293 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001294
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001295/*
1296 * Show and set the number of IGMP membership reports to send on link failure
1297 */
1298static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001299 struct device_attribute *attr,
1300 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001301{
1302 struct bonding *bond = to_bond(d);
1303
1304 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1305}
1306
1307static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001308 struct device_attribute *attr,
1309 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001310{
1311 int new_value, ret = count;
1312 struct bonding *bond = to_bond(d);
1313
1314 if (sscanf(buf, "%d", &new_value) != 1) {
1315 pr_err("%s: no resend_igmp value specified.\n",
1316 bond->dev->name);
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001317 return -EINVAL;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001318 }
1319
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001320 if (!rtnl_trylock())
1321 return restart_syscall();
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001322
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001323 ret = bond_option_resend_igmp_set(bond, new_value);
1324 if (!ret)
1325 ret = count;
1326
1327 rtnl_unlock();
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001328 return ret;
1329}
1330
1331static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1332 bonding_show_resend_igmp, bonding_store_resend_igmp);
1333
Neil Horman7eacd032013-09-13 11:05:33 -04001334
1335static ssize_t bonding_show_lp_interval(struct device *d,
1336 struct device_attribute *attr,
1337 char *buf)
1338{
1339 struct bonding *bond = to_bond(d);
1340 return sprintf(buf, "%d\n", bond->params.lp_interval);
1341}
1342
1343static ssize_t bonding_store_lp_interval(struct device *d,
1344 struct device_attribute *attr,
1345 const char *buf, size_t count)
1346{
1347 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001348 int new_value, ret;
Neil Horman7eacd032013-09-13 11:05:33 -04001349
1350 if (sscanf(buf, "%d", &new_value) != 1) {
1351 pr_err("%s: no lp interval value specified.\n",
1352 bond->dev->name);
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001353 return -EINVAL;
Neil Horman7eacd032013-09-13 11:05:33 -04001354 }
1355
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001356 if (!rtnl_trylock())
1357 return restart_syscall();
Neil Horman7eacd032013-09-13 11:05:33 -04001358
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001359 ret = bond_option_lp_interval_set(bond, new_value);
1360 if (!ret)
1361 ret = count;
1362
1363 rtnl_unlock();
Neil Horman7eacd032013-09-13 11:05:33 -04001364 return ret;
1365}
1366
1367static DEVICE_ATTR(lp_interval, S_IRUGO | S_IWUSR,
1368 bonding_show_lp_interval, bonding_store_lp_interval);
1369
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001370static ssize_t bonding_show_packets_per_slave(struct device *d,
1371 struct device_attribute *attr,
1372 char *buf)
1373{
1374 struct bonding *bond = to_bond(d);
Nikolay Aleksandrova752a8b2013-12-05 11:36:58 +01001375 unsigned int packets_per_slave = bond->params.packets_per_slave;
Nikolay Aleksandrova752a8b2013-12-05 11:36:58 +01001376 return sprintf(buf, "%u\n", packets_per_slave);
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001377}
1378
1379static ssize_t bonding_store_packets_per_slave(struct device *d,
1380 struct device_attribute *attr,
1381 const char *buf, size_t count)
1382{
1383 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.comc13ab3f2013-12-17 21:30:37 -08001384 int new_value, ret;
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001385
1386 if (sscanf(buf, "%d", &new_value) != 1) {
1387 pr_err("%s: no packets_per_slave value specified.\n",
1388 bond->dev->name);
sfeldma@cumulusnetworks.comc13ab3f2013-12-17 21:30:37 -08001389 return -EINVAL;
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001390 }
sfeldma@cumulusnetworks.comc13ab3f2013-12-17 21:30:37 -08001391
1392 if (!rtnl_trylock())
1393 return restart_syscall();
1394
1395 ret = bond_option_packets_per_slave_set(bond, new_value);
1396 if (!ret)
1397 ret = count;
1398
1399 rtnl_unlock();
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001400 return ret;
1401}
1402
1403static DEVICE_ATTR(packets_per_slave, S_IRUGO | S_IWUSR,
1404 bonding_show_packets_per_slave,
1405 bonding_store_packets_per_slave);
1406
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001407static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001408 &dev_attr_slaves.attr,
1409 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001410 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001411 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001412 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001413 &dev_attr_arp_interval.attr,
1414 &dev_attr_arp_ip_target.attr,
1415 &dev_attr_downdelay.attr,
1416 &dev_attr_updelay.attr,
1417 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001418 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001419 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001420 &dev_attr_num_grat_arp.attr,
1421 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001422 &dev_attr_miimon.attr,
1423 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001424 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001425 &dev_attr_use_carrier.attr,
1426 &dev_attr_active_slave.attr,
1427 &dev_attr_mii_status.attr,
1428 &dev_attr_ad_aggregator.attr,
1429 &dev_attr_ad_num_ports.attr,
1430 &dev_attr_ad_actor_key.attr,
1431 &dev_attr_ad_partner_key.attr,
1432 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001433 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001434 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001435 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001436 &dev_attr_min_links.attr,
Neil Horman7eacd032013-09-13 11:05:33 -04001437 &dev_attr_lp_interval.attr,
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001438 &dev_attr_packets_per_slave.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001439 NULL,
1440};
1441
1442static struct attribute_group bonding_group = {
1443 .name = "bonding",
1444 .attrs = per_bond_attrs,
1445};
1446
1447/*
1448 * Initialize sysfs. This sets up the bonding_masters file in
1449 * /sys/class/net.
1450 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001451int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001452{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001453 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001454
Eric W. Biederman4c224002011-10-12 21:56:25 +00001455 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001456 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001457
Tejun Heo58292cbe2013-09-11 22:29:04 -04001458 ret = netdev_class_create_file_ns(&bn->class_attr_bonding_masters,
1459 bn->net);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001460 /*
1461 * Permit multiple loads of the module by ignoring failures to
1462 * create the bonding_masters sysfs file. Bonding devices
1463 * created by second or subsequent loads of the module will
1464 * not be listed in, or controllable by, bonding_masters, but
1465 * will have the usual "bonding" sysfs directory.
1466 *
1467 * This is done to preserve backwards compatibility for
1468 * initscripts/sysconfig, which load bonding multiple times to
1469 * configure multiple bonding devices.
1470 */
1471 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001472 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001473 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001474 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001475 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001476 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001477 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001478 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001479
1480 return ret;
1481
1482}
1483
1484/*
1485 * Remove /sys/class/net/bonding_masters.
1486 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001487void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001488{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001489 netdev_class_remove_file_ns(&bn->class_attr_bonding_masters, bn->net);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001490}
1491
1492/*
1493 * Initialize sysfs for each bond. This sets up and registers
1494 * the 'bondctl' directory for each individual bond under /sys/class/net.
1495 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001496void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001497{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001498 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001499}
1500