2 * Sysfs attributes of bridge ports
3 * Linux ethernet bridge
6 * Stephen Hemminger <shemminger@osdl.org>
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.
14 #include <linux/capability.h>
15 #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>
21 #include "br_private.h"
23 struct brport_attribute
{
24 struct attribute attr
;
25 ssize_t (*show
)(struct net_bridge_port
*, char *);
26 ssize_t (*store
)(struct net_bridge_port
*, unsigned long);
29 #define BRPORT_ATTR(_name,_mode,_show,_store) \
30 struct brport_attribute brport_attr_##_name = { \
31 .attr = {.name = __stringify(_name), \
33 .owner = THIS_MODULE, }, \
38 static ssize_t
show_path_cost(struct net_bridge_port
*p
, char *buf
)
40 return sprintf(buf
, "%d\n", p
->path_cost
);
42 static ssize_t
store_path_cost(struct net_bridge_port
*p
, unsigned long v
)
44 br_stp_set_path_cost(p
, v
);
47 static BRPORT_ATTR(path_cost
, S_IRUGO
| S_IWUSR
,
48 show_path_cost
, store_path_cost
);
50 static ssize_t
show_priority(struct net_bridge_port
*p
, char *buf
)
52 return sprintf(buf
, "%d\n", p
->priority
);
54 static ssize_t
store_priority(struct net_bridge_port
*p
, unsigned long v
)
56 if (v
>= (1<<(16-BR_PORT_BITS
)))
58 br_stp_set_port_priority(p
, v
);
61 static BRPORT_ATTR(priority
, S_IRUGO
| S_IWUSR
,
62 show_priority
, store_priority
);
64 static ssize_t
show_designated_root(struct net_bridge_port
*p
, char *buf
)
66 return br_show_bridge_id(buf
, &p
->designated_root
);
68 static BRPORT_ATTR(designated_root
, S_IRUGO
, show_designated_root
, NULL
);
70 static ssize_t
show_designated_bridge(struct net_bridge_port
*p
, char *buf
)
72 return br_show_bridge_id(buf
, &p
->designated_bridge
);
74 static BRPORT_ATTR(designated_bridge
, S_IRUGO
, show_designated_bridge
, NULL
);
76 static ssize_t
show_designated_port(struct net_bridge_port
*p
, char *buf
)
78 return sprintf(buf
, "%d\n", p
->designated_port
);
80 static BRPORT_ATTR(designated_port
, S_IRUGO
, show_designated_port
, NULL
);
82 static ssize_t
show_designated_cost(struct net_bridge_port
*p
, char *buf
)
84 return sprintf(buf
, "%d\n", p
->designated_cost
);
86 static BRPORT_ATTR(designated_cost
, S_IRUGO
, show_designated_cost
, NULL
);
88 static ssize_t
show_port_id(struct net_bridge_port
*p
, char *buf
)
90 return sprintf(buf
, "0x%x\n", p
->port_id
);
92 static BRPORT_ATTR(port_id
, S_IRUGO
, show_port_id
, NULL
);
94 static ssize_t
show_port_no(struct net_bridge_port
*p
, char *buf
)
96 return sprintf(buf
, "0x%x\n", p
->port_no
);
99 static BRPORT_ATTR(port_no
, S_IRUGO
, show_port_no
, NULL
);
101 static ssize_t
show_change_ack(struct net_bridge_port
*p
, char *buf
)
103 return sprintf(buf
, "%d\n", p
->topology_change_ack
);
105 static BRPORT_ATTR(change_ack
, S_IRUGO
, show_change_ack
, NULL
);
107 static ssize_t
show_config_pending(struct net_bridge_port
*p
, char *buf
)
109 return sprintf(buf
, "%d\n", p
->config_pending
);
111 static BRPORT_ATTR(config_pending
, S_IRUGO
, show_config_pending
, NULL
);
113 static ssize_t
show_port_state(struct net_bridge_port
*p
, char *buf
)
115 return sprintf(buf
, "%d\n", p
->state
);
117 static BRPORT_ATTR(state
, S_IRUGO
, show_port_state
, NULL
);
119 static ssize_t
show_message_age_timer(struct net_bridge_port
*p
,
122 return sprintf(buf
, "%ld\n", br_timer_value(&p
->message_age_timer
));
124 static BRPORT_ATTR(message_age_timer
, S_IRUGO
, show_message_age_timer
, NULL
);
126 static ssize_t
show_forward_delay_timer(struct net_bridge_port
*p
,
129 return sprintf(buf
, "%ld\n", br_timer_value(&p
->forward_delay_timer
));
131 static BRPORT_ATTR(forward_delay_timer
, S_IRUGO
, show_forward_delay_timer
, NULL
);
133 static ssize_t
show_hold_timer(struct net_bridge_port
*p
,
136 return sprintf(buf
, "%ld\n", br_timer_value(&p
->hold_timer
));
138 static BRPORT_ATTR(hold_timer
, S_IRUGO
, show_hold_timer
, NULL
);
140 static struct brport_attribute
*brport_attrs
[] = {
141 &brport_attr_path_cost
,
142 &brport_attr_priority
,
143 &brport_attr_port_id
,
144 &brport_attr_port_no
,
145 &brport_attr_designated_root
,
146 &brport_attr_designated_bridge
,
147 &brport_attr_designated_port
,
148 &brport_attr_designated_cost
,
150 &brport_attr_change_ack
,
151 &brport_attr_config_pending
,
152 &brport_attr_message_age_timer
,
153 &brport_attr_forward_delay_timer
,
154 &brport_attr_hold_timer
,
158 #define to_brport_attr(_at) container_of(_at, struct brport_attribute, attr)
159 #define to_brport(obj) container_of(obj, struct net_bridge_port, kobj)
161 static ssize_t
brport_show(struct kobject
* kobj
,
162 struct attribute
* attr
, char * buf
)
164 struct brport_attribute
* brport_attr
= to_brport_attr(attr
);
165 struct net_bridge_port
* p
= to_brport(kobj
);
167 return brport_attr
->show(p
, buf
);
170 static ssize_t
brport_store(struct kobject
* kobj
,
171 struct attribute
* attr
,
172 const char * buf
, size_t count
)
174 struct brport_attribute
* brport_attr
= to_brport_attr(attr
);
175 struct net_bridge_port
* p
= to_brport(kobj
);
176 ssize_t ret
= -EINVAL
;
180 if (!capable(CAP_NET_ADMIN
))
183 val
= simple_strtoul(buf
, &endp
, 0);
186 if (p
->dev
&& p
->br
&& brport_attr
->store
) {
187 spin_lock_bh(&p
->br
->lock
);
188 ret
= brport_attr
->store(p
, val
);
189 spin_unlock_bh(&p
->br
->lock
);
198 struct sysfs_ops brport_sysfs_ops
= {
200 .store
= brport_store
,
204 * Add sysfs entries to ethernet device added to a bridge.
205 * Creates a brport subdirectory with bridge attributes.
206 * Puts symlink in bridge's brport subdirectory
208 int br_sysfs_addif(struct net_bridge_port
*p
)
210 struct net_bridge
*br
= p
->br
;
211 struct brport_attribute
**a
;
214 err
= sysfs_create_link(&p
->kobj
, &br
->dev
->class_dev
.kobj
,
215 SYSFS_BRIDGE_PORT_LINK
);
219 for (a
= brport_attrs
; *a
; ++a
) {
220 err
= sysfs_create_file(&p
->kobj
, &((*a
)->attr
));
225 err
= sysfs_create_link(&br
->ifobj
, &p
->kobj
, p
->dev
->name
);