blob: c7912876a2102c02e0dac48108b5ffa22230cc9e [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 */
19struct vlan_group;
20struct net_device;
21struct packet_type;
22struct vlan_collection;
23struct vlan_dev_info;
24struct hlist_node;
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/netdevice.h>
Stephen Hemminger0610d112006-07-14 16:34:22 -070027#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#define VLAN_HLEN 4 /* The additional bytes (on top of the Ethernet header)
30 * that VLAN requires.
31 */
32#define VLAN_ETH_ALEN 6 /* Octets in one ethernet addr */
33#define VLAN_ETH_HLEN 18 /* Total octets in header. */
34#define VLAN_ETH_ZLEN 64 /* Min. octets in frame sans FCS */
35
36/*
37 * According to 802.3ac, the packet can be 4 bytes longer. --Klika Jan
38 */
39#define VLAN_ETH_DATA_LEN 1500 /* Max. octets in payload */
40#define VLAN_ETH_FRAME_LEN 1518 /* Max. octets in frame sans FCS */
41
42struct vlan_ethhdr {
43 unsigned char h_dest[ETH_ALEN]; /* destination eth addr */
44 unsigned char h_source[ETH_ALEN]; /* source ether addr */
Alexey Dobriyan3c3f8f22005-09-19 15:41:28 -070045 __be16 h_vlan_proto; /* Should always be 0x8100 */
46 __be16 h_vlan_TCI; /* Encapsulates priority and VLAN ID */
Alexey Dobriyand136fe72005-12-28 22:27:10 +030047 __be16 h_vlan_encapsulated_proto; /* packet type ID field (or len) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50#include <linux/skbuff.h>
51
52static inline struct vlan_ethhdr *vlan_eth_hdr(const struct sk_buff *skb)
53{
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -070054 return (struct vlan_ethhdr *)skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
57struct vlan_hdr {
Alexey Dobriyan3c3f8f22005-09-19 15:41:28 -070058 __be16 h_vlan_TCI; /* Encapsulates priority and VLAN ID */
59 __be16 h_vlan_encapsulated_proto; /* packet type ID field (or len) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62#define VLAN_VID_MASK 0xfff
63
64/* found in socket.c */
65extern void vlan_ioctl_set(int (*hook)(void __user *));
66
67#define VLAN_NAME "vlan"
68
69/* if this changes, algorithm will have to be reworked because this
70 * depends on completely exhausting the VLAN identifier space. Thus
71 * it gives constant time look-up, but in many cases it wastes memory.
72 */
Dan Aloni5c15bde2007-03-02 20:44:51 -080073#define VLAN_GROUP_ARRAY_LEN 4096
74#define VLAN_GROUP_ARRAY_SPLIT_PARTS 8
75#define VLAN_GROUP_ARRAY_PART_LEN (VLAN_GROUP_ARRAY_LEN/VLAN_GROUP_ARRAY_SPLIT_PARTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77struct vlan_group {
78 int real_dev_ifindex; /* The ifindex of the ethernet(like) device the vlan is attached to. */
79 struct hlist_node hlist; /* linked list */
Dan Aloni5c15bde2007-03-02 20:44:51 -080080 struct net_device **vlan_devices_arrays[VLAN_GROUP_ARRAY_SPLIT_PARTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct rcu_head rcu;
82};
83
Dan Aloni5c15bde2007-03-02 20:44:51 -080084static inline struct net_device *vlan_group_get_device(struct vlan_group *vg, int vlan_id)
85{
86 struct net_device **array;
87 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
88 return array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN];
89}
90
91static inline void vlan_group_set_device(struct vlan_group *vg, int vlan_id,
92 struct net_device *dev)
93{
94 struct net_device **array;
95 if (!vg)
96 return;
97 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
98 array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101struct vlan_priority_tci_mapping {
Patrick McHardy734423c2007-06-13 12:07:07 -0700102 u32 priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned short vlan_qos; /* This should be shifted when first set, so we only do it
104 * at provisioning time.
105 * ((skb->priority << 13) & 0xE000)
106 */
107 struct vlan_priority_tci_mapping *next;
108};
109
110/* Holds information that makes sense if this device is a VLAN device. */
111struct vlan_dev_info {
112 /** This will be the mapping that correlates skb->priority to
113 * 3 bits of VLAN QOS tags...
114 */
Patrick McHardyb020cb42007-06-13 12:07:22 -0700115 unsigned int nr_ingress_mappings;
Patrick McHardy734423c2007-06-13 12:07:07 -0700116 u32 ingress_priority_map[8];
Patrick McHardyb020cb42007-06-13 12:07:22 -0700117
118 unsigned int nr_egress_mappings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct vlan_priority_tci_mapping *egress_priority_map[16]; /* hash table */
120
121 unsigned short vlan_id; /* The VLAN Identifier for this interface. */
122 unsigned short flags; /* (1 << 0) re_order_header This option will cause the
123 * VLAN code to move around the ethernet header on
124 * ingress to make the skb look **exactly** like it
125 * came in from an ethernet port. This destroys some of
126 * the VLAN information in the skb, but it fixes programs
127 * like DHCP that use packet-filtering and don't understand
128 * 802.1Q
129 */
130 struct dev_mc_list *old_mc_list; /* old multi-cast list for the VLAN interface..
131 * we save this so we can tell what changes were
132 * made, in order to feed the right changes down
133 * to the real hardware...
134 */
135 int old_allmulti; /* similar to above. */
136 int old_promiscuity; /* similar to above. */
137 struct net_device *real_dev; /* the underlying device/interface */
138 struct proc_dir_entry *dent; /* Holds the proc data */
139 unsigned long cnt_inc_headroom_on_tx; /* How many times did we have to grow the skb on TX. */
140 unsigned long cnt_encap_on_xmit; /* How many times did we have to encapsulate the skb on TX. */
141 struct net_device_stats dev_stats; /* Device stats (rx-bytes, tx-pkts, etc...) */
142};
143
144#define VLAN_DEV_INFO(x) ((struct vlan_dev_info *)(x->priv))
145
146/* inline functions */
147
148static inline struct net_device_stats *vlan_dev_get_stats(struct net_device *dev)
149{
150 return &(VLAN_DEV_INFO(dev)->dev_stats);
151}
152
153static inline __u32 vlan_get_ingress_priority(struct net_device *dev,
154 unsigned short vlan_tag)
155{
156 struct vlan_dev_info *vip = VLAN_DEV_INFO(dev);
157
158 return vip->ingress_priority_map[(vlan_tag >> 13) & 0x7];
159}
160
161/* VLAN tx hw acceleration helpers. */
162struct vlan_skb_tx_cookie {
163 u32 magic;
164 u32 vlan_tag;
165};
166
167#define VLAN_TX_COOKIE_MAGIC 0x564c414e /* "VLAN" in ascii. */
168#define VLAN_TX_SKB_CB(__skb) ((struct vlan_skb_tx_cookie *)&((__skb)->cb[0]))
169#define vlan_tx_tag_present(__skb) \
170 (VLAN_TX_SKB_CB(__skb)->magic == VLAN_TX_COOKIE_MAGIC)
171#define vlan_tx_tag_get(__skb) (VLAN_TX_SKB_CB(__skb)->vlan_tag)
172
173/* VLAN rx hw acceleration helper. This acts like netif_{rx,receive_skb}(). */
174static inline int __vlan_hwaccel_rx(struct sk_buff *skb,
175 struct vlan_group *grp,
176 unsigned short vlan_tag, int polling)
177{
178 struct net_device_stats *stats;
179
David S. Miller7ea49ed2006-08-14 17:08:36 -0700180 if (skb_bond_should_drop(skb)) {
181 dev_kfree_skb_any(skb);
182 return NET_RX_DROP;
183 }
184
Dan Aloni5c15bde2007-03-02 20:44:51 -0800185 skb->dev = vlan_group_get_device(grp, vlan_tag & VLAN_VID_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (skb->dev == NULL) {
187 dev_kfree_skb_any(skb);
188
189 /* Not NET_RX_DROP, this is not being dropped
190 * due to congestion.
191 */
192 return 0;
193 }
194
195 skb->dev->last_rx = jiffies;
196
197 stats = vlan_dev_get_stats(skb->dev);
198 stats->rx_packets++;
199 stats->rx_bytes += skb->len;
200
201 skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tag);
202 switch (skb->pkt_type) {
203 case PACKET_BROADCAST:
204 break;
205
206 case PACKET_MULTICAST:
207 stats->multicast++;
208 break;
209
210 case PACKET_OTHERHOST:
211 /* Our lower layer thinks this is not local, let's make sure.
212 * This allows the VLAN to have a different MAC than the underlying
213 * device, and still route correctly.
214 */
Stephen Hemminger0610d112006-07-14 16:34:22 -0700215 if (!compare_ether_addr(eth_hdr(skb)->h_dest,
216 skb->dev->dev_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 skb->pkt_type = PACKET_HOST;
218 break;
219 };
220
221 return (polling ? netif_receive_skb(skb) : netif_rx(skb));
222}
223
224static inline int vlan_hwaccel_rx(struct sk_buff *skb,
225 struct vlan_group *grp,
226 unsigned short vlan_tag)
227{
228 return __vlan_hwaccel_rx(skb, grp, vlan_tag, 0);
229}
230
231static inline int vlan_hwaccel_receive_skb(struct sk_buff *skb,
232 struct vlan_group *grp,
233 unsigned short vlan_tag)
234{
235 return __vlan_hwaccel_rx(skb, grp, vlan_tag, 1);
236}
237
238/**
239 * __vlan_put_tag - regular VLAN tag inserting
240 * @skb: skbuff to tag
241 * @tag: VLAN tag to insert
242 *
243 * Inserts the VLAN tag into @skb as part of the payload
244 * Returns a VLAN tagged skb. If a new skb is created, @skb is freed.
245 *
246 * Following the skb_unshare() example, in case of error, the calling function
247 * doesn't have to worry about freeing the original skb.
248 */
249static inline struct sk_buff *__vlan_put_tag(struct sk_buff *skb, unsigned short tag)
250{
251 struct vlan_ethhdr *veth;
252
253 if (skb_headroom(skb) < VLAN_HLEN) {
254 struct sk_buff *sk_tmp = skb;
255 skb = skb_realloc_headroom(sk_tmp, VLAN_HLEN);
256 kfree_skb(sk_tmp);
257 if (!skb) {
258 printk(KERN_ERR "vlan: failed to realloc headroom\n");
259 return NULL;
260 }
261 } else {
262 skb = skb_unshare(skb, GFP_ATOMIC);
263 if (!skb) {
264 printk(KERN_ERR "vlan: failed to unshare skbuff\n");
265 return NULL;
266 }
267 }
268
269 veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
270
271 /* Move the mac addresses to the beginning of the new header. */
272 memmove(skb->data, skb->data + VLAN_HLEN, 2 * VLAN_ETH_ALEN);
273
274 /* first, the ethernet type */
275 veth->h_vlan_proto = __constant_htons(ETH_P_8021Q);
276
277 /* now, the tag */
278 veth->h_vlan_TCI = htons(tag);
279
280 skb->protocol = __constant_htons(ETH_P_8021Q);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700281 skb->mac_header -= VLAN_HLEN;
282 skb->network_header -= VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 return skb;
285}
286
287/**
288 * __vlan_hwaccel_put_tag - hardware accelerated VLAN inserting
289 * @skb: skbuff to tag
290 * @tag: VLAN tag to insert
291 *
292 * Puts the VLAN tag in @skb->cb[] and lets the device do the rest
293 */
294static inline struct sk_buff *__vlan_hwaccel_put_tag(struct sk_buff *skb, unsigned short tag)
295{
296 struct vlan_skb_tx_cookie *cookie;
297
298 cookie = VLAN_TX_SKB_CB(skb);
299 cookie->magic = VLAN_TX_COOKIE_MAGIC;
300 cookie->vlan_tag = tag;
301
302 return skb;
303}
304
305#define HAVE_VLAN_PUT_TAG
306
307/**
308 * vlan_put_tag - inserts VLAN tag according to device features
309 * @skb: skbuff to tag
310 * @tag: VLAN tag to insert
311 *
312 * Assumes skb->dev is the target that will xmit this frame.
313 * Returns a VLAN tagged skb.
314 */
315static inline struct sk_buff *vlan_put_tag(struct sk_buff *skb, unsigned short tag)
316{
317 if (skb->dev->features & NETIF_F_HW_VLAN_TX) {
318 return __vlan_hwaccel_put_tag(skb, tag);
319 } else {
320 return __vlan_put_tag(skb, tag);
321 }
322}
323
324/**
325 * __vlan_get_tag - get the VLAN ID that is part of the payload
326 * @skb: skbuff to query
327 * @tag: buffer to store vlaue
328 *
329 * Returns error if the skb is not of VLAN type
330 */
331static inline int __vlan_get_tag(struct sk_buff *skb, unsigned short *tag)
332{
333 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)skb->data;
334
335 if (veth->h_vlan_proto != __constant_htons(ETH_P_8021Q)) {
336 return -EINVAL;
337 }
338
339 *tag = ntohs(veth->h_vlan_TCI);
340
341 return 0;
342}
343
344/**
345 * __vlan_hwaccel_get_tag - get the VLAN ID that is in @skb->cb[]
346 * @skb: skbuff to query
347 * @tag: buffer to store vlaue
348 *
349 * Returns error if @skb->cb[] is not set correctly
350 */
351static inline int __vlan_hwaccel_get_tag(struct sk_buff *skb, unsigned short *tag)
352{
353 struct vlan_skb_tx_cookie *cookie;
354
355 cookie = VLAN_TX_SKB_CB(skb);
356 if (cookie->magic == VLAN_TX_COOKIE_MAGIC) {
357 *tag = cookie->vlan_tag;
358 return 0;
359 } else {
360 *tag = 0;
361 return -EINVAL;
362 }
363}
364
365#define HAVE_VLAN_GET_TAG
366
367/**
368 * vlan_get_tag - get the VLAN ID from the skb
369 * @skb: skbuff to query
370 * @tag: buffer to store vlaue
371 *
372 * Returns error if the skb is not VLAN tagged
373 */
374static inline int vlan_get_tag(struct sk_buff *skb, unsigned short *tag)
375{
376 if (skb->dev->features & NETIF_F_HW_VLAN_TX) {
377 return __vlan_hwaccel_get_tag(skb, tag);
378 } else {
379 return __vlan_get_tag(skb, tag);
380 }
381}
382
383#endif /* __KERNEL__ */
384
385/* VLAN IOCTLs are found in sockios.h */
386
387/* Passed in vlan_ioctl_args structure to determine behaviour. */
388enum vlan_ioctl_cmds {
389 ADD_VLAN_CMD,
390 DEL_VLAN_CMD,
391 SET_VLAN_INGRESS_PRIORITY_CMD,
392 SET_VLAN_EGRESS_PRIORITY_CMD,
393 GET_VLAN_INGRESS_PRIORITY_CMD,
394 GET_VLAN_EGRESS_PRIORITY_CMD,
395 SET_VLAN_NAME_TYPE_CMD,
396 SET_VLAN_FLAG_CMD,
397 GET_VLAN_REALDEV_NAME_CMD, /* If this works, you know it's a VLAN device, btw */
398 GET_VLAN_VID_CMD /* Get the VID of this VLAN (specified by name) */
399};
400
Patrick McHardya4bf3af42007-06-13 12:07:37 -0700401enum vlan_flags {
402 VLAN_FLAG_REORDER_HDR = 0x1,
403};
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405enum vlan_name_types {
406 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */
407 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */
408 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */
409 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
410 VLAN_NAME_TYPE_HIGHEST
411};
412
413struct vlan_ioctl_args {
414 int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */
415 char device1[24];
416
417 union {
418 char device2[24];
419 int VID;
420 unsigned int skb_priority;
421 unsigned int name_type;
422 unsigned int bind_type;
423 unsigned int flag; /* Matches vlan_dev_info flags */
424 } u;
425
426 short vlan_qos;
427};
428
429#endif /* !(_LINUX_IF_VLAN_H_) */