udp_offload.c 12.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 *	IPV4 GSO/GRO offload support
 *	Linux INET implementation
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 *
 *	UDPv4 GSO support
 */

#include <linux/skbuff.h>
#include <net/udp.h>
#include <net/protocol.h>

T
Tom Herbert 已提交
17 18 19 20
static struct sk_buff *__skb_udp_tunnel_segment(struct sk_buff *skb,
	netdev_features_t features,
	struct sk_buff *(*gso_inner_segment)(struct sk_buff *skb,
					     netdev_features_t features),
21
	__be16 new_protocol, bool is_ipv6)
22
{
23
	int tnl_hlen = skb_inner_mac_header(skb) - skb_transport_header(skb);
24
	bool remcsum, need_csum, offload_csum, gso_partial;
25
	struct sk_buff *segs = ERR_PTR(-EINVAL);
26
	struct udphdr *uh = udp_hdr(skb);
27 28
	u16 mac_offset = skb->mac_header;
	__be16 protocol = skb->protocol;
29
	u16 mac_len = skb->mac_len;
30
	int udp_offset, outer_hlen;
31
	__wsum partial;
32
	bool need_ipsec;
33 34 35 36

	if (unlikely(!pskb_may_pull(skb, tnl_hlen)))
		goto out;

37 38 39 40 41 42
	/* Adjust partial header checksum to negate old length.
	 * We cannot rely on the value contained in uh->len as it is
	 * possible that the actual value exceeds the boundaries of the
	 * 16 bit length field due to the header being added outside of an
	 * IP or IPv6 frame that was already limited to 64K - 1.
	 */
43 44 45 46 47
	if (skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL)
		partial = (__force __wsum)uh->len;
	else
		partial = (__force __wsum)htonl(skb->len);
	partial = csum_sub(csum_unfold(uh->check), partial);
48 49

	/* setup inner skb. */
50
	skb->encapsulation = 0;
51
	SKB_GSO_CB(skb)->encap_level = 0;
52 53 54 55
	__skb_pull(skb, tnl_hlen);
	skb_reset_mac_header(skb);
	skb_set_network_header(skb, skb_inner_network_offset(skb));
	skb->mac_len = skb_inner_network_offset(skb);
T
Tom Herbert 已提交
56
	skb->protocol = new_protocol;
57 58

	need_csum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM);
59
	skb->encap_hdr_csum = need_csum;
60 61

	remcsum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_TUNNEL_REMCSUM);
62
	skb->remcsum_offload = remcsum;
63

64
	need_ipsec = skb_dst(skb) && dst_xfrm(skb_dst(skb));
65 66
	/* Try to offload checksum if possible */
	offload_csum = !!(need_csum &&
67
			  !need_ipsec &&
68 69 70
			  (skb->dev->features &
			   (is_ipv6 ? (NETIF_F_HW_CSUM | NETIF_F_IPV6_CSUM) :
				      (NETIF_F_HW_CSUM | NETIF_F_IP_CSUM))));
71

72 73
	features &= skb->dev->hw_enc_features;

74 75 76 77
	/* The only checksum offload we care about from here on out is the
	 * outer one so strip the existing checksum feature flags and
	 * instead set the flag based on our outer checksum offload value.
	 */
78
	if (remcsum) {
79
		features &= ~NETIF_F_CSUM_MASK;
80
		if (!need_csum || offload_csum)
81 82 83
			features |= NETIF_F_HW_CSUM;
	}

84
	/* segment inner packet. */
85
	segs = gso_inner_segment(skb, features);
86
	if (IS_ERR_OR_NULL(segs)) {
87 88 89 90 91
		skb_gso_error_unwind(skb, protocol, tnl_hlen, mac_offset,
				     mac_len);
		goto out;
	}

92 93
	gso_partial = !!(skb_shinfo(segs)->gso_type & SKB_GSO_PARTIAL);

94 95 96 97
	outer_hlen = skb_tnl_header_len(skb);
	udp_offset = outer_hlen - tnl_hlen;
	skb = segs;
	do {
98
		unsigned int len;
99

100
		if (remcsum)
101
			skb->ip_summed = CHECKSUM_NONE;
102 103 104

		/* Set up inner headers if we are offloading inner checksum */
		if (skb->ip_summed == CHECKSUM_PARTIAL) {
105 106 107
			skb_reset_inner_headers(skb);
			skb->encapsulation = 1;
		}
108 109

		skb->mac_len = mac_len;
110
		skb->protocol = protocol;
111

112
		__skb_push(skb, outer_hlen);
113 114 115
		skb_reset_mac_header(skb);
		skb_set_network_header(skb, mac_len);
		skb_set_transport_header(skb, udp_offset);
116
		len = skb->len - udp_offset;
117
		uh = udp_hdr(skb);
118 119 120 121 122

		/* If we are only performing partial GSO the inner header
		 * will be using a length value equal to only one MSS sized
		 * segment instead of the entire frame.
		 */
123
		if (gso_partial && skb_is_gso(skb)) {
124 125 126 127 128 129
			uh->len = htons(skb_shinfo(skb)->gso_size +
					SKB_GSO_CB(skb)->data_offset +
					skb->head - (unsigned char *)uh);
		} else {
			uh->len = htons(len);
		}
130

131 132 133
		if (!need_csum)
			continue;

134 135
		uh->check = ~csum_fold(csum_add(partial,
				       (__force __wsum)htonl(len)));
136

137 138
		if (skb->encapsulation || !offload_csum) {
			uh->check = gso_make_checksum(skb, ~uh->check);
139 140
			if (uh->check == 0)
				uh->check = CSUM_MANGLED_0;
141 142 143 144
		} else {
			skb->ip_summed = CHECKSUM_PARTIAL;
			skb->csum_start = skb_transport_header(skb) - skb->head;
			skb->csum_offset = offsetof(struct udphdr, check);
145 146 147 148 149 150
		}
	} while ((skb = skb->next));
out:
	return segs;
}

T
Tom Herbert 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
struct sk_buff *skb_udp_tunnel_segment(struct sk_buff *skb,
				       netdev_features_t features,
				       bool is_ipv6)
{
	__be16 protocol = skb->protocol;
	const struct net_offload **offloads;
	const struct net_offload *ops;
	struct sk_buff *segs = ERR_PTR(-EINVAL);
	struct sk_buff *(*gso_inner_segment)(struct sk_buff *skb,
					     netdev_features_t features);

	rcu_read_lock();

	switch (skb->inner_protocol_type) {
	case ENCAP_TYPE_ETHER:
		protocol = skb->inner_protocol;
		gso_inner_segment = skb_mac_gso_segment;
		break;
	case ENCAP_TYPE_IPPROTO:
		offloads = is_ipv6 ? inet6_offloads : inet_offloads;
		ops = rcu_dereference(offloads[skb->inner_ipproto]);
		if (!ops || !ops->callbacks.gso_segment)
			goto out_unlock;
		gso_inner_segment = ops->callbacks.gso_segment;
		break;
	default:
		goto out_unlock;
	}

	segs = __skb_udp_tunnel_segment(skb, features, gso_inner_segment,
181
					protocol, is_ipv6);
T
Tom Herbert 已提交
182 183 184 185 186 187

out_unlock:
	rcu_read_unlock();

	return segs;
}
188
EXPORT_SYMBOL(skb_udp_tunnel_segment);
T
Tom Herbert 已提交
189

W
Willem de Bruijn 已提交
190
struct sk_buff *__udp_gso_segment(struct sk_buff *gso_skb,
191
				  netdev_features_t features)
W
Willem de Bruijn 已提交
192
{
193 194
	struct sock *sk = gso_skb->sk;
	unsigned int sum_truesize = 0;
W
Willem de Bruijn 已提交
195 196
	struct sk_buff *segs, *seg;
	struct udphdr *uh;
197
	unsigned int mss;
198
	bool copy_dtor;
199 200
	__sum16 check;
	__be16 newlen;
W
Willem de Bruijn 已提交
201

202
	mss = skb_shinfo(gso_skb)->gso_size;
W
Willem de Bruijn 已提交
203 204 205 206 207
	if (gso_skb->len <= sizeof(*uh) + mss)
		return ERR_PTR(-EINVAL);

	skb_pull(gso_skb, sizeof(*uh));

208
	/* clear destructor to avoid skb_segment assigning it to tail */
209 210 211
	copy_dtor = gso_skb->destructor == sock_wfree;
	if (copy_dtor)
		gso_skb->destructor = NULL;
212

W
Willem de Bruijn 已提交
213
	segs = skb_segment(gso_skb, features);
214
	if (unlikely(IS_ERR_OR_NULL(segs))) {
215 216
		if (copy_dtor)
			gso_skb->destructor = sock_wfree;
W
Willem de Bruijn 已提交
217
		return segs;
218
	}
W
Willem de Bruijn 已提交
219

220 221 222 223 224 225 226
	/* GSO partial and frag_list segmentation only requires splitting
	 * the frame into an MSS multiple and possibly a remainder, both
	 * cases return a GSO skb. So update the mss now.
	 */
	if (skb_is_gso(segs))
		mss *= skb_shinfo(segs)->gso_segs;

227 228
	seg = segs;
	uh = udp_hdr(seg);
229 230 231 232 233

	/* compute checksum adjustment based on old length versus new */
	newlen = htons(sizeof(*uh) + mss);
	check = csum16_add(csum16_sub(uh->check, uh->len), newlen);

234
	for (;;) {
235 236 237 238 239
		if (copy_dtor) {
			seg->destructor = sock_wfree;
			seg->sk = sk;
			sum_truesize += seg->truesize;
		}
W
Willem de Bruijn 已提交
240

241 242
		if (!seg->next)
			break;
243 244 245

		uh->len = newlen;
		uh->check = check;
246

247 248 249 250 251 252
		if (seg->ip_summed == CHECKSUM_PARTIAL)
			gso_reset_checksum(seg, ~check);
		else
			uh->check = gso_make_checksum(seg, ~check) ? :
				    CSUM_MANGLED_0;

253 254
		seg = seg->next;
		uh = udp_hdr(seg);
W
Willem de Bruijn 已提交
255 256
	}

257 258 259 260 261 262 263 264
	/* last packet can be partial gso_size, account for that in checksum */
	newlen = htons(skb_tail_pointer(seg) - skb_transport_header(seg) +
		       seg->data_len);
	check = csum16_add(csum16_sub(uh->check, uh->len), newlen);

	uh->len = newlen;
	uh->check = check;

265 266 267 268 269
	if (seg->ip_summed == CHECKSUM_PARTIAL)
		gso_reset_checksum(seg, ~check);
	else
		uh->check = gso_make_checksum(seg, ~check) ? : CSUM_MANGLED_0;

270
	/* update refcount for the packet */
271 272 273
	if (copy_dtor)
		refcount_add(sum_truesize - gso_skb->truesize,
			     &sk->sk_wmem_alloc);
W
Willem de Bruijn 已提交
274 275 276 277
	return segs;
}
EXPORT_SYMBOL_GPL(__udp_gso_segment);

278 279
static struct sk_buff *udp4_ufo_fragment(struct sk_buff *skb,
					 netdev_features_t features)
280 281
{
	struct sk_buff *segs = ERR_PTR(-EINVAL);
282 283 284 285
	unsigned int mss;
	__wsum csum;
	struct udphdr *uh;
	struct iphdr *iph;
286 287

	if (skb->encapsulation &&
288
	    (skb_shinfo(skb)->gso_type &
289
	     (SKB_GSO_UDP_TUNNEL|SKB_GSO_UDP_TUNNEL_CSUM))) {
T
Tom Herbert 已提交
290
		segs = skb_udp_tunnel_segment(skb, features, false);
291 292 293
		goto out;
	}

W
Willem de Bruijn 已提交
294
	if (!(skb_shinfo(skb)->gso_type & (SKB_GSO_UDP | SKB_GSO_UDP_L4)))
295 296
		goto out;

297 298 299
	if (!pskb_may_pull(skb, sizeof(struct udphdr)))
		goto out;

W
Willem de Bruijn 已提交
300
	if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4)
301
		return __udp_gso_segment(skb, features);
W
Willem de Bruijn 已提交
302

303 304 305 306 307 308 309 310
	mss = skb_shinfo(skb)->gso_size;
	if (unlikely(skb->len <= mss))
		goto out;

	/* Do software UFO. Complete and fill in the UDP checksum as
	 * HW cannot do checksum of UDP packets sent as multiple
	 * IP fragments.
	 */
311

312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
	uh = udp_hdr(skb);
	iph = ip_hdr(skb);

	uh->check = 0;
	csum = skb_checksum(skb, 0, skb->len, 0);
	uh->check = udp_v4_check(skb->len, iph->saddr, iph->daddr, csum);
	if (uh->check == 0)
		uh->check = CSUM_MANGLED_0;

	skb->ip_summed = CHECKSUM_UNNECESSARY;

	/* If there is no outer header we can fake a checksum offload
	 * due to the fact that we have already done the checksum in
	 * software prior to segmenting the frame.
	 */
	if (!skb->encap_hdr_csum)
		features |= NETIF_F_HW_CSUM;

	/* Fragment the skb. IP headers of the fragments are updated in
	 * inet_gso_segment()
	 */
	segs = skb_segment(skb, features);
out:
335 336 337
	return segs;
}

T
Tom Herbert 已提交
338
struct sk_buff **udp_gro_receive(struct sk_buff **head, struct sk_buff *skb,
339
				 struct udphdr *uh, udp_lookup_t lookup)
340 341
{
	struct sk_buff *p, **pp = NULL;
T
Tom Herbert 已提交
342 343
	struct udphdr *uh2;
	unsigned int off = skb_gro_offset(skb);
344
	int flush = 1;
345
	struct sock *sk;
346

347
	if (NAPI_GRO_CB(skb)->encap_mark ||
348 349 350
	    (skb->ip_summed != CHECKSUM_PARTIAL &&
	     NAPI_GRO_CB(skb)->csum_cnt == 0 &&
	     !NAPI_GRO_CB(skb)->csum_valid))
351 352
		goto out;

353 354
	/* mark that this skb passed once through the tunnel gro layer */
	NAPI_GRO_CB(skb)->encap_mark = 1;
355 356

	rcu_read_lock();
357 358 359 360
	sk = (*lookup)(skb, uh->source, uh->dest);

	if (sk && udp_sk(sk)->gro_receive)
		goto unflush;
361 362 363 364 365 366 367 368 369 370
	goto out_unlock;

unflush:
	flush = 0;

	for (p = *head; p; p = p->next) {
		if (!NAPI_GRO_CB(p)->same_flow)
			continue;

		uh2 = (struct udphdr   *)(p->data + off);
T
Tom Herbert 已提交
371 372 373 374 375 376

		/* Match ports and either checksums are either both zero
		 * or nonzero.
		 */
		if ((*(u32 *)&uh->source != *(u32 *)&uh2->source) ||
		    (!uh->check ^ !uh2->check)) {
377 378 379 380 381 382
			NAPI_GRO_CB(p)->same_flow = 0;
			continue;
		}
	}

	skb_gro_pull(skb, sizeof(struct udphdr)); /* pull encapsulating udp header */
383
	skb_gro_postpull_rcsum(skb, uh, sizeof(struct udphdr));
S
Sabrina Dubroca 已提交
384
	pp = call_gro_receive_sk(udp_sk(sk)->gro_receive, sk, head, skb);
385 386 387 388 389 390 391

out_unlock:
	rcu_read_unlock();
out:
	NAPI_GRO_CB(skb)->flush |= flush;
	return pp;
}
392
EXPORT_SYMBOL(udp_gro_receive);
393

T
Tom Herbert 已提交
394 395 396 397 398
static struct sk_buff **udp4_gro_receive(struct sk_buff **head,
					 struct sk_buff *skb)
{
	struct udphdr *uh = udp_gro_udphdr(skb);

399 400
	if (unlikely(!uh))
		goto flush;
T
Tom Herbert 已提交
401

402
	/* Don't bother verifying checksum if we're going to flush anyway. */
403
	if (NAPI_GRO_CB(skb)->flush)
404 405 406 407 408 409 410 411 412
		goto skip;

	if (skb_gro_checksum_validate_zero_check(skb, IPPROTO_UDP, uh->check,
						 inet_gro_compute_pseudo))
		goto flush;
	else if (uh->check)
		skb_gro_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
					     inet_gro_compute_pseudo);
skip:
413
	NAPI_GRO_CB(skb)->is_ipv6 = 0;
414
	return udp_gro_receive(head, skb, uh, udp4_lib_lookup_skb);
415 416 417 418

flush:
	NAPI_GRO_CB(skb)->flush = 1;
	return NULL;
T
Tom Herbert 已提交
419 420
}

421 422
int udp_gro_complete(struct sk_buff *skb, int nhoff,
		     udp_lookup_t lookup)
423 424 425 426
{
	__be16 newlen = htons(skb->len - nhoff);
	struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);
	int err = -ENOSYS;
427
	struct sock *sk;
428 429 430

	uh->len = newlen;

431 432 433 434 435
	/* Set encapsulation before calling into inner gro_complete() functions
	 * to make them set up the inner offsets.
	 */
	skb->encapsulation = 1;

436
	rcu_read_lock();
437 438 439 440
	sk = (*lookup)(skb, uh->source, uh->dest);
	if (sk && udp_sk(sk)->gro_complete)
		err = udp_sk(sk)->gro_complete(sk, skb,
				nhoff + sizeof(struct udphdr));
441
	rcu_read_unlock();
442 443 444 445

	if (skb->remcsum_offload)
		skb_shinfo(skb)->gso_type |= SKB_GSO_TUNNEL_REMCSUM;

446 447
	return err;
}
448
EXPORT_SYMBOL(udp_gro_complete);
449

450
static int udp4_gro_complete(struct sk_buff *skb, int nhoff)
T
Tom Herbert 已提交
451 452 453 454
{
	const struct iphdr *iph = ip_hdr(skb);
	struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);

455 456
	if (uh->check) {
		skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL_CSUM;
T
Tom Herbert 已提交
457 458
		uh->check = ~udp_v4_check(skb->len - nhoff, iph->saddr,
					  iph->daddr, 0);
459 460 461
	} else {
		skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
	}
T
Tom Herbert 已提交
462

463
	return udp_gro_complete(skb, nhoff, udp4_lib_lookup_skb);
T
Tom Herbert 已提交
464 465
}

466 467
static const struct net_offload udpv4_offload = {
	.callbacks = {
468
		.gso_segment = udp4_ufo_fragment,
T
Tom Herbert 已提交
469 470
		.gro_receive  =	udp4_gro_receive,
		.gro_complete =	udp4_gro_complete,
471 472 473 474 475 476 477
	},
};

int __init udpv4_offload_init(void)
{
	return inet_add_offload(&udpv4_offload, IPPROTO_UDP);
}