bridge: vlan: add per-vlan struct and move to rhashtables
[cascardo/linux.git] / net / bridge / br_private.h
1 /*
2  *      Linux ethernet bridge
3  *
4  *      Authors:
5  *      Lennert Buytenhek               <buytenh@gnu.org>
6  *
7  *      This program is free software; you can redistribute it and/or
8  *      modify it under the terms of the GNU General Public License
9  *      as published by the Free Software Foundation; either version
10  *      2 of the License, or (at your option) any later version.
11  */
12
13 #ifndef _BR_PRIVATE_H
14 #define _BR_PRIVATE_H
15
16 #include <linux/netdevice.h>
17 #include <linux/if_bridge.h>
18 #include <linux/netpoll.h>
19 #include <linux/u64_stats_sync.h>
20 #include <net/route.h>
21 #include <net/ip6_fib.h>
22 #include <linux/if_vlan.h>
23 #include <linux/rhashtable.h>
24
25 #define BR_HASH_BITS 8
26 #define BR_HASH_SIZE (1 << BR_HASH_BITS)
27
28 #define BR_HOLD_TIME (1*HZ)
29
30 #define BR_PORT_BITS    10
31 #define BR_MAX_PORTS    (1<<BR_PORT_BITS)
32
33 #define BR_VERSION      "2.3"
34
35 /* Control of forwarding link local multicast */
36 #define BR_GROUPFWD_DEFAULT     0
37 /* Don't allow forwarding of control protocols like STP, MAC PAUSE and LACP */
38 #define BR_GROUPFWD_RESTRICTED  0x0007u
39 /* The Nearest Customer Bridge Group Address, 01-80-C2-00-00-[00,0B,0C,0D,0F] */
40 #define BR_GROUPFWD_8021AD      0xB801u
41
42 /* Path to usermode spanning tree program */
43 #define BR_STP_PROG     "/sbin/bridge-stp"
44
45 typedef struct bridge_id bridge_id;
46 typedef struct mac_addr mac_addr;
47 typedef __u16 port_id;
48
49 struct bridge_id
50 {
51         unsigned char   prio[2];
52         unsigned char   addr[ETH_ALEN];
53 };
54
55 struct mac_addr
56 {
57         unsigned char   addr[ETH_ALEN];
58 };
59
60 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
61 /* our own querier */
62 struct bridge_mcast_own_query {
63         struct timer_list       timer;
64         u32                     startup_sent;
65 };
66
67 /* other querier */
68 struct bridge_mcast_other_query {
69         struct timer_list               timer;
70         unsigned long                   delay_time;
71 };
72
73 /* selected querier */
74 struct bridge_mcast_querier {
75         struct br_ip addr;
76         struct net_bridge_port __rcu    *port;
77 };
78 #endif
79
80 /**
81  * struct net_bridge_vlan - per-vlan entry
82  *
83  * @vnode: rhashtable member
84  * @vid: VLAN id
85  * @flags: bridge vlan flags
86  * @br: if MASTER flag set, this points to a bridge struct
87  * @port: if MASTER flag unset, this points to a port struct
88  * @refcnt: if MASTER flag set, this is bumped for each port referencing it
89  * @brvlan: if MASTER flag unset, this points to the global per-VLAN context
90  *          for this VLAN entry
91  * @vlist: sorted list of VLAN entries
92  * @rcu: used for entry destruction
93  *
94  * This structure is shared between the global per-VLAN entries contained in
95  * the bridge rhashtable and the local per-port per-VLAN entries contained in
96  * the port's rhashtable. The union entries should be interpreted depending on
97  * the entry flags that are set.
98  */
99 struct net_bridge_vlan {
100         struct rhash_head               vnode;
101         u16                             vid;
102         u16                             flags;
103         union {
104                 struct net_bridge       *br;
105                 struct net_bridge_port  *port;
106         };
107         union {
108                 atomic_t                refcnt;
109                 struct net_bridge_vlan  *brvlan;
110         };
111         struct list_head                vlist;
112
113         struct rcu_head                 rcu;
114 };
115
116 /**
117  * struct net_bridge_vlan_group
118  *
119  * @vlan_hash: VLAN entry rhashtable
120  * @vlan_list: sorted VLAN entry list
121  * @num_vlans: number of total VLAN entries
122  *
123  * IMPORTANT: Be careful when checking if there're VLAN entries using list
124  *            primitives because the bridge can have entries in its list which
125  *            are just for global context but not for filtering, i.e. they have
126  *            the master flag set but not the brentry flag. If you have to check
127  *            if there're "real" entries in the bridge please test @num_vlans
128  */
129 struct net_bridge_vlan_group {
130         struct rhashtable               vlan_hash;
131         struct list_head                vlan_list;
132         u16                             num_vlans;
133 };
134
135 struct net_bridge_fdb_entry
136 {
137         struct hlist_node               hlist;
138         struct net_bridge_port          *dst;
139
140         unsigned long                   updated;
141         unsigned long                   used;
142         mac_addr                        addr;
143         __u16                           vlan_id;
144         unsigned char                   is_local:1,
145                                         is_static:1,
146                                         added_by_user:1,
147                                         added_by_external_learn:1;
148         struct rcu_head                 rcu;
149 };
150
151 struct net_bridge_port_group {
152         struct net_bridge_port          *port;
153         struct net_bridge_port_group __rcu *next;
154         struct hlist_node               mglist;
155         struct rcu_head                 rcu;
156         struct timer_list               timer;
157         struct br_ip                    addr;
158         unsigned char                   state;
159 };
160
161 struct net_bridge_mdb_entry
162 {
163         struct hlist_node               hlist[2];
164         struct net_bridge               *br;
165         struct net_bridge_port_group __rcu *ports;
166         struct rcu_head                 rcu;
167         struct timer_list               timer;
168         struct br_ip                    addr;
169         bool                            mglist;
170 };
171
172 struct net_bridge_mdb_htable
173 {
174         struct hlist_head               *mhash;
175         struct rcu_head                 rcu;
176         struct net_bridge_mdb_htable    *old;
177         u32                             size;
178         u32                             max;
179         u32                             secret;
180         u32                             ver;
181 };
182
183 struct net_bridge_port
184 {
185         struct net_bridge               *br;
186         struct net_device               *dev;
187         struct list_head                list;
188
189         /* STP */
190         u8                              priority;
191         u8                              state;
192         u16                             port_no;
193         unsigned char                   topology_change_ack;
194         unsigned char                   config_pending;
195         port_id                         port_id;
196         port_id                         designated_port;
197         bridge_id                       designated_root;
198         bridge_id                       designated_bridge;
199         u32                             path_cost;
200         u32                             designated_cost;
201         unsigned long                   designated_age;
202
203         struct timer_list               forward_delay_timer;
204         struct timer_list               hold_timer;
205         struct timer_list               message_age_timer;
206         struct kobject                  kobj;
207         struct rcu_head                 rcu;
208
209         unsigned long                   flags;
210
211 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
212         struct bridge_mcast_own_query   ip4_own_query;
213 #if IS_ENABLED(CONFIG_IPV6)
214         struct bridge_mcast_own_query   ip6_own_query;
215 #endif /* IS_ENABLED(CONFIG_IPV6) */
216         unsigned char                   multicast_router;
217         struct timer_list               multicast_router_timer;
218         struct hlist_head               mglist;
219         struct hlist_node               rlist;
220 #endif
221
222 #ifdef CONFIG_SYSFS
223         char                            sysfs_name[IFNAMSIZ];
224 #endif
225
226 #ifdef CONFIG_NET_POLL_CONTROLLER
227         struct netpoll                  *np;
228 #endif
229 #ifdef CONFIG_BRIDGE_VLAN_FILTERING
230         struct net_bridge_vlan_group    *vlgrp;
231         u16                             pvid;
232 #endif
233 };
234
235 #define br_auto_port(p) ((p)->flags & BR_AUTO_MASK)
236 #define br_promisc_port(p) ((p)->flags & BR_PROMISC)
237
238 #define br_port_exists(dev) (dev->priv_flags & IFF_BRIDGE_PORT)
239
240 static inline struct net_bridge_port *br_port_get_rcu(const struct net_device *dev)
241 {
242         return rcu_dereference(dev->rx_handler_data);
243 }
244
245 static inline struct net_bridge_port *br_port_get_rtnl(const struct net_device *dev)
246 {
247         return br_port_exists(dev) ?
248                 rtnl_dereference(dev->rx_handler_data) : NULL;
249 }
250
251 struct net_bridge
252 {
253         spinlock_t                      lock;
254         struct list_head                port_list;
255         struct net_device               *dev;
256
257         struct pcpu_sw_netstats         __percpu *stats;
258         spinlock_t                      hash_lock;
259         struct hlist_head               hash[BR_HASH_SIZE];
260 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
261         union {
262                 struct rtable           fake_rtable;
263                 struct rt6_info         fake_rt6_info;
264         };
265         bool                            nf_call_iptables;
266         bool                            nf_call_ip6tables;
267         bool                            nf_call_arptables;
268 #endif
269         u16                             group_fwd_mask;
270         u16                             group_fwd_mask_required;
271
272         /* STP */
273         bridge_id                       designated_root;
274         bridge_id                       bridge_id;
275         u32                             root_path_cost;
276         unsigned long                   max_age;
277         unsigned long                   hello_time;
278         unsigned long                   forward_delay;
279         unsigned long                   bridge_max_age;
280         unsigned long                   ageing_time;
281         unsigned long                   bridge_hello_time;
282         unsigned long                   bridge_forward_delay;
283
284         u8                              group_addr[ETH_ALEN];
285         bool                            group_addr_set;
286         u16                             root_port;
287
288         enum {
289                 BR_NO_STP,              /* no spanning tree */
290                 BR_KERNEL_STP,          /* old STP in kernel */
291                 BR_USER_STP,            /* new RSTP in userspace */
292         } stp_enabled;
293
294         unsigned char                   topology_change;
295         unsigned char                   topology_change_detected;
296
297 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
298         unsigned char                   multicast_router;
299
300         u8                              multicast_disabled:1;
301         u8                              multicast_querier:1;
302         u8                              multicast_query_use_ifaddr:1;
303
304         u32                             hash_elasticity;
305         u32                             hash_max;
306
307         u32                             multicast_last_member_count;
308         u32                             multicast_startup_query_count;
309
310         unsigned long                   multicast_last_member_interval;
311         unsigned long                   multicast_membership_interval;
312         unsigned long                   multicast_querier_interval;
313         unsigned long                   multicast_query_interval;
314         unsigned long                   multicast_query_response_interval;
315         unsigned long                   multicast_startup_query_interval;
316
317         spinlock_t                      multicast_lock;
318         struct net_bridge_mdb_htable __rcu *mdb;
319         struct hlist_head               router_list;
320
321         struct timer_list               multicast_router_timer;
322         struct bridge_mcast_other_query ip4_other_query;
323         struct bridge_mcast_own_query   ip4_own_query;
324         struct bridge_mcast_querier     ip4_querier;
325 #if IS_ENABLED(CONFIG_IPV6)
326         struct bridge_mcast_other_query ip6_other_query;
327         struct bridge_mcast_own_query   ip6_own_query;
328         struct bridge_mcast_querier     ip6_querier;
329 #endif /* IS_ENABLED(CONFIG_IPV6) */
330 #endif
331
332         struct timer_list               hello_timer;
333         struct timer_list               tcn_timer;
334         struct timer_list               topology_change_timer;
335         struct timer_list               gc_timer;
336         struct kobject                  *ifobj;
337         u32                             auto_cnt;
338 #ifdef CONFIG_BRIDGE_VLAN_FILTERING
339         struct net_bridge_vlan_group    *vlgrp;
340         u8                              vlan_enabled;
341         __be16                          vlan_proto;
342         u16                             default_pvid;
343         u16                             pvid;
344 #endif
345 };
346
347 struct br_input_skb_cb {
348         struct net_device *brdev;
349
350 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
351         int igmp;
352         int mrouters_only;
353 #endif
354
355         bool proxyarp_replied;
356
357 #ifdef CONFIG_BRIDGE_VLAN_FILTERING
358         bool vlan_filtered;
359 #endif
360 };
361
362 #define BR_INPUT_SKB_CB(__skb)  ((struct br_input_skb_cb *)(__skb)->cb)
363
364 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
365 # define BR_INPUT_SKB_CB_MROUTERS_ONLY(__skb)   (BR_INPUT_SKB_CB(__skb)->mrouters_only)
366 #else
367 # define BR_INPUT_SKB_CB_MROUTERS_ONLY(__skb)   (0)
368 #endif
369
370 #define br_printk(level, br, format, args...)   \
371         printk(level "%s: " format, (br)->dev->name, ##args)
372
373 #define br_err(__br, format, args...)                   \
374         br_printk(KERN_ERR, __br, format, ##args)
375 #define br_warn(__br, format, args...)                  \
376         br_printk(KERN_WARNING, __br, format, ##args)
377 #define br_notice(__br, format, args...)                \
378         br_printk(KERN_NOTICE, __br, format, ##args)
379 #define br_info(__br, format, args...)                  \
380         br_printk(KERN_INFO, __br, format, ##args)
381
382 #define br_debug(br, format, args...)                   \
383         pr_debug("%s: " format,  (br)->dev->name, ##args)
384
385 /* called under bridge lock */
386 static inline int br_is_root_bridge(const struct net_bridge *br)
387 {
388         return !memcmp(&br->bridge_id, &br->designated_root, 8);
389 }
390
391 /* check if a VLAN entry is global */
392 static inline bool br_vlan_is_master(const struct net_bridge_vlan *v)
393 {
394         return v->flags & BRIDGE_VLAN_INFO_MASTER;
395 }
396
397 /* check if a VLAN entry is used by the bridge */
398 static inline bool br_vlan_is_brentry(const struct net_bridge_vlan *v)
399 {
400         return v->flags & BRIDGE_VLAN_INFO_BRENTRY;
401 }
402
403 /* check if we should use the vlan entry is usable */
404 static inline bool br_vlan_should_use(const struct net_bridge_vlan *v)
405 {
406         if (br_vlan_is_master(v)) {
407                 if (br_vlan_is_brentry(v))
408                         return true;
409                 else
410                         return false;
411         }
412
413         return true;
414 }
415
416 /* br_device.c */
417 void br_dev_setup(struct net_device *dev);
418 void br_dev_delete(struct net_device *dev, struct list_head *list);
419 netdev_tx_t br_dev_xmit(struct sk_buff *skb, struct net_device *dev);
420 #ifdef CONFIG_NET_POLL_CONTROLLER
421 static inline void br_netpoll_send_skb(const struct net_bridge_port *p,
422                                        struct sk_buff *skb)
423 {
424         struct netpoll *np = p->np;
425
426         if (np)
427                 netpoll_send_skb(np, skb);
428 }
429
430 int br_netpoll_enable(struct net_bridge_port *p);
431 void br_netpoll_disable(struct net_bridge_port *p);
432 #else
433 static inline void br_netpoll_send_skb(const struct net_bridge_port *p,
434                                        struct sk_buff *skb)
435 {
436 }
437
438 static inline int br_netpoll_enable(struct net_bridge_port *p)
439 {
440         return 0;
441 }
442
443 static inline void br_netpoll_disable(struct net_bridge_port *p)
444 {
445 }
446 #endif
447
448 /* br_fdb.c */
449 int br_fdb_init(void);
450 void br_fdb_fini(void);
451 void br_fdb_flush(struct net_bridge *br);
452 void br_fdb_find_delete_local(struct net_bridge *br,
453                               const struct net_bridge_port *p,
454                               const unsigned char *addr, u16 vid);
455 void br_fdb_changeaddr(struct net_bridge_port *p, const unsigned char *newaddr);
456 void br_fdb_change_mac_address(struct net_bridge *br, const u8 *newaddr);
457 void br_fdb_cleanup(unsigned long arg);
458 void br_fdb_delete_by_port(struct net_bridge *br,
459                            const struct net_bridge_port *p, u16 vid, int do_all);
460 struct net_bridge_fdb_entry *__br_fdb_get(struct net_bridge *br,
461                                           const unsigned char *addr, __u16 vid);
462 int br_fdb_test_addr(struct net_device *dev, unsigned char *addr);
463 int br_fdb_fillbuf(struct net_bridge *br, void *buf, unsigned long count,
464                    unsigned long off);
465 int br_fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
466                   const unsigned char *addr, u16 vid);
467 void br_fdb_update(struct net_bridge *br, struct net_bridge_port *source,
468                    const unsigned char *addr, u16 vid, bool added_by_user);
469
470 int br_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
471                   struct net_device *dev, const unsigned char *addr, u16 vid);
472 int br_fdb_add(struct ndmsg *nlh, struct nlattr *tb[], struct net_device *dev,
473                const unsigned char *addr, u16 vid, u16 nlh_flags);
474 int br_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
475                 struct net_device *dev, struct net_device *fdev, int idx);
476 int br_fdb_sync_static(struct net_bridge *br, struct net_bridge_port *p);
477 void br_fdb_unsync_static(struct net_bridge *br, struct net_bridge_port *p);
478 int br_fdb_external_learn_add(struct net_bridge *br, struct net_bridge_port *p,
479                               const unsigned char *addr, u16 vid);
480 int br_fdb_external_learn_del(struct net_bridge *br, struct net_bridge_port *p,
481                               const unsigned char *addr, u16 vid);
482
483 /* br_forward.c */
484 void br_deliver(const struct net_bridge_port *to, struct sk_buff *skb);
485 int br_dev_queue_push_xmit(struct net *net, struct sock *sk, struct sk_buff *skb);
486 void br_forward(const struct net_bridge_port *to,
487                 struct sk_buff *skb, struct sk_buff *skb0);
488 int br_forward_finish(struct net *net, struct sock *sk, struct sk_buff *skb);
489 void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb, bool unicast);
490 void br_flood_forward(struct net_bridge *br, struct sk_buff *skb,
491                       struct sk_buff *skb2, bool unicast);
492
493 /* br_if.c */
494 void br_port_carrier_check(struct net_bridge_port *p);
495 int br_add_bridge(struct net *net, const char *name);
496 int br_del_bridge(struct net *net, const char *name);
497 int br_add_if(struct net_bridge *br, struct net_device *dev);
498 int br_del_if(struct net_bridge *br, struct net_device *dev);
499 int br_min_mtu(const struct net_bridge *br);
500 netdev_features_t br_features_recompute(struct net_bridge *br,
501                                         netdev_features_t features);
502 void br_port_flags_change(struct net_bridge_port *port, unsigned long mask);
503 void br_manage_promisc(struct net_bridge *br);
504
505 /* br_input.c */
506 int br_handle_frame_finish(struct net *net, struct sock *sk, struct sk_buff *skb);
507 rx_handler_result_t br_handle_frame(struct sk_buff **pskb);
508
509 static inline bool br_rx_handler_check_rcu(const struct net_device *dev)
510 {
511         return rcu_dereference(dev->rx_handler) == br_handle_frame;
512 }
513
514 static inline struct net_bridge_port *br_port_get_check_rcu(const struct net_device *dev)
515 {
516         return br_rx_handler_check_rcu(dev) ? br_port_get_rcu(dev) : NULL;
517 }
518
519 /* br_ioctl.c */
520 int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
521 int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd,
522                              void __user *arg);
523
524 /* br_multicast.c */
525 #ifdef CONFIG_BRIDGE_IGMP_SNOOPING
526 extern unsigned int br_mdb_rehash_seq;
527 int br_multicast_rcv(struct net_bridge *br, struct net_bridge_port *port,
528                      struct sk_buff *skb, u16 vid);
529 struct net_bridge_mdb_entry *br_mdb_get(struct net_bridge *br,
530                                         struct sk_buff *skb, u16 vid);
531 void br_multicast_add_port(struct net_bridge_port *port);
532 void br_multicast_del_port(struct net_bridge_port *port);
533 void br_multicast_enable_port(struct net_bridge_port *port);
534 void br_multicast_disable_port(struct net_bridge_port *port);
535 void br_multicast_init(struct net_bridge *br);
536 void br_multicast_open(struct net_bridge *br);
537 void br_multicast_stop(struct net_bridge *br);
538 void br_multicast_dev_del(struct net_bridge *br);
539 void br_multicast_deliver(struct net_bridge_mdb_entry *mdst,
540                           struct sk_buff *skb);
541 void br_multicast_forward(struct net_bridge_mdb_entry *mdst,
542                           struct sk_buff *skb, struct sk_buff *skb2);
543 int br_multicast_set_router(struct net_bridge *br, unsigned long val);
544 int br_multicast_set_port_router(struct net_bridge_port *p, unsigned long val);
545 int br_multicast_toggle(struct net_bridge *br, unsigned long val);
546 int br_multicast_set_querier(struct net_bridge *br, unsigned long val);
547 int br_multicast_set_hash_max(struct net_bridge *br, unsigned long val);
548 struct net_bridge_mdb_entry *
549 br_mdb_ip_get(struct net_bridge_mdb_htable *mdb, struct br_ip *dst);
550 struct net_bridge_mdb_entry *
551 br_multicast_new_group(struct net_bridge *br, struct net_bridge_port *port,
552                        struct br_ip *group);
553 void br_multicast_free_pg(struct rcu_head *head);
554 struct net_bridge_port_group *
555 br_multicast_new_port_group(struct net_bridge_port *port, struct br_ip *group,
556                             struct net_bridge_port_group __rcu *next,
557                             unsigned char state);
558 void br_mdb_init(void);
559 void br_mdb_uninit(void);
560 void br_mdb_notify(struct net_device *dev, struct net_bridge_port *port,
561                    struct br_ip *group, int type, u8 state);
562 void br_rtr_notify(struct net_device *dev, struct net_bridge_port *port,
563                    int type);
564
565 #define mlock_dereference(X, br) \
566         rcu_dereference_protected(X, lockdep_is_held(&br->multicast_lock))
567
568 static inline bool br_multicast_is_router(struct net_bridge *br)
569 {
570         return br->multicast_router == 2 ||
571                (br->multicast_router == 1 &&
572                 timer_pending(&br->multicast_router_timer));
573 }
574
575 static inline bool
576 __br_multicast_querier_exists(struct net_bridge *br,
577                               struct bridge_mcast_other_query *querier)
578 {
579         return time_is_before_jiffies(querier->delay_time) &&
580                (br->multicast_querier || timer_pending(&querier->timer));
581 }
582
583 static inline bool br_multicast_querier_exists(struct net_bridge *br,
584                                                struct ethhdr *eth)
585 {
586         switch (eth->h_proto) {
587         case (htons(ETH_P_IP)):
588                 return __br_multicast_querier_exists(br, &br->ip4_other_query);
589 #if IS_ENABLED(CONFIG_IPV6)
590         case (htons(ETH_P_IPV6)):
591                 return __br_multicast_querier_exists(br, &br->ip6_other_query);
592 #endif
593         default:
594                 return false;
595         }
596 }
597 #else
598 static inline int br_multicast_rcv(struct net_bridge *br,
599                                    struct net_bridge_port *port,
600                                    struct sk_buff *skb,
601                                    u16 vid)
602 {
603         return 0;
604 }
605
606 static inline struct net_bridge_mdb_entry *br_mdb_get(struct net_bridge *br,
607                                                       struct sk_buff *skb, u16 vid)
608 {
609         return NULL;
610 }
611
612 static inline void br_multicast_add_port(struct net_bridge_port *port)
613 {
614 }
615
616 static inline void br_multicast_del_port(struct net_bridge_port *port)
617 {
618 }
619
620 static inline void br_multicast_enable_port(struct net_bridge_port *port)
621 {
622 }
623
624 static inline void br_multicast_disable_port(struct net_bridge_port *port)
625 {
626 }
627
628 static inline void br_multicast_init(struct net_bridge *br)
629 {
630 }
631
632 static inline void br_multicast_open(struct net_bridge *br)
633 {
634 }
635
636 static inline void br_multicast_stop(struct net_bridge *br)
637 {
638 }
639
640 static inline void br_multicast_dev_del(struct net_bridge *br)
641 {
642 }
643
644 static inline void br_multicast_deliver(struct net_bridge_mdb_entry *mdst,
645                                         struct sk_buff *skb)
646 {
647 }
648
649 static inline void br_multicast_forward(struct net_bridge_mdb_entry *mdst,
650                                         struct sk_buff *skb,
651                                         struct sk_buff *skb2)
652 {
653 }
654 static inline bool br_multicast_is_router(struct net_bridge *br)
655 {
656         return 0;
657 }
658 static inline bool br_multicast_querier_exists(struct net_bridge *br,
659                                                struct ethhdr *eth)
660 {
661         return false;
662 }
663 static inline void br_mdb_init(void)
664 {
665 }
666 static inline void br_mdb_uninit(void)
667 {
668 }
669 #endif
670
671 /* br_vlan.c */
672 #ifdef CONFIG_BRIDGE_VLAN_FILTERING
673 bool br_allowed_ingress(struct net_bridge *br, struct sk_buff *skb, u16 *vid);
674 bool nbp_allowed_ingress(struct net_bridge_port *p, struct sk_buff *skb,
675                          u16 *vid);
676 bool br_allowed_egress(struct net_bridge_vlan_group *br,
677                        const struct sk_buff *skb);
678 bool br_should_learn(struct net_bridge_port *p, struct sk_buff *skb, u16 *vid);
679 struct sk_buff *br_handle_vlan(struct net_bridge *br,
680                                struct net_bridge_vlan_group *vg,
681                                struct sk_buff *skb);
682 int br_vlan_add(struct net_bridge *br, u16 vid, u16 flags);
683 int br_vlan_delete(struct net_bridge *br, u16 vid);
684 void br_vlan_flush(struct net_bridge *br);
685 struct net_bridge_vlan *br_vlan_find(struct net_bridge_vlan_group *vg, u16 vid);
686 void br_recalculate_fwd_mask(struct net_bridge *br);
687 int __br_vlan_filter_toggle(struct net_bridge *br, unsigned long val);
688 int br_vlan_filter_toggle(struct net_bridge *br, unsigned long val);
689 int __br_vlan_set_proto(struct net_bridge *br, __be16 proto);
690 int br_vlan_set_proto(struct net_bridge *br, unsigned long val);
691 int br_vlan_init(struct net_bridge *br);
692 int br_vlan_set_default_pvid(struct net_bridge *br, unsigned long val);
693 int nbp_vlan_add(struct net_bridge_port *port, u16 vid, u16 flags);
694 int nbp_vlan_delete(struct net_bridge_port *port, u16 vid);
695 void nbp_vlan_flush(struct net_bridge_port *port);
696 int nbp_vlan_init(struct net_bridge_port *port);
697 int nbp_get_num_vlan_infos(struct net_bridge_port *p, u32 filter_mask);
698
699 static inline struct net_bridge_vlan_group *br_vlan_group(
700                                         const struct net_bridge *br)
701 {
702         return br->vlgrp;
703 }
704
705 static inline struct net_bridge_vlan_group *nbp_vlan_group(
706                                         const struct net_bridge_port *p)
707 {
708         return p->vlgrp;
709 }
710
711 /* Since bridge now depends on 8021Q module, but the time bridge sees the
712  * skb, the vlan tag will always be present if the frame was tagged.
713  */
714 static inline int br_vlan_get_tag(const struct sk_buff *skb, u16 *vid)
715 {
716         int err = 0;
717
718         if (skb_vlan_tag_present(skb)) {
719                 *vid = skb_vlan_tag_get(skb) & VLAN_VID_MASK;
720         } else {
721                 *vid = 0;
722                 err = -EINVAL;
723         }
724
725         return err;
726 }
727
728 static inline u16 br_get_pvid(const struct net_bridge *br)
729 {
730         if (!br)
731                 return 0;
732
733         smp_rmb();
734         return br->pvid;
735 }
736
737 static inline u16 nbp_get_pvid(const struct net_bridge_port *p)
738 {
739         if (!p)
740                 return 0;
741
742         smp_rmb();
743         return p->pvid;
744 }
745
746 static inline int br_vlan_enabled(struct net_bridge *br)
747 {
748         return br->vlan_enabled;
749 }
750 #else
751 static inline bool br_allowed_ingress(struct net_bridge *br,
752                                       struct sk_buff *skb,
753                                       u16 *vid)
754 {
755         return true;
756 }
757
758 static inline bool nbp_allowed_ingress(struct net_bridge_port *p,
759                                        struct sk_buff *skb,
760                                        u16 *vid)
761 {
762         return true;
763 }
764
765 static inline bool br_allowed_egress(struct net_bridge_vlan_group *vg,
766                                      const struct sk_buff *skb)
767 {
768         return true;
769 }
770
771 static inline bool br_should_learn(struct net_bridge_port *p,
772                                    struct sk_buff *skb, u16 *vid)
773 {
774         return true;
775 }
776
777 static inline struct sk_buff *br_handle_vlan(struct net_bridge *br,
778                                              struct net_bridge_vlan_group *vg,
779                                              struct sk_buff *skb)
780 {
781         return skb;
782 }
783
784 static inline int br_vlan_add(struct net_bridge *br, u16 vid, u16 flags)
785 {
786         return -EOPNOTSUPP;
787 }
788
789 static inline int br_vlan_delete(struct net_bridge *br, u16 vid)
790 {
791         return -EOPNOTSUPP;
792 }
793
794 static inline void br_vlan_flush(struct net_bridge *br)
795 {
796 }
797
798 static inline void br_recalculate_fwd_mask(struct net_bridge *br)
799 {
800 }
801
802 static inline int br_vlan_init(struct net_bridge *br)
803 {
804         return 0;
805 }
806
807 static inline int nbp_vlan_add(struct net_bridge_port *port, u16 vid, u16 flags)
808 {
809         return -EOPNOTSUPP;
810 }
811
812 static inline int nbp_vlan_delete(struct net_bridge_port *port, u16 vid)
813 {
814         return -EOPNOTSUPP;
815 }
816
817 static inline void nbp_vlan_flush(struct net_bridge_port *port)
818 {
819 }
820
821 static inline struct net_bridge_vlan *br_vlan_find(struct net_bridge_vlan_group *vg,
822                                                    u16 vid)
823 {
824         return NULL;
825 }
826
827 static inline int nbp_vlan_init(struct net_bridge_port *port)
828 {
829         return 0;
830 }
831
832 static inline u16 br_vlan_get_tag(const struct sk_buff *skb, u16 *tag)
833 {
834         return 0;
835 }
836
837 static inline u16 br_get_pvid(const struct net_bridge *br)
838 {
839         return 0;
840 }
841
842 static inline u16 nbp_get_pvid(const struct net_bridge_port *p)
843 {
844         return 0;
845 }
846
847 static inline int br_vlan_enabled(struct net_bridge *br)
848 {
849         return 0;
850 }
851
852 static inline int __br_vlan_filter_toggle(struct net_bridge *br,
853                                           unsigned long val)
854 {
855         return -EOPNOTSUPP;
856 }
857
858 static inline int nbp_get_num_vlan_infos(struct net_bridge_port *p,
859                                          u32 filter_mask)
860 {
861         return 0;
862 }
863
864 static inline struct net_bridge_vlan_group *br_vlan_group(
865                                         const struct net_bridge *br)
866 {
867         return NULL;
868 }
869
870 static inline struct net_bridge_vlan_group *nbp_vlan_group(
871                                         const struct net_bridge_port *p)
872 {
873         return NULL;
874 }
875 #endif
876
877 struct nf_br_ops {
878         int (*br_dev_xmit_hook)(struct sk_buff *skb);
879 };
880 extern const struct nf_br_ops __rcu *nf_br_ops;
881
882 /* br_netfilter.c */
883 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
884 int br_nf_core_init(void);
885 void br_nf_core_fini(void);
886 void br_netfilter_rtable_init(struct net_bridge *);
887 #else
888 static inline int br_nf_core_init(void) { return 0; }
889 static inline void br_nf_core_fini(void) {}
890 #define br_netfilter_rtable_init(x)
891 #endif
892
893 /* br_stp.c */
894 void br_log_state(const struct net_bridge_port *p);
895 void br_set_state(struct net_bridge_port *p, unsigned int state);
896 struct net_bridge_port *br_get_port(struct net_bridge *br, u16 port_no);
897 void br_init_port(struct net_bridge_port *p);
898 void br_become_designated_port(struct net_bridge_port *p);
899
900 void __br_set_forward_delay(struct net_bridge *br, unsigned long t);
901 int br_set_forward_delay(struct net_bridge *br, unsigned long x);
902 int br_set_hello_time(struct net_bridge *br, unsigned long x);
903 int br_set_max_age(struct net_bridge *br, unsigned long x);
904
905
906 /* br_stp_if.c */
907 void br_stp_enable_bridge(struct net_bridge *br);
908 void br_stp_disable_bridge(struct net_bridge *br);
909 void br_stp_set_enabled(struct net_bridge *br, unsigned long val);
910 void br_stp_enable_port(struct net_bridge_port *p);
911 void br_stp_disable_port(struct net_bridge_port *p);
912 bool br_stp_recalculate_bridge_id(struct net_bridge *br);
913 void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *a);
914 void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio);
915 int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio);
916 int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost);
917 ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id);
918
919 /* br_stp_bpdu.c */
920 struct stp_proto;
921 void br_stp_rcv(const struct stp_proto *proto, struct sk_buff *skb,
922                 struct net_device *dev);
923
924 /* br_stp_timer.c */
925 void br_stp_timer_init(struct net_bridge *br);
926 void br_stp_port_timer_init(struct net_bridge_port *p);
927 unsigned long br_timer_value(const struct timer_list *timer);
928
929 /* br.c */
930 #if IS_ENABLED(CONFIG_ATM_LANE)
931 extern int (*br_fdb_test_addr_hook)(struct net_device *dev, unsigned char *addr);
932 #endif
933
934 /* br_netlink.c */
935 extern struct rtnl_link_ops br_link_ops;
936 int br_netlink_init(void);
937 void br_netlink_fini(void);
938 void br_ifinfo_notify(int event, struct net_bridge_port *port);
939 int br_setlink(struct net_device *dev, struct nlmsghdr *nlmsg, u16 flags);
940 int br_dellink(struct net_device *dev, struct nlmsghdr *nlmsg, u16 flags);
941 int br_getlink(struct sk_buff *skb, u32 pid, u32 seq, struct net_device *dev,
942                u32 filter_mask, int nlflags);
943
944 #ifdef CONFIG_SYSFS
945 /* br_sysfs_if.c */
946 extern const struct sysfs_ops brport_sysfs_ops;
947 int br_sysfs_addif(struct net_bridge_port *p);
948 int br_sysfs_renameif(struct net_bridge_port *p);
949
950 /* br_sysfs_br.c */
951 int br_sysfs_addbr(struct net_device *dev);
952 void br_sysfs_delbr(struct net_device *dev);
953
954 #else
955
956 static inline int br_sysfs_addif(struct net_bridge_port *p) { return 0; }
957 static inline int br_sysfs_renameif(struct net_bridge_port *p) { return 0; }
958 static inline int br_sysfs_addbr(struct net_device *dev) { return 0; }
959 static inline void br_sysfs_delbr(struct net_device *dev) { return; }
960 #endif /* CONFIG_SYSFS */
961
962 #endif