Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __BEN_VLAN_802_1Q_INC__ |
| 3 | #define __BEN_VLAN_802_1Q_INC__ |
| 4 | |
| 5 | #include <linux/if_vlan.h> |
Eric Dumazet | 9618e2f | 2010-06-24 00:55:06 +0000 | [diff] [blame] | 6 | #include <linux/u64_stats_sync.h> |
Jiri Pirko | 5b9ea6e | 2011-12-08 04:11:18 +0000 | [diff] [blame] | 7 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
Jiri Pirko | 5b9ea6e | 2011-12-08 04:11:18 +0000 | [diff] [blame] | 9 | /* if this changes, algorithm will have to be reworked because this |
| 10 | * depends on completely exhausting the VLAN identifier space. Thus |
| 11 | * it gives constant time look-up, but in many cases it wastes memory. |
| 12 | */ |
| 13 | #define VLAN_GROUP_ARRAY_SPLIT_PARTS 8 |
| 14 | #define VLAN_GROUP_ARRAY_PART_LEN (VLAN_N_VID/VLAN_GROUP_ARRAY_SPLIT_PARTS) |
| 15 | |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 16 | enum vlan_protos { |
| 17 | VLAN_PROTO_8021Q = 0, |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 18 | VLAN_PROTO_8021AD, |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 19 | VLAN_PROTO_NUM, |
| 20 | }; |
| 21 | |
Jiri Pirko | 5b9ea6e | 2011-12-08 04:11:18 +0000 | [diff] [blame] | 22 | struct vlan_group { |
| 23 | unsigned int nr_vlan_devs; |
| 24 | struct hlist_node hlist; /* linked list */ |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 25 | struct net_device **vlan_devices_arrays[VLAN_PROTO_NUM] |
| 26 | [VLAN_GROUP_ARRAY_SPLIT_PARTS]; |
Jiri Pirko | 5b9ea6e | 2011-12-08 04:11:18 +0000 | [diff] [blame] | 27 | }; |
| 28 | |
| 29 | struct vlan_info { |
| 30 | struct net_device *real_dev; /* The ethernet(like) device |
| 31 | * the vlan is attached to. |
| 32 | */ |
| 33 | struct vlan_group grp; |
| 34 | struct list_head vid_list; |
| 35 | unsigned int nr_vids; |
| 36 | struct rcu_head rcu; |
| 37 | }; |
| 38 | |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 39 | static inline unsigned int vlan_proto_idx(__be16 proto) |
| 40 | { |
| 41 | switch (proto) { |
Joe Perches | f0e7882 | 2014-03-12 10:04:15 -0700 | [diff] [blame] | 42 | case htons(ETH_P_8021Q): |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 43 | return VLAN_PROTO_8021Q; |
Joe Perches | f0e7882 | 2014-03-12 10:04:15 -0700 | [diff] [blame] | 44 | case htons(ETH_P_8021AD): |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 45 | return VLAN_PROTO_8021AD; |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 46 | default: |
| 47 | BUG(); |
Patrick McHardy | 8da63a6 | 2013-04-21 00:09:32 +0000 | [diff] [blame] | 48 | return 0; |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 49 | } |
| 50 | } |
| 51 | |
| 52 | static inline struct net_device *__vlan_group_get_device(struct vlan_group *vg, |
| 53 | unsigned int pidx, |
| 54 | u16 vlan_id) |
Jiri Pirko | 536d1d4 | 2011-07-20 04:54:49 +0000 | [diff] [blame] | 55 | { |
| 56 | struct net_device **array; |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 57 | |
| 58 | array = vg->vlan_devices_arrays[pidx] |
| 59 | [vlan_id / VLAN_GROUP_ARRAY_PART_LEN]; |
Jiri Pirko | 536d1d4 | 2011-07-20 04:54:49 +0000 | [diff] [blame] | 60 | return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL; |
| 61 | } |
| 62 | |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 63 | static inline struct net_device *vlan_group_get_device(struct vlan_group *vg, |
| 64 | __be16 vlan_proto, |
| 65 | u16 vlan_id) |
| 66 | { |
| 67 | return __vlan_group_get_device(vg, vlan_proto_idx(vlan_proto), vlan_id); |
| 68 | } |
| 69 | |
Jiri Pirko | 536d1d4 | 2011-07-20 04:54:49 +0000 | [diff] [blame] | 70 | static inline void vlan_group_set_device(struct vlan_group *vg, |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 71 | __be16 vlan_proto, u16 vlan_id, |
Jiri Pirko | 536d1d4 | 2011-07-20 04:54:49 +0000 | [diff] [blame] | 72 | struct net_device *dev) |
| 73 | { |
| 74 | struct net_device **array; |
| 75 | if (!vg) |
| 76 | return; |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 77 | array = vg->vlan_devices_arrays[vlan_proto_idx(vlan_proto)] |
| 78 | [vlan_id / VLAN_GROUP_ARRAY_PART_LEN]; |
Jiri Pirko | 536d1d4 | 2011-07-20 04:54:49 +0000 | [diff] [blame] | 79 | array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev; |
| 80 | } |
| 81 | |
David Lamparter | 69ecca8 | 2011-07-17 08:53:12 +0000 | [diff] [blame] | 82 | /* Must be invoked with rcu_read_lock or with RTNL. */ |
| 83 | static inline struct net_device *vlan_find_dev(struct net_device *real_dev, |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 84 | __be16 vlan_proto, u16 vlan_id) |
David Lamparter | 69ecca8 | 2011-07-17 08:53:12 +0000 | [diff] [blame] | 85 | { |
Jiri Pirko | 5b9ea6e | 2011-12-08 04:11:18 +0000 | [diff] [blame] | 86 | struct vlan_info *vlan_info = rcu_dereference_rtnl(real_dev->vlan_info); |
David Lamparter | 69ecca8 | 2011-07-17 08:53:12 +0000 | [diff] [blame] | 87 | |
Jiri Pirko | 5b9ea6e | 2011-12-08 04:11:18 +0000 | [diff] [blame] | 88 | if (vlan_info) |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 89 | return vlan_group_get_device(&vlan_info->grp, |
| 90 | vlan_proto, vlan_id); |
David Lamparter | 69ecca8 | 2011-07-17 08:53:12 +0000 | [diff] [blame] | 91 | |
| 92 | return NULL; |
| 93 | } |
| 94 | |
Davide Caratti | 7dad993 | 2018-11-07 11:28:18 +0100 | [diff] [blame] | 95 | static inline netdev_features_t vlan_tnl_features(struct net_device *real_dev) |
| 96 | { |
| 97 | netdev_features_t ret; |
| 98 | |
| 99 | ret = real_dev->hw_enc_features & |
| 100 | (NETIF_F_CSUM_MASK | NETIF_F_ALL_TSO | NETIF_F_GSO_ENCAP_ALL); |
| 101 | |
| 102 | if ((ret & NETIF_F_GSO_ENCAP_ALL) && (ret & NETIF_F_CSUM_MASK)) |
| 103 | return (ret & ~NETIF_F_CSUM_MASK) | NETIF_F_HW_CSUM; |
| 104 | return 0; |
| 105 | } |
| 106 | |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 107 | #define vlan_group_for_each_dev(grp, i, dev) \ |
| 108 | for ((i) = 0; i < VLAN_PROTO_NUM * VLAN_N_VID; i++) \ |
| 109 | if (((dev) = __vlan_group_get_device((grp), (i) / VLAN_N_VID, \ |
| 110 | (i) % VLAN_N_VID))) |
| 111 | |
Gal Pressman | 9daae9b | 2018-03-28 17:46:54 +0300 | [diff] [blame] | 112 | int vlan_filter_push_vids(struct vlan_info *vlan_info, __be16 proto); |
| 113 | void vlan_filter_drop_vids(struct vlan_info *vlan_info, __be16 proto); |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /* found in vlan_dev.c */ |
Patrick McHardy | c17d887 | 2007-06-13 12:05:22 -0700 | [diff] [blame] | 116 | void vlan_dev_set_ingress_priority(const struct net_device *dev, |
Patrick McHardy | 9bb8582 | 2008-07-08 03:24:44 -0700 | [diff] [blame] | 117 | u32 skb_prio, u16 vlan_prio); |
Patrick McHardy | c17d887 | 2007-06-13 12:05:22 -0700 | [diff] [blame] | 118 | int vlan_dev_set_egress_priority(const struct net_device *dev, |
Patrick McHardy | 9bb8582 | 2008-07-08 03:24:44 -0700 | [diff] [blame] | 119 | u32 skb_prio, u16 vlan_prio); |
Patrick McHardy | b3ce032 | 2008-07-05 21:26:27 -0700 | [diff] [blame] | 120 | int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask); |
Patrick McHardy | c17d887 | 2007-06-13 12:05:22 -0700 | [diff] [blame] | 121 | void vlan_dev_get_realdev_name(const struct net_device *dev, char *result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 123 | int vlan_check_real_dev(struct net_device *real_dev, |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 124 | __be16 protocol, u16 vlan_id, |
| 125 | struct netlink_ext_ack *extack); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 126 | void vlan_setup(struct net_device *dev); |
David Ahern | 42ab19e | 2017-10-04 17:48:47 -0700 | [diff] [blame] | 127 | int register_vlan_dev(struct net_device *dev, struct netlink_ext_ack *extack); |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 128 | void unregister_vlan_dev(struct net_device *dev, struct list_head *head); |
Eric Dumazet | 9bbd917 | 2020-01-07 01:42:24 -0800 | [diff] [blame] | 129 | void vlan_dev_uninit(struct net_device *dev); |
Mike Manning | 308453a | 2016-05-27 17:45:07 +0100 | [diff] [blame] | 130 | bool vlan_dev_inherit_address(struct net_device *dev, |
| 131 | struct net_device *real_dev); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 132 | |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 133 | static inline u32 vlan_get_ingress_priority(struct net_device *dev, |
Patrick McHardy | 9bb8582 | 2008-07-08 03:24:44 -0700 | [diff] [blame] | 134 | u16 vlan_tci) |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 135 | { |
Jiri Pirko | 7da82c0 | 2011-12-08 04:11:15 +0000 | [diff] [blame] | 136 | struct vlan_dev_priv *vip = vlan_dev_priv(dev); |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 137 | |
Eric Dumazet | 05423b2 | 2009-10-26 18:40:35 -0700 | [diff] [blame] | 138 | return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7]; |
Patrick McHardy | 7750f40 | 2008-07-08 03:23:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Patrick McHardy | 70c03b4 | 2008-07-05 21:26:57 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_VLAN_8021Q_GVRP |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 142 | int vlan_gvrp_request_join(const struct net_device *dev); |
| 143 | void vlan_gvrp_request_leave(const struct net_device *dev); |
| 144 | int vlan_gvrp_init_applicant(struct net_device *dev); |
| 145 | void vlan_gvrp_uninit_applicant(struct net_device *dev); |
| 146 | int vlan_gvrp_init(void); |
| 147 | void vlan_gvrp_uninit(void); |
Patrick McHardy | 70c03b4 | 2008-07-05 21:26:57 -0700 | [diff] [blame] | 148 | #else |
| 149 | static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; } |
| 150 | static inline void vlan_gvrp_request_leave(const struct net_device *dev) {} |
| 151 | static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; } |
| 152 | static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {} |
| 153 | static inline int vlan_gvrp_init(void) { return 0; } |
| 154 | static inline void vlan_gvrp_uninit(void) {} |
| 155 | #endif |
| 156 | |
David Ward | 86fbe9b | 2013-02-08 17:17:07 +0000 | [diff] [blame] | 157 | #ifdef CONFIG_VLAN_8021Q_MVRP |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 158 | int vlan_mvrp_request_join(const struct net_device *dev); |
| 159 | void vlan_mvrp_request_leave(const struct net_device *dev); |
| 160 | int vlan_mvrp_init_applicant(struct net_device *dev); |
| 161 | void vlan_mvrp_uninit_applicant(struct net_device *dev); |
| 162 | int vlan_mvrp_init(void); |
| 163 | void vlan_mvrp_uninit(void); |
David Ward | 86fbe9b | 2013-02-08 17:17:07 +0000 | [diff] [blame] | 164 | #else |
| 165 | static inline int vlan_mvrp_request_join(const struct net_device *dev) { return 0; } |
| 166 | static inline void vlan_mvrp_request_leave(const struct net_device *dev) {} |
| 167 | static inline int vlan_mvrp_init_applicant(struct net_device *dev) { return 0; } |
| 168 | static inline void vlan_mvrp_uninit_applicant(struct net_device *dev) {} |
| 169 | static inline int vlan_mvrp_init(void) { return 0; } |
| 170 | static inline void vlan_mvrp_uninit(void) {} |
| 171 | #endif |
| 172 | |
Stephen Hemminger | b3020061 | 2008-10-28 22:12:36 -0700 | [diff] [blame] | 173 | extern const char vlan_fullname[]; |
| 174 | extern const char vlan_version[]; |
Joe Perches | 348662a | 2013-10-18 13:48:22 -0700 | [diff] [blame] | 175 | int vlan_netlink_init(void); |
| 176 | void vlan_netlink_fini(void); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 177 | |
| 178 | extern struct rtnl_link_ops vlan_link_ops; |
| 179 | |
Alexey Dobriyan | c7d03a0 | 2016-11-17 04:58:21 +0300 | [diff] [blame] | 180 | extern unsigned int vlan_net_id; |
Pavel Emelyanov | d9ed0f0 | 2008-04-16 00:49:09 -0700 | [diff] [blame] | 181 | |
Pavel Emelyanov | a59a8c1 | 2008-04-16 00:51:51 -0700 | [diff] [blame] | 182 | struct proc_dir_entry; |
| 183 | |
Pavel Emelyanov | d9ed0f0 | 2008-04-16 00:49:09 -0700 | [diff] [blame] | 184 | struct vlan_net { |
Pavel Emelyanov | a59a8c1 | 2008-04-16 00:51:51 -0700 | [diff] [blame] | 185 | /* /proc/net/vlan */ |
| 186 | struct proc_dir_entry *proc_vlan_dir; |
| 187 | /* /proc/net/vlan/config */ |
| 188 | struct proc_dir_entry *proc_vlan_conf; |
Pavel Emelyanov | 7a17a2f | 2008-04-16 00:54:39 -0700 | [diff] [blame] | 189 | /* Determines interface naming scheme. */ |
| 190 | unsigned short name_type; |
Pavel Emelyanov | d9ed0f0 | 2008-04-16 00:49:09 -0700 | [diff] [blame] | 191 | }; |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | #endif /* !(__BEN_VLAN_802_1Q_INC__) */ |