datapath: Account for "vlan: introduce *vlan_hwaccel_push_inside helpers"
[cascardo/ovs.git] / datapath / linux / compat / include / linux / if_vlan.h
1 #ifndef __LINUX_IF_VLAN_WRAPPER_H
2 #define __LINUX_IF_VLAN_WRAPPER_H 1
3
4 #include <linux/skbuff.h>
5 #include <linux/version.h>
6 #include_next <linux/if_vlan.h>
7
8 #ifndef HAVE_VLAN_INSERT_TAG_SET_PROTO
9 /*
10  * The behavior of __vlan_put_tag()/vlan_insert_tag_set_proto() has changed
11  * over time:
12  *
13  *      - In 2.6.26 and earlier, it adjusted both MAC and network header
14  *        pointers.  (The latter didn't make any sense.)
15  *
16  *      - In 2.6.27 and 2.6.28, it did not adjust any header pointers at all.
17  *
18  *      - In 2.6.29 and later, it adjusts the MAC header pointer only.
19  *
20  *      - In 3.19 and later, it was renamed to vlan_insert_tag_set_proto()
21  *
22  * This is the version from 2.6.33.  We unconditionally substitute this version
23  * to avoid the need to guess whether the version in the kernel tree is
24  * acceptable.
25  */
26 #define vlan_insert_tag_set_proto(skb, proto, vlan_tci) \
27         rpl_vlan_insert_tag_set_proto(skb, vlan_tci)
28 static inline struct sk_buff *rpl_vlan_insert_tag_set_proto(struct sk_buff *skb,
29                                                             u16 vlan_tci)
30 {
31         struct vlan_ethhdr *veth;
32
33         if (skb_cow_head(skb, VLAN_HLEN) < 0) {
34                 kfree_skb(skb);
35                 return NULL;
36         }
37         veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
38
39         /* Move the mac addresses to the beginning of the new header. */
40         memmove(skb->data, skb->data + VLAN_HLEN, 2 * ETH_ALEN);
41         skb->mac_header -= VLAN_HLEN;
42
43         /* first, the ethernet type */
44         veth->h_vlan_proto = htons(ETH_P_8021Q);
45
46         /* now, the TCI */
47         veth->h_vlan_TCI = htons(vlan_tci);
48
49         skb->protocol = htons(ETH_P_8021Q);
50
51         return skb;
52 }
53 #endif
54
55 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,19,0)
56 /*
57  * __vlan_hwaccel_push_inside - pushes vlan tag to the payload
58  * @skb: skbuff to tag
59  *
60  * Pushes the VLAN tag from @skb->vlan_tci inside to the payload.
61  *
62  * Following the skb_unshare() example, in case of error, the calling function
63  * doesn't have to worry about freeing the original skb.
64  */
65 static inline struct sk_buff *__vlan_hwaccel_push_inside(struct sk_buff *skb)
66 {
67         skb = vlan_insert_tag_set_proto(skb, skb->vlan_proto,
68                                         vlan_tx_tag_get(skb));
69         if (likely(skb))
70                 skb->vlan_tci = 0;
71         return skb;
72 }
73 /*
74  * vlan_hwaccel_push_inside - pushes vlan tag to the payload
75  * @skb: skbuff to tag
76  *
77  * Checks is tag is present in @skb->vlan_tci and if it is, it pushes the
78  * VLAN tag from @skb->vlan_tci inside to the payload.
79  *
80  * Following the skb_unshare() example, in case of error, the calling function
81  * doesn't have to worry about freeing the original skb.
82  */
83 static inline struct sk_buff *vlan_hwaccel_push_inside(struct sk_buff *skb)
84 {
85         if (vlan_tx_tag_present(skb))
86                 skb = __vlan_hwaccel_push_inside(skb);
87         return skb;
88 }
89 #endif
90
91 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
92 static inline struct sk_buff *rpl___vlan_hwaccel_put_tag(struct sk_buff *skb,
93                                                      __be16 vlan_proto,
94                                                      u16 vlan_tci)
95 {
96         return __vlan_hwaccel_put_tag(skb, vlan_tci);
97 }
98
99 #define __vlan_hwaccel_put_tag rpl___vlan_hwaccel_put_tag
100 #endif
101
102 /* All of these were introduced in a single commit preceding 2.6.33, so
103  * presumably all of them or none of them are present. */
104 #ifndef VLAN_PRIO_MASK
105 #define VLAN_PRIO_MASK          0xe000 /* Priority Code Point */
106 #define VLAN_PRIO_SHIFT         13
107 #define VLAN_CFI_MASK           0x1000 /* Canonical Format Indicator */
108 #define VLAN_TAG_PRESENT        VLAN_CFI_MASK
109 #endif
110
111 #ifndef HAVE_VLAN_SET_ENCAP_PROTO
112 static inline void vlan_set_encap_proto(struct sk_buff *skb, struct vlan_hdr *vhdr)
113 {
114         __be16 proto;
115         unsigned char *rawp;
116
117         /*
118          * Was a VLAN packet, grab the encapsulated protocol, which the layer
119          * three protocols care about.
120          */
121
122         proto = vhdr->h_vlan_encapsulated_proto;
123         if (ntohs(proto) >= 1536) {
124                 skb->protocol = proto;
125                 return;
126         }
127
128         rawp = skb->data;
129         if (*(unsigned short *) rawp == 0xFFFF)
130                 /*
131                  * This is a magic hack to spot IPX packets. Older Novell
132                  * breaks the protocol design and runs IPX over 802.3 without
133                  * an 802.2 LLC layer. We look for FFFF which isn't a used
134                  * 802.2 SSAP/DSAP. This won't work for fault tolerant netware
135                  * but does for the rest.
136                  */
137                 skb->protocol = htons(ETH_P_802_3);
138         else
139                 /*
140                  * Real 802.2 LLC
141                  */
142                 skb->protocol = htons(ETH_P_802_2);
143 }
144 #endif
145
146 #ifndef HAVE___VLAN_INSERT_TAG
147 /* Kernels which don't have __vlan_insert_tag() also don't have skb->vlan_proto
148  * so ignore the proto paramter.
149  */
150 #define __vlan_insert_tag(skb, proto, tci) rpl_vlan_insert_tag(skb, tci)
151 static inline int rpl_vlan_insert_tag(struct sk_buff *skb, u16 vlan_tci)
152 {
153         struct vlan_ethhdr *veth;
154
155         if (skb_cow_head(skb, VLAN_HLEN) < 0)
156                 return -ENOMEM;
157
158         veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
159
160         /* Move the mac addresses to the beginning of the new header. */
161         memmove(skb->data, skb->data + VLAN_HLEN, 2 * ETH_ALEN);
162         skb->mac_header -= VLAN_HLEN;
163
164         /* first, the ethernet type */
165         veth->h_vlan_proto = htons(ETH_P_8021Q);
166
167         /* now, the TCI */
168         veth->h_vlan_TCI = htons(vlan_tci);
169
170         return 0;
171 }
172 #endif
173
174 #ifndef skb_vlan_tag_present
175 #define skb_vlan_tag_present(skb) vlan_tx_tag_present(skb)
176 #define skb_vlan_tag_get(skb) vlan_tx_tag_get(skb)
177 #endif
178
179 #endif  /* linux/if_vlan.h wrapper */