br_sysfs_br.c 24.8 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *	Sysfs attributes of bridge
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13
 *	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
#include <linux/kernel.h>
#include <linux/netdevice.h>
17
#include <linux/etherdevice.h>
L
Linus Torvalds 已提交
18 19 20 21 22 23 24
#include <linux/if_bridge.h>
#include <linux/rtnetlink.h>
#include <linux/spinlock.h>
#include <linux/times.h>

#include "br_private.h"

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

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

40
	if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
L
Linus Torvalds 已提交
41 42 43 44 45 46
		return -EPERM;

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

47 48
	err = (*set)(br, val);
	return err ? err : len;
L
Linus Torvalds 已提交
49 50 51
}


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

59 60 61
static ssize_t store_forward_delay(struct device *d,
				   struct device_attribute *attr,
				   const char *buf, size_t len)
L
Linus Torvalds 已提交
62
{
63
	return store_bridge_parm(d, buf, len, br_set_forward_delay);
L
Linus Torvalds 已提交
64
}
65 66
static DEVICE_ATTR(forward_delay, S_IRUGO | S_IWUSR,
		   show_forward_delay, store_forward_delay);
L
Linus Torvalds 已提交
67

68 69
static ssize_t show_hello_time(struct device *d, struct device_attribute *attr,
			       char *buf)
L
Linus Torvalds 已提交
70 71
{
	return sprintf(buf, "%lu\n",
72
		       jiffies_to_clock_t(to_bridge(d)->hello_time));
L
Linus Torvalds 已提交
73 74
}

75 76
static ssize_t store_hello_time(struct device *d,
				struct device_attribute *attr, const char *buf,
L
Linus Torvalds 已提交
77 78
				size_t len)
{
79
	return store_bridge_parm(d, buf, len, br_set_hello_time);
L
Linus Torvalds 已提交
80
}
81 82
static DEVICE_ATTR(hello_time, S_IRUGO | S_IWUSR, show_hello_time,
		   store_hello_time);
L
Linus Torvalds 已提交
83

84 85
static ssize_t show_max_age(struct device *d, struct device_attribute *attr,
			    char *buf)
L
Linus Torvalds 已提交
86 87
{
	return sprintf(buf, "%lu\n",
88
		       jiffies_to_clock_t(to_bridge(d)->max_age));
L
Linus Torvalds 已提交
89 90
}

91 92
static ssize_t store_max_age(struct device *d, struct device_attribute *attr,
			     const char *buf, size_t len)
L
Linus Torvalds 已提交
93
{
94
	return store_bridge_parm(d, buf, len, br_set_max_age);
L
Linus Torvalds 已提交
95
}
96
static DEVICE_ATTR(max_age, S_IRUGO | S_IWUSR, show_max_age, store_max_age);
L
Linus Torvalds 已提交
97

98 99
static ssize_t show_ageing_time(struct device *d,
				struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
100
{
101
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
102 103 104
	return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->ageing_time));
}

105
static int set_ageing_time(struct net_bridge *br, unsigned long val)
L
Linus Torvalds 已提交
106 107
{
	br->ageing_time = clock_t_to_jiffies(val);
108
	return 0;
L
Linus Torvalds 已提交
109 110
}

111 112 113
static ssize_t store_ageing_time(struct device *d,
				 struct device_attribute *attr,
				 const char *buf, size_t len)
L
Linus Torvalds 已提交
114
{
115
	return store_bridge_parm(d, buf, len, set_ageing_time);
L
Linus Torvalds 已提交
116
}
117 118
static DEVICE_ATTR(ageing_time, S_IRUGO | S_IWUSR, show_ageing_time,
		   store_ageing_time);
L
Linus Torvalds 已提交
119

120 121
static ssize_t show_stp_state(struct device *d,
			      struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
122
{
123
	struct net_bridge *br = to_bridge(d);
L
Linus Torvalds 已提交
124 125 126 127
	return sprintf(buf, "%d\n", br->stp_enabled);
}


128 129 130
static ssize_t store_stp_state(struct device *d,
			       struct device_attribute *attr, const char *buf,
			       size_t len)
L
Linus Torvalds 已提交
131
{
S
Stephen Hemminger 已提交
132 133 134 135
	struct net_bridge *br = to_bridge(d);
	char *endp;
	unsigned long val;

136
	if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
S
Stephen Hemminger 已提交
137 138 139 140 141 142
		return -EPERM;

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

143 144
	if (!rtnl_trylock())
		return restart_syscall();
S
Stephen Hemminger 已提交
145 146 147
	br_stp_set_enabled(br, val);
	rtnl_unlock();

A
Al Viro 已提交
148
	return len;
L
Linus Torvalds 已提交
149
}
150 151
static DEVICE_ATTR(stp_state, S_IRUGO | S_IWUSR, show_stp_state,
		   store_stp_state);
L
Linus Torvalds 已提交
152

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
static ssize_t show_group_fwd_mask(struct device *d,
			      struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%#x\n", br->group_fwd_mask);
}


static ssize_t store_group_fwd_mask(struct device *d,
			       struct device_attribute *attr, const char *buf,
			       size_t len)
{
	struct net_bridge *br = to_bridge(d);
	char *endp;
	unsigned long val;

169
	if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
		return -EPERM;

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

	if (val & BR_GROUPFWD_RESTRICTED)
		return -EINVAL;

	br->group_fwd_mask = val;

	return len;
}
static DEVICE_ATTR(group_fwd_mask, S_IRUGO | S_IWUSR, show_group_fwd_mask,
		   store_group_fwd_mask);

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

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

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

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

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

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

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

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

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

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

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

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

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

286 287
static ssize_t show_group_addr(struct device *d,
			       struct device_attribute *attr, char *buf)
288
{
289
	struct net_bridge *br = to_bridge(d);
290 291 292 293 294 295
	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]);
}

296 297 298
static ssize_t store_group_addr(struct device *d,
				struct device_attribute *attr,
				const char *buf, size_t len)
299
{
300
	struct net_bridge *br = to_bridge(d);
301
	u8 new_addr[6];
302 303
	int i;

304
	if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
305 306
		return -EPERM;

307
	if (sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
308 309 310 311
		   &new_addr[0], &new_addr[1], &new_addr[2],
		   &new_addr[3], &new_addr[4], &new_addr[5]) != 6)
		return -EINVAL;

312
	if (!is_link_local_ether_addr(new_addr))
313 314
		return -EINVAL;

315 316 317
	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 */
318 319 320 321 322 323 324 325 326
		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;
}

327 328
static DEVICE_ATTR(group_addr, S_IRUGO | S_IWUSR,
		   show_group_addr, store_group_addr);
329

330 331 332 333 334 335
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);

336
	if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
337 338 339 340 341 342
		return -EPERM;

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

344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
#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);
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

static ssize_t show_multicast_snooping(struct device *d,
				       struct device_attribute *attr,
				       char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%d\n", !br->multicast_disabled);
}

static ssize_t store_multicast_snooping(struct device *d,
					struct device_attribute *attr,
					const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, br_multicast_toggle);
}
static DEVICE_ATTR(multicast_snooping, S_IRUGO | S_IWUSR,
		   show_multicast_snooping, store_multicast_snooping);
377

378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
static ssize_t show_multicast_query_use_ifaddr(struct device *d,
				      struct device_attribute *attr,
				      char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%d\n", br->multicast_query_use_ifaddr);
}

static int set_query_use_ifaddr(struct net_bridge *br, unsigned long val)
{
	br->multicast_query_use_ifaddr = !!val;
	return 0;
}

static ssize_t
store_multicast_query_use_ifaddr(struct device *d,
				 struct device_attribute *attr,
				 const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, set_query_use_ifaddr);
}
static DEVICE_ATTR(multicast_query_use_ifaddr, S_IRUGO | S_IWUSR,
		   show_multicast_query_use_ifaddr,
		   store_multicast_query_use_ifaddr);

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
static ssize_t show_multicast_querier(struct device *d,
				      struct device_attribute *attr,
				      char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%d\n", br->multicast_querier);
}

static ssize_t store_multicast_querier(struct device *d,
				       struct device_attribute *attr,
				       const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, br_multicast_set_querier);
}
static DEVICE_ATTR(multicast_querier, S_IRUGO | S_IWUSR,
		   show_multicast_querier, store_multicast_querier);

420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
static ssize_t show_hash_elasticity(struct device *d,
				    struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->hash_elasticity);
}

static int set_elasticity(struct net_bridge *br, unsigned long val)
{
	br->hash_elasticity = val;
	return 0;
}

static ssize_t store_hash_elasticity(struct device *d,
				     struct device_attribute *attr,
				     const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, set_elasticity);
}
static DEVICE_ATTR(hash_elasticity, S_IRUGO | S_IWUSR, show_hash_elasticity,
		   store_hash_elasticity);

static ssize_t show_hash_max(struct device *d, struct device_attribute *attr,
			     char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->hash_max);
}

static ssize_t store_hash_max(struct device *d, struct device_attribute *attr,
			      const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, br_multicast_set_hash_max);
}
static DEVICE_ATTR(hash_max, S_IRUGO | S_IWUSR, show_hash_max,
		   store_hash_max);
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650

static ssize_t show_multicast_last_member_count(struct device *d,
						struct device_attribute *attr,
						char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->multicast_last_member_count);
}

static int set_last_member_count(struct net_bridge *br, unsigned long val)
{
	br->multicast_last_member_count = val;
	return 0;
}

static ssize_t store_multicast_last_member_count(struct device *d,
						 struct device_attribute *attr,
						 const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, set_last_member_count);
}
static DEVICE_ATTR(multicast_last_member_count, S_IRUGO | S_IWUSR,
		   show_multicast_last_member_count,
		   store_multicast_last_member_count);

static ssize_t show_multicast_startup_query_count(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->multicast_startup_query_count);
}

static int set_startup_query_count(struct net_bridge *br, unsigned long val)
{
	br->multicast_startup_query_count = val;
	return 0;
}

static ssize_t store_multicast_startup_query_count(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_startup_query_count);
}
static DEVICE_ATTR(multicast_startup_query_count, S_IRUGO | S_IWUSR,
		   show_multicast_startup_query_count,
		   store_multicast_startup_query_count);

static ssize_t show_multicast_last_member_interval(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%lu\n",
		       jiffies_to_clock_t(br->multicast_last_member_interval));
}

static int set_last_member_interval(struct net_bridge *br, unsigned long val)
{
	br->multicast_last_member_interval = clock_t_to_jiffies(val);
	return 0;
}

static ssize_t store_multicast_last_member_interval(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_last_member_interval);
}
static DEVICE_ATTR(multicast_last_member_interval, S_IRUGO | S_IWUSR,
		   show_multicast_last_member_interval,
		   store_multicast_last_member_interval);

static ssize_t show_multicast_membership_interval(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%lu\n",
		       jiffies_to_clock_t(br->multicast_membership_interval));
}

static int set_membership_interval(struct net_bridge *br, unsigned long val)
{
	br->multicast_membership_interval = clock_t_to_jiffies(val);
	return 0;
}

static ssize_t store_multicast_membership_interval(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_membership_interval);
}
static DEVICE_ATTR(multicast_membership_interval, S_IRUGO | S_IWUSR,
		   show_multicast_membership_interval,
		   store_multicast_membership_interval);

static ssize_t show_multicast_querier_interval(struct device *d,
					       struct device_attribute *attr,
					       char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%lu\n",
		       jiffies_to_clock_t(br->multicast_querier_interval));
}

static int set_querier_interval(struct net_bridge *br, unsigned long val)
{
	br->multicast_querier_interval = clock_t_to_jiffies(val);
	return 0;
}

static ssize_t store_multicast_querier_interval(struct device *d,
						struct device_attribute *attr,
						const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, set_querier_interval);
}
static DEVICE_ATTR(multicast_querier_interval, S_IRUGO | S_IWUSR,
		   show_multicast_querier_interval,
		   store_multicast_querier_interval);

static ssize_t show_multicast_query_interval(struct device *d,
					     struct device_attribute *attr,
					     char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%lu\n",
		       jiffies_to_clock_t(br->multicast_query_interval));
}

static int set_query_interval(struct net_bridge *br, unsigned long val)
{
	br->multicast_query_interval = clock_t_to_jiffies(val);
	return 0;
}

static ssize_t store_multicast_query_interval(struct device *d,
					      struct device_attribute *attr,
					      const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, set_query_interval);
}
static DEVICE_ATTR(multicast_query_interval, S_IRUGO | S_IWUSR,
		   show_multicast_query_interval,
		   store_multicast_query_interval);

static ssize_t show_multicast_query_response_interval(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(
		buf, "%lu\n",
		jiffies_to_clock_t(br->multicast_query_response_interval));
}

static int set_query_response_interval(struct net_bridge *br, unsigned long val)
{
	br->multicast_query_response_interval = clock_t_to_jiffies(val);
	return 0;
}

static ssize_t store_multicast_query_response_interval(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_query_response_interval);
}
static DEVICE_ATTR(multicast_query_response_interval, S_IRUGO | S_IWUSR,
		   show_multicast_query_response_interval,
		   store_multicast_query_response_interval);

static ssize_t show_multicast_startup_query_interval(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(
		buf, "%lu\n",
		jiffies_to_clock_t(br->multicast_startup_query_interval));
}

static int set_startup_query_interval(struct net_bridge *br, unsigned long val)
{
	br->multicast_startup_query_interval = clock_t_to_jiffies(val);
	return 0;
}

static ssize_t store_multicast_startup_query_interval(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_startup_query_interval);
}
static DEVICE_ATTR(multicast_startup_query_interval, S_IRUGO | S_IWUSR,
		   show_multicast_startup_query_interval,
		   store_multicast_startup_query_interval);
651
#endif
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
#ifdef CONFIG_BRIDGE_NETFILTER
static ssize_t show_nf_call_iptables(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->nf_call_iptables);
}

static int set_nf_call_iptables(struct net_bridge *br, unsigned long val)
{
	br->nf_call_iptables = val ? true : false;
	return 0;
}

static ssize_t store_nf_call_iptables(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_nf_call_iptables);
}
static DEVICE_ATTR(nf_call_iptables, S_IRUGO | S_IWUSR,
		   show_nf_call_iptables, store_nf_call_iptables);

static ssize_t show_nf_call_ip6tables(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->nf_call_ip6tables);
}

static int set_nf_call_ip6tables(struct net_bridge *br, unsigned long val)
{
	br->nf_call_ip6tables = val ? true : false;
	return 0;
}

static ssize_t store_nf_call_ip6tables(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_nf_call_ip6tables);
}
static DEVICE_ATTR(nf_call_ip6tables, S_IRUGO | S_IWUSR,
		   show_nf_call_ip6tables, store_nf_call_ip6tables);

static ssize_t show_nf_call_arptables(
	struct device *d, struct device_attribute *attr, char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%u\n", br->nf_call_arptables);
}

static int set_nf_call_arptables(struct net_bridge *br, unsigned long val)
{
	br->nf_call_arptables = val ? true : false;
	return 0;
}

static ssize_t store_nf_call_arptables(
	struct device *d, struct device_attribute *attr, const char *buf,
	size_t len)
{
	return store_bridge_parm(d, buf, len, set_nf_call_arptables);
}
static DEVICE_ATTR(nf_call_arptables, S_IRUGO | S_IWUSR,
		   show_nf_call_arptables, store_nf_call_arptables);
#endif
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
#ifdef CONFIG_BRIDGE_VLAN_FILTERING
static ssize_t show_vlan_filtering(struct device *d,
				   struct device_attribute *attr,
				   char *buf)
{
	struct net_bridge *br = to_bridge(d);
	return sprintf(buf, "%d\n", br->vlan_enabled);
}

static ssize_t store_vlan_filtering(struct device *d,
				    struct device_attribute *attr,
				    const char *buf, size_t len)
{
	return store_bridge_parm(d, buf, len, br_vlan_filter_toggle);
}
static DEVICE_ATTR(vlan_filtering, S_IRUGO | S_IWUSR,
		   show_vlan_filtering, store_vlan_filtering);
#endif
737

L
Linus Torvalds 已提交
738
static struct attribute *bridge_attrs[] = {
739 740 741 742 743
	&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,
744
	&dev_attr_group_fwd_mask.attr,
745 746 747 748 749 750 751 752 753 754 755 756
	&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,
757
	&dev_attr_flush.attr,
758 759
#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
	&dev_attr_multicast_router.attr,
760
	&dev_attr_multicast_snooping.attr,
761
	&dev_attr_multicast_querier.attr,
762
	&dev_attr_multicast_query_use_ifaddr.attr,
763 764
	&dev_attr_hash_elasticity.attr,
	&dev_attr_hash_max.attr,
765 766 767 768 769 770 771 772
	&dev_attr_multicast_last_member_count.attr,
	&dev_attr_multicast_startup_query_count.attr,
	&dev_attr_multicast_last_member_interval.attr,
	&dev_attr_multicast_membership_interval.attr,
	&dev_attr_multicast_querier_interval.attr,
	&dev_attr_multicast_query_interval.attr,
	&dev_attr_multicast_query_response_interval.attr,
	&dev_attr_multicast_startup_query_interval.attr,
773 774 775 776 777
#endif
#ifdef CONFIG_BRIDGE_NETFILTER
	&dev_attr_nf_call_iptables.attr,
	&dev_attr_nf_call_ip6tables.attr,
	&dev_attr_nf_call_arptables.attr,
778 779 780
#endif
#ifdef CONFIG_BRIDGE_VLAN_FILTERING
	&dev_attr_vlan_filtering.attr,
781
#endif
L
Linus Torvalds 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794 795
	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.
 */
796
static ssize_t brforward_read(struct file *filp, struct kobject *kobj,
797 798
			      struct bin_attribute *bin_attr,
			      char *buf, loff_t off, size_t count)
L
Linus Torvalds 已提交
799
{
800 801
	struct device *dev = to_dev(kobj);
	struct net_bridge *br = to_bridge(dev);
L
Linus Torvalds 已提交
802 803 804 805 806 807
	int n;

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

808
	n =  br_fdb_fillbuf(br, buf,
L
Linus Torvalds 已提交
809 810 811 812 813
			    count / sizeof(struct __fdb_entry),
			    off / sizeof(struct __fdb_entry));

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

L
Linus Torvalds 已提交
815 816 817 818 819
	return n;
}

static struct bin_attribute bridge_forward = {
	.attr = { .name = SYSFS_BRIDGE_FDB,
820
		  .mode = S_IRUGO, },
L
Linus Torvalds 已提交
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836
	.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)
{
837
	struct kobject *brobj = &dev->dev.kobj;
L
Linus Torvalds 已提交
838 839 840 841 842 843
	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",
844
			__func__, dev->name, bridge_group.name);
L
Linus Torvalds 已提交
845 846 847 848 849
		goto out1;
	}

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

855 856
	br->ifobj = kobject_create_and_add(SYSFS_BRIDGE_PORT_SUBDIR, brobj);
	if (!br->ifobj) {
L
Linus Torvalds 已提交
857
		pr_info("%s: can't add kobject (directory) %s/%s\n",
858
			__func__, dev->name, SYSFS_BRIDGE_PORT_SUBDIR);
L
Linus Torvalds 已提交
859 860 861 862
		goto out3;
	}
	return 0;
 out3:
863
	sysfs_remove_bin_file(&dev->dev.kobj, &bridge_forward);
L
Linus Torvalds 已提交
864
 out2:
865
	sysfs_remove_group(&dev->dev.kobj, &bridge_group);
L
Linus Torvalds 已提交
866 867 868 869 870 871 872
 out1:
	return err;

}

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

876
	kobject_put(br->ifobj);
L
Linus Torvalds 已提交
877 878 879
	sysfs_remove_bin_file(kobj, &bridge_forward);
	sysfs_remove_group(kobj, &bridge_group);
}