blob: 7a59cdddd3ce3b64a9a6899e6d0d14f0fd79e91c [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Sysfs attributes of bridge ports
4 * Linux ethernet bridge
5 *
6 * Authors:
7 * Stephen Hemminger <shemminger@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Randy Dunlap4fc268d2006-01-11 12:17:47 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel.h>
12#include <linux/netdevice.h>
13#include <linux/if_bridge.h>
14#include <linux/rtnetlink.h>
15#include <linux/spinlock.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010016#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include "br_private.h"
19
20struct brport_attribute {
21 struct attribute attr;
22 ssize_t (*show)(struct net_bridge_port *, char *);
stephen hemminger14f98f22011-04-04 14:03:33 +000023 int (*store)(struct net_bridge_port *, unsigned long);
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +030024 int (*store_raw)(struct net_bridge_port *, char *);
25};
26
27#define BRPORT_ATTR_RAW(_name, _mode, _show, _store) \
28const struct brport_attribute brport_attr_##_name = { \
29 .attr = {.name = __stringify(_name), \
30 .mode = _mode }, \
31 .show = _show, \
32 .store_raw = _store, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
tanxiaojun31a5b832013-12-19 13:28:12 +080035#define BRPORT_ATTR(_name, _mode, _show, _store) \
stephen hemminger5a0d5132012-07-30 08:55:49 +000036const struct brport_attribute brport_attr_##_name = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 .attr = {.name = __stringify(_name), \
Tejun Heo7b595752007-06-14 03:45:17 +090038 .mode = _mode }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .show = _show, \
40 .store = _store, \
41};
42
stephen hemmingercd753732012-11-13 07:53:06 +000043#define BRPORT_ATTR_FLAG(_name, _mask) \
44static ssize_t show_##_name(struct net_bridge_port *p, char *buf) \
45{ \
46 return sprintf(buf, "%d\n", !!(p->flags & _mask)); \
47} \
48static int store_##_name(struct net_bridge_port *p, unsigned long v) \
49{ \
Vlad Yasevich63c3a622014-05-16 09:59:15 -040050 return store_flag(p, v, _mask); \
stephen hemmingercd753732012-11-13 07:53:06 +000051} \
Joe Perchesd6444062018-03-23 15:54:38 -070052static BRPORT_ATTR(_name, 0644, \
stephen hemmingercd753732012-11-13 07:53:06 +000053 show_##_name, store_##_name)
54
Vlad Yasevich63c3a622014-05-16 09:59:15 -040055static int store_flag(struct net_bridge_port *p, unsigned long v,
56 unsigned long mask)
57{
Vlad Yaseviche028e4b2014-05-16 09:59:16 -040058 unsigned long flags;
59
60 flags = p->flags;
Vlad Yasevich63c3a622014-05-16 09:59:15 -040061
62 if (v)
63 flags |= mask;
64 else
65 flags &= ~mask;
66
67 if (flags != p->flags) {
68 p->flags = flags;
Vlad Yaseviche028e4b2014-05-16 09:59:16 -040069 br_port_flags_change(p, mask);
Vlad Yasevich63c3a622014-05-16 09:59:15 -040070 }
71 return 0;
72}
stephen hemmingercd753732012-11-13 07:53:06 +000073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static ssize_t show_path_cost(struct net_bridge_port *p, char *buf)
75{
76 return sprintf(buf, "%d\n", p->path_cost);
77}
stephen hemminger14f98f22011-04-04 14:03:33 +000078
Joe Perchesd6444062018-03-23 15:54:38 -070079static BRPORT_ATTR(path_cost, 0644,
stephen hemminger14f98f22011-04-04 14:03:33 +000080 show_path_cost, br_stp_set_path_cost);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82static ssize_t show_priority(struct net_bridge_port *p, char *buf)
83{
84 return sprintf(buf, "%d\n", p->priority);
85}
stephen hemminger14f98f22011-04-04 14:03:33 +000086
Joe Perchesd6444062018-03-23 15:54:38 -070087static BRPORT_ATTR(priority, 0644,
stephen hemminger14f98f22011-04-04 14:03:33 +000088 show_priority, br_stp_set_port_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90static ssize_t show_designated_root(struct net_bridge_port *p, char *buf)
91{
92 return br_show_bridge_id(buf, &p->designated_root);
93}
Joe Perchesd6444062018-03-23 15:54:38 -070094static BRPORT_ATTR(designated_root, 0444, show_designated_root, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96static ssize_t show_designated_bridge(struct net_bridge_port *p, char *buf)
97{
98 return br_show_bridge_id(buf, &p->designated_bridge);
99}
Joe Perchesd6444062018-03-23 15:54:38 -0700100static BRPORT_ATTR(designated_bridge, 0444, show_designated_bridge, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102static ssize_t show_designated_port(struct net_bridge_port *p, char *buf)
103{
104 return sprintf(buf, "%d\n", p->designated_port);
105}
Joe Perchesd6444062018-03-23 15:54:38 -0700106static BRPORT_ATTR(designated_port, 0444, show_designated_port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108static ssize_t show_designated_cost(struct net_bridge_port *p, char *buf)
109{
110 return sprintf(buf, "%d\n", p->designated_cost);
111}
Joe Perchesd6444062018-03-23 15:54:38 -0700112static BRPORT_ATTR(designated_cost, 0444, show_designated_cost, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114static ssize_t show_port_id(struct net_bridge_port *p, char *buf)
115{
116 return sprintf(buf, "0x%x\n", p->port_id);
117}
Joe Perchesd6444062018-03-23 15:54:38 -0700118static BRPORT_ATTR(port_id, 0444, show_port_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120static ssize_t show_port_no(struct net_bridge_port *p, char *buf)
121{
122 return sprintf(buf, "0x%x\n", p->port_no);
123}
124
Joe Perchesd6444062018-03-23 15:54:38 -0700125static BRPORT_ATTR(port_no, 0444, show_port_no, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127static ssize_t show_change_ack(struct net_bridge_port *p, char *buf)
128{
129 return sprintf(buf, "%d\n", p->topology_change_ack);
130}
Joe Perchesd6444062018-03-23 15:54:38 -0700131static BRPORT_ATTR(change_ack, 0444, show_change_ack, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static ssize_t show_config_pending(struct net_bridge_port *p, char *buf)
134{
135 return sprintf(buf, "%d\n", p->config_pending);
136}
Joe Perchesd6444062018-03-23 15:54:38 -0700137static BRPORT_ATTR(config_pending, 0444, show_config_pending, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139static ssize_t show_port_state(struct net_bridge_port *p, char *buf)
140{
141 return sprintf(buf, "%d\n", p->state);
142}
Joe Perchesd6444062018-03-23 15:54:38 -0700143static BRPORT_ATTR(state, 0444, show_port_state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145static ssize_t show_message_age_timer(struct net_bridge_port *p,
146 char *buf)
147{
148 return sprintf(buf, "%ld\n", br_timer_value(&p->message_age_timer));
149}
Joe Perchesd6444062018-03-23 15:54:38 -0700150static BRPORT_ATTR(message_age_timer, 0444, show_message_age_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152static ssize_t show_forward_delay_timer(struct net_bridge_port *p,
153 char *buf)
154{
155 return sprintf(buf, "%ld\n", br_timer_value(&p->forward_delay_timer));
156}
Joe Perchesd6444062018-03-23 15:54:38 -0700157static BRPORT_ATTR(forward_delay_timer, 0444, show_forward_delay_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159static ssize_t show_hold_timer(struct net_bridge_port *p,
160 char *buf)
161{
162 return sprintf(buf, "%ld\n", br_timer_value(&p->hold_timer));
163}
Joe Perchesd6444062018-03-23 15:54:38 -0700164static BRPORT_ATTR(hold_timer, 0444, show_hold_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
stephen hemminger14f98f22011-04-04 14:03:33 +0000166static int store_flush(struct net_bridge_port *p, unsigned long v)
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700167{
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700168 br_fdb_delete_by_port(p->br, p, 0, 0); // Don't delete local entry
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700169 return 0;
170}
Joe Perchesd6444062018-03-23 15:54:38 -0700171static BRPORT_ATTR(flush, 0200, NULL, store_flush);
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700172
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300173static ssize_t show_group_fwd_mask(struct net_bridge_port *p, char *buf)
174{
175 return sprintf(buf, "%#x\n", p->group_fwd_mask);
176}
177
178static int store_group_fwd_mask(struct net_bridge_port *p,
179 unsigned long v)
180{
181 if (v & BR_GROUPFWD_MACPAUSE)
182 return -EINVAL;
183 p->group_fwd_mask = v;
184
185 return 0;
186}
Joe Perchesd6444062018-03-23 15:54:38 -0700187static BRPORT_ATTR(group_fwd_mask, 0644, show_group_fwd_mask,
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300188 store_group_fwd_mask);
189
Nikolay Aleksandrov2756f682018-07-23 11:16:59 +0300190static ssize_t show_backup_port(struct net_bridge_port *p, char *buf)
191{
192 struct net_bridge_port *backup_p;
193 int ret = 0;
194
195 rcu_read_lock();
196 backup_p = rcu_dereference(p->backup_port);
197 if (backup_p)
198 ret = sprintf(buf, "%s\n", backup_p->dev->name);
199 rcu_read_unlock();
200
201 return ret;
202}
203
204static int store_backup_port(struct net_bridge_port *p, char *buf)
205{
206 struct net_device *backup_dev = NULL;
207 char *nl = strchr(buf, '\n');
208
209 if (nl)
210 *nl = '\0';
211
212 if (strlen(buf) > 0) {
213 backup_dev = __dev_get_by_name(dev_net(p->dev), buf);
214 if (!backup_dev)
215 return -ENOENT;
216 }
217
218 return nbp_backup_change(p, backup_dev);
219}
220static BRPORT_ATTR_RAW(backup_port, 0644, show_backup_port, store_backup_port);
221
stephen hemmingercd753732012-11-13 07:53:06 +0000222BRPORT_ATTR_FLAG(hairpin_mode, BR_HAIRPIN_MODE);
stephen hemmingera2e01a62012-11-13 07:53:07 +0000223BRPORT_ATTR_FLAG(bpdu_guard, BR_BPDU_GUARD);
stephen hemminger1007dd12012-11-13 07:53:08 +0000224BRPORT_ATTR_FLAG(root_block, BR_ROOT_BLOCK);
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400225BRPORT_ATTR_FLAG(learning, BR_LEARNING);
Vlad Yasevich867a5942013-06-05 10:08:01 -0400226BRPORT_ATTR_FLAG(unicast_flood, BR_FLOOD);
Kyeyoon Park95850112014-10-23 14:49:17 -0700227BRPORT_ATTR_FLAG(proxyarp, BR_PROXYARP);
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200228BRPORT_ATTR_FLAG(proxyarp_wifi, BR_PROXYARP_WIFI);
Nikolay Aleksandrovb6cb5ac2016-08-31 15:36:52 +0200229BRPORT_ATTR_FLAG(multicast_flood, BR_MCAST_FLOOD);
Mike Manning99f906e2017-04-26 14:48:09 +0100230BRPORT_ATTR_FLAG(broadcast_flood, BR_BCAST_FLOOD);
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700231BRPORT_ATTR_FLAG(neigh_suppress, BR_NEIGH_SUPPRESS);
Nikolay Aleksandrov7d850ab2018-05-24 11:56:48 +0300232BRPORT_ATTR_FLAG(isolated, BR_ISOLATED);
Fischer, Anna3982d3d2009-08-13 06:55:16 +0000233
Herbert Xu0909e112010-02-27 19:41:49 +0000234#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
235static ssize_t show_multicast_router(struct net_bridge_port *p, char *buf)
236{
237 return sprintf(buf, "%d\n", p->multicast_router);
238}
239
stephen hemminger14f98f22011-04-04 14:03:33 +0000240static int store_multicast_router(struct net_bridge_port *p,
Herbert Xu0909e112010-02-27 19:41:49 +0000241 unsigned long v)
242{
243 return br_multicast_set_port_router(p, v);
244}
Joe Perchesd6444062018-03-23 15:54:38 -0700245static BRPORT_ATTR(multicast_router, 0644, show_multicast_router,
Herbert Xu0909e112010-02-27 19:41:49 +0000246 store_multicast_router);
Amerigo Wang50426b52012-12-03 23:56:40 +0000247
David S. Millerc2d3bab2012-12-05 16:24:45 -0500248BRPORT_ATTR_FLAG(multicast_fast_leave, BR_MULTICAST_FAST_LEAVE);
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100249BRPORT_ATTR_FLAG(multicast_to_unicast, BR_MULTICAST_TO_UNICAST);
Herbert Xu0909e112010-02-27 19:41:49 +0000250#endif
251
stephen hemminger5a0d5132012-07-30 08:55:49 +0000252static const struct brport_attribute *brport_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 &brport_attr_path_cost,
254 &brport_attr_priority,
255 &brport_attr_port_id,
256 &brport_attr_port_no,
257 &brport_attr_designated_root,
258 &brport_attr_designated_bridge,
259 &brport_attr_designated_port,
260 &brport_attr_designated_cost,
261 &brport_attr_state,
262 &brport_attr_change_ack,
263 &brport_attr_config_pending,
264 &brport_attr_message_age_timer,
265 &brport_attr_forward_delay_timer,
266 &brport_attr_hold_timer,
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700267 &brport_attr_flush,
Fischer, Anna3982d3d2009-08-13 06:55:16 +0000268 &brport_attr_hairpin_mode,
stephen hemmingera2e01a62012-11-13 07:53:07 +0000269 &brport_attr_bpdu_guard,
stephen hemminger1007dd12012-11-13 07:53:08 +0000270 &brport_attr_root_block,
Vlad Yasevich9ba18892013-06-05 10:08:00 -0400271 &brport_attr_learning,
Vlad Yasevich867a5942013-06-05 10:08:01 -0400272 &brport_attr_unicast_flood,
Herbert Xu0909e112010-02-27 19:41:49 +0000273#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
274 &brport_attr_multicast_router,
Amerigo Wang50426b52012-12-03 23:56:40 +0000275 &brport_attr_multicast_fast_leave,
Felix Fietkau6db6f0e2017-01-21 21:01:32 +0100276 &brport_attr_multicast_to_unicast,
Herbert Xu0909e112010-02-27 19:41:49 +0000277#endif
Kyeyoon Park95850112014-10-23 14:49:17 -0700278 &brport_attr_proxyarp,
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200279 &brport_attr_proxyarp_wifi,
Nikolay Aleksandrov4eb67532016-10-13 15:20:52 +0200280 &brport_attr_multicast_flood,
Mike Manning99f906e2017-04-26 14:48:09 +0100281 &brport_attr_broadcast_flood,
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300282 &brport_attr_group_fwd_mask,
Roopa Prabhu821f1b22017-10-06 22:12:37 -0700283 &brport_attr_neigh_suppress,
Nikolay Aleksandrov7d850ab2018-05-24 11:56:48 +0300284 &brport_attr_isolated,
Nikolay Aleksandrov2756f682018-07-23 11:16:59 +0300285 &brport_attr_backup_port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 NULL
287};
288
289#define to_brport_attr(_at) container_of(_at, struct brport_attribute, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
tanxiaojun56b148e2013-12-19 13:28:13 +0800291static ssize_t brport_show(struct kobject *kobj,
292 struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
tanxiaojun56b148e2013-12-19 13:28:13 +0800294 struct brport_attribute *brport_attr = to_brport_attr(attr);
Tyler Hicks705e0de2018-07-20 21:56:54 +0000295 struct net_bridge_port *p = kobj_to_brport(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Xin Long1b125802018-02-12 17:15:40 +0800297 if (!brport_attr->show)
298 return -EINVAL;
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return brport_attr->show(p, buf);
301}
302
tanxiaojun56b148e2013-12-19 13:28:13 +0800303static ssize_t brport_store(struct kobject *kobj,
304 struct attribute *attr,
305 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
tanxiaojun56b148e2013-12-19 13:28:13 +0800307 struct brport_attribute *brport_attr = to_brport_attr(attr);
Tyler Hicks705e0de2018-07-20 21:56:54 +0000308 struct net_bridge_port *p = kobj_to_brport(kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ssize_t ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 unsigned long val;
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300311 char *endp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Eric W. Biedermancb990502012-11-16 03:03:08 +0000313 if (!ns_capable(dev_net(p->dev)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return -EPERM;
315
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300316 if (!rtnl_trylock())
317 return restart_syscall();
318
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300319 if (brport_attr->store_raw) {
320 char *buf_copy;
321
322 buf_copy = kstrndup(buf, count, GFP_KERNEL);
323 if (!buf_copy) {
324 ret = -ENOMEM;
325 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300327 spin_lock_bh(&p->br->lock);
328 ret = brport_attr->store_raw(p, buf_copy);
329 spin_unlock_bh(&p->br->lock);
330 kfree(buf_copy);
331 } else if (brport_attr->store) {
332 val = simple_strtoul(buf, &endp, 0);
333 if (endp == buf)
334 goto out_unlock;
335 spin_lock_bh(&p->br->lock);
336 ret = brport_attr->store(p, val);
337 spin_unlock_bh(&p->br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
Nikolay Aleksandrova5f3ea52018-07-23 11:16:58 +0300339
340 if (!ret) {
341 br_ifinfo_notify(RTM_NEWLINK, NULL, p);
342 ret = count;
343 }
344out_unlock:
345 rtnl_unlock();
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return ret;
348}
349
Emese Revfy52cf25d2010-01-19 02:58:23 +0100350const struct sysfs_ops brport_sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 .show = brport_show,
352 .store = brport_store,
353};
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/*
356 * Add sysfs entries to ethernet device added to a bridge.
357 * Creates a brport subdirectory with bridge attributes.
Simon Arlotte0f43752010-05-10 09:31:11 +0000358 * Puts symlink in bridge's brif subdirectory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
360int br_sysfs_addif(struct net_bridge_port *p)
361{
362 struct net_bridge *br = p->br;
stephen hemminger5a0d5132012-07-30 08:55:49 +0000363 const struct brport_attribute **a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int err;
365
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700366 err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 SYSFS_BRIDGE_PORT_LINK);
368 if (err)
Simon Arlotte0f43752010-05-10 09:31:11 +0000369 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 for (a = brport_attrs; *a; ++a) {
372 err = sysfs_create_file(&p->kobj, &((*a)->attr));
373 if (err)
Simon Arlotte0f43752010-05-10 09:31:11 +0000374 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
Simon Arlotte0f43752010-05-10 09:31:11 +0000377 strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
378 return sysfs_create_link(br->ifobj, &p->kobj, p->sysfs_name);
379}
380
381/* Rename bridge's brif symlink */
382int br_sysfs_renameif(struct net_bridge_port *p)
383{
384 struct net_bridge *br = p->br;
385 int err;
386
387 /* If a rename fails, the rollback will cause another
388 * rename call with the existing name.
389 */
390 if (!strncmp(p->sysfs_name, p->dev->name, IFNAMSIZ))
391 return 0;
392
393 err = sysfs_rename_link(br->ifobj, &p->kobj,
394 p->sysfs_name, p->dev->name);
395 if (err)
396 netdev_notice(br->dev, "unable to rename link %s to %s",
397 p->sysfs_name, p->dev->name);
398 else
399 strlcpy(p->sysfs_name, p->dev->name, IFNAMSIZ);
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return err;
402}