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