datapath: Backport conntrack fixes.
[cascardo/ovs.git] / datapath / compat.h
1 /*
2  * Copyright (c) 2007-2015 Nicira, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  */
18
19 #ifndef COMPAT_H
20 #define COMPAT_H 1
21
22 #include <linux/in.h>
23 #include <linux/in_route.h>
24 #include <linux/netlink.h>
25 #include <net/ip.h>
26 #include <net/route.h>
27 #include <net/xfrm.h>
28 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
29
30 #ifdef HAVE_GENL_MULTICAST_GROUP_WITH_ID
31 #define GROUP_ID(grp)   ((grp)->id)
32 #else
33 #define GROUP_ID(grp)   0
34 #endif
35
36 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
37 #define rt_dst(rt) (rt->dst)
38 #else
39 #define rt_dst(rt) (rt->u.dst)
40 #endif
41
42 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
43 #define inet_sport(sk)  (inet_sk(sk)->sport)
44 #else
45 #define inet_sport(sk)  (inet_sk(sk)->inet_sport)
46 #endif
47
48 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
49 static inline bool skb_encapsulation(struct sk_buff *skb)
50 {
51         return skb->encapsulation;
52 }
53 #else
54 #define skb_encapsulation(skb) false
55 #endif
56
57 #ifdef OVS_FRAGMENT_BACKPORT
58 int __init ip6_output_init(void);
59 void ip6_output_exit(void);
60
61 static inline int __init compat_init(void)
62 {
63         int err;
64
65         err = ipfrag_init();
66         if (err)
67                 return err;
68
69         err = nf_ct_frag6_init();
70         if (err)
71                 goto error_ipfrag_exit;
72
73         err = ip6_output_init();
74         if (err)
75                 goto error_frag6_exit;
76
77         return 0;
78
79 error_frag6_exit:
80         nf_ct_frag6_cleanup();
81 error_ipfrag_exit:
82         rpl_ipfrag_fini();
83         return err;
84 }
85 static inline void compat_exit(void)
86 {
87         ip6_output_exit();
88         nf_ct_frag6_cleanup();
89         rpl_ipfrag_fini();
90 }
91 #else
92 static inline int __init compat_init(void) { return 0; }
93 static inline void compat_exit(void) { }
94 #endif
95
96 #endif /* compat.h */