1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Linux ethernet bridge 4 * 5 * Authors: 6 * Lennert Buytenhek <[email protected]> 7 */ 8 #ifndef _LINUX_IF_BRIDGE_H 9 #define _LINUX_IF_BRIDGE_H 10 11 12 #include <linux/netdevice.h> 13 #include <uapi/linux/if_bridge.h> 14 #include <linux/bitops.h> 15 16 struct br_ip { 17 union { 18 __be32 ip4; 19 #if IS_ENABLED(CONFIG_IPV6) 20 struct in6_addr ip6; 21 #endif 22 } src; 23 union { 24 __be32 ip4; 25 #if IS_ENABLED(CONFIG_IPV6) 26 struct in6_addr ip6; 27 #endif 28 unsigned char mac_addr[ETH_ALEN]; 29 } dst; 30 __be16 proto; 31 __u16 vid; 32 }; 33 34 struct br_ip_list { 35 struct list_head list; 36 struct br_ip addr; 37 }; 38 39 #define BR_HAIRPIN_MODE BIT(0) 40 #define BR_BPDU_GUARD BIT(1) 41 #define BR_ROOT_BLOCK BIT(2) 42 #define BR_MULTICAST_FAST_LEAVE BIT(3) 43 #define BR_ADMIN_COST BIT(4) 44 #define BR_LEARNING BIT(5) 45 #define BR_FLOOD BIT(6) 46 #define BR_AUTO_MASK (BR_FLOOD | BR_LEARNING) 47 #define BR_PROMISC BIT(7) 48 #define BR_PROXYARP BIT(8) 49 #define BR_LEARNING_SYNC BIT(9) 50 #define BR_PROXYARP_WIFI BIT(10) 51 #define BR_MCAST_FLOOD BIT(11) 52 #define BR_MULTICAST_TO_UNICAST BIT(12) 53 #define BR_VLAN_TUNNEL BIT(13) 54 #define BR_BCAST_FLOOD BIT(14) 55 #define BR_NEIGH_SUPPRESS BIT(15) 56 #define BR_ISOLATED BIT(16) 57 #define BR_MRP_AWARE BIT(17) 58 #define BR_MRP_LOST_CONT BIT(18) 59 #define BR_MRP_LOST_IN_CONT BIT(19) 60 #define BR_TX_FWD_OFFLOAD BIT(20) 61 62 #define BR_DEFAULT_AGEING_TIME (300 * HZ) 63 64 extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __user *)); 65 66 #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_BRIDGE_IGMP_SNOOPING) 67 int br_multicast_list_adjacent(struct net_device *dev, 68 struct list_head *br_ip_list); 69 bool br_multicast_has_querier_anywhere(struct net_device *dev, int proto); 70 bool br_multicast_has_querier_adjacent(struct net_device *dev, int proto); 71 bool br_multicast_has_router_adjacent(struct net_device *dev, int proto); 72 bool br_multicast_enabled(const struct net_device *dev); 73 bool br_multicast_router(const struct net_device *dev); 74 #else 75 static inline int br_multicast_list_adjacent(struct net_device *dev, 76 struct list_head *br_ip_list) 77 { 78 return 0; 79 } 80 static inline bool br_multicast_has_querier_anywhere(struct net_device *dev, 81 int proto) 82 { 83 return false; 84 } 85 static inline bool br_multicast_has_querier_adjacent(struct net_device *dev, 86 int proto) 87 { 88 return false; 89 } 90 91 static inline bool br_multicast_has_router_adjacent(struct net_device *dev, 92 int proto) 93 { 94 return true; 95 } 96 97 static inline bool br_multicast_enabled(const struct net_device *dev) 98 { 99 return false; 100 } 101 static inline bool br_multicast_router(const struct net_device *dev) 102 { 103 return false; 104 } 105 #endif 106 107 #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_BRIDGE_VLAN_FILTERING) 108 bool br_vlan_enabled(const struct net_device *dev); 109 int br_vlan_get_pvid(const struct net_device *dev, u16 *p_pvid); 110 int br_vlan_get_pvid_rcu(const struct net_device *dev, u16 *p_pvid); 111 int br_vlan_get_proto(const struct net_device *dev, u16 *p_proto); 112 int br_vlan_get_info(const struct net_device *dev, u16 vid, 113 struct bridge_vlan_info *p_vinfo); 114 int br_vlan_get_info_rcu(const struct net_device *dev, u16 vid, 115 struct bridge_vlan_info *p_vinfo); 116 #else 117 static inline bool br_vlan_enabled(const struct net_device *dev) 118 { 119 return false; 120 } 121 122 static inline int br_vlan_get_pvid(const struct net_device *dev, u16 *p_pvid) 123 { 124 return -EINVAL; 125 } 126 127 static inline int br_vlan_get_proto(const struct net_device *dev, u16 *p_proto) 128 { 129 return -EINVAL; 130 } 131 132 static inline int br_vlan_get_pvid_rcu(const struct net_device *dev, u16 *p_pvid) 133 { 134 return -EINVAL; 135 } 136 137 static inline int br_vlan_get_info(const struct net_device *dev, u16 vid, 138 struct bridge_vlan_info *p_vinfo) 139 { 140 return -EINVAL; 141 } 142 143 static inline int br_vlan_get_info_rcu(const struct net_device *dev, u16 vid, 144 struct bridge_vlan_info *p_vinfo) 145 { 146 return -EINVAL; 147 } 148 #endif 149 150 #if IS_ENABLED(CONFIG_BRIDGE) 151 struct net_device *br_fdb_find_port(const struct net_device *br_dev, 152 const unsigned char *addr, 153 __u16 vid); 154 void br_fdb_clear_offload(const struct net_device *dev, u16 vid); 155 bool br_port_flag_is_set(const struct net_device *dev, unsigned long flag); 156 u8 br_port_get_stp_state(const struct net_device *dev); 157 clock_t br_get_ageing_time(const struct net_device *br_dev); 158 #else 159 static inline struct net_device * 160 br_fdb_find_port(const struct net_device *br_dev, 161 const unsigned char *addr, 162 __u16 vid) 163 { 164 return NULL; 165 } 166 167 static inline void br_fdb_clear_offload(const struct net_device *dev, u16 vid) 168 { 169 } 170 171 static inline bool 172 br_port_flag_is_set(const struct net_device *dev, unsigned long flag) 173 { 174 return false; 175 } 176 177 static inline u8 br_port_get_stp_state(const struct net_device *dev) 178 { 179 return BR_STATE_DISABLED; 180 } 181 182 static inline clock_t br_get_ageing_time(const struct net_device *br_dev) 183 { 184 return 0; 185 } 186 #endif 187 188 #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_NET_SWITCHDEV) 189 190 int switchdev_bridge_port_offload(struct net_device *brport_dev, 191 struct net_device *dev, const void *ctx, 192 struct notifier_block *atomic_nb, 193 struct notifier_block *blocking_nb, 194 bool tx_fwd_offload, 195 struct netlink_ext_ack *extack); 196 void switchdev_bridge_port_unoffload(struct net_device *brport_dev, 197 const void *ctx, 198 struct notifier_block *atomic_nb, 199 struct notifier_block *blocking_nb); 200 201 #else 202 203 static inline int 204 switchdev_bridge_port_offload(struct net_device *brport_dev, 205 struct net_device *dev, const void *ctx, 206 struct notifier_block *atomic_nb, 207 struct notifier_block *blocking_nb, 208 bool tx_fwd_offload, 209 struct netlink_ext_ack *extack) 210 { 211 return -EINVAL; 212 } 213 214 static inline void 215 switchdev_bridge_port_unoffload(struct net_device *brport_dev, 216 const void *ctx, 217 struct notifier_block *atomic_nb, 218 struct notifier_block *blocking_nb) 219 { 220 } 221 #endif 222 223 #endif 224