blob: 88715edb119a1a476af981e21e9cbfe61d3c7683 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Sysfs attributes of bridge ports
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Stephen Hemminger <shemminger@osdl.org>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/netdevice.h>
17#include <linux/if_bridge.h>
18#include <linux/rtnetlink.h>
19#include <linux/spinlock.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010020#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "br_private.h"
23
24struct brport_attribute {
25 struct attribute attr;
26 ssize_t (*show)(struct net_bridge_port *, char *);
stephen hemminger14f98f22011-04-04 14:03:33 +000027 int (*store)(struct net_bridge_port *, unsigned long);
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +030028 int (*store_raw)(struct net_bridge_port *, char *);
29};
30
31#define BRPORT_ATTR_RAW(_name, _mode, _show, _store) \
32const struct brport_attribute brport_attr_##_name = { \
33 .attr = {.name = __stringify(_name), \
34 .mode = _mode }, \
35 .show = _show, \
36 .store_raw = _store, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
tanxiaojun31a5b832013-12-19 13:28:12 +080039#define BRPORT_ATTR(_name, _mode, _show, _store) \
stephen hemminger5a0d5132012-07-30 08:55:49 +000040const struct brport_attribute brport_attr_##_name = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .attr = {.name = __stringify(_name), \
Tejun Heo7b595752007-06-14 03:45:17 +090042 .mode = _mode }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 .show = _show, \
44 .store = _store, \
45};
46
stephen hemmingercd753732012-11-13 07:53:06 +000047#define BRPORT_ATTR_FLAG(_name, _mask) \
48static ssize_t show_##_name(struct net_bridge_port *p, char *buf) \
49{ \
50 return sprintf(buf, "%d\n", !!(p->flags & _mask)); \
51} \
52static int store_##_name(struct net_bridge_port *p, unsigned long v) \
53{ \
Vlad Yasevich63c3a622014-05-16 09:59:15 -040054 return store_flag(p, v, _mask); \
stephen hemmingercd753732012-11-13 07:53:06 +000055} \
Joe Perchesd6444062018-03-23 15:54:38 -070056static BRPORT_ATTR(_name, 0644, \
stephen hemmingercd753732012-11-13 07:53:06 +000057 show_##_name, store_##_name)
58
Vlad Yasevich63c3a622014-05-16 09:59:15 -040059static int store_flag(struct net_bridge_port *p, unsigned long v,
60 unsigned long mask)
61{
Vlad Yaseviche028e4b2014-05-16 09:59:16 -040062 unsigned long flags;
63
64 flags = p->flags;
Vlad Yasevich63c3a622014-05-16 09:59:15 -040065
66 if (v)
67 flags |= mask;
68 else
69 flags &= ~mask;
70
71 if (flags != p->flags) {
72 p->flags = flags;
Vlad Yaseviche028e4b2014-05-16 09:59:16 -040073 br_port_flags_change(p, mask);
Vlad Yasevich63c3a622014-05-16 09:59:15 -040074 }
75 return 0;
76}
stephen hemmingercd753732012-11-13 07:53:06 +000077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static ssize_t show_path_cost(struct net_bridge_port *p, char *buf)
79{
80 return sprintf(buf, "%d\n", p->path_cost);
81}
stephen hemminger14f98f22011-04-04 14:03:33 +000082
Joe Perchesd6444062018-03-23 15:54:38 -070083static BRPORT_ATTR(path_cost, 0644,
stephen hemminger14f98f22011-04-04 14:03:33 +000084 show_path_cost, br_stp_set_path_cost);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86static ssize_t show_priority(struct net_bridge_port *p, char *buf)
87{
88 return sprintf(buf, "%d\n", p->priority);
89}
stephen hemminger14f98f22011-04-04 14:03:33 +000090
Joe Perchesd6444062018-03-23 15:54:38 -070091static BRPORT_ATTR(priority, 0644,
stephen hemminger14f98f22011-04-04 14:03:33 +000092 show_priority, br_stp_set_port_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94static ssize_t show_designated_root(struct net_bridge_port *p, char *buf)
95{
96 return br_show_bridge_id(buf, &p->designated_root);
97}
Joe Perchesd6444062018-03-23 15:54:38 -070098static BRPORT_ATTR(designated_root, 0444, show_designated_root, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100static ssize_t show_designated_bridge(struct net_bridge_port *p, char *buf)
101{
102 return br_show_bridge_id(buf, &p->designated_bridge);
103}
Joe Perchesd6444062018-03-23 15:54:38 -0700104static BRPORT_ATTR(designated_bridge, 0444, show_designated_bridge, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106static ssize_t show_designated_port(struct net_bridge_port *p, char *buf)
107{
108 return sprintf(buf, "%d\n", p->designated_port);
109}
Joe Perchesd6444062018-03-23 15:54:38 -0700110static BRPORT_ATTR(designated_port, 0444, show_designated_port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112static ssize_t show_designated_cost(struct net_bridge_port *p, char *buf)
113{
114 return sprintf(buf, "%d\n", p->designated_cost);
115}
Joe Perchesd6444062018-03-23 15:54:38 -0700116static BRPORT_ATTR(designated_cost, 0444, show_designated_cost, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118static ssize_t show_port_id(struct net_bridge_port *p, char *buf)
119{
120 return sprintf(buf, "0x%x\n", p->port_id);
121}
Joe Perchesd6444062018-03-23 15:54:38 -0700122static BRPORT_ATTR(port_id, 0444, show_port_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124static ssize_t show_port_no(struct net_bridge_port *p, char *buf)
125{
126 return sprintf(buf, "0x%x\n", p->port_no);
127}
128
Joe Perchesd6444062018-03-23 15:54:38 -0700129static BRPORT_ATTR(port_no, 0444, show_port_no, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131static ssize_t show_change_ack(struct net_bridge_port *p, char *buf)
132{
133 return sprintf(buf, "%d\n", p->topology_change_ack);
134}
Joe Perchesd6444062018-03-23 15:54:38 -0700135static BRPORT_ATTR(change_ack, 0444, show_change_ack, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137static ssize_t show_config_pending(struct net_bridge_port *p, char *buf)
138{
139 return sprintf(buf, "%d\n", p->config_pending);
140}
Joe Perchesd6444062018-03-23 15:54:38 -0700141static BRPORT_ATTR(config_pending, 0444, show_config_pending, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143static ssize_t show_port_state(struct net_bridge_port *p, char *buf)
144{
145 return sprintf(buf, "%d\n", p->state);
146}
Joe Perchesd6444062018-03-23 15:54:38 -0700147static BRPORT_ATTR(state, 0444, show_port_state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149static ssize_t show_message_age_timer(struct net_bridge_port *p,
150 char *buf)
151{
152 return sprintf(buf, "%ld\n", br_timer_value(&p->message_age_timer));
153}
Joe Perchesd6444062018-03-23 15:54:38 -0700154static BRPORT_ATTR(message_age_timer, 0444, show_message_age_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156static ssize_t show_forward_delay_timer(struct net_bridge_port *p,
157 char *buf)
158{
159 return sprintf(buf, "%ld\n", br_timer_value(&p->forward_delay_timer));
160}
Joe Perchesd6444062018-03-23 15:54:38 -0700161static BRPORT_ATTR(forward_delay_timer, 0444, show_forward_delay_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163static ssize_t show_hold_timer(struct net_bridge_port *p,
164 char *buf)
165{
166 return sprintf(buf, "%ld\n", br_timer_value(&p->hold_timer));
167}
Joe Perchesd6444062018-03-23 15:54:38 -0700168static BRPORT_ATTR(hold_timer, 0444, show_hold_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
stephen hemminger14f98f22011-04-04 14:03:33 +0000170static int store_flush(struct net_bridge_port *p, unsigned long v)
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700171{
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700172 br_fdb_delete_by_port(p->br, p, 0, 0); // Don't delete local entry
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700173 return 0;
174}
Joe Perchesd6444062018-03-23 15:54:38 -0700175static BRPORT_ATTR(flush, 0200, NULL, store_flush);
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700176
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300177static ssize_t show_group_fwd_mask(struct net_bridge_port *p, char *buf)
178{
179 return sprintf(buf, "%#x\n", p->group_fwd_mask);
180}
181
182static int store_group_fwd_mask(struct net_bridge_port *p,
183 unsigned long v)
184{
185 if (v & BR_GROUPFWD_MACPAUSE)
186 return -EINVAL;
187 p->group_fwd_mask = v;
188
189 return 0;
190}
Joe Perchesd6444062018-03-23 15:54:38 -0700191static BRPORT_ATTR(group_fwd_mask, 0644, show_group_fwd_mask,
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300192 store_group_fwd_mask);
193
Nikolay Aleksandrov2756f682018-07-23 11:16:59 +0300194static ssize_t show_backup_port(struct net_bridge_port *p, char *buf)
195{
196 struct net_bridge_port *backup_p;
197 int ret = 0;
198
199 rcu_read_lock();
200 backup_p = rcu_dereference(p->backup_port);
201 if (backup_p)
202 ret = sprintf(buf, "%s\n", backup_p->dev->name);
203 rcu_read_unlock();
204
205 return ret;
206}
207
208static int store_backup_port(struct net_bridge_port *p, char *buf)
209{
210 struct net_device *backup_dev = NULL;
211 char *nl = strchr(buf, '\n');
212
213 if (nl)
214 *nl = '\0';
215
216 if (strlen(buf) > 0) {
217 backup_dev = __dev_get_by_name(dev_net(p->dev), buf);
218 if (!backup_dev)
219 return -ENOENT;
220 }
221
222 return nbp_backup_change(p, backup_dev);
223}
224static BRPORT_ATTR_RAW(backup_port, 0644, show_backup_port, store_backup_port);
225
stephen hemmingercd753732012-11-13 07:53:06 +0000226BRPORT_ATTR_FLAG(hairpin_mode, BR_HAIRPIN_MODE);
stephen hemmingera2e01a62012-11-13 07:53:07 +0000227BRPORT_ATTR_FLAG(bpdu_guard, BR_BPDU_GUARD);
stephen hemminger1007dd12012-11-13 07:53:08 +0000228BRPORT_ATTR_FLAG(root_block, BR_ROOT_BLOCK);
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400229BRPORT_ATTR_FLAG(learning, BR_LEARNING);
Vlad Yasevich867a5942013-06-05 10:08:01 -0400230BRPORT_ATTR_FLAG(unicast_flood, BR_FLOOD);
Kyeyoon Park95850112014-10-23 14:49:17 -0700231BRPORT_ATTR_FLAG(proxyarp, BR_PROXYARP);
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200232BRPORT_ATTR_FLAG(proxyarp_wifi, BR_PROXYARP_WIFI);
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200233BRPORT_ATTR_FLAG(multicast_flood, BR_MCAST_FLOOD);
Mike Manning99f906e2017-04-26 14:48:09 +0100234BRPORT_ATTR_FLAG(broadcast_flood, BR_BCAST_FLOOD);
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700235BRPORT_ATTR_FLAG(neigh_suppress, BR_NEIGH_SUPPRESS);
Nikolay Aleksandrov7d850ab2018-05-24 11:56:48 +0300236BRPORT_ATTR_FLAG(isolated, BR_ISOLATED);
Fischer, Anna3982d3d2009-08-13 06:55:16 +0000237
Herbert Xu0909e112010-02-27 19:41:49 +0000238#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
239static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf)
240{
241 return sprintf(buf, "%d\n", p->multicast_router);
242}
243
stephen hemminger14f98f22011-04-04 14:03:33 +0000244static int store_multicast_router(struct net_bridge_port *p,
Herbert Xu0909e112010-02-27 19:41:49 +0000245 unsigned long v)
246{
247 return br_multicast_set_port_router(p, v);
248}
Joe Perchesd6444062018-03-23 15:54:38 -0700249static BRPORT_ATTR(multicast_router, 0644, show_multicast_router,
Herbert Xu0909e112010-02-27 19:41:49 +0000250 store_multicast_router);
Amerigo Wang50426b52012-12-03 23:56:40 +0000251
David S. Millerc2d3bab2012-12-05 16:24:45 -0500252BRPORT_ATTR_FLAG(multicast_fast_leave, BR_MULTICAST_FAST_LEAVE);
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100253BRPORT_ATTR_FLAG(multicast_to_unicast, BR_MULTICAST_TO_UNICAST);
Herbert Xu0909e112010-02-27 19:41:49 +0000254#endif
255
stephen hemminger5a0d5132012-07-30 08:55:49 +0000256static const struct brport_attribute *brport_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 &brport_attr_path_cost,
258 &brport_attr_priority,
259 &brport_attr_port_id,
260 &brport_attr_port_no,
261 &brport_attr_designated_root,
262 &brport_attr_designated_bridge,
263 &brport_attr_designated_port,
264 &brport_attr_designated_cost,
265 &brport_attr_state,
266 &brport_attr_change_ack,
267 &brport_attr_config_pending,
268 &brport_attr_message_age_timer,
269 &brport_attr_forward_delay_timer,
270 &brport_attr_hold_timer,
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700271 &brport_attr_flush,
Fischer, Anna3982d3d2009-08-13 06:55:16 +0000272 &brport_attr_hairpin_mode,
stephen hemmingera2e01a62012-11-13 07:53:07 +0000273 &brport_attr_bpdu_guard,
stephen hemminger1007dd12012-11-13 07:53:08 +0000274 &brport_attr_root_block,
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400275 &brport_attr_learning,
Vlad Yasevich867a5942013-06-05 10:08:01 -0400276 &brport_attr_unicast_flood,
Herbert Xu0909e112010-02-27 19:41:49 +0000277#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
278 &brport_attr_multicast_router,
Amerigo Wang50426b52012-12-03 23:56:40 +0000279 &brport_attr_multicast_fast_leave,
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100280 &brport_attr_multicast_to_unicast,
Herbert Xu0909e112010-02-27 19:41:49 +0000281#endif
Kyeyoon Park95850112014-10-23 14:49:17 -0700282 &brport_attr_proxyarp,
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200283 &brport_attr_proxyarp_wifi,
Nikolay Aleksandrov4eb67532016-10-13 15:20:52 +0200284 &brport_attr_multicast_flood,
Mike Manning99f906e2017-04-26 14:48:09 +0100285 &brport_attr_broadcast_flood,
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300286 &brport_attr_group_fwd_mask,
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700287 &brport_attr_neigh_suppress,
Nikolay Aleksandrov7d850ab2018-05-24 11:56:48 +0300288 &brport_attr_isolated,
Nikolay Aleksandrov2756f682018-07-23 11:16:59 +0300289 &brport_attr_backup_port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 NULL
291};
292
293#define to_brport_attr(_at) container_of(_at, struct brport_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
tanxiaojun56b148e2013-12-19 13:28:13 +0800295static ssize_t brport_show(struct kobject *kobj,
296 struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
tanxiaojun56b148e2013-12-19 13:28:13 +0800298 struct brport_attribute *brport_attr = to_brport_attr(attr);
Tyler Hicks705e0de2018-07-20 21:56:54 +0000299 struct net_bridge_port *p = kobj_to_brport(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Xin Long1b125802018-02-12 17:15:40 +0800301 if (!brport_attr->show)
302 return -EINVAL;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return brport_attr->show(p, buf);
305}
306
tanxiaojun56b148e2013-12-19 13:28:13 +0800307static ssize_t brport_store(struct kobject *kobj,
308 struct attribute *attr,
309 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
tanxiaojun56b148e2013-12-19 13:28:13 +0800311 struct brport_attribute *brport_attr = to_brport_attr(attr);
Tyler Hicks705e0de2018-07-20 21:56:54 +0000312 struct net_bridge_port *p = kobj_to_brport(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 unsigned long val;
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300315 char *endp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Eric W. Biedermancb990502012-11-16 03:03:08 +0000317 if (!ns_capable(dev_net(p->dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return -EPERM;
319
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300320 if (!rtnl_trylock())
321 return restart_syscall();
322
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300323 if (brport_attr->store_raw) {
324 char *buf_copy;
325
326 buf_copy = kstrndup(buf, count, GFP_KERNEL);
327 if (!buf_copy) {
328 ret = -ENOMEM;
329 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300331 spin_lock_bh(&p->br->lock);
332 ret = brport_attr->store_raw(p, buf_copy);
333 spin_unlock_bh(&p->br->lock);
334 kfree(buf_copy);
335 } else if (brport_attr->store) {
336 val = simple_strtoul(buf, &endp, 0);
337 if (endp == buf)
338 goto out_unlock;
339 spin_lock_bh(&p->br->lock);
340 ret = brport_attr->store(p, val);
341 spin_unlock_bh(&p->br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300343
344 if (!ret) {
345 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
346 ret = count;
347 }
348out_unlock:
349 rtnl_unlock();
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return ret;
352}
353
Emese Revfy52cf25d2010-01-19 02:58:23 +0100354const struct sysfs_ops brport_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 .show = brport_show,
356 .store = brport_store,
357};
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/*
360 * Add sysfs entries to ethernet device added to a bridge.
361 * Creates a brport subdirectory with bridge attributes.
Simon Arlotte0f43752010-05-10 09:31:11 +0000362 * Puts symlink in bridge's brif subdirectory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 */
364int br_sysfs_addif(struct net_bridge_port *p)
365{
366 struct net_bridge *br = p->br;
stephen hemminger5a0d5132012-07-30 08:55:49 +0000367 const struct brport_attribute **a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 int err;
369
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700370 err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 SYSFS_BRIDGE_PORT_LINK);
372 if (err)
Simon Arlotte0f43752010-05-10 09:31:11 +0000373 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 for (a = brport_attrs; *a; ++a) {
376 err = sysfs_create_file(&p->kobj, &((*a)->attr));
377 if (err)
Simon Arlotte0f43752010-05-10 09:31:11 +0000378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
Simon Arlotte0f43752010-05-10 09:31:11 +0000381 strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
382 return sysfs_create_link(br->ifobj, &p->kobj, p->sysfs_name);
383}
384
385/* Rename bridge's brif symlink */
386int br_sysfs_renameif(struct net_bridge_port *p)
387{
388 struct net_bridge *br = p->br;
389 int err;
390
391 /* If a rename fails, the rollback will cause another
392 * rename call with the existing name.
393 */
394 if (!strncmp(p->sysfs_name, p->dev->name, IFNAMSIZ))
395 return 0;
396
397 err = sysfs_rename_link(br->ifobj, &p->kobj,
398 p->sysfs_name, p->dev->name);
399 if (err)
400 netdev_notice(br->dev, "unable to rename link %s to %s",
401 p->sysfs_name, p->dev->name);
402 else
403 strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return err;
406}