blob: 7ec0b76cdd279c266ac9138416637ad56c95d8ac [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>
20#include <linux/times.h>
21
22#include "br_private.h"
23
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070024#define to_dev(obj) container_of(obj, struct device, kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define to_bridge(cd) ((struct net_bridge *)(to_net_dev(cd)->priv))
26
27/*
28 * Common code for storing bridge parameters.
29 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070030static ssize_t store_bridge_parm(struct device *d,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 const char *buf, size_t len,
32 void (*set)(struct net_bridge *, unsigned long))
33{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070034 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 char *endp;
36 unsigned long val;
37
38 if (!capable(CAP_NET_ADMIN))
39 return -EPERM;
40
41 val = simple_strtoul(buf, &endp, 0);
42 if (endp == buf)
43 return -EINVAL;
44
45 spin_lock_bh(&br->lock);
46 (*set)(br, val);
47 spin_unlock_bh(&br->lock);
48 return len;
49}
50
51
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070052static ssize_t show_forward_delay(struct device *d,
53 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070055 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->forward_delay));
57}
58
59static void set_forward_delay(struct net_bridge *br, unsigned long val)
60{
61 unsigned long delay = clock_t_to_jiffies(val);
62 br->forward_delay = delay;
63 if (br_is_root_bridge(br))
64 br->bridge_forward_delay = delay;
65}
66
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070067static ssize_t store_forward_delay(struct device *d,
68 struct device_attribute *attr,
69 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070071 return store_bridge_parm(d, buf, len, set_forward_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070073static DEVICE_ATTR(forward_delay, S_IRUGO | S_IWUSR,
74 show_forward_delay, store_forward_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070076static ssize_t show_hello_time(struct device *d, struct device_attribute *attr,
77 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
79 return sprintf(buf, "%lu\n",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070080 jiffies_to_clock_t(to_bridge(d)->hello_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83static void set_hello_time(struct net_bridge *br, unsigned long val)
84{
85 unsigned long t = clock_t_to_jiffies(val);
86 br->hello_time = t;
87 if (br_is_root_bridge(br))
88 br->bridge_hello_time = t;
89}
90
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070091static ssize_t store_hello_time(struct device *d,
92 struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 size_t len)
94{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070095 return store_bridge_parm(d, buf, len, set_hello_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070097static DEVICE_ATTR(hello_time, S_IRUGO | S_IWUSR, show_hello_time,
98 store_hello_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700100static ssize_t show_max_age(struct device *d, struct device_attribute *attr,
101 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 return sprintf(buf, "%lu\n",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700104 jiffies_to_clock_t(to_bridge(d)->max_age));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static void set_max_age(struct net_bridge *br, unsigned long val)
108{
109 unsigned long t = clock_t_to_jiffies(val);
110 br->max_age = t;
111 if (br_is_root_bridge(br))
112 br->bridge_max_age = t;
113}
114
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700115static ssize_t store_max_age(struct device *d, struct device_attribute *attr,
116 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700118 return store_bridge_parm(d, buf, len, set_max_age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700120static DEVICE_ATTR(max_age, S_IRUGO | S_IWUSR, show_max_age, store_max_age);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700122static ssize_t show_ageing_time(struct device *d,
123 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700125 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->ageing_time));
127}
128
129static void set_ageing_time(struct net_bridge *br, unsigned long val)
130{
131 br->ageing_time = clock_t_to_jiffies(val);
132}
133
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700134static ssize_t store_ageing_time(struct device *d,
135 struct device_attribute *attr,
136 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700138 return store_bridge_parm(d, buf, len, set_ageing_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700140static DEVICE_ATTR(ageing_time, S_IRUGO | S_IWUSR, show_ageing_time,
141 store_ageing_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700143static ssize_t show_stp_state(struct device *d,
144 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700146 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return sprintf(buf, "%d\n", br->stp_enabled);
148}
149
150static void set_stp_state(struct net_bridge *br, unsigned long val)
151{
Stephen Hemminger9cde0702007-03-21 14:22:44 -0700152 spin_unlock_bh(&br->lock);
153 br_stp_set_enabled(br, val);
154 spin_lock_bh(&br->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700157static ssize_t store_stp_state(struct device *d,
158 struct device_attribute *attr, const char *buf,
159 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700161 return store_bridge_parm(d, buf, len, set_stp_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700163static DEVICE_ATTR(stp_state, S_IRUGO | S_IWUSR, show_stp_state,
164 store_stp_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700166static ssize_t show_priority(struct device *d, struct device_attribute *attr,
167 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700169 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return sprintf(buf, "%d\n",
171 (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1]);
172}
173
174static void set_priority(struct net_bridge *br, unsigned long val)
175{
176 br_stp_set_bridge_priority(br, (u16) val);
177}
178
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700179static ssize_t store_priority(struct device *d, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 const char *buf, size_t len)
181{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700182 return store_bridge_parm(d, buf, len, set_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700184static DEVICE_ATTR(priority, S_IRUGO | S_IWUSR, show_priority, store_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700186static ssize_t show_root_id(struct device *d, struct device_attribute *attr,
187 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700189 return br_show_bridge_id(buf, &to_bridge(d)->designated_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700191static DEVICE_ATTR(root_id, S_IRUGO, show_root_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700193static ssize_t show_bridge_id(struct device *d, struct device_attribute *attr,
194 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700196 return br_show_bridge_id(buf, &to_bridge(d)->bridge_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700198static DEVICE_ATTR(bridge_id, S_IRUGO, show_bridge_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700200static ssize_t show_root_port(struct device *d, struct device_attribute *attr,
201 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700203 return sprintf(buf, "%d\n", to_bridge(d)->root_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700205static DEVICE_ATTR(root_port, S_IRUGO, show_root_port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700207static ssize_t show_root_path_cost(struct device *d,
208 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700210 return sprintf(buf, "%d\n", to_bridge(d)->root_path_cost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700212static DEVICE_ATTR(root_path_cost, S_IRUGO, show_root_path_cost, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700214static ssize_t show_topology_change(struct device *d,
215 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700217 return sprintf(buf, "%d\n", to_bridge(d)->topology_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700219static DEVICE_ATTR(topology_change, S_IRUGO, show_topology_change, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700221static ssize_t show_topology_change_detected(struct device *d,
222 struct device_attribute *attr,
223 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700225 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return sprintf(buf, "%d\n", br->topology_change_detected);
227}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700228static DEVICE_ATTR(topology_change_detected, S_IRUGO,
229 show_topology_change_detected, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700231static ssize_t show_hello_timer(struct device *d,
232 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700234 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return sprintf(buf, "%ld\n", br_timer_value(&br->hello_timer));
236}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700237static DEVICE_ATTR(hello_timer, S_IRUGO, show_hello_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700239static ssize_t show_tcn_timer(struct device *d, struct device_attribute *attr,
240 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700242 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return sprintf(buf, "%ld\n", br_timer_value(&br->tcn_timer));
244}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700245static DEVICE_ATTR(tcn_timer, S_IRUGO, show_tcn_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700247static ssize_t show_topology_change_timer(struct device *d,
248 struct device_attribute *attr,
249 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700251 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return sprintf(buf, "%ld\n", br_timer_value(&br->topology_change_timer));
253}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700254static DEVICE_ATTR(topology_change_timer, S_IRUGO, show_topology_change_timer,
255 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700257static ssize_t show_gc_timer(struct device *d, struct device_attribute *attr,
258 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700260 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return sprintf(buf, "%ld\n", br_timer_value(&br->gc_timer));
262}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700263static DEVICE_ATTR(gc_timer, S_IRUGO, show_gc_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700265static ssize_t show_group_addr(struct device *d,
266 struct device_attribute *attr, char *buf)
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800267{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700268 struct net_bridge *br = to_bridge(d);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800269 return sprintf(buf, "%x:%x:%x:%x:%x:%x\n",
270 br->group_addr[0], br->group_addr[1],
271 br->group_addr[2], br->group_addr[3],
272 br->group_addr[4], br->group_addr[5]);
273}
274
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700275static ssize_t store_group_addr(struct device *d,
276 struct device_attribute *attr,
277 const char *buf, size_t len)
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800278{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700279 struct net_bridge *br = to_bridge(d);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800280 unsigned new_addr[6];
281 int i;
282
283 if (!capable(CAP_NET_ADMIN))
284 return -EPERM;
285
286 if (sscanf(buf, "%x:%x:%x:%x:%x:%x",
287 &new_addr[0], &new_addr[1], &new_addr[2],
288 &new_addr[3], &new_addr[4], &new_addr[5]) != 6)
289 return -EINVAL;
290
291 /* Must be 01:80:c2:00:00:0X */
292 for (i = 0; i < 5; i++)
293 if (new_addr[i] != br_group_address[i])
294 return -EINVAL;
295
296 if (new_addr[5] & ~0xf)
297 return -EINVAL;
298
299 if (new_addr[5] == 1 /* 802.3x Pause address */
300 || new_addr[5] == 2 /* 802.3ad Slow protocols */
301 || new_addr[5] == 3) /* 802.1X PAE address */
302 return -EINVAL;
303
304 spin_lock_bh(&br->lock);
305 for (i = 0; i < 6; i++)
306 br->group_addr[i] = new_addr[i];
307 spin_unlock_bh(&br->lock);
308 return len;
309}
310
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700311static DEVICE_ATTR(group_addr, S_IRUGO | S_IWUSR,
312 show_group_addr, store_group_addr);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800313
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700314static ssize_t store_flush(struct device *d,
315 struct device_attribute *attr,
316 const char *buf, size_t len)
317{
318 struct net_bridge *br = to_bridge(d);
319
320 if (!capable(CAP_NET_ADMIN))
321 return -EPERM;
322
323 br_fdb_flush(br);
324 return len;
325}
326static DEVICE_ATTR(flush, S_IWUSR, NULL, store_flush);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static struct attribute *bridge_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700329 &dev_attr_forward_delay.attr,
330 &dev_attr_hello_time.attr,
331 &dev_attr_max_age.attr,
332 &dev_attr_ageing_time.attr,
333 &dev_attr_stp_state.attr,
334 &dev_attr_priority.attr,
335 &dev_attr_bridge_id.attr,
336 &dev_attr_root_id.attr,
337 &dev_attr_root_path_cost.attr,
338 &dev_attr_root_port.attr,
339 &dev_attr_topology_change.attr,
340 &dev_attr_topology_change_detected.attr,
341 &dev_attr_hello_timer.attr,
342 &dev_attr_tcn_timer.attr,
343 &dev_attr_topology_change_timer.attr,
344 &dev_attr_gc_timer.attr,
345 &dev_attr_group_addr.attr,
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700346 &dev_attr_flush.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 NULL
348};
349
350static struct attribute_group bridge_group = {
351 .name = SYSFS_BRIDGE_ATTR,
352 .attrs = bridge_attrs,
353};
354
355/*
356 * Export the forwarding information table as a binary file
357 * The records are struct __fdb_entry.
358 *
359 * Returns the number of bytes read.
360 */
361static ssize_t brforward_read(struct kobject *kobj, char *buf,
362 loff_t off, size_t count)
363{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700364 struct device *dev = to_dev(kobj);
365 struct net_bridge *br = to_bridge(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 int n;
367
368 /* must read whole records */
369 if (off % sizeof(struct __fdb_entry) != 0)
370 return -EINVAL;
371
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900372 n = br_fdb_fillbuf(br, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 count / sizeof(struct __fdb_entry),
374 off / sizeof(struct __fdb_entry));
375
376 if (n > 0)
377 n *= sizeof(struct __fdb_entry);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return n;
380}
381
382static struct bin_attribute bridge_forward = {
383 .attr = { .name = SYSFS_BRIDGE_FDB,
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900384 .mode = S_IRUGO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .owner = THIS_MODULE, },
386 .read = brforward_read,
387};
388
389/*
390 * Add entries in sysfs onto the existing network class device
391 * for the bridge.
392 * Adds a attribute group "bridge" containing tuning parameters.
393 * Binary attribute containing the forward table
394 * Sub directory to hold links to interfaces.
395 *
396 * Note: the ifobj exists only to be a subdirectory
397 * to hold links. The ifobj exists in same data structure
398 * as it's parent the bridge so reference counting works.
399 */
400int br_sysfs_addbr(struct net_device *dev)
401{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700402 struct kobject *brobj = &dev->dev.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct net_bridge *br = netdev_priv(dev);
404 int err;
405
406 err = sysfs_create_group(brobj, &bridge_group);
407 if (err) {
408 pr_info("%s: can't create group %s/%s\n",
409 __FUNCTION__, dev->name, bridge_group.name);
410 goto out1;
411 }
412
413 err = sysfs_create_bin_file(brobj, &bridge_forward);
414 if (err) {
Randy Dunlap1842c4b2006-10-25 23:07:37 -0700415 pr_info("%s: can't create attribute file %s/%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 __FUNCTION__, dev->name, bridge_forward.attr.name);
417 goto out2;
418 }
419
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 kobject_set_name(&br->ifobj, SYSFS_BRIDGE_PORT_SUBDIR);
422 br->ifobj.ktype = NULL;
423 br->ifobj.kset = NULL;
424 br->ifobj.parent = brobj;
425
426 err = kobject_register(&br->ifobj);
427 if (err) {
428 pr_info("%s: can't add kobject (directory) %s/%s\n",
429 __FUNCTION__, dev->name, br->ifobj.name);
430 goto out3;
431 }
432 return 0;
433 out3:
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700434 sysfs_remove_bin_file(&dev->dev.kobj, &bridge_forward);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 out2:
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700436 sysfs_remove_group(&dev->dev.kobj, &bridge_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 out1:
438 return err;
439
440}
441
442void br_sysfs_delbr(struct net_device *dev)
443{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700444 struct kobject *kobj = &dev->dev.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct net_bridge *br = netdev_priv(dev);
446
447 kobject_unregister(&br->ifobj);
448 sysfs_remove_bin_file(kobj, &bridge_forward);
449 sysfs_remove_group(kobj, &bridge_group);
450}