blob: cb2e6b480882fe9c5ccb0390c99b7a495b0f04a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * VLAN An implementation of 802.1Q VLAN tagging.
3 *
4 * Authors: Ben Greear <greearb@candelatech.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#ifndef _LINUX_IF_VLAN_H_
14#define _LINUX_IF_VLAN_H_
15
16#ifdef __KERNEL__
17
18/* externally defined structs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019struct hlist_node;
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/netdevice.h>
Stephen Hemminger0610d112006-07-14 16:34:22 -070022#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#define VLAN_HLEN 4 /* The additional bytes (on top of the Ethernet header)
25 * that VLAN requires.
26 */
27#define VLAN_ETH_ALEN 6 /* Octets in one ethernet addr */
28#define VLAN_ETH_HLEN 18 /* Total octets in header. */
29#define VLAN_ETH_ZLEN 64 /* Min. octets in frame sans FCS */
30
31/*
32 * According to 802.3ac, the packet can be 4 bytes longer. --Klika Jan
33 */
34#define VLAN_ETH_DATA_LEN 1500 /* Max. octets in payload */
35#define VLAN_ETH_FRAME_LEN 1518 /* Max. octets in frame sans FCS */
36
Patrick McHardy740c15d2008-01-21 00:18:53 -080037/*
38 * struct vlan_hdr - vlan header
39 * @h_vlan_TCI: priority and VLAN ID
40 * @h_vlan_encapsulated_proto: packet type ID or len
41 */
42struct vlan_hdr {
43 __be16 h_vlan_TCI;
44 __be16 h_vlan_encapsulated_proto;
45};
46
47/**
48 * struct vlan_ethhdr - vlan ethernet header (ethhdr + vlan_hdr)
49 * @h_dest: destination ethernet address
50 * @h_source: source ethernet address
51 * @h_vlan_proto: ethernet protocol (always 0x8100)
52 * @h_vlan_TCI: priority and VLAN ID
53 * @h_vlan_encapsulated_proto: packet type ID or len
54 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct vlan_ethhdr {
Patrick McHardy740c15d2008-01-21 00:18:53 -080056 unsigned char h_dest[ETH_ALEN];
57 unsigned char h_source[ETH_ALEN];
58 __be16 h_vlan_proto;
59 __be16 h_vlan_TCI;
60 __be16 h_vlan_encapsulated_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63#include <linux/skbuff.h>
64
65static inline struct vlan_ethhdr *vlan_eth_hdr(const struct sk_buff *skb)
66{
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -070067 return (struct vlan_ethhdr *)skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define VLAN_VID_MASK 0xfff
71
72/* found in socket.c */
Eric W. Biederman881d9662007-09-17 11:56:21 -070073extern void vlan_ioctl_set(int (*hook)(struct net *, void __user *));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* if this changes, algorithm will have to be reworked because this
76 * depends on completely exhausting the VLAN identifier space. Thus
77 * it gives constant time look-up, but in many cases it wastes memory.
78 */
Dan Aloni5c15bde2007-03-02 20:44:51 -080079#define VLAN_GROUP_ARRAY_LEN 4096
80#define VLAN_GROUP_ARRAY_SPLIT_PARTS 8
81#define VLAN_GROUP_ARRAY_PART_LEN (VLAN_GROUP_ARRAY_LEN/VLAN_GROUP_ARRAY_SPLIT_PARTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83struct vlan_group {
Pavel Emelyanova9fde262008-04-16 00:48:04 -070084 struct net_device *real_dev; /* The ethernet(like) device
85 * the vlan is attached to.
86 */
Patrick McHardyaf301512008-01-21 00:25:50 -080087 unsigned int nr_vlans;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 struct hlist_node hlist; /* linked list */
Dan Aloni5c15bde2007-03-02 20:44:51 -080089 struct net_device **vlan_devices_arrays[VLAN_GROUP_ARRAY_SPLIT_PARTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct rcu_head rcu;
91};
92
Eric Dumazetf0b5a0d2008-01-08 23:54:43 -080093static inline struct net_device *vlan_group_get_device(struct vlan_group *vg,
94 unsigned int vlan_id)
Dan Aloni5c15bde2007-03-02 20:44:51 -080095{
96 struct net_device **array;
97 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
Pavel Emelyanov67727182008-03-26 16:27:22 -070098 return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
Dan Aloni5c15bde2007-03-02 20:44:51 -080099}
100
Eric Dumazetf0b5a0d2008-01-08 23:54:43 -0800101static inline void vlan_group_set_device(struct vlan_group *vg,
102 unsigned int vlan_id,
Dan Aloni5c15bde2007-03-02 20:44:51 -0800103 struct net_device *dev)
104{
105 struct net_device **array;
106 if (!vg)
107 return;
108 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
109 array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* VLAN tx hw acceleration helpers. */
113struct vlan_skb_tx_cookie {
114 u32 magic;
115 u32 vlan_tag;
116};
117
118#define VLAN_TX_COOKIE_MAGIC 0x564c414e /* "VLAN" in ascii. */
119#define VLAN_TX_SKB_CB(__skb) ((struct vlan_skb_tx_cookie *)&((__skb)->cb[0]))
120#define vlan_tx_tag_present(__skb) \
121 (VLAN_TX_SKB_CB(__skb)->magic == VLAN_TX_COOKIE_MAGIC)
122#define vlan_tx_tag_get(__skb) (VLAN_TX_SKB_CB(__skb)->vlan_tag)
123
Patrick McHardy7750f402008-07-08 03:23:36 -0700124#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
Patrick McHardy22d1ba72008-07-08 03:23:57 -0700125extern struct net_device *vlan_dev_real_dev(const struct net_device *dev);
126extern u16 vlan_dev_vlan_id(const struct net_device *dev);
127
Patrick McHardy7750f402008-07-08 03:23:36 -0700128extern int __vlan_hwaccel_rx(struct sk_buff *skb, struct vlan_group *grp,
129 unsigned short vlan_tag, int polling);
130#else
Patrick McHardy22d1ba72008-07-08 03:23:57 -0700131static inline struct net_device *vlan_dev_real_dev(const struct net_device *dev)
132{
133 BUG();
134 return NULL;
135}
136
137static inline u16 vlan_dev_vlan_id(const struct net_device *dev)
138{
139 BUG();
140 return 0;
141}
142
Patrick McHardy7750f402008-07-08 03:23:36 -0700143static inline int __vlan_hwaccel_rx(struct sk_buff *skb, struct vlan_group *grp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 unsigned short vlan_tag, int polling)
145{
Patrick McHardy7750f402008-07-08 03:23:36 -0700146 BUG();
147 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
Patrick McHardy7750f402008-07-08 03:23:36 -0700149#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151static inline int vlan_hwaccel_rx(struct sk_buff *skb,
152 struct vlan_group *grp,
153 unsigned short vlan_tag)
154{
155 return __vlan_hwaccel_rx(skb, grp, vlan_tag, 0);
156}
157
158static inline int vlan_hwaccel_receive_skb(struct sk_buff *skb,
159 struct vlan_group *grp,
160 unsigned short vlan_tag)
161{
162 return __vlan_hwaccel_rx(skb, grp, vlan_tag, 1);
163}
164
165/**
166 * __vlan_put_tag - regular VLAN tag inserting
167 * @skb: skbuff to tag
168 * @tag: VLAN tag to insert
169 *
170 * Inserts the VLAN tag into @skb as part of the payload
171 * Returns a VLAN tagged skb. If a new skb is created, @skb is freed.
172 *
173 * Following the skb_unshare() example, in case of error, the calling function
174 * doesn't have to worry about freeing the original skb.
175 */
176static inline struct sk_buff *__vlan_put_tag(struct sk_buff *skb, unsigned short tag)
177{
178 struct vlan_ethhdr *veth;
179
180 if (skb_headroom(skb) < VLAN_HLEN) {
181 struct sk_buff *sk_tmp = skb;
182 skb = skb_realloc_headroom(sk_tmp, VLAN_HLEN);
183 kfree_skb(sk_tmp);
184 if (!skb) {
185 printk(KERN_ERR "vlan: failed to realloc headroom\n");
186 return NULL;
187 }
188 } else {
189 skb = skb_unshare(skb, GFP_ATOMIC);
190 if (!skb) {
191 printk(KERN_ERR "vlan: failed to unshare skbuff\n");
192 return NULL;
193 }
194 }
195
196 veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
197
198 /* Move the mac addresses to the beginning of the new header. */
199 memmove(skb->data, skb->data + VLAN_HLEN, 2 * VLAN_ETH_ALEN);
200
201 /* first, the ethernet type */
Patrick McHardy57d3ae82008-01-21 00:26:25 -0800202 veth->h_vlan_proto = htons(ETH_P_8021Q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /* now, the tag */
205 veth->h_vlan_TCI = htons(tag);
206
Patrick McHardy57d3ae82008-01-21 00:26:25 -0800207 skb->protocol = htons(ETH_P_8021Q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 return skb;
210}
211
212/**
213 * __vlan_hwaccel_put_tag - hardware accelerated VLAN inserting
214 * @skb: skbuff to tag
215 * @tag: VLAN tag to insert
216 *
217 * Puts the VLAN tag in @skb->cb[] and lets the device do the rest
218 */
219static inline struct sk_buff *__vlan_hwaccel_put_tag(struct sk_buff *skb, unsigned short tag)
220{
221 struct vlan_skb_tx_cookie *cookie;
222
223 cookie = VLAN_TX_SKB_CB(skb);
224 cookie->magic = VLAN_TX_COOKIE_MAGIC;
225 cookie->vlan_tag = tag;
226
227 return skb;
228}
229
230#define HAVE_VLAN_PUT_TAG
231
232/**
233 * vlan_put_tag - inserts VLAN tag according to device features
234 * @skb: skbuff to tag
235 * @tag: VLAN tag to insert
236 *
237 * Assumes skb->dev is the target that will xmit this frame.
238 * Returns a VLAN tagged skb.
239 */
240static inline struct sk_buff *vlan_put_tag(struct sk_buff *skb, unsigned short tag)
241{
242 if (skb->dev->features & NETIF_F_HW_VLAN_TX) {
243 return __vlan_hwaccel_put_tag(skb, tag);
244 } else {
245 return __vlan_put_tag(skb, tag);
246 }
247}
248
249/**
250 * __vlan_get_tag - get the VLAN ID that is part of the payload
251 * @skb: skbuff to query
252 * @tag: buffer to store vlaue
253 *
254 * Returns error if the skb is not of VLAN type
255 */
Patrick McHardy18149932008-02-05 16:20:22 -0800256static inline int __vlan_get_tag(const struct sk_buff *skb, unsigned short *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)skb->data;
259
Patrick McHardy57d3ae82008-01-21 00:26:25 -0800260 if (veth->h_vlan_proto != htons(ETH_P_8021Q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return -EINVAL;
262 }
263
264 *tag = ntohs(veth->h_vlan_TCI);
265
266 return 0;
267}
268
269/**
270 * __vlan_hwaccel_get_tag - get the VLAN ID that is in @skb->cb[]
271 * @skb: skbuff to query
272 * @tag: buffer to store vlaue
273 *
274 * Returns error if @skb->cb[] is not set correctly
275 */
Patrick McHardy18149932008-02-05 16:20:22 -0800276static inline int __vlan_hwaccel_get_tag(const struct sk_buff *skb,
277 unsigned short *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 struct vlan_skb_tx_cookie *cookie;
280
281 cookie = VLAN_TX_SKB_CB(skb);
282 if (cookie->magic == VLAN_TX_COOKIE_MAGIC) {
283 *tag = cookie->vlan_tag;
284 return 0;
285 } else {
286 *tag = 0;
287 return -EINVAL;
288 }
289}
290
291#define HAVE_VLAN_GET_TAG
292
293/**
294 * vlan_get_tag - get the VLAN ID from the skb
295 * @skb: skbuff to query
296 * @tag: buffer to store vlaue
297 *
298 * Returns error if the skb is not VLAN tagged
299 */
Patrick McHardy18149932008-02-05 16:20:22 -0800300static inline int vlan_get_tag(const struct sk_buff *skb, unsigned short *tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 if (skb->dev->features & NETIF_F_HW_VLAN_TX) {
303 return __vlan_hwaccel_get_tag(skb, tag);
304 } else {
305 return __vlan_get_tag(skb, tag);
306 }
307}
308
309#endif /* __KERNEL__ */
310
311/* VLAN IOCTLs are found in sockios.h */
312
313/* Passed in vlan_ioctl_args structure to determine behaviour. */
314enum vlan_ioctl_cmds {
315 ADD_VLAN_CMD,
316 DEL_VLAN_CMD,
317 SET_VLAN_INGRESS_PRIORITY_CMD,
318 SET_VLAN_EGRESS_PRIORITY_CMD,
319 GET_VLAN_INGRESS_PRIORITY_CMD,
320 GET_VLAN_EGRESS_PRIORITY_CMD,
321 SET_VLAN_NAME_TYPE_CMD,
322 SET_VLAN_FLAG_CMD,
323 GET_VLAN_REALDEV_NAME_CMD, /* If this works, you know it's a VLAN device, btw */
324 GET_VLAN_VID_CMD /* Get the VID of this VLAN (specified by name) */
325};
326
Patrick McHardya4bf3af42007-06-13 12:07:37 -0700327enum vlan_flags {
328 VLAN_FLAG_REORDER_HDR = 0x1,
Patrick McHardy70c03b42008-07-05 21:26:57 -0700329 VLAN_FLAG_GVRP = 0x2,
Patrick McHardya4bf3af42007-06-13 12:07:37 -0700330};
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332enum vlan_name_types {
333 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */
334 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */
335 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */
336 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
337 VLAN_NAME_TYPE_HIGHEST
338};
339
340struct vlan_ioctl_args {
341 int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */
342 char device1[24];
343
344 union {
345 char device2[24];
346 int VID;
347 unsigned int skb_priority;
348 unsigned int name_type;
349 unsigned int bind_type;
350 unsigned int flag; /* Matches vlan_dev_info flags */
351 } u;
352
353 short vlan_qos;
354};
355
356#endif /* !(_LINUX_IF_VLAN_H_) */