Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
[deliverable/linux.git] / drivers / net / bonding / bond_sysfs.c
CommitLineData
b76cdba9
MW
1/*
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
adf8d3ff 15 * with this program; if not, see <http://www.gnu.org/licenses/>.
b76cdba9
MW
16 *
17 * The full GNU General Public License is included in this distribution in the
18 * file called LICENSE.
19 *
b76cdba9 20 */
a4aee5c8
JP
21
22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
b76cdba9
MW
24#include <linux/kernel.h>
25#include <linux/module.h>
b76cdba9 26#include <linux/device.h>
d43c36dc 27#include <linux/sched.h>
b76cdba9
MW
28#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>
b76cdba9
MW
35#include <linux/ctype.h>
36#include <linux/inet.h>
37#include <linux/rtnetlink.h>
5c5129b5 38#include <linux/etherdevice.h>
881d966b 39#include <net/net_namespace.h>
ec87fd3b
EB
40#include <net/netns/generic.h>
41#include <linux/nsproxy.h>
b76cdba9 42
1ef8019b 43#include <net/bonding.h>
5a03cdb7 44
3d632c3f 45#define to_dev(obj) container_of(obj, struct device, kobj)
454d7c9b 46#define to_bond(cd) ((struct bonding *)(netdev_priv(to_net_dev(cd))))
b76cdba9 47
dc3e5d18 48/* "show" function for the bond_masters attribute.
b76cdba9
MW
49 * The class parameter is ignored.
50 */
28812fe1
AK
51static ssize_t bonding_show_bonds(struct class *cls,
52 struct class_attribute *attr,
53 char *buf)
b76cdba9 54{
4c22400a
EB
55 struct bond_net *bn =
56 container_of(attr, struct bond_net, class_attr_bonding_masters);
b76cdba9
MW
57 int res = 0;
58 struct bonding *bond;
59
7e083840 60 rtnl_lock();
b76cdba9 61
ec87fd3b 62 list_for_each_entry(bond, &bn->dev_list, bond_list) {
b76cdba9
MW
63 if (res > (PAGE_SIZE - IFNAMSIZ)) {
64 /* not enough space for another interface name */
65 if ((PAGE_SIZE - res) > 10)
66 res = PAGE_SIZE - 10;
b8843665 67 res += sprintf(buf + res, "++more++ ");
b76cdba9
MW
68 break;
69 }
b8843665 70 res += sprintf(buf + res, "%s ", bond->dev->name);
b76cdba9 71 }
1dcdcd69
WF
72 if (res)
73 buf[res-1] = '\n'; /* eat the leftover space */
7e083840
SH
74
75 rtnl_unlock();
b76cdba9
MW
76 return res;
77}
78
4c22400a 79static struct net_device *bond_get_by_name(struct bond_net *bn, const char *ifname)
373500db
SH
80{
81 struct bonding *bond;
82
ec87fd3b 83 list_for_each_entry(bond, &bn->dev_list, bond_list) {
373500db
SH
84 if (strncmp(bond->dev->name, ifname, IFNAMSIZ) == 0)
85 return bond->dev;
86 }
87 return NULL;
88}
89
dc3e5d18 90/* "store" function for the bond_masters attribute. This is what
b76cdba9
MW
91 * creates and deletes entire bonds.
92 *
93 * The class parameter is ignored.
b76cdba9 94 */
3d632c3f 95static ssize_t bonding_store_bonds(struct class *cls,
28812fe1 96 struct class_attribute *attr,
3d632c3f 97 const char *buffer, size_t count)
b76cdba9 98{
4c22400a
EB
99 struct bond_net *bn =
100 container_of(attr, struct bond_net, class_attr_bonding_masters);
b76cdba9
MW
101 char command[IFNAMSIZ + 1] = {0, };
102 char *ifname;
027ea041 103 int rv, res = count;
b76cdba9 104
b76cdba9
MW
105 sscanf(buffer, "%16s", command); /* IFNAMSIZ*/
106 ifname = command + 1;
107 if ((strlen(command) <= 1) ||
108 !dev_valid_name(ifname))
109 goto err_no_cmd;
110
111 if (command[0] == '+') {
a4aee5c8 112 pr_info("%s is being created...\n", ifname);
4c22400a 113 rv = bond_create(bn->net, ifname);
027ea041 114 if (rv) {
5f86cad1 115 if (rv == -EEXIST)
90194264 116 pr_info("%s already exists\n", ifname);
5f86cad1 117 else
90194264 118 pr_info("%s creation failed\n", ifname);
027ea041 119 res = rv;
b76cdba9 120 }
373500db
SH
121 } else if (command[0] == '-') {
122 struct net_device *bond_dev;
b76cdba9 123
027ea041 124 rtnl_lock();
4c22400a 125 bond_dev = bond_get_by_name(bn, ifname);
373500db 126 if (bond_dev) {
a4aee5c8 127 pr_info("%s is being deleted...\n", ifname);
373500db
SH
128 unregister_netdevice(bond_dev);
129 } else {
a4aee5c8 130 pr_err("unable to delete non-existent %s\n", ifname);
373500db
SH
131 res = -ENODEV;
132 }
133 rtnl_unlock();
134 } else
135 goto err_no_cmd;
027ea041 136
373500db
SH
137 /* Always return either count or an error. If you return 0, you'll
138 * get called forever, which is bad.
139 */
140 return res;
b76cdba9
MW
141
142err_no_cmd:
90194264 143 pr_err("no command found in bonding_masters - use +ifname or -ifname\n");
c4ebc66a 144 return -EPERM;
b76cdba9 145}
373500db 146
b76cdba9 147/* class attribute for bond_masters file. This ends up in /sys/class/net */
4c22400a
EB
148static const struct class_attribute class_attr_bonding_masters = {
149 .attr = {
150 .name = "bonding_masters",
151 .mode = S_IWUSR | S_IRUGO,
152 },
153 .show = bonding_show_bonds,
154 .store = bonding_store_bonds,
4c22400a 155};
b76cdba9 156
dc3e5d18
NA
157/* Generic "store" method for bonding sysfs option setting */
158static ssize_t bonding_sysfs_store_option(struct device *d,
159 struct device_attribute *attr,
160 const char *buffer, size_t count)
161{
162 struct bonding *bond = to_bond(d);
163 const struct bond_option *opt;
164 int ret;
165
166 opt = bond_opt_get_by_name(attr->attr.name);
167 if (WARN_ON(!opt))
168 return -ENOENT;
169 ret = bond_opt_tryset_rtnl(bond, opt->id, (char *)buffer);
170 if (!ret)
171 ret = count;
172
173 return ret;
174}
175
176/* Show the slaves in the current bond. */
43cb76d9
GKH
177static ssize_t bonding_show_slaves(struct device *d,
178 struct device_attribute *attr, char *buf)
b76cdba9 179{
43cb76d9 180 struct bonding *bond = to_bond(d);
9caff1e7 181 struct list_head *iter;
dec1e90e 182 struct slave *slave;
183 int res = 0;
b76cdba9 184
4d1ae5fb 185 if (!rtnl_trylock())
186 return restart_syscall();
187
9caff1e7 188 bond_for_each_slave(bond, slave, iter) {
b76cdba9
MW
189 if (res > (PAGE_SIZE - IFNAMSIZ)) {
190 /* not enough space for another interface name */
191 if ((PAGE_SIZE - res) > 10)
192 res = PAGE_SIZE - 10;
7bd46508 193 res += sprintf(buf + res, "++more++ ");
b76cdba9
MW
194 break;
195 }
196 res += sprintf(buf + res, "%s ", slave->dev->name);
197 }
4d1ae5fb 198
199 rtnl_unlock();
200
1dcdcd69
WF
201 if (res)
202 buf[res-1] = '\n'; /* eat the leftover space */
dec1e90e 203
b76cdba9
MW
204 return res;
205}
3d632c3f 206static DEVICE_ATTR(slaves, S_IRUGO | S_IWUSR, bonding_show_slaves,
dc3e5d18 207 bonding_sysfs_store_option);
b76cdba9 208
dc3e5d18 209/* Show the bonding mode. */
43cb76d9
GKH
210static ssize_t bonding_show_mode(struct device *d,
211 struct device_attribute *attr, char *buf)
b76cdba9 212{
43cb76d9 213 struct bonding *bond = to_bond(d);
f3253339 214 const struct bond_opt_value *val;
b76cdba9 215
01844098 216 val = bond_opt_get_val(BOND_OPT_MODE, BOND_MODE(bond));
2b3798d5 217
01844098 218 return sprintf(buf, "%s %d\n", val->string, BOND_MODE(bond));
b76cdba9 219}
3d632c3f 220static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR,
dc3e5d18 221 bonding_show_mode, bonding_sysfs_store_option);
b76cdba9 222
dc3e5d18 223/* Show the bonding transmit hash method. */
43cb76d9
GKH
224static ssize_t bonding_show_xmit_hash(struct device *d,
225 struct device_attribute *attr,
226 char *buf)
b76cdba9 227{
43cb76d9 228 struct bonding *bond = to_bond(d);
f3253339 229 const struct bond_opt_value *val;
a4b32ce7
NA
230
231 val = bond_opt_get_val(BOND_OPT_XMIT_HASH, bond->params.xmit_policy);
b76cdba9 232
a4b32ce7 233 return sprintf(buf, "%s %d\n", val->string, bond->params.xmit_policy);
b76cdba9 234}
3d632c3f 235static DEVICE_ATTR(xmit_hash_policy, S_IRUGO | S_IWUSR,
dc3e5d18 236 bonding_show_xmit_hash, bonding_sysfs_store_option);
b76cdba9 237
dc3e5d18 238/* Show arp_validate. */
43cb76d9
GKH
239static ssize_t bonding_show_arp_validate(struct device *d,
240 struct device_attribute *attr,
241 char *buf)
f5b2b966 242{
43cb76d9 243 struct bonding *bond = to_bond(d);
f3253339 244 const struct bond_opt_value *val;
16228881
NA
245
246 val = bond_opt_get_val(BOND_OPT_ARP_VALIDATE,
247 bond->params.arp_validate);
f5b2b966 248
16228881 249 return sprintf(buf, "%s %d\n", val->string, bond->params.arp_validate);
f5b2b966 250}
3d632c3f 251static DEVICE_ATTR(arp_validate, S_IRUGO | S_IWUSR, bonding_show_arp_validate,
dc3e5d18
NA
252 bonding_sysfs_store_option);
253
254/* Show arp_all_targets. */
8599b52e
VF
255static ssize_t bonding_show_arp_all_targets(struct device *d,
256 struct device_attribute *attr,
257 char *buf)
258{
259 struct bonding *bond = to_bond(d);
f3253339 260 const struct bond_opt_value *val;
8599b52e 261
edf36b24
NA
262 val = bond_opt_get_val(BOND_OPT_ARP_ALL_TARGETS,
263 bond->params.arp_all_targets);
264 return sprintf(buf, "%s %d\n",
265 val->string, bond->params.arp_all_targets);
8599b52e 266}
8599b52e 267static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
dc3e5d18 268 bonding_show_arp_all_targets, bonding_sysfs_store_option);
f5b2b966 269
dc3e5d18 270/* Show fail_over_mac. */
3d632c3f
SH
271static ssize_t bonding_show_fail_over_mac(struct device *d,
272 struct device_attribute *attr,
273 char *buf)
dd957c57
JV
274{
275 struct bonding *bond = to_bond(d);
f3253339 276 const struct bond_opt_value *val;
dd957c57 277
1df6b6aa
NA
278 val = bond_opt_get_val(BOND_OPT_FAIL_OVER_MAC,
279 bond->params.fail_over_mac);
280
281 return sprintf(buf, "%s %d\n", val->string, bond->params.fail_over_mac);
dd957c57 282}
3d632c3f 283static DEVICE_ATTR(fail_over_mac, S_IRUGO | S_IWUSR,
dc3e5d18 284 bonding_show_fail_over_mac, bonding_sysfs_store_option);
dd957c57 285
dc3e5d18 286/* Show the arp timer interval. */
43cb76d9
GKH
287static ssize_t bonding_show_arp_interval(struct device *d,
288 struct device_attribute *attr,
289 char *buf)
b76cdba9 290{
43cb76d9 291 struct bonding *bond = to_bond(d);
b76cdba9 292
7bd46508 293 return sprintf(buf, "%d\n", bond->params.arp_interval);
b76cdba9 294}
3d632c3f 295static DEVICE_ATTR(arp_interval, S_IRUGO | S_IWUSR,
dc3e5d18 296 bonding_show_arp_interval, bonding_sysfs_store_option);
b76cdba9 297
dc3e5d18 298/* Show the arp targets. */
43cb76d9
GKH
299static ssize_t bonding_show_arp_targets(struct device *d,
300 struct device_attribute *attr,
301 char *buf)
b76cdba9 302{
43cb76d9 303 struct bonding *bond = to_bond(d);
4fb0ef58 304 int i, res = 0;
b76cdba9
MW
305
306 for (i = 0; i < BOND_MAX_ARP_TARGETS; i++) {
307 if (bond->params.arp_targets[i])
63779436
HH
308 res += sprintf(buf + res, "%pI4 ",
309 &bond->params.arp_targets[i]);
b76cdba9 310 }
1dcdcd69
WF
311 if (res)
312 buf[res-1] = '\n'; /* eat the leftover space */
4fb0ef58 313
b76cdba9
MW
314 return res;
315}
dc3e5d18
NA
316static DEVICE_ATTR(arp_ip_target, S_IRUGO | S_IWUSR,
317 bonding_show_arp_targets, bonding_sysfs_store_option);
b76cdba9 318
dc3e5d18 319/* Show the up and down delays. */
43cb76d9
GKH
320static ssize_t bonding_show_downdelay(struct device *d,
321 struct device_attribute *attr,
322 char *buf)
b76cdba9 323{
43cb76d9 324 struct bonding *bond = to_bond(d);
b76cdba9 325
7bd46508 326 return sprintf(buf, "%d\n", bond->params.downdelay * bond->params.miimon);
b76cdba9 327}
3d632c3f 328static DEVICE_ATTR(downdelay, S_IRUGO | S_IWUSR,
dc3e5d18 329 bonding_show_downdelay, bonding_sysfs_store_option);
b76cdba9 330
43cb76d9
GKH
331static ssize_t bonding_show_updelay(struct device *d,
332 struct device_attribute *attr,
333 char *buf)
b76cdba9 334{
43cb76d9 335 struct bonding *bond = to_bond(d);
b76cdba9 336
7bd46508 337 return sprintf(buf, "%d\n", bond->params.updelay * bond->params.miimon);
b76cdba9
MW
338
339}
3d632c3f 340static DEVICE_ATTR(updelay, S_IRUGO | S_IWUSR,
dc3e5d18 341 bonding_show_updelay, bonding_sysfs_store_option);
b76cdba9 342
dc3e5d18 343/* Show the LACP interval. */
43cb76d9
GKH
344static ssize_t bonding_show_lacp(struct device *d,
345 struct device_attribute *attr,
346 char *buf)
b76cdba9 347{
43cb76d9 348 struct bonding *bond = to_bond(d);
f3253339 349 const struct bond_opt_value *val;
b76cdba9 350
d3131de7
NA
351 val = bond_opt_get_val(BOND_OPT_LACP_RATE, bond->params.lacp_fast);
352
353 return sprintf(buf, "%s %d\n", val->string, bond->params.lacp_fast);
b76cdba9 354}
3d632c3f 355static DEVICE_ATTR(lacp_rate, S_IRUGO | S_IWUSR,
dc3e5d18 356 bonding_show_lacp, bonding_sysfs_store_option);
b76cdba9 357
655f8919 358static ssize_t bonding_show_min_links(struct device *d,
359 struct device_attribute *attr,
360 char *buf)
361{
362 struct bonding *bond = to_bond(d);
363
014f1b20 364 return sprintf(buf, "%u\n", bond->params.min_links);
655f8919 365}
655f8919 366static DEVICE_ATTR(min_links, S_IRUGO | S_IWUSR,
dc3e5d18 367 bonding_show_min_links, bonding_sysfs_store_option);
655f8919 368
fd989c83
JV
369static ssize_t bonding_show_ad_select(struct device *d,
370 struct device_attribute *attr,
371 char *buf)
372{
373 struct bonding *bond = to_bond(d);
f3253339 374 const struct bond_opt_value *val;
fd989c83 375
9e5f5eeb
NA
376 val = bond_opt_get_val(BOND_OPT_AD_SELECT, bond->params.ad_select);
377
378 return sprintf(buf, "%s %d\n", val->string, bond->params.ad_select);
fd989c83 379}
3d632c3f 380static DEVICE_ATTR(ad_select, S_IRUGO | S_IWUSR,
dc3e5d18 381 bonding_show_ad_select, bonding_sysfs_store_option);
fd989c83 382
205845a3 383/* Show the number of peer notifications to send after a failover event. */
ad246c99
BH
384static ssize_t bonding_show_num_peer_notif(struct device *d,
385 struct device_attribute *attr,
386 char *buf)
387{
388 struct bonding *bond = to_bond(d);
389 return sprintf(buf, "%d\n", bond->params.num_peer_notif);
390}
ad246c99 391static DEVICE_ATTR(num_grat_arp, S_IRUGO | S_IWUSR,
205845a3 392 bonding_show_num_peer_notif, bonding_sysfs_store_option);
ad246c99 393static DEVICE_ATTR(num_unsol_na, S_IRUGO | S_IWUSR,
205845a3 394 bonding_show_num_peer_notif, bonding_sysfs_store_option);
ad246c99 395
dc3e5d18 396/* Show the MII monitor interval. */
43cb76d9
GKH
397static ssize_t bonding_show_miimon(struct device *d,
398 struct device_attribute *attr,
399 char *buf)
b76cdba9 400{
43cb76d9 401 struct bonding *bond = to_bond(d);
b76cdba9 402
7bd46508 403 return sprintf(buf, "%d\n", bond->params.miimon);
b76cdba9 404}
3d632c3f 405static DEVICE_ATTR(miimon, S_IRUGO | S_IWUSR,
dc3e5d18 406 bonding_show_miimon, bonding_sysfs_store_option);
b76cdba9 407
dc3e5d18 408/* Show the primary slave. */
43cb76d9
GKH
409static ssize_t bonding_show_primary(struct device *d,
410 struct device_attribute *attr,
411 char *buf)
b76cdba9 412{
43cb76d9 413 struct bonding *bond = to_bond(d);
059b47e8
NA
414 struct slave *primary;
415 int count = 0;
b76cdba9 416
059b47e8
NA
417 rcu_read_lock();
418 primary = rcu_dereference(bond->primary_slave);
419 if (primary)
420 count = sprintf(buf, "%s\n", primary->dev->name);
421 rcu_read_unlock();
b76cdba9
MW
422
423 return count;
424}
3d632c3f 425static DEVICE_ATTR(primary, S_IRUGO | S_IWUSR,
dc3e5d18 426 bonding_show_primary, bonding_sysfs_store_option);
b76cdba9 427
dc3e5d18 428/* Show the primary_reselect flag. */
a549952a
JP
429static ssize_t bonding_show_primary_reselect(struct device *d,
430 struct device_attribute *attr,
431 char *buf)
432{
433 struct bonding *bond = to_bond(d);
f3253339 434 const struct bond_opt_value *val;
388d3a6d
NA
435
436 val = bond_opt_get_val(BOND_OPT_PRIMARY_RESELECT,
437 bond->params.primary_reselect);
a549952a
JP
438
439 return sprintf(buf, "%s %d\n",
388d3a6d 440 val->string, bond->params.primary_reselect);
a549952a 441}
a549952a 442static DEVICE_ATTR(primary_reselect, S_IRUGO | S_IWUSR,
dc3e5d18 443 bonding_show_primary_reselect, bonding_sysfs_store_option);
a549952a 444
dc3e5d18 445/* Show the use_carrier flag. */
43cb76d9
GKH
446static ssize_t bonding_show_carrier(struct device *d,
447 struct device_attribute *attr,
448 char *buf)
b76cdba9 449{
43cb76d9 450 struct bonding *bond = to_bond(d);
b76cdba9 451
7bd46508 452 return sprintf(buf, "%d\n", bond->params.use_carrier);
b76cdba9 453}
3d632c3f 454static DEVICE_ATTR(use_carrier, S_IRUGO | S_IWUSR,
dc3e5d18 455 bonding_show_carrier, bonding_sysfs_store_option);
b76cdba9
MW
456
457
dc3e5d18 458/* Show currently active_slave. */
43cb76d9
GKH
459static ssize_t bonding_show_active_slave(struct device *d,
460 struct device_attribute *attr,
461 char *buf)
b76cdba9 462{
43cb76d9 463 struct bonding *bond = to_bond(d);
752d48b5 464 struct net_device *slave_dev;
16cd0160 465 int count = 0;
b76cdba9 466
278b2083 467 rcu_read_lock();
752d48b5
JP
468 slave_dev = bond_option_active_slave_get_rcu(bond);
469 if (slave_dev)
470 count = sprintf(buf, "%s\n", slave_dev->name);
278b2083 471 rcu_read_unlock();
472
b76cdba9
MW
473 return count;
474}
3d632c3f 475static DEVICE_ATTR(active_slave, S_IRUGO | S_IWUSR,
dc3e5d18 476 bonding_show_active_slave, bonding_sysfs_store_option);
b76cdba9 477
dc3e5d18 478/* Show link status of the bond interface. */
43cb76d9
GKH
479static ssize_t bonding_show_mii_status(struct device *d,
480 struct device_attribute *attr,
481 char *buf)
b76cdba9 482{
43cb76d9 483 struct bonding *bond = to_bond(d);
c2646b59 484 bool active = !!rcu_access_pointer(bond->curr_active_slave);
b76cdba9 485
c2646b59 486 return sprintf(buf, "%s\n", active ? "up" : "down");
b76cdba9 487}
43cb76d9 488static DEVICE_ATTR(mii_status, S_IRUGO, bonding_show_mii_status, NULL);
b76cdba9 489
dc3e5d18 490/* Show current 802.3ad aggregator ID. */
43cb76d9
GKH
491static ssize_t bonding_show_ad_aggregator(struct device *d,
492 struct device_attribute *attr,
493 char *buf)
b76cdba9
MW
494{
495 int count = 0;
43cb76d9 496 struct bonding *bond = to_bond(d);
b76cdba9 497
01844098 498 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
b76cdba9 499 struct ad_info ad_info;
3d632c3f 500 count = sprintf(buf, "%d\n",
318debd8 501 bond_3ad_get_active_agg_info(bond, &ad_info)
3d632c3f 502 ? 0 : ad_info.aggregator_id);
b76cdba9 503 }
b76cdba9
MW
504
505 return count;
506}
43cb76d9 507static DEVICE_ATTR(ad_aggregator, S_IRUGO, bonding_show_ad_aggregator, NULL);
b76cdba9
MW
508
509
dc3e5d18 510/* Show number of active 802.3ad ports. */
43cb76d9
GKH
511static ssize_t bonding_show_ad_num_ports(struct device *d,
512 struct device_attribute *attr,
513 char *buf)
b76cdba9
MW
514{
515 int count = 0;
43cb76d9 516 struct bonding *bond = to_bond(d);
b76cdba9 517
01844098 518 if (BOND_MODE(bond) == BOND_MODE_8023AD) {
b76cdba9 519 struct ad_info ad_info;
3d632c3f 520 count = sprintf(buf, "%d\n",
318debd8 521 bond_3ad_get_active_agg_info(bond, &ad_info)
3d632c3f 522 ? 0 : ad_info.ports);
b76cdba9 523 }
b76cdba9
MW
524
525 return count;
526}
43cb76d9 527static DEVICE_ATTR(ad_num_ports, S_IRUGO, bonding_show_ad_num_ports, NULL);
b76cdba9
MW
528
529
dc3e5d18 530/* Show current 802.3ad actor key. */
43cb76d9
GKH
531static ssize_t bonding_show_ad_actor_key(struct device *d,
532 struct device_attribute *attr,
533 char *buf)
b76cdba9
MW
534{
535 int count = 0;
43cb76d9 536 struct bonding *bond = to_bond(d);
b76cdba9 537
4cd6b475 538 if (BOND_MODE(bond) == BOND_MODE_8023AD && capable(CAP_NET_ADMIN)) {
b76cdba9 539 struct ad_info ad_info;
3d632c3f 540 count = sprintf(buf, "%d\n",
318debd8 541 bond_3ad_get_active_agg_info(bond, &ad_info)
3d632c3f 542 ? 0 : ad_info.actor_key);
b76cdba9 543 }
b76cdba9
MW
544
545 return count;
546}
43cb76d9 547static DEVICE_ATTR(ad_actor_key, S_IRUGO, bonding_show_ad_actor_key, NULL);
b76cdba9
MW
548
549
dc3e5d18 550/* Show current 802.3ad partner key. */
43cb76d9
GKH
551static ssize_t bonding_show_ad_partner_key(struct device *d,
552 struct device_attribute *attr,
553 char *buf)
b76cdba9
MW
554{
555 int count = 0;
43cb76d9 556 struct bonding *bond = to_bond(d);
b76cdba9 557
4cd6b475 558 if (BOND_MODE(bond) == BOND_MODE_8023AD && capable(CAP_NET_ADMIN)) {
b76cdba9 559 struct ad_info ad_info;
3d632c3f 560 count = sprintf(buf, "%d\n",
318debd8 561 bond_3ad_get_active_agg_info(bond, &ad_info)
3d632c3f 562 ? 0 : ad_info.partner_key);
b76cdba9 563 }
b76cdba9
MW
564
565 return count;
566}
43cb76d9 567static DEVICE_ATTR(ad_partner_key, S_IRUGO, bonding_show_ad_partner_key, NULL);
b76cdba9
MW
568
569
dc3e5d18 570/* Show current 802.3ad partner mac. */
43cb76d9
GKH
571static ssize_t bonding_show_ad_partner_mac(struct device *d,
572 struct device_attribute *attr,
573 char *buf)
b76cdba9
MW
574{
575 int count = 0;
43cb76d9 576 struct bonding *bond = to_bond(d);
b76cdba9 577
4cd6b475 578 if (BOND_MODE(bond) == BOND_MODE_8023AD && capable(CAP_NET_ADMIN)) {
b76cdba9 579 struct ad_info ad_info;
3d632c3f 580 if (!bond_3ad_get_active_agg_info(bond, &ad_info))
e174961c 581 count = sprintf(buf, "%pM\n", ad_info.partner_system);
b76cdba9 582 }
b76cdba9
MW
583
584 return count;
585}
43cb76d9 586static DEVICE_ATTR(ad_partner_mac, S_IRUGO, bonding_show_ad_partner_mac, NULL);
b76cdba9 587
dc3e5d18 588/* Show the queue_ids of the slaves in the current bond. */
bb1d9123
AG
589static ssize_t bonding_show_queue_id(struct device *d,
590 struct device_attribute *attr,
591 char *buf)
592{
bb1d9123 593 struct bonding *bond = to_bond(d);
9caff1e7 594 struct list_head *iter;
dec1e90e 595 struct slave *slave;
596 int res = 0;
bb1d9123
AG
597
598 if (!rtnl_trylock())
599 return restart_syscall();
600
9caff1e7 601 bond_for_each_slave(bond, slave, iter) {
79236680
NP
602 if (res > (PAGE_SIZE - IFNAMSIZ - 6)) {
603 /* not enough space for another interface_name:queue_id pair */
bb1d9123
AG
604 if ((PAGE_SIZE - res) > 10)
605 res = PAGE_SIZE - 10;
606 res += sprintf(buf + res, "++more++ ");
607 break;
608 }
609 res += sprintf(buf + res, "%s:%d ",
610 slave->dev->name, slave->queue_id);
611 }
bb1d9123
AG
612 if (res)
613 buf[res-1] = '\n'; /* eat the leftover space */
4d1ae5fb 614
bb1d9123 615 rtnl_unlock();
dec1e90e 616
bb1d9123
AG
617 return res;
618}
bb1d9123 619static DEVICE_ATTR(queue_id, S_IRUGO | S_IWUSR, bonding_show_queue_id,
dc3e5d18 620 bonding_sysfs_store_option);
bb1d9123
AG
621
622
dc3e5d18 623/* Show the all_slaves_active flag. */
ebd8e497
AG
624static ssize_t bonding_show_slaves_active(struct device *d,
625 struct device_attribute *attr,
626 char *buf)
627{
628 struct bonding *bond = to_bond(d);
629
630 return sprintf(buf, "%d\n", bond->params.all_slaves_active);
631}
ebd8e497 632static DEVICE_ATTR(all_slaves_active, S_IRUGO | S_IWUSR,
dc3e5d18 633 bonding_show_slaves_active, bonding_sysfs_store_option);
b76cdba9 634
dc3e5d18 635/* Show the number of IGMP membership reports to send on link failure */
c2952c31 636static ssize_t bonding_show_resend_igmp(struct device *d,
94265cf5
FL
637 struct device_attribute *attr,
638 char *buf)
c2952c31
FL
639{
640 struct bonding *bond = to_bond(d);
641
642 return sprintf(buf, "%d\n", bond->params.resend_igmp);
643}
c2952c31 644static DEVICE_ATTR(resend_igmp, S_IRUGO | S_IWUSR,
dc3e5d18 645 bonding_show_resend_igmp, bonding_sysfs_store_option);
c2952c31 646
7eacd038
NH
647
648static ssize_t bonding_show_lp_interval(struct device *d,
649 struct device_attribute *attr,
650 char *buf)
651{
652 struct bonding *bond = to_bond(d);
8d836d09 653
dc3e5d18 654 return sprintf(buf, "%d\n", bond->params.lp_interval);
7eacd038 655}
7eacd038 656static DEVICE_ATTR(lp_interval, S_IRUGO | S_IWUSR,
dc3e5d18 657 bonding_show_lp_interval, bonding_sysfs_store_option);
7eacd038 658
e9f0fb88
MB
659static ssize_t bonding_show_tlb_dynamic_lb(struct device *d,
660 struct device_attribute *attr,
661 char *buf)
662{
663 struct bonding *bond = to_bond(d);
664 return sprintf(buf, "%d\n", bond->params.tlb_dynamic_lb);
665}
e9f0fb88 666static DEVICE_ATTR(tlb_dynamic_lb, S_IRUGO | S_IWUSR,
dc3e5d18 667 bonding_show_tlb_dynamic_lb, bonding_sysfs_store_option);
e9f0fb88 668
73958329
NA
669static ssize_t bonding_show_packets_per_slave(struct device *d,
670 struct device_attribute *attr,
671 char *buf)
672{
673 struct bonding *bond = to_bond(d);
a752a8b9 674 unsigned int packets_per_slave = bond->params.packets_per_slave;
c13ab3ff 675
dc3e5d18 676 return sprintf(buf, "%u\n", packets_per_slave);
73958329 677}
73958329 678static DEVICE_ATTR(packets_per_slave, S_IRUGO | S_IWUSR,
dc3e5d18 679 bonding_show_packets_per_slave, bonding_sysfs_store_option);
73958329 680
6791e466
MB
681static ssize_t bonding_show_ad_actor_sys_prio(struct device *d,
682 struct device_attribute *attr,
683 char *buf)
684{
685 struct bonding *bond = to_bond(d);
686
4cd6b475 687 if (BOND_MODE(bond) == BOND_MODE_8023AD && capable(CAP_NET_ADMIN))
6791e466
MB
688 return sprintf(buf, "%hu\n", bond->params.ad_actor_sys_prio);
689
690 return 0;
691}
692static DEVICE_ATTR(ad_actor_sys_prio, S_IRUGO | S_IWUSR,
693 bonding_show_ad_actor_sys_prio, bonding_sysfs_store_option);
694
74514957
MB
695static ssize_t bonding_show_ad_actor_system(struct device *d,
696 struct device_attribute *attr,
697 char *buf)
698{
699 struct bonding *bond = to_bond(d);
700
4cd6b475 701 if (BOND_MODE(bond) == BOND_MODE_8023AD && capable(CAP_NET_ADMIN))
74514957
MB
702 return sprintf(buf, "%pM\n", bond->params.ad_actor_system);
703
704 return 0;
705}
706
707static DEVICE_ATTR(ad_actor_system, S_IRUGO | S_IWUSR,
708 bonding_show_ad_actor_system, bonding_sysfs_store_option);
709
d22a5fc0
MB
710static ssize_t bonding_show_ad_user_port_key(struct device *d,
711 struct device_attribute *attr,
712 char *buf)
713{
714 struct bonding *bond = to_bond(d);
715
4cd6b475 716 if (BOND_MODE(bond) == BOND_MODE_8023AD && capable(CAP_NET_ADMIN))
d22a5fc0
MB
717 return sprintf(buf, "%hu\n", bond->params.ad_user_port_key);
718
719 return 0;
720}
721static DEVICE_ATTR(ad_user_port_key, S_IRUGO | S_IWUSR,
722 bonding_show_ad_user_port_key, bonding_sysfs_store_option);
723
b76cdba9 724static struct attribute *per_bond_attrs[] = {
43cb76d9
GKH
725 &dev_attr_slaves.attr,
726 &dev_attr_mode.attr,
dd957c57 727 &dev_attr_fail_over_mac.attr,
43cb76d9 728 &dev_attr_arp_validate.attr,
8599b52e 729 &dev_attr_arp_all_targets.attr,
43cb76d9
GKH
730 &dev_attr_arp_interval.attr,
731 &dev_attr_arp_ip_target.attr,
732 &dev_attr_downdelay.attr,
733 &dev_attr_updelay.attr,
734 &dev_attr_lacp_rate.attr,
fd989c83 735 &dev_attr_ad_select.attr,
43cb76d9 736 &dev_attr_xmit_hash_policy.attr,
ad246c99
BH
737 &dev_attr_num_grat_arp.attr,
738 &dev_attr_num_unsol_na.attr,
43cb76d9
GKH
739 &dev_attr_miimon.attr,
740 &dev_attr_primary.attr,
a549952a 741 &dev_attr_primary_reselect.attr,
43cb76d9
GKH
742 &dev_attr_use_carrier.attr,
743 &dev_attr_active_slave.attr,
744 &dev_attr_mii_status.attr,
745 &dev_attr_ad_aggregator.attr,
746 &dev_attr_ad_num_ports.attr,
747 &dev_attr_ad_actor_key.attr,
748 &dev_attr_ad_partner_key.attr,
749 &dev_attr_ad_partner_mac.attr,
bb1d9123 750 &dev_attr_queue_id.attr,
ebd8e497 751 &dev_attr_all_slaves_active.attr,
c2952c31 752 &dev_attr_resend_igmp.attr,
655f8919 753 &dev_attr_min_links.attr,
7eacd038 754 &dev_attr_lp_interval.attr,
73958329 755 &dev_attr_packets_per_slave.attr,
e9f0fb88 756 &dev_attr_tlb_dynamic_lb.attr,
6791e466 757 &dev_attr_ad_actor_sys_prio.attr,
74514957 758 &dev_attr_ad_actor_system.attr,
d22a5fc0 759 &dev_attr_ad_user_port_key.attr,
b76cdba9
MW
760 NULL,
761};
762
763static struct attribute_group bonding_group = {
764 .name = "bonding",
765 .attrs = per_bond_attrs,
766};
767
dc3e5d18 768/* Initialize sysfs. This sets up the bonding_masters file in
b76cdba9
MW
769 * /sys/class/net.
770 */
4c22400a 771int bond_create_sysfs(struct bond_net *bn)
b76cdba9 772{
b8a9787e 773 int ret;
b76cdba9 774
4c22400a 775 bn->class_attr_bonding_masters = class_attr_bonding_masters;
01718e36 776 sysfs_attr_init(&bn->class_attr_bonding_masters.attr);
4c22400a 777
58292cbe
TH
778 ret = netdev_class_create_file_ns(&bn->class_attr_bonding_masters,
779 bn->net);
dc3e5d18 780 /* Permit multiple loads of the module by ignoring failures to
877cbd36
JV
781 * create the bonding_masters sysfs file. Bonding devices
782 * created by second or subsequent loads of the module will
783 * not be listed in, or controllable by, bonding_masters, but
784 * will have the usual "bonding" sysfs directory.
785 *
786 * This is done to preserve backwards compatibility for
787 * initscripts/sysconfig, which load bonding multiple times to
788 * configure multiple bonding devices.
789 */
790 if (ret == -EEXIST) {
38d2f38b 791 /* Is someone being kinky and naming a device bonding_master? */
4c22400a 792 if (__dev_get_by_name(bn->net,
38d2f38b 793 class_attr_bonding_masters.attr.name))
90194264 794 pr_err("network device named %s already exists in sysfs\n",
38d2f38b 795 class_attr_bonding_masters.attr.name);
130aa61a 796 ret = 0;
877cbd36 797 }
b76cdba9
MW
798
799 return ret;
800
801}
802
dc3e5d18 803/* Remove /sys/class/net/bonding_masters. */
4c22400a 804void bond_destroy_sysfs(struct bond_net *bn)
b76cdba9 805{
58292cbe 806 netdev_class_remove_file_ns(&bn->class_attr_bonding_masters, bn->net);
b76cdba9
MW
807}
808
dc3e5d18 809/* Initialize sysfs for each bond. This sets up and registers
b76cdba9
MW
810 * the 'bondctl' directory for each individual bond under /sys/class/net.
811 */
6151b3d4 812void bond_prepare_sysfs_group(struct bonding *bond)
b76cdba9 813{
6151b3d4 814 bond->dev->sysfs_groups[0] = &bonding_group;
b76cdba9
MW
815}
816
This page took 1.354102 seconds and 5 git commands to generate.