]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - net/8021q/vlan.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.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
1fd9b1fc
PM
39static inline unsigned int vlan_proto_idx(__be16 proto)
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
PM
46 default:
47 BUG();
8da63a65 48 return 0;
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];
536d1d4a
JP
60 return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
61}
62
1fd9b1fc
PM
63static 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
536d1d4a 70static inline void vlan_group_set_device(struct vlan_group *vg,
1fd9b1fc 71 __be16 vlan_proto, u16 vlan_id,
536d1d4a
JP
72 struct net_device *dev)
73{
74 struct net_device **array;
75 if (!vg)
76 return;
1fd9b1fc
PM
77 array = vg->vlan_devices_arrays[vlan_proto_idx(vlan_proto)]
78 [vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
536d1d4a
JP
79 array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
80}
81
69ecca86
DL
82/* Must be invoked with rcu_read_lock or with RTNL. */
83static inline struct net_device *vlan_find_dev(struct net_device *real_dev,
1fd9b1fc 84 __be16 vlan_proto, u16 vlan_id)
69ecca86 85{
5b9ea6e0 86 struct vlan_info *vlan_info = rcu_dereference_rtnl(real_dev->vlan_info);
69ecca86 87
5b9ea6e0 88 if (vlan_info)
1fd9b1fc
PM
89 return vlan_group_get_device(&vlan_info->grp,
90 vlan_proto, vlan_id);
69ecca86
DL
91
92 return NULL;
93}
94
1fd9b1fc
PM
95#define vlan_group_for_each_dev(grp, i, dev) \
96 for ((i) = 0; i < VLAN_PROTO_NUM * VLAN_N_VID; i++) \
97 if (((dev) = __vlan_group_get_device((grp), (i) / VLAN_N_VID, \
98 (i) % VLAN_N_VID)))
99
1da177e4 100/* found in vlan_dev.c */
c17d8874 101void vlan_dev_set_ingress_priority(const struct net_device *dev,
9bb8582e 102 u32 skb_prio, u16 vlan_prio);
c17d8874 103int vlan_dev_set_egress_priority(const struct net_device *dev,
9bb8582e 104 u32 skb_prio, u16 vlan_prio);
b3ce0325 105int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
c17d8874 106void vlan_dev_get_realdev_name(const struct net_device *dev, char *result);
1da177e4 107
1fd9b1fc
PM
108int vlan_check_real_dev(struct net_device *real_dev,
109 __be16 protocol, u16 vlan_id);
07b5b17e
PM
110void vlan_setup(struct net_device *dev);
111int register_vlan_dev(struct net_device *dev);
23289a37 112void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
308453aa
MM
113bool vlan_dev_inherit_address(struct net_device *dev,
114 struct net_device *real_dev);
07b5b17e 115
7750f403 116static inline u32 vlan_get_ingress_priority(struct net_device *dev,
9bb8582e 117 u16 vlan_tci)
7750f403 118{
7da82c06 119 struct vlan_dev_priv *vip = vlan_dev_priv(dev);
7750f403 120
05423b24 121 return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
7750f403
PM
122}
123
70c03b49 124#ifdef CONFIG_VLAN_8021Q_GVRP
348662a1
JP
125int vlan_gvrp_request_join(const struct net_device *dev);
126void vlan_gvrp_request_leave(const struct net_device *dev);
127int vlan_gvrp_init_applicant(struct net_device *dev);
128void vlan_gvrp_uninit_applicant(struct net_device *dev);
129int vlan_gvrp_init(void);
130void vlan_gvrp_uninit(void);
70c03b49
PM
131#else
132static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; }
133static inline void vlan_gvrp_request_leave(const struct net_device *dev) {}
134static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; }
135static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {}
136static inline int vlan_gvrp_init(void) { return 0; }
137static inline void vlan_gvrp_uninit(void) {}
138#endif
139
86fbe9bb 140#ifdef CONFIG_VLAN_8021Q_MVRP
348662a1
JP
141int vlan_mvrp_request_join(const struct net_device *dev);
142void vlan_mvrp_request_leave(const struct net_device *dev);
143int vlan_mvrp_init_applicant(struct net_device *dev);
144void vlan_mvrp_uninit_applicant(struct net_device *dev);
145int vlan_mvrp_init(void);
146void vlan_mvrp_uninit(void);
86fbe9bb
DW
147#else
148static inline int vlan_mvrp_request_join(const struct net_device *dev) { return 0; }
149static inline void vlan_mvrp_request_leave(const struct net_device *dev) {}
150static inline int vlan_mvrp_init_applicant(struct net_device *dev) { return 0; }
151static inline void vlan_mvrp_uninit_applicant(struct net_device *dev) {}
152static inline int vlan_mvrp_init(void) { return 0; }
153static inline void vlan_mvrp_uninit(void) {}
154#endif
155
b3020061
SH
156extern const char vlan_fullname[];
157extern const char vlan_version[];
348662a1
JP
158int vlan_netlink_init(void);
159void vlan_netlink_fini(void);
07b5b17e
PM
160
161extern struct rtnl_link_ops vlan_link_ops;
162
c7d03a00 163extern unsigned int vlan_net_id;
d9ed0f0e 164
a59a8c1c
PE
165struct proc_dir_entry;
166
d9ed0f0e 167struct vlan_net {
a59a8c1c
PE
168 /* /proc/net/vlan */
169 struct proc_dir_entry *proc_vlan_dir;
170 /* /proc/net/vlan/config */
171 struct proc_dir_entry *proc_vlan_conf;
7a17a2f7
PE
172 /* Determines interface naming scheme. */
173 unsigned short name_type;
d9ed0f0e
PE
174};
175
1da177e4 176#endif /* !(__BEN_VLAN_802_1Q_INC__) */