vlan.h 7.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#ifndef __BEN_VLAN_802_1Q_INC__
#define __BEN_VLAN_802_1Q_INC__

#include <linux/if_vlan.h>
E
Eric Dumazet 已提交
5
#include <linux/u64_stats_sync.h>
6
#include <linux/list.h>
L
Linus Torvalds 已提交
7

8 9 10 11 12 13 14 15 16

/**
 *	struct vlan_priority_tci_mapping - vlan egress priority mappings
 *	@priority: skb priority
 *	@vlan_qos: vlan priority: (skb->priority << 13) & 0xE000
 *	@next: pointer to next struct
 */
struct vlan_priority_tci_mapping {
	u32					priority;
17
	u16					vlan_qos;
18 19 20
	struct vlan_priority_tci_mapping	*next;
};

E
Eric Dumazet 已提交
21 22

/**
E
Eric Dumazet 已提交
23
 *	struct vlan_pcpu_stats - VLAN percpu rx/tx stats
E
Eric Dumazet 已提交
24 25
 *	@rx_packets: number of received packets
 *	@rx_bytes: number of received bytes
E
Eric Dumazet 已提交
26
 *	@rx_multicast: number of received multicast packets
E
Eric Dumazet 已提交
27 28
 *	@tx_packets: number of transmitted packets
 *	@tx_bytes: number of transmitted bytes
E
Eric Dumazet 已提交
29
 *	@syncp: synchronization point for 64bit counters
E
Eric Dumazet 已提交
30 31
 *	@rx_errors: number of rx errors
 *	@tx_dropped: number of tx drops
E
Eric Dumazet 已提交
32
 */
E
Eric Dumazet 已提交
33
struct vlan_pcpu_stats {
E
Eric Dumazet 已提交
34 35 36
	u64			rx_packets;
	u64			rx_bytes;
	u64			rx_multicast;
E
Eric Dumazet 已提交
37 38
	u64			tx_packets;
	u64			tx_bytes;
E
Eric Dumazet 已提交
39
	struct u64_stats_sync	syncp;
E
Eric Dumazet 已提交
40 41
	u32			rx_errors;
	u32			tx_dropped;
E
Eric Dumazet 已提交
42 43
};

44 45
struct netpoll;

46
/**
47
 *	struct vlan_dev_priv - VLAN private device data
48 49 50 51
 *	@nr_ingress_mappings: number of ingress priority mappings
 *	@ingress_priority_map: ingress priority mappings
 *	@nr_egress_mappings: number of egress priority mappings
 *	@egress_priority_map: hash of egress priority mappings
52
 *	@vlan_proto: VLAN encapsulation protocol
53 54 55 56 57
 *	@vlan_id: VLAN identifier
 *	@flags: device flags
 *	@real_dev: underlying netdevice
 *	@real_dev_addr: address of underlying netdevice
 *	@dent: proc dir entry
E
Eric Dumazet 已提交
58
 *	@vlan_pcpu_stats: ptr to percpu rx stats
59
 */
60
struct vlan_dev_priv {
61 62 63 64 65
	unsigned int				nr_ingress_mappings;
	u32					ingress_priority_map[8];
	unsigned int				nr_egress_mappings;
	struct vlan_priority_tci_mapping	*egress_priority_map[16];

66
	__be16					vlan_proto;
67 68
	u16					vlan_id;
	u16					flags;
69 70 71 72 73

	struct net_device			*real_dev;
	unsigned char				real_dev_addr[ETH_ALEN];

	struct proc_dir_entry			*dent;
E
Eric Dumazet 已提交
74
	struct vlan_pcpu_stats __percpu		*vlan_pcpu_stats;
75 76 77
#ifdef CONFIG_NET_POLL_CONTROLLER
	struct netpoll				*netpoll;
#endif
78 79
};

80
static inline struct vlan_dev_priv *vlan_dev_priv(const struct net_device *dev)
81 82 83 84
{
	return netdev_priv(dev);
}

85 86 87 88 89 90 91
/* if this changes, algorithm will have to be reworked because this
 * depends on completely exhausting the VLAN identifier space.  Thus
 * it gives constant time look-up, but in many cases it wastes memory.
 */
#define VLAN_GROUP_ARRAY_SPLIT_PARTS  8
#define VLAN_GROUP_ARRAY_PART_LEN     (VLAN_N_VID/VLAN_GROUP_ARRAY_SPLIT_PARTS)

92 93
enum vlan_protos {
	VLAN_PROTO_8021Q	= 0,
P
Patrick McHardy 已提交
94
	VLAN_PROTO_8021AD,
95 96 97
	VLAN_PROTO_NUM,
};

98 99 100
struct vlan_group {
	unsigned int		nr_vlan_devs;
	struct hlist_node	hlist;	/* linked list */
101 102
	struct net_device **vlan_devices_arrays[VLAN_PROTO_NUM]
					       [VLAN_GROUP_ARRAY_SPLIT_PARTS];
103 104 105 106 107 108 109 110 111 112 113 114
};

struct vlan_info {
	struct net_device	*real_dev; /* The ethernet(like) device
					    * the vlan is attached to.
					    */
	struct vlan_group	grp;
	struct list_head	vid_list;
	unsigned int		nr_vids;
	struct rcu_head		rcu;
};

115 116 117 118 119
static inline unsigned int vlan_proto_idx(__be16 proto)
{
	switch (proto) {
	case __constant_htons(ETH_P_8021Q):
		return VLAN_PROTO_8021Q;
P
Patrick McHardy 已提交
120 121
	case __constant_htons(ETH_P_8021AD):
		return VLAN_PROTO_8021AD;
122 123 124 125 126 127 128 129
	default:
		BUG();
	}
}

static inline struct net_device *__vlan_group_get_device(struct vlan_group *vg,
							 unsigned int pidx,
							 u16 vlan_id)
130 131
{
	struct net_device **array;
132 133 134

	array = vg->vlan_devices_arrays[pidx]
				       [vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
135 136 137
	return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
}

138 139 140 141 142 143 144
static inline struct net_device *vlan_group_get_device(struct vlan_group *vg,
						       __be16 vlan_proto,
						       u16 vlan_id)
{
	return __vlan_group_get_device(vg, vlan_proto_idx(vlan_proto), vlan_id);
}

145
static inline void vlan_group_set_device(struct vlan_group *vg,
146
					 __be16 vlan_proto, u16 vlan_id,
147 148 149 150 151
					 struct net_device *dev)
{
	struct net_device **array;
	if (!vg)
		return;
152 153
	array = vg->vlan_devices_arrays[vlan_proto_idx(vlan_proto)]
				       [vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
154 155 156
	array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
}

157 158
/* Must be invoked with rcu_read_lock or with RTNL. */
static inline struct net_device *vlan_find_dev(struct net_device *real_dev,
159
					       __be16 vlan_proto, u16 vlan_id)
160
{
161
	struct vlan_info *vlan_info = rcu_dereference_rtnl(real_dev->vlan_info);
162

163
	if (vlan_info)
164 165
		return vlan_group_get_device(&vlan_info->grp,
					     vlan_proto, vlan_id);
166 167 168 169

	return NULL;
}

170 171 172 173 174
#define vlan_group_for_each_dev(grp, i, dev) \
	for ((i) = 0; i < VLAN_PROTO_NUM * VLAN_N_VID; i++) \
		if (((dev) = __vlan_group_get_device((grp), (i) / VLAN_N_VID, \
							    (i) % VLAN_N_VID)))

L
Linus Torvalds 已提交
175
/* found in vlan_dev.c */
176
void vlan_dev_set_ingress_priority(const struct net_device *dev,
177
				   u32 skb_prio, u16 vlan_prio);
178
int vlan_dev_set_egress_priority(const struct net_device *dev,
179
				 u32 skb_prio, u16 vlan_prio);
180
int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
181
void vlan_dev_get_realdev_name(const struct net_device *dev, char *result);
L
Linus Torvalds 已提交
182

183 184
int vlan_check_real_dev(struct net_device *real_dev,
			__be16 protocol, u16 vlan_id);
P
Patrick McHardy 已提交
185 186
void vlan_setup(struct net_device *dev);
int register_vlan_dev(struct net_device *dev);
187
void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
P
Patrick McHardy 已提交
188

189
static inline u32 vlan_get_ingress_priority(struct net_device *dev,
190
					    u16 vlan_tci)
191
{
192
	struct vlan_dev_priv *vip = vlan_dev_priv(dev);
193

E
Eric Dumazet 已提交
194
	return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
195 196
}

P
Patrick McHardy 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
#ifdef CONFIG_VLAN_8021Q_GVRP
extern int vlan_gvrp_request_join(const struct net_device *dev);
extern void vlan_gvrp_request_leave(const struct net_device *dev);
extern int vlan_gvrp_init_applicant(struct net_device *dev);
extern void vlan_gvrp_uninit_applicant(struct net_device *dev);
extern int vlan_gvrp_init(void);
extern void vlan_gvrp_uninit(void);
#else
static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; }
static inline void vlan_gvrp_request_leave(const struct net_device *dev) {}
static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; }
static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {}
static inline int vlan_gvrp_init(void) { return 0; }
static inline void vlan_gvrp_uninit(void) {}
#endif

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
#ifdef CONFIG_VLAN_8021Q_MVRP
extern int vlan_mvrp_request_join(const struct net_device *dev);
extern void vlan_mvrp_request_leave(const struct net_device *dev);
extern int vlan_mvrp_init_applicant(struct net_device *dev);
extern void vlan_mvrp_uninit_applicant(struct net_device *dev);
extern int vlan_mvrp_init(void);
extern void vlan_mvrp_uninit(void);
#else
static inline int vlan_mvrp_request_join(const struct net_device *dev) { return 0; }
static inline void vlan_mvrp_request_leave(const struct net_device *dev) {}
static inline int vlan_mvrp_init_applicant(struct net_device *dev) { return 0; }
static inline void vlan_mvrp_uninit_applicant(struct net_device *dev) {}
static inline int vlan_mvrp_init(void) { return 0; }
static inline void vlan_mvrp_uninit(void) {}
#endif

229 230 231 232
extern const char vlan_fullname[];
extern const char vlan_version[];
extern int vlan_netlink_init(void);
extern void vlan_netlink_fini(void);
P
Patrick McHardy 已提交
233 234 235

extern struct rtnl_link_ops vlan_link_ops;

236 237
extern int vlan_net_id;

238 239
struct proc_dir_entry;

240
struct vlan_net {
241 242 243 244
	/* /proc/net/vlan */
	struct proc_dir_entry *proc_vlan_dir;
	/* /proc/net/vlan/config */
	struct proc_dir_entry *proc_vlan_conf;
245 246
	/* Determines interface naming scheme. */
	unsigned short name_type;
247 248
};

L
Linus Torvalds 已提交
249
#endif /* !(__BEN_VLAN_802_1Q_INC__) */