blob: 7f307bf096d1fc7c4d5a6ad5eb9bb55bf5231e18 [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);
Nikolay Aleksandrov16228882014-01-22 14:53:20 +0100328 struct bond_opt_value *val;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700329
Nikolay Aleksandrov16228882014-01-22 14:53:20 +0100330 val = bond_opt_get_val(BOND_OPT_ARP_VALIDATE,
331 bond->params.arp_validate);
332
333 return sprintf(buf, "%s %d\n", val->string, bond->params.arp_validate);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700334}
335
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700336static ssize_t bonding_store_arp_validate(struct device *d,
337 struct device_attribute *attr,
338 const char *buf, size_t count)
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700339{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700340 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov16228882014-01-22 14:53:20 +0100341 int ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700342
Nikolay Aleksandrov16228882014-01-22 14:53:20 +0100343 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_ARP_VALIDATE, (char *)buf);
sfeldma@cumulusnetworks.com29c49482013-12-12 14:10:38 -0800344 if (!ret)
345 ret = count;
346
nikolay@redhat.com5c5038d2013-09-07 00:00:25 +0200347 return ret;
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700348}
349
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000350static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
351 bonding_store_arp_validate);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200352/*
353 * Show and set arp_all_targets.
354 */
355static ssize_t bonding_show_arp_all_targets(struct device *d,
356 struct device_attribute *attr,
357 char *buf)
358{
359 struct bonding *bond = to_bond(d);
Nikolay Aleksandrovedf36b22014-01-22 14:53:21 +0100360 struct bond_opt_value *val;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200361
Nikolay Aleksandrovedf36b22014-01-22 14:53:21 +0100362 val = bond_opt_get_val(BOND_OPT_ARP_ALL_TARGETS,
363 bond->params.arp_all_targets);
364 return sprintf(buf, "%s %d\n",
365 val->string, bond->params.arp_all_targets);
Veaceslav Falico8599b522013-06-24 11:49:34 +0200366}
367
368static ssize_t bonding_store_arp_all_targets(struct device *d,
369 struct device_attribute *attr,
370 const char *buf, size_t count)
371{
372 struct bonding *bond = to_bond(d);
Nikolay Aleksandrovedf36b22014-01-22 14:53:21 +0100373 int ret;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200374
Nikolay Aleksandrovedf36b22014-01-22 14:53:21 +0100375 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_ARP_ALL_TARGETS, (char *)buf);
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800376 if (!ret)
377 ret = count;
378
sfeldma@cumulusnetworks.comd5c84252013-12-12 14:10:45 -0800379 return ret;
Veaceslav Falico8599b522013-06-24 11:49:34 +0200380}
381
382static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
383 bonding_show_arp_all_targets, bonding_store_arp_all_targets);
Jay Vosburghf5b2b962006-09-22 21:54:53 -0700384
385/*
Jay Vosburghdd957c52007-10-09 19:57:24 -0700386 * Show and store fail_over_mac. User only allowed to change the
387 * value when there are no slaves.
388 */
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000389static ssize_t bonding_show_fail_over_mac(struct device *d,
390 struct device_attribute *attr,
391 char *buf)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700392{
393 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov1df6b6a2014-01-22 14:53:22 +0100394 struct bond_opt_value *val;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700395
Nikolay Aleksandrov1df6b6a2014-01-22 14:53:22 +0100396 val = bond_opt_get_val(BOND_OPT_FAIL_OVER_MAC,
397 bond->params.fail_over_mac);
398
399 return sprintf(buf, "%s %d\n", val->string, bond->params.fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700400}
401
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000402static ssize_t bonding_store_fail_over_mac(struct device *d,
403 struct device_attribute *attr,
404 const char *buf, size_t count)
Jay Vosburghdd957c52007-10-09 19:57:24 -0700405{
Jay Vosburghdd957c52007-10-09 19:57:24 -0700406 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov1df6b6a2014-01-22 14:53:22 +0100407 int ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700408
Nikolay Aleksandrov1df6b6a2014-01-22 14:53:22 +0100409 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_FAIL_OVER_MAC, (char *)buf);
sfeldma@cumulusnetworks.com89901972013-12-15 16:42:05 -0800410 if (!ret)
411 ret = count;
412
dingtianhong9402b742013-07-23 15:25:39 +0800413 return ret;
Jay Vosburghdd957c52007-10-09 19:57:24 -0700414}
415
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000416static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
417 bonding_show_fail_over_mac, bonding_store_fail_over_mac);
Jay Vosburghdd957c52007-10-09 19:57:24 -0700418
419/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800420 * Show and set the arp timer interval. There are two tricky bits
421 * here. First, if ARP monitoring is activated, then we must disable
422 * MII monitoring. Second, if the ARP timer isn't running, we must
423 * start it.
424 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700425static ssize_t bonding_show_arp_interval(struct device *d,
426 struct device_attribute *attr,
427 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800428{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700429 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800430
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800431 return sprintf(buf, "%d\n", bond->params.arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800432}
433
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700434static ssize_t bonding_store_arp_interval(struct device *d,
435 struct device_attribute *attr,
436 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800437{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700438 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov7bdb04e2014-01-22 14:53:23 +0100439 int ret;
sfeldma@cumulusnetworks.com06151db2013-12-12 14:10:24 -0800440
Nikolay Aleksandrov7bdb04e2014-01-22 14:53:23 +0100441 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_ARP_INTERVAL, (char *)buf);
sfeldma@cumulusnetworks.com06151db2013-12-12 14:10:24 -0800442 if (!ret)
443 ret = count;
444
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800445 return ret;
446}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000447static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
448 bonding_show_arp_interval, bonding_store_arp_interval);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800449
450/*
451 * Show and set the arp targets.
452 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700453static ssize_t bonding_show_arp_targets(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);
Nikolay Aleksandrov4fb0ef52014-01-22 14:53:24 +0100458 int i, res = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800459
460 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
461 if (bond->params.arp_targets[i])
Harvey Harrison63779432008-10-31 00:56:00 -0700462 res += sprintf(buf + res, "%pI4 ",
463 &bond->params.arp_targets[i]);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800464 }
Wagner Ferenc1dcdcd62007-12-06 23:40:31 -0800465 if (res)
466 buf[res-1] = '\n'; /* eat the leftover space */
Nikolay Aleksandrov4fb0ef52014-01-22 14:53:24 +0100467
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800468 return res;
469}
470
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700471static ssize_t bonding_store_arp_targets(struct device *d,
472 struct device_attribute *attr,
473 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800474{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700475 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov4fb0ef52014-01-22 14:53:24 +0100476 int ret;
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800477
Nikolay Aleksandrov4fb0ef52014-01-22 14:53:24 +0100478 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_ARP_TARGETS, (char *)buf);
sfeldma@cumulusnetworks.com7f28fa12013-12-12 14:10:31 -0800479 if (!ret)
480 ret = count;
481
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800482 return ret;
483}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700484static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR , bonding_show_arp_targets, bonding_store_arp_targets);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800485
486/*
487 * Show and set the up and down delays. These must be multiples of the
488 * MII monitoring value, and are stored internally as the multiplier.
489 * Thus, we must translate to MS for the real world.
490 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700491static ssize_t bonding_show_downdelay(struct device *d,
492 struct device_attribute *attr,
493 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800494{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700495 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800496
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800497 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800498}
499
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700500static ssize_t bonding_store_downdelay(struct device *d,
501 struct device_attribute *attr,
502 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800503{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700504 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov25a9b542014-01-22 14:53:25 +0100505 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800506
Nikolay Aleksandrov25a9b542014-01-22 14:53:25 +0100507 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_DOWNDELAY, (char *)buf);
sfeldma@cumulusnetworks.comc7461f92013-12-12 14:10:09 -0800508 if (!ret)
509 ret = count;
510
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800511 return ret;
512}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000513static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
514 bonding_show_downdelay, bonding_store_downdelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800515
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700516static ssize_t bonding_show_updelay(struct device *d,
517 struct device_attribute *attr,
518 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800519{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700520 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800521
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800522 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800523
524}
525
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700526static ssize_t bonding_store_updelay(struct device *d,
527 struct device_attribute *attr,
528 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800529{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700530 struct bonding *bond = to_bond(d);
Nikolay Aleksandrove4994612014-01-22 14:53:26 +0100531 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800532
Nikolay Aleksandrove4994612014-01-22 14:53:26 +0100533 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_UPDELAY, (char *)buf);
sfeldma@cumulusnetworks.com25852e22013-12-12 14:10:02 -0800534 if (!ret)
535 ret = count;
536
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800537 return ret;
538}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000539static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
540 bonding_show_updelay, bonding_store_updelay);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800541
542/*
543 * Show and set the LACP interval. Interface must be down, and the mode
544 * must be set to 802.3ad mode.
545 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700546static ssize_t bonding_show_lacp(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);
Nikolay Aleksandrovd3131de2014-01-22 14:53:27 +0100551 struct bond_opt_value *val;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800552
Nikolay Aleksandrovd3131de2014-01-22 14:53:27 +0100553 val = bond_opt_get_val(BOND_OPT_LACP_RATE, bond->params.lacp_fast);
554
555 return sprintf(buf, "%s %d\n", val->string, bond->params.lacp_fast);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800556}
557
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700558static ssize_t bonding_store_lacp(struct device *d,
559 struct device_attribute *attr,
560 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800561{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700562 struct bonding *bond = to_bond(d);
Nikolay Aleksandrovd3131de2014-01-22 14:53:27 +0100563 int ret;
sfeldma@cumulusnetworks.com998e40bb2014-01-03 14:18:41 -0800564
Nikolay Aleksandrovd3131de2014-01-22 14:53:27 +0100565 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_LACP_RATE, (char *)buf);
sfeldma@cumulusnetworks.com998e40bb2014-01-03 14:18:41 -0800566 if (!ret)
567 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800568
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800569 return ret;
570}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000571static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
572 bonding_show_lacp, bonding_store_lacp);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800573
stephen hemminger655f8912011-06-22 09:54:39 +0000574static ssize_t bonding_show_min_links(struct device *d,
575 struct device_attribute *attr,
576 char *buf)
577{
578 struct bonding *bond = to_bond(d);
579
580 return sprintf(buf, "%d\n", bond->params.min_links);
581}
582
583static ssize_t bonding_store_min_links(struct device *d,
584 struct device_attribute *attr,
585 const char *buf, size_t count)
586{
587 struct bonding *bond = to_bond(d);
588 int ret;
stephen hemminger655f8912011-06-22 09:54:39 +0000589
Nikolay Aleksandrov633ddc92014-01-22 14:53:28 +0100590 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_MINLINKS, (char *)buf);
sfeldma@cumulusnetworks.com7d101002013-12-17 21:30:23 -0800591 if (!ret)
592 ret = count;
593
sfeldma@cumulusnetworks.com7d101002013-12-17 21:30:23 -0800594 return ret;
stephen hemminger655f8912011-06-22 09:54:39 +0000595}
596static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
597 bonding_show_min_links, bonding_store_min_links);
598
Jay Vosburghfd989c82008-11-04 17:51:16 -0800599static ssize_t bonding_show_ad_select(struct device *d,
600 struct device_attribute *attr,
601 char *buf)
602{
603 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov9e5f5ee2014-01-22 14:53:29 +0100604 struct bond_opt_value *val;
Jay Vosburghfd989c82008-11-04 17:51:16 -0800605
Nikolay Aleksandrov9e5f5ee2014-01-22 14:53:29 +0100606 val = bond_opt_get_val(BOND_OPT_AD_SELECT, bond->params.ad_select);
607
608 return sprintf(buf, "%s %d\n", val->string, bond->params.ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800609}
610
611
612static ssize_t bonding_store_ad_select(struct device *d,
613 struct device_attribute *attr,
614 const char *buf, size_t count)
615{
Jay Vosburghfd989c82008-11-04 17:51:16 -0800616 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov9e5f5ee2014-01-22 14:53:29 +0100617 int ret;
Jay Vosburghfd989c82008-11-04 17:51:16 -0800618
Nikolay Aleksandrov9e5f5ee2014-01-22 14:53:29 +0100619 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_AD_SELECT, (char *)buf);
sfeldma@cumulusnetworks.comec029fa2014-01-03 14:18:49 -0800620 if (!ret)
621 ret = count;
622
Jay Vosburghfd989c82008-11-04 17:51:16 -0800623 return ret;
624}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000625static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
626 bonding_show_ad_select, bonding_store_ad_select);
Jay Vosburghfd989c82008-11-04 17:51:16 -0800627
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800628/*
Ben Hutchingsad246c92011-04-26 15:25:52 +0000629 * Show and set the number of peer notifications to send after a failover event.
630 */
631static ssize_t bonding_show_num_peer_notif(struct device *d,
632 struct device_attribute *attr,
633 char *buf)
634{
635 struct bonding *bond = to_bond(d);
636 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
637}
638
639static ssize_t bonding_store_num_peer_notif(struct device *d,
640 struct device_attribute *attr,
641 const char *buf, size_t count)
642{
643 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800644 int ret;
645
Nikolay Aleksandrovef56bec2014-01-22 14:53:30 +0100646 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_NUM_PEER_NOTIF, (char *)buf);
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800647 if (!ret)
648 ret = count;
649
sfeldma@cumulusnetworks.com2c9839c2013-12-17 21:30:09 -0800650 return ret;
Ben Hutchingsad246c92011-04-26 15:25:52 +0000651}
652static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
653 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
654static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
655 bonding_show_num_peer_notif, bonding_store_num_peer_notif);
656
657/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800658 * Show and set the MII monitor interval. There are two tricky bits
659 * here. First, if MII monitoring is activated, then we must disable
660 * ARP monitoring. Second, if the timer isn't running, we must
661 * start it.
662 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700663static ssize_t bonding_show_miimon(struct device *d,
664 struct device_attribute *attr,
665 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800666{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700667 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800668
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800669 return sprintf(buf, "%d\n", bond->params.miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800670}
671
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700672static ssize_t bonding_store_miimon(struct device *d,
673 struct device_attribute *attr,
674 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800675{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700676 struct bonding *bond = to_bond(d);
Nikolay Aleksandrovb98d9c62014-01-22 14:53:31 +0100677 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800678
Nikolay Aleksandrovb98d9c62014-01-22 14:53:31 +0100679 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_MIIMON, (char *)buf);
sfeldma@cumulusnetworks.comeecdaa62013-12-12 14:09:55 -0800680 if (!ret)
681 ret = count;
682
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800683 return ret;
684}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000685static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
686 bonding_show_miimon, bonding_store_miimon);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800687
688/*
689 * Show and set the primary slave. The store function is much
690 * simpler than bonding_store_slaves function because it only needs to
691 * handle one interface name.
692 * The bond must be a mode that supports a primary for this be
693 * set.
694 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700695static ssize_t bonding_show_primary(struct device *d,
696 struct device_attribute *attr,
697 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800698{
699 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700700 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800701
702 if (bond->primary_slave)
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800703 count = sprintf(buf, "%s\n", bond->primary_slave->dev->name);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800704
705 return count;
706}
707
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700708static ssize_t bonding_store_primary(struct device *d,
709 struct device_attribute *attr,
710 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800711{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700712 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800713 int ret;
714
Nikolay Aleksandrov180222f2014-01-22 14:53:32 +0100715 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_PRIMARY, (char *)buf);
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800716 if (!ret)
717 ret = count;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800718
sfeldma@cumulusnetworks.com0a98a0d2013-12-15 16:41:51 -0800719 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800720}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000721static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
722 bonding_show_primary, bonding_store_primary);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800723
724/*
Jiri Pirkoa5499522009-09-25 03:28:09 +0000725 * Show and set the primary_reselect flag.
726 */
727static ssize_t bonding_show_primary_reselect(struct device *d,
728 struct device_attribute *attr,
729 char *buf)
730{
731 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov388d3a62014-01-22 14:53:33 +0100732 struct bond_opt_value *val;
733
734 val = bond_opt_get_val(BOND_OPT_PRIMARY_RESELECT,
735 bond->params.primary_reselect);
Jiri Pirkoa5499522009-09-25 03:28:09 +0000736
737 return sprintf(buf, "%s %d\n",
Nikolay Aleksandrov388d3a62014-01-22 14:53:33 +0100738 val->string, bond->params.primary_reselect);
Jiri Pirkoa5499522009-09-25 03:28:09 +0000739}
740
741static ssize_t bonding_store_primary_reselect(struct device *d,
742 struct device_attribute *attr,
743 const char *buf, size_t count)
744{
Jiri Pirkoa5499522009-09-25 03:28:09 +0000745 struct bonding *bond = to_bond(d);
Nikolay Aleksandrov388d3a62014-01-22 14:53:33 +0100746 int ret;
Jiri Pirkoa5499522009-09-25 03:28:09 +0000747
Nikolay Aleksandrov388d3a62014-01-22 14:53:33 +0100748 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_PRIMARY_RESELECT,
749 (char *)buf);
sfeldma@cumulusnetworks.com8a41ae42013-12-15 16:41:58 -0800750 if (!ret)
751 ret = count;
752
Jiri Pirkoa5499522009-09-25 03:28:09 +0000753 return ret;
754}
755static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
756 bonding_show_primary_reselect,
757 bonding_store_primary_reselect);
758
759/*
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800760 * Show and set the use_carrier flag.
761 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700762static ssize_t bonding_show_carrier(struct device *d,
763 struct device_attribute *attr,
764 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800765{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700766 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800767
Wagner Ferenc7bd46502007-12-06 23:40:28 -0800768 return sprintf(buf, "%d\n", bond->params.use_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800769}
770
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700771static ssize_t bonding_store_carrier(struct device *d,
772 struct device_attribute *attr,
773 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800774{
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800775 int new_value, ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700776 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800777
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800778 if (sscanf(buf, "%d", &new_value) != 1) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800779 pr_err("%s: no use_carrier value specified.\n",
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800780 bond->dev->name);
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800781 return -EINVAL;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800782 }
sfeldma@cumulusnetworks.com9f53e142013-12-12 14:10:16 -0800783
784 if (!rtnl_trylock())
785 return restart_syscall();
786
787 ret = bond_option_use_carrier_set(bond, new_value);
788 if (!ret)
789 ret = count;
790
791 rtnl_unlock();
Jiri Pirko672bda32011-01-25 11:03:25 +0000792 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800793}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000794static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
795 bonding_show_carrier, bonding_store_carrier);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800796
797
798/*
799 * Show and set currently active_slave.
800 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700801static ssize_t bonding_show_active_slave(struct device *d,
802 struct device_attribute *attr,
803 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800804{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700805 struct bonding *bond = to_bond(d);
Jiri Pirko752d48b2013-10-18 17:43:37 +0200806 struct net_device *slave_dev;
Wagner Ferenc16cd0162007-12-06 23:40:29 -0800807 int count = 0;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800808
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200809 rcu_read_lock();
Jiri Pirko752d48b2013-10-18 17:43:37 +0200810 slave_dev = bond_option_active_slave_get_rcu(bond);
811 if (slave_dev)
812 count = sprintf(buf, "%s\n", slave_dev->name);
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200813 rcu_read_unlock();
814
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800815 return count;
816}
817
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700818static ssize_t bonding_store_active_slave(struct device *d,
819 struct device_attribute *attr,
820 const char *buf, size_t count)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800821{
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200822 int ret;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700823 struct bonding *bond = to_bond(d);
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000824 char ifname[IFNAMSIZ];
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200825 struct net_device *dev;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800826
Eric W. Biederman496a60c2009-05-13 17:02:50 +0000827 if (!rtnl_trylock())
828 return restart_syscall();
Neil Hormane843fa52010-10-13 16:01:50 +0000829
nikolay@redhat.comc84e1592012-10-31 06:03:52 +0000830 sscanf(buf, "%15s", ifname); /* IFNAMSIZ */
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000831 if (!strlen(ifname) || buf[0] == '\n') {
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200832 dev = NULL;
833 } else {
834 dev = __dev_get_by_name(dev_net(bond->dev), ifname);
835 if (!dev) {
836 ret = -ENODEV;
837 goto out;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800838 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800839 }
Andy Gospodarekf4bb2e92011-07-26 11:12:27 +0000840
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200841 ret = bond_option_active_slave_set(bond, dev);
842 if (!ret)
843 ret = count;
Neil Hormane843fa52010-10-13 16:01:50 +0000844
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200845 out:
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700846 rtnl_unlock();
847
Jiri Pirkod9e32b22013-10-18 17:43:35 +0200848 return ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800849
850}
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000851static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
852 bonding_show_active_slave, bonding_store_active_slave);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800853
854
855/*
856 * Show link status of the bond interface.
857 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700858static ssize_t bonding_show_mii_status(struct device *d,
859 struct device_attribute *attr,
860 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800861{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700862 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800863
nikolay@redhat.com278b2082013-08-01 16:54:51 +0200864 return sprintf(buf, "%s\n", bond->curr_active_slave ? "up" : "down");
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800865}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700866static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800867
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800868/*
869 * Show current 802.3ad aggregator ID.
870 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700871static ssize_t bonding_show_ad_aggregator(struct device *d,
872 struct device_attribute *attr,
873 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800874{
875 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700876 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800877
878 if (bond->params.mode == BOND_MODE_8023AD) {
879 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000880 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +0000881 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000882 ? 0 : ad_info.aggregator_id);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800883 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800884
885 return count;
886}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700887static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800888
889
890/*
891 * Show number of active 802.3ad ports.
892 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700893static ssize_t bonding_show_ad_num_ports(struct device *d,
894 struct device_attribute *attr,
895 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800896{
897 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700898 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800899
900 if (bond->params.mode == BOND_MODE_8023AD) {
901 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000902 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +0000903 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000904 ? 0 : ad_info.ports);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800905 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800906
907 return count;
908}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700909static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800910
911
912/*
913 * Show current 802.3ad actor key.
914 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700915static ssize_t bonding_show_ad_actor_key(struct device *d,
916 struct device_attribute *attr,
917 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800918{
919 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700920 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800921
922 if (bond->params.mode == BOND_MODE_8023AD) {
923 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000924 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +0000925 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000926 ? 0 : ad_info.actor_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800927 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800928
929 return count;
930}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700931static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800932
933
934/*
935 * Show current 802.3ad partner key.
936 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700937static ssize_t bonding_show_ad_partner_key(struct device *d,
938 struct device_attribute *attr,
939 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800940{
941 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700942 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800943
944 if (bond->params.mode == BOND_MODE_8023AD) {
945 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000946 count = sprintf(buf, "%d\n",
nikolay@redhat.com318debd2013-05-18 01:18:31 +0000947 bond_3ad_get_active_agg_info(bond, &ad_info)
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000948 ? 0 : ad_info.partner_key);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800949 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800950
951 return count;
952}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700953static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800954
955
956/*
957 * Show current 802.3ad partner mac.
958 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700959static ssize_t bonding_show_ad_partner_mac(struct device *d,
960 struct device_attribute *attr,
961 char *buf)
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800962{
963 int count = 0;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700964 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800965
966 if (bond->params.mode == BOND_MODE_8023AD) {
967 struct ad_info ad_info;
Stephen Hemminger3d632c32009-06-12 19:02:48 +0000968 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
Johannes Berge1749612008-10-27 15:59:26 -0700969 count = sprintf(buf, "%pM\n", ad_info.partner_system);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800970 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800971
972 return count;
973}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700974static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
Mitch Williamsb76cdba2005-11-09 10:36:41 -0800975
Andy Gospodarekebd8e492010-06-02 08:39:21 +0000976/*
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000977 * Show the queue_ids of the slaves in the current bond.
978 */
979static ssize_t bonding_show_queue_id(struct device *d,
980 struct device_attribute *attr,
981 char *buf)
982{
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000983 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +0200984 struct list_head *iter;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +0200985 struct slave *slave;
986 int res = 0;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000987
988 if (!rtnl_trylock())
989 return restart_syscall();
990
Veaceslav Falico9caff1e2013-09-25 09:20:14 +0200991 bond_for_each_slave(bond, slave, iter) {
Nicolas de Pesloüan79236682010-07-14 18:24:54 -0700992 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
993 /* not enough space for another interface_name:queue_id pair */
Andy Gospodarekbb1d9122010-06-02 08:40:18 +0000994 if ((PAGE_SIZE - res) > 10)
995 res = PAGE_SIZE - 10;
996 res += sprintf(buf + res, "++more++ ");
997 break;
998 }
999 res += sprintf(buf + res, "%s:%d ",
1000 slave->dev->name, slave->queue_id);
1001 }
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001002 if (res)
1003 buf[res-1] = '\n'; /* eat the leftover space */
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001004
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001005 rtnl_unlock();
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001006
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001007 return res;
1008}
1009
1010/*
1011 * Set the queue_ids of the slaves in the current bond. The bond
1012 * interface must be enslaved for this to work.
1013 */
1014static ssize_t bonding_store_queue_id(struct device *d,
1015 struct device_attribute *attr,
1016 const char *buffer, size_t count)
1017{
1018 struct slave *slave, *update_slave;
1019 struct bonding *bond = to_bond(d);
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001020 struct list_head *iter;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001021 u16 qid;
nikolay@redhat.comdec1e902013-08-01 16:54:47 +02001022 int ret = count;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001023 char *delim;
1024 struct net_device *sdev = NULL;
1025
1026 if (!rtnl_trylock())
1027 return restart_syscall();
1028
1029 /* delim will point to queue id if successful */
1030 delim = strchr(buffer, ':');
1031 if (!delim)
1032 goto err_no_cmd;
1033
1034 /*
1035 * Terminate string that points to device name and bump it
1036 * up one, so we can read the queue id there.
1037 */
1038 *delim = '\0';
1039 if (sscanf(++delim, "%hd\n", &qid) != 1)
1040 goto err_no_cmd;
1041
1042 /* Check buffer length, valid ifname and queue id */
1043 if (strlen(buffer) > IFNAMSIZ ||
1044 !dev_valid_name(buffer) ||
Jiri Pirko8a540ff2012-07-20 02:28:50 +00001045 qid > bond->dev->real_num_tx_queues)
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001046 goto err_no_cmd;
1047
1048 /* Get the pointer to that interface if it exists */
1049 sdev = __dev_get_by_name(dev_net(bond->dev), buffer);
1050 if (!sdev)
1051 goto err_no_cmd;
1052
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001053 /* Search for thes slave and check for duplicate qids */
1054 update_slave = NULL;
Veaceslav Falico9caff1e2013-09-25 09:20:14 +02001055 bond_for_each_slave(bond, slave, iter) {
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001056 if (sdev == slave->dev)
1057 /*
1058 * We don't need to check the matching
1059 * slave for dups, since we're overwriting it
1060 */
1061 update_slave = slave;
1062 else if (qid && qid == slave->queue_id) {
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001063 goto err_no_cmd;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001064 }
1065 }
1066
1067 if (!update_slave)
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001068 goto err_no_cmd;
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001069
1070 /* Actually set the qids for the slave */
1071 update_slave->queue_id = qid;
1072
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001073out:
1074 rtnl_unlock();
1075 return ret;
1076
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001077err_no_cmd:
1078 pr_info("invalid input for queue_id set for %s.\n",
1079 bond->dev->name);
1080 ret = -EPERM;
1081 goto out;
1082}
1083
1084static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
1085 bonding_store_queue_id);
1086
1087
1088/*
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001089 * Show and set the all_slaves_active flag.
1090 */
1091static ssize_t bonding_show_slaves_active(struct device *d,
1092 struct device_attribute *attr,
1093 char *buf)
1094{
1095 struct bonding *bond = to_bond(d);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001096
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001097 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
1098}
1099
1100static ssize_t bonding_store_slaves_active(struct device *d,
1101 struct device_attribute *attr,
1102 const char *buf, size_t count)
1103{
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001104 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001105 int new_value, ret;
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001106
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001107 if (sscanf(buf, "%d", &new_value) != 1) {
1108 pr_err("%s: no all_slaves_active value specified.\n",
1109 bond->dev->name);
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001110 return -EINVAL;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001111 }
1112
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001113 if (!rtnl_trylock())
1114 return restart_syscall();
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001115
sfeldma@cumulusnetworks.com1cc0b1e2013-12-17 21:30:16 -08001116 ret = bond_option_all_slaves_active_set(bond, new_value);
1117 if (!ret)
1118 ret = count;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001119
dingtianhong4d1ae5f2013-10-15 16:28:42 +08001120 rtnl_unlock();
Jiri Pirko672bda32011-01-25 11:03:25 +00001121 return ret;
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001122}
1123static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
1124 bonding_show_slaves_active, bonding_store_slaves_active);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001125
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001126/*
1127 * Show and set the number of IGMP membership reports to send on link failure
1128 */
1129static ssize_t bonding_show_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001130 struct device_attribute *attr,
1131 char *buf)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001132{
1133 struct bonding *bond = to_bond(d);
1134
1135 return sprintf(buf, "%d\n", bond->params.resend_igmp);
1136}
1137
1138static ssize_t bonding_store_resend_igmp(struct device *d,
Flavio Leitner94265cf2011-05-25 08:38:58 +00001139 struct device_attribute *attr,
1140 const char *buf, size_t count)
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001141{
1142 int new_value, ret = count;
1143 struct bonding *bond = to_bond(d);
1144
1145 if (sscanf(buf, "%d", &new_value) != 1) {
1146 pr_err("%s: no resend_igmp value specified.\n",
1147 bond->dev->name);
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001148 return -EINVAL;
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001149 }
1150
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001151 if (!rtnl_trylock())
1152 return restart_syscall();
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001153
sfeldma@cumulusnetworks.comd8838de72013-12-15 16:42:19 -08001154 ret = bond_option_resend_igmp_set(bond, new_value);
1155 if (!ret)
1156 ret = count;
1157
1158 rtnl_unlock();
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001159 return ret;
1160}
1161
1162static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
1163 bonding_show_resend_igmp, bonding_store_resend_igmp);
1164
Neil Horman7eacd032013-09-13 11:05:33 -04001165
1166static ssize_t bonding_show_lp_interval(struct device *d,
1167 struct device_attribute *attr,
1168 char *buf)
1169{
1170 struct bonding *bond = to_bond(d);
1171 return sprintf(buf, "%d\n", bond->params.lp_interval);
1172}
1173
1174static ssize_t bonding_store_lp_interval(struct device *d,
1175 struct device_attribute *attr,
1176 const char *buf, size_t count)
1177{
1178 struct bonding *bond = to_bond(d);
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001179 int new_value, ret;
Neil Horman7eacd032013-09-13 11:05:33 -04001180
1181 if (sscanf(buf, "%d", &new_value) != 1) {
1182 pr_err("%s: no lp interval value specified.\n",
1183 bond->dev->name);
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001184 return -EINVAL;
Neil Horman7eacd032013-09-13 11:05:33 -04001185 }
1186
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001187 if (!rtnl_trylock())
1188 return restart_syscall();
Neil Horman7eacd032013-09-13 11:05:33 -04001189
sfeldma@cumulusnetworks.com8d836d02013-12-17 21:30:30 -08001190 ret = bond_option_lp_interval_set(bond, new_value);
1191 if (!ret)
1192 ret = count;
1193
1194 rtnl_unlock();
Neil Horman7eacd032013-09-13 11:05:33 -04001195 return ret;
1196}
1197
1198static DEVICE_ATTR(lp_interval, S_IRUGO | S_IWUSR,
1199 bonding_show_lp_interval, bonding_store_lp_interval);
1200
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001201static ssize_t bonding_show_packets_per_slave(struct device *d,
1202 struct device_attribute *attr,
1203 char *buf)
1204{
1205 struct bonding *bond = to_bond(d);
Nikolay Aleksandrova752a8b2013-12-05 11:36:58 +01001206 unsigned int packets_per_slave = bond->params.packets_per_slave;
Nikolay Aleksandrova752a8b2013-12-05 11:36:58 +01001207 return sprintf(buf, "%u\n", packets_per_slave);
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001208}
1209
1210static ssize_t bonding_store_packets_per_slave(struct device *d,
1211 struct device_attribute *attr,
1212 const char *buf, size_t count)
1213{
1214 struct bonding *bond = to_bond(d);
Nikolay Aleksandrovaa59d852014-01-22 14:53:18 +01001215 int ret;
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001216
Nikolay Aleksandrovaa59d852014-01-22 14:53:18 +01001217 ret = bond_opt_tryset_rtnl(bond, BOND_OPT_PACKETS_PER_SLAVE,
1218 (char *)buf);
sfeldma@cumulusnetworks.comc13ab3f2013-12-17 21:30:37 -08001219 if (!ret)
1220 ret = count;
1221
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001222 return ret;
1223}
1224
1225static DEVICE_ATTR(packets_per_slave, S_IRUGO | S_IWUSR,
1226 bonding_show_packets_per_slave,
1227 bonding_store_packets_per_slave);
1228
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001229static struct attribute *per_bond_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001230 &dev_attr_slaves.attr,
1231 &dev_attr_mode.attr,
Jay Vosburghdd957c52007-10-09 19:57:24 -07001232 &dev_attr_fail_over_mac.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001233 &dev_attr_arp_validate.attr,
Veaceslav Falico8599b522013-06-24 11:49:34 +02001234 &dev_attr_arp_all_targets.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001235 &dev_attr_arp_interval.attr,
1236 &dev_attr_arp_ip_target.attr,
1237 &dev_attr_downdelay.attr,
1238 &dev_attr_updelay.attr,
1239 &dev_attr_lacp_rate.attr,
Jay Vosburghfd989c82008-11-04 17:51:16 -08001240 &dev_attr_ad_select.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001241 &dev_attr_xmit_hash_policy.attr,
Ben Hutchingsad246c92011-04-26 15:25:52 +00001242 &dev_attr_num_grat_arp.attr,
1243 &dev_attr_num_unsol_na.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001244 &dev_attr_miimon.attr,
1245 &dev_attr_primary.attr,
Jiri Pirkoa5499522009-09-25 03:28:09 +00001246 &dev_attr_primary_reselect.attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001247 &dev_attr_use_carrier.attr,
1248 &dev_attr_active_slave.attr,
1249 &dev_attr_mii_status.attr,
1250 &dev_attr_ad_aggregator.attr,
1251 &dev_attr_ad_num_ports.attr,
1252 &dev_attr_ad_actor_key.attr,
1253 &dev_attr_ad_partner_key.attr,
1254 &dev_attr_ad_partner_mac.attr,
Andy Gospodarekbb1d9122010-06-02 08:40:18 +00001255 &dev_attr_queue_id.attr,
Andy Gospodarekebd8e492010-06-02 08:39:21 +00001256 &dev_attr_all_slaves_active.attr,
Flavio Leitnerc2952c32010-10-05 14:23:59 +00001257 &dev_attr_resend_igmp.attr,
stephen hemminger655f8912011-06-22 09:54:39 +00001258 &dev_attr_min_links.attr,
Neil Horman7eacd032013-09-13 11:05:33 -04001259 &dev_attr_lp_interval.attr,
Nikolay Aleksandrov73958322013-11-05 13:51:41 +01001260 &dev_attr_packets_per_slave.attr,
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001261 NULL,
1262};
1263
1264static struct attribute_group bonding_group = {
1265 .name = "bonding",
1266 .attrs = per_bond_attrs,
1267};
1268
1269/*
1270 * Initialize sysfs. This sets up the bonding_masters file in
1271 * /sys/class/net.
1272 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001273int bond_create_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001274{
Jay Vosburghb8a97872008-06-13 18:12:04 -07001275 int ret;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001276
Eric W. Biederman4c224002011-10-12 21:56:25 +00001277 bn->class_attr_bonding_masters = class_attr_bonding_masters;
Eric W. Biederman01718e32011-10-21 22:43:07 +00001278 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
Eric W. Biederman4c224002011-10-12 21:56:25 +00001279
Tejun Heo58292cbe2013-09-11 22:29:04 -04001280 ret = netdev_class_create_file_ns(&bn->class_attr_bonding_masters,
1281 bn->net);
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001282 /*
1283 * Permit multiple loads of the module by ignoring failures to
1284 * create the bonding_masters sysfs file. Bonding devices
1285 * created by second or subsequent loads of the module will
1286 * not be listed in, or controllable by, bonding_masters, but
1287 * will have the usual "bonding" sysfs directory.
1288 *
1289 * This is done to preserve backwards compatibility for
1290 * initscripts/sysconfig, which load bonding multiple times to
1291 * configure multiple bonding devices.
1292 */
1293 if (ret == -EEXIST) {
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001294 /* Is someone being kinky and naming a device bonding_master? */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001295 if (__dev_get_by_name(bn->net,
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001296 class_attr_bonding_masters.attr.name))
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001297 pr_err("network device named %s already exists in sysfs",
Stephen Hemminger38d2f382008-05-14 22:35:04 -07001298 class_attr_bonding_masters.attr.name);
Stephen Hemminger130aa612009-06-11 05:46:04 -07001299 ret = 0;
Jay Vosburgh877cbd32007-01-19 18:15:47 -08001300 }
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001301
1302 return ret;
1303
1304}
1305
1306/*
1307 * Remove /sys/class/net/bonding_masters.
1308 */
Eric W. Biederman4c224002011-10-12 21:56:25 +00001309void bond_destroy_sysfs(struct bond_net *bn)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001310{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001311 netdev_class_remove_file_ns(&bn->class_attr_bonding_masters, bn->net);
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001312}
1313
1314/*
1315 * Initialize sysfs for each bond. This sets up and registers
1316 * the 'bondctl' directory for each individual bond under /sys/class/net.
1317 */
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001318void bond_prepare_sysfs_group(struct bonding *bond)
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001319{
Eric W. Biederman6151b3d2009-10-29 14:18:22 +00001320 bond->dev->sysfs_groups[0] = &bonding_group;
Mitch Williamsb76cdba2005-11-09 10:36:41 -08001321}
1322