summaryrefslogtreecommitdiff
path: root/datapath/vlan.h
blob: d6e9b32b37ff04eede7e24462608015c3e80cf85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * Copyright (c) 2007-2011 Nicira Networks.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA
 */

#ifndef VLAN_H
#define VLAN_H 1

#include <linux/if_vlan.h>
#include <linux/skbuff.h>
#include <linux/version.h>

/**
 * DOC: VLAN tag manipulation.
 *
 * &struct sk_buff handling of VLAN tags has evolved over time:
 *
 * In 2.6.26 and earlier, VLAN tags did not have any generic representation in
 * an skb, other than as a raw 802.1Q header inside the packet data.
 *
 * In 2.6.27 &struct sk_buff added a @vlan_tci member.  Between 2.6.27 and
 * 2.6.32, its value was the raw contents of the 802.1Q TCI field, or zero if
 * no 802.1Q header was present.  This worked OK except for the corner case of
 * an 802.1Q header with an all-0-bits TCI, which could not be represented.
 *
 * In 2.6.33, @vlan_tci semantics changed.  Now, if an 802.1Q header is
 * present, then the VLAN_TAG_PRESENT bit is always set.  This fixes the
 * all-0-bits TCI corner case.
 *
 * For compatibility we emulate the 2.6.33+ behavior on earlier kernel
 * versions.  The client must not access @vlan_tci directly.  Instead, use
 * vlan_get_tci() to read it or vlan_set_tci() to write it, with semantics
 * equivalent to those on 2.6.33+.
 */

#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27)
#define NEED_VLAN_FIELD
#endif

#ifndef NEED_VLAN_FIELD
static inline void vlan_copy_skb_tci(struct sk_buff *skb) { }

static inline u16 vlan_get_tci(struct sk_buff *skb)
{
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
	if (skb->vlan_tci)
		return skb->vlan_tci | VLAN_TAG_PRESENT;
#endif
	return skb->vlan_tci;
}

static inline void vlan_set_tci(struct sk_buff *skb, u16 vlan_tci)
{
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
	vlan_tci &= ~VLAN_TAG_PRESENT;
#endif
	skb->vlan_tci = vlan_tci;
}
#else
void vlan_copy_skb_tci(struct sk_buff *skb);
u16 vlan_get_tci(struct sk_buff *skb);
void vlan_set_tci(struct sk_buff *skb, u16 vlan_tci);

#undef vlan_tx_tag_present
bool vlan_tx_tag_present(struct sk_buff *skb);

#undef vlan_tx_tag_get
u16 vlan_tx_tag_get(struct sk_buff *skb);

#define __vlan_hwaccel_put_tag rpl__vlan_hwaccel_put_tag
struct sk_buff *__vlan_hwaccel_put_tag(struct sk_buff *skb, u16 vlan_tci);
#endif /* NEED_VLAN_FIELD */

static inline int vlan_deaccel_tag(struct sk_buff *skb)
{
	if (!vlan_tx_tag_present(skb))
		return 0;

	skb = __vlan_put_tag(skb, vlan_tx_tag_get(skb));
	if (unlikely(!skb))
		return -ENOMEM;

	vlan_set_tci(skb, 0);
	return 0;
}

#endif /* vlan.h */