1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __BEN_VLAN_802_1Q_INC__
3 #define __BEN_VLAN_802_1Q_INC__
4
5 #include <linux/if_vlan.h>
6 #include <linux/u64_stats_sync.h>
7 #include <linux/list.h>
8
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
16 enum vlan_protos {
17 VLAN_PROTO_8021Q = 0,
18 VLAN_PROTO_8021AD,
19 VLAN_PROTO_NUM,
20 };
21
22 struct vlan_group {
23 unsigned int nr_vlan_devs;
24 struct hlist_node hlist; /* linked list */
25 struct net_device **vlan_devices_arrays[VLAN_PROTO_NUM]
26 [VLAN_GROUP_ARRAY_SPLIT_PARTS];
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 bool auto_vid0;
37 struct rcu_head rcu;
38 };
39
vlan_proto_idx(__be16 proto)40 static inline int vlan_proto_idx(__be16 proto)
41 {
42 switch (proto) {
43 case htons(ETH_P_8021Q):
44 return VLAN_PROTO_8021Q;
45 case htons(ETH_P_8021AD):
46 return VLAN_PROTO_8021AD;
47 default:
48 WARN(1, "invalid VLAN protocol: 0x%04x\n", ntohs(proto));
49 return -EINVAL;
50 }
51 }
52
__vlan_group_get_device(struct vlan_group * vg,unsigned int pidx,u16 vlan_id)53 static inline struct net_device *__vlan_group_get_device(struct vlan_group *vg,
54 unsigned int pidx,
55 u16 vlan_id)
56 {
57 struct net_device **array;
58
59 array = vg->vlan_devices_arrays[pidx]
60 [vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
61
62 /* paired with smp_wmb() in vlan_group_prealloc_vid() */
63 smp_rmb();
64
65 return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
66 }
67
vlan_group_get_device(struct vlan_group * vg,__be16 vlan_proto,u16 vlan_id)68 static inline struct net_device *vlan_group_get_device(struct vlan_group *vg,
69 __be16 vlan_proto,
70 u16 vlan_id)
71 {
72 int pidx = vlan_proto_idx(vlan_proto);
73
74 if (pidx < 0)
75 return NULL;
76
77 return __vlan_group_get_device(vg, pidx, vlan_id);
78 }
79
vlan_group_set_device(struct vlan_group * vg,__be16 vlan_proto,u16 vlan_id,struct net_device * dev)80 static inline void vlan_group_set_device(struct vlan_group *vg,
81 __be16 vlan_proto, u16 vlan_id,
82 struct net_device *dev)
83 {
84 int pidx = vlan_proto_idx(vlan_proto);
85 struct net_device **array;
86
87 if (!vg || pidx < 0)
88 return;
89 array = vg->vlan_devices_arrays[pidx]
90 [vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
91 array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
92 }
93
94 /* Must be invoked with rcu_read_lock or with RTNL. */
vlan_find_dev(struct net_device * real_dev,__be16 vlan_proto,u16 vlan_id)95 static inline struct net_device *vlan_find_dev(struct net_device *real_dev,
96 __be16 vlan_proto, u16 vlan_id)
97 {
98 struct vlan_info *vlan_info = rcu_dereference_rtnl(real_dev->vlan_info);
99
100 if (vlan_info)
101 return vlan_group_get_device(&vlan_info->grp,
102 vlan_proto, vlan_id);
103
104 return NULL;
105 }
106
vlan_tnl_features(struct net_device * real_dev)107 static inline netdev_features_t vlan_tnl_features(struct net_device *real_dev)
108 {
109 netdev_features_t ret;
110
111 ret = real_dev->hw_enc_features &
112 (NETIF_F_CSUM_MASK | NETIF_F_GSO_SOFTWARE |
113 NETIF_F_GSO_ENCAP_ALL);
114
115 if ((ret & NETIF_F_GSO_ENCAP_ALL) && (ret & NETIF_F_CSUM_MASK))
116 return (ret & ~NETIF_F_CSUM_MASK) | NETIF_F_HW_CSUM;
117 return 0;
118 }
119
120 #define vlan_group_for_each_dev(grp, i, dev) \
121 for ((i) = 0; i < VLAN_PROTO_NUM * VLAN_N_VID; i++) \
122 if (((dev) = __vlan_group_get_device((grp), (i) / VLAN_N_VID, \
123 (i) % VLAN_N_VID)))
124
125 int vlan_filter_push_vids(struct vlan_info *vlan_info, __be16 proto);
126 void vlan_filter_drop_vids(struct vlan_info *vlan_info, __be16 proto);
127
128 /* found in vlan_dev.c */
129 void vlan_dev_set_ingress_priority(const struct net_device *dev,
130 u32 skb_prio, u16 vlan_prio);
131 int vlan_dev_set_egress_priority(const struct net_device *dev,
132 u32 skb_prio, u16 vlan_prio);
133 void vlan_dev_free_egress_priority(const struct net_device *dev);
134 int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
135 void vlan_dev_get_realdev_name(const struct net_device *dev, char *result,
136 size_t size);
137
138 int vlan_check_real_dev(struct net_device *real_dev,
139 __be16 protocol, u16 vlan_id,
140 struct netlink_ext_ack *extack);
141 void vlan_setup(struct net_device *dev);
142 int register_vlan_dev(struct net_device *dev, struct netlink_ext_ack *extack);
143 void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
144 bool vlan_dev_inherit_address(struct net_device *dev,
145 struct net_device *real_dev);
146
vlan_get_ingress_priority(struct net_device * dev,u16 vlan_tci)147 static inline u32 vlan_get_ingress_priority(struct net_device *dev,
148 u16 vlan_tci)
149 {
150 struct vlan_dev_priv *vip = vlan_dev_priv(dev);
151
152 return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
153 }
154
155 #ifdef CONFIG_VLAN_8021Q_GVRP
156 int vlan_gvrp_request_join(const struct net_device *dev);
157 void vlan_gvrp_request_leave(const struct net_device *dev);
158 int vlan_gvrp_init_applicant(struct net_device *dev);
159 void vlan_gvrp_uninit_applicant(struct net_device *dev);
160 int vlan_gvrp_init(void);
161 void vlan_gvrp_uninit(void);
162 #else
vlan_gvrp_request_join(const struct net_device * dev)163 static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; }
vlan_gvrp_request_leave(const struct net_device * dev)164 static inline void vlan_gvrp_request_leave(const struct net_device *dev) {}
vlan_gvrp_init_applicant(struct net_device * dev)165 static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; }
vlan_gvrp_uninit_applicant(struct net_device * dev)166 static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {}
vlan_gvrp_init(void)167 static inline int vlan_gvrp_init(void) { return 0; }
vlan_gvrp_uninit(void)168 static inline void vlan_gvrp_uninit(void) {}
169 #endif
170
171 #ifdef CONFIG_VLAN_8021Q_MVRP
172 int vlan_mvrp_request_join(const struct net_device *dev);
173 void vlan_mvrp_request_leave(const struct net_device *dev);
174 int vlan_mvrp_init_applicant(struct net_device *dev);
175 void vlan_mvrp_uninit_applicant(struct net_device *dev);
176 int vlan_mvrp_init(void);
177 void vlan_mvrp_uninit(void);
178 #else
vlan_mvrp_request_join(const struct net_device * dev)179 static inline int vlan_mvrp_request_join(const struct net_device *dev) { return 0; }
vlan_mvrp_request_leave(const struct net_device * dev)180 static inline void vlan_mvrp_request_leave(const struct net_device *dev) {}
vlan_mvrp_init_applicant(struct net_device * dev)181 static inline int vlan_mvrp_init_applicant(struct net_device *dev) { return 0; }
vlan_mvrp_uninit_applicant(struct net_device * dev)182 static inline void vlan_mvrp_uninit_applicant(struct net_device *dev) {}
vlan_mvrp_init(void)183 static inline int vlan_mvrp_init(void) { return 0; }
vlan_mvrp_uninit(void)184 static inline void vlan_mvrp_uninit(void) {}
185 #endif
186
187 extern const char vlan_fullname[];
188 extern const char vlan_version[];
189 int vlan_netlink_init(void);
190 void vlan_netlink_fini(void);
191
192 extern struct rtnl_link_ops vlan_link_ops;
193
194 extern unsigned int vlan_net_id;
195
196 struct proc_dir_entry;
197
198 struct vlan_net {
199 /* /proc/net/vlan */
200 struct proc_dir_entry *proc_vlan_dir;
201 /* /proc/net/vlan/config */
202 struct proc_dir_entry *proc_vlan_conf;
203 /* Determines interface naming scheme. */
204 unsigned short name_type;
205 };
206
207 #endif /* !(__BEN_VLAN_802_1Q_INC__) */
208