1 /* 2 * Linux ethernet bridge 3 * 4 * Authors: 5 * Lennert Buytenhek <[email protected]> 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 #ifndef _LINUX_IF_BRIDGE_H 13 #define _LINUX_IF_BRIDGE_H 14 15 16 #include <linux/netdevice.h> 17 #include <uapi/linux/if_bridge.h> 18 #include <linux/bitops.h> 19 20 struct br_ip { 21 union { 22 __be32 ip4; 23 #if IS_ENABLED(CONFIG_IPV6) 24 struct in6_addr ip6; 25 #endif 26 } u; 27 __be16 proto; 28 __u16 vid; 29 }; 30 31 struct br_ip_list { 32 struct list_head list; 33 struct br_ip addr; 34 }; 35 36 #define BR_HAIRPIN_MODE BIT(0) 37 #define BR_BPDU_GUARD BIT(1) 38 #define BR_ROOT_BLOCK BIT(2) 39 #define BR_MULTICAST_FAST_LEAVE BIT(3) 40 #define BR_ADMIN_COST BIT(4) 41 #define BR_LEARNING BIT(5) 42 #define BR_FLOOD BIT(6) 43 #define BR_AUTO_MASK (BR_FLOOD | BR_LEARNING) 44 #define BR_PROMISC BIT(7) 45 #define BR_PROXYARP BIT(8) 46 #define BR_LEARNING_SYNC BIT(9) 47 #define BR_PROXYARP_WIFI BIT(10) 48 #define BR_MCAST_FLOOD BIT(11) 49 #define BR_MULTICAST_TO_UNICAST BIT(12) 50 #define BR_VLAN_TUNNEL BIT(13) 51 #define BR_BCAST_FLOOD BIT(14) 52 #define BR_NEIGH_SUPPRESS BIT(15) 53 #define BR_ISOLATED BIT(16) 54 55 #define BR_DEFAULT_AGEING_TIME (300 * HZ) 56 57 extern void brioctl_set(int (*ioctl_hook)(struct net *, unsigned int, void __user *)); 58 59 #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_BRIDGE_IGMP_SNOOPING) 60 int br_multicast_list_adjacent(struct net_device *dev, 61 struct list_head *br_ip_list); 62 bool br_multicast_has_querier_anywhere(struct net_device *dev, int proto); 63 bool br_multicast_has_querier_adjacent(struct net_device *dev, int proto); 64 bool br_multicast_enabled(const struct net_device *dev); 65 bool br_multicast_router(const struct net_device *dev); 66 #else 67 static inline int br_multicast_list_adjacent(struct net_device *dev, 68 struct list_head *br_ip_list) 69 { 70 return 0; 71 } 72 static inline bool br_multicast_has_querier_anywhere(struct net_device *dev, 73 int proto) 74 { 75 return false; 76 } 77 static inline bool br_multicast_has_querier_adjacent(struct net_device *dev, 78 int proto) 79 { 80 return false; 81 } 82 static inline bool br_multicast_enabled(const struct net_device *dev) 83 { 84 return false; 85 } 86 static inline bool br_multicast_router(const struct net_device *dev) 87 { 88 return false; 89 } 90 #endif 91 92 #if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_BRIDGE_VLAN_FILTERING) 93 bool br_vlan_enabled(const struct net_device *dev); 94 int br_vlan_get_pvid(const struct net_device *dev, u16 *p_pvid); 95 int br_vlan_get_info(const struct net_device *dev, u16 vid, 96 struct bridge_vlan_info *p_vinfo); 97 #else 98 static inline bool br_vlan_enabled(const struct net_device *dev) 99 { 100 return false; 101 } 102 103 static inline int br_vlan_get_pvid(const struct net_device *dev, u16 *p_pvid) 104 { 105 return -EINVAL; 106 } 107 108 static inline int br_vlan_get_info(const struct net_device *dev, u16 vid, 109 struct bridge_vlan_info *p_vinfo) 110 { 111 return -EINVAL; 112 } 113 #endif 114 115 #if IS_ENABLED(CONFIG_BRIDGE) 116 struct net_device *br_fdb_find_port(const struct net_device *br_dev, 117 const unsigned char *addr, 118 __u16 vid); 119 void br_fdb_clear_offload(const struct net_device *dev, u16 vid); 120 bool br_port_flag_is_set(const struct net_device *dev, unsigned long flag); 121 #else 122 static inline struct net_device * 123 br_fdb_find_port(const struct net_device *br_dev, 124 const unsigned char *addr, 125 __u16 vid) 126 { 127 return NULL; 128 } 129 130 static inline void br_fdb_clear_offload(const struct net_device *dev, u16 vid) 131 { 132 } 133 134 static inline bool 135 br_port_flag_is_set(const struct net_device *dev, unsigned long flag) 136 { 137 return false; 138 } 139 #endif 140 141 #endif 142