Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux ethernet bridge |
| 3 | * |
| 4 | * Authors: |
| 5 | * Lennert Buytenhek <buytenh@gnu.org> |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/if_bridge.h> |
Herbert Xu | 91d2c34 | 2010-06-10 16:12:50 +0000 | [diff] [blame] | 18 | #include <linux/netpoll.h> |
Eric Dumazet | 406818f | 2010-06-23 13:00:48 -0700 | [diff] [blame] | 19 | #include <linux/u64_stats_sync.h> |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 20 | #include <net/route.h> |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 21 | #include <linux/if_vlan.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #define BR_HASH_BITS 8 |
| 24 | #define BR_HASH_SIZE (1 << BR_HASH_BITS) |
| 25 | |
| 26 | #define BR_HOLD_TIME (1*HZ) |
| 27 | |
| 28 | #define BR_PORT_BITS 10 |
| 29 | #define BR_MAX_PORTS (1<<BR_PORT_BITS) |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 30 | #define BR_VLAN_BITMAP_LEN BITS_TO_LONGS(VLAN_N_VID) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Stephen Hemminger | 9cde070 | 2007-03-21 14:22:44 -0700 | [diff] [blame] | 32 | #define BR_VERSION "2.3" |
| 33 | |
stephen hemminger | 515853c | 2011-10-03 18:14:46 +0000 | [diff] [blame] | 34 | /* Control of forwarding link local multicast */ |
| 35 | #define BR_GROUPFWD_DEFAULT 0 |
| 36 | /* Don't allow forwarding control protocols like STP and LLDP */ |
| 37 | #define BR_GROUPFWD_RESTRICTED 0x4007u |
Toshiaki Makita | f2808d2 | 2014-06-10 20:59:24 +0900 | [diff] [blame] | 38 | /* The Nearest Customer Bridge Group Address, 01-80-C2-00-00-[00,0B,0C,0D,0F] */ |
| 39 | #define BR_GROUPFWD_8021AD 0xB801u |
stephen hemminger | 515853c | 2011-10-03 18:14:46 +0000 | [diff] [blame] | 40 | |
Stephen Hemminger | 9cde070 | 2007-03-21 14:22:44 -0700 | [diff] [blame] | 41 | /* Path to usermode spanning tree program */ |
| 42 | #define BR_STP_PROG "/sbin/bridge-stp" |
Stephen Hemminger | 8cbb512e | 2005-12-21 19:01:30 -0800 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | typedef struct bridge_id bridge_id; |
| 45 | typedef struct mac_addr mac_addr; |
| 46 | typedef __u16 port_id; |
| 47 | |
| 48 | struct bridge_id |
| 49 | { |
| 50 | unsigned char prio[2]; |
Joe Perches | e5a727f | 2014-02-23 00:05:25 -0800 | [diff] [blame] | 51 | unsigned char addr[ETH_ALEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | struct mac_addr |
| 55 | { |
Joe Perches | e5a727f | 2014-02-23 00:05:25 -0800 | [diff] [blame] | 56 | unsigned char addr[ETH_ALEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | }; |
| 58 | |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 59 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
| 60 | /* our own querier */ |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 61 | struct bridge_mcast_own_query { |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 62 | struct timer_list timer; |
| 63 | u32 startup_sent; |
| 64 | }; |
| 65 | |
| 66 | /* other querier */ |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 67 | struct bridge_mcast_other_query { |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 68 | struct timer_list timer; |
| 69 | unsigned long delay_time; |
| 70 | }; |
Linus Lüssing | dc4eb53 | 2014-06-07 18:26:27 +0200 | [diff] [blame] | 71 | |
| 72 | /* selected querier */ |
| 73 | struct bridge_mcast_querier { |
| 74 | struct br_ip addr; |
Linus Lüssing | 2cd4143 | 2014-06-07 18:26:29 +0200 | [diff] [blame] | 75 | struct net_bridge_port __rcu *port; |
Linus Lüssing | dc4eb53 | 2014-06-07 18:26:27 +0200 | [diff] [blame] | 76 | }; |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 77 | #endif |
| 78 | |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 79 | struct net_port_vlans { |
| 80 | u16 port_idx; |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 81 | u16 pvid; |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 82 | union { |
| 83 | struct net_bridge_port *port; |
| 84 | struct net_bridge *br; |
| 85 | } parent; |
| 86 | struct rcu_head rcu; |
| 87 | unsigned long vlan_bitmap[BR_VLAN_BITMAP_LEN]; |
Vlad Yasevich | 35e03f3 | 2013-02-13 12:00:20 +0000 | [diff] [blame] | 88 | unsigned long untagged_bitmap[BR_VLAN_BITMAP_LEN]; |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 89 | u16 num_vlans; |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 90 | }; |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | struct net_bridge_fdb_entry |
| 93 | { |
| 94 | struct hlist_node hlist; |
| 95 | struct net_bridge_port *dst; |
| 96 | |
| 97 | struct rcu_head rcu; |
stephen hemminger | 7cd8861 | 2011-04-04 14:03:28 +0000 | [diff] [blame] | 98 | unsigned long updated; |
| 99 | unsigned long used; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | mac_addr addr; |
Jiri Pirko | 93859b1 | 2014-11-28 14:34:14 +0100 | [diff] [blame] | 101 | unsigned char is_local:1, |
| 102 | is_static:1, |
Scott Feldman | cf6b8e1 | 2014-11-28 14:34:21 +0100 | [diff] [blame] | 103 | added_by_user:1, |
| 104 | added_by_external_learn:1; |
Vlad Yasevich | 2ba071e | 2013-02-13 12:00:16 +0000 | [diff] [blame] | 105 | __u16 vlan_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 108 | struct net_bridge_port_group { |
| 109 | struct net_bridge_port *port; |
Eric Dumazet | e805168 | 2010-11-15 06:38:10 +0000 | [diff] [blame] | 110 | struct net_bridge_port_group __rcu *next; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 111 | struct hlist_node mglist; |
| 112 | struct rcu_head rcu; |
| 113 | struct timer_list timer; |
YOSHIFUJI Hideaki | 8ef2a9a | 2010-04-18 12:42:07 +0900 | [diff] [blame] | 114 | struct br_ip addr; |
Amerigo Wang | ccb1c31 | 2012-12-14 22:09:51 +0000 | [diff] [blame] | 115 | unsigned char state; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | struct net_bridge_mdb_entry |
| 119 | { |
| 120 | struct hlist_node hlist[2]; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 121 | struct net_bridge *br; |
Eric Dumazet | e805168 | 2010-11-15 06:38:10 +0000 | [diff] [blame] | 122 | struct net_bridge_port_group __rcu *ports; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 123 | struct rcu_head rcu; |
| 124 | struct timer_list timer; |
YOSHIFUJI Hideaki | 8ef2a9a | 2010-04-18 12:42:07 +0900 | [diff] [blame] | 125 | struct br_ip addr; |
Herbert Xu | 8a87017 | 2011-02-12 01:05:42 -0800 | [diff] [blame] | 126 | bool mglist; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 127 | }; |
| 128 | |
| 129 | struct net_bridge_mdb_htable |
| 130 | { |
| 131 | struct hlist_head *mhash; |
| 132 | struct rcu_head rcu; |
| 133 | struct net_bridge_mdb_htable *old; |
| 134 | u32 size; |
| 135 | u32 max; |
| 136 | u32 secret; |
| 137 | u32 ver; |
| 138 | }; |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | struct net_bridge_port |
| 141 | { |
| 142 | struct net_bridge *br; |
| 143 | struct net_device *dev; |
| 144 | struct list_head list; |
| 145 | |
| 146 | /* STP */ |
| 147 | u8 priority; |
| 148 | u8 state; |
| 149 | u16 port_no; |
| 150 | unsigned char topology_change_ack; |
| 151 | unsigned char config_pending; |
| 152 | port_id port_id; |
| 153 | port_id designated_port; |
| 154 | bridge_id designated_root; |
| 155 | bridge_id designated_bridge; |
| 156 | u32 path_cost; |
| 157 | u32 designated_cost; |
stephen hemminger | 0c03150 | 2011-07-22 07:47:06 +0000 | [diff] [blame] | 158 | unsigned long designated_age; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | struct timer_list forward_delay_timer; |
| 161 | struct timer_list hold_timer; |
| 162 | struct timer_list message_age_timer; |
| 163 | struct kobject kobj; |
| 164 | struct rcu_head rcu; |
Fischer, Anna | 3982d3d | 2009-08-13 06:55:16 +0000 | [diff] [blame] | 165 | |
| 166 | unsigned long flags; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 167 | |
| 168 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 169 | struct bridge_mcast_own_query ip4_own_query; |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 170 | #if IS_ENABLED(CONFIG_IPV6) |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 171 | struct bridge_mcast_own_query ip6_own_query; |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 172 | #endif /* IS_ENABLED(CONFIG_IPV6) */ |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 173 | unsigned char multicast_router; |
| 174 | struct timer_list multicast_router_timer; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 175 | struct hlist_head mglist; |
| 176 | struct hlist_node rlist; |
| 177 | #endif |
Simon Arlott | e0f4375 | 2010-05-10 09:31:11 +0000 | [diff] [blame] | 178 | |
| 179 | #ifdef CONFIG_SYSFS |
| 180 | char sysfs_name[IFNAMSIZ]; |
| 181 | #endif |
Herbert Xu | 91d2c34 | 2010-06-10 16:12:50 +0000 | [diff] [blame] | 182 | |
| 183 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 184 | struct netpoll *np; |
| 185 | #endif |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 186 | #ifdef CONFIG_BRIDGE_VLAN_FILTERING |
| 187 | struct net_port_vlans __rcu *vlan_info; |
| 188 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | }; |
| 190 | |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 191 | #define br_auto_port(p) ((p)->flags & BR_AUTO_MASK) |
Vlad Yasevich | f3a6ddf | 2014-05-16 09:59:18 -0400 | [diff] [blame] | 192 | #define br_promisc_port(p) ((p)->flags & BR_PROMISC) |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 193 | |
Jiri Pirko | f350a0a8 | 2010-06-15 06:50:45 +0000 | [diff] [blame] | 194 | #define br_port_exists(dev) (dev->priv_flags & IFF_BRIDGE_PORT) |
| 195 | |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 196 | static inline struct net_bridge_port *br_port_get_rcu(const struct net_device *dev) |
| 197 | { |
Hong Zhiguo | 716ec05 | 2013-09-14 22:42:28 +0800 | [diff] [blame] | 198 | return rcu_dereference(dev->rx_handler_data); |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Hong Zhiguo | 1fb1754 | 2013-09-14 22:42:27 +0800 | [diff] [blame] | 201 | static inline struct net_bridge_port *br_port_get_rtnl(const struct net_device *dev) |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 202 | { |
Eric Dumazet | ec1e561 | 2010-11-15 06:38:14 +0000 | [diff] [blame] | 203 | return br_port_exists(dev) ? |
| 204 | rtnl_dereference(dev->rx_handler_data) : NULL; |
stephen hemminger | b5ed54e | 2010-11-15 06:38:13 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | struct net_bridge |
| 208 | { |
| 209 | spinlock_t lock; |
| 210 | struct list_head port_list; |
| 211 | struct net_device *dev; |
stephen hemminger | 14bb478 | 2010-03-02 13:32:09 +0000 | [diff] [blame] | 212 | |
Li RongQing | 8f84985 | 2014-01-04 13:57:59 +0800 | [diff] [blame] | 213 | struct pcpu_sw_netstats __percpu *stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | spinlock_t hash_lock; |
| 215 | struct hlist_head hash[BR_HASH_SIZE]; |
Pablo Neira Ayuso | 34666d4 | 2014-09-18 11:29:03 +0200 | [diff] [blame] | 216 | #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER) |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 217 | struct rtable fake_rtable; |
Patrick McHardy | 4df53d8 | 2010-07-02 09:32:57 +0200 | [diff] [blame] | 218 | bool nf_call_iptables; |
| 219 | bool nf_call_ip6tables; |
| 220 | bool nf_call_arptables; |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 221 | #endif |
stephen hemminger | 515853c | 2011-10-03 18:14:46 +0000 | [diff] [blame] | 222 | u16 group_fwd_mask; |
Toshiaki Makita | f2808d2 | 2014-06-10 20:59:24 +0900 | [diff] [blame] | 223 | u16 group_fwd_mask_required; |
stephen hemminger | 515853c | 2011-10-03 18:14:46 +0000 | [diff] [blame] | 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | /* STP */ |
| 226 | bridge_id designated_root; |
| 227 | bridge_id bridge_id; |
| 228 | u32 root_path_cost; |
| 229 | unsigned long max_age; |
| 230 | unsigned long hello_time; |
| 231 | unsigned long forward_delay; |
| 232 | unsigned long bridge_max_age; |
| 233 | unsigned long ageing_time; |
| 234 | unsigned long bridge_hello_time; |
| 235 | unsigned long bridge_forward_delay; |
| 236 | |
Stephen Hemminger | fda93d9 | 2006-03-20 22:59:21 -0800 | [diff] [blame] | 237 | u8 group_addr[ETH_ALEN]; |
Toshiaki Makita | 204177f | 2014-06-10 20:59:25 +0900 | [diff] [blame] | 238 | bool group_addr_set; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | u16 root_port; |
Stephen Hemminger | 9cde070 | 2007-03-21 14:22:44 -0700 | [diff] [blame] | 240 | |
| 241 | enum { |
| 242 | BR_NO_STP, /* no spanning tree */ |
| 243 | BR_KERNEL_STP, /* old STP in kernel */ |
| 244 | BR_USER_STP, /* new RSTP in userspace */ |
| 245 | } stp_enabled; |
| 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | unsigned char topology_change; |
| 248 | unsigned char topology_change_detected; |
| 249 | |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 250 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
| 251 | unsigned char multicast_router; |
| 252 | |
| 253 | u8 multicast_disabled:1; |
Herbert Xu | c5c2326 | 2012-04-13 02:37:42 +0000 | [diff] [blame] | 254 | u8 multicast_querier:1; |
Cong Wang | 1c8ad5b | 2013-05-21 21:52:54 +0000 | [diff] [blame] | 255 | u8 multicast_query_use_ifaddr:1; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 256 | |
| 257 | u32 hash_elasticity; |
| 258 | u32 hash_max; |
| 259 | |
| 260 | u32 multicast_last_member_count; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 261 | u32 multicast_startup_query_count; |
| 262 | |
| 263 | unsigned long multicast_last_member_interval; |
| 264 | unsigned long multicast_membership_interval; |
| 265 | unsigned long multicast_querier_interval; |
| 266 | unsigned long multicast_query_interval; |
| 267 | unsigned long multicast_query_response_interval; |
| 268 | unsigned long multicast_startup_query_interval; |
| 269 | |
| 270 | spinlock_t multicast_lock; |
Eric Dumazet | e805168 | 2010-11-15 06:38:10 +0000 | [diff] [blame] | 271 | struct net_bridge_mdb_htable __rcu *mdb; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 272 | struct hlist_head router_list; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 273 | |
| 274 | struct timer_list multicast_router_timer; |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 275 | struct bridge_mcast_other_query ip4_other_query; |
| 276 | struct bridge_mcast_own_query ip4_own_query; |
Linus Lüssing | dc4eb53 | 2014-06-07 18:26:27 +0200 | [diff] [blame] | 277 | struct bridge_mcast_querier ip4_querier; |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 278 | #if IS_ENABLED(CONFIG_IPV6) |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 279 | struct bridge_mcast_other_query ip6_other_query; |
| 280 | struct bridge_mcast_own_query ip6_own_query; |
Linus Lüssing | dc4eb53 | 2014-06-07 18:26:27 +0200 | [diff] [blame] | 281 | struct bridge_mcast_querier ip6_querier; |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 282 | #endif /* IS_ENABLED(CONFIG_IPV6) */ |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 283 | #endif |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | struct timer_list hello_timer; |
| 286 | struct timer_list tcn_timer; |
| 287 | struct timer_list topology_change_timer; |
| 288 | struct timer_list gc_timer; |
Greg Kroah-Hartman | 43b98c4 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 289 | struct kobject *ifobj; |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 290 | u32 auto_cnt; |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 291 | #ifdef CONFIG_BRIDGE_VLAN_FILTERING |
| 292 | u8 vlan_enabled; |
Toshiaki Makita | 8580e21 | 2014-06-10 20:59:23 +0900 | [diff] [blame] | 293 | __be16 vlan_proto; |
Vlad Yasevich | 96a20d9 | 2014-10-03 11:29:16 -0400 | [diff] [blame] | 294 | u16 default_pvid; |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 295 | struct net_port_vlans __rcu *vlan_info; |
| 296 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | }; |
| 298 | |
Herbert Xu | 68b7c89 | 2010-02-27 19:41:40 +0000 | [diff] [blame] | 299 | struct br_input_skb_cb { |
| 300 | struct net_device *brdev; |
Herbert Xu | 93fdd47 | 2014-10-05 12:00:22 +0800 | [diff] [blame] | 301 | |
YOSHIFUJI Hideaki / 吉藤英明 | 32dec5d | 2010-03-15 21:51:18 +0000 | [diff] [blame] | 302 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 303 | int igmp; |
| 304 | int mrouters_only; |
YOSHIFUJI Hideaki / 吉藤英明 | 32dec5d | 2010-03-15 21:51:18 +0000 | [diff] [blame] | 305 | #endif |
Herbert Xu | 93fdd47 | 2014-10-05 12:00:22 +0800 | [diff] [blame] | 306 | |
| 307 | u16 frag_max_size; |
| 308 | |
Vlad Yasevich | 20adfa1 | 2014-09-12 16:26:16 -0400 | [diff] [blame] | 309 | #ifdef CONFIG_BRIDGE_VLAN_FILTERING |
| 310 | bool vlan_filtered; |
| 311 | #endif |
Herbert Xu | 68b7c89 | 2010-02-27 19:41:40 +0000 | [diff] [blame] | 312 | }; |
| 313 | |
| 314 | #define BR_INPUT_SKB_CB(__skb) ((struct br_input_skb_cb *)(__skb)->cb) |
| 315 | |
YOSHIFUJI Hideaki / 吉藤英明 | 32dec5d | 2010-03-15 21:51:18 +0000 | [diff] [blame] | 316 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
| 317 | # define BR_INPUT_SKB_CB_MROUTERS_ONLY(__skb) (BR_INPUT_SKB_CB(__skb)->mrouters_only) |
| 318 | #else |
| 319 | # define BR_INPUT_SKB_CB_MROUTERS_ONLY(__skb) (0) |
| 320 | #endif |
| 321 | |
stephen hemminger | 28a16c9 | 2010-05-10 09:31:09 +0000 | [diff] [blame] | 322 | #define br_printk(level, br, format, args...) \ |
| 323 | printk(level "%s: " format, (br)->dev->name, ##args) |
| 324 | |
| 325 | #define br_err(__br, format, args...) \ |
| 326 | br_printk(KERN_ERR, __br, format, ##args) |
| 327 | #define br_warn(__br, format, args...) \ |
| 328 | br_printk(KERN_WARNING, __br, format, ##args) |
| 329 | #define br_notice(__br, format, args...) \ |
| 330 | br_printk(KERN_NOTICE, __br, format, ##args) |
| 331 | #define br_info(__br, format, args...) \ |
| 332 | br_printk(KERN_INFO, __br, format, ##args) |
| 333 | |
| 334 | #define br_debug(br, format, args...) \ |
| 335 | pr_debug("%s: " format, (br)->dev->name, ##args) |
| 336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | /* called under bridge lock */ |
| 338 | static inline int br_is_root_bridge(const struct net_bridge *br) |
| 339 | { |
| 340 | return !memcmp(&br->bridge_id, &br->designated_root, 8); |
| 341 | } |
| 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* br_device.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 344 | void br_dev_setup(struct net_device *dev); |
| 345 | void br_dev_delete(struct net_device *dev, struct list_head *list); |
| 346 | netdev_tx_t br_dev_xmit(struct sk_buff *skb, struct net_device *dev); |
stephen hemminger | cfb478d | 2010-05-10 09:31:08 +0000 | [diff] [blame] | 347 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Herbert Xu | 91d2c34 | 2010-06-10 16:12:50 +0000 | [diff] [blame] | 348 | static inline void br_netpoll_send_skb(const struct net_bridge_port *p, |
| 349 | struct sk_buff *skb) |
| 350 | { |
| 351 | struct netpoll *np = p->np; |
| 352 | |
| 353 | if (np) |
| 354 | netpoll_send_skb(np, skb); |
| 355 | } |
| 356 | |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 357 | int br_netpoll_enable(struct net_bridge_port *p); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 358 | void br_netpoll_disable(struct net_bridge_port *p); |
Herbert Xu | 91d2c34 | 2010-06-10 16:12:50 +0000 | [diff] [blame] | 359 | #else |
Herbert Xu | 9f70b0f | 2010-06-15 21:43:48 -0700 | [diff] [blame] | 360 | static inline void br_netpoll_send_skb(const struct net_bridge_port *p, |
Herbert Xu | 91d2c34 | 2010-06-10 16:12:50 +0000 | [diff] [blame] | 361 | struct sk_buff *skb) |
| 362 | { |
| 363 | } |
| 364 | |
Eric W. Biederman | a8779ec | 2014-03-27 15:36:38 -0700 | [diff] [blame] | 365 | static inline int br_netpoll_enable(struct net_bridge_port *p) |
Herbert Xu | 91d2c34 | 2010-06-10 16:12:50 +0000 | [diff] [blame] | 366 | { |
| 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | static inline void br_netpoll_disable(struct net_bridge_port *p) |
| 371 | { |
| 372 | } |
stephen hemminger | cfb478d | 2010-05-10 09:31:08 +0000 | [diff] [blame] | 373 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | /* br_fdb.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 376 | int br_fdb_init(void); |
| 377 | void br_fdb_fini(void); |
| 378 | void br_fdb_flush(struct net_bridge *br); |
Toshiaki Makita | 424bb9c | 2014-02-07 16:48:25 +0900 | [diff] [blame] | 379 | void br_fdb_find_delete_local(struct net_bridge *br, |
| 380 | const struct net_bridge_port *p, |
| 381 | const unsigned char *addr, u16 vid); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 382 | void br_fdb_changeaddr(struct net_bridge_port *p, const unsigned char *newaddr); |
| 383 | void br_fdb_change_mac_address(struct net_bridge *br, const u8 *newaddr); |
| 384 | void br_fdb_cleanup(unsigned long arg); |
| 385 | void br_fdb_delete_by_port(struct net_bridge *br, |
| 386 | const struct net_bridge_port *p, int do_all); |
| 387 | struct net_bridge_fdb_entry *__br_fdb_get(struct net_bridge *br, |
| 388 | const unsigned char *addr, __u16 vid); |
| 389 | int br_fdb_test_addr(struct net_device *dev, unsigned char *addr); |
| 390 | int br_fdb_fillbuf(struct net_bridge *br, void *buf, unsigned long count, |
| 391 | unsigned long off); |
| 392 | int br_fdb_insert(struct net_bridge *br, struct net_bridge_port *source, |
| 393 | const unsigned char *addr, u16 vid); |
| 394 | void br_fdb_update(struct net_bridge *br, struct net_bridge_port *source, |
Toshiaki Makita | a5642ab | 2014-02-07 16:48:18 +0900 | [diff] [blame] | 395 | const unsigned char *addr, u16 vid, bool added_by_user); |
John Fastabend | 7716202 | 2012-04-15 06:43:56 +0000 | [diff] [blame] | 396 | |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 397 | int br_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[], |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 398 | struct net_device *dev, const unsigned char *addr, u16 vid); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 399 | int br_fdb_add(struct ndmsg *nlh, struct nlattr *tb[], struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 400 | const unsigned char *addr, u16 vid, u16 nlh_flags); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 401 | int br_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb, |
Jamal Hadi Salim | 5d5eacb | 2014-07-10 07:01:58 -0400 | [diff] [blame] | 402 | struct net_device *dev, struct net_device *fdev, int idx); |
Vlad Yasevich | 8db24af | 2014-05-16 09:59:17 -0400 | [diff] [blame] | 403 | int br_fdb_sync_static(struct net_bridge *br, struct net_bridge_port *p); |
| 404 | void br_fdb_unsync_static(struct net_bridge *br, struct net_bridge_port *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
| 406 | /* br_forward.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 407 | void br_deliver(const struct net_bridge_port *to, struct sk_buff *skb); |
| 408 | int br_dev_queue_push_xmit(struct sk_buff *skb); |
| 409 | void br_forward(const struct net_bridge_port *to, |
Michael Braun | 7f7708f | 2010-03-16 00:26:22 -0700 | [diff] [blame] | 410 | struct sk_buff *skb, struct sk_buff *skb0); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 411 | int br_forward_finish(struct sk_buff *skb); |
| 412 | void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb, bool unicast); |
| 413 | void br_flood_forward(struct net_bridge *br, struct sk_buff *skb, |
| 414 | struct sk_buff *skb2, bool unicast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | /* br_if.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 417 | void br_port_carrier_check(struct net_bridge_port *p); |
| 418 | int br_add_bridge(struct net *net, const char *name); |
| 419 | int br_del_bridge(struct net *net, const char *name); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 420 | int br_add_if(struct net_bridge *br, struct net_device *dev); |
| 421 | int br_del_if(struct net_bridge *br, struct net_device *dev); |
| 422 | int br_min_mtu(const struct net_bridge *br); |
| 423 | netdev_features_t br_features_recompute(struct net_bridge *br, |
| 424 | netdev_features_t features); |
Vlad Yasevich | e028e4b | 2014-05-16 09:59:16 -0400 | [diff] [blame] | 425 | void br_port_flags_change(struct net_bridge_port *port, unsigned long mask); |
Vlad Yasevich | 2796d0c | 2014-05-16 09:59:20 -0400 | [diff] [blame] | 426 | void br_manage_promisc(struct net_bridge *br); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
| 428 | /* br_input.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 429 | int br_handle_frame_finish(struct sk_buff *skb); |
| 430 | rx_handler_result_t br_handle_frame(struct sk_buff **pskb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Jiri Pirko | 859828c | 2013-12-05 16:27:37 +0100 | [diff] [blame] | 432 | static inline bool br_rx_handler_check_rcu(const struct net_device *dev) |
| 433 | { |
| 434 | return rcu_dereference(dev->rx_handler) == br_handle_frame; |
| 435 | } |
| 436 | |
| 437 | static inline struct net_bridge_port *br_port_get_check_rcu(const struct net_device *dev) |
| 438 | { |
| 439 | return br_rx_handler_check_rcu(dev) ? br_port_get_rcu(dev) : NULL; |
| 440 | } |
| 441 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | /* br_ioctl.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 443 | int br_dev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
| 444 | int br_ioctl_deviceless_stub(struct net *net, unsigned int cmd, |
| 445 | void __user *arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 447 | /* br_multicast.c */ |
| 448 | #ifdef CONFIG_BRIDGE_IGMP_SNOOPING |
Cong Wang | 2ce297f | 2012-12-10 02:15:35 +0000 | [diff] [blame] | 449 | extern unsigned int br_mdb_rehash_seq; |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 450 | int br_multicast_rcv(struct net_bridge *br, struct net_bridge_port *port, |
David S. Miller | 394efd1 | 2013-11-04 13:48:30 -0500 | [diff] [blame] | 451 | struct sk_buff *skb, u16 vid); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 452 | struct net_bridge_mdb_entry *br_mdb_get(struct net_bridge *br, |
| 453 | struct sk_buff *skb, u16 vid); |
| 454 | void br_multicast_add_port(struct net_bridge_port *port); |
| 455 | void br_multicast_del_port(struct net_bridge_port *port); |
| 456 | void br_multicast_enable_port(struct net_bridge_port *port); |
| 457 | void br_multicast_disable_port(struct net_bridge_port *port); |
| 458 | void br_multicast_init(struct net_bridge *br); |
| 459 | void br_multicast_open(struct net_bridge *br); |
| 460 | void br_multicast_stop(struct net_bridge *br); |
| 461 | void br_multicast_deliver(struct net_bridge_mdb_entry *mdst, |
| 462 | struct sk_buff *skb); |
| 463 | void br_multicast_forward(struct net_bridge_mdb_entry *mdst, |
| 464 | struct sk_buff *skb, struct sk_buff *skb2); |
| 465 | int br_multicast_set_router(struct net_bridge *br, unsigned long val); |
| 466 | int br_multicast_set_port_router(struct net_bridge_port *p, unsigned long val); |
| 467 | int br_multicast_toggle(struct net_bridge *br, unsigned long val); |
| 468 | int br_multicast_set_querier(struct net_bridge *br, unsigned long val); |
| 469 | int br_multicast_set_hash_max(struct net_bridge *br, unsigned long val); |
| 470 | struct net_bridge_mdb_entry * |
| 471 | br_mdb_ip_get(struct net_bridge_mdb_htable *mdb, struct br_ip *dst); |
| 472 | struct net_bridge_mdb_entry * |
| 473 | br_multicast_new_group(struct net_bridge *br, struct net_bridge_port *port, |
| 474 | struct br_ip *group); |
| 475 | void br_multicast_free_pg(struct rcu_head *head); |
| 476 | struct net_bridge_port_group * |
| 477 | br_multicast_new_port_group(struct net_bridge_port *port, struct br_ip *group, |
| 478 | struct net_bridge_port_group __rcu *next, |
| 479 | unsigned char state); |
| 480 | void br_mdb_init(void); |
| 481 | void br_mdb_uninit(void); |
| 482 | void br_mdb_notify(struct net_device *dev, struct net_bridge_port *port, |
| 483 | struct br_ip *group, int type); |
Sridhar Samudrala | 85b3526 | 2010-03-01 09:53:04 +0000 | [diff] [blame] | 484 | |
Cong Wang | cfd5675 | 2012-12-11 22:23:08 +0000 | [diff] [blame] | 485 | #define mlock_dereference(X, br) \ |
| 486 | rcu_dereference_protected(X, lockdep_is_held(&br->multicast_lock)) |
| 487 | |
Sridhar Samudrala | 85b3526 | 2010-03-01 09:53:04 +0000 | [diff] [blame] | 488 | static inline bool br_multicast_is_router(struct net_bridge *br) |
| 489 | { |
| 490 | return br->multicast_router == 2 || |
| 491 | (br->multicast_router == 1 && |
| 492 | timer_pending(&br->multicast_router_timer)); |
| 493 | } |
Linus Lüssing | b00589a | 2013-08-01 01:06:20 +0200 | [diff] [blame] | 494 | |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 495 | static inline bool |
| 496 | __br_multicast_querier_exists(struct net_bridge *br, |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 497 | struct bridge_mcast_other_query *querier) |
Linus Lüssing | b00589a | 2013-08-01 01:06:20 +0200 | [diff] [blame] | 498 | { |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 499 | return time_is_before_jiffies(querier->delay_time) && |
| 500 | (br->multicast_querier || timer_pending(&querier->timer)); |
| 501 | } |
| 502 | |
| 503 | static inline bool br_multicast_querier_exists(struct net_bridge *br, |
| 504 | struct ethhdr *eth) |
| 505 | { |
| 506 | switch (eth->h_proto) { |
| 507 | case (htons(ETH_P_IP)): |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 508 | return __br_multicast_querier_exists(br, &br->ip4_other_query); |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 509 | #if IS_ENABLED(CONFIG_IPV6) |
| 510 | case (htons(ETH_P_IPV6)): |
Linus Lüssing | 90010b3 | 2014-06-07 18:26:26 +0200 | [diff] [blame] | 511 | return __br_multicast_querier_exists(br, &br->ip6_other_query); |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 512 | #endif |
| 513 | default: |
| 514 | return false; |
| 515 | } |
Linus Lüssing | b00589a | 2013-08-01 01:06:20 +0200 | [diff] [blame] | 516 | } |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 517 | #else |
| 518 | static inline int br_multicast_rcv(struct net_bridge *br, |
| 519 | struct net_bridge_port *port, |
Vlad Yasevich | 0649909 | 2013-10-28 15:45:07 -0400 | [diff] [blame] | 520 | struct sk_buff *skb, |
| 521 | u16 vid) |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 522 | { |
| 523 | return 0; |
| 524 | } |
| 525 | |
| 526 | static inline struct net_bridge_mdb_entry *br_mdb_get(struct net_bridge *br, |
Cong Wang | fbca58a | 2013-03-07 03:05:33 +0000 | [diff] [blame] | 527 | struct sk_buff *skb, u16 vid) |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 528 | { |
| 529 | return NULL; |
| 530 | } |
| 531 | |
| 532 | static inline void br_multicast_add_port(struct net_bridge_port *port) |
| 533 | { |
| 534 | } |
| 535 | |
| 536 | static inline void br_multicast_del_port(struct net_bridge_port *port) |
| 537 | { |
| 538 | } |
| 539 | |
| 540 | static inline void br_multicast_enable_port(struct net_bridge_port *port) |
| 541 | { |
| 542 | } |
| 543 | |
| 544 | static inline void br_multicast_disable_port(struct net_bridge_port *port) |
| 545 | { |
| 546 | } |
| 547 | |
| 548 | static inline void br_multicast_init(struct net_bridge *br) |
| 549 | { |
| 550 | } |
| 551 | |
| 552 | static inline void br_multicast_open(struct net_bridge *br) |
| 553 | { |
| 554 | } |
| 555 | |
| 556 | static inline void br_multicast_stop(struct net_bridge *br) |
| 557 | { |
| 558 | } |
Herbert Xu | 5cb5e94 | 2010-02-27 19:41:46 +0000 | [diff] [blame] | 559 | |
| 560 | static inline void br_multicast_deliver(struct net_bridge_mdb_entry *mdst, |
| 561 | struct sk_buff *skb) |
| 562 | { |
| 563 | } |
| 564 | |
| 565 | static inline void br_multicast_forward(struct net_bridge_mdb_entry *mdst, |
| 566 | struct sk_buff *skb, |
| 567 | struct sk_buff *skb2) |
| 568 | { |
| 569 | } |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 570 | static inline bool br_multicast_is_router(struct net_bridge *br) |
| 571 | { |
Sridhar Samudrala | 85b3526 | 2010-03-01 09:53:04 +0000 | [diff] [blame] | 572 | return 0; |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 573 | } |
Linus Lüssing | cc0fdd8 | 2013-08-30 17:28:17 +0200 | [diff] [blame] | 574 | static inline bool br_multicast_querier_exists(struct net_bridge *br, |
| 575 | struct ethhdr *eth) |
Linus Lüssing | b00589a | 2013-08-01 01:06:20 +0200 | [diff] [blame] | 576 | { |
| 577 | return false; |
| 578 | } |
Rami Rosen | fdb184d | 2013-01-03 13:30:43 +0200 | [diff] [blame] | 579 | static inline void br_mdb_init(void) |
| 580 | { |
| 581 | } |
| 582 | static inline void br_mdb_uninit(void) |
| 583 | { |
| 584 | } |
Sridhar Samudrala | 85b3526 | 2010-03-01 09:53:04 +0000 | [diff] [blame] | 585 | #endif |
Herbert Xu | eb1d164 | 2010-02-27 19:41:45 +0000 | [diff] [blame] | 586 | |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 587 | /* br_vlan.c */ |
| 588 | #ifdef CONFIG_BRIDGE_VLAN_FILTERING |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 589 | bool br_allowed_ingress(struct net_bridge *br, struct net_port_vlans *v, |
| 590 | struct sk_buff *skb, u16 *vid); |
| 591 | bool br_allowed_egress(struct net_bridge *br, const struct net_port_vlans *v, |
| 592 | const struct sk_buff *skb); |
Toshiaki Makita | e0d7968 | 2014-05-26 15:15:53 +0900 | [diff] [blame] | 593 | bool br_should_learn(struct net_bridge_port *p, struct sk_buff *skb, u16 *vid); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 594 | struct sk_buff *br_handle_vlan(struct net_bridge *br, |
| 595 | const struct net_port_vlans *v, |
| 596 | struct sk_buff *skb); |
| 597 | int br_vlan_add(struct net_bridge *br, u16 vid, u16 flags); |
| 598 | int br_vlan_delete(struct net_bridge *br, u16 vid); |
| 599 | void br_vlan_flush(struct net_bridge *br); |
Toshiaki Makita | 2b292fb | 2014-02-07 16:48:22 +0900 | [diff] [blame] | 600 | bool br_vlan_find(struct net_bridge *br, u16 vid); |
Toshiaki Makita | 204177f | 2014-06-10 20:59:25 +0900 | [diff] [blame] | 601 | void br_recalculate_fwd_mask(struct net_bridge *br); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 602 | int br_vlan_filter_toggle(struct net_bridge *br, unsigned long val); |
Toshiaki Makita | 204177f | 2014-06-10 20:59:25 +0900 | [diff] [blame] | 603 | int br_vlan_set_proto(struct net_bridge *br, unsigned long val); |
Vlad Yasevich | 5be5a2d | 2014-10-03 11:29:18 -0400 | [diff] [blame] | 604 | int br_vlan_init(struct net_bridge *br); |
Vlad Yasevich | 96a20d9 | 2014-10-03 11:29:16 -0400 | [diff] [blame] | 605 | int br_vlan_set_default_pvid(struct net_bridge *br, unsigned long val); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 606 | int nbp_vlan_add(struct net_bridge_port *port, u16 vid, u16 flags); |
| 607 | int nbp_vlan_delete(struct net_bridge_port *port, u16 vid); |
| 608 | void nbp_vlan_flush(struct net_bridge_port *port); |
| 609 | bool nbp_vlan_find(struct net_bridge_port *port, u16 vid); |
Vlad Yasevich | 5be5a2d | 2014-10-03 11:29:18 -0400 | [diff] [blame] | 610 | int nbp_vlan_init(struct net_bridge_port *port); |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 611 | |
| 612 | static inline struct net_port_vlans *br_get_vlan_info( |
| 613 | const struct net_bridge *br) |
| 614 | { |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 615 | return rcu_dereference_rtnl(br->vlan_info); |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | static inline struct net_port_vlans *nbp_get_vlan_info( |
| 619 | const struct net_bridge_port *p) |
| 620 | { |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 621 | return rcu_dereference_rtnl(p->vlan_info); |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /* Since bridge now depends on 8021Q module, but the time bridge sees the |
| 625 | * skb, the vlan tag will always be present if the frame was tagged. |
| 626 | */ |
| 627 | static inline int br_vlan_get_tag(const struct sk_buff *skb, u16 *vid) |
| 628 | { |
| 629 | int err = 0; |
| 630 | |
| 631 | if (vlan_tx_tag_present(skb)) |
| 632 | *vid = vlan_tx_tag_get(skb) & VLAN_VID_MASK; |
| 633 | else { |
| 634 | *vid = 0; |
| 635 | err = -EINVAL; |
| 636 | } |
| 637 | |
| 638 | return err; |
| 639 | } |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 640 | |
| 641 | static inline u16 br_get_pvid(const struct net_port_vlans *v) |
| 642 | { |
Vlad Yasevich | 5be5a2d | 2014-10-03 11:29:18 -0400 | [diff] [blame] | 643 | if (!v) |
| 644 | return 0; |
| 645 | |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 646 | smp_rmb(); |
Vlad Yasevich | 3df6bf4 | 2014-10-03 11:29:17 -0400 | [diff] [blame] | 647 | return v->pvid; |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Vlad Yasevich | 2796d0c | 2014-05-16 09:59:20 -0400 | [diff] [blame] | 650 | static inline int br_vlan_enabled(struct net_bridge *br) |
| 651 | { |
| 652 | return br->vlan_enabled; |
| 653 | } |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 654 | #else |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 655 | static inline bool br_allowed_ingress(struct net_bridge *br, |
| 656 | struct net_port_vlans *v, |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 657 | struct sk_buff *skb, |
| 658 | u16 *vid) |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 659 | { |
| 660 | return true; |
| 661 | } |
| 662 | |
Vlad Yasevich | 85f46c6 | 2013-02-13 12:00:11 +0000 | [diff] [blame] | 663 | static inline bool br_allowed_egress(struct net_bridge *br, |
| 664 | const struct net_port_vlans *v, |
| 665 | const struct sk_buff *skb) |
| 666 | { |
| 667 | return true; |
| 668 | } |
| 669 | |
Toshiaki Makita | e0d7968 | 2014-05-26 15:15:53 +0900 | [diff] [blame] | 670 | static inline bool br_should_learn(struct net_bridge_port *p, |
| 671 | struct sk_buff *skb, u16 *vid) |
| 672 | { |
| 673 | return true; |
| 674 | } |
| 675 | |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 676 | static inline struct sk_buff *br_handle_vlan(struct net_bridge *br, |
| 677 | const struct net_port_vlans *v, |
| 678 | struct sk_buff *skb) |
| 679 | { |
| 680 | return skb; |
| 681 | } |
| 682 | |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 683 | static inline int br_vlan_add(struct net_bridge *br, u16 vid, u16 flags) |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 684 | { |
| 685 | return -EOPNOTSUPP; |
| 686 | } |
| 687 | |
| 688 | static inline int br_vlan_delete(struct net_bridge *br, u16 vid) |
| 689 | { |
| 690 | return -EOPNOTSUPP; |
| 691 | } |
| 692 | |
| 693 | static inline void br_vlan_flush(struct net_bridge *br) |
| 694 | { |
| 695 | } |
| 696 | |
Toshiaki Makita | 2b292fb | 2014-02-07 16:48:22 +0900 | [diff] [blame] | 697 | static inline bool br_vlan_find(struct net_bridge *br, u16 vid) |
| 698 | { |
| 699 | return false; |
| 700 | } |
| 701 | |
Toshiaki Makita | 204177f | 2014-06-10 20:59:25 +0900 | [diff] [blame] | 702 | static inline void br_recalculate_fwd_mask(struct net_bridge *br) |
| 703 | { |
| 704 | } |
| 705 | |
Vlad Yasevich | 5be5a2d | 2014-10-03 11:29:18 -0400 | [diff] [blame] | 706 | static inline int br_vlan_init(struct net_bridge *br) |
Toshiaki Makita | 8580e21 | 2014-06-10 20:59:23 +0900 | [diff] [blame] | 707 | { |
Vlad Yasevich | 5be5a2d | 2014-10-03 11:29:18 -0400 | [diff] [blame] | 708 | return 0; |
Toshiaki Makita | 8580e21 | 2014-06-10 20:59:23 +0900 | [diff] [blame] | 709 | } |
| 710 | |
Vlad Yasevich | 552406c | 2013-02-13 12:00:15 +0000 | [diff] [blame] | 711 | static inline int nbp_vlan_add(struct net_bridge_port *port, u16 vid, u16 flags) |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 712 | { |
| 713 | return -EOPNOTSUPP; |
| 714 | } |
| 715 | |
| 716 | static inline int nbp_vlan_delete(struct net_bridge_port *port, u16 vid) |
| 717 | { |
| 718 | return -EOPNOTSUPP; |
| 719 | } |
| 720 | |
| 721 | static inline void nbp_vlan_flush(struct net_bridge_port *port) |
| 722 | { |
| 723 | } |
| 724 | |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 725 | static inline struct net_port_vlans *br_get_vlan_info( |
| 726 | const struct net_bridge *br) |
| 727 | { |
| 728 | return NULL; |
| 729 | } |
| 730 | static inline struct net_port_vlans *nbp_get_vlan_info( |
| 731 | const struct net_bridge_port *p) |
| 732 | { |
| 733 | return NULL; |
| 734 | } |
| 735 | |
Vlad Yasevich | bc9a25d | 2013-02-13 12:00:19 +0000 | [diff] [blame] | 736 | static inline bool nbp_vlan_find(struct net_bridge_port *port, u16 vid) |
| 737 | { |
| 738 | return false; |
| 739 | } |
| 740 | |
Vlad Yasevich | 5be5a2d | 2014-10-03 11:29:18 -0400 | [diff] [blame] | 741 | static inline int nbp_vlan_init(struct net_bridge_port *port) |
| 742 | { |
| 743 | return 0; |
| 744 | } |
| 745 | |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 746 | static inline u16 br_vlan_get_tag(const struct sk_buff *skb, u16 *tag) |
Vlad Yasevich | a37b85c | 2013-02-13 12:00:10 +0000 | [diff] [blame] | 747 | { |
| 748 | return 0; |
| 749 | } |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 750 | static inline u16 br_get_pvid(const struct net_port_vlans *v) |
| 751 | { |
Vlad Yasevich | 3df6bf4 | 2014-10-03 11:29:17 -0400 | [diff] [blame] | 752 | return 0; |
Vlad Yasevich | 7885198 | 2013-02-13 12:00:14 +0000 | [diff] [blame] | 753 | } |
Vlad Yasevich | 2796d0c | 2014-05-16 09:59:20 -0400 | [diff] [blame] | 754 | |
Alexei Starovoitov | d4f0e09 | 2014-05-18 10:30:28 -0700 | [diff] [blame] | 755 | static inline int br_vlan_enabled(struct net_bridge *br) |
Vlad Yasevich | 2796d0c | 2014-05-16 09:59:20 -0400 | [diff] [blame] | 756 | { |
| 757 | return 0; |
| 758 | } |
Vlad Yasevich | 243a2e6 | 2013-02-13 12:00:09 +0000 | [diff] [blame] | 759 | #endif |
| 760 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | /* br_netfilter.c */ |
Pablo Neira Ayuso | 34666d4 | 2014-09-18 11:29:03 +0200 | [diff] [blame] | 762 | #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER) |
| 763 | int br_nf_core_init(void); |
| 764 | void br_nf_core_fini(void); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 765 | void br_netfilter_rtable_init(struct net_bridge *); |
Stephen Hemminger | c090971 | 2006-05-25 15:59:33 -0700 | [diff] [blame] | 766 | #else |
Pablo Neira Ayuso | 34666d4 | 2014-09-18 11:29:03 +0200 | [diff] [blame] | 767 | static inline int br_nf_core_init(void) { return 0; } |
| 768 | static inline void br_nf_core_fini(void) {} |
Simon Wunderlich | 4adf0af | 2008-07-30 16:27:55 -0700 | [diff] [blame] | 769 | #define br_netfilter_rtable_init(x) |
Stephen Hemminger | c090971 | 2006-05-25 15:59:33 -0700 | [diff] [blame] | 770 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | |
| 772 | /* br_stp.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 773 | void br_log_state(const struct net_bridge_port *p); |
Florian Fainelli | 775dd69 | 2014-09-30 16:13:19 -0700 | [diff] [blame] | 774 | void br_set_state(struct net_bridge_port *p, unsigned int state); |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 775 | struct net_bridge_port *br_get_port(struct net_bridge *br, u16 port_no); |
| 776 | void br_init_port(struct net_bridge_port *p); |
| 777 | void br_become_designated_port(struct net_bridge_port *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 779 | void __br_set_forward_delay(struct net_bridge *br, unsigned long t); |
| 780 | int br_set_forward_delay(struct net_bridge *br, unsigned long x); |
| 781 | int br_set_hello_time(struct net_bridge *br, unsigned long x); |
| 782 | int br_set_max_age(struct net_bridge *br, unsigned long x); |
stephen hemminger | 14f98f2 | 2011-04-04 14:03:33 +0000 | [diff] [blame] | 783 | |
| 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | /* br_stp_if.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 786 | void br_stp_enable_bridge(struct net_bridge *br); |
| 787 | void br_stp_disable_bridge(struct net_bridge *br); |
| 788 | void br_stp_set_enabled(struct net_bridge *br, unsigned long val); |
| 789 | void br_stp_enable_port(struct net_bridge_port *p); |
| 790 | void br_stp_disable_port(struct net_bridge_port *p); |
| 791 | bool br_stp_recalculate_bridge_id(struct net_bridge *br); |
| 792 | void br_stp_change_bridge_id(struct net_bridge *br, const unsigned char *a); |
| 793 | void br_stp_set_bridge_priority(struct net_bridge *br, u16 newprio); |
| 794 | int br_stp_set_port_priority(struct net_bridge_port *p, unsigned long newprio); |
| 795 | int br_stp_set_path_cost(struct net_bridge_port *p, unsigned long path_cost); |
| 796 | ssize_t br_show_bridge_id(char *buf, const struct bridge_id *id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
| 798 | /* br_stp_bpdu.c */ |
Patrick McHardy | 7c85fbf | 2008-07-05 21:25:56 -0700 | [diff] [blame] | 799 | struct stp_proto; |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 800 | void br_stp_rcv(const struct stp_proto *proto, struct sk_buff *skb, |
| 801 | struct net_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
| 803 | /* br_stp_timer.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 804 | void br_stp_timer_init(struct net_bridge *br); |
| 805 | void br_stp_port_timer_init(struct net_bridge_port *p); |
| 806 | unsigned long br_timer_value(const struct timer_list *timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
| 808 | /* br.c */ |
Igor Maravić | e6373c4 | 2011-12-12 02:58:25 +0000 | [diff] [blame] | 809 | #if IS_ENABLED(CONFIG_ATM_LANE) |
Michał Mirosław | da67829 | 2009-06-05 05:35:28 +0000 | [diff] [blame] | 810 | extern int (*br_fdb_test_addr_hook)(struct net_device *dev, unsigned char *addr); |
| 811 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 813 | /* br_netlink.c */ |
stephen hemminger | 149ddd8 | 2012-06-26 05:48:45 +0000 | [diff] [blame] | 814 | extern struct rtnl_link_ops br_link_ops; |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 815 | int br_netlink_init(void); |
| 816 | void br_netlink_fini(void); |
| 817 | void br_ifinfo_notify(int event, struct net_bridge_port *port); |
| 818 | int br_setlink(struct net_device *dev, struct nlmsghdr *nlmsg); |
| 819 | int br_dellink(struct net_device *dev, struct nlmsghdr *nlmsg); |
| 820 | int br_getlink(struct sk_buff *skb, u32 pid, u32 seq, struct net_device *dev, |
| 821 | u32 filter_mask); |
Stephen Hemminger | 11dc1f3 | 2006-05-25 16:00:12 -0700 | [diff] [blame] | 822 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | #ifdef CONFIG_SYSFS |
| 824 | /* br_sysfs_if.c */ |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 825 | extern const struct sysfs_ops brport_sysfs_ops; |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 826 | int br_sysfs_addif(struct net_bridge_port *p); |
| 827 | int br_sysfs_renameif(struct net_bridge_port *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | |
| 829 | /* br_sysfs_br.c */ |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 830 | int br_sysfs_addbr(struct net_device *dev); |
| 831 | void br_sysfs_delbr(struct net_device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
| 833 | #else |
| 834 | |
Lee Jones | 0cb2bbb | 2012-11-03 23:02:30 +0100 | [diff] [blame] | 835 | static inline int br_sysfs_addif(struct net_bridge_port *p) { return 0; } |
| 836 | static inline int br_sysfs_renameif(struct net_bridge_port *p) { return 0; } |
| 837 | static inline int br_sysfs_addbr(struct net_device *dev) { return 0; } |
| 838 | static inline void br_sysfs_delbr(struct net_device *dev) { return; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | #endif /* CONFIG_SYSFS */ |
| 840 | |
| 841 | #endif |