datapath: Support for Linux kernel 3.10
[sliver-openvswitch.git] / datapath / linux / compat / include / net / gre.h
1 #ifndef __LINUX_GRE_WRAPPER_H
2 #define __LINUX_GRE_WRAPPER_H
3
4 #include <linux/skbuff.h>
5 #include <net/ip_tunnels.h>
6
7 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)
8 #include_next <net/gre.h>
9
10 #else /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37) */
11
12 #define GREPROTO_CISCO          0
13 #define GREPROTO_MAX            2
14
15 struct gre_protocol {
16         int  (*handler)(struct sk_buff *skb);
17 };
18
19 int gre_add_protocol(const struct gre_protocol *proto, u8 version);
20 int gre_del_protocol(const struct gre_protocol *proto, u8 version);
21
22 #endif
23
24 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
25 struct gre_base_hdr {
26         __be16 flags;
27         __be16 protocol;
28 };
29 #define GRE_HEADER_SECTION 4
30
31 static inline __be16 gre_flags_to_tnl_flags(__be16 flags)
32 {
33         __be16 tflags = 0;
34
35         if (flags & GRE_CSUM)
36                 tflags |= TUNNEL_CSUM;
37         if (flags & GRE_ROUTING)
38                 tflags |= TUNNEL_ROUTING;
39         if (flags & GRE_KEY)
40                 tflags |= TUNNEL_KEY;
41         if (flags & GRE_SEQ)
42                 tflags |= TUNNEL_SEQ;
43         if (flags & GRE_STRICT)
44                 tflags |= TUNNEL_STRICT;
45         if (flags & GRE_REC)
46                 tflags |= TUNNEL_REC;
47         if (flags & GRE_VERSION)
48                 tflags |= TUNNEL_VERSION;
49
50         return tflags;
51 }
52
53 static inline __be16 tnl_flags_to_gre_flags(__be16 tflags)
54 {
55         __be16 flags = 0;
56
57         if (tflags & TUNNEL_CSUM)
58                 flags |= GRE_CSUM;
59         if (tflags & TUNNEL_ROUTING)
60                 flags |= GRE_ROUTING;
61         if (tflags & TUNNEL_KEY)
62                 flags |= GRE_KEY;
63         if (tflags & TUNNEL_SEQ)
64                 flags |= GRE_SEQ;
65         if (tflags & TUNNEL_STRICT)
66                 flags |= GRE_STRICT;
67         if (tflags & TUNNEL_REC)
68                 flags |= GRE_REC;
69         if (tflags & TUNNEL_VERSION)
70                 flags |= GRE_VERSION;
71
72         return flags;
73 }
74 #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0) */
75
76 #define MAX_GRE_PROTO_PRIORITY 255
77 struct gre_cisco_protocol {
78         int (*handler)(struct sk_buff *skb, const struct tnl_ptk_info *tpi);
79         u8 priority;
80 };
81
82 int gre_cisco_register(struct gre_cisco_protocol *proto);
83 int gre_cisco_unregister(struct gre_cisco_protocol *proto);
84
85 #define gre_build_header rpl_gre_build_header
86 void gre_build_header(struct sk_buff *skb, const struct tnl_ptk_info *tpi,
87                       int hdr_len);
88
89 #define gre_handle_offloads rpl_gre_handle_offloads
90 struct sk_buff *gre_handle_offloads(struct sk_buff *skb, bool gre_csum);
91
92 static inline int ip_gre_calc_hlen(__be16 o_flags)
93 {
94         int addend = 4;
95
96         if (o_flags & TUNNEL_CSUM)
97                 addend += 4;
98         if (o_flags & TUNNEL_KEY)
99                 addend += 4;
100         if (o_flags & TUNNEL_SEQ)
101                 addend += 4;
102         return addend;
103 }
104
105
106 #endif