blob: 68b893ea8c3ab2d1da10c764e6466da77b74f0a9 [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)
Wang Chen524ad0a2008-11-12 23:39:10 -080025#define to_bridge(cd) ((struct net_bridge *)netdev_priv(to_net_dev(cd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
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,
Stephen Hemminger8d4698f72008-09-08 13:44:40 -070032 int (*set)(struct net_bridge *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
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;
Stephen Hemminger8d4698f72008-09-08 13:44:40 -070037 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 if (!capable(CAP_NET_ADMIN))
40 return -EPERM;
41
42 val = simple_strtoul(buf, &endp, 0);
43 if (endp == buf)
44 return -EINVAL;
45
Stephen Hemminger8d4698f72008-09-08 13:44:40 -070046 err = (*set)(br, val);
Stephen Hemminger8d4698f72008-09-08 13:44:40 -070047 return err ? err : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
50
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070051static ssize_t show_forward_delay(struct device *d,
52 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070054 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->forward_delay));
56}
57
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070058static ssize_t store_forward_delay(struct device *d,
59 struct device_attribute *attr,
60 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
stephen hemminger14f98f22011-04-04 14:03:33 +000062 return store_bridge_parm(d, buf, len, br_set_forward_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070064static DEVICE_ATTR(forward_delay, S_IRUGO | S_IWUSR,
65 show_forward_delay, store_forward_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070067static ssize_t show_hello_time(struct device *d, struct device_attribute *attr,
68 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 return sprintf(buf, "%lu\n",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070071 jiffies_to_clock_t(to_bridge(d)->hello_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070074static ssize_t store_hello_time(struct device *d,
75 struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 size_t len)
77{
stephen hemminger14f98f22011-04-04 14:03:33 +000078 return store_bridge_parm(d, buf, len, br_set_hello_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070080static DEVICE_ATTR(hello_time, S_IRUGO | S_IWUSR, show_hello_time,
81 store_hello_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070083static ssize_t show_max_age(struct device *d, struct device_attribute *attr,
84 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 return sprintf(buf, "%lu\n",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070087 jiffies_to_clock_t(to_bridge(d)->max_age));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070090static ssize_t store_max_age(struct device *d, struct device_attribute *attr,
91 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
stephen hemminger14f98f22011-04-04 14:03:33 +000093 return store_bridge_parm(d, buf, len, br_set_max_age);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070095static DEVICE_ATTR(max_age, S_IRUGO | S_IWUSR, show_max_age, store_max_age);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070097static ssize_t show_ageing_time(struct device *d,
98 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700100 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->ageing_time));
102}
103
Stephen Hemminger8d4698f72008-09-08 13:44:40 -0700104static int set_ageing_time(struct net_bridge *br, unsigned long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 br->ageing_time = clock_t_to_jiffies(val);
Stephen Hemminger8d4698f72008-09-08 13:44:40 -0700107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700110static ssize_t store_ageing_time(struct device *d,
111 struct device_attribute *attr,
112 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700114 return store_bridge_parm(d, buf, len, set_ageing_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700116static DEVICE_ATTR(ageing_time, S_IRUGO | S_IWUSR, show_ageing_time,
117 store_ageing_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700119static ssize_t show_stp_state(struct device *d,
120 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700122 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return sprintf(buf, "%d\n", br->stp_enabled);
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700127static ssize_t store_stp_state(struct device *d,
128 struct device_attribute *attr, const char *buf,
129 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Stephen Hemminger17120882007-08-14 13:21:34 -0700131 struct net_bridge *br = to_bridge(d);
132 char *endp;
133 unsigned long val;
134
135 if (!capable(CAP_NET_ADMIN))
136 return -EPERM;
137
138 val = simple_strtoul(buf, &endp, 0);
139 if (endp == buf)
140 return -EINVAL;
141
Eric W. Biedermanaf38f292009-05-13 17:00:41 +0000142 if (!rtnl_trylock())
143 return restart_syscall();
Stephen Hemminger17120882007-08-14 13:21:34 -0700144 br_stp_set_enabled(br, val);
145 rtnl_unlock();
146
Al Viro35b426c2007-08-19 04:51:26 +0100147 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700149static DEVICE_ATTR(stp_state, S_IRUGO | S_IWUSR, show_stp_state,
150 store_stp_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700152static ssize_t show_priority(struct device *d, struct device_attribute *attr,
153 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700155 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return sprintf(buf, "%d\n",
157 (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1]);
158}
159
Stephen Hemminger8d4698f72008-09-08 13:44:40 -0700160static int set_priority(struct net_bridge *br, unsigned long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 br_stp_set_bridge_priority(br, (u16) val);
Stephen Hemminger8d4698f72008-09-08 13:44:40 -0700163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700166static ssize_t store_priority(struct device *d, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 const char *buf, size_t len)
168{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700169 return store_bridge_parm(d, buf, len, set_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700171static DEVICE_ATTR(priority, S_IRUGO | S_IWUSR, show_priority, store_priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700173static ssize_t show_root_id(struct device *d, struct device_attribute *attr,
174 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700176 return br_show_bridge_id(buf, &to_bridge(d)->designated_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700178static DEVICE_ATTR(root_id, S_IRUGO, show_root_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700180static ssize_t show_bridge_id(struct device *d, struct device_attribute *attr,
181 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700183 return br_show_bridge_id(buf, &to_bridge(d)->bridge_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700185static DEVICE_ATTR(bridge_id, S_IRUGO, show_bridge_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700187static ssize_t show_root_port(struct device *d, struct device_attribute *attr,
188 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700190 return sprintf(buf, "%d\n", to_bridge(d)->root_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700192static DEVICE_ATTR(root_port, S_IRUGO, show_root_port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700194static ssize_t show_root_path_cost(struct device *d,
195 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700197 return sprintf(buf, "%d\n", to_bridge(d)->root_path_cost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700199static DEVICE_ATTR(root_path_cost, S_IRUGO, show_root_path_cost, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700201static ssize_t show_topology_change(struct device *d,
202 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700204 return sprintf(buf, "%d\n", to_bridge(d)->topology_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700206static DEVICE_ATTR(topology_change, S_IRUGO, show_topology_change, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700208static ssize_t show_topology_change_detected(struct device *d,
209 struct device_attribute *attr,
210 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700212 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return sprintf(buf, "%d\n", br->topology_change_detected);
214}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700215static DEVICE_ATTR(topology_change_detected, S_IRUGO,
216 show_topology_change_detected, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700218static ssize_t show_hello_timer(struct device *d,
219 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700221 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return sprintf(buf, "%ld\n", br_timer_value(&br->hello_timer));
223}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700224static DEVICE_ATTR(hello_timer, S_IRUGO, show_hello_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700226static ssize_t show_tcn_timer(struct device *d, struct device_attribute *attr,
227 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700229 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return sprintf(buf, "%ld\n", br_timer_value(&br->tcn_timer));
231}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700232static DEVICE_ATTR(tcn_timer, S_IRUGO, show_tcn_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700234static ssize_t show_topology_change_timer(struct device *d,
235 struct device_attribute *attr,
236 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700238 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return sprintf(buf, "%ld\n", br_timer_value(&br->topology_change_timer));
240}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700241static DEVICE_ATTR(topology_change_timer, S_IRUGO, show_topology_change_timer,
242 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700244static ssize_t show_gc_timer(struct device *d, struct device_attribute *attr,
245 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700247 struct net_bridge *br = to_bridge(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return sprintf(buf, "%ld\n", br_timer_value(&br->gc_timer));
249}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700250static DEVICE_ATTR(gc_timer, S_IRUGO, show_gc_timer, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700252static ssize_t show_group_addr(struct device *d,
253 struct device_attribute *attr, char *buf)
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800254{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700255 struct net_bridge *br = to_bridge(d);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800256 return sprintf(buf, "%x:%x:%x:%x:%x:%x\n",
257 br->group_addr[0], br->group_addr[1],
258 br->group_addr[2], br->group_addr[3],
259 br->group_addr[4], br->group_addr[5]);
260}
261
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700262static ssize_t store_group_addr(struct device *d,
263 struct device_attribute *attr,
264 const char *buf, size_t len)
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800265{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700266 struct net_bridge *br = to_bridge(d);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800267 unsigned new_addr[6];
268 int i;
269
270 if (!capable(CAP_NET_ADMIN))
271 return -EPERM;
272
273 if (sscanf(buf, "%x:%x:%x:%x:%x:%x",
274 &new_addr[0], &new_addr[1], &new_addr[2],
275 &new_addr[3], &new_addr[4], &new_addr[5]) != 6)
276 return -EINVAL;
277
278 /* Must be 01:80:c2:00:00:0X */
279 for (i = 0; i < 5; i++)
280 if (new_addr[i] != br_group_address[i])
281 return -EINVAL;
282
283 if (new_addr[5] & ~0xf)
284 return -EINVAL;
285
Joe Perchesf64f9e72009-11-29 16:55:45 -0800286 if (new_addr[5] == 1 || /* 802.3x Pause address */
287 new_addr[5] == 2 || /* 802.3ad Slow protocols */
288 new_addr[5] == 3) /* 802.1X PAE address */
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800289 return -EINVAL;
290
291 spin_lock_bh(&br->lock);
292 for (i = 0; i < 6; i++)
293 br->group_addr[i] = new_addr[i];
294 spin_unlock_bh(&br->lock);
295 return len;
296}
297
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700298static DEVICE_ATTR(group_addr, S_IRUGO | S_IWUSR,
299 show_group_addr, store_group_addr);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800300
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700301static ssize_t store_flush(struct device *d,
302 struct device_attribute *attr,
303 const char *buf, size_t len)
304{
305 struct net_bridge *br = to_bridge(d);
306
307 if (!capable(CAP_NET_ADMIN))
308 return -EPERM;
309
310 br_fdb_flush(br);
311 return len;
312}
313static DEVICE_ATTR(flush, S_IWUSR, NULL, store_flush);
Stephen Hemmingerfda93d92006-03-20 22:59:21 -0800314
Herbert Xu0909e112010-02-27 19:41:49 +0000315#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
316static ssize_t show_multicast_router(struct device *d,
317 struct device_attribute *attr, char *buf)
318{
319 struct net_bridge *br = to_bridge(d);
320 return sprintf(buf, "%d\n", br->multicast_router);
321}
322
323static ssize_t store_multicast_router(struct device *d,
324 struct device_attribute *attr,
325 const char *buf, size_t len)
326{
327 return store_bridge_parm(d, buf, len, br_multicast_set_router);
328}
329static DEVICE_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router,
330 store_multicast_router);
Herbert Xu561f1102010-02-27 19:41:50 +0000331
332static ssize_t show_multicast_snooping(struct device *d,
333 struct device_attribute *attr,
334 char *buf)
335{
336 struct net_bridge *br = to_bridge(d);
337 return sprintf(buf, "%d\n", !br->multicast_disabled);
338}
339
340static ssize_t store_multicast_snooping(struct device *d,
341 struct device_attribute *attr,
342 const char *buf, size_t len)
343{
344 return store_bridge_parm(d, buf, len, br_multicast_toggle);
345}
346static DEVICE_ATTR(multicast_snooping, S_IRUGO | S_IWUSR,
347 show_multicast_snooping, store_multicast_snooping);
Herbert Xub1951672010-02-27 19:41:51 +0000348
349static ssize_t show_hash_elasticity(struct device *d,
350 struct device_attribute *attr, char *buf)
351{
352 struct net_bridge *br = to_bridge(d);
353 return sprintf(buf, "%u\n", br->hash_elasticity);
354}
355
356static int set_elasticity(struct net_bridge *br, unsigned long val)
357{
358 br->hash_elasticity = val;
359 return 0;
360}
361
362static ssize_t store_hash_elasticity(struct device *d,
363 struct device_attribute *attr,
364 const char *buf, size_t len)
365{
366 return store_bridge_parm(d, buf, len, set_elasticity);
367}
368static DEVICE_ATTR(hash_elasticity, S_IRUGO | S_IWUSR, show_hash_elasticity,
369 store_hash_elasticity);
370
371static ssize_t show_hash_max(struct device *d, struct device_attribute *attr,
372 char *buf)
373{
374 struct net_bridge *br = to_bridge(d);
375 return sprintf(buf, "%u\n", br->hash_max);
376}
377
378static ssize_t store_hash_max(struct device *d, struct device_attribute *attr,
379 const char *buf, size_t len)
380{
381 return store_bridge_parm(d, buf, len, br_multicast_set_hash_max);
382}
383static DEVICE_ATTR(hash_max, S_IRUGO | S_IWUSR, show_hash_max,
384 store_hash_max);
Herbert Xud902eee2010-02-27 19:41:52 +0000385
386static ssize_t show_multicast_last_member_count(struct device *d,
387 struct device_attribute *attr,
388 char *buf)
389{
390 struct net_bridge *br = to_bridge(d);
391 return sprintf(buf, "%u\n", br->multicast_last_member_count);
392}
393
394static int set_last_member_count(struct net_bridge *br, unsigned long val)
395{
396 br->multicast_last_member_count = val;
397 return 0;
398}
399
400static ssize_t store_multicast_last_member_count(struct device *d,
401 struct device_attribute *attr,
402 const char *buf, size_t len)
403{
404 return store_bridge_parm(d, buf, len, set_last_member_count);
405}
406static DEVICE_ATTR(multicast_last_member_count, S_IRUGO | S_IWUSR,
407 show_multicast_last_member_count,
408 store_multicast_last_member_count);
409
410static ssize_t show_multicast_startup_query_count(
411 struct device *d, struct device_attribute *attr, char *buf)
412{
413 struct net_bridge *br = to_bridge(d);
414 return sprintf(buf, "%u\n", br->multicast_startup_query_count);
415}
416
417static int set_startup_query_count(struct net_bridge *br, unsigned long val)
418{
419 br->multicast_startup_query_count = val;
420 return 0;
421}
422
423static ssize_t store_multicast_startup_query_count(
424 struct device *d, struct device_attribute *attr, const char *buf,
425 size_t len)
426{
427 return store_bridge_parm(d, buf, len, set_startup_query_count);
428}
429static DEVICE_ATTR(multicast_startup_query_count, S_IRUGO | S_IWUSR,
430 show_multicast_startup_query_count,
431 store_multicast_startup_query_count);
432
433static ssize_t show_multicast_last_member_interval(
434 struct device *d, struct device_attribute *attr, char *buf)
435{
436 struct net_bridge *br = to_bridge(d);
437 return sprintf(buf, "%lu\n",
438 jiffies_to_clock_t(br->multicast_last_member_interval));
439}
440
441static int set_last_member_interval(struct net_bridge *br, unsigned long val)
442{
443 br->multicast_last_member_interval = clock_t_to_jiffies(val);
444 return 0;
445}
446
447static ssize_t store_multicast_last_member_interval(
448 struct device *d, struct device_attribute *attr, const char *buf,
449 size_t len)
450{
451 return store_bridge_parm(d, buf, len, set_last_member_interval);
452}
453static DEVICE_ATTR(multicast_last_member_interval, S_IRUGO | S_IWUSR,
454 show_multicast_last_member_interval,
455 store_multicast_last_member_interval);
456
457static ssize_t show_multicast_membership_interval(
458 struct device *d, struct device_attribute *attr, char *buf)
459{
460 struct net_bridge *br = to_bridge(d);
461 return sprintf(buf, "%lu\n",
462 jiffies_to_clock_t(br->multicast_membership_interval));
463}
464
465static int set_membership_interval(struct net_bridge *br, unsigned long val)
466{
467 br->multicast_membership_interval = clock_t_to_jiffies(val);
468 return 0;
469}
470
471static ssize_t store_multicast_membership_interval(
472 struct device *d, struct device_attribute *attr, const char *buf,
473 size_t len)
474{
475 return store_bridge_parm(d, buf, len, set_membership_interval);
476}
477static DEVICE_ATTR(multicast_membership_interval, S_IRUGO | S_IWUSR,
478 show_multicast_membership_interval,
479 store_multicast_membership_interval);
480
481static ssize_t show_multicast_querier_interval(struct device *d,
482 struct device_attribute *attr,
483 char *buf)
484{
485 struct net_bridge *br = to_bridge(d);
486 return sprintf(buf, "%lu\n",
487 jiffies_to_clock_t(br->multicast_querier_interval));
488}
489
490static int set_querier_interval(struct net_bridge *br, unsigned long val)
491{
492 br->multicast_querier_interval = clock_t_to_jiffies(val);
493 return 0;
494}
495
496static ssize_t store_multicast_querier_interval(struct device *d,
497 struct device_attribute *attr,
498 const char *buf, size_t len)
499{
500 return store_bridge_parm(d, buf, len, set_querier_interval);
501}
502static DEVICE_ATTR(multicast_querier_interval, S_IRUGO | S_IWUSR,
503 show_multicast_querier_interval,
504 store_multicast_querier_interval);
505
506static ssize_t show_multicast_query_interval(struct device *d,
507 struct device_attribute *attr,
508 char *buf)
509{
510 struct net_bridge *br = to_bridge(d);
511 return sprintf(buf, "%lu\n",
512 jiffies_to_clock_t(br->multicast_query_interval));
513}
514
515static int set_query_interval(struct net_bridge *br, unsigned long val)
516{
517 br->multicast_query_interval = clock_t_to_jiffies(val);
518 return 0;
519}
520
521static ssize_t store_multicast_query_interval(struct device *d,
522 struct device_attribute *attr,
523 const char *buf, size_t len)
524{
525 return store_bridge_parm(d, buf, len, set_query_interval);
526}
527static DEVICE_ATTR(multicast_query_interval, S_IRUGO | S_IWUSR,
528 show_multicast_query_interval,
529 store_multicast_query_interval);
530
531static ssize_t show_multicast_query_response_interval(
532 struct device *d, struct device_attribute *attr, char *buf)
533{
534 struct net_bridge *br = to_bridge(d);
535 return sprintf(
536 buf, "%lu\n",
537 jiffies_to_clock_t(br->multicast_query_response_interval));
538}
539
540static int set_query_response_interval(struct net_bridge *br, unsigned long val)
541{
542 br->multicast_query_response_interval = clock_t_to_jiffies(val);
543 return 0;
544}
545
546static ssize_t store_multicast_query_response_interval(
547 struct device *d, struct device_attribute *attr, const char *buf,
548 size_t len)
549{
550 return store_bridge_parm(d, buf, len, set_query_response_interval);
551}
552static DEVICE_ATTR(multicast_query_response_interval, S_IRUGO | S_IWUSR,
553 show_multicast_query_response_interval,
554 store_multicast_query_response_interval);
555
556static ssize_t show_multicast_startup_query_interval(
557 struct device *d, struct device_attribute *attr, char *buf)
558{
559 struct net_bridge *br = to_bridge(d);
560 return sprintf(
561 buf, "%lu\n",
562 jiffies_to_clock_t(br->multicast_startup_query_interval));
563}
564
565static int set_startup_query_interval(struct net_bridge *br, unsigned long val)
566{
567 br->multicast_startup_query_interval = clock_t_to_jiffies(val);
568 return 0;
569}
570
571static ssize_t store_multicast_startup_query_interval(
572 struct device *d, struct device_attribute *attr, const char *buf,
573 size_t len)
574{
575 return store_bridge_parm(d, buf, len, set_startup_query_interval);
576}
577static DEVICE_ATTR(multicast_startup_query_interval, S_IRUGO | S_IWUSR,
578 show_multicast_startup_query_interval,
579 store_multicast_startup_query_interval);
Herbert Xu0909e112010-02-27 19:41:49 +0000580#endif
Patrick McHardy4df53d82010-07-02 09:32:57 +0200581#ifdef CONFIG_BRIDGE_NETFILTER
582static ssize_t show_nf_call_iptables(
583 struct device *d, struct device_attribute *attr, char *buf)
584{
585 struct net_bridge *br = to_bridge(d);
586 return sprintf(buf, "%u\n", br->nf_call_iptables);
587}
588
589static int set_nf_call_iptables(struct net_bridge *br, unsigned long val)
590{
591 br->nf_call_iptables = val ? true : false;
592 return 0;
593}
594
595static ssize_t store_nf_call_iptables(
596 struct device *d, struct device_attribute *attr, const char *buf,
597 size_t len)
598{
599 return store_bridge_parm(d, buf, len, set_nf_call_iptables);
600}
601static DEVICE_ATTR(nf_call_iptables, S_IRUGO | S_IWUSR,
602 show_nf_call_iptables, store_nf_call_iptables);
603
604static ssize_t show_nf_call_ip6tables(
605 struct device *d, struct device_attribute *attr, char *buf)
606{
607 struct net_bridge *br = to_bridge(d);
608 return sprintf(buf, "%u\n", br->nf_call_ip6tables);
609}
610
611static int set_nf_call_ip6tables(struct net_bridge *br, unsigned long val)
612{
613 br->nf_call_ip6tables = val ? true : false;
614 return 0;
615}
616
617static ssize_t store_nf_call_ip6tables(
618 struct device *d, struct device_attribute *attr, const char *buf,
619 size_t len)
620{
621 return store_bridge_parm(d, buf, len, set_nf_call_ip6tables);
622}
623static DEVICE_ATTR(nf_call_ip6tables, S_IRUGO | S_IWUSR,
624 show_nf_call_ip6tables, store_nf_call_ip6tables);
625
626static ssize_t show_nf_call_arptables(
627 struct device *d, struct device_attribute *attr, char *buf)
628{
629 struct net_bridge *br = to_bridge(d);
630 return sprintf(buf, "%u\n", br->nf_call_arptables);
631}
632
633static int set_nf_call_arptables(struct net_bridge *br, unsigned long val)
634{
635 br->nf_call_arptables = val ? true : false;
636 return 0;
637}
638
639static ssize_t store_nf_call_arptables(
640 struct device *d, struct device_attribute *attr, const char *buf,
641 size_t len)
642{
643 return store_bridge_parm(d, buf, len, set_nf_call_arptables);
644}
645static DEVICE_ATTR(nf_call_arptables, S_IRUGO | S_IWUSR,
646 show_nf_call_arptables, store_nf_call_arptables);
647#endif
Herbert Xu0909e112010-02-27 19:41:49 +0000648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649static struct attribute *bridge_attrs[] = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700650 &dev_attr_forward_delay.attr,
651 &dev_attr_hello_time.attr,
652 &dev_attr_max_age.attr,
653 &dev_attr_ageing_time.attr,
654 &dev_attr_stp_state.attr,
655 &dev_attr_priority.attr,
656 &dev_attr_bridge_id.attr,
657 &dev_attr_root_id.attr,
658 &dev_attr_root_path_cost.attr,
659 &dev_attr_root_port.attr,
660 &dev_attr_topology_change.attr,
661 &dev_attr_topology_change_detected.attr,
662 &dev_attr_hello_timer.attr,
663 &dev_attr_tcn_timer.attr,
664 &dev_attr_topology_change_timer.attr,
665 &dev_attr_gc_timer.attr,
666 &dev_attr_group_addr.attr,
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700667 &dev_attr_flush.attr,
Herbert Xu0909e112010-02-27 19:41:49 +0000668#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
669 &dev_attr_multicast_router.attr,
Herbert Xu561f1102010-02-27 19:41:50 +0000670 &dev_attr_multicast_snooping.attr,
Herbert Xub1951672010-02-27 19:41:51 +0000671 &dev_attr_hash_elasticity.attr,
672 &dev_attr_hash_max.attr,
Herbert Xud902eee2010-02-27 19:41:52 +0000673 &dev_attr_multicast_last_member_count.attr,
674 &dev_attr_multicast_startup_query_count.attr,
675 &dev_attr_multicast_last_member_interval.attr,
676 &dev_attr_multicast_membership_interval.attr,
677 &dev_attr_multicast_querier_interval.attr,
678 &dev_attr_multicast_query_interval.attr,
679 &dev_attr_multicast_query_response_interval.attr,
680 &dev_attr_multicast_startup_query_interval.attr,
Herbert Xu0909e112010-02-27 19:41:49 +0000681#endif
Patrick McHardy4df53d82010-07-02 09:32:57 +0200682#ifdef CONFIG_BRIDGE_NETFILTER
683 &dev_attr_nf_call_iptables.attr,
684 &dev_attr_nf_call_ip6tables.attr,
685 &dev_attr_nf_call_arptables.attr,
686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 NULL
688};
689
690static struct attribute_group bridge_group = {
691 .name = SYSFS_BRIDGE_ATTR,
692 .attrs = bridge_attrs,
693};
694
695/*
696 * Export the forwarding information table as a binary file
697 * The records are struct __fdb_entry.
698 *
699 * Returns the number of bytes read.
700 */
Chris Wright2c3c8be2010-05-12 18:28:57 -0700701static ssize_t brforward_read(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800702 struct bin_attribute *bin_attr,
703 char *buf, loff_t off, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700705 struct device *dev = to_dev(kobj);
706 struct net_bridge *br = to_bridge(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 int n;
708
709 /* must read whole records */
710 if (off % sizeof(struct __fdb_entry) != 0)
711 return -EINVAL;
712
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900713 n = br_fdb_fillbuf(br, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 count / sizeof(struct __fdb_entry),
715 off / sizeof(struct __fdb_entry));
716
717 if (n > 0)
718 n *= sizeof(struct __fdb_entry);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return n;
721}
722
723static struct bin_attribute bridge_forward = {
724 .attr = { .name = SYSFS_BRIDGE_FDB,
Tejun Heo7b595752007-06-14 03:45:17 +0900725 .mode = S_IRUGO, },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 .read = brforward_read,
727};
728
729/*
730 * Add entries in sysfs onto the existing network class device
731 * for the bridge.
732 * Adds a attribute group "bridge" containing tuning parameters.
733 * Binary attribute containing the forward table
734 * Sub directory to hold links to interfaces.
735 *
736 * Note: the ifobj exists only to be a subdirectory
737 * to hold links. The ifobj exists in same data structure
738 * as it's parent the bridge so reference counting works.
739 */
740int br_sysfs_addbr(struct net_device *dev)
741{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700742 struct kobject *brobj = &dev->dev.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct net_bridge *br = netdev_priv(dev);
744 int err;
745
746 err = sysfs_create_group(brobj, &bridge_group);
747 if (err) {
748 pr_info("%s: can't create group %s/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800749 __func__, dev->name, bridge_group.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 goto out1;
751 }
752
753 err = sysfs_create_bin_file(brobj, &bridge_forward);
754 if (err) {
Randy Dunlap1842c4b2006-10-25 23:07:37 -0700755 pr_info("%s: can't create attribute file %s/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800756 __func__, dev->name, bridge_forward.attr.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 goto out2;
758 }
759
Greg Kroah-Hartman43b98c42007-12-17 15:54:39 -0400760 br->ifobj = kobject_create_and_add(SYSFS_BRIDGE_PORT_SUBDIR, brobj);
761 if (!br->ifobj) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 pr_info("%s: can't add kobject (directory) %s/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800763 __func__, dev->name, SYSFS_BRIDGE_PORT_SUBDIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 goto out3;
765 }
766 return 0;
767 out3:
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700768 sysfs_remove_bin_file(&dev->dev.kobj, &bridge_forward);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 out2:
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700770 sysfs_remove_group(&dev->dev.kobj, &bridge_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 out1:
772 return err;
773
774}
775
776void br_sysfs_delbr(struct net_device *dev)
777{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700778 struct kobject *kobj = &dev->dev.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct net_bridge *br = netdev_priv(dev);
780
Greg Kroah-Hartman78a2d902007-12-20 08:13:05 -0800781 kobject_put(br->ifobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 sysfs_remove_bin_file(kobj, &bridge_forward);
783 sysfs_remove_group(kobj, &bridge_group);
784}