datapath: Add support for RHEL-7 / CentOS-7 kernel.
[cascardo/ovs.git] / datapath / linux / compat / include / net / ip_tunnels.h
1 #ifndef __NET_IP_TUNNELS_WRAPPER_H
2 #define __NET_IP_TUNNELS_WRAPPER_H 1
3
4 #include <linux/version.h>
5 #if defined(HAVE_GRE_HANDLE_OFFLOADS) && \
6      LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)
7 /* RHEL6 and RHEL7 both has backported tunnel API but RHEL6 has
8  * older version, so avoid using RHEL6 backports.
9  */
10 #define GRE_USE_KERNEL_GRE_HANDLE_OFFLOADS
11 #endif
12
13 #ifdef GRE_USE_KERNEL_GRE_HANDLE_OFFLOADS
14 #include_next <net/ip_tunnels.h>
15
16 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0)
17 static inline int rpl_iptunnel_xmit(struct sock *sk, struct rtable *rt,
18                                     struct sk_buff *skb, __be32 src,
19                                     __be32 dst, __u8 proto, __u8 tos,
20                                     __u8 ttl, __be16 df, bool xnet)
21 {
22 #ifdef HAVE_IPTUNNEL_XMIT_NET
23         return iptunnel_xmit(NULL, rt, skb, src, dst, proto, tos, ttl, df);
24 #else
25         return iptunnel_xmit(rt, skb, src, dst, proto, tos, ttl, df, xnet);
26 #endif
27 }
28 #define iptunnel_xmit rpl_iptunnel_xmit
29 #endif
30
31 #else
32
33 #include <linux/if_tunnel.h>
34 #include <linux/netdevice.h>
35 #include <linux/skbuff.h>
36 #include <linux/types.h>
37 #include <net/dsfield.h>
38 #include <net/flow.h>
39 #include <net/inet_ecn.h>
40 #include <net/ip.h>
41 #include <net/rtnetlink.h>
42
43 #define TUNNEL_CSUM     __cpu_to_be16(0x01)
44 #define TUNNEL_ROUTING  __cpu_to_be16(0x02)
45 #define TUNNEL_KEY      __cpu_to_be16(0x04)
46 #define TUNNEL_SEQ      __cpu_to_be16(0x08)
47 #define TUNNEL_STRICT   __cpu_to_be16(0x10)
48 #define TUNNEL_REC      __cpu_to_be16(0x20)
49 #define TUNNEL_VERSION  __cpu_to_be16(0x40)
50 #define TUNNEL_NO_KEY   __cpu_to_be16(0x80)
51 #define TUNNEL_DONT_FRAGMENT    __cpu_to_be16(0x0100)
52
53 struct tnl_ptk_info {
54         __be16 flags;
55         __be16 proto;
56         __be32 key;
57         __be32 seq;
58 };
59
60 #define PACKET_RCVD     0
61 #define PACKET_REJECT   1
62
63 int iptunnel_xmit(struct sock *sk, struct rtable *rt,
64                   struct sk_buff *skb,
65                   __be32 src, __be32 dst, __u8 proto,
66                   __u8 tos, __u8 ttl, __be16 df, bool xnet);
67
68 int iptunnel_pull_header(struct sk_buff *skb, int hdr_len, __be16 inner_proto);
69
70 #endif
71
72 /* Not yet upstream */
73 #define TUNNEL_OAM      __cpu_to_be16(0x0200)
74 #define TUNNEL_CRIT_OPT __cpu_to_be16(0x0400)
75 #define TUNNEL_OPTIONS_PRESENT  __cpu_to_be16(0x0800)
76
77 #endif /* __NET_IP_TUNNELS_H */