Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0-or-later
2 : : /*
3 : : * IPV4 GSO/GRO offload support
4 : : * Linux INET implementation
5 : : *
6 : : * UDPv4 GSO support
7 : : */
8 : :
9 : : #include <linux/skbuff.h>
10 : : #include <net/udp.h>
11 : : #include <net/protocol.h>
12 : : #include <net/inet_common.h>
13 : :
14 : 0 : static struct sk_buff *__skb_udp_tunnel_segment(struct sk_buff *skb,
15 : : netdev_features_t features,
16 : : struct sk_buff *(*gso_inner_segment)(struct sk_buff *skb,
17 : : netdev_features_t features),
18 : : __be16 new_protocol, bool is_ipv6)
19 : : {
20 : 0 : int tnl_hlen = skb_inner_mac_header(skb) - skb_transport_header(skb);
21 : 0 : bool remcsum, need_csum, offload_csum, gso_partial;
22 : 0 : struct sk_buff *segs = ERR_PTR(-EINVAL);
23 : 0 : struct udphdr *uh = udp_hdr(skb);
24 : 0 : u16 mac_offset = skb->mac_header;
25 : 0 : __be16 protocol = skb->protocol;
26 : 0 : u16 mac_len = skb->mac_len;
27 : 0 : int udp_offset, outer_hlen;
28 : 0 : __wsum partial;
29 : 0 : bool need_ipsec;
30 : :
31 [ # # ]: 0 : if (unlikely(!pskb_may_pull(skb, tnl_hlen)))
32 : 0 : goto out;
33 : :
34 : : /* Adjust partial header checksum to negate old length.
35 : : * We cannot rely on the value contained in uh->len as it is
36 : : * possible that the actual value exceeds the boundaries of the
37 : : * 16 bit length field due to the header being added outside of an
38 : : * IP or IPv6 frame that was already limited to 64K - 1.
39 : : */
40 [ # # ]: 0 : if (skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL)
41 : 0 : partial = (__force __wsum)uh->len;
42 : : else
43 : 0 : partial = (__force __wsum)htonl(skb->len);
44 [ # # ]: 0 : partial = csum_sub(csum_unfold(uh->check), partial);
45 : :
46 : : /* setup inner skb. */
47 : 0 : skb->encapsulation = 0;
48 : 0 : SKB_GSO_CB(skb)->encap_level = 0;
49 [ # # ]: 0 : __skb_pull(skb, tnl_hlen);
50 [ # # ]: 0 : skb_reset_mac_header(skb);
51 [ # # ]: 0 : skb_set_network_header(skb, skb_inner_network_offset(skb));
52 : 0 : skb->mac_len = skb_inner_network_offset(skb);
53 : 0 : skb->protocol = new_protocol;
54 : :
55 [ # # ]: 0 : need_csum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM);
56 : 0 : skb->encap_hdr_csum = need_csum;
57 : :
58 : 0 : remcsum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_TUNNEL_REMCSUM);
59 : 0 : skb->remcsum_offload = remcsum;
60 : :
61 [ # # # # ]: 0 : need_ipsec = skb_dst(skb) && dst_xfrm(skb_dst(skb));
62 : : /* Try to offload checksum if possible */
63 : 0 : offload_csum = !!(need_csum &&
64 [ # # ]: 0 : !need_ipsec &&
65 [ # # ]: 0 : (skb->dev->features &
66 [ # # ]: 0 : (is_ipv6 ? (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM) :
67 : : (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM))));
68 : :
69 : 0 : features &= skb->dev->hw_enc_features;
70 : :
71 : : /* The only checksum offload we care about from here on out is the
72 : : * outer one so strip the existing checksum feature flags and
73 : : * instead set the flag based on our outer checksum offload value.
74 : : */
75 [ # # ]: 0 : if (remcsum) {
76 : 0 : features &= ~NETIF_F_CSUM_MASK;
77 [ # # ]: 0 : if (!need_csum || offload_csum)
78 : 0 : features |= NETIF_F_HW_CSUM;
79 : : }
80 : :
81 : : /* segment inner packet. */
82 : 0 : segs = gso_inner_segment(skb, features);
83 [ # # # # ]: 0 : if (IS_ERR_OR_NULL(segs)) {
84 : 0 : skb_gso_error_unwind(skb, protocol, tnl_hlen, mac_offset,
85 : : mac_len);
86 : 0 : goto out;
87 : : }
88 : :
89 : 0 : gso_partial = !!(skb_shinfo(segs)->gso_type & SKB_GSO_PARTIAL);
90 : :
91 : 0 : outer_hlen = skb_tnl_header_len(skb);
92 : 0 : udp_offset = outer_hlen - tnl_hlen;
93 : 0 : skb = segs;
94 : 0 : do {
95 : 0 : unsigned int len;
96 : :
97 [ # # ]: 0 : if (remcsum)
98 : 0 : skb->ip_summed = CHECKSUM_NONE;
99 : :
100 : : /* Set up inner headers if we are offloading inner checksum */
101 [ # # ]: 0 : if (skb->ip_summed == CHECKSUM_PARTIAL) {
102 : 0 : skb_reset_inner_headers(skb);
103 : 0 : skb->encapsulation = 1;
104 : : }
105 : :
106 : 0 : skb->mac_len = mac_len;
107 : 0 : skb->protocol = protocol;
108 : :
109 [ # # ]: 0 : __skb_push(skb, outer_hlen);
110 [ # # ]: 0 : skb_reset_mac_header(skb);
111 [ # # ]: 0 : skb_set_network_header(skb, mac_len);
112 [ # # ]: 0 : skb_set_transport_header(skb, udp_offset);
113 : 0 : len = skb->len - udp_offset;
114 [ # # ]: 0 : uh = udp_hdr(skb);
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 [ # # # # ]: 0 : if (gso_partial && skb_is_gso(skb)) {
121 : 0 : uh->len = htons(skb_shinfo(skb)->gso_size +
122 : : SKB_GSO_CB(skb)->data_offset +
123 : : skb->head - (unsigned char *)uh);
124 : : } else {
125 : 0 : uh->len = htons(len);
126 : : }
127 : :
128 [ # # ]: 0 : if (!need_csum)
129 : 0 : continue;
130 : :
131 [ # # ]: 0 : uh->check = ~csum_fold(csum_add(partial,
132 : : (__force __wsum)htonl(len)));
133 : :
134 [ # # # # ]: 0 : if (skb->encapsulation || !offload_csum) {
135 : 0 : uh->check = gso_make_checksum(skb, ~uh->check);
136 [ # # ]: 0 : if (uh->check == 0)
137 : 0 : uh->check = CSUM_MANGLED_0;
138 : : } else {
139 : 0 : skb->ip_summed = CHECKSUM_PARTIAL;
140 : 0 : skb->csum_start = skb_transport_header(skb) - skb->head;
141 : 0 : skb->csum_offset = offsetof(struct udphdr, check);
142 : : }
143 [ # # ]: 0 : } while ((skb = skb->next));
144 : 0 : out:
145 : 0 : return segs;
146 : : }
147 : :
148 : 0 : struct sk_buff *skb_udp_tunnel_segment(struct sk_buff *skb,
149 : : netdev_features_t features,
150 : : bool is_ipv6)
151 : : {
152 : 0 : __be16 protocol = skb->protocol;
153 : 0 : const struct net_offload **offloads;
154 : 0 : const struct net_offload *ops;
155 : 0 : struct sk_buff *segs = ERR_PTR(-EINVAL);
156 : 0 : struct sk_buff *(*gso_inner_segment)(struct sk_buff *skb,
157 : : netdev_features_t features);
158 : :
159 : 0 : rcu_read_lock();
160 : :
161 [ # # # ]: 0 : switch (skb->inner_protocol_type) {
162 : 0 : case ENCAP_TYPE_ETHER:
163 : 0 : protocol = skb->inner_protocol;
164 : 0 : gso_inner_segment = skb_mac_gso_segment;
165 : 0 : break;
166 : 0 : case ENCAP_TYPE_IPPROTO:
167 [ # # ]: 0 : offloads = is_ipv6 ? inet6_offloads : inet_offloads;
168 [ # # ]: 0 : ops = rcu_dereference(offloads[skb->inner_ipproto]);
169 [ # # # # ]: 0 : if (!ops || !ops->callbacks.gso_segment)
170 : 0 : goto out_unlock;
171 : : gso_inner_segment = ops->callbacks.gso_segment;
172 : : break;
173 : 0 : default:
174 : 0 : goto out_unlock;
175 : : }
176 : :
177 : 0 : segs = __skb_udp_tunnel_segment(skb, features, gso_inner_segment,
178 : : protocol, is_ipv6);
179 : :
180 : 0 : out_unlock:
181 : 0 : rcu_read_unlock();
182 : :
183 : 0 : return segs;
184 : : }
185 : : EXPORT_SYMBOL(skb_udp_tunnel_segment);
186 : :
187 : 0 : static struct sk_buff *__udp_gso_segment_list(struct sk_buff *skb,
188 : : netdev_features_t features)
189 : : {
190 : 0 : unsigned int mss = skb_shinfo(skb)->gso_size;
191 : :
192 : 0 : skb = skb_segment_list(skb, features, skb_mac_header_len(skb));
193 [ # # ]: 0 : if (IS_ERR(skb))
194 : : return skb;
195 : :
196 : 0 : udp_hdr(skb)->len = htons(sizeof(struct udphdr) + mss);
197 : :
198 : 0 : return skb;
199 : : }
200 : :
201 : 0 : struct sk_buff *__udp_gso_segment(struct sk_buff *gso_skb,
202 : : netdev_features_t features)
203 : : {
204 : 0 : struct sock *sk = gso_skb->sk;
205 : 0 : unsigned int sum_truesize = 0;
206 : 0 : struct sk_buff *segs, *seg;
207 : 0 : struct udphdr *uh;
208 : 0 : unsigned int mss;
209 : 0 : bool copy_dtor;
210 : 0 : __sum16 check;
211 : 0 : __be16 newlen;
212 : :
213 [ # # ]: 0 : if (skb_shinfo(gso_skb)->gso_type & SKB_GSO_FRAGLIST)
214 : 0 : return __udp_gso_segment_list(gso_skb, features);
215 : :
216 [ # # ]: 0 : mss = skb_shinfo(gso_skb)->gso_size;
217 [ # # ]: 0 : if (gso_skb->len <= sizeof(*uh) + mss)
218 : : return ERR_PTR(-EINVAL);
219 : :
220 : 0 : skb_pull(gso_skb, sizeof(*uh));
221 : :
222 : : /* clear destructor to avoid skb_segment assigning it to tail */
223 : 0 : copy_dtor = gso_skb->destructor == sock_wfree;
224 [ # # ]: 0 : if (copy_dtor)
225 : 0 : gso_skb->destructor = NULL;
226 : :
227 : 0 : segs = skb_segment(gso_skb, features);
228 [ # # # # ]: 0 : if (IS_ERR_OR_NULL(segs)) {
229 [ # # ]: 0 : if (copy_dtor)
230 : 0 : gso_skb->destructor = sock_wfree;
231 : 0 : return segs;
232 : : }
233 : :
234 : : /* GSO partial and frag_list segmentation only requires splitting
235 : : * the frame into an MSS multiple and possibly a remainder, both
236 : : * cases return a GSO skb. So update the mss now.
237 : : */
238 [ # # ]: 0 : if (skb_is_gso(segs))
239 : 0 : mss *= skb_shinfo(segs)->gso_segs;
240 : :
241 : 0 : seg = segs;
242 : 0 : uh = udp_hdr(seg);
243 : :
244 : : /* preserve TX timestamp flags and TS key for first segment */
245 : 0 : skb_shinfo(seg)->tskey = skb_shinfo(gso_skb)->tskey;
246 : 0 : skb_shinfo(seg)->tx_flags |=
247 : 0 : (skb_shinfo(gso_skb)->tx_flags & SKBTX_ANY_TSTAMP);
248 : :
249 : : /* compute checksum adjustment based on old length versus new */
250 : 0 : newlen = htons(sizeof(*uh) + mss);
251 : 0 : check = csum16_add(csum16_sub(uh->check, uh->len), newlen);
252 : :
253 : 0 : for (;;) {
254 [ # # ]: 0 : if (copy_dtor) {
255 : 0 : seg->destructor = sock_wfree;
256 : 0 : seg->sk = sk;
257 : 0 : sum_truesize += seg->truesize;
258 : : }
259 : :
260 [ # # ]: 0 : if (!seg->next)
261 : : break;
262 : :
263 : 0 : uh->len = newlen;
264 : 0 : uh->check = check;
265 : :
266 [ # # ]: 0 : if (seg->ip_summed == CHECKSUM_PARTIAL)
267 [ # # ]: 0 : gso_reset_checksum(seg, ~check);
268 : : else
269 [ # # ]: 0 : uh->check = gso_make_checksum(seg, ~check) ? :
270 : : CSUM_MANGLED_0;
271 : :
272 : 0 : seg = seg->next;
273 : 0 : uh = udp_hdr(seg);
274 : : }
275 : :
276 : : /* last packet can be partial gso_size, account for that in checksum */
277 [ # # ]: 0 : newlen = htons(skb_tail_pointer(seg) - skb_transport_header(seg) +
278 : : seg->data_len);
279 [ # # ]: 0 : check = csum16_add(csum16_sub(uh->check, uh->len), newlen);
280 : :
281 : 0 : uh->len = newlen;
282 : 0 : uh->check = check;
283 : :
284 [ # # ]: 0 : if (seg->ip_summed == CHECKSUM_PARTIAL)
285 [ # # ]: 0 : gso_reset_checksum(seg, ~check);
286 : : else
287 [ # # ]: 0 : uh->check = gso_make_checksum(seg, ~check) ? : CSUM_MANGLED_0;
288 : :
289 : : /* update refcount for the packet */
290 [ # # ]: 0 : if (copy_dtor) {
291 : 0 : int delta = sum_truesize - gso_skb->truesize;
292 : :
293 : : /* In some pathological cases, delta can be negative.
294 : : * We need to either use refcount_add() or refcount_sub_and_test()
295 : : */
296 [ # # ]: 0 : if (likely(delta >= 0))
297 : 0 : refcount_add(delta, &sk->sk_wmem_alloc);
298 : : else
299 [ # # ]: 0 : WARN_ON_ONCE(refcount_sub_and_test(-delta, &sk->sk_wmem_alloc));
300 : : }
301 : : return segs;
302 : : }
303 : : EXPORT_SYMBOL_GPL(__udp_gso_segment);
304 : :
305 : 0 : static struct sk_buff *udp4_ufo_fragment(struct sk_buff *skb,
306 : : netdev_features_t features)
307 : : {
308 [ # # ]: 0 : struct sk_buff *segs = ERR_PTR(-EINVAL);
309 : 0 : unsigned int mss;
310 : 0 : __wsum csum;
311 : 0 : struct udphdr *uh;
312 : 0 : struct iphdr *iph;
313 : :
314 [ # # # # ]: 0 : if (skb->encapsulation &&
315 [ # # ]: 0 : (skb_shinfo(skb)->gso_type &
316 : : (SKB_GSO_UDP_TUNNEL|SKB_GSO_UDP_TUNNEL_CSUM))) {
317 : 0 : segs = skb_udp_tunnel_segment(skb, features, false);
318 : 0 : goto out;
319 : : }
320 : :
321 [ # # ]: 0 : if (!(skb_shinfo(skb)->gso_type & (SKB_GSO_UDP | SKB_GSO_UDP_L4)))
322 : 0 : goto out;
323 : :
324 [ # # ]: 0 : if (!pskb_may_pull(skb, sizeof(struct udphdr)))
325 : 0 : goto out;
326 : :
327 [ # # ]: 0 : if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4)
328 : 0 : return __udp_gso_segment(skb, features);
329 : :
330 [ # # ]: 0 : mss = skb_shinfo(skb)->gso_size;
331 [ # # ]: 0 : if (unlikely(skb->len <= mss))
332 : 0 : goto out;
333 : :
334 : : /* Do software UFO. Complete and fill in the UDP checksum as
335 : : * HW cannot do checksum of UDP packets sent as multiple
336 : : * IP fragments.
337 : : */
338 : :
339 : 0 : uh = udp_hdr(skb);
340 : 0 : iph = ip_hdr(skb);
341 : :
342 : 0 : uh->check = 0;
343 : 0 : csum = skb_checksum(skb, 0, skb->len, 0);
344 [ # # ]: 0 : uh->check = udp_v4_check(skb->len, iph->saddr, iph->daddr, csum);
345 [ # # ]: 0 : if (uh->check == 0)
346 : 0 : uh->check = CSUM_MANGLED_0;
347 : :
348 : 0 : skb->ip_summed = CHECKSUM_UNNECESSARY;
349 : :
350 : : /* If there is no outer header we can fake a checksum offload
351 : : * due to the fact that we have already done the checksum in
352 : : * software prior to segmenting the frame.
353 : : */
354 [ # # ]: 0 : if (!skb->encap_hdr_csum)
355 : 0 : features |= NETIF_F_HW_CSUM;
356 : :
357 : : /* Fragment the skb. IP headers of the fragments are updated in
358 : : * inet_gso_segment()
359 : : */
360 : 0 : segs = skb_segment(skb, features);
361 : : out:
362 : : return segs;
363 : : }
364 : :
365 : : #define UDP_GRO_CNT_MAX 64
366 : 0 : static struct sk_buff *udp_gro_receive_segment(struct list_head *head,
367 : : struct sk_buff *skb)
368 : : {
369 [ # # ]: 0 : struct udphdr *uh = udp_hdr(skb);
370 : 0 : struct sk_buff *pp = NULL;
371 : 0 : struct udphdr *uh2;
372 : 0 : struct sk_buff *p;
373 : 0 : unsigned int ulen;
374 : 0 : int ret = 0;
375 : :
376 : : /* requires non zero csum, for symmetry with GSO */
377 [ # # ]: 0 : if (!uh->check) {
378 : 0 : NAPI_GRO_CB(skb)->flush = 1;
379 : 0 : return NULL;
380 : : }
381 : :
382 : : /* Do not deal with padded or malicious packets, sorry ! */
383 : 0 : ulen = ntohs(uh->len);
384 [ # # # # ]: 0 : if (ulen <= sizeof(*uh) || ulen != skb_gro_len(skb)) {
385 : 0 : NAPI_GRO_CB(skb)->flush = 1;
386 : 0 : return NULL;
387 : : }
388 : : /* pull encapsulating udp header */
389 : 0 : skb_gro_pull(skb, sizeof(struct udphdr));
390 : :
391 [ # # ]: 0 : list_for_each_entry(p, head, list) {
392 [ # # ]: 0 : if (!NAPI_GRO_CB(p)->same_flow)
393 : 0 : continue;
394 : :
395 [ # # ]: 0 : uh2 = udp_hdr(p);
396 : :
397 : : /* Match ports only, as csum is always non zero */
398 [ # # ]: 0 : if ((*(u32 *)&uh->source != *(u32 *)&uh2->source)) {
399 : 0 : NAPI_GRO_CB(p)->same_flow = 0;
400 : 0 : continue;
401 : : }
402 : :
403 [ # # ]: 0 : if (NAPI_GRO_CB(skb)->is_flist != NAPI_GRO_CB(p)->is_flist) {
404 : 0 : NAPI_GRO_CB(skb)->flush = 1;
405 : 0 : return p;
406 : : }
407 : :
408 : : /* Terminate the flow on len mismatch or if it grow "too much".
409 : : * Under small packet flood GRO count could elsewhere grow a lot
410 : : * leading to excessive truesize values.
411 : : * On len mismatch merge the first packet shorter than gso_size,
412 : : * otherwise complete the GRO packet.
413 : : */
414 [ # # ]: 0 : if (ulen > ntohs(uh2->len)) {
415 : : pp = p;
416 : : } else {
417 [ # # ]: 0 : if (NAPI_GRO_CB(skb)->is_flist) {
418 [ # # ]: 0 : if (!pskb_may_pull(skb, skb_gro_offset(skb))) {
419 : 0 : NAPI_GRO_CB(skb)->flush = 1;
420 : 0 : return NULL;
421 : : }
422 [ # # ]: 0 : if ((skb->ip_summed != p->ip_summed) ||
423 [ # # ]: 0 : (skb->csum_level != p->csum_level)) {
424 : 0 : NAPI_GRO_CB(skb)->flush = 1;
425 : 0 : return NULL;
426 : : }
427 : 0 : ret = skb_gro_receive_list(p, skb);
428 : : } else {
429 : 0 : skb_gro_postpull_rcsum(skb, uh,
430 : : sizeof(struct udphdr));
431 : :
432 : 0 : ret = skb_gro_receive(p, skb);
433 : : }
434 : : }
435 : :
436 [ # # # # ]: 0 : if (ret || ulen != ntohs(uh2->len) ||
437 [ # # ]: 0 : NAPI_GRO_CB(p)->count >= UDP_GRO_CNT_MAX)
438 : : pp = p;
439 : :
440 : : return pp;
441 : : }
442 : :
443 : : /* mismatch, but we never need to flush */
444 : : return NULL;
445 : : }
446 : :
447 : 0 : struct sk_buff *udp_gro_receive(struct list_head *head, struct sk_buff *skb,
448 : : struct udphdr *uh, struct sock *sk)
449 : : {
450 : 0 : struct sk_buff *pp = NULL;
451 : 0 : struct sk_buff *p;
452 : 0 : struct udphdr *uh2;
453 [ # # ]: 0 : unsigned int off = skb_gro_offset(skb);
454 : 0 : int flush = 1;
455 : :
456 [ # # ]: 0 : if (skb->dev->features & NETIF_F_GRO_FRAGLIST)
457 [ # # # # ]: 0 : NAPI_GRO_CB(skb)->is_flist = sk ? !udp_sk(sk)->gro_enabled: 1;
458 : :
459 [ # # # # : 0 : if ((sk && udp_sk(sk)->gro_enabled) || NAPI_GRO_CB(skb)->is_flist) {
# # ]
460 [ # # ]: 0 : pp = call_gro_receive(udp_gro_receive_segment, head, skb);
461 : 0 : return pp;
462 : : }
463 : :
464 [ # # # # ]: 0 : if (!sk || NAPI_GRO_CB(skb)->encap_mark ||
465 [ # # ]: 0 : (skb->ip_summed != CHECKSUM_PARTIAL &&
466 [ # # ]: 0 : NAPI_GRO_CB(skb)->csum_cnt == 0 &&
467 : 0 : !NAPI_GRO_CB(skb)->csum_valid) ||
468 [ # # ]: 0 : !udp_sk(sk)->gro_receive)
469 : 0 : goto out;
470 : :
471 : : /* mark that this skb passed once through the tunnel gro layer */
472 : 0 : NAPI_GRO_CB(skb)->encap_mark = 1;
473 : :
474 : 0 : flush = 0;
475 : :
476 [ # # ]: 0 : list_for_each_entry(p, head, list) {
477 [ # # ]: 0 : if (!NAPI_GRO_CB(p)->same_flow)
478 : 0 : continue;
479 : :
480 : 0 : uh2 = (struct udphdr *)(p->data + off);
481 : :
482 : : /* Match ports and either checksums are either both zero
483 : : * or nonzero.
484 : : */
485 [ # # ]: 0 : if ((*(u32 *)&uh->source != *(u32 *)&uh2->source) ||
486 [ # # ]: 0 : (!uh->check ^ !uh2->check)) {
487 : 0 : NAPI_GRO_CB(p)->same_flow = 0;
488 : 0 : continue;
489 : : }
490 : : }
491 : :
492 : 0 : skb_gro_pull(skb, sizeof(struct udphdr)); /* pull encapsulating udp header */
493 : 0 : skb_gro_postpull_rcsum(skb, uh, sizeof(struct udphdr));
494 [ # # ]: 0 : pp = call_gro_receive_sk(udp_sk(sk)->gro_receive, sk, head, skb);
495 : :
496 : 0 : out:
497 : 0 : skb_gro_flush_final(skb, pp, flush);
498 : 0 : return pp;
499 : : }
500 : : EXPORT_SYMBOL(udp_gro_receive);
501 : :
502 : : INDIRECT_CALLABLE_SCOPE
503 : 0 : struct sk_buff *udp4_gro_receive(struct list_head *head, struct sk_buff *skb)
504 : : {
505 : 0 : struct udphdr *uh = udp_gro_udphdr(skb);
506 : 0 : struct sk_buff *pp;
507 : 0 : struct sock *sk;
508 : :
509 [ # # ]: 0 : if (unlikely(!uh))
510 : 0 : goto flush;
511 : :
512 : : /* Don't bother verifying checksum if we're going to flush anyway. */
513 [ # # ]: 0 : if (NAPI_GRO_CB(skb)->flush)
514 : 0 : goto skip;
515 : :
516 [ # # # # : 0 : if (skb_gro_checksum_validate_zero_check(skb, IPPROTO_UDP, uh->check,
# # ]
517 : : inet_gro_compute_pseudo))
518 : 0 : goto flush;
519 [ # # ]: 0 : else if (uh->check)
520 [ # # ]: 0 : skb_gro_checksum_try_convert(skb, IPPROTO_UDP,
521 : : inet_gro_compute_pseudo);
522 : 0 : skip:
523 : 0 : NAPI_GRO_CB(skb)->is_ipv6 = 0;
524 : 0 : rcu_read_lock();
525 [ # # # # ]: 0 : sk = static_branch_unlikely(&udp_encap_needed_key) ? udp4_lib_lookup_skb(skb, uh->source, uh->dest) : NULL;
526 : 0 : pp = udp_gro_receive(head, skb, uh, sk);
527 : 0 : rcu_read_unlock();
528 : 0 : return pp;
529 : :
530 : 0 : flush:
531 : 0 : NAPI_GRO_CB(skb)->flush = 1;
532 : 0 : return NULL;
533 : : }
534 : :
535 : 0 : static int udp_gro_complete_segment(struct sk_buff *skb)
536 : : {
537 : 0 : struct udphdr *uh = udp_hdr(skb);
538 : :
539 : 0 : skb->csum_start = (unsigned char *)uh - skb->head;
540 : 0 : skb->csum_offset = offsetof(struct udphdr, check);
541 : 0 : skb->ip_summed = CHECKSUM_PARTIAL;
542 : :
543 : 0 : skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count;
544 : 0 : skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_L4;
545 : 0 : return 0;
546 : : }
547 : :
548 : 0 : int udp_gro_complete(struct sk_buff *skb, int nhoff,
549 : : udp_lookup_t lookup)
550 : : {
551 : 0 : __be16 newlen = htons(skb->len - nhoff);
552 : 0 : struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);
553 : 0 : int err = -ENOSYS;
554 : 0 : struct sock *sk;
555 : :
556 : 0 : uh->len = newlen;
557 : :
558 : 0 : rcu_read_lock();
559 [ # # # # ]: 0 : sk = INDIRECT_CALL_INET(lookup, udp6_lib_lookup_skb,
560 : : udp4_lib_lookup_skb, skb, uh->source, uh->dest);
561 [ # # # # ]: 0 : if (sk && udp_sk(sk)->gro_complete) {
562 : 0 : skb_shinfo(skb)->gso_type = uh->check ? SKB_GSO_UDP_TUNNEL_CSUM
563 [ # # ]: 0 : : SKB_GSO_UDP_TUNNEL;
564 : :
565 : : /* Set encapsulation before calling into inner gro_complete()
566 : : * functions to make them set up the inner offsets.
567 : : */
568 : 0 : skb->encapsulation = 1;
569 : 0 : err = udp_sk(sk)->gro_complete(sk, skb,
570 : 0 : nhoff + sizeof(struct udphdr));
571 : : } else {
572 : 0 : err = udp_gro_complete_segment(skb);
573 : : }
574 : 0 : rcu_read_unlock();
575 : :
576 [ # # ]: 0 : if (skb->remcsum_offload)
577 : 0 : skb_shinfo(skb)->gso_type |= SKB_GSO_TUNNEL_REMCSUM;
578 : :
579 : 0 : return err;
580 : : }
581 : : EXPORT_SYMBOL(udp_gro_complete);
582 : :
583 : 0 : INDIRECT_CALLABLE_SCOPE int udp4_gro_complete(struct sk_buff *skb, int nhoff)
584 : : {
585 [ # # ]: 0 : const struct iphdr *iph = ip_hdr(skb);
586 : 0 : struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);
587 : :
588 [ # # ]: 0 : if (NAPI_GRO_CB(skb)->is_flist) {
589 : 0 : uh->len = htons(skb->len - nhoff);
590 : :
591 [ # # ]: 0 : skb_shinfo(skb)->gso_type |= (SKB_GSO_FRAGLIST|SKB_GSO_UDP_L4);
592 : 0 : skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count;
593 : :
594 [ # # ]: 0 : if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
595 [ # # ]: 0 : if (skb->csum_level < SKB_MAX_CSUM_LEVEL)
596 : 0 : skb->csum_level++;
597 : : } else {
598 : 0 : skb->ip_summed = CHECKSUM_UNNECESSARY;
599 : 0 : skb->csum_level = 0;
600 : : }
601 : :
602 : 0 : return 0;
603 : : }
604 : :
605 [ # # ]: 0 : if (uh->check)
606 : 0 : uh->check = ~udp_v4_check(skb->len - nhoff, iph->saddr,
607 : : iph->daddr, 0);
608 : :
609 : 0 : return udp_gro_complete(skb, nhoff, udp4_lib_lookup_skb);
610 : : }
611 : :
612 : : static const struct net_offload udpv4_offload = {
613 : : .callbacks = {
614 : : .gso_segment = udp4_ufo_fragment,
615 : : .gro_receive = udp4_gro_receive,
616 : : .gro_complete = udp4_gro_complete,
617 : : },
618 : : };
619 : :
620 : 30 : int __init udpv4_offload_init(void)
621 : : {
622 : 30 : return inet_add_offload(&udpv4_offload, IPPROTO_UDP);
623 : : }
|