]> git.ipfire.org Git - thirdparty/kernel/stable.git/blob - net/bridge/br_sysfs_br.c
bridge: mcast: add IGMPv3 query support
[thirdparty/kernel/stable.git] / net / bridge / br_sysfs_br.c
1 /*
2 * Sysfs attributes of bridge
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
14 #include <linux/capability.h>
15 #include <linux/kernel.h>
16 #include <linux/netdevice.h>
17 #include <linux/etherdevice.h>
18 #include <linux/if_bridge.h>
19 #include <linux/rtnetlink.h>
20 #include <linux/spinlock.h>
21 #include <linux/times.h>
22
23 #include "br_private.h"
24
25 #define to_bridge(cd) ((struct net_bridge *)netdev_priv(to_net_dev(cd)))
26
27 /*
28 * Common code for storing bridge parameters.
29 */
30 static ssize_t store_bridge_parm(struct device *d,
31 const char *buf, size_t len,
32 int (*set)(struct net_bridge *, unsigned long))
33 {
34 struct net_bridge *br = to_bridge(d);
35 char *endp;
36 unsigned long val;
37 int err;
38
39 if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
40 return -EPERM;
41
42 val = simple_strtoul(buf, &endp, 0);
43 if (endp == buf)
44 return -EINVAL;
45
46 if (!rtnl_trylock())
47 return restart_syscall();
48
49 err = (*set)(br, val);
50 if (!err)
51 netdev_state_change(br->dev);
52 rtnl_unlock();
53
54 return err ? err : len;
55 }
56
57
58 static ssize_t forward_delay_show(struct device *d,
59 struct device_attribute *attr, char *buf)
60 {
61 struct net_bridge *br = to_bridge(d);
62 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->forward_delay));
63 }
64
65 static ssize_t forward_delay_store(struct device *d,
66 struct device_attribute *attr,
67 const char *buf, size_t len)
68 {
69 return store_bridge_parm(d, buf, len, br_set_forward_delay);
70 }
71 static DEVICE_ATTR_RW(forward_delay);
72
73 static ssize_t hello_time_show(struct device *d, struct device_attribute *attr,
74 char *buf)
75 {
76 return sprintf(buf, "%lu\n",
77 jiffies_to_clock_t(to_bridge(d)->hello_time));
78 }
79
80 static ssize_t hello_time_store(struct device *d,
81 struct device_attribute *attr, const char *buf,
82 size_t len)
83 {
84 return store_bridge_parm(d, buf, len, br_set_hello_time);
85 }
86 static DEVICE_ATTR_RW(hello_time);
87
88 static ssize_t max_age_show(struct device *d, struct device_attribute *attr,
89 char *buf)
90 {
91 return sprintf(buf, "%lu\n",
92 jiffies_to_clock_t(to_bridge(d)->max_age));
93 }
94
95 static ssize_t max_age_store(struct device *d, struct device_attribute *attr,
96 const char *buf, size_t len)
97 {
98 return store_bridge_parm(d, buf, len, br_set_max_age);
99 }
100 static DEVICE_ATTR_RW(max_age);
101
102 static ssize_t ageing_time_show(struct device *d,
103 struct device_attribute *attr, char *buf)
104 {
105 struct net_bridge *br = to_bridge(d);
106 return sprintf(buf, "%lu\n", jiffies_to_clock_t(br->ageing_time));
107 }
108
109 static int set_ageing_time(struct net_bridge *br, unsigned long val)
110 {
111 return br_set_ageing_time(br, val);
112 }
113
114 static ssize_t ageing_time_store(struct device *d,
115 struct device_attribute *attr,
116 const char *buf, size_t len)
117 {
118 return store_bridge_parm(d, buf, len, set_ageing_time);
119 }
120 static DEVICE_ATTR_RW(ageing_time);
121
122 static ssize_t stp_state_show(struct device *d,
123 struct device_attribute *attr, char *buf)
124 {
125 struct net_bridge *br = to_bridge(d);
126 return sprintf(buf, "%d\n", br->stp_enabled);
127 }
128
129
130 static int set_stp_state(struct net_bridge *br, unsigned long val)
131 {
132 br_stp_set_enabled(br, val);
133
134 return 0;
135 }
136
137 static ssize_t stp_state_store(struct device *d,
138 struct device_attribute *attr, const char *buf,
139 size_t len)
140 {
141 return store_bridge_parm(d, buf, len, set_stp_state);
142 }
143 static DEVICE_ATTR_RW(stp_state);
144
145 static ssize_t group_fwd_mask_show(struct device *d,
146 struct device_attribute *attr,
147 char *buf)
148 {
149 struct net_bridge *br = to_bridge(d);
150 return sprintf(buf, "%#x\n", br->group_fwd_mask);
151 }
152
153 static int set_group_fwd_mask(struct net_bridge *br, unsigned long val)
154 {
155 if (val & BR_GROUPFWD_RESTRICTED)
156 return -EINVAL;
157
158 br->group_fwd_mask = val;
159
160 return 0;
161 }
162
163 static ssize_t group_fwd_mask_store(struct device *d,
164 struct device_attribute *attr,
165 const char *buf,
166 size_t len)
167 {
168 return store_bridge_parm(d, buf, len, set_group_fwd_mask);
169 }
170 static DEVICE_ATTR_RW(group_fwd_mask);
171
172 static ssize_t priority_show(struct device *d, struct device_attribute *attr,
173 char *buf)
174 {
175 struct net_bridge *br = to_bridge(d);
176 return sprintf(buf, "%d\n",
177 (br->bridge_id.prio[0] << 8) | br->bridge_id.prio[1]);
178 }
179
180 static int set_priority(struct net_bridge *br, unsigned long val)
181 {
182 br_stp_set_bridge_priority(br, (u16) val);
183 return 0;
184 }
185
186 static ssize_t priority_store(struct device *d, struct device_attribute *attr,
187 const char *buf, size_t len)
188 {
189 return store_bridge_parm(d, buf, len, set_priority);
190 }
191 static DEVICE_ATTR_RW(priority);
192
193 static ssize_t root_id_show(struct device *d, struct device_attribute *attr,
194 char *buf)
195 {
196 return br_show_bridge_id(buf, &to_bridge(d)->designated_root);
197 }
198 static DEVICE_ATTR_RO(root_id);
199
200 static ssize_t bridge_id_show(struct device *d, struct device_attribute *attr,
201 char *buf)
202 {
203 return br_show_bridge_id(buf, &to_bridge(d)->bridge_id);
204 }
205 static DEVICE_ATTR_RO(bridge_id);
206
207 static ssize_t root_port_show(struct device *d, struct device_attribute *attr,
208 char *buf)
209 {
210 return sprintf(buf, "%d\n", to_bridge(d)->root_port);
211 }
212 static DEVICE_ATTR_RO(root_port);
213
214 static ssize_t root_path_cost_show(struct device *d,
215 struct device_attribute *attr, char *buf)
216 {
217 return sprintf(buf, "%d\n", to_bridge(d)->root_path_cost);
218 }
219 static DEVICE_ATTR_RO(root_path_cost);
220
221 static ssize_t topology_change_show(struct device *d,
222 struct device_attribute *attr, char *buf)
223 {
224 return sprintf(buf, "%d\n", to_bridge(d)->topology_change);
225 }
226 static DEVICE_ATTR_RO(topology_change);
227
228 static ssize_t topology_change_detected_show(struct device *d,
229 struct device_attribute *attr,
230 char *buf)
231 {
232 struct net_bridge *br = to_bridge(d);
233 return sprintf(buf, "%d\n", br->topology_change_detected);
234 }
235 static DEVICE_ATTR_RO(topology_change_detected);
236
237 static ssize_t hello_timer_show(struct device *d,
238 struct device_attribute *attr, char *buf)
239 {
240 struct net_bridge *br = to_bridge(d);
241 return sprintf(buf, "%ld\n", br_timer_value(&br->hello_timer));
242 }
243 static DEVICE_ATTR_RO(hello_timer);
244
245 static ssize_t tcn_timer_show(struct device *d, struct device_attribute *attr,
246 char *buf)
247 {
248 struct net_bridge *br = to_bridge(d);
249 return sprintf(buf, "%ld\n", br_timer_value(&br->tcn_timer));
250 }
251 static DEVICE_ATTR_RO(tcn_timer);
252
253 static ssize_t topology_change_timer_show(struct device *d,
254 struct device_attribute *attr,
255 char *buf)
256 {
257 struct net_bridge *br = to_bridge(d);
258 return sprintf(buf, "%ld\n", br_timer_value(&br->topology_change_timer));
259 }
260 static DEVICE_ATTR_RO(topology_change_timer);
261
262 static ssize_t gc_timer_show(struct device *d, struct device_attribute *attr,
263 char *buf)
264 {
265 struct net_bridge *br = to_bridge(d);
266 return sprintf(buf, "%ld\n", br_timer_value(&br->gc_timer));
267 }
268 static DEVICE_ATTR_RO(gc_timer);
269
270 static ssize_t group_addr_show(struct device *d,
271 struct device_attribute *attr, char *buf)
272 {
273 struct net_bridge *br = to_bridge(d);
274 return sprintf(buf, "%x:%x:%x:%x:%x:%x\n",
275 br->group_addr[0], br->group_addr[1],
276 br->group_addr[2], br->group_addr[3],
277 br->group_addr[4], br->group_addr[5]);
278 }
279
280 static ssize_t group_addr_store(struct device *d,
281 struct device_attribute *attr,
282 const char *buf, size_t len)
283 {
284 struct net_bridge *br = to_bridge(d);
285 u8 new_addr[6];
286 int i;
287
288 if (!ns_capable(dev_net(br->dev)->user_ns, CAP_NET_ADMIN))
289 return -EPERM;
290
291 if (sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
292 &new_addr[0], &new_addr[1], &new_addr[2],
293 &new_addr[3], &new_addr[4], &new_addr[5]) != 6)
294 return -EINVAL;
295
296 if (!is_link_local_ether_addr(new_addr))
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 if (!rtnl_trylock())
305 return restart_syscall();
306
307 spin_lock_bh(&br->lock);
308 for (i = 0; i < 6; i++)
309 br->group_addr[i] = new_addr[i];
310 spin_unlock_bh(&br->lock);
311
312 br->group_addr_set = true;
313 br_recalculate_fwd_mask(br);
314 netdev_state_change(br->dev);
315
316 rtnl_unlock();
317
318 return len;
319 }
320
321 static DEVICE_ATTR_RW(group_addr);
322
323 static int set_flush(struct net_bridge *br, unsigned long val)
324 {
325 br_fdb_flush(br);
326 return 0;
327 }
328
329 static ssize_t flush_store(struct device *d,
330 struct device_attribute *attr,
331 const char *buf, size_t len)
332 {
333 return store_bridge_parm(d, buf, len, set_flush);
334 }
335 static DEVICE_ATTR_WO(flush);
336
337 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
338 static ssize_t multicast_router_show(struct device *d,
339 struct device_attribute *attr, char *buf)
340 {
341 struct net_bridge *br = to_bridge(d);
342 return sprintf(buf, "%d\n", br->multicast_router);
343 }
344
345 static ssize_t multicast_router_store(struct device *d,
346 struct device_attribute *attr,
347 const char *buf, size_t len)
348 {
349 return store_bridge_parm(d, buf, len, br_multicast_set_router);
350 }
351 static DEVICE_ATTR_RW(multicast_router);
352
353 static ssize_t multicast_snooping_show(struct device *d,
354 struct device_attribute *attr,
355 char *buf)
356 {
357 struct net_bridge *br = to_bridge(d);
358 return sprintf(buf, "%d\n", !br->multicast_disabled);
359 }
360
361 static ssize_t multicast_snooping_store(struct device *d,
362 struct device_attribute *attr,
363 const char *buf, size_t len)
364 {
365 return store_bridge_parm(d, buf, len, br_multicast_toggle);
366 }
367 static DEVICE_ATTR_RW(multicast_snooping);
368
369 static ssize_t multicast_query_use_ifaddr_show(struct device *d,
370 struct device_attribute *attr,
371 char *buf)
372 {
373 struct net_bridge *br = to_bridge(d);
374 return sprintf(buf, "%d\n", br->multicast_query_use_ifaddr);
375 }
376
377 static int set_query_use_ifaddr(struct net_bridge *br, unsigned long val)
378 {
379 br->multicast_query_use_ifaddr = !!val;
380 return 0;
381 }
382
383 static ssize_t
384 multicast_query_use_ifaddr_store(struct device *d,
385 struct device_attribute *attr,
386 const char *buf, size_t len)
387 {
388 return store_bridge_parm(d, buf, len, set_query_use_ifaddr);
389 }
390 static DEVICE_ATTR_RW(multicast_query_use_ifaddr);
391
392 static ssize_t multicast_querier_show(struct device *d,
393 struct device_attribute *attr,
394 char *buf)
395 {
396 struct net_bridge *br = to_bridge(d);
397 return sprintf(buf, "%d\n", br->multicast_querier);
398 }
399
400 static ssize_t multicast_querier_store(struct device *d,
401 struct device_attribute *attr,
402 const char *buf, size_t len)
403 {
404 return store_bridge_parm(d, buf, len, br_multicast_set_querier);
405 }
406 static DEVICE_ATTR_RW(multicast_querier);
407
408 static ssize_t hash_elasticity_show(struct device *d,
409 struct device_attribute *attr, char *buf)
410 {
411 struct net_bridge *br = to_bridge(d);
412 return sprintf(buf, "%u\n", br->hash_elasticity);
413 }
414
415 static int set_elasticity(struct net_bridge *br, unsigned long val)
416 {
417 br->hash_elasticity = val;
418 return 0;
419 }
420
421 static ssize_t hash_elasticity_store(struct device *d,
422 struct device_attribute *attr,
423 const char *buf, size_t len)
424 {
425 return store_bridge_parm(d, buf, len, set_elasticity);
426 }
427 static DEVICE_ATTR_RW(hash_elasticity);
428
429 static ssize_t hash_max_show(struct device *d, struct device_attribute *attr,
430 char *buf)
431 {
432 struct net_bridge *br = to_bridge(d);
433 return sprintf(buf, "%u\n", br->hash_max);
434 }
435
436 static ssize_t hash_max_store(struct device *d, struct device_attribute *attr,
437 const char *buf, size_t len)
438 {
439 return store_bridge_parm(d, buf, len, br_multicast_set_hash_max);
440 }
441 static DEVICE_ATTR_RW(hash_max);
442
443 static ssize_t multicast_igmp_version_show(struct device *d,
444 struct device_attribute *attr,
445 char *buf)
446 {
447 struct net_bridge *br = to_bridge(d);
448
449 return sprintf(buf, "%u\n", br->multicast_igmp_version);
450 }
451
452 static ssize_t multicast_igmp_version_store(struct device *d,
453 struct device_attribute *attr,
454 const char *buf, size_t len)
455 {
456 return store_bridge_parm(d, buf, len, br_multicast_set_igmp_version);
457 }
458 static DEVICE_ATTR_RW(multicast_igmp_version);
459
460 static ssize_t multicast_last_member_count_show(struct device *d,
461 struct device_attribute *attr,
462 char *buf)
463 {
464 struct net_bridge *br = to_bridge(d);
465 return sprintf(buf, "%u\n", br->multicast_last_member_count);
466 }
467
468 static int set_last_member_count(struct net_bridge *br, unsigned long val)
469 {
470 br->multicast_last_member_count = val;
471 return 0;
472 }
473
474 static ssize_t multicast_last_member_count_store(struct device *d,
475 struct device_attribute *attr,
476 const char *buf, size_t len)
477 {
478 return store_bridge_parm(d, buf, len, set_last_member_count);
479 }
480 static DEVICE_ATTR_RW(multicast_last_member_count);
481
482 static ssize_t multicast_startup_query_count_show(
483 struct device *d, struct device_attribute *attr, char *buf)
484 {
485 struct net_bridge *br = to_bridge(d);
486 return sprintf(buf, "%u\n", br->multicast_startup_query_count);
487 }
488
489 static int set_startup_query_count(struct net_bridge *br, unsigned long val)
490 {
491 br->multicast_startup_query_count = val;
492 return 0;
493 }
494
495 static ssize_t multicast_startup_query_count_store(
496 struct device *d, struct device_attribute *attr, const char *buf,
497 size_t len)
498 {
499 return store_bridge_parm(d, buf, len, set_startup_query_count);
500 }
501 static DEVICE_ATTR_RW(multicast_startup_query_count);
502
503 static ssize_t multicast_last_member_interval_show(
504 struct device *d, struct device_attribute *attr, char *buf)
505 {
506 struct net_bridge *br = to_bridge(d);
507 return sprintf(buf, "%lu\n",
508 jiffies_to_clock_t(br->multicast_last_member_interval));
509 }
510
511 static int set_last_member_interval(struct net_bridge *br, unsigned long val)
512 {
513 br->multicast_last_member_interval = clock_t_to_jiffies(val);
514 return 0;
515 }
516
517 static ssize_t multicast_last_member_interval_store(
518 struct device *d, struct device_attribute *attr, const char *buf,
519 size_t len)
520 {
521 return store_bridge_parm(d, buf, len, set_last_member_interval);
522 }
523 static DEVICE_ATTR_RW(multicast_last_member_interval);
524
525 static ssize_t multicast_membership_interval_show(
526 struct device *d, struct device_attribute *attr, char *buf)
527 {
528 struct net_bridge *br = to_bridge(d);
529 return sprintf(buf, "%lu\n",
530 jiffies_to_clock_t(br->multicast_membership_interval));
531 }
532
533 static int set_membership_interval(struct net_bridge *br, unsigned long val)
534 {
535 br->multicast_membership_interval = clock_t_to_jiffies(val);
536 return 0;
537 }
538
539 static ssize_t multicast_membership_interval_store(
540 struct device *d, struct device_attribute *attr, const char *buf,
541 size_t len)
542 {
543 return store_bridge_parm(d, buf, len, set_membership_interval);
544 }
545 static DEVICE_ATTR_RW(multicast_membership_interval);
546
547 static ssize_t multicast_querier_interval_show(struct device *d,
548 struct device_attribute *attr,
549 char *buf)
550 {
551 struct net_bridge *br = to_bridge(d);
552 return sprintf(buf, "%lu\n",
553 jiffies_to_clock_t(br->multicast_querier_interval));
554 }
555
556 static int set_querier_interval(struct net_bridge *br, unsigned long val)
557 {
558 br->multicast_querier_interval = clock_t_to_jiffies(val);
559 return 0;
560 }
561
562 static ssize_t multicast_querier_interval_store(struct device *d,
563 struct device_attribute *attr,
564 const char *buf, size_t len)
565 {
566 return store_bridge_parm(d, buf, len, set_querier_interval);
567 }
568 static DEVICE_ATTR_RW(multicast_querier_interval);
569
570 static ssize_t multicast_query_interval_show(struct device *d,
571 struct device_attribute *attr,
572 char *buf)
573 {
574 struct net_bridge *br = to_bridge(d);
575 return sprintf(buf, "%lu\n",
576 jiffies_to_clock_t(br->multicast_query_interval));
577 }
578
579 static int set_query_interval(struct net_bridge *br, unsigned long val)
580 {
581 br->multicast_query_interval = clock_t_to_jiffies(val);
582 return 0;
583 }
584
585 static ssize_t multicast_query_interval_store(struct device *d,
586 struct device_attribute *attr,
587 const char *buf, size_t len)
588 {
589 return store_bridge_parm(d, buf, len, set_query_interval);
590 }
591 static DEVICE_ATTR_RW(multicast_query_interval);
592
593 static ssize_t multicast_query_response_interval_show(
594 struct device *d, struct device_attribute *attr, char *buf)
595 {
596 struct net_bridge *br = to_bridge(d);
597 return sprintf(
598 buf, "%lu\n",
599 jiffies_to_clock_t(br->multicast_query_response_interval));
600 }
601
602 static int set_query_response_interval(struct net_bridge *br, unsigned long val)
603 {
604 br->multicast_query_response_interval = clock_t_to_jiffies(val);
605 return 0;
606 }
607
608 static ssize_t multicast_query_response_interval_store(
609 struct device *d, struct device_attribute *attr, const char *buf,
610 size_t len)
611 {
612 return store_bridge_parm(d, buf, len, set_query_response_interval);
613 }
614 static DEVICE_ATTR_RW(multicast_query_response_interval);
615
616 static ssize_t multicast_startup_query_interval_show(
617 struct device *d, struct device_attribute *attr, char *buf)
618 {
619 struct net_bridge *br = to_bridge(d);
620 return sprintf(
621 buf, "%lu\n",
622 jiffies_to_clock_t(br->multicast_startup_query_interval));
623 }
624
625 static int set_startup_query_interval(struct net_bridge *br, unsigned long val)
626 {
627 br->multicast_startup_query_interval = clock_t_to_jiffies(val);
628 return 0;
629 }
630
631 static ssize_t multicast_startup_query_interval_store(
632 struct device *d, struct device_attribute *attr, const char *buf,
633 size_t len)
634 {
635 return store_bridge_parm(d, buf, len, set_startup_query_interval);
636 }
637 static DEVICE_ATTR_RW(multicast_startup_query_interval);
638
639 static ssize_t multicast_stats_enabled_show(struct device *d,
640 struct device_attribute *attr,
641 char *buf)
642 {
643 struct net_bridge *br = to_bridge(d);
644
645 return sprintf(buf, "%u\n", br->multicast_stats_enabled);
646 }
647
648 static int set_stats_enabled(struct net_bridge *br, unsigned long val)
649 {
650 br->multicast_stats_enabled = !!val;
651 return 0;
652 }
653
654 static ssize_t multicast_stats_enabled_store(struct device *d,
655 struct device_attribute *attr,
656 const char *buf,
657 size_t len)
658 {
659 return store_bridge_parm(d, buf, len, set_stats_enabled);
660 }
661 static DEVICE_ATTR_RW(multicast_stats_enabled);
662 #endif
663 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
664 static ssize_t nf_call_iptables_show(
665 struct device *d, struct device_attribute *attr, char *buf)
666 {
667 struct net_bridge *br = to_bridge(d);
668 return sprintf(buf, "%u\n", br->nf_call_iptables);
669 }
670
671 static int set_nf_call_iptables(struct net_bridge *br, unsigned long val)
672 {
673 br->nf_call_iptables = val ? true : false;
674 return 0;
675 }
676
677 static ssize_t nf_call_iptables_store(
678 struct device *d, struct device_attribute *attr, const char *buf,
679 size_t len)
680 {
681 return store_bridge_parm(d, buf, len, set_nf_call_iptables);
682 }
683 static DEVICE_ATTR_RW(nf_call_iptables);
684
685 static ssize_t nf_call_ip6tables_show(
686 struct device *d, struct device_attribute *attr, char *buf)
687 {
688 struct net_bridge *br = to_bridge(d);
689 return sprintf(buf, "%u\n", br->nf_call_ip6tables);
690 }
691
692 static int set_nf_call_ip6tables(struct net_bridge *br, unsigned long val)
693 {
694 br->nf_call_ip6tables = val ? true : false;
695 return 0;
696 }
697
698 static ssize_t nf_call_ip6tables_store(
699 struct device *d, struct device_attribute *attr, const char *buf,
700 size_t len)
701 {
702 return store_bridge_parm(d, buf, len, set_nf_call_ip6tables);
703 }
704 static DEVICE_ATTR_RW(nf_call_ip6tables);
705
706 static ssize_t nf_call_arptables_show(
707 struct device *d, struct device_attribute *attr, char *buf)
708 {
709 struct net_bridge *br = to_bridge(d);
710 return sprintf(buf, "%u\n", br->nf_call_arptables);
711 }
712
713 static int set_nf_call_arptables(struct net_bridge *br, unsigned long val)
714 {
715 br->nf_call_arptables = val ? true : false;
716 return 0;
717 }
718
719 static ssize_t nf_call_arptables_store(
720 struct device *d, struct device_attribute *attr, const char *buf,
721 size_t len)
722 {
723 return store_bridge_parm(d, buf, len, set_nf_call_arptables);
724 }
725 static DEVICE_ATTR_RW(nf_call_arptables);
726 #endif
727 #ifdef CONFIG_BRIDGE_VLAN_FILTERING
728 static ssize_t vlan_filtering_show(struct device *d,
729 struct device_attribute *attr,
730 char *buf)
731 {
732 struct net_bridge *br = to_bridge(d);
733 return sprintf(buf, "%d\n", br->vlan_enabled);
734 }
735
736 static ssize_t vlan_filtering_store(struct device *d,
737 struct device_attribute *attr,
738 const char *buf, size_t len)
739 {
740 return store_bridge_parm(d, buf, len, br_vlan_filter_toggle);
741 }
742 static DEVICE_ATTR_RW(vlan_filtering);
743
744 static ssize_t vlan_protocol_show(struct device *d,
745 struct device_attribute *attr,
746 char *buf)
747 {
748 struct net_bridge *br = to_bridge(d);
749 return sprintf(buf, "%#06x\n", ntohs(br->vlan_proto));
750 }
751
752 static ssize_t vlan_protocol_store(struct device *d,
753 struct device_attribute *attr,
754 const char *buf, size_t len)
755 {
756 return store_bridge_parm(d, buf, len, br_vlan_set_proto);
757 }
758 static DEVICE_ATTR_RW(vlan_protocol);
759
760 static ssize_t default_pvid_show(struct device *d,
761 struct device_attribute *attr,
762 char *buf)
763 {
764 struct net_bridge *br = to_bridge(d);
765 return sprintf(buf, "%d\n", br->default_pvid);
766 }
767
768 static ssize_t default_pvid_store(struct device *d,
769 struct device_attribute *attr,
770 const char *buf, size_t len)
771 {
772 return store_bridge_parm(d, buf, len, br_vlan_set_default_pvid);
773 }
774 static DEVICE_ATTR_RW(default_pvid);
775
776 static ssize_t vlan_stats_enabled_show(struct device *d,
777 struct device_attribute *attr,
778 char *buf)
779 {
780 struct net_bridge *br = to_bridge(d);
781 return sprintf(buf, "%u\n", br->vlan_stats_enabled);
782 }
783
784 static ssize_t vlan_stats_enabled_store(struct device *d,
785 struct device_attribute *attr,
786 const char *buf, size_t len)
787 {
788 return store_bridge_parm(d, buf, len, br_vlan_set_stats);
789 }
790 static DEVICE_ATTR_RW(vlan_stats_enabled);
791 #endif
792
793 static struct attribute *bridge_attrs[] = {
794 &dev_attr_forward_delay.attr,
795 &dev_attr_hello_time.attr,
796 &dev_attr_max_age.attr,
797 &dev_attr_ageing_time.attr,
798 &dev_attr_stp_state.attr,
799 &dev_attr_group_fwd_mask.attr,
800 &dev_attr_priority.attr,
801 &dev_attr_bridge_id.attr,
802 &dev_attr_root_id.attr,
803 &dev_attr_root_path_cost.attr,
804 &dev_attr_root_port.attr,
805 &dev_attr_topology_change.attr,
806 &dev_attr_topology_change_detected.attr,
807 &dev_attr_hello_timer.attr,
808 &dev_attr_tcn_timer.attr,
809 &dev_attr_topology_change_timer.attr,
810 &dev_attr_gc_timer.attr,
811 &dev_attr_group_addr.attr,
812 &dev_attr_flush.attr,
813 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
814 &dev_attr_multicast_router.attr,
815 &dev_attr_multicast_snooping.attr,
816 &dev_attr_multicast_querier.attr,
817 &dev_attr_multicast_query_use_ifaddr.attr,
818 &dev_attr_hash_elasticity.attr,
819 &dev_attr_hash_max.attr,
820 &dev_attr_multicast_last_member_count.attr,
821 &dev_attr_multicast_startup_query_count.attr,
822 &dev_attr_multicast_last_member_interval.attr,
823 &dev_attr_multicast_membership_interval.attr,
824 &dev_attr_multicast_querier_interval.attr,
825 &dev_attr_multicast_query_interval.attr,
826 &dev_attr_multicast_query_response_interval.attr,
827 &dev_attr_multicast_startup_query_interval.attr,
828 &dev_attr_multicast_stats_enabled.attr,
829 &dev_attr_multicast_igmp_version.attr,
830 #endif
831 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
832 &dev_attr_nf_call_iptables.attr,
833 &dev_attr_nf_call_ip6tables.attr,
834 &dev_attr_nf_call_arptables.attr,
835 #endif
836 #ifdef CONFIG_BRIDGE_VLAN_FILTERING
837 &dev_attr_vlan_filtering.attr,
838 &dev_attr_vlan_protocol.attr,
839 &dev_attr_default_pvid.attr,
840 &dev_attr_vlan_stats_enabled.attr,
841 #endif
842 NULL
843 };
844
845 static struct attribute_group bridge_group = {
846 .name = SYSFS_BRIDGE_ATTR,
847 .attrs = bridge_attrs,
848 };
849
850 /*
851 * Export the forwarding information table as a binary file
852 * The records are struct __fdb_entry.
853 *
854 * Returns the number of bytes read.
855 */
856 static ssize_t brforward_read(struct file *filp, struct kobject *kobj,
857 struct bin_attribute *bin_attr,
858 char *buf, loff_t off, size_t count)
859 {
860 struct device *dev = kobj_to_dev(kobj);
861 struct net_bridge *br = to_bridge(dev);
862 int n;
863
864 /* must read whole records */
865 if (off % sizeof(struct __fdb_entry) != 0)
866 return -EINVAL;
867
868 n = br_fdb_fillbuf(br, buf,
869 count / sizeof(struct __fdb_entry),
870 off / sizeof(struct __fdb_entry));
871
872 if (n > 0)
873 n *= sizeof(struct __fdb_entry);
874
875 return n;
876 }
877
878 static struct bin_attribute bridge_forward = {
879 .attr = { .name = SYSFS_BRIDGE_FDB,
880 .mode = S_IRUGO, },
881 .read = brforward_read,
882 };
883
884 /*
885 * Add entries in sysfs onto the existing network class device
886 * for the bridge.
887 * Adds a attribute group "bridge" containing tuning parameters.
888 * Binary attribute containing the forward table
889 * Sub directory to hold links to interfaces.
890 *
891 * Note: the ifobj exists only to be a subdirectory
892 * to hold links. The ifobj exists in same data structure
893 * as it's parent the bridge so reference counting works.
894 */
895 int br_sysfs_addbr(struct net_device *dev)
896 {
897 struct kobject *brobj = &dev->dev.kobj;
898 struct net_bridge *br = netdev_priv(dev);
899 int err;
900
901 err = sysfs_create_group(brobj, &bridge_group);
902 if (err) {
903 pr_info("%s: can't create group %s/%s\n",
904 __func__, dev->name, bridge_group.name);
905 goto out1;
906 }
907
908 err = sysfs_create_bin_file(brobj, &bridge_forward);
909 if (err) {
910 pr_info("%s: can't create attribute file %s/%s\n",
911 __func__, dev->name, bridge_forward.attr.name);
912 goto out2;
913 }
914
915 br->ifobj = kobject_create_and_add(SYSFS_BRIDGE_PORT_SUBDIR, brobj);
916 if (!br->ifobj) {
917 pr_info("%s: can't add kobject (directory) %s/%s\n",
918 __func__, dev->name, SYSFS_BRIDGE_PORT_SUBDIR);
919 goto out3;
920 }
921 return 0;
922 out3:
923 sysfs_remove_bin_file(&dev->dev.kobj, &bridge_forward);
924 out2:
925 sysfs_remove_group(&dev->dev.kobj, &bridge_group);
926 out1:
927 return err;
928
929 }
930
931 void br_sysfs_delbr(struct net_device *dev)
932 {
933 struct kobject *kobj = &dev->dev.kobj;
934 struct net_bridge *br = netdev_priv(dev);
935
936 kobject_put(br->ifobj);
937 sysfs_remove_bin_file(kobj, &bridge_forward);
938 sysfs_remove_group(kobj, &bridge_group);
939 }