cbacb1083794d66b8f28182d25b37bde8dda9642
[cascardo/ovs.git] / datapath / linux / compat / include / net / ip.h
1 #ifndef __NET_IP_WRAPPER_H
2 #define __NET_IP_WRAPPER_H 1
3
4 #include_next <net/ip.h>
5
6 #include <net/route.h>
7 #include <linux/version.h>
8
9 #ifndef HAVE_INET_GET_LOCAL_PORT_RANGE_USING_NET
10 static inline void rpl_inet_get_local_port_range(struct net *net, int *low,
11                                              int *high)
12 {
13         inet_get_local_port_range(low, high);
14 }
15 #define inet_get_local_port_range rpl_inet_get_local_port_range
16
17 #endif
18
19 #ifndef IPSKB_FRAG_PMTU
20 #define IPSKB_FRAG_PMTU                BIT(6)
21 #endif
22
23 /* IPv4 datagram length is stored into 16bit field (tot_len) */
24 #ifndef IP_MAX_MTU
25 #define IP_MAX_MTU      0xFFFFU
26 #endif
27
28 #ifndef HAVE_IP_SKB_DST_MTU
29 static inline bool rpl_ip_sk_use_pmtu(const struct sock *sk)
30 {
31         return inet_sk(sk)->pmtudisc < IP_PMTUDISC_PROBE;
32 }
33 #define ip_sk_use_pmtu rpl_ip_sk_use_pmtu
34
35 static inline unsigned int ip_dst_mtu_maybe_forward(const struct dst_entry *dst,
36                                                     bool forwarding)
37 {
38 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0)
39         struct net *net = dev_net(dst->dev);
40
41         if (net->ipv4.sysctl_ip_fwd_use_pmtu ||
42             dst_metric_locked(dst, RTAX_MTU) ||
43             !forwarding)
44                 return dst_mtu(dst);
45 #endif
46
47         return min(dst->dev->mtu, IP_MAX_MTU);
48 }
49
50 static inline unsigned int rpl_ip_skb_dst_mtu(const struct sk_buff *skb)
51 {
52         if (!skb->sk || ip_sk_use_pmtu(skb->sk)) {
53                 bool forwarding = IPCB(skb)->flags & IPSKB_FORWARDED;
54                 return ip_dst_mtu_maybe_forward(skb_dst(skb), forwarding);
55         } else {
56                 return min(skb_dst(skb)->dev->mtu, IP_MAX_MTU);
57         }
58 }
59 #define ip_skb_dst_mtu rpl_ip_skb_dst_mtu
60 #endif /* HAVE_IP_SKB_DST_MTU */
61
62 #ifdef HAVE_IP_FRAGMENT_TAKES_SOCK
63 #define OVS_VPORT_OUTPUT_PARAMS struct sock *sock, struct sk_buff *skb
64 #else
65 #define OVS_VPORT_OUTPUT_PARAMS struct sk_buff *skb
66 #endif
67
68 /* Prior to upstream commit d6b915e29f4a ("ip_fragment: don't forward
69  * defragmented DF packet"), IPCB(skb)->frag_max_size was not always populated
70  * correctly, which would lead to reassembled packets not being refragmented.
71  * So, we backport all of ip_defrag() in these cases.
72  */
73 #ifndef HAVE_CORRECT_MRU_HANDLING
74
75 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,2,0)
76 static inline bool ip_defrag_user_in_between(u32 user,
77                                              enum ip_defrag_users lower_bond,
78                                              enum ip_defrag_users upper_bond)
79 {
80         return user >= lower_bond && user <= upper_bond;
81 }
82 #endif /* < v4.2 */
83
84 int rpl_ip_do_fragment(struct net *net, struct sock *sk, struct sk_buff *skb,
85                        int (*output)(OVS_VPORT_OUTPUT_PARAMS));
86 #define ip_do_fragment rpl_ip_do_fragment
87
88 /* If backporting IP defrag, then init/exit functions need to be called from
89  * compat_{in,ex}it() to prepare the backported fragmentation cache. In this
90  * case we declare the functions which are defined in
91  * datapath/linux/compat/ip_fragment.c. */
92 int rpl_ip_defrag(struct net *net, struct sk_buff *skb, u32 user);
93 #define ip_defrag rpl_ip_defrag
94 int __init rpl_ipfrag_init(void);
95 void rpl_ipfrag_fini(void);
96
97 #else /* HAVE_CORRECT_MRU_HANDLING */
98
99 #ifndef HAVE_IP_DO_FRAGMENT_TAKES_NET
100 static inline int rpl_ip_do_fragment(struct net *net, struct sock *sk,
101                                      struct sk_buff *skb,
102                                      int (*output)(OVS_VPORT_OUTPUT_PARAMS))
103 {
104         return ip_do_fragment(sk, skb, output);
105 }
106 #define ip_do_fragment rpl_ip_do_fragment
107 #endif /* IP_DO_FRAGMENT_TAKES_NET */
108
109 /* We have no good way to detect the presence of upstream commit 8282f27449bf
110  * ("inet: frag: Always orphan skbs inside ip_defrag()"), but it should be
111  * always included in kernels 4.5+. */
112 #if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
113 static inline int rpl_ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
114 {
115         skb_orphan(skb);
116 #ifndef HAVE_IP_DEFRAG_TAKES_NET
117         return ip_defrag(skb, user);
118 #else
119         return ip_defrag(net, skb, user);
120 #endif
121 }
122 #define ip_defrag rpl_ip_defrag
123 #endif
124
125 /* If we can use upstream defrag then we can rely on the upstream
126  * defrag module to init/exit correctly. In this case the calls in
127  * compat_{in,ex}it() can be no-ops. */
128 static inline int rpl_ipfrag_init(void) { return 0; }
129 static inline void rpl_ipfrag_fini(void) { }
130 #endif /* HAVE_CORRECT_MRU_HANDLING */
131
132 #define ipfrag_init rpl_ipfrag_init
133 #define ipfrag_fini rpl_ipfrag_fini
134
135 #endif