br_sysfs_br.c 12.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 *	Sysfs attributes of bridge ports
 *	Linux ethernet bridge
 *
 *	Authors:
 *	Stephen Hemminger		<shemminger@osdl.org>
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 */

14
#include <linux/capability.h>
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/if_bridge.h>
#include <linux/rtnetlink.h>
#include <linux/spinlock.h>
#include <linux/times.h>

#include "br_private.h"

24
#define to_dev(obj)	container_of(obj, struct device, kobj)
25
#define to_bridge(cd)	((struct net_bridge *)netdev_priv(to_net_dev(cd)))
L
Linus Torvalds 已提交
26 27 28 29

/*
 * Common code for storing bridge parameters.
 */
30
static ssize_t store_bridge_parm(struct device *d,
L
Linus Torvalds 已提交
31
				 const char *buf, size_t len,
32
				 int (*set)(struct net_bridge *, unsigned long))
L
Linus Torvalds 已提交
33
{
34
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
35 36
	char *endp;
	unsigned long val;
37
	int err;
L
Linus Torvalds 已提交
38 39 40 41 42 43 44 45 46

	if (!capable(CAP_NET_ADMIN))
		return -EPERM;

	val = simple_strtoul(buf, &endp, 0);
	if (endp == buf)
		return -EINVAL;

	spin_lock_bh(&br->lock);
47
	err = (*set)(br, val);
L
Linus Torvalds 已提交
48
	spin_unlock_bh(&br->lock);
49
	return err ? err : len;
L
Linus Torvalds 已提交
50 51 52
}


53 54
static ssize_t show_forward_delay(struct device *d,
				  struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
55
{
56
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
57 58 59
	return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->forward_delay));
}

60
static int set_forward_delay(struct net_bridge *br, unsigned long val)
L
Linus Torvalds 已提交
61 62 63 64 65
{
	unsigned long delay = clock_t_to_jiffies(val);
	br->forward_delay = delay;
	if (br_is_root_bridge(br))
		br->bridge_forward_delay = delay;
66
	return 0;
L
Linus Torvalds 已提交
67 68
}

69 70 71
static ssize_t store_forward_delay(struct device *d,
				   struct device_attribute *attr,
				   const char *buf, size_t len)
L
Linus Torvalds 已提交
72
{
73
	return store_bridge_parm(d, buf, len, set_forward_delay);
L
Linus Torvalds 已提交
74
}
75 76
static DEVICE_ATTR(forward_delay, S_IRUGO | S_IWUSR,
		   show_forward_delay, store_forward_delay);
L
Linus Torvalds 已提交
77

78 79
static ssize_t show_hello_time(struct device *d, struct device_attribute *attr,
			       char *buf)
L
Linus Torvalds 已提交
80 81
{
	return sprintf(buf, "%lu\n",
82
		       jiffies_to_clock_t(to_bridge(d)->hello_time));
L
Linus Torvalds 已提交
83 84
}

85
static int set_hello_time(struct net_bridge *br, unsigned long val)
L
Linus Torvalds 已提交
86 87
{
	unsigned long t = clock_t_to_jiffies(val);
88 89 90 91

	if (t < HZ)
		return -EINVAL;

L
Linus Torvalds 已提交
92 93 94
	br->hello_time = t;
	if (br_is_root_bridge(br))
		br->bridge_hello_time = t;
95
	return 0;
L
Linus Torvalds 已提交
96 97
}

98 99
static ssize_t store_hello_time(struct device *d,
				struct device_attribute *attr, const char *buf,
L
Linus Torvalds 已提交
100 101
				size_t len)
{
102
	return store_bridge_parm(d, buf, len, set_hello_time);
L
Linus Torvalds 已提交
103
}
104 105
static DEVICE_ATTR(hello_time, S_IRUGO | S_IWUSR, show_hello_time,
		   store_hello_time);
L
Linus Torvalds 已提交
106

107 108
static ssize_t show_max_age(struct device *d, struct device_attribute *attr,
			    char *buf)
L
Linus Torvalds 已提交
109 110
{
	return sprintf(buf, "%lu\n",
111
		       jiffies_to_clock_t(to_bridge(d)->max_age));
L
Linus Torvalds 已提交
112 113
}

114
static int set_max_age(struct net_bridge *br, unsigned long val)
L
Linus Torvalds 已提交
115 116 117 118 119
{
	unsigned long t = clock_t_to_jiffies(val);
	br->max_age = t;
	if (br_is_root_bridge(br))
		br->bridge_max_age = t;
120
	return 0;
L
Linus Torvalds 已提交
121 122
}

123 124
static ssize_t store_max_age(struct device *d, struct device_attribute *attr,
			     const char *buf, size_t len)
L
Linus Torvalds 已提交
125
{
126
	return store_bridge_parm(d, buf, len, set_max_age);
L
Linus Torvalds 已提交
127
}
128
static DEVICE_ATTR(max_age, S_IRUGO | S_IWUSR, show_max_age, store_max_age);
L
Linus Torvalds 已提交
129

130 131
static ssize_t show_ageing_time(struct device *d,
				struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
132
{
133
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
134 135 136
	return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->ageing_time));
}

137
static int set_ageing_time(struct net_bridge *br, unsigned long val)
L
Linus Torvalds 已提交
138 139
{
	br->ageing_time = clock_t_to_jiffies(val);
140
	return 0;
L
Linus Torvalds 已提交
141 142
}

143 144 145
static ssize_t store_ageing_time(struct device *d,
				 struct device_attribute *attr,
				 const char *buf, size_t len)
L
Linus Torvalds 已提交
146
{
147
	return store_bridge_parm(d, buf, len, set_ageing_time);
L
Linus Torvalds 已提交
148
}
149 150
static DEVICE_ATTR(ageing_time, S_IRUGO | S_IWUSR, show_ageing_time,
		   store_ageing_time);
L
Linus Torvalds 已提交
151

152 153
static ssize_t show_stp_state(struct device *d,
			      struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
154
{
155
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
156 157 158 159
	return sprintf(buf, "%d\n", br->stp_enabled);
}


160 161 162
static ssize_t store_stp_state(struct device *d,
			       struct device_attribute *attr, const char *buf,
			       size_t len)
L
Linus Torvalds 已提交
163
{
S
Stephen Hemminger 已提交
164 165 166 167 168 169 170 171 172 173 174
	struct net_bridge *br = to_bridge(d);
	char *endp;
	unsigned long val;

	if (!capable(CAP_NET_ADMIN))
		return -EPERM;

	val = simple_strtoul(buf, &endp, 0);
	if (endp == buf)
		return -EINVAL;

175 176
	if (!rtnl_trylock())
		return restart_syscall();
S
Stephen Hemminger 已提交
177 178 179
	br_stp_set_enabled(br, val);
	rtnl_unlock();

A
Al Viro 已提交
180
	return len;
L
Linus Torvalds 已提交
181
}
182 183
static DEVICE_ATTR(stp_state, S_IRUGO | S_IWUSR, show_stp_state,
		   store_stp_state);
L
Linus Torvalds 已提交
184

185 186
static ssize_t show_priority(struct device *d, struct device_attribute *attr,
			     char *buf)
L
Linus Torvalds 已提交
187
{
188
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
189 190 191 192
	return sprintf(buf, "%d\n",
		       (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1]);
}

193
static int set_priority(struct net_bridge *br, unsigned long val)
L
Linus Torvalds 已提交
194 195
{
	br_stp_set_bridge_priority(br, (u16) val);
196
	return 0;
L
Linus Torvalds 已提交
197 198
}

199
static ssize_t store_priority(struct device *d, struct device_attribute *attr,
L
Linus Torvalds 已提交
200 201
			       const char *buf, size_t len)
{
202
	return store_bridge_parm(d, buf, len, set_priority);
L
Linus Torvalds 已提交
203
}
204
static DEVICE_ATTR(priority, S_IRUGO | S_IWUSR, show_priority, store_priority);
L
Linus Torvalds 已提交
205

206 207
static ssize_t show_root_id(struct device *d, struct device_attribute *attr,
			    char *buf)
L
Linus Torvalds 已提交
208
{
209
	return br_show_bridge_id(buf, &to_bridge(d)->designated_root);
L
Linus Torvalds 已提交
210
}
211
static DEVICE_ATTR(root_id, S_IRUGO, show_root_id, NULL);
L
Linus Torvalds 已提交
212

213 214
static ssize_t show_bridge_id(struct device *d, struct device_attribute *attr,
			      char *buf)
L
Linus Torvalds 已提交
215
{
216
	return br_show_bridge_id(buf, &to_bridge(d)->bridge_id);
L
Linus Torvalds 已提交
217
}
218
static DEVICE_ATTR(bridge_id, S_IRUGO, show_bridge_id, NULL);
L
Linus Torvalds 已提交
219

220 221
static ssize_t show_root_port(struct device *d, struct device_attribute *attr,
			      char *buf)
L
Linus Torvalds 已提交
222
{
223
	return sprintf(buf, "%d\n", to_bridge(d)->root_port);
L
Linus Torvalds 已提交
224
}
225
static DEVICE_ATTR(root_port, S_IRUGO, show_root_port, NULL);
L
Linus Torvalds 已提交
226

227 228
static ssize_t show_root_path_cost(struct device *d,
				   struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
229
{
230
	return sprintf(buf, "%d\n", to_bridge(d)->root_path_cost);
L
Linus Torvalds 已提交
231
}
232
static DEVICE_ATTR(root_path_cost, S_IRUGO, show_root_path_cost, NULL);
L
Linus Torvalds 已提交
233

234 235
static ssize_t show_topology_change(struct device *d,
				    struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
236
{
237
	return sprintf(buf, "%d\n", to_bridge(d)->topology_change);
L
Linus Torvalds 已提交
238
}
239
static DEVICE_ATTR(topology_change, S_IRUGO, show_topology_change, NULL);
L
Linus Torvalds 已提交
240

241 242 243
static ssize_t show_topology_change_detected(struct device *d,
					     struct device_attribute *attr,
					     char *buf)
L
Linus Torvalds 已提交
244
{
245
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
246 247
	return sprintf(buf, "%d\n", br->topology_change_detected);
}
248 249
static DEVICE_ATTR(topology_change_detected, S_IRUGO,
		   show_topology_change_detected, NULL);
L
Linus Torvalds 已提交
250

251 252
static ssize_t show_hello_timer(struct device *d,
				struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
253
{
254
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
255 256
	return sprintf(buf, "%ld\n", br_timer_value(&br->hello_timer));
}
257
static DEVICE_ATTR(hello_timer, S_IRUGO, show_hello_timer, NULL);
L
Linus Torvalds 已提交
258

259 260
static ssize_t show_tcn_timer(struct device *d, struct device_attribute *attr,
			      char *buf)
L
Linus Torvalds 已提交
261
{
262
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
263 264
	return sprintf(buf, "%ld\n", br_timer_value(&br->tcn_timer));
}
265
static DEVICE_ATTR(tcn_timer, S_IRUGO, show_tcn_timer, NULL);
L
Linus Torvalds 已提交
266

267 268 269
static ssize_t show_topology_change_timer(struct device *d,
					  struct device_attribute *attr,
					  char *buf)
L
Linus Torvalds 已提交
270
{
271
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
272 273
	return sprintf(buf, "%ld\n", br_timer_value(&br->topology_change_timer));
}
274 275
static DEVICE_ATTR(topology_change_timer, S_IRUGO, show_topology_change_timer,
		   NULL);
L
Linus Torvalds 已提交
276

277 278
static ssize_t show_gc_timer(struct device *d, struct device_attribute *attr,
			     char *buf)
L
Linus Torvalds 已提交
279
{
280
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
281 282
	return sprintf(buf, "%ld\n", br_timer_value(&br->gc_timer));
}
283
static DEVICE_ATTR(gc_timer, S_IRUGO, show_gc_timer, NULL);
L
Linus Torvalds 已提交
284

285 286
static ssize_t show_group_addr(struct device *d,
			       struct device_attribute *attr, char *buf)
287
{
288
	struct net_bridge *br = to_bridge(d);
289 290 291 292 293 294
	return sprintf(buf, "%x:%x:%x:%x:%x:%x\n",
		       br->group_addr[0], br->group_addr[1],
		       br->group_addr[2], br->group_addr[3],
		       br->group_addr[4], br->group_addr[5]);
}

295 296 297
static ssize_t store_group_addr(struct device *d,
				struct device_attribute *attr,
				const char *buf, size_t len)
298
{
299
	struct net_bridge *br = to_bridge(d);
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
	unsigned new_addr[6];
	int i;

	if (!capable(CAP_NET_ADMIN))
		return -EPERM;

	if (sscanf(buf, "%x:%x:%x:%x:%x:%x",
		   &new_addr[0], &new_addr[1], &new_addr[2],
		   &new_addr[3], &new_addr[4], &new_addr[5]) != 6)
		return -EINVAL;

	/* Must be 01:80:c2:00:00:0X */
	for (i = 0; i < 5; i++)
		if (new_addr[i] != br_group_address[i])
			return -EINVAL;

	if (new_addr[5] & ~0xf)
		return -EINVAL;

319 320 321
	if (new_addr[5] == 1 ||		/* 802.3x Pause address */
	    new_addr[5] == 2 ||		/* 802.3ad Slow protocols */
	    new_addr[5] == 3)		/* 802.1X PAE address */
322 323 324 325 326 327 328 329 330
		return -EINVAL;

	spin_lock_bh(&br->lock);
	for (i = 0; i < 6; i++)
		br->group_addr[i] = new_addr[i];
	spin_unlock_bh(&br->lock);
	return len;
}

331 332
static DEVICE_ATTR(group_addr, S_IRUGO | S_IWUSR,
		   show_group_addr, store_group_addr);
333

334 335 336 337 338 339 340 341 342 343 344 345 346
static ssize_t store_flush(struct device *d,
			   struct device_attribute *attr,
			   const char *buf, size_t len)
{
	struct net_bridge *br = to_bridge(d);

	if (!capable(CAP_NET_ADMIN))
		return -EPERM;

	br_fdb_flush(br);
	return len;
}
static DEVICE_ATTR(flush, S_IWUSR, NULL, store_flush);
347

348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
static ssize_t show_multicast_router(struct device *d,
				     struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%d\n", br->multicast_router);
}

static ssize_t store_multicast_router(struct device *d,
				      struct device_attribute *attr,
				      const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, br_multicast_set_router);
}
static DEVICE_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router,
		   store_multicast_router);
#endif

L
Linus Torvalds 已提交
366
static struct attribute *bridge_attrs[] = {
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
	&dev_attr_forward_delay.attr,
	&dev_attr_hello_time.attr,
	&dev_attr_max_age.attr,
	&dev_attr_ageing_time.attr,
	&dev_attr_stp_state.attr,
	&dev_attr_priority.attr,
	&dev_attr_bridge_id.attr,
	&dev_attr_root_id.attr,
	&dev_attr_root_path_cost.attr,
	&dev_attr_root_port.attr,
	&dev_attr_topology_change.attr,
	&dev_attr_topology_change_detected.attr,
	&dev_attr_hello_timer.attr,
	&dev_attr_tcn_timer.attr,
	&dev_attr_topology_change_timer.attr,
	&dev_attr_gc_timer.attr,
	&dev_attr_group_addr.attr,
384
	&dev_attr_flush.attr,
385 386 387
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
	&dev_attr_multicast_router.attr,
#endif
L
Linus Torvalds 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401
	NULL
};

static struct attribute_group bridge_group = {
	.name = SYSFS_BRIDGE_ATTR,
	.attrs = bridge_attrs,
};

/*
 * Export the forwarding information table as a binary file
 * The records are struct __fdb_entry.
 *
 * Returns the number of bytes read.
 */
402 403 404
static ssize_t brforward_read(struct kobject *kobj,
			      struct bin_attribute *bin_attr,
			      char *buf, loff_t off, size_t count)
L
Linus Torvalds 已提交
405
{
406 407
	struct device *dev = to_dev(kobj);
	struct net_bridge *br = to_bridge(dev);
L
Linus Torvalds 已提交
408 409 410 411 412 413
	int n;

	/* must read whole records */
	if (off % sizeof(struct __fdb_entry) != 0)
		return -EINVAL;

414
	n =  br_fdb_fillbuf(br, buf,
L
Linus Torvalds 已提交
415 416 417 418 419
			    count / sizeof(struct __fdb_entry),
			    off / sizeof(struct __fdb_entry));

	if (n > 0)
		n *= sizeof(struct __fdb_entry);
420

L
Linus Torvalds 已提交
421 422 423 424 425
	return n;
}

static struct bin_attribute bridge_forward = {
	.attr = { .name = SYSFS_BRIDGE_FDB,
426
		  .mode = S_IRUGO, },
L
Linus Torvalds 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
	.read = brforward_read,
};

/*
 * Add entries in sysfs onto the existing network class device
 * for the bridge.
 *   Adds a attribute group "bridge" containing tuning parameters.
 *   Binary attribute containing the forward table
 *   Sub directory to hold links to interfaces.
 *
 * Note: the ifobj exists only to be a subdirectory
 *   to hold links.  The ifobj exists in same data structure
 *   as it's parent the bridge so reference counting works.
 */
int br_sysfs_addbr(struct net_device *dev)
{
443
	struct kobject *brobj = &dev->dev.kobj;
L
Linus Torvalds 已提交
444 445 446 447 448 449
	struct net_bridge *br = netdev_priv(dev);
	int err;

	err = sysfs_create_group(brobj, &bridge_group);
	if (err) {
		pr_info("%s: can't create group %s/%s\n",
450
			__func__, dev->name, bridge_group.name);
L
Linus Torvalds 已提交
451 452 453 454 455
		goto out1;
	}

	err = sysfs_create_bin_file(brobj, &bridge_forward);
	if (err) {
456
		pr_info("%s: can't create attribute file %s/%s\n",
457
			__func__, dev->name, bridge_forward.attr.name);
L
Linus Torvalds 已提交
458 459 460
		goto out2;
	}

461 462
	br->ifobj = kobject_create_and_add(SYSFS_BRIDGE_PORT_SUBDIR, brobj);
	if (!br->ifobj) {
L
Linus Torvalds 已提交
463
		pr_info("%s: can't add kobject (directory) %s/%s\n",
464
			__func__, dev->name, SYSFS_BRIDGE_PORT_SUBDIR);
L
Linus Torvalds 已提交
465 466 467 468
		goto out3;
	}
	return 0;
 out3:
469
	sysfs_remove_bin_file(&dev->dev.kobj, &bridge_forward);
L
Linus Torvalds 已提交
470
 out2:
471
	sysfs_remove_group(&dev->dev.kobj, &bridge_group);
L
Linus Torvalds 已提交
472 473 474 475 476 477 478
 out1:
	return err;

}

void br_sysfs_delbr(struct net_device *dev)
{
479
	struct kobject *kobj = &dev->dev.kobj;
L
Linus Torvalds 已提交
480 481
	struct net_bridge *br = netdev_priv(dev);

482
	kobject_put(br->ifobj);
L
Linus Torvalds 已提交
483 484 485
	sysfs_remove_bin_file(kobj, &bridge_forward);
	sysfs_remove_group(kobj, &bridge_group);
}