Merge tag 'please-pull-misc-4.7' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / net / ipv4 / udp_offload.c
CommitLineData
da5bab07
DB
1/*
2 * IPV4 GSO/GRO offload support
3 * Linux INET implementation
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
10 * UDPv4 GSO support
11 */
12
13#include <linux/skbuff.h>
14#include <net/udp.h>
15#include <net/protocol.h>
16
8bce6d7d
TH
17static struct sk_buff *__skb_udp_tunnel_segment(struct sk_buff *skb,
18 netdev_features_t features,
19 struct sk_buff *(*gso_inner_segment)(struct sk_buff *skb,
20 netdev_features_t features),
4bcb877d 21 __be16 new_protocol, bool is_ipv6)
155e010e 22{
dbef491e 23 int tnl_hlen = skb_inner_mac_header(skb) - skb_transport_header(skb);
22463876 24 bool remcsum, need_csum, offload_csum, ufo;
155e010e 25 struct sk_buff *segs = ERR_PTR(-EINVAL);
dbef491e 26 struct udphdr *uh = udp_hdr(skb);
155e010e 27 u16 mac_offset = skb->mac_header;
155e010e 28 __be16 protocol = skb->protocol;
dbef491e 29 u16 mac_len = skb->mac_len;
155e010e 30 int udp_offset, outer_hlen;
08334824 31 __wsum partial;
155e010e
TH
32
33 if (unlikely(!pskb_may_pull(skb, tnl_hlen)))
34 goto out;
35
08334824
AD
36 /* Adjust partial header checksum to negate old length.
37 * We cannot rely on the value contained in uh->len as it is
38 * possible that the actual value exceeds the boundaries of the
39 * 16 bit length field due to the header being added outside of an
40 * IP or IPv6 frame that was already limited to 64K - 1.
41 */
802ab55a
AD
42 if (skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL)
43 partial = (__force __wsum)uh->len;
44 else
45 partial = (__force __wsum)htonl(skb->len);
46 partial = csum_sub(csum_unfold(uh->check), partial);
dbef491e
AD
47
48 /* setup inner skb. */
155e010e 49 skb->encapsulation = 0;
5197f349 50 SKB_GSO_CB(skb)->encap_level = 0;
155e010e
TH
51 __skb_pull(skb, tnl_hlen);
52 skb_reset_mac_header(skb);
53 skb_set_network_header(skb, skb_inner_network_offset(skb));
54 skb->mac_len = skb_inner_network_offset(skb);
8bce6d7d 55 skb->protocol = new_protocol;
fdaefd62
AD
56
57 need_csum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM);
4bcb877d 58 skb->encap_hdr_csum = need_csum;
fdaefd62
AD
59
60 remcsum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_TUNNEL_REMCSUM);
e585f236 61 skb->remcsum_offload = remcsum;
155e010e 62
22463876
AD
63 ufo = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP);
64
4bcb877d
TH
65 /* Try to offload checksum if possible */
66 offload_csum = !!(need_csum &&
fdaefd62
AD
67 (skb->dev->features &
68 (is_ipv6 ? (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM) :
69 (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM))));
155e010e 70
bef3c6c9
AD
71 features &= skb->dev->hw_enc_features;
72
7fbeffed
AD
73 /* The only checksum offload we care about from here on out is the
74 * outer one so strip the existing checksum feature flags and
75 * instead set the flag based on our outer checksum offload value.
76 */
22463876 77 if (remcsum || ufo) {
7fbeffed 78 features &= ~NETIF_F_CSUM_MASK;
22463876 79 if (!need_csum || offload_csum)
7fbeffed
AD
80 features |= NETIF_F_HW_CSUM;
81 }
82
155e010e 83 /* segment inner packet. */
bef3c6c9 84 segs = gso_inner_segment(skb, features);
27446442 85 if (IS_ERR_OR_NULL(segs)) {
155e010e
TH
86 skb_gso_error_unwind(skb, protocol, tnl_hlen, mac_offset,
87 mac_len);
88 goto out;
89 }
90
91 outer_hlen = skb_tnl_header_len(skb);
92 udp_offset = outer_hlen - tnl_hlen;
93 skb = segs;
94 do {
802ab55a 95 unsigned int len;
4bcb877d 96
fdaefd62 97 if (remcsum)
4bcb877d 98 skb->ip_summed = CHECKSUM_NONE;
fdaefd62
AD
99
100 /* Set up inner headers if we are offloading inner checksum */
101 if (skb->ip_summed == CHECKSUM_PARTIAL) {
4bcb877d
TH
102 skb_reset_inner_headers(skb);
103 skb->encapsulation = 1;
104 }
155e010e
TH
105
106 skb->mac_len = mac_len;
4bcb877d 107 skb->protocol = protocol;
155e010e 108
dbef491e 109 __skb_push(skb, outer_hlen);
155e010e
TH
110 skb_reset_mac_header(skb);
111 skb_set_network_header(skb, mac_len);
112 skb_set_transport_header(skb, udp_offset);
802ab55a 113 len = skb->len - udp_offset;
155e010e 114 uh = udp_hdr(skb);
802ab55a
AD
115
116 /* If we are only performing partial GSO the inner header
117 * will be using a length value equal to only one MSS sized
118 * segment instead of the entire frame.
119 */
120 if (skb_is_gso(skb)) {
121 uh->len = htons(skb_shinfo(skb)->gso_size +
122 SKB_GSO_CB(skb)->data_offset +
123 skb->head - (unsigned char *)uh);
124 } else {
125 uh->len = htons(len);
126 }
155e010e 127
4bcb877d
TH
128 if (!need_csum)
129 continue;
130
802ab55a
AD
131 uh->check = ~csum_fold(csum_add(partial,
132 (__force __wsum)htonl(len)));
155e010e 133
fdaefd62
AD
134 if (skb->encapsulation || !offload_csum) {
135 uh->check = gso_make_checksum(skb, ~uh->check);
155e010e
TH
136 if (uh->check == 0)
137 uh->check = CSUM_MANGLED_0;
fdaefd62
AD
138 } else {
139 skb->ip_summed = CHECKSUM_PARTIAL;
140 skb->csum_start = skb_transport_header(skb) - skb->head;
141 skb->csum_offset = offsetof(struct udphdr, check);
155e010e 142 }
155e010e
TH
143 } while ((skb = skb->next));
144out:
145 return segs;
146}
147
8bce6d7d
TH
148struct sk_buff *skb_udp_tunnel_segment(struct sk_buff *skb,
149 netdev_features_t features,
150 bool is_ipv6)
151{
152 __be16 protocol = skb->protocol;
153 const struct net_offload **offloads;
154 const struct net_offload *ops;
155 struct sk_buff *segs = ERR_PTR(-EINVAL);
156 struct sk_buff *(*gso_inner_segment)(struct sk_buff *skb,
157 netdev_features_t features);
158
159 rcu_read_lock();
160
161 switch (skb->inner_protocol_type) {
162 case ENCAP_TYPE_ETHER:
163 protocol = skb->inner_protocol;
164 gso_inner_segment = skb_mac_gso_segment;
165 break;
166 case ENCAP_TYPE_IPPROTO:
167 offloads = is_ipv6 ? inet6_offloads : inet_offloads;
168 ops = rcu_dereference(offloads[skb->inner_ipproto]);
169 if (!ops || !ops->callbacks.gso_segment)
170 goto out_unlock;
171 gso_inner_segment = ops->callbacks.gso_segment;
172 break;
173 default:
174 goto out_unlock;
175 }
176
177 segs = __skb_udp_tunnel_segment(skb, features, gso_inner_segment,
4bcb877d 178 protocol, is_ipv6);
8bce6d7d
TH
179
180out_unlock:
181 rcu_read_unlock();
182
183 return segs;
184}
a6024562 185EXPORT_SYMBOL(skb_udp_tunnel_segment);
8bce6d7d 186
da5bab07
DB
187static struct sk_buff *udp4_ufo_fragment(struct sk_buff *skb,
188 netdev_features_t features)
189{
190 struct sk_buff *segs = ERR_PTR(-EINVAL);
191 unsigned int mss;
7a7ffbab 192 __wsum csum;
f71470b3
TH
193 struct udphdr *uh;
194 struct iphdr *iph;
7a7ffbab
WCC
195
196 if (skb->encapsulation &&
0f4f4ffa
TH
197 (skb_shinfo(skb)->gso_type &
198 (SKB_GSO_UDP_TUNNEL|SKB_GSO_UDP_TUNNEL_CSUM))) {
8bce6d7d 199 segs = skb_udp_tunnel_segment(skb, features, false);
7a7ffbab
WCC
200 goto out;
201 }
da5bab07 202
f71470b3
TH
203 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
204 goto out;
205
da5bab07
DB
206 mss = skb_shinfo(skb)->gso_size;
207 if (unlikely(skb->len <= mss))
208 goto out;
209
210 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
211 /* Packet is from an untrusted source, reset gso_segs. */
212 int type = skb_shinfo(skb)->gso_type;
213
214 if (unlikely(type & ~(SKB_GSO_UDP | SKB_GSO_DODGY |
215 SKB_GSO_UDP_TUNNEL |
0f4f4ffa 216 SKB_GSO_UDP_TUNNEL_CSUM |
e585f236 217 SKB_GSO_TUNNEL_REMCSUM |
cb32f511 218 SKB_GSO_IPIP |
59b93b41 219 SKB_GSO_GRE | SKB_GSO_GRE_CSUM) ||
da5bab07
DB
220 !(type & (SKB_GSO_UDP))))
221 goto out;
222
223 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
224
225 segs = NULL;
226 goto out;
227 }
228
7a7ffbab
WCC
229 /* Do software UFO. Complete and fill in the UDP checksum as
230 * HW cannot do checksum of UDP packets sent as multiple
231 * IP fragments.
232 */
f71470b3
TH
233
234 uh = udp_hdr(skb);
235 iph = ip_hdr(skb);
236
237 uh->check = 0;
238 csum = skb_checksum(skb, 0, skb->len, 0);
239 uh->check = udp_v4_check(skb->len, iph->saddr, iph->daddr, csum);
240 if (uh->check == 0)
241 uh->check = CSUM_MANGLED_0;
242
7a7ffbab
WCC
243 skb->ip_summed = CHECKSUM_NONE;
244
22463876
AD
245 /* If there is no outer header we can fake a checksum offload
246 * due to the fact that we have already done the checksum in
247 * software prior to segmenting the frame.
248 */
249 if (!skb->encap_hdr_csum)
250 features |= NETIF_F_HW_CSUM;
251
da5bab07
DB
252 /* Fragment the skb. IP headers of the fragments are updated in
253 * inet_gso_segment()
254 */
7a7ffbab 255 segs = skb_segment(skb, features);
da5bab07
DB
256out:
257 return segs;
258}
259
57c67ff4 260struct sk_buff **udp_gro_receive(struct sk_buff **head, struct sk_buff *skb,
a6024562 261 struct udphdr *uh, udp_lookup_t lookup)
b582ef09 262{
b582ef09 263 struct sk_buff *p, **pp = NULL;
57c67ff4
TH
264 struct udphdr *uh2;
265 unsigned int off = skb_gro_offset(skb);
b582ef09 266 int flush = 1;
a6024562 267 struct sock *sk;
b582ef09 268
fac8e0f5 269 if (NAPI_GRO_CB(skb)->encap_mark ||
662880f4
TH
270 (skb->ip_summed != CHECKSUM_PARTIAL &&
271 NAPI_GRO_CB(skb)->csum_cnt == 0 &&
272 !NAPI_GRO_CB(skb)->csum_valid))
b582ef09
OG
273 goto out;
274
fac8e0f5
JG
275 /* mark that this skb passed once through the tunnel gro layer */
276 NAPI_GRO_CB(skb)->encap_mark = 1;
b582ef09
OG
277
278 rcu_read_lock();
a6024562
TH
279 sk = (*lookup)(skb, uh->source, uh->dest);
280
281 if (sk && udp_sk(sk)->gro_receive)
282 goto unflush;
b582ef09
OG
283 goto out_unlock;
284
285unflush:
286 flush = 0;
287
288 for (p = *head; p; p = p->next) {
289 if (!NAPI_GRO_CB(p)->same_flow)
290 continue;
291
292 uh2 = (struct udphdr *)(p->data + off);
57c67ff4
TH
293
294 /* Match ports and either checksums are either both zero
295 * or nonzero.
296 */
297 if ((*(u32 *)&uh->source != *(u32 *)&uh2->source) ||
298 (!uh->check ^ !uh2->check)) {
b582ef09
OG
299 NAPI_GRO_CB(p)->same_flow = 0;
300 continue;
301 }
302 }
303
304 skb_gro_pull(skb, sizeof(struct udphdr)); /* pull encapsulating udp header */
6bae1d4c 305 skb_gro_postpull_rcsum(skb, uh, sizeof(struct udphdr));
a6024562 306 pp = udp_sk(sk)->gro_receive(sk, head, skb);
b582ef09
OG
307
308out_unlock:
309 rcu_read_unlock();
310out:
311 NAPI_GRO_CB(skb)->flush |= flush;
312 return pp;
313}
a6024562 314EXPORT_SYMBOL(udp_gro_receive);
b582ef09 315
57c67ff4
TH
316static struct sk_buff **udp4_gro_receive(struct sk_buff **head,
317 struct sk_buff *skb)
318{
319 struct udphdr *uh = udp_gro_udphdr(skb);
320
2abb7cdc
TH
321 if (unlikely(!uh))
322 goto flush;
57c67ff4 323
2abb7cdc 324 /* Don't bother verifying checksum if we're going to flush anyway. */
2d8f7e2c 325 if (NAPI_GRO_CB(skb)->flush)
2abb7cdc
TH
326 goto skip;
327
328 if (skb_gro_checksum_validate_zero_check(skb, IPPROTO_UDP, uh->check,
329 inet_gro_compute_pseudo))
330 goto flush;
331 else if (uh->check)
332 skb_gro_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
333 inet_gro_compute_pseudo);
334skip:
efc98d08 335 NAPI_GRO_CB(skb)->is_ipv6 = 0;
a6024562 336 return udp_gro_receive(head, skb, uh, udp4_lib_lookup_skb);
2abb7cdc
TH
337
338flush:
339 NAPI_GRO_CB(skb)->flush = 1;
340 return NULL;
57c67ff4
TH
341}
342
a6024562
TH
343int udp_gro_complete(struct sk_buff *skb, int nhoff,
344 udp_lookup_t lookup)
b582ef09 345{
b582ef09
OG
346 __be16 newlen = htons(skb->len - nhoff);
347 struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);
348 int err = -ENOSYS;
a6024562 349 struct sock *sk;
b582ef09
OG
350
351 uh->len = newlen;
352
229740c6
JR
353 /* Set encapsulation before calling into inner gro_complete() functions
354 * to make them set up the inner offsets.
355 */
356 skb->encapsulation = 1;
357
b582ef09 358 rcu_read_lock();
a6024562
TH
359 sk = (*lookup)(skb, uh->source, uh->dest);
360 if (sk && udp_sk(sk)->gro_complete)
361 err = udp_sk(sk)->gro_complete(sk, skb,
362 nhoff + sizeof(struct udphdr));
b582ef09 363 rcu_read_unlock();
6db93ea1
TH
364
365 if (skb->remcsum_offload)
366 skb_shinfo(skb)->gso_type |= SKB_GSO_TUNNEL_REMCSUM;
367
b582ef09
OG
368 return err;
369}
a6024562 370EXPORT_SYMBOL(udp_gro_complete);
b582ef09 371
72bb17b3 372static int udp4_gro_complete(struct sk_buff *skb, int nhoff)
57c67ff4
TH
373{
374 const struct iphdr *iph = ip_hdr(skb);
375 struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);
376
6db93ea1
TH
377 if (uh->check) {
378 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL_CSUM;
57c67ff4
TH
379 uh->check = ~udp_v4_check(skb->len - nhoff, iph->saddr,
380 iph->daddr, 0);
6db93ea1
TH
381 } else {
382 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
383 }
57c67ff4 384
a6024562 385 return udp_gro_complete(skb, nhoff, udp4_lib_lookup_skb);
57c67ff4
TH
386}
387
da5bab07
DB
388static const struct net_offload udpv4_offload = {
389 .callbacks = {
da5bab07 390 .gso_segment = udp4_ufo_fragment,
57c67ff4
TH
391 .gro_receive = udp4_gro_receive,
392 .gro_complete = udp4_gro_complete,
da5bab07
DB
393 },
394};
395
396int __init udpv4_offload_init(void)
397{
398 return inet_add_offload(&udpv4_offload, IPPROTO_UDP);
399}
This page took 0.295226 seconds and 5 git commands to generate.