vlan.h 5.7 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 vlan_dev_priv - VLAN private device data
46 47 48 49 50 51 52 53 54
 *	@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
 *	@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 已提交
55
 *	@vlan_pcpu_stats: ptr to percpu rx stats
56
 */
57
struct vlan_dev_priv {
58 59 60 61 62
	unsigned int				nr_ingress_mappings;
	u32					ingress_priority_map[8];
	unsigned int				nr_egress_mappings;
	struct vlan_priority_tci_mapping	*egress_priority_map[16];

63 64
	u16					vlan_id;
	u16					flags;
65 66 67 68 69

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

	struct proc_dir_entry			*dent;
E
Eric Dumazet 已提交
70
	struct vlan_pcpu_stats __percpu		*vlan_pcpu_stats;
71 72
};

73
static inline struct vlan_dev_priv *vlan_dev_priv(const struct net_device *dev)
74 75 76 77
{
	return netdev_priv(dev);
}

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/* 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)

struct vlan_group {
	unsigned int		nr_vlan_devs;
	struct hlist_node	hlist;	/* linked list */
	struct net_device **vlan_devices_arrays[VLAN_GROUP_ARRAY_SPLIT_PARTS];
};

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;
};

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
static inline struct net_device *vlan_group_get_device(struct vlan_group *vg,
						       u16 vlan_id)
{
	struct net_device **array;
	array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
	return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
}

static inline void vlan_group_set_device(struct vlan_group *vg,
					 u16 vlan_id,
					 struct net_device *dev)
{
	struct net_device **array;
	if (!vg)
		return;
	array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
	array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
}

120 121 122 123
/* Must be invoked with rcu_read_lock or with RTNL. */
static inline struct net_device *vlan_find_dev(struct net_device *real_dev,
					       u16 vlan_id)
{
124
	struct vlan_info *vlan_info = rcu_dereference_rtnl(real_dev->vlan_info);
125

126 127
	if (vlan_info)
		return vlan_group_get_device(&vlan_info->grp, vlan_id);
128 129 130 131

	return NULL;
}

L
Linus Torvalds 已提交
132
/* found in vlan_dev.c */
133
void vlan_dev_set_ingress_priority(const struct net_device *dev,
134
				   u32 skb_prio, u16 vlan_prio);
135
int vlan_dev_set_egress_priority(const struct net_device *dev,
136
				 u32 skb_prio, u16 vlan_prio);
137
int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
138
void vlan_dev_get_realdev_name(const struct net_device *dev, char *result);
L
Linus Torvalds 已提交
139

140
int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id);
P
Patrick McHardy 已提交
141 142
void vlan_setup(struct net_device *dev);
int register_vlan_dev(struct net_device *dev);
143
void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
P
Patrick McHardy 已提交
144

145
static inline u32 vlan_get_ingress_priority(struct net_device *dev,
146
					    u16 vlan_tci)
147
{
148
	struct vlan_dev_priv *vip = vlan_dev_priv(dev);
149

E
Eric Dumazet 已提交
150
	return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
151 152
}

P
Patrick McHardy 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
#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

169 170 171 172
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 已提交
173 174 175

extern struct rtnl_link_ops vlan_link_ops;

176 177
extern int vlan_net_id;

178 179
struct proc_dir_entry;

180
struct vlan_net {
181 182 183 184
	/* /proc/net/vlan */
	struct proc_dir_entry *proc_vlan_dir;
	/* /proc/net/vlan/config */
	struct proc_dir_entry *proc_vlan_conf;
185 186
	/* Determines interface naming scheme. */
	unsigned short name_type;
187 188
};

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