xref: /linux/net/core/skbuff.c (revision e3617433c3da3d0859a4bc67f3f975e87f650ebf)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *	Routines having to do with the 'struct sk_buff' memory handlers.
4  *
5  *	Authors:	Alan Cox <alan@lxorguk.ukuu.org.uk>
6  *			Florian La Roche <rzsfl@rz.uni-sb.de>
7  *
8  *	Fixes:
9  *		Alan Cox	:	Fixed the worst of the load
10  *					balancer bugs.
11  *		Dave Platt	:	Interrupt stacking fix.
12  *	Richard Kooijman	:	Timestamp fixes.
13  *		Alan Cox	:	Changed buffer format.
14  *		Alan Cox	:	destructor hook for AF_UNIX etc.
15  *		Linus Torvalds	:	Better skb_clone.
16  *		Alan Cox	:	Added skb_copy.
17  *		Alan Cox	:	Added all the changed routines Linus
18  *					only put in the headers
19  *		Ray VanTassle	:	Fixed --skb->lock in free
20  *		Alan Cox	:	skb_copy copy arp field
21  *		Andi Kleen	:	slabified it.
22  *		Robert Olsson	:	Removed skb_head_pool
23  *
24  *	NOTE:
25  *		The __skb_ routines should be called with interrupts
26  *	disabled, or you better be *real* sure that the operation is atomic
27  *	with respect to whatever list is being frobbed (e.g. via lock_sock()
28  *	or via disabling bottom half handlers, etc).
29  */
30 
31 /*
32  *	The functions in this file will not compile correctly with gcc 2.4.x
33  */
34 
35 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
36 
37 #include <linux/module.h>
38 #include <linux/types.h>
39 #include <linux/kernel.h>
40 #include <linux/mm.h>
41 #include <linux/interrupt.h>
42 #include <linux/in.h>
43 #include <linux/inet.h>
44 #include <linux/slab.h>
45 #include <linux/tcp.h>
46 #include <linux/udp.h>
47 #include <linux/sctp.h>
48 #include <linux/netdevice.h>
49 #ifdef CONFIG_NET_CLS_ACT
50 #include <net/pkt_sched.h>
51 #endif
52 #include <linux/string.h>
53 #include <linux/skbuff.h>
54 #include <linux/splice.h>
55 #include <linux/cache.h>
56 #include <linux/rtnetlink.h>
57 #include <linux/init.h>
58 #include <linux/scatterlist.h>
59 #include <linux/errqueue.h>
60 #include <linux/prefetch.h>
61 #include <linux/if_vlan.h>
62 #include <linux/mpls.h>
63 #include <linux/kcov.h>
64 
65 #include <net/protocol.h>
66 #include <net/dst.h>
67 #include <net/sock.h>
68 #include <net/checksum.h>
69 #include <net/ip6_checksum.h>
70 #include <net/xfrm.h>
71 #include <net/mpls.h>
72 #include <net/mptcp.h>
73 #include <net/mctp.h>
74 #include <net/page_pool.h>
75 
76 #include <linux/uaccess.h>
77 #include <trace/events/skb.h>
78 #include <linux/highmem.h>
79 #include <linux/capability.h>
80 #include <linux/user_namespace.h>
81 #include <linux/indirect_call_wrapper.h>
82 
83 #include "datagram.h"
84 #include "sock_destructor.h"
85 
86 struct kmem_cache *skbuff_head_cache __ro_after_init;
87 static struct kmem_cache *skbuff_fclone_cache __ro_after_init;
88 #ifdef CONFIG_SKB_EXTENSIONS
89 static struct kmem_cache *skbuff_ext_cache __ro_after_init;
90 #endif
91 int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
92 EXPORT_SYMBOL(sysctl_max_skb_frags);
93 
94 /**
95  *	skb_panic - private function for out-of-line support
96  *	@skb:	buffer
97  *	@sz:	size
98  *	@addr:	address
99  *	@msg:	skb_over_panic or skb_under_panic
100  *
101  *	Out-of-line support for skb_put() and skb_push().
102  *	Called via the wrapper skb_over_panic() or skb_under_panic().
103  *	Keep out of line to prevent kernel bloat.
104  *	__builtin_return_address is not used because it is not always reliable.
105  */
106 static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
107 		      const char msg[])
108 {
109 	pr_emerg("%s: text:%px len:%d put:%d head:%px data:%px tail:%#lx end:%#lx dev:%s\n",
110 		 msg, addr, skb->len, sz, skb->head, skb->data,
111 		 (unsigned long)skb->tail, (unsigned long)skb->end,
112 		 skb->dev ? skb->dev->name : "<NULL>");
113 	BUG();
114 }
115 
116 static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
117 {
118 	skb_panic(skb, sz, addr, __func__);
119 }
120 
121 static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
122 {
123 	skb_panic(skb, sz, addr, __func__);
124 }
125 
126 #define NAPI_SKB_CACHE_SIZE	64
127 #define NAPI_SKB_CACHE_BULK	16
128 #define NAPI_SKB_CACHE_HALF	(NAPI_SKB_CACHE_SIZE / 2)
129 
130 struct napi_alloc_cache {
131 	struct page_frag_cache page;
132 	unsigned int skb_count;
133 	void *skb_cache[NAPI_SKB_CACHE_SIZE];
134 };
135 
136 static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
137 static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
138 
139 void *__napi_alloc_frag_align(unsigned int fragsz, unsigned int align_mask)
140 {
141 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
142 
143 	fragsz = SKB_DATA_ALIGN(fragsz);
144 
145 	return page_frag_alloc_align(&nc->page, fragsz, GFP_ATOMIC, align_mask);
146 }
147 EXPORT_SYMBOL(__napi_alloc_frag_align);
148 
149 void *__netdev_alloc_frag_align(unsigned int fragsz, unsigned int align_mask)
150 {
151 	void *data;
152 
153 	fragsz = SKB_DATA_ALIGN(fragsz);
154 	if (in_hardirq() || irqs_disabled()) {
155 		struct page_frag_cache *nc = this_cpu_ptr(&netdev_alloc_cache);
156 
157 		data = page_frag_alloc_align(nc, fragsz, GFP_ATOMIC, align_mask);
158 	} else {
159 		struct napi_alloc_cache *nc;
160 
161 		local_bh_disable();
162 		nc = this_cpu_ptr(&napi_alloc_cache);
163 		data = page_frag_alloc_align(&nc->page, fragsz, GFP_ATOMIC, align_mask);
164 		local_bh_enable();
165 	}
166 	return data;
167 }
168 EXPORT_SYMBOL(__netdev_alloc_frag_align);
169 
170 static struct sk_buff *napi_skb_cache_get(void)
171 {
172 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
173 	struct sk_buff *skb;
174 
175 	if (unlikely(!nc->skb_count))
176 		nc->skb_count = kmem_cache_alloc_bulk(skbuff_head_cache,
177 						      GFP_ATOMIC,
178 						      NAPI_SKB_CACHE_BULK,
179 						      nc->skb_cache);
180 	if (unlikely(!nc->skb_count))
181 		return NULL;
182 
183 	skb = nc->skb_cache[--nc->skb_count];
184 	kasan_unpoison_object_data(skbuff_head_cache, skb);
185 
186 	return skb;
187 }
188 
189 /* Caller must provide SKB that is memset cleared */
190 static void __build_skb_around(struct sk_buff *skb, void *data,
191 			       unsigned int frag_size)
192 {
193 	struct skb_shared_info *shinfo;
194 	unsigned int size = frag_size ? : ksize(data);
195 
196 	size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
197 
198 	/* Assumes caller memset cleared SKB */
199 	skb->truesize = SKB_TRUESIZE(size);
200 	refcount_set(&skb->users, 1);
201 	skb->head = data;
202 	skb->data = data;
203 	skb_reset_tail_pointer(skb);
204 	skb->end = skb->tail + size;
205 	skb->mac_header = (typeof(skb->mac_header))~0U;
206 	skb->transport_header = (typeof(skb->transport_header))~0U;
207 
208 	/* make sure we initialize shinfo sequentially */
209 	shinfo = skb_shinfo(skb);
210 	memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
211 	atomic_set(&shinfo->dataref, 1);
212 
213 	skb_set_kcov_handle(skb, kcov_common_handle());
214 }
215 
216 /**
217  * __build_skb - build a network buffer
218  * @data: data buffer provided by caller
219  * @frag_size: size of data, or 0 if head was kmalloced
220  *
221  * Allocate a new &sk_buff. Caller provides space holding head and
222  * skb_shared_info. @data must have been allocated by kmalloc() only if
223  * @frag_size is 0, otherwise data should come from the page allocator
224  *  or vmalloc()
225  * The return is the new skb buffer.
226  * On a failure the return is %NULL, and @data is not freed.
227  * Notes :
228  *  Before IO, driver allocates only data buffer where NIC put incoming frame
229  *  Driver should add room at head (NET_SKB_PAD) and
230  *  MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
231  *  After IO, driver calls build_skb(), to allocate sk_buff and populate it
232  *  before giving packet to stack.
233  *  RX rings only contains data buffers, not full skbs.
234  */
235 struct sk_buff *__build_skb(void *data, unsigned int frag_size)
236 {
237 	struct sk_buff *skb;
238 
239 	skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
240 	if (unlikely(!skb))
241 		return NULL;
242 
243 	memset(skb, 0, offsetof(struct sk_buff, tail));
244 	__build_skb_around(skb, data, frag_size);
245 
246 	return skb;
247 }
248 
249 /* build_skb() is wrapper over __build_skb(), that specifically
250  * takes care of skb->head and skb->pfmemalloc
251  * This means that if @frag_size is not zero, then @data must be backed
252  * by a page fragment, not kmalloc() or vmalloc()
253  */
254 struct sk_buff *build_skb(void *data, unsigned int frag_size)
255 {
256 	struct sk_buff *skb = __build_skb(data, frag_size);
257 
258 	if (skb && frag_size) {
259 		skb->head_frag = 1;
260 		if (page_is_pfmemalloc(virt_to_head_page(data)))
261 			skb->pfmemalloc = 1;
262 	}
263 	return skb;
264 }
265 EXPORT_SYMBOL(build_skb);
266 
267 /**
268  * build_skb_around - build a network buffer around provided skb
269  * @skb: sk_buff provide by caller, must be memset cleared
270  * @data: data buffer provided by caller
271  * @frag_size: size of data, or 0 if head was kmalloced
272  */
273 struct sk_buff *build_skb_around(struct sk_buff *skb,
274 				 void *data, unsigned int frag_size)
275 {
276 	if (unlikely(!skb))
277 		return NULL;
278 
279 	__build_skb_around(skb, data, frag_size);
280 
281 	if (frag_size) {
282 		skb->head_frag = 1;
283 		if (page_is_pfmemalloc(virt_to_head_page(data)))
284 			skb->pfmemalloc = 1;
285 	}
286 	return skb;
287 }
288 EXPORT_SYMBOL(build_skb_around);
289 
290 /**
291  * __napi_build_skb - build a network buffer
292  * @data: data buffer provided by caller
293  * @frag_size: size of data, or 0 if head was kmalloced
294  *
295  * Version of __build_skb() that uses NAPI percpu caches to obtain
296  * skbuff_head instead of inplace allocation.
297  *
298  * Returns a new &sk_buff on success, %NULL on allocation failure.
299  */
300 static struct sk_buff *__napi_build_skb(void *data, unsigned int frag_size)
301 {
302 	struct sk_buff *skb;
303 
304 	skb = napi_skb_cache_get();
305 	if (unlikely(!skb))
306 		return NULL;
307 
308 	memset(skb, 0, offsetof(struct sk_buff, tail));
309 	__build_skb_around(skb, data, frag_size);
310 
311 	return skb;
312 }
313 
314 /**
315  * napi_build_skb - build a network buffer
316  * @data: data buffer provided by caller
317  * @frag_size: size of data, or 0 if head was kmalloced
318  *
319  * Version of __napi_build_skb() that takes care of skb->head_frag
320  * and skb->pfmemalloc when the data is a page or page fragment.
321  *
322  * Returns a new &sk_buff on success, %NULL on allocation failure.
323  */
324 struct sk_buff *napi_build_skb(void *data, unsigned int frag_size)
325 {
326 	struct sk_buff *skb = __napi_build_skb(data, frag_size);
327 
328 	if (likely(skb) && frag_size) {
329 		skb->head_frag = 1;
330 		skb_propagate_pfmemalloc(virt_to_head_page(data), skb);
331 	}
332 
333 	return skb;
334 }
335 EXPORT_SYMBOL(napi_build_skb);
336 
337 /*
338  * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
339  * the caller if emergency pfmemalloc reserves are being used. If it is and
340  * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
341  * may be used. Otherwise, the packet data may be discarded until enough
342  * memory is free
343  */
344 static void *kmalloc_reserve(size_t size, gfp_t flags, int node,
345 			     bool *pfmemalloc)
346 {
347 	void *obj;
348 	bool ret_pfmemalloc = false;
349 
350 	/*
351 	 * Try a regular allocation, when that fails and we're not entitled
352 	 * to the reserves, fail.
353 	 */
354 	obj = kmalloc_node_track_caller(size,
355 					flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
356 					node);
357 	if (obj || !(gfp_pfmemalloc_allowed(flags)))
358 		goto out;
359 
360 	/* Try again but now we are using pfmemalloc reserves */
361 	ret_pfmemalloc = true;
362 	obj = kmalloc_node_track_caller(size, flags, node);
363 
364 out:
365 	if (pfmemalloc)
366 		*pfmemalloc = ret_pfmemalloc;
367 
368 	return obj;
369 }
370 
371 /* 	Allocate a new skbuff. We do this ourselves so we can fill in a few
372  *	'private' fields and also do memory statistics to find all the
373  *	[BEEP] leaks.
374  *
375  */
376 
377 /**
378  *	__alloc_skb	-	allocate a network buffer
379  *	@size: size to allocate
380  *	@gfp_mask: allocation mask
381  *	@flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
382  *		instead of head cache and allocate a cloned (child) skb.
383  *		If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
384  *		allocations in case the data is required for writeback
385  *	@node: numa node to allocate memory on
386  *
387  *	Allocate a new &sk_buff. The returned buffer has no headroom and a
388  *	tail room of at least size bytes. The object has a reference count
389  *	of one. The return is the buffer. On a failure the return is %NULL.
390  *
391  *	Buffers may only be allocated from interrupts using a @gfp_mask of
392  *	%GFP_ATOMIC.
393  */
394 struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
395 			    int flags, int node)
396 {
397 	struct kmem_cache *cache;
398 	struct sk_buff *skb;
399 	unsigned int osize;
400 	bool pfmemalloc;
401 	u8 *data;
402 
403 	cache = (flags & SKB_ALLOC_FCLONE)
404 		? skbuff_fclone_cache : skbuff_head_cache;
405 
406 	if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
407 		gfp_mask |= __GFP_MEMALLOC;
408 
409 	/* Get the HEAD */
410 	if ((flags & (SKB_ALLOC_FCLONE | SKB_ALLOC_NAPI)) == SKB_ALLOC_NAPI &&
411 	    likely(node == NUMA_NO_NODE || node == numa_mem_id()))
412 		skb = napi_skb_cache_get();
413 	else
414 		skb = kmem_cache_alloc_node(cache, gfp_mask & ~GFP_DMA, node);
415 	if (unlikely(!skb))
416 		return NULL;
417 	prefetchw(skb);
418 
419 	/* We do our best to align skb_shared_info on a separate cache
420 	 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
421 	 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
422 	 * Both skb->head and skb_shared_info are cache line aligned.
423 	 */
424 	size = SKB_DATA_ALIGN(size);
425 	size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
426 	data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
427 	if (unlikely(!data))
428 		goto nodata;
429 	/* kmalloc(size) might give us more room than requested.
430 	 * Put skb_shared_info exactly at the end of allocated zone,
431 	 * to allow max possible filling before reallocation.
432 	 */
433 	osize = ksize(data);
434 	size = SKB_WITH_OVERHEAD(osize);
435 	prefetchw(data + size);
436 
437 	/*
438 	 * Only clear those fields we need to clear, not those that we will
439 	 * actually initialise below. Hence, don't put any more fields after
440 	 * the tail pointer in struct sk_buff!
441 	 */
442 	memset(skb, 0, offsetof(struct sk_buff, tail));
443 	__build_skb_around(skb, data, osize);
444 	skb->pfmemalloc = pfmemalloc;
445 
446 	if (flags & SKB_ALLOC_FCLONE) {
447 		struct sk_buff_fclones *fclones;
448 
449 		fclones = container_of(skb, struct sk_buff_fclones, skb1);
450 
451 		skb->fclone = SKB_FCLONE_ORIG;
452 		refcount_set(&fclones->fclone_ref, 1);
453 
454 		fclones->skb2.fclone = SKB_FCLONE_CLONE;
455 	}
456 
457 	return skb;
458 
459 nodata:
460 	kmem_cache_free(cache, skb);
461 	return NULL;
462 }
463 EXPORT_SYMBOL(__alloc_skb);
464 
465 /**
466  *	__netdev_alloc_skb - allocate an skbuff for rx on a specific device
467  *	@dev: network device to receive on
468  *	@len: length to allocate
469  *	@gfp_mask: get_free_pages mask, passed to alloc_skb
470  *
471  *	Allocate a new &sk_buff and assign it a usage count of one. The
472  *	buffer has NET_SKB_PAD headroom built in. Users should allocate
473  *	the headroom they think they need without accounting for the
474  *	built in space. The built in space is used for optimisations.
475  *
476  *	%NULL is returned if there is no free memory.
477  */
478 struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
479 				   gfp_t gfp_mask)
480 {
481 	struct page_frag_cache *nc;
482 	struct sk_buff *skb;
483 	bool pfmemalloc;
484 	void *data;
485 
486 	len += NET_SKB_PAD;
487 
488 	/* If requested length is either too small or too big,
489 	 * we use kmalloc() for skb->head allocation.
490 	 */
491 	if (len <= SKB_WITH_OVERHEAD(1024) ||
492 	    len > SKB_WITH_OVERHEAD(PAGE_SIZE) ||
493 	    (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
494 		skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
495 		if (!skb)
496 			goto skb_fail;
497 		goto skb_success;
498 	}
499 
500 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
501 	len = SKB_DATA_ALIGN(len);
502 
503 	if (sk_memalloc_socks())
504 		gfp_mask |= __GFP_MEMALLOC;
505 
506 	if (in_hardirq() || irqs_disabled()) {
507 		nc = this_cpu_ptr(&netdev_alloc_cache);
508 		data = page_frag_alloc(nc, len, gfp_mask);
509 		pfmemalloc = nc->pfmemalloc;
510 	} else {
511 		local_bh_disable();
512 		nc = this_cpu_ptr(&napi_alloc_cache.page);
513 		data = page_frag_alloc(nc, len, gfp_mask);
514 		pfmemalloc = nc->pfmemalloc;
515 		local_bh_enable();
516 	}
517 
518 	if (unlikely(!data))
519 		return NULL;
520 
521 	skb = __build_skb(data, len);
522 	if (unlikely(!skb)) {
523 		skb_free_frag(data);
524 		return NULL;
525 	}
526 
527 	if (pfmemalloc)
528 		skb->pfmemalloc = 1;
529 	skb->head_frag = 1;
530 
531 skb_success:
532 	skb_reserve(skb, NET_SKB_PAD);
533 	skb->dev = dev;
534 
535 skb_fail:
536 	return skb;
537 }
538 EXPORT_SYMBOL(__netdev_alloc_skb);
539 
540 /**
541  *	__napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
542  *	@napi: napi instance this buffer was allocated for
543  *	@len: length to allocate
544  *	@gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
545  *
546  *	Allocate a new sk_buff for use in NAPI receive.  This buffer will
547  *	attempt to allocate the head from a special reserved region used
548  *	only for NAPI Rx allocation.  By doing this we can save several
549  *	CPU cycles by avoiding having to disable and re-enable IRQs.
550  *
551  *	%NULL is returned if there is no free memory.
552  */
553 struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
554 				 gfp_t gfp_mask)
555 {
556 	struct napi_alloc_cache *nc;
557 	struct sk_buff *skb;
558 	void *data;
559 
560 	len += NET_SKB_PAD + NET_IP_ALIGN;
561 
562 	/* If requested length is either too small or too big,
563 	 * we use kmalloc() for skb->head allocation.
564 	 */
565 	if (len <= SKB_WITH_OVERHEAD(1024) ||
566 	    len > SKB_WITH_OVERHEAD(PAGE_SIZE) ||
567 	    (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
568 		skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX | SKB_ALLOC_NAPI,
569 				  NUMA_NO_NODE);
570 		if (!skb)
571 			goto skb_fail;
572 		goto skb_success;
573 	}
574 
575 	nc = this_cpu_ptr(&napi_alloc_cache);
576 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
577 	len = SKB_DATA_ALIGN(len);
578 
579 	if (sk_memalloc_socks())
580 		gfp_mask |= __GFP_MEMALLOC;
581 
582 	data = page_frag_alloc(&nc->page, len, gfp_mask);
583 	if (unlikely(!data))
584 		return NULL;
585 
586 	skb = __napi_build_skb(data, len);
587 	if (unlikely(!skb)) {
588 		skb_free_frag(data);
589 		return NULL;
590 	}
591 
592 	if (nc->page.pfmemalloc)
593 		skb->pfmemalloc = 1;
594 	skb->head_frag = 1;
595 
596 skb_success:
597 	skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
598 	skb->dev = napi->dev;
599 
600 skb_fail:
601 	return skb;
602 }
603 EXPORT_SYMBOL(__napi_alloc_skb);
604 
605 void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
606 		     int size, unsigned int truesize)
607 {
608 	skb_fill_page_desc(skb, i, page, off, size);
609 	skb->len += size;
610 	skb->data_len += size;
611 	skb->truesize += truesize;
612 }
613 EXPORT_SYMBOL(skb_add_rx_frag);
614 
615 void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
616 			  unsigned int truesize)
617 {
618 	skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
619 
620 	skb_frag_size_add(frag, size);
621 	skb->len += size;
622 	skb->data_len += size;
623 	skb->truesize += truesize;
624 }
625 EXPORT_SYMBOL(skb_coalesce_rx_frag);
626 
627 static void skb_drop_list(struct sk_buff **listp)
628 {
629 	kfree_skb_list(*listp);
630 	*listp = NULL;
631 }
632 
633 static inline void skb_drop_fraglist(struct sk_buff *skb)
634 {
635 	skb_drop_list(&skb_shinfo(skb)->frag_list);
636 }
637 
638 static void skb_clone_fraglist(struct sk_buff *skb)
639 {
640 	struct sk_buff *list;
641 
642 	skb_walk_frags(skb, list)
643 		skb_get(list);
644 }
645 
646 static void skb_free_head(struct sk_buff *skb)
647 {
648 	unsigned char *head = skb->head;
649 
650 	if (skb->head_frag) {
651 		if (skb_pp_recycle(skb, head))
652 			return;
653 		skb_free_frag(head);
654 	} else {
655 		kfree(head);
656 	}
657 }
658 
659 static void skb_release_data(struct sk_buff *skb)
660 {
661 	struct skb_shared_info *shinfo = skb_shinfo(skb);
662 	int i;
663 
664 	if (skb->cloned &&
665 	    atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
666 			      &shinfo->dataref))
667 		goto exit;
668 
669 	skb_zcopy_clear(skb, true);
670 
671 	for (i = 0; i < shinfo->nr_frags; i++)
672 		__skb_frag_unref(&shinfo->frags[i], skb->pp_recycle);
673 
674 	if (shinfo->frag_list)
675 		kfree_skb_list(shinfo->frag_list);
676 
677 	skb_free_head(skb);
678 exit:
679 	/* When we clone an SKB we copy the reycling bit. The pp_recycle
680 	 * bit is only set on the head though, so in order to avoid races
681 	 * while trying to recycle fragments on __skb_frag_unref() we need
682 	 * to make one SKB responsible for triggering the recycle path.
683 	 * So disable the recycling bit if an SKB is cloned and we have
684 	 * additional references to to the fragmented part of the SKB.
685 	 * Eventually the last SKB will have the recycling bit set and it's
686 	 * dataref set to 0, which will trigger the recycling
687 	 */
688 	skb->pp_recycle = 0;
689 }
690 
691 /*
692  *	Free an skbuff by memory without cleaning the state.
693  */
694 static void kfree_skbmem(struct sk_buff *skb)
695 {
696 	struct sk_buff_fclones *fclones;
697 
698 	switch (skb->fclone) {
699 	case SKB_FCLONE_UNAVAILABLE:
700 		kmem_cache_free(skbuff_head_cache, skb);
701 		return;
702 
703 	case SKB_FCLONE_ORIG:
704 		fclones = container_of(skb, struct sk_buff_fclones, skb1);
705 
706 		/* We usually free the clone (TX completion) before original skb
707 		 * This test would have no chance to be true for the clone,
708 		 * while here, branch prediction will be good.
709 		 */
710 		if (refcount_read(&fclones->fclone_ref) == 1)
711 			goto fastpath;
712 		break;
713 
714 	default: /* SKB_FCLONE_CLONE */
715 		fclones = container_of(skb, struct sk_buff_fclones, skb2);
716 		break;
717 	}
718 	if (!refcount_dec_and_test(&fclones->fclone_ref))
719 		return;
720 fastpath:
721 	kmem_cache_free(skbuff_fclone_cache, fclones);
722 }
723 
724 void skb_release_head_state(struct sk_buff *skb)
725 {
726 	skb_dst_drop(skb);
727 	if (skb->destructor) {
728 		WARN_ON(in_hardirq());
729 		skb->destructor(skb);
730 	}
731 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
732 	nf_conntrack_put(skb_nfct(skb));
733 #endif
734 	skb_ext_put(skb);
735 }
736 
737 /* Free everything but the sk_buff shell. */
738 static void skb_release_all(struct sk_buff *skb)
739 {
740 	skb_release_head_state(skb);
741 	if (likely(skb->head))
742 		skb_release_data(skb);
743 }
744 
745 /**
746  *	__kfree_skb - private function
747  *	@skb: buffer
748  *
749  *	Free an sk_buff. Release anything attached to the buffer.
750  *	Clean the state. This is an internal helper function. Users should
751  *	always call kfree_skb
752  */
753 
754 void __kfree_skb(struct sk_buff *skb)
755 {
756 	skb_release_all(skb);
757 	kfree_skbmem(skb);
758 }
759 EXPORT_SYMBOL(__kfree_skb);
760 
761 /**
762  *	kfree_skb - free an sk_buff
763  *	@skb: buffer to free
764  *
765  *	Drop a reference to the buffer and free it if the usage count has
766  *	hit zero.
767  */
768 void kfree_skb(struct sk_buff *skb)
769 {
770 	if (!skb_unref(skb))
771 		return;
772 
773 	trace_kfree_skb(skb, __builtin_return_address(0));
774 	__kfree_skb(skb);
775 }
776 EXPORT_SYMBOL(kfree_skb);
777 
778 void kfree_skb_list(struct sk_buff *segs)
779 {
780 	while (segs) {
781 		struct sk_buff *next = segs->next;
782 
783 		kfree_skb(segs);
784 		segs = next;
785 	}
786 }
787 EXPORT_SYMBOL(kfree_skb_list);
788 
789 /* Dump skb information and contents.
790  *
791  * Must only be called from net_ratelimit()-ed paths.
792  *
793  * Dumps whole packets if full_pkt, only headers otherwise.
794  */
795 void skb_dump(const char *level, const struct sk_buff *skb, bool full_pkt)
796 {
797 	struct skb_shared_info *sh = skb_shinfo(skb);
798 	struct net_device *dev = skb->dev;
799 	struct sock *sk = skb->sk;
800 	struct sk_buff *list_skb;
801 	bool has_mac, has_trans;
802 	int headroom, tailroom;
803 	int i, len, seg_len;
804 
805 	if (full_pkt)
806 		len = skb->len;
807 	else
808 		len = min_t(int, skb->len, MAX_HEADER + 128);
809 
810 	headroom = skb_headroom(skb);
811 	tailroom = skb_tailroom(skb);
812 
813 	has_mac = skb_mac_header_was_set(skb);
814 	has_trans = skb_transport_header_was_set(skb);
815 
816 	printk("%sskb len=%u headroom=%u headlen=%u tailroom=%u\n"
817 	       "mac=(%d,%d) net=(%d,%d) trans=%d\n"
818 	       "shinfo(txflags=%u nr_frags=%u gso(size=%hu type=%u segs=%hu))\n"
819 	       "csum(0x%x ip_summed=%u complete_sw=%u valid=%u level=%u)\n"
820 	       "hash(0x%x sw=%u l4=%u) proto=0x%04x pkttype=%u iif=%d\n",
821 	       level, skb->len, headroom, skb_headlen(skb), tailroom,
822 	       has_mac ? skb->mac_header : -1,
823 	       has_mac ? skb_mac_header_len(skb) : -1,
824 	       skb->network_header,
825 	       has_trans ? skb_network_header_len(skb) : -1,
826 	       has_trans ? skb->transport_header : -1,
827 	       sh->tx_flags, sh->nr_frags,
828 	       sh->gso_size, sh->gso_type, sh->gso_segs,
829 	       skb->csum, skb->ip_summed, skb->csum_complete_sw,
830 	       skb->csum_valid, skb->csum_level,
831 	       skb->hash, skb->sw_hash, skb->l4_hash,
832 	       ntohs(skb->protocol), skb->pkt_type, skb->skb_iif);
833 
834 	if (dev)
835 		printk("%sdev name=%s feat=0x%pNF\n",
836 		       level, dev->name, &dev->features);
837 	if (sk)
838 		printk("%ssk family=%hu type=%u proto=%u\n",
839 		       level, sk->sk_family, sk->sk_type, sk->sk_protocol);
840 
841 	if (full_pkt && headroom)
842 		print_hex_dump(level, "skb headroom: ", DUMP_PREFIX_OFFSET,
843 			       16, 1, skb->head, headroom, false);
844 
845 	seg_len = min_t(int, skb_headlen(skb), len);
846 	if (seg_len)
847 		print_hex_dump(level, "skb linear:   ", DUMP_PREFIX_OFFSET,
848 			       16, 1, skb->data, seg_len, false);
849 	len -= seg_len;
850 
851 	if (full_pkt && tailroom)
852 		print_hex_dump(level, "skb tailroom: ", DUMP_PREFIX_OFFSET,
853 			       16, 1, skb_tail_pointer(skb), tailroom, false);
854 
855 	for (i = 0; len && i < skb_shinfo(skb)->nr_frags; i++) {
856 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
857 		u32 p_off, p_len, copied;
858 		struct page *p;
859 		u8 *vaddr;
860 
861 		skb_frag_foreach_page(frag, skb_frag_off(frag),
862 				      skb_frag_size(frag), p, p_off, p_len,
863 				      copied) {
864 			seg_len = min_t(int, p_len, len);
865 			vaddr = kmap_atomic(p);
866 			print_hex_dump(level, "skb frag:     ",
867 				       DUMP_PREFIX_OFFSET,
868 				       16, 1, vaddr + p_off, seg_len, false);
869 			kunmap_atomic(vaddr);
870 			len -= seg_len;
871 			if (!len)
872 				break;
873 		}
874 	}
875 
876 	if (full_pkt && skb_has_frag_list(skb)) {
877 		printk("skb fraglist:\n");
878 		skb_walk_frags(skb, list_skb)
879 			skb_dump(level, list_skb, true);
880 	}
881 }
882 EXPORT_SYMBOL(skb_dump);
883 
884 /**
885  *	skb_tx_error - report an sk_buff xmit error
886  *	@skb: buffer that triggered an error
887  *
888  *	Report xmit error if a device callback is tracking this skb.
889  *	skb must be freed afterwards.
890  */
891 void skb_tx_error(struct sk_buff *skb)
892 {
893 	skb_zcopy_clear(skb, true);
894 }
895 EXPORT_SYMBOL(skb_tx_error);
896 
897 #ifdef CONFIG_TRACEPOINTS
898 /**
899  *	consume_skb - free an skbuff
900  *	@skb: buffer to free
901  *
902  *	Drop a ref to the buffer and free it if the usage count has hit zero
903  *	Functions identically to kfree_skb, but kfree_skb assumes that the frame
904  *	is being dropped after a failure and notes that
905  */
906 void consume_skb(struct sk_buff *skb)
907 {
908 	if (!skb_unref(skb))
909 		return;
910 
911 	trace_consume_skb(skb);
912 	__kfree_skb(skb);
913 }
914 EXPORT_SYMBOL(consume_skb);
915 #endif
916 
917 /**
918  *	__consume_stateless_skb - free an skbuff, assuming it is stateless
919  *	@skb: buffer to free
920  *
921  *	Alike consume_skb(), but this variant assumes that this is the last
922  *	skb reference and all the head states have been already dropped
923  */
924 void __consume_stateless_skb(struct sk_buff *skb)
925 {
926 	trace_consume_skb(skb);
927 	skb_release_data(skb);
928 	kfree_skbmem(skb);
929 }
930 
931 static void napi_skb_cache_put(struct sk_buff *skb)
932 {
933 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
934 	u32 i;
935 
936 	kasan_poison_object_data(skbuff_head_cache, skb);
937 	nc->skb_cache[nc->skb_count++] = skb;
938 
939 	if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
940 		for (i = NAPI_SKB_CACHE_HALF; i < NAPI_SKB_CACHE_SIZE; i++)
941 			kasan_unpoison_object_data(skbuff_head_cache,
942 						   nc->skb_cache[i]);
943 
944 		kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_HALF,
945 				     nc->skb_cache + NAPI_SKB_CACHE_HALF);
946 		nc->skb_count = NAPI_SKB_CACHE_HALF;
947 	}
948 }
949 
950 void __kfree_skb_defer(struct sk_buff *skb)
951 {
952 	skb_release_all(skb);
953 	napi_skb_cache_put(skb);
954 }
955 
956 void napi_skb_free_stolen_head(struct sk_buff *skb)
957 {
958 	if (unlikely(skb->slow_gro)) {
959 		nf_reset_ct(skb);
960 		skb_dst_drop(skb);
961 		skb_ext_put(skb);
962 		skb_orphan(skb);
963 		skb->slow_gro = 0;
964 	}
965 	napi_skb_cache_put(skb);
966 }
967 
968 void napi_consume_skb(struct sk_buff *skb, int budget)
969 {
970 	/* Zero budget indicate non-NAPI context called us, like netpoll */
971 	if (unlikely(!budget)) {
972 		dev_consume_skb_any(skb);
973 		return;
974 	}
975 
976 	lockdep_assert_in_softirq();
977 
978 	if (!skb_unref(skb))
979 		return;
980 
981 	/* if reaching here SKB is ready to free */
982 	trace_consume_skb(skb);
983 
984 	/* if SKB is a clone, don't handle this case */
985 	if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
986 		__kfree_skb(skb);
987 		return;
988 	}
989 
990 	skb_release_all(skb);
991 	napi_skb_cache_put(skb);
992 }
993 EXPORT_SYMBOL(napi_consume_skb);
994 
995 /* Make sure a field is enclosed inside headers_start/headers_end section */
996 #define CHECK_SKB_FIELD(field) \
997 	BUILD_BUG_ON(offsetof(struct sk_buff, field) <		\
998 		     offsetof(struct sk_buff, headers_start));	\
999 	BUILD_BUG_ON(offsetof(struct sk_buff, field) >		\
1000 		     offsetof(struct sk_buff, headers_end));	\
1001 
1002 static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1003 {
1004 	new->tstamp		= old->tstamp;
1005 	/* We do not copy old->sk */
1006 	new->dev		= old->dev;
1007 	memcpy(new->cb, old->cb, sizeof(old->cb));
1008 	skb_dst_copy(new, old);
1009 	__skb_ext_copy(new, old);
1010 	__nf_copy(new, old, false);
1011 
1012 	/* Note : this field could be in headers_start/headers_end section
1013 	 * It is not yet because we do not want to have a 16 bit hole
1014 	 */
1015 	new->queue_mapping = old->queue_mapping;
1016 
1017 	memcpy(&new->headers_start, &old->headers_start,
1018 	       offsetof(struct sk_buff, headers_end) -
1019 	       offsetof(struct sk_buff, headers_start));
1020 	CHECK_SKB_FIELD(protocol);
1021 	CHECK_SKB_FIELD(csum);
1022 	CHECK_SKB_FIELD(hash);
1023 	CHECK_SKB_FIELD(priority);
1024 	CHECK_SKB_FIELD(skb_iif);
1025 	CHECK_SKB_FIELD(vlan_proto);
1026 	CHECK_SKB_FIELD(vlan_tci);
1027 	CHECK_SKB_FIELD(transport_header);
1028 	CHECK_SKB_FIELD(network_header);
1029 	CHECK_SKB_FIELD(mac_header);
1030 	CHECK_SKB_FIELD(inner_protocol);
1031 	CHECK_SKB_FIELD(inner_transport_header);
1032 	CHECK_SKB_FIELD(inner_network_header);
1033 	CHECK_SKB_FIELD(inner_mac_header);
1034 	CHECK_SKB_FIELD(mark);
1035 #ifdef CONFIG_NETWORK_SECMARK
1036 	CHECK_SKB_FIELD(secmark);
1037 #endif
1038 #ifdef CONFIG_NET_RX_BUSY_POLL
1039 	CHECK_SKB_FIELD(napi_id);
1040 #endif
1041 #ifdef CONFIG_XPS
1042 	CHECK_SKB_FIELD(sender_cpu);
1043 #endif
1044 #ifdef CONFIG_NET_SCHED
1045 	CHECK_SKB_FIELD(tc_index);
1046 #endif
1047 
1048 }
1049 
1050 /*
1051  * You should not add any new code to this function.  Add it to
1052  * __copy_skb_header above instead.
1053  */
1054 static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
1055 {
1056 #define C(x) n->x = skb->x
1057 
1058 	n->next = n->prev = NULL;
1059 	n->sk = NULL;
1060 	__copy_skb_header(n, skb);
1061 
1062 	C(len);
1063 	C(data_len);
1064 	C(mac_len);
1065 	n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
1066 	n->cloned = 1;
1067 	n->nohdr = 0;
1068 	n->peeked = 0;
1069 	C(pfmemalloc);
1070 	C(pp_recycle);
1071 	n->destructor = NULL;
1072 	C(tail);
1073 	C(end);
1074 	C(head);
1075 	C(head_frag);
1076 	C(data);
1077 	C(truesize);
1078 	refcount_set(&n->users, 1);
1079 
1080 	atomic_inc(&(skb_shinfo(skb)->dataref));
1081 	skb->cloned = 1;
1082 
1083 	return n;
1084 #undef C
1085 }
1086 
1087 /**
1088  * alloc_skb_for_msg() - allocate sk_buff to wrap frag list forming a msg
1089  * @first: first sk_buff of the msg
1090  */
1091 struct sk_buff *alloc_skb_for_msg(struct sk_buff *first)
1092 {
1093 	struct sk_buff *n;
1094 
1095 	n = alloc_skb(0, GFP_ATOMIC);
1096 	if (!n)
1097 		return NULL;
1098 
1099 	n->len = first->len;
1100 	n->data_len = first->len;
1101 	n->truesize = first->truesize;
1102 
1103 	skb_shinfo(n)->frag_list = first;
1104 
1105 	__copy_skb_header(n, first);
1106 	n->destructor = NULL;
1107 
1108 	return n;
1109 }
1110 EXPORT_SYMBOL_GPL(alloc_skb_for_msg);
1111 
1112 /**
1113  *	skb_morph	-	morph one skb into another
1114  *	@dst: the skb to receive the contents
1115  *	@src: the skb to supply the contents
1116  *
1117  *	This is identical to skb_clone except that the target skb is
1118  *	supplied by the user.
1119  *
1120  *	The target skb is returned upon exit.
1121  */
1122 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
1123 {
1124 	skb_release_all(dst);
1125 	return __skb_clone(dst, src);
1126 }
1127 EXPORT_SYMBOL_GPL(skb_morph);
1128 
1129 int mm_account_pinned_pages(struct mmpin *mmp, size_t size)
1130 {
1131 	unsigned long max_pg, num_pg, new_pg, old_pg;
1132 	struct user_struct *user;
1133 
1134 	if (capable(CAP_IPC_LOCK) || !size)
1135 		return 0;
1136 
1137 	num_pg = (size >> PAGE_SHIFT) + 2;	/* worst case */
1138 	max_pg = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
1139 	user = mmp->user ? : current_user();
1140 
1141 	do {
1142 		old_pg = atomic_long_read(&user->locked_vm);
1143 		new_pg = old_pg + num_pg;
1144 		if (new_pg > max_pg)
1145 			return -ENOBUFS;
1146 	} while (atomic_long_cmpxchg(&user->locked_vm, old_pg, new_pg) !=
1147 		 old_pg);
1148 
1149 	if (!mmp->user) {
1150 		mmp->user = get_uid(user);
1151 		mmp->num_pg = num_pg;
1152 	} else {
1153 		mmp->num_pg += num_pg;
1154 	}
1155 
1156 	return 0;
1157 }
1158 EXPORT_SYMBOL_GPL(mm_account_pinned_pages);
1159 
1160 void mm_unaccount_pinned_pages(struct mmpin *mmp)
1161 {
1162 	if (mmp->user) {
1163 		atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm);
1164 		free_uid(mmp->user);
1165 	}
1166 }
1167 EXPORT_SYMBOL_GPL(mm_unaccount_pinned_pages);
1168 
1169 struct ubuf_info *msg_zerocopy_alloc(struct sock *sk, size_t size)
1170 {
1171 	struct ubuf_info *uarg;
1172 	struct sk_buff *skb;
1173 
1174 	WARN_ON_ONCE(!in_task());
1175 
1176 	skb = sock_omalloc(sk, 0, GFP_KERNEL);
1177 	if (!skb)
1178 		return NULL;
1179 
1180 	BUILD_BUG_ON(sizeof(*uarg) > sizeof(skb->cb));
1181 	uarg = (void *)skb->cb;
1182 	uarg->mmp.user = NULL;
1183 
1184 	if (mm_account_pinned_pages(&uarg->mmp, size)) {
1185 		kfree_skb(skb);
1186 		return NULL;
1187 	}
1188 
1189 	uarg->callback = msg_zerocopy_callback;
1190 	uarg->id = ((u32)atomic_inc_return(&sk->sk_zckey)) - 1;
1191 	uarg->len = 1;
1192 	uarg->bytelen = size;
1193 	uarg->zerocopy = 1;
1194 	uarg->flags = SKBFL_ZEROCOPY_FRAG;
1195 	refcount_set(&uarg->refcnt, 1);
1196 	sock_hold(sk);
1197 
1198 	return uarg;
1199 }
1200 EXPORT_SYMBOL_GPL(msg_zerocopy_alloc);
1201 
1202 static inline struct sk_buff *skb_from_uarg(struct ubuf_info *uarg)
1203 {
1204 	return container_of((void *)uarg, struct sk_buff, cb);
1205 }
1206 
1207 struct ubuf_info *msg_zerocopy_realloc(struct sock *sk, size_t size,
1208 				       struct ubuf_info *uarg)
1209 {
1210 	if (uarg) {
1211 		const u32 byte_limit = 1 << 19;		/* limit to a few TSO */
1212 		u32 bytelen, next;
1213 
1214 		/* realloc only when socket is locked (TCP, UDP cork),
1215 		 * so uarg->len and sk_zckey access is serialized
1216 		 */
1217 		if (!sock_owned_by_user(sk)) {
1218 			WARN_ON_ONCE(1);
1219 			return NULL;
1220 		}
1221 
1222 		bytelen = uarg->bytelen + size;
1223 		if (uarg->len == USHRT_MAX - 1 || bytelen > byte_limit) {
1224 			/* TCP can create new skb to attach new uarg */
1225 			if (sk->sk_type == SOCK_STREAM)
1226 				goto new_alloc;
1227 			return NULL;
1228 		}
1229 
1230 		next = (u32)atomic_read(&sk->sk_zckey);
1231 		if ((u32)(uarg->id + uarg->len) == next) {
1232 			if (mm_account_pinned_pages(&uarg->mmp, size))
1233 				return NULL;
1234 			uarg->len++;
1235 			uarg->bytelen = bytelen;
1236 			atomic_set(&sk->sk_zckey, ++next);
1237 
1238 			/* no extra ref when appending to datagram (MSG_MORE) */
1239 			if (sk->sk_type == SOCK_STREAM)
1240 				net_zcopy_get(uarg);
1241 
1242 			return uarg;
1243 		}
1244 	}
1245 
1246 new_alloc:
1247 	return msg_zerocopy_alloc(sk, size);
1248 }
1249 EXPORT_SYMBOL_GPL(msg_zerocopy_realloc);
1250 
1251 static bool skb_zerocopy_notify_extend(struct sk_buff *skb, u32 lo, u16 len)
1252 {
1253 	struct sock_exterr_skb *serr = SKB_EXT_ERR(skb);
1254 	u32 old_lo, old_hi;
1255 	u64 sum_len;
1256 
1257 	old_lo = serr->ee.ee_info;
1258 	old_hi = serr->ee.ee_data;
1259 	sum_len = old_hi - old_lo + 1ULL + len;
1260 
1261 	if (sum_len >= (1ULL << 32))
1262 		return false;
1263 
1264 	if (lo != old_hi + 1)
1265 		return false;
1266 
1267 	serr->ee.ee_data += len;
1268 	return true;
1269 }
1270 
1271 static void __msg_zerocopy_callback(struct ubuf_info *uarg)
1272 {
1273 	struct sk_buff *tail, *skb = skb_from_uarg(uarg);
1274 	struct sock_exterr_skb *serr;
1275 	struct sock *sk = skb->sk;
1276 	struct sk_buff_head *q;
1277 	unsigned long flags;
1278 	bool is_zerocopy;
1279 	u32 lo, hi;
1280 	u16 len;
1281 
1282 	mm_unaccount_pinned_pages(&uarg->mmp);
1283 
1284 	/* if !len, there was only 1 call, and it was aborted
1285 	 * so do not queue a completion notification
1286 	 */
1287 	if (!uarg->len || sock_flag(sk, SOCK_DEAD))
1288 		goto release;
1289 
1290 	len = uarg->len;
1291 	lo = uarg->id;
1292 	hi = uarg->id + len - 1;
1293 	is_zerocopy = uarg->zerocopy;
1294 
1295 	serr = SKB_EXT_ERR(skb);
1296 	memset(serr, 0, sizeof(*serr));
1297 	serr->ee.ee_errno = 0;
1298 	serr->ee.ee_origin = SO_EE_ORIGIN_ZEROCOPY;
1299 	serr->ee.ee_data = hi;
1300 	serr->ee.ee_info = lo;
1301 	if (!is_zerocopy)
1302 		serr->ee.ee_code |= SO_EE_CODE_ZEROCOPY_COPIED;
1303 
1304 	q = &sk->sk_error_queue;
1305 	spin_lock_irqsave(&q->lock, flags);
1306 	tail = skb_peek_tail(q);
1307 	if (!tail || SKB_EXT_ERR(tail)->ee.ee_origin != SO_EE_ORIGIN_ZEROCOPY ||
1308 	    !skb_zerocopy_notify_extend(tail, lo, len)) {
1309 		__skb_queue_tail(q, skb);
1310 		skb = NULL;
1311 	}
1312 	spin_unlock_irqrestore(&q->lock, flags);
1313 
1314 	sk_error_report(sk);
1315 
1316 release:
1317 	consume_skb(skb);
1318 	sock_put(sk);
1319 }
1320 
1321 void msg_zerocopy_callback(struct sk_buff *skb, struct ubuf_info *uarg,
1322 			   bool success)
1323 {
1324 	uarg->zerocopy = uarg->zerocopy & success;
1325 
1326 	if (refcount_dec_and_test(&uarg->refcnt))
1327 		__msg_zerocopy_callback(uarg);
1328 }
1329 EXPORT_SYMBOL_GPL(msg_zerocopy_callback);
1330 
1331 void msg_zerocopy_put_abort(struct ubuf_info *uarg, bool have_uref)
1332 {
1333 	struct sock *sk = skb_from_uarg(uarg)->sk;
1334 
1335 	atomic_dec(&sk->sk_zckey);
1336 	uarg->len--;
1337 
1338 	if (have_uref)
1339 		msg_zerocopy_callback(NULL, uarg, true);
1340 }
1341 EXPORT_SYMBOL_GPL(msg_zerocopy_put_abort);
1342 
1343 int skb_zerocopy_iter_dgram(struct sk_buff *skb, struct msghdr *msg, int len)
1344 {
1345 	return __zerocopy_sg_from_iter(skb->sk, skb, &msg->msg_iter, len);
1346 }
1347 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_dgram);
1348 
1349 int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
1350 			     struct msghdr *msg, int len,
1351 			     struct ubuf_info *uarg)
1352 {
1353 	struct ubuf_info *orig_uarg = skb_zcopy(skb);
1354 	struct iov_iter orig_iter = msg->msg_iter;
1355 	int err, orig_len = skb->len;
1356 
1357 	/* An skb can only point to one uarg. This edge case happens when
1358 	 * TCP appends to an skb, but zerocopy_realloc triggered a new alloc.
1359 	 */
1360 	if (orig_uarg && uarg != orig_uarg)
1361 		return -EEXIST;
1362 
1363 	err = __zerocopy_sg_from_iter(sk, skb, &msg->msg_iter, len);
1364 	if (err == -EFAULT || (err == -EMSGSIZE && skb->len == orig_len)) {
1365 		struct sock *save_sk = skb->sk;
1366 
1367 		/* Streams do not free skb on error. Reset to prev state. */
1368 		msg->msg_iter = orig_iter;
1369 		skb->sk = sk;
1370 		___pskb_trim(skb, orig_len);
1371 		skb->sk = save_sk;
1372 		return err;
1373 	}
1374 
1375 	skb_zcopy_set(skb, uarg, NULL);
1376 	return skb->len - orig_len;
1377 }
1378 EXPORT_SYMBOL_GPL(skb_zerocopy_iter_stream);
1379 
1380 static int skb_zerocopy_clone(struct sk_buff *nskb, struct sk_buff *orig,
1381 			      gfp_t gfp_mask)
1382 {
1383 	if (skb_zcopy(orig)) {
1384 		if (skb_zcopy(nskb)) {
1385 			/* !gfp_mask callers are verified to !skb_zcopy(nskb) */
1386 			if (!gfp_mask) {
1387 				WARN_ON_ONCE(1);
1388 				return -ENOMEM;
1389 			}
1390 			if (skb_uarg(nskb) == skb_uarg(orig))
1391 				return 0;
1392 			if (skb_copy_ubufs(nskb, GFP_ATOMIC))
1393 				return -EIO;
1394 		}
1395 		skb_zcopy_set(nskb, skb_uarg(orig), NULL);
1396 	}
1397 	return 0;
1398 }
1399 
1400 /**
1401  *	skb_copy_ubufs	-	copy userspace skb frags buffers to kernel
1402  *	@skb: the skb to modify
1403  *	@gfp_mask: allocation priority
1404  *
1405  *	This must be called on skb with SKBFL_ZEROCOPY_ENABLE.
1406  *	It will copy all frags into kernel and drop the reference
1407  *	to userspace pages.
1408  *
1409  *	If this function is called from an interrupt gfp_mask() must be
1410  *	%GFP_ATOMIC.
1411  *
1412  *	Returns 0 on success or a negative error code on failure
1413  *	to allocate kernel memory to copy to.
1414  */
1415 int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
1416 {
1417 	int num_frags = skb_shinfo(skb)->nr_frags;
1418 	struct page *page, *head = NULL;
1419 	int i, new_frags;
1420 	u32 d_off;
1421 
1422 	if (skb_shared(skb) || skb_unclone(skb, gfp_mask))
1423 		return -EINVAL;
1424 
1425 	if (!num_frags)
1426 		goto release;
1427 
1428 	new_frags = (__skb_pagelen(skb) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1429 	for (i = 0; i < new_frags; i++) {
1430 		page = alloc_page(gfp_mask);
1431 		if (!page) {
1432 			while (head) {
1433 				struct page *next = (struct page *)page_private(head);
1434 				put_page(head);
1435 				head = next;
1436 			}
1437 			return -ENOMEM;
1438 		}
1439 		set_page_private(page, (unsigned long)head);
1440 		head = page;
1441 	}
1442 
1443 	page = head;
1444 	d_off = 0;
1445 	for (i = 0; i < num_frags; i++) {
1446 		skb_frag_t *f = &skb_shinfo(skb)->frags[i];
1447 		u32 p_off, p_len, copied;
1448 		struct page *p;
1449 		u8 *vaddr;
1450 
1451 		skb_frag_foreach_page(f, skb_frag_off(f), skb_frag_size(f),
1452 				      p, p_off, p_len, copied) {
1453 			u32 copy, done = 0;
1454 			vaddr = kmap_atomic(p);
1455 
1456 			while (done < p_len) {
1457 				if (d_off == PAGE_SIZE) {
1458 					d_off = 0;
1459 					page = (struct page *)page_private(page);
1460 				}
1461 				copy = min_t(u32, PAGE_SIZE - d_off, p_len - done);
1462 				memcpy(page_address(page) + d_off,
1463 				       vaddr + p_off + done, copy);
1464 				done += copy;
1465 				d_off += copy;
1466 			}
1467 			kunmap_atomic(vaddr);
1468 		}
1469 	}
1470 
1471 	/* skb frags release userspace buffers */
1472 	for (i = 0; i < num_frags; i++)
1473 		skb_frag_unref(skb, i);
1474 
1475 	/* skb frags point to kernel buffers */
1476 	for (i = 0; i < new_frags - 1; i++) {
1477 		__skb_fill_page_desc(skb, i, head, 0, PAGE_SIZE);
1478 		head = (struct page *)page_private(head);
1479 	}
1480 	__skb_fill_page_desc(skb, new_frags - 1, head, 0, d_off);
1481 	skb_shinfo(skb)->nr_frags = new_frags;
1482 
1483 release:
1484 	skb_zcopy_clear(skb, false);
1485 	return 0;
1486 }
1487 EXPORT_SYMBOL_GPL(skb_copy_ubufs);
1488 
1489 /**
1490  *	skb_clone	-	duplicate an sk_buff
1491  *	@skb: buffer to clone
1492  *	@gfp_mask: allocation priority
1493  *
1494  *	Duplicate an &sk_buff. The new one is not owned by a socket. Both
1495  *	copies share the same packet data but not structure. The new
1496  *	buffer has a reference count of 1. If the allocation fails the
1497  *	function returns %NULL otherwise the new buffer is returned.
1498  *
1499  *	If this function is called from an interrupt gfp_mask() must be
1500  *	%GFP_ATOMIC.
1501  */
1502 
1503 struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1504 {
1505 	struct sk_buff_fclones *fclones = container_of(skb,
1506 						       struct sk_buff_fclones,
1507 						       skb1);
1508 	struct sk_buff *n;
1509 
1510 	if (skb_orphan_frags(skb, gfp_mask))
1511 		return NULL;
1512 
1513 	if (skb->fclone == SKB_FCLONE_ORIG &&
1514 	    refcount_read(&fclones->fclone_ref) == 1) {
1515 		n = &fclones->skb2;
1516 		refcount_set(&fclones->fclone_ref, 2);
1517 	} else {
1518 		if (skb_pfmemalloc(skb))
1519 			gfp_mask |= __GFP_MEMALLOC;
1520 
1521 		n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1522 		if (!n)
1523 			return NULL;
1524 
1525 		n->fclone = SKB_FCLONE_UNAVAILABLE;
1526 	}
1527 
1528 	return __skb_clone(n, skb);
1529 }
1530 EXPORT_SYMBOL(skb_clone);
1531 
1532 void skb_headers_offset_update(struct sk_buff *skb, int off)
1533 {
1534 	/* Only adjust this if it actually is csum_start rather than csum */
1535 	if (skb->ip_summed == CHECKSUM_PARTIAL)
1536 		skb->csum_start += off;
1537 	/* {transport,network,mac}_header and tail are relative to skb->head */
1538 	skb->transport_header += off;
1539 	skb->network_header   += off;
1540 	if (skb_mac_header_was_set(skb))
1541 		skb->mac_header += off;
1542 	skb->inner_transport_header += off;
1543 	skb->inner_network_header += off;
1544 	skb->inner_mac_header += off;
1545 }
1546 EXPORT_SYMBOL(skb_headers_offset_update);
1547 
1548 void skb_copy_header(struct sk_buff *new, const struct sk_buff *old)
1549 {
1550 	__copy_skb_header(new, old);
1551 
1552 	skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1553 	skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1554 	skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
1555 }
1556 EXPORT_SYMBOL(skb_copy_header);
1557 
1558 static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1559 {
1560 	if (skb_pfmemalloc(skb))
1561 		return SKB_ALLOC_RX;
1562 	return 0;
1563 }
1564 
1565 /**
1566  *	skb_copy	-	create private copy of an sk_buff
1567  *	@skb: buffer to copy
1568  *	@gfp_mask: allocation priority
1569  *
1570  *	Make a copy of both an &sk_buff and its data. This is used when the
1571  *	caller wishes to modify the data and needs a private copy of the
1572  *	data to alter. Returns %NULL on failure or the pointer to the buffer
1573  *	on success. The returned buffer has a reference count of 1.
1574  *
1575  *	As by-product this function converts non-linear &sk_buff to linear
1576  *	one, so that &sk_buff becomes completely private and caller is allowed
1577  *	to modify all the data of returned buffer. This means that this
1578  *	function is not recommended for use in circumstances when only
1579  *	header is going to be modified. Use pskb_copy() instead.
1580  */
1581 
1582 struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
1583 {
1584 	int headerlen = skb_headroom(skb);
1585 	unsigned int size = skb_end_offset(skb) + skb->data_len;
1586 	struct sk_buff *n = __alloc_skb(size, gfp_mask,
1587 					skb_alloc_rx_flag(skb), NUMA_NO_NODE);
1588 
1589 	if (!n)
1590 		return NULL;
1591 
1592 	/* Set the data pointer */
1593 	skb_reserve(n, headerlen);
1594 	/* Set the tail pointer and length */
1595 	skb_put(n, skb->len);
1596 
1597 	BUG_ON(skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len));
1598 
1599 	skb_copy_header(n, skb);
1600 	return n;
1601 }
1602 EXPORT_SYMBOL(skb_copy);
1603 
1604 /**
1605  *	__pskb_copy_fclone	-  create copy of an sk_buff with private head.
1606  *	@skb: buffer to copy
1607  *	@headroom: headroom of new skb
1608  *	@gfp_mask: allocation priority
1609  *	@fclone: if true allocate the copy of the skb from the fclone
1610  *	cache instead of the head cache; it is recommended to set this
1611  *	to true for the cases where the copy will likely be cloned
1612  *
1613  *	Make a copy of both an &sk_buff and part of its data, located
1614  *	in header. Fragmented data remain shared. This is used when
1615  *	the caller wishes to modify only header of &sk_buff and needs
1616  *	private copy of the header to alter. Returns %NULL on failure
1617  *	or the pointer to the buffer on success.
1618  *	The returned buffer has a reference count of 1.
1619  */
1620 
1621 struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1622 				   gfp_t gfp_mask, bool fclone)
1623 {
1624 	unsigned int size = skb_headlen(skb) + headroom;
1625 	int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1626 	struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
1627 
1628 	if (!n)
1629 		goto out;
1630 
1631 	/* Set the data pointer */
1632 	skb_reserve(n, headroom);
1633 	/* Set the tail pointer and length */
1634 	skb_put(n, skb_headlen(skb));
1635 	/* Copy the bytes */
1636 	skb_copy_from_linear_data(skb, n->data, n->len);
1637 
1638 	n->truesize += skb->data_len;
1639 	n->data_len  = skb->data_len;
1640 	n->len	     = skb->len;
1641 
1642 	if (skb_shinfo(skb)->nr_frags) {
1643 		int i;
1644 
1645 		if (skb_orphan_frags(skb, gfp_mask) ||
1646 		    skb_zerocopy_clone(n, skb, gfp_mask)) {
1647 			kfree_skb(n);
1648 			n = NULL;
1649 			goto out;
1650 		}
1651 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1652 			skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
1653 			skb_frag_ref(skb, i);
1654 		}
1655 		skb_shinfo(n)->nr_frags = i;
1656 	}
1657 
1658 	if (skb_has_frag_list(skb)) {
1659 		skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1660 		skb_clone_fraglist(n);
1661 	}
1662 
1663 	skb_copy_header(n, skb);
1664 out:
1665 	return n;
1666 }
1667 EXPORT_SYMBOL(__pskb_copy_fclone);
1668 
1669 /**
1670  *	pskb_expand_head - reallocate header of &sk_buff
1671  *	@skb: buffer to reallocate
1672  *	@nhead: room to add at head
1673  *	@ntail: room to add at tail
1674  *	@gfp_mask: allocation priority
1675  *
1676  *	Expands (or creates identical copy, if @nhead and @ntail are zero)
1677  *	header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
1678  *	reference count of 1. Returns zero in the case of success or error,
1679  *	if expansion failed. In the last case, &sk_buff is not changed.
1680  *
1681  *	All the pointers pointing into skb header may change and must be
1682  *	reloaded after call to this function.
1683  */
1684 
1685 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
1686 		     gfp_t gfp_mask)
1687 {
1688 	int i, osize = skb_end_offset(skb);
1689 	int size = osize + nhead + ntail;
1690 	long off;
1691 	u8 *data;
1692 
1693 	BUG_ON(nhead < 0);
1694 
1695 	BUG_ON(skb_shared(skb));
1696 
1697 	size = SKB_DATA_ALIGN(size);
1698 
1699 	if (skb_pfmemalloc(skb))
1700 		gfp_mask |= __GFP_MEMALLOC;
1701 	data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1702 			       gfp_mask, NUMA_NO_NODE, NULL);
1703 	if (!data)
1704 		goto nodata;
1705 	size = SKB_WITH_OVERHEAD(ksize(data));
1706 
1707 	/* Copy only real data... and, alas, header. This should be
1708 	 * optimized for the cases when header is void.
1709 	 */
1710 	memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1711 
1712 	memcpy((struct skb_shared_info *)(data + size),
1713 	       skb_shinfo(skb),
1714 	       offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
1715 
1716 	/*
1717 	 * if shinfo is shared we must drop the old head gracefully, but if it
1718 	 * is not we can just drop the old head and let the existing refcount
1719 	 * be since all we did is relocate the values
1720 	 */
1721 	if (skb_cloned(skb)) {
1722 		if (skb_orphan_frags(skb, gfp_mask))
1723 			goto nofrags;
1724 		if (skb_zcopy(skb))
1725 			refcount_inc(&skb_uarg(skb)->refcnt);
1726 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1727 			skb_frag_ref(skb, i);
1728 
1729 		if (skb_has_frag_list(skb))
1730 			skb_clone_fraglist(skb);
1731 
1732 		skb_release_data(skb);
1733 	} else {
1734 		skb_free_head(skb);
1735 	}
1736 	off = (data + nhead) - skb->head;
1737 
1738 	skb->head     = data;
1739 	skb->head_frag = 0;
1740 	skb->data    += off;
1741 #ifdef NET_SKBUFF_DATA_USES_OFFSET
1742 	skb->end      = size;
1743 	off           = nhead;
1744 #else
1745 	skb->end      = skb->head + size;
1746 #endif
1747 	skb->tail	      += off;
1748 	skb_headers_offset_update(skb, nhead);
1749 	skb->cloned   = 0;
1750 	skb->hdr_len  = 0;
1751 	skb->nohdr    = 0;
1752 	atomic_set(&skb_shinfo(skb)->dataref, 1);
1753 
1754 	skb_metadata_clear(skb);
1755 
1756 	/* It is not generally safe to change skb->truesize.
1757 	 * For the moment, we really care of rx path, or
1758 	 * when skb is orphaned (not attached to a socket).
1759 	 */
1760 	if (!skb->sk || skb->destructor == sock_edemux)
1761 		skb->truesize += size - osize;
1762 
1763 	return 0;
1764 
1765 nofrags:
1766 	kfree(data);
1767 nodata:
1768 	return -ENOMEM;
1769 }
1770 EXPORT_SYMBOL(pskb_expand_head);
1771 
1772 /* Make private copy of skb with writable head and some headroom */
1773 
1774 struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1775 {
1776 	struct sk_buff *skb2;
1777 	int delta = headroom - skb_headroom(skb);
1778 
1779 	if (delta <= 0)
1780 		skb2 = pskb_copy(skb, GFP_ATOMIC);
1781 	else {
1782 		skb2 = skb_clone(skb, GFP_ATOMIC);
1783 		if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1784 					     GFP_ATOMIC)) {
1785 			kfree_skb(skb2);
1786 			skb2 = NULL;
1787 		}
1788 	}
1789 	return skb2;
1790 }
1791 EXPORT_SYMBOL(skb_realloc_headroom);
1792 
1793 /**
1794  *	skb_expand_head - reallocate header of &sk_buff
1795  *	@skb: buffer to reallocate
1796  *	@headroom: needed headroom
1797  *
1798  *	Unlike skb_realloc_headroom, this one does not allocate a new skb
1799  *	if possible; copies skb->sk to new skb as needed
1800  *	and frees original skb in case of failures.
1801  *
1802  *	It expect increased headroom and generates warning otherwise.
1803  */
1804 
1805 struct sk_buff *skb_expand_head(struct sk_buff *skb, unsigned int headroom)
1806 {
1807 	int delta = headroom - skb_headroom(skb);
1808 	int osize = skb_end_offset(skb);
1809 	struct sock *sk = skb->sk;
1810 
1811 	if (WARN_ONCE(delta <= 0,
1812 		      "%s is expecting an increase in the headroom", __func__))
1813 		return skb;
1814 
1815 	delta = SKB_DATA_ALIGN(delta);
1816 	/* pskb_expand_head() might crash, if skb is shared. */
1817 	if (skb_shared(skb) || !is_skb_wmem(skb)) {
1818 		struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
1819 
1820 		if (unlikely(!nskb))
1821 			goto fail;
1822 
1823 		if (sk)
1824 			skb_set_owner_w(nskb, sk);
1825 		consume_skb(skb);
1826 		skb = nskb;
1827 	}
1828 	if (pskb_expand_head(skb, delta, 0, GFP_ATOMIC))
1829 		goto fail;
1830 
1831 	if (sk && is_skb_wmem(skb)) {
1832 		delta = skb_end_offset(skb) - osize;
1833 		refcount_add(delta, &sk->sk_wmem_alloc);
1834 		skb->truesize += delta;
1835 	}
1836 	return skb;
1837 
1838 fail:
1839 	kfree_skb(skb);
1840 	return NULL;
1841 }
1842 EXPORT_SYMBOL(skb_expand_head);
1843 
1844 /**
1845  *	skb_copy_expand	-	copy and expand sk_buff
1846  *	@skb: buffer to copy
1847  *	@newheadroom: new free bytes at head
1848  *	@newtailroom: new free bytes at tail
1849  *	@gfp_mask: allocation priority
1850  *
1851  *	Make a copy of both an &sk_buff and its data and while doing so
1852  *	allocate additional space.
1853  *
1854  *	This is used when the caller wishes to modify the data and needs a
1855  *	private copy of the data to alter as well as more space for new fields.
1856  *	Returns %NULL on failure or the pointer to the buffer
1857  *	on success. The returned buffer has a reference count of 1.
1858  *
1859  *	You must pass %GFP_ATOMIC as the allocation priority if this function
1860  *	is called from an interrupt.
1861  */
1862 struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
1863 				int newheadroom, int newtailroom,
1864 				gfp_t gfp_mask)
1865 {
1866 	/*
1867 	 *	Allocate the copy buffer
1868 	 */
1869 	struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1870 					gfp_mask, skb_alloc_rx_flag(skb),
1871 					NUMA_NO_NODE);
1872 	int oldheadroom = skb_headroom(skb);
1873 	int head_copy_len, head_copy_off;
1874 
1875 	if (!n)
1876 		return NULL;
1877 
1878 	skb_reserve(n, newheadroom);
1879 
1880 	/* Set the tail pointer and length */
1881 	skb_put(n, skb->len);
1882 
1883 	head_copy_len = oldheadroom;
1884 	head_copy_off = 0;
1885 	if (newheadroom <= head_copy_len)
1886 		head_copy_len = newheadroom;
1887 	else
1888 		head_copy_off = newheadroom - head_copy_len;
1889 
1890 	/* Copy the linear header and data. */
1891 	BUG_ON(skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1892 			     skb->len + head_copy_len));
1893 
1894 	skb_copy_header(n, skb);
1895 
1896 	skb_headers_offset_update(n, newheadroom - oldheadroom);
1897 
1898 	return n;
1899 }
1900 EXPORT_SYMBOL(skb_copy_expand);
1901 
1902 /**
1903  *	__skb_pad		-	zero pad the tail of an skb
1904  *	@skb: buffer to pad
1905  *	@pad: space to pad
1906  *	@free_on_error: free buffer on error
1907  *
1908  *	Ensure that a buffer is followed by a padding area that is zero
1909  *	filled. Used by network drivers which may DMA or transfer data
1910  *	beyond the buffer end onto the wire.
1911  *
1912  *	May return error in out of memory cases. The skb is freed on error
1913  *	if @free_on_error is true.
1914  */
1915 
1916 int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error)
1917 {
1918 	int err;
1919 	int ntail;
1920 
1921 	/* If the skbuff is non linear tailroom is always zero.. */
1922 	if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
1923 		memset(skb->data+skb->len, 0, pad);
1924 		return 0;
1925 	}
1926 
1927 	ntail = skb->data_len + pad - (skb->end - skb->tail);
1928 	if (likely(skb_cloned(skb) || ntail > 0)) {
1929 		err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1930 		if (unlikely(err))
1931 			goto free_skb;
1932 	}
1933 
1934 	/* FIXME: The use of this function with non-linear skb's really needs
1935 	 * to be audited.
1936 	 */
1937 	err = skb_linearize(skb);
1938 	if (unlikely(err))
1939 		goto free_skb;
1940 
1941 	memset(skb->data + skb->len, 0, pad);
1942 	return 0;
1943 
1944 free_skb:
1945 	if (free_on_error)
1946 		kfree_skb(skb);
1947 	return err;
1948 }
1949 EXPORT_SYMBOL(__skb_pad);
1950 
1951 /**
1952  *	pskb_put - add data to the tail of a potentially fragmented buffer
1953  *	@skb: start of the buffer to use
1954  *	@tail: tail fragment of the buffer to use
1955  *	@len: amount of data to add
1956  *
1957  *	This function extends the used data area of the potentially
1958  *	fragmented buffer. @tail must be the last fragment of @skb -- or
1959  *	@skb itself. If this would exceed the total buffer size the kernel
1960  *	will panic. A pointer to the first byte of the extra data is
1961  *	returned.
1962  */
1963 
1964 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1965 {
1966 	if (tail != skb) {
1967 		skb->data_len += len;
1968 		skb->len += len;
1969 	}
1970 	return skb_put(tail, len);
1971 }
1972 EXPORT_SYMBOL_GPL(pskb_put);
1973 
1974 /**
1975  *	skb_put - add data to a buffer
1976  *	@skb: buffer to use
1977  *	@len: amount of data to add
1978  *
1979  *	This function extends the used data area of the buffer. If this would
1980  *	exceed the total buffer size the kernel will panic. A pointer to the
1981  *	first byte of the extra data is returned.
1982  */
1983 void *skb_put(struct sk_buff *skb, unsigned int len)
1984 {
1985 	void *tmp = skb_tail_pointer(skb);
1986 	SKB_LINEAR_ASSERT(skb);
1987 	skb->tail += len;
1988 	skb->len  += len;
1989 	if (unlikely(skb->tail > skb->end))
1990 		skb_over_panic(skb, len, __builtin_return_address(0));
1991 	return tmp;
1992 }
1993 EXPORT_SYMBOL(skb_put);
1994 
1995 /**
1996  *	skb_push - add data to the start of a buffer
1997  *	@skb: buffer to use
1998  *	@len: amount of data to add
1999  *
2000  *	This function extends the used data area of the buffer at the buffer
2001  *	start. If this would exceed the total buffer headroom the kernel will
2002  *	panic. A pointer to the first byte of the extra data is returned.
2003  */
2004 void *skb_push(struct sk_buff *skb, unsigned int len)
2005 {
2006 	skb->data -= len;
2007 	skb->len  += len;
2008 	if (unlikely(skb->data < skb->head))
2009 		skb_under_panic(skb, len, __builtin_return_address(0));
2010 	return skb->data;
2011 }
2012 EXPORT_SYMBOL(skb_push);
2013 
2014 /**
2015  *	skb_pull - remove data from the start of a buffer
2016  *	@skb: buffer to use
2017  *	@len: amount of data to remove
2018  *
2019  *	This function removes data from the start of a buffer, returning
2020  *	the memory to the headroom. A pointer to the next data in the buffer
2021  *	is returned. Once the data has been pulled future pushes will overwrite
2022  *	the old data.
2023  */
2024 void *skb_pull(struct sk_buff *skb, unsigned int len)
2025 {
2026 	return skb_pull_inline(skb, len);
2027 }
2028 EXPORT_SYMBOL(skb_pull);
2029 
2030 /**
2031  *	skb_trim - remove end from a buffer
2032  *	@skb: buffer to alter
2033  *	@len: new length
2034  *
2035  *	Cut the length of a buffer down by removing data from the tail. If
2036  *	the buffer is already under the length specified it is not modified.
2037  *	The skb must be linear.
2038  */
2039 void skb_trim(struct sk_buff *skb, unsigned int len)
2040 {
2041 	if (skb->len > len)
2042 		__skb_trim(skb, len);
2043 }
2044 EXPORT_SYMBOL(skb_trim);
2045 
2046 /* Trims skb to length len. It can change skb pointers.
2047  */
2048 
2049 int ___pskb_trim(struct sk_buff *skb, unsigned int len)
2050 {
2051 	struct sk_buff **fragp;
2052 	struct sk_buff *frag;
2053 	int offset = skb_headlen(skb);
2054 	int nfrags = skb_shinfo(skb)->nr_frags;
2055 	int i;
2056 	int err;
2057 
2058 	if (skb_cloned(skb) &&
2059 	    unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
2060 		return err;
2061 
2062 	i = 0;
2063 	if (offset >= len)
2064 		goto drop_pages;
2065 
2066 	for (; i < nfrags; i++) {
2067 		int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
2068 
2069 		if (end < len) {
2070 			offset = end;
2071 			continue;
2072 		}
2073 
2074 		skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
2075 
2076 drop_pages:
2077 		skb_shinfo(skb)->nr_frags = i;
2078 
2079 		for (; i < nfrags; i++)
2080 			skb_frag_unref(skb, i);
2081 
2082 		if (skb_has_frag_list(skb))
2083 			skb_drop_fraglist(skb);
2084 		goto done;
2085 	}
2086 
2087 	for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
2088 	     fragp = &frag->next) {
2089 		int end = offset + frag->len;
2090 
2091 		if (skb_shared(frag)) {
2092 			struct sk_buff *nfrag;
2093 
2094 			nfrag = skb_clone(frag, GFP_ATOMIC);
2095 			if (unlikely(!nfrag))
2096 				return -ENOMEM;
2097 
2098 			nfrag->next = frag->next;
2099 			consume_skb(frag);
2100 			frag = nfrag;
2101 			*fragp = frag;
2102 		}
2103 
2104 		if (end < len) {
2105 			offset = end;
2106 			continue;
2107 		}
2108 
2109 		if (end > len &&
2110 		    unlikely((err = pskb_trim(frag, len - offset))))
2111 			return err;
2112 
2113 		if (frag->next)
2114 			skb_drop_list(&frag->next);
2115 		break;
2116 	}
2117 
2118 done:
2119 	if (len > skb_headlen(skb)) {
2120 		skb->data_len -= skb->len - len;
2121 		skb->len       = len;
2122 	} else {
2123 		skb->len       = len;
2124 		skb->data_len  = 0;
2125 		skb_set_tail_pointer(skb, len);
2126 	}
2127 
2128 	if (!skb->sk || skb->destructor == sock_edemux)
2129 		skb_condense(skb);
2130 	return 0;
2131 }
2132 EXPORT_SYMBOL(___pskb_trim);
2133 
2134 /* Note : use pskb_trim_rcsum() instead of calling this directly
2135  */
2136 int pskb_trim_rcsum_slow(struct sk_buff *skb, unsigned int len)
2137 {
2138 	if (skb->ip_summed == CHECKSUM_COMPLETE) {
2139 		int delta = skb->len - len;
2140 
2141 		skb->csum = csum_block_sub(skb->csum,
2142 					   skb_checksum(skb, len, delta, 0),
2143 					   len);
2144 	} else if (skb->ip_summed == CHECKSUM_PARTIAL) {
2145 		int hdlen = (len > skb_headlen(skb)) ? skb_headlen(skb) : len;
2146 		int offset = skb_checksum_start_offset(skb) + skb->csum_offset;
2147 
2148 		if (offset + sizeof(__sum16) > hdlen)
2149 			return -EINVAL;
2150 	}
2151 	return __pskb_trim(skb, len);
2152 }
2153 EXPORT_SYMBOL(pskb_trim_rcsum_slow);
2154 
2155 /**
2156  *	__pskb_pull_tail - advance tail of skb header
2157  *	@skb: buffer to reallocate
2158  *	@delta: number of bytes to advance tail
2159  *
2160  *	The function makes a sense only on a fragmented &sk_buff,
2161  *	it expands header moving its tail forward and copying necessary
2162  *	data from fragmented part.
2163  *
2164  *	&sk_buff MUST have reference count of 1.
2165  *
2166  *	Returns %NULL (and &sk_buff does not change) if pull failed
2167  *	or value of new tail of skb in the case of success.
2168  *
2169  *	All the pointers pointing into skb header may change and must be
2170  *	reloaded after call to this function.
2171  */
2172 
2173 /* Moves tail of skb head forward, copying data from fragmented part,
2174  * when it is necessary.
2175  * 1. It may fail due to malloc failure.
2176  * 2. It may change skb pointers.
2177  *
2178  * It is pretty complicated. Luckily, it is called only in exceptional cases.
2179  */
2180 void *__pskb_pull_tail(struct sk_buff *skb, int delta)
2181 {
2182 	/* If skb has not enough free space at tail, get new one
2183 	 * plus 128 bytes for future expansions. If we have enough
2184 	 * room at tail, reallocate without expansion only if skb is cloned.
2185 	 */
2186 	int i, k, eat = (skb->tail + delta) - skb->end;
2187 
2188 	if (eat > 0 || skb_cloned(skb)) {
2189 		if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
2190 				     GFP_ATOMIC))
2191 			return NULL;
2192 	}
2193 
2194 	BUG_ON(skb_copy_bits(skb, skb_headlen(skb),
2195 			     skb_tail_pointer(skb), delta));
2196 
2197 	/* Optimization: no fragments, no reasons to preestimate
2198 	 * size of pulled pages. Superb.
2199 	 */
2200 	if (!skb_has_frag_list(skb))
2201 		goto pull_pages;
2202 
2203 	/* Estimate size of pulled pages. */
2204 	eat = delta;
2205 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2206 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
2207 
2208 		if (size >= eat)
2209 			goto pull_pages;
2210 		eat -= size;
2211 	}
2212 
2213 	/* If we need update frag list, we are in troubles.
2214 	 * Certainly, it is possible to add an offset to skb data,
2215 	 * but taking into account that pulling is expected to
2216 	 * be very rare operation, it is worth to fight against
2217 	 * further bloating skb head and crucify ourselves here instead.
2218 	 * Pure masohism, indeed. 8)8)
2219 	 */
2220 	if (eat) {
2221 		struct sk_buff *list = skb_shinfo(skb)->frag_list;
2222 		struct sk_buff *clone = NULL;
2223 		struct sk_buff *insp = NULL;
2224 
2225 		do {
2226 			if (list->len <= eat) {
2227 				/* Eaten as whole. */
2228 				eat -= list->len;
2229 				list = list->next;
2230 				insp = list;
2231 			} else {
2232 				/* Eaten partially. */
2233 
2234 				if (skb_shared(list)) {
2235 					/* Sucks! We need to fork list. :-( */
2236 					clone = skb_clone(list, GFP_ATOMIC);
2237 					if (!clone)
2238 						return NULL;
2239 					insp = list->next;
2240 					list = clone;
2241 				} else {
2242 					/* This may be pulled without
2243 					 * problems. */
2244 					insp = list;
2245 				}
2246 				if (!pskb_pull(list, eat)) {
2247 					kfree_skb(clone);
2248 					return NULL;
2249 				}
2250 				break;
2251 			}
2252 		} while (eat);
2253 
2254 		/* Free pulled out fragments. */
2255 		while ((list = skb_shinfo(skb)->frag_list) != insp) {
2256 			skb_shinfo(skb)->frag_list = list->next;
2257 			kfree_skb(list);
2258 		}
2259 		/* And insert new clone at head. */
2260 		if (clone) {
2261 			clone->next = list;
2262 			skb_shinfo(skb)->frag_list = clone;
2263 		}
2264 	}
2265 	/* Success! Now we may commit changes to skb data. */
2266 
2267 pull_pages:
2268 	eat = delta;
2269 	k = 0;
2270 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2271 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
2272 
2273 		if (size <= eat) {
2274 			skb_frag_unref(skb, i);
2275 			eat -= size;
2276 		} else {
2277 			skb_frag_t *frag = &skb_shinfo(skb)->frags[k];
2278 
2279 			*frag = skb_shinfo(skb)->frags[i];
2280 			if (eat) {
2281 				skb_frag_off_add(frag, eat);
2282 				skb_frag_size_sub(frag, eat);
2283 				if (!i)
2284 					goto end;
2285 				eat = 0;
2286 			}
2287 			k++;
2288 		}
2289 	}
2290 	skb_shinfo(skb)->nr_frags = k;
2291 
2292 end:
2293 	skb->tail     += delta;
2294 	skb->data_len -= delta;
2295 
2296 	if (!skb->data_len)
2297 		skb_zcopy_clear(skb, false);
2298 
2299 	return skb_tail_pointer(skb);
2300 }
2301 EXPORT_SYMBOL(__pskb_pull_tail);
2302 
2303 /**
2304  *	skb_copy_bits - copy bits from skb to kernel buffer
2305  *	@skb: source skb
2306  *	@offset: offset in source
2307  *	@to: destination buffer
2308  *	@len: number of bytes to copy
2309  *
2310  *	Copy the specified number of bytes from the source skb to the
2311  *	destination buffer.
2312  *
2313  *	CAUTION ! :
2314  *		If its prototype is ever changed,
2315  *		check arch/{*}/net/{*}.S files,
2316  *		since it is called from BPF assembly code.
2317  */
2318 int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
2319 {
2320 	int start = skb_headlen(skb);
2321 	struct sk_buff *frag_iter;
2322 	int i, copy;
2323 
2324 	if (offset > (int)skb->len - len)
2325 		goto fault;
2326 
2327 	/* Copy header. */
2328 	if ((copy = start - offset) > 0) {
2329 		if (copy > len)
2330 			copy = len;
2331 		skb_copy_from_linear_data_offset(skb, offset, to, copy);
2332 		if ((len -= copy) == 0)
2333 			return 0;
2334 		offset += copy;
2335 		to     += copy;
2336 	}
2337 
2338 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2339 		int end;
2340 		skb_frag_t *f = &skb_shinfo(skb)->frags[i];
2341 
2342 		WARN_ON(start > offset + len);
2343 
2344 		end = start + skb_frag_size(f);
2345 		if ((copy = end - offset) > 0) {
2346 			u32 p_off, p_len, copied;
2347 			struct page *p;
2348 			u8 *vaddr;
2349 
2350 			if (copy > len)
2351 				copy = len;
2352 
2353 			skb_frag_foreach_page(f,
2354 					      skb_frag_off(f) + offset - start,
2355 					      copy, p, p_off, p_len, copied) {
2356 				vaddr = kmap_atomic(p);
2357 				memcpy(to + copied, vaddr + p_off, p_len);
2358 				kunmap_atomic(vaddr);
2359 			}
2360 
2361 			if ((len -= copy) == 0)
2362 				return 0;
2363 			offset += copy;
2364 			to     += copy;
2365 		}
2366 		start = end;
2367 	}
2368 
2369 	skb_walk_frags(skb, frag_iter) {
2370 		int end;
2371 
2372 		WARN_ON(start > offset + len);
2373 
2374 		end = start + frag_iter->len;
2375 		if ((copy = end - offset) > 0) {
2376 			if (copy > len)
2377 				copy = len;
2378 			if (skb_copy_bits(frag_iter, offset - start, to, copy))
2379 				goto fault;
2380 			if ((len -= copy) == 0)
2381 				return 0;
2382 			offset += copy;
2383 			to     += copy;
2384 		}
2385 		start = end;
2386 	}
2387 
2388 	if (!len)
2389 		return 0;
2390 
2391 fault:
2392 	return -EFAULT;
2393 }
2394 EXPORT_SYMBOL(skb_copy_bits);
2395 
2396 /*
2397  * Callback from splice_to_pipe(), if we need to release some pages
2398  * at the end of the spd in case we error'ed out in filling the pipe.
2399  */
2400 static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
2401 {
2402 	put_page(spd->pages[i]);
2403 }
2404 
2405 static struct page *linear_to_page(struct page *page, unsigned int *len,
2406 				   unsigned int *offset,
2407 				   struct sock *sk)
2408 {
2409 	struct page_frag *pfrag = sk_page_frag(sk);
2410 
2411 	if (!sk_page_frag_refill(sk, pfrag))
2412 		return NULL;
2413 
2414 	*len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
2415 
2416 	memcpy(page_address(pfrag->page) + pfrag->offset,
2417 	       page_address(page) + *offset, *len);
2418 	*offset = pfrag->offset;
2419 	pfrag->offset += *len;
2420 
2421 	return pfrag->page;
2422 }
2423 
2424 static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
2425 			     struct page *page,
2426 			     unsigned int offset)
2427 {
2428 	return	spd->nr_pages &&
2429 		spd->pages[spd->nr_pages - 1] == page &&
2430 		(spd->partial[spd->nr_pages - 1].offset +
2431 		 spd->partial[spd->nr_pages - 1].len == offset);
2432 }
2433 
2434 /*
2435  * Fill page/offset/length into spd, if it can hold more pages.
2436  */
2437 static bool spd_fill_page(struct splice_pipe_desc *spd,
2438 			  struct pipe_inode_info *pipe, struct page *page,
2439 			  unsigned int *len, unsigned int offset,
2440 			  bool linear,
2441 			  struct sock *sk)
2442 {
2443 	if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
2444 		return true;
2445 
2446 	if (linear) {
2447 		page = linear_to_page(page, len, &offset, sk);
2448 		if (!page)
2449 			return true;
2450 	}
2451 	if (spd_can_coalesce(spd, page, offset)) {
2452 		spd->partial[spd->nr_pages - 1].len += *len;
2453 		return false;
2454 	}
2455 	get_page(page);
2456 	spd->pages[spd->nr_pages] = page;
2457 	spd->partial[spd->nr_pages].len = *len;
2458 	spd->partial[spd->nr_pages].offset = offset;
2459 	spd->nr_pages++;
2460 
2461 	return false;
2462 }
2463 
2464 static bool __splice_segment(struct page *page, unsigned int poff,
2465 			     unsigned int plen, unsigned int *off,
2466 			     unsigned int *len,
2467 			     struct splice_pipe_desc *spd, bool linear,
2468 			     struct sock *sk,
2469 			     struct pipe_inode_info *pipe)
2470 {
2471 	if (!*len)
2472 		return true;
2473 
2474 	/* skip this segment if already processed */
2475 	if (*off >= plen) {
2476 		*off -= plen;
2477 		return false;
2478 	}
2479 
2480 	/* ignore any bits we already processed */
2481 	poff += *off;
2482 	plen -= *off;
2483 	*off = 0;
2484 
2485 	do {
2486 		unsigned int flen = min(*len, plen);
2487 
2488 		if (spd_fill_page(spd, pipe, page, &flen, poff,
2489 				  linear, sk))
2490 			return true;
2491 		poff += flen;
2492 		plen -= flen;
2493 		*len -= flen;
2494 	} while (*len && plen);
2495 
2496 	return false;
2497 }
2498 
2499 /*
2500  * Map linear and fragment data from the skb to spd. It reports true if the
2501  * pipe is full or if we already spliced the requested length.
2502  */
2503 static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
2504 			      unsigned int *offset, unsigned int *len,
2505 			      struct splice_pipe_desc *spd, struct sock *sk)
2506 {
2507 	int seg;
2508 	struct sk_buff *iter;
2509 
2510 	/* map the linear part :
2511 	 * If skb->head_frag is set, this 'linear' part is backed by a
2512 	 * fragment, and if the head is not shared with any clones then
2513 	 * we can avoid a copy since we own the head portion of this page.
2514 	 */
2515 	if (__splice_segment(virt_to_page(skb->data),
2516 			     (unsigned long) skb->data & (PAGE_SIZE - 1),
2517 			     skb_headlen(skb),
2518 			     offset, len, spd,
2519 			     skb_head_is_locked(skb),
2520 			     sk, pipe))
2521 		return true;
2522 
2523 	/*
2524 	 * then map the fragments
2525 	 */
2526 	for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
2527 		const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
2528 
2529 		if (__splice_segment(skb_frag_page(f),
2530 				     skb_frag_off(f), skb_frag_size(f),
2531 				     offset, len, spd, false, sk, pipe))
2532 			return true;
2533 	}
2534 
2535 	skb_walk_frags(skb, iter) {
2536 		if (*offset >= iter->len) {
2537 			*offset -= iter->len;
2538 			continue;
2539 		}
2540 		/* __skb_splice_bits() only fails if the output has no room
2541 		 * left, so no point in going over the frag_list for the error
2542 		 * case.
2543 		 */
2544 		if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
2545 			return true;
2546 	}
2547 
2548 	return false;
2549 }
2550 
2551 /*
2552  * Map data from the skb to a pipe. Should handle both the linear part,
2553  * the fragments, and the frag list.
2554  */
2555 int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
2556 		    struct pipe_inode_info *pipe, unsigned int tlen,
2557 		    unsigned int flags)
2558 {
2559 	struct partial_page partial[MAX_SKB_FRAGS];
2560 	struct page *pages[MAX_SKB_FRAGS];
2561 	struct splice_pipe_desc spd = {
2562 		.pages = pages,
2563 		.partial = partial,
2564 		.nr_pages_max = MAX_SKB_FRAGS,
2565 		.ops = &nosteal_pipe_buf_ops,
2566 		.spd_release = sock_spd_release,
2567 	};
2568 	int ret = 0;
2569 
2570 	__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
2571 
2572 	if (spd.nr_pages)
2573 		ret = splice_to_pipe(pipe, &spd);
2574 
2575 	return ret;
2576 }
2577 EXPORT_SYMBOL_GPL(skb_splice_bits);
2578 
2579 static int sendmsg_unlocked(struct sock *sk, struct msghdr *msg,
2580 			    struct kvec *vec, size_t num, size_t size)
2581 {
2582 	struct socket *sock = sk->sk_socket;
2583 
2584 	if (!sock)
2585 		return -EINVAL;
2586 	return kernel_sendmsg(sock, msg, vec, num, size);
2587 }
2588 
2589 static int sendpage_unlocked(struct sock *sk, struct page *page, int offset,
2590 			     size_t size, int flags)
2591 {
2592 	struct socket *sock = sk->sk_socket;
2593 
2594 	if (!sock)
2595 		return -EINVAL;
2596 	return kernel_sendpage(sock, page, offset, size, flags);
2597 }
2598 
2599 typedef int (*sendmsg_func)(struct sock *sk, struct msghdr *msg,
2600 			    struct kvec *vec, size_t num, size_t size);
2601 typedef int (*sendpage_func)(struct sock *sk, struct page *page, int offset,
2602 			     size_t size, int flags);
2603 static int __skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset,
2604 			   int len, sendmsg_func sendmsg, sendpage_func sendpage)
2605 {
2606 	unsigned int orig_len = len;
2607 	struct sk_buff *head = skb;
2608 	unsigned short fragidx;
2609 	int slen, ret;
2610 
2611 do_frag_list:
2612 
2613 	/* Deal with head data */
2614 	while (offset < skb_headlen(skb) && len) {
2615 		struct kvec kv;
2616 		struct msghdr msg;
2617 
2618 		slen = min_t(int, len, skb_headlen(skb) - offset);
2619 		kv.iov_base = skb->data + offset;
2620 		kv.iov_len = slen;
2621 		memset(&msg, 0, sizeof(msg));
2622 		msg.msg_flags = MSG_DONTWAIT;
2623 
2624 		ret = INDIRECT_CALL_2(sendmsg, kernel_sendmsg_locked,
2625 				      sendmsg_unlocked, sk, &msg, &kv, 1, slen);
2626 		if (ret <= 0)
2627 			goto error;
2628 
2629 		offset += ret;
2630 		len -= ret;
2631 	}
2632 
2633 	/* All the data was skb head? */
2634 	if (!len)
2635 		goto out;
2636 
2637 	/* Make offset relative to start of frags */
2638 	offset -= skb_headlen(skb);
2639 
2640 	/* Find where we are in frag list */
2641 	for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2642 		skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
2643 
2644 		if (offset < skb_frag_size(frag))
2645 			break;
2646 
2647 		offset -= skb_frag_size(frag);
2648 	}
2649 
2650 	for (; len && fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
2651 		skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
2652 
2653 		slen = min_t(size_t, len, skb_frag_size(frag) - offset);
2654 
2655 		while (slen) {
2656 			ret = INDIRECT_CALL_2(sendpage, kernel_sendpage_locked,
2657 					      sendpage_unlocked, sk,
2658 					      skb_frag_page(frag),
2659 					      skb_frag_off(frag) + offset,
2660 					      slen, MSG_DONTWAIT);
2661 			if (ret <= 0)
2662 				goto error;
2663 
2664 			len -= ret;
2665 			offset += ret;
2666 			slen -= ret;
2667 		}
2668 
2669 		offset = 0;
2670 	}
2671 
2672 	if (len) {
2673 		/* Process any frag lists */
2674 
2675 		if (skb == head) {
2676 			if (skb_has_frag_list(skb)) {
2677 				skb = skb_shinfo(skb)->frag_list;
2678 				goto do_frag_list;
2679 			}
2680 		} else if (skb->next) {
2681 			skb = skb->next;
2682 			goto do_frag_list;
2683 		}
2684 	}
2685 
2686 out:
2687 	return orig_len - len;
2688 
2689 error:
2690 	return orig_len == len ? ret : orig_len - len;
2691 }
2692 
2693 /* Send skb data on a socket. Socket must be locked. */
2694 int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
2695 			 int len)
2696 {
2697 	return __skb_send_sock(sk, skb, offset, len, kernel_sendmsg_locked,
2698 			       kernel_sendpage_locked);
2699 }
2700 EXPORT_SYMBOL_GPL(skb_send_sock_locked);
2701 
2702 /* Send skb data on a socket. Socket must be unlocked. */
2703 int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len)
2704 {
2705 	return __skb_send_sock(sk, skb, offset, len, sendmsg_unlocked,
2706 			       sendpage_unlocked);
2707 }
2708 
2709 /**
2710  *	skb_store_bits - store bits from kernel buffer to skb
2711  *	@skb: destination buffer
2712  *	@offset: offset in destination
2713  *	@from: source buffer
2714  *	@len: number of bytes to copy
2715  *
2716  *	Copy the specified number of bytes from the source buffer to the
2717  *	destination skb.  This function handles all the messy bits of
2718  *	traversing fragment lists and such.
2719  */
2720 
2721 int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
2722 {
2723 	int start = skb_headlen(skb);
2724 	struct sk_buff *frag_iter;
2725 	int i, copy;
2726 
2727 	if (offset > (int)skb->len - len)
2728 		goto fault;
2729 
2730 	if ((copy = start - offset) > 0) {
2731 		if (copy > len)
2732 			copy = len;
2733 		skb_copy_to_linear_data_offset(skb, offset, from, copy);
2734 		if ((len -= copy) == 0)
2735 			return 0;
2736 		offset += copy;
2737 		from += copy;
2738 	}
2739 
2740 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2741 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2742 		int end;
2743 
2744 		WARN_ON(start > offset + len);
2745 
2746 		end = start + skb_frag_size(frag);
2747 		if ((copy = end - offset) > 0) {
2748 			u32 p_off, p_len, copied;
2749 			struct page *p;
2750 			u8 *vaddr;
2751 
2752 			if (copy > len)
2753 				copy = len;
2754 
2755 			skb_frag_foreach_page(frag,
2756 					      skb_frag_off(frag) + offset - start,
2757 					      copy, p, p_off, p_len, copied) {
2758 				vaddr = kmap_atomic(p);
2759 				memcpy(vaddr + p_off, from + copied, p_len);
2760 				kunmap_atomic(vaddr);
2761 			}
2762 
2763 			if ((len -= copy) == 0)
2764 				return 0;
2765 			offset += copy;
2766 			from += copy;
2767 		}
2768 		start = end;
2769 	}
2770 
2771 	skb_walk_frags(skb, frag_iter) {
2772 		int end;
2773 
2774 		WARN_ON(start > offset + len);
2775 
2776 		end = start + frag_iter->len;
2777 		if ((copy = end - offset) > 0) {
2778 			if (copy > len)
2779 				copy = len;
2780 			if (skb_store_bits(frag_iter, offset - start,
2781 					   from, copy))
2782 				goto fault;
2783 			if ((len -= copy) == 0)
2784 				return 0;
2785 			offset += copy;
2786 			from += copy;
2787 		}
2788 		start = end;
2789 	}
2790 	if (!len)
2791 		return 0;
2792 
2793 fault:
2794 	return -EFAULT;
2795 }
2796 EXPORT_SYMBOL(skb_store_bits);
2797 
2798 /* Checksum skb data. */
2799 __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2800 		      __wsum csum, const struct skb_checksum_ops *ops)
2801 {
2802 	int start = skb_headlen(skb);
2803 	int i, copy = start - offset;
2804 	struct sk_buff *frag_iter;
2805 	int pos = 0;
2806 
2807 	/* Checksum header. */
2808 	if (copy > 0) {
2809 		if (copy > len)
2810 			copy = len;
2811 		csum = INDIRECT_CALL_1(ops->update, csum_partial_ext,
2812 				       skb->data + offset, copy, csum);
2813 		if ((len -= copy) == 0)
2814 			return csum;
2815 		offset += copy;
2816 		pos	= copy;
2817 	}
2818 
2819 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2820 		int end;
2821 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2822 
2823 		WARN_ON(start > offset + len);
2824 
2825 		end = start + skb_frag_size(frag);
2826 		if ((copy = end - offset) > 0) {
2827 			u32 p_off, p_len, copied;
2828 			struct page *p;
2829 			__wsum csum2;
2830 			u8 *vaddr;
2831 
2832 			if (copy > len)
2833 				copy = len;
2834 
2835 			skb_frag_foreach_page(frag,
2836 					      skb_frag_off(frag) + offset - start,
2837 					      copy, p, p_off, p_len, copied) {
2838 				vaddr = kmap_atomic(p);
2839 				csum2 = INDIRECT_CALL_1(ops->update,
2840 							csum_partial_ext,
2841 							vaddr + p_off, p_len, 0);
2842 				kunmap_atomic(vaddr);
2843 				csum = INDIRECT_CALL_1(ops->combine,
2844 						       csum_block_add_ext, csum,
2845 						       csum2, pos, p_len);
2846 				pos += p_len;
2847 			}
2848 
2849 			if (!(len -= copy))
2850 				return csum;
2851 			offset += copy;
2852 		}
2853 		start = end;
2854 	}
2855 
2856 	skb_walk_frags(skb, frag_iter) {
2857 		int end;
2858 
2859 		WARN_ON(start > offset + len);
2860 
2861 		end = start + frag_iter->len;
2862 		if ((copy = end - offset) > 0) {
2863 			__wsum csum2;
2864 			if (copy > len)
2865 				copy = len;
2866 			csum2 = __skb_checksum(frag_iter, offset - start,
2867 					       copy, 0, ops);
2868 			csum = INDIRECT_CALL_1(ops->combine, csum_block_add_ext,
2869 					       csum, csum2, pos, copy);
2870 			if ((len -= copy) == 0)
2871 				return csum;
2872 			offset += copy;
2873 			pos    += copy;
2874 		}
2875 		start = end;
2876 	}
2877 	BUG_ON(len);
2878 
2879 	return csum;
2880 }
2881 EXPORT_SYMBOL(__skb_checksum);
2882 
2883 __wsum skb_checksum(const struct sk_buff *skb, int offset,
2884 		    int len, __wsum csum)
2885 {
2886 	const struct skb_checksum_ops ops = {
2887 		.update  = csum_partial_ext,
2888 		.combine = csum_block_add_ext,
2889 	};
2890 
2891 	return __skb_checksum(skb, offset, len, csum, &ops);
2892 }
2893 EXPORT_SYMBOL(skb_checksum);
2894 
2895 /* Both of above in one bottle. */
2896 
2897 __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2898 				    u8 *to, int len)
2899 {
2900 	int start = skb_headlen(skb);
2901 	int i, copy = start - offset;
2902 	struct sk_buff *frag_iter;
2903 	int pos = 0;
2904 	__wsum csum = 0;
2905 
2906 	/* Copy header. */
2907 	if (copy > 0) {
2908 		if (copy > len)
2909 			copy = len;
2910 		csum = csum_partial_copy_nocheck(skb->data + offset, to,
2911 						 copy);
2912 		if ((len -= copy) == 0)
2913 			return csum;
2914 		offset += copy;
2915 		to     += copy;
2916 		pos	= copy;
2917 	}
2918 
2919 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2920 		int end;
2921 
2922 		WARN_ON(start > offset + len);
2923 
2924 		end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
2925 		if ((copy = end - offset) > 0) {
2926 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2927 			u32 p_off, p_len, copied;
2928 			struct page *p;
2929 			__wsum csum2;
2930 			u8 *vaddr;
2931 
2932 			if (copy > len)
2933 				copy = len;
2934 
2935 			skb_frag_foreach_page(frag,
2936 					      skb_frag_off(frag) + offset - start,
2937 					      copy, p, p_off, p_len, copied) {
2938 				vaddr = kmap_atomic(p);
2939 				csum2 = csum_partial_copy_nocheck(vaddr + p_off,
2940 								  to + copied,
2941 								  p_len);
2942 				kunmap_atomic(vaddr);
2943 				csum = csum_block_add(csum, csum2, pos);
2944 				pos += p_len;
2945 			}
2946 
2947 			if (!(len -= copy))
2948 				return csum;
2949 			offset += copy;
2950 			to     += copy;
2951 		}
2952 		start = end;
2953 	}
2954 
2955 	skb_walk_frags(skb, frag_iter) {
2956 		__wsum csum2;
2957 		int end;
2958 
2959 		WARN_ON(start > offset + len);
2960 
2961 		end = start + frag_iter->len;
2962 		if ((copy = end - offset) > 0) {
2963 			if (copy > len)
2964 				copy = len;
2965 			csum2 = skb_copy_and_csum_bits(frag_iter,
2966 						       offset - start,
2967 						       to, copy);
2968 			csum = csum_block_add(csum, csum2, pos);
2969 			if ((len -= copy) == 0)
2970 				return csum;
2971 			offset += copy;
2972 			to     += copy;
2973 			pos    += copy;
2974 		}
2975 		start = end;
2976 	}
2977 	BUG_ON(len);
2978 	return csum;
2979 }
2980 EXPORT_SYMBOL(skb_copy_and_csum_bits);
2981 
2982 __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len)
2983 {
2984 	__sum16 sum;
2985 
2986 	sum = csum_fold(skb_checksum(skb, 0, len, skb->csum));
2987 	/* See comments in __skb_checksum_complete(). */
2988 	if (likely(!sum)) {
2989 		if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
2990 		    !skb->csum_complete_sw)
2991 			netdev_rx_csum_fault(skb->dev, skb);
2992 	}
2993 	if (!skb_shared(skb))
2994 		skb->csum_valid = !sum;
2995 	return sum;
2996 }
2997 EXPORT_SYMBOL(__skb_checksum_complete_head);
2998 
2999 /* This function assumes skb->csum already holds pseudo header's checksum,
3000  * which has been changed from the hardware checksum, for example, by
3001  * __skb_checksum_validate_complete(). And, the original skb->csum must
3002  * have been validated unsuccessfully for CHECKSUM_COMPLETE case.
3003  *
3004  * It returns non-zero if the recomputed checksum is still invalid, otherwise
3005  * zero. The new checksum is stored back into skb->csum unless the skb is
3006  * shared.
3007  */
3008 __sum16 __skb_checksum_complete(struct sk_buff *skb)
3009 {
3010 	__wsum csum;
3011 	__sum16 sum;
3012 
3013 	csum = skb_checksum(skb, 0, skb->len, 0);
3014 
3015 	sum = csum_fold(csum_add(skb->csum, csum));
3016 	/* This check is inverted, because we already knew the hardware
3017 	 * checksum is invalid before calling this function. So, if the
3018 	 * re-computed checksum is valid instead, then we have a mismatch
3019 	 * between the original skb->csum and skb_checksum(). This means either
3020 	 * the original hardware checksum is incorrect or we screw up skb->csum
3021 	 * when moving skb->data around.
3022 	 */
3023 	if (likely(!sum)) {
3024 		if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
3025 		    !skb->csum_complete_sw)
3026 			netdev_rx_csum_fault(skb->dev, skb);
3027 	}
3028 
3029 	if (!skb_shared(skb)) {
3030 		/* Save full packet checksum */
3031 		skb->csum = csum;
3032 		skb->ip_summed = CHECKSUM_COMPLETE;
3033 		skb->csum_complete_sw = 1;
3034 		skb->csum_valid = !sum;
3035 	}
3036 
3037 	return sum;
3038 }
3039 EXPORT_SYMBOL(__skb_checksum_complete);
3040 
3041 static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum)
3042 {
3043 	net_warn_ratelimited(
3044 		"%s: attempt to compute crc32c without libcrc32c.ko\n",
3045 		__func__);
3046 	return 0;
3047 }
3048 
3049 static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2,
3050 				       int offset, int len)
3051 {
3052 	net_warn_ratelimited(
3053 		"%s: attempt to compute crc32c without libcrc32c.ko\n",
3054 		__func__);
3055 	return 0;
3056 }
3057 
3058 static const struct skb_checksum_ops default_crc32c_ops = {
3059 	.update  = warn_crc32c_csum_update,
3060 	.combine = warn_crc32c_csum_combine,
3061 };
3062 
3063 const struct skb_checksum_ops *crc32c_csum_stub __read_mostly =
3064 	&default_crc32c_ops;
3065 EXPORT_SYMBOL(crc32c_csum_stub);
3066 
3067  /**
3068  *	skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
3069  *	@from: source buffer
3070  *
3071  *	Calculates the amount of linear headroom needed in the 'to' skb passed
3072  *	into skb_zerocopy().
3073  */
3074 unsigned int
3075 skb_zerocopy_headlen(const struct sk_buff *from)
3076 {
3077 	unsigned int hlen = 0;
3078 
3079 	if (!from->head_frag ||
3080 	    skb_headlen(from) < L1_CACHE_BYTES ||
3081 	    skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS) {
3082 		hlen = skb_headlen(from);
3083 		if (!hlen)
3084 			hlen = from->len;
3085 	}
3086 
3087 	if (skb_has_frag_list(from))
3088 		hlen = from->len;
3089 
3090 	return hlen;
3091 }
3092 EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
3093 
3094 /**
3095  *	skb_zerocopy - Zero copy skb to skb
3096  *	@to: destination buffer
3097  *	@from: source buffer
3098  *	@len: number of bytes to copy from source buffer
3099  *	@hlen: size of linear headroom in destination buffer
3100  *
3101  *	Copies up to `len` bytes from `from` to `to` by creating references
3102  *	to the frags in the source buffer.
3103  *
3104  *	The `hlen` as calculated by skb_zerocopy_headlen() specifies the
3105  *	headroom in the `to` buffer.
3106  *
3107  *	Return value:
3108  *	0: everything is OK
3109  *	-ENOMEM: couldn't orphan frags of @from due to lack of memory
3110  *	-EFAULT: skb_copy_bits() found some problem with skb geometry
3111  */
3112 int
3113 skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
3114 {
3115 	int i, j = 0;
3116 	int plen = 0; /* length of skb->head fragment */
3117 	int ret;
3118 	struct page *page;
3119 	unsigned int offset;
3120 
3121 	BUG_ON(!from->head_frag && !hlen);
3122 
3123 	/* dont bother with small payloads */
3124 	if (len <= skb_tailroom(to))
3125 		return skb_copy_bits(from, 0, skb_put(to, len), len);
3126 
3127 	if (hlen) {
3128 		ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
3129 		if (unlikely(ret))
3130 			return ret;
3131 		len -= hlen;
3132 	} else {
3133 		plen = min_t(int, skb_headlen(from), len);
3134 		if (plen) {
3135 			page = virt_to_head_page(from->head);
3136 			offset = from->data - (unsigned char *)page_address(page);
3137 			__skb_fill_page_desc(to, 0, page, offset, plen);
3138 			get_page(page);
3139 			j = 1;
3140 			len -= plen;
3141 		}
3142 	}
3143 
3144 	to->truesize += len + plen;
3145 	to->len += len + plen;
3146 	to->data_len += len + plen;
3147 
3148 	if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
3149 		skb_tx_error(from);
3150 		return -ENOMEM;
3151 	}
3152 	skb_zerocopy_clone(to, from, GFP_ATOMIC);
3153 
3154 	for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
3155 		int size;
3156 
3157 		if (!len)
3158 			break;
3159 		skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
3160 		size = min_t(int, skb_frag_size(&skb_shinfo(to)->frags[j]),
3161 					len);
3162 		skb_frag_size_set(&skb_shinfo(to)->frags[j], size);
3163 		len -= size;
3164 		skb_frag_ref(to, j);
3165 		j++;
3166 	}
3167 	skb_shinfo(to)->nr_frags = j;
3168 
3169 	return 0;
3170 }
3171 EXPORT_SYMBOL_GPL(skb_zerocopy);
3172 
3173 void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
3174 {
3175 	__wsum csum;
3176 	long csstart;
3177 
3178 	if (skb->ip_summed == CHECKSUM_PARTIAL)
3179 		csstart = skb_checksum_start_offset(skb);
3180 	else
3181 		csstart = skb_headlen(skb);
3182 
3183 	BUG_ON(csstart > skb_headlen(skb));
3184 
3185 	skb_copy_from_linear_data(skb, to, csstart);
3186 
3187 	csum = 0;
3188 	if (csstart != skb->len)
3189 		csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
3190 					      skb->len - csstart);
3191 
3192 	if (skb->ip_summed == CHECKSUM_PARTIAL) {
3193 		long csstuff = csstart + skb->csum_offset;
3194 
3195 		*((__sum16 *)(to + csstuff)) = csum_fold(csum);
3196 	}
3197 }
3198 EXPORT_SYMBOL(skb_copy_and_csum_dev);
3199 
3200 /**
3201  *	skb_dequeue - remove from the head of the queue
3202  *	@list: list to dequeue from
3203  *
3204  *	Remove the head of the list. The list lock is taken so the function
3205  *	may be used safely with other locking list functions. The head item is
3206  *	returned or %NULL if the list is empty.
3207  */
3208 
3209 struct sk_buff *skb_dequeue(struct sk_buff_head *list)
3210 {
3211 	unsigned long flags;
3212 	struct sk_buff *result;
3213 
3214 	spin_lock_irqsave(&list->lock, flags);
3215 	result = __skb_dequeue(list);
3216 	spin_unlock_irqrestore(&list->lock, flags);
3217 	return result;
3218 }
3219 EXPORT_SYMBOL(skb_dequeue);
3220 
3221 /**
3222  *	skb_dequeue_tail - remove from the tail of the queue
3223  *	@list: list to dequeue from
3224  *
3225  *	Remove the tail of the list. The list lock is taken so the function
3226  *	may be used safely with other locking list functions. The tail item is
3227  *	returned or %NULL if the list is empty.
3228  */
3229 struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
3230 {
3231 	unsigned long flags;
3232 	struct sk_buff *result;
3233 
3234 	spin_lock_irqsave(&list->lock, flags);
3235 	result = __skb_dequeue_tail(list);
3236 	spin_unlock_irqrestore(&list->lock, flags);
3237 	return result;
3238 }
3239 EXPORT_SYMBOL(skb_dequeue_tail);
3240 
3241 /**
3242  *	skb_queue_purge - empty a list
3243  *	@list: list to empty
3244  *
3245  *	Delete all buffers on an &sk_buff list. Each buffer is removed from
3246  *	the list and one reference dropped. This function takes the list
3247  *	lock and is atomic with respect to other list locking functions.
3248  */
3249 void skb_queue_purge(struct sk_buff_head *list)
3250 {
3251 	struct sk_buff *skb;
3252 	while ((skb = skb_dequeue(list)) != NULL)
3253 		kfree_skb(skb);
3254 }
3255 EXPORT_SYMBOL(skb_queue_purge);
3256 
3257 /**
3258  *	skb_rbtree_purge - empty a skb rbtree
3259  *	@root: root of the rbtree to empty
3260  *	Return value: the sum of truesizes of all purged skbs.
3261  *
3262  *	Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
3263  *	the list and one reference dropped. This function does not take
3264  *	any lock. Synchronization should be handled by the caller (e.g., TCP
3265  *	out-of-order queue is protected by the socket lock).
3266  */
3267 unsigned int skb_rbtree_purge(struct rb_root *root)
3268 {
3269 	struct rb_node *p = rb_first(root);
3270 	unsigned int sum = 0;
3271 
3272 	while (p) {
3273 		struct sk_buff *skb = rb_entry(p, struct sk_buff, rbnode);
3274 
3275 		p = rb_next(p);
3276 		rb_erase(&skb->rbnode, root);
3277 		sum += skb->truesize;
3278 		kfree_skb(skb);
3279 	}
3280 	return sum;
3281 }
3282 
3283 /**
3284  *	skb_queue_head - queue a buffer at the list head
3285  *	@list: list to use
3286  *	@newsk: buffer to queue
3287  *
3288  *	Queue a buffer at the start of the list. This function takes the
3289  *	list lock and can be used safely with other locking &sk_buff functions
3290  *	safely.
3291  *
3292  *	A buffer cannot be placed on two lists at the same time.
3293  */
3294 void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
3295 {
3296 	unsigned long flags;
3297 
3298 	spin_lock_irqsave(&list->lock, flags);
3299 	__skb_queue_head(list, newsk);
3300 	spin_unlock_irqrestore(&list->lock, flags);
3301 }
3302 EXPORT_SYMBOL(skb_queue_head);
3303 
3304 /**
3305  *	skb_queue_tail - queue a buffer at the list tail
3306  *	@list: list to use
3307  *	@newsk: buffer to queue
3308  *
3309  *	Queue a buffer at the tail of the list. This function takes the
3310  *	list lock and can be used safely with other locking &sk_buff functions
3311  *	safely.
3312  *
3313  *	A buffer cannot be placed on two lists at the same time.
3314  */
3315 void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
3316 {
3317 	unsigned long flags;
3318 
3319 	spin_lock_irqsave(&list->lock, flags);
3320 	__skb_queue_tail(list, newsk);
3321 	spin_unlock_irqrestore(&list->lock, flags);
3322 }
3323 EXPORT_SYMBOL(skb_queue_tail);
3324 
3325 /**
3326  *	skb_unlink	-	remove a buffer from a list
3327  *	@skb: buffer to remove
3328  *	@list: list to use
3329  *
3330  *	Remove a packet from a list. The list locks are taken and this
3331  *	function is atomic with respect to other list locked calls
3332  *
3333  *	You must know what list the SKB is on.
3334  */
3335 void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
3336 {
3337 	unsigned long flags;
3338 
3339 	spin_lock_irqsave(&list->lock, flags);
3340 	__skb_unlink(skb, list);
3341 	spin_unlock_irqrestore(&list->lock, flags);
3342 }
3343 EXPORT_SYMBOL(skb_unlink);
3344 
3345 /**
3346  *	skb_append	-	append a buffer
3347  *	@old: buffer to insert after
3348  *	@newsk: buffer to insert
3349  *	@list: list to use
3350  *
3351  *	Place a packet after a given packet in a list. The list locks are taken
3352  *	and this function is atomic with respect to other list locked calls.
3353  *	A buffer cannot be placed on two lists at the same time.
3354  */
3355 void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
3356 {
3357 	unsigned long flags;
3358 
3359 	spin_lock_irqsave(&list->lock, flags);
3360 	__skb_queue_after(list, old, newsk);
3361 	spin_unlock_irqrestore(&list->lock, flags);
3362 }
3363 EXPORT_SYMBOL(skb_append);
3364 
3365 static inline void skb_split_inside_header(struct sk_buff *skb,
3366 					   struct sk_buff* skb1,
3367 					   const u32 len, const int pos)
3368 {
3369 	int i;
3370 
3371 	skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
3372 					 pos - len);
3373 	/* And move data appendix as is. */
3374 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
3375 		skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
3376 
3377 	skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
3378 	skb_shinfo(skb)->nr_frags  = 0;
3379 	skb1->data_len		   = skb->data_len;
3380 	skb1->len		   += skb1->data_len;
3381 	skb->data_len		   = 0;
3382 	skb->len		   = len;
3383 	skb_set_tail_pointer(skb, len);
3384 }
3385 
3386 static inline void skb_split_no_header(struct sk_buff *skb,
3387 				       struct sk_buff* skb1,
3388 				       const u32 len, int pos)
3389 {
3390 	int i, k = 0;
3391 	const int nfrags = skb_shinfo(skb)->nr_frags;
3392 
3393 	skb_shinfo(skb)->nr_frags = 0;
3394 	skb1->len		  = skb1->data_len = skb->len - len;
3395 	skb->len		  = len;
3396 	skb->data_len		  = len - pos;
3397 
3398 	for (i = 0; i < nfrags; i++) {
3399 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
3400 
3401 		if (pos + size > len) {
3402 			skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
3403 
3404 			if (pos < len) {
3405 				/* Split frag.
3406 				 * We have two variants in this case:
3407 				 * 1. Move all the frag to the second
3408 				 *    part, if it is possible. F.e.
3409 				 *    this approach is mandatory for TUX,
3410 				 *    where splitting is expensive.
3411 				 * 2. Split is accurately. We make this.
3412 				 */
3413 				skb_frag_ref(skb, i);
3414 				skb_frag_off_add(&skb_shinfo(skb1)->frags[0], len - pos);
3415 				skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
3416 				skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
3417 				skb_shinfo(skb)->nr_frags++;
3418 			}
3419 			k++;
3420 		} else
3421 			skb_shinfo(skb)->nr_frags++;
3422 		pos += size;
3423 	}
3424 	skb_shinfo(skb1)->nr_frags = k;
3425 }
3426 
3427 /**
3428  * skb_split - Split fragmented skb to two parts at length len.
3429  * @skb: the buffer to split
3430  * @skb1: the buffer to receive the second part
3431  * @len: new length for skb
3432  */
3433 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
3434 {
3435 	int pos = skb_headlen(skb);
3436 	const int zc_flags = SKBFL_SHARED_FRAG | SKBFL_PURE_ZEROCOPY;
3437 
3438 	skb_shinfo(skb1)->flags |= skb_shinfo(skb)->flags & zc_flags;
3439 	skb_zerocopy_clone(skb1, skb, 0);
3440 	if (len < pos)	/* Split line is inside header. */
3441 		skb_split_inside_header(skb, skb1, len, pos);
3442 	else		/* Second chunk has no header, nothing to copy. */
3443 		skb_split_no_header(skb, skb1, len, pos);
3444 }
3445 EXPORT_SYMBOL(skb_split);
3446 
3447 /* Shifting from/to a cloned skb is a no-go.
3448  *
3449  * Caller cannot keep skb_shinfo related pointers past calling here!
3450  */
3451 static int skb_prepare_for_shift(struct sk_buff *skb)
3452 {
3453 	return skb_unclone_keeptruesize(skb, GFP_ATOMIC);
3454 }
3455 
3456 /**
3457  * skb_shift - Shifts paged data partially from skb to another
3458  * @tgt: buffer into which tail data gets added
3459  * @skb: buffer from which the paged data comes from
3460  * @shiftlen: shift up to this many bytes
3461  *
3462  * Attempts to shift up to shiftlen worth of bytes, which may be less than
3463  * the length of the skb, from skb to tgt. Returns number bytes shifted.
3464  * It's up to caller to free skb if everything was shifted.
3465  *
3466  * If @tgt runs out of frags, the whole operation is aborted.
3467  *
3468  * Skb cannot include anything else but paged data while tgt is allowed
3469  * to have non-paged data as well.
3470  *
3471  * TODO: full sized shift could be optimized but that would need
3472  * specialized skb free'er to handle frags without up-to-date nr_frags.
3473  */
3474 int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
3475 {
3476 	int from, to, merge, todo;
3477 	skb_frag_t *fragfrom, *fragto;
3478 
3479 	BUG_ON(shiftlen > skb->len);
3480 
3481 	if (skb_headlen(skb))
3482 		return 0;
3483 	if (skb_zcopy(tgt) || skb_zcopy(skb))
3484 		return 0;
3485 
3486 	todo = shiftlen;
3487 	from = 0;
3488 	to = skb_shinfo(tgt)->nr_frags;
3489 	fragfrom = &skb_shinfo(skb)->frags[from];
3490 
3491 	/* Actual merge is delayed until the point when we know we can
3492 	 * commit all, so that we don't have to undo partial changes
3493 	 */
3494 	if (!to ||
3495 	    !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
3496 			      skb_frag_off(fragfrom))) {
3497 		merge = -1;
3498 	} else {
3499 		merge = to - 1;
3500 
3501 		todo -= skb_frag_size(fragfrom);
3502 		if (todo < 0) {
3503 			if (skb_prepare_for_shift(skb) ||
3504 			    skb_prepare_for_shift(tgt))
3505 				return 0;
3506 
3507 			/* All previous frag pointers might be stale! */
3508 			fragfrom = &skb_shinfo(skb)->frags[from];
3509 			fragto = &skb_shinfo(tgt)->frags[merge];
3510 
3511 			skb_frag_size_add(fragto, shiftlen);
3512 			skb_frag_size_sub(fragfrom, shiftlen);
3513 			skb_frag_off_add(fragfrom, shiftlen);
3514 
3515 			goto onlymerged;
3516 		}
3517 
3518 		from++;
3519 	}
3520 
3521 	/* Skip full, not-fitting skb to avoid expensive operations */
3522 	if ((shiftlen == skb->len) &&
3523 	    (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
3524 		return 0;
3525 
3526 	if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
3527 		return 0;
3528 
3529 	while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
3530 		if (to == MAX_SKB_FRAGS)
3531 			return 0;
3532 
3533 		fragfrom = &skb_shinfo(skb)->frags[from];
3534 		fragto = &skb_shinfo(tgt)->frags[to];
3535 
3536 		if (todo >= skb_frag_size(fragfrom)) {
3537 			*fragto = *fragfrom;
3538 			todo -= skb_frag_size(fragfrom);
3539 			from++;
3540 			to++;
3541 
3542 		} else {
3543 			__skb_frag_ref(fragfrom);
3544 			skb_frag_page_copy(fragto, fragfrom);
3545 			skb_frag_off_copy(fragto, fragfrom);
3546 			skb_frag_size_set(fragto, todo);
3547 
3548 			skb_frag_off_add(fragfrom, todo);
3549 			skb_frag_size_sub(fragfrom, todo);
3550 			todo = 0;
3551 
3552 			to++;
3553 			break;
3554 		}
3555 	}
3556 
3557 	/* Ready to "commit" this state change to tgt */
3558 	skb_shinfo(tgt)->nr_frags = to;
3559 
3560 	if (merge >= 0) {
3561 		fragfrom = &skb_shinfo(skb)->frags[0];
3562 		fragto = &skb_shinfo(tgt)->frags[merge];
3563 
3564 		skb_frag_size_add(fragto, skb_frag_size(fragfrom));
3565 		__skb_frag_unref(fragfrom, skb->pp_recycle);
3566 	}
3567 
3568 	/* Reposition in the original skb */
3569 	to = 0;
3570 	while (from < skb_shinfo(skb)->nr_frags)
3571 		skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
3572 	skb_shinfo(skb)->nr_frags = to;
3573 
3574 	BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
3575 
3576 onlymerged:
3577 	/* Most likely the tgt won't ever need its checksum anymore, skb on
3578 	 * the other hand might need it if it needs to be resent
3579 	 */
3580 	tgt->ip_summed = CHECKSUM_PARTIAL;
3581 	skb->ip_summed = CHECKSUM_PARTIAL;
3582 
3583 	/* Yak, is it really working this way? Some helper please? */
3584 	skb->len -= shiftlen;
3585 	skb->data_len -= shiftlen;
3586 	skb->truesize -= shiftlen;
3587 	tgt->len += shiftlen;
3588 	tgt->data_len += shiftlen;
3589 	tgt->truesize += shiftlen;
3590 
3591 	return shiftlen;
3592 }
3593 
3594 /**
3595  * skb_prepare_seq_read - Prepare a sequential read of skb data
3596  * @skb: the buffer to read
3597  * @from: lower offset of data to be read
3598  * @to: upper offset of data to be read
3599  * @st: state variable
3600  *
3601  * Initializes the specified state variable. Must be called before
3602  * invoking skb_seq_read() for the first time.
3603  */
3604 void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
3605 			  unsigned int to, struct skb_seq_state *st)
3606 {
3607 	st->lower_offset = from;
3608 	st->upper_offset = to;
3609 	st->root_skb = st->cur_skb = skb;
3610 	st->frag_idx = st->stepped_offset = 0;
3611 	st->frag_data = NULL;
3612 	st->frag_off = 0;
3613 }
3614 EXPORT_SYMBOL(skb_prepare_seq_read);
3615 
3616 /**
3617  * skb_seq_read - Sequentially read skb data
3618  * @consumed: number of bytes consumed by the caller so far
3619  * @data: destination pointer for data to be returned
3620  * @st: state variable
3621  *
3622  * Reads a block of skb data at @consumed relative to the
3623  * lower offset specified to skb_prepare_seq_read(). Assigns
3624  * the head of the data block to @data and returns the length
3625  * of the block or 0 if the end of the skb data or the upper
3626  * offset has been reached.
3627  *
3628  * The caller is not required to consume all of the data
3629  * returned, i.e. @consumed is typically set to the number
3630  * of bytes already consumed and the next call to
3631  * skb_seq_read() will return the remaining part of the block.
3632  *
3633  * Note 1: The size of each block of data returned can be arbitrary,
3634  *       this limitation is the cost for zerocopy sequential
3635  *       reads of potentially non linear data.
3636  *
3637  * Note 2: Fragment lists within fragments are not implemented
3638  *       at the moment, state->root_skb could be replaced with
3639  *       a stack for this purpose.
3640  */
3641 unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
3642 			  struct skb_seq_state *st)
3643 {
3644 	unsigned int block_limit, abs_offset = consumed + st->lower_offset;
3645 	skb_frag_t *frag;
3646 
3647 	if (unlikely(abs_offset >= st->upper_offset)) {
3648 		if (st->frag_data) {
3649 			kunmap_atomic(st->frag_data);
3650 			st->frag_data = NULL;
3651 		}
3652 		return 0;
3653 	}
3654 
3655 next_skb:
3656 	block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
3657 
3658 	if (abs_offset < block_limit && !st->frag_data) {
3659 		*data = st->cur_skb->data + (abs_offset - st->stepped_offset);
3660 		return block_limit - abs_offset;
3661 	}
3662 
3663 	if (st->frag_idx == 0 && !st->frag_data)
3664 		st->stepped_offset += skb_headlen(st->cur_skb);
3665 
3666 	while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
3667 		unsigned int pg_idx, pg_off, pg_sz;
3668 
3669 		frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
3670 
3671 		pg_idx = 0;
3672 		pg_off = skb_frag_off(frag);
3673 		pg_sz = skb_frag_size(frag);
3674 
3675 		if (skb_frag_must_loop(skb_frag_page(frag))) {
3676 			pg_idx = (pg_off + st->frag_off) >> PAGE_SHIFT;
3677 			pg_off = offset_in_page(pg_off + st->frag_off);
3678 			pg_sz = min_t(unsigned int, pg_sz - st->frag_off,
3679 						    PAGE_SIZE - pg_off);
3680 		}
3681 
3682 		block_limit = pg_sz + st->stepped_offset;
3683 		if (abs_offset < block_limit) {
3684 			if (!st->frag_data)
3685 				st->frag_data = kmap_atomic(skb_frag_page(frag) + pg_idx);
3686 
3687 			*data = (u8 *)st->frag_data + pg_off +
3688 				(abs_offset - st->stepped_offset);
3689 
3690 			return block_limit - abs_offset;
3691 		}
3692 
3693 		if (st->frag_data) {
3694 			kunmap_atomic(st->frag_data);
3695 			st->frag_data = NULL;
3696 		}
3697 
3698 		st->stepped_offset += pg_sz;
3699 		st->frag_off += pg_sz;
3700 		if (st->frag_off == skb_frag_size(frag)) {
3701 			st->frag_off = 0;
3702 			st->frag_idx++;
3703 		}
3704 	}
3705 
3706 	if (st->frag_data) {
3707 		kunmap_atomic(st->frag_data);
3708 		st->frag_data = NULL;
3709 	}
3710 
3711 	if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
3712 		st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
3713 		st->frag_idx = 0;
3714 		goto next_skb;
3715 	} else if (st->cur_skb->next) {
3716 		st->cur_skb = st->cur_skb->next;
3717 		st->frag_idx = 0;
3718 		goto next_skb;
3719 	}
3720 
3721 	return 0;
3722 }
3723 EXPORT_SYMBOL(skb_seq_read);
3724 
3725 /**
3726  * skb_abort_seq_read - Abort a sequential read of skb data
3727  * @st: state variable
3728  *
3729  * Must be called if skb_seq_read() was not called until it
3730  * returned 0.
3731  */
3732 void skb_abort_seq_read(struct skb_seq_state *st)
3733 {
3734 	if (st->frag_data)
3735 		kunmap_atomic(st->frag_data);
3736 }
3737 EXPORT_SYMBOL(skb_abort_seq_read);
3738 
3739 #define TS_SKB_CB(state)	((struct skb_seq_state *) &((state)->cb))
3740 
3741 static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
3742 					  struct ts_config *conf,
3743 					  struct ts_state *state)
3744 {
3745 	return skb_seq_read(offset, text, TS_SKB_CB(state));
3746 }
3747 
3748 static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
3749 {
3750 	skb_abort_seq_read(TS_SKB_CB(state));
3751 }
3752 
3753 /**
3754  * skb_find_text - Find a text pattern in skb data
3755  * @skb: the buffer to look in
3756  * @from: search offset
3757  * @to: search limit
3758  * @config: textsearch configuration
3759  *
3760  * Finds a pattern in the skb data according to the specified
3761  * textsearch configuration. Use textsearch_next() to retrieve
3762  * subsequent occurrences of the pattern. Returns the offset
3763  * to the first occurrence or UINT_MAX if no match was found.
3764  */
3765 unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
3766 			   unsigned int to, struct ts_config *config)
3767 {
3768 	struct ts_state state;
3769 	unsigned int ret;
3770 
3771 	BUILD_BUG_ON(sizeof(struct skb_seq_state) > sizeof(state.cb));
3772 
3773 	config->get_next_block = skb_ts_get_next_block;
3774 	config->finish = skb_ts_finish;
3775 
3776 	skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
3777 
3778 	ret = textsearch_find(config, &state);
3779 	return (ret <= to - from ? ret : UINT_MAX);
3780 }
3781 EXPORT_SYMBOL(skb_find_text);
3782 
3783 int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3784 			 int offset, size_t size)
3785 {
3786 	int i = skb_shinfo(skb)->nr_frags;
3787 
3788 	if (skb_can_coalesce(skb, i, page, offset)) {
3789 		skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3790 	} else if (i < MAX_SKB_FRAGS) {
3791 		get_page(page);
3792 		skb_fill_page_desc(skb, i, page, offset, size);
3793 	} else {
3794 		return -EMSGSIZE;
3795 	}
3796 
3797 	return 0;
3798 }
3799 EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3800 
3801 /**
3802  *	skb_pull_rcsum - pull skb and update receive checksum
3803  *	@skb: buffer to update
3804  *	@len: length of data pulled
3805  *
3806  *	This function performs an skb_pull on the packet and updates
3807  *	the CHECKSUM_COMPLETE checksum.  It should be used on
3808  *	receive path processing instead of skb_pull unless you know
3809  *	that the checksum difference is zero (e.g., a valid IP header)
3810  *	or you are setting ip_summed to CHECKSUM_NONE.
3811  */
3812 void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3813 {
3814 	unsigned char *data = skb->data;
3815 
3816 	BUG_ON(len > skb->len);
3817 	__skb_pull(skb, len);
3818 	skb_postpull_rcsum(skb, data, len);
3819 	return skb->data;
3820 }
3821 EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3822 
3823 static inline skb_frag_t skb_head_frag_to_page_desc(struct sk_buff *frag_skb)
3824 {
3825 	skb_frag_t head_frag;
3826 	struct page *page;
3827 
3828 	page = virt_to_head_page(frag_skb->head);
3829 	__skb_frag_set_page(&head_frag, page);
3830 	skb_frag_off_set(&head_frag, frag_skb->data -
3831 			 (unsigned char *)page_address(page));
3832 	skb_frag_size_set(&head_frag, skb_headlen(frag_skb));
3833 	return head_frag;
3834 }
3835 
3836 struct sk_buff *skb_segment_list(struct sk_buff *skb,
3837 				 netdev_features_t features,
3838 				 unsigned int offset)
3839 {
3840 	struct sk_buff *list_skb = skb_shinfo(skb)->frag_list;
3841 	unsigned int tnl_hlen = skb_tnl_header_len(skb);
3842 	unsigned int delta_truesize = 0;
3843 	unsigned int delta_len = 0;
3844 	struct sk_buff *tail = NULL;
3845 	struct sk_buff *nskb, *tmp;
3846 	int err;
3847 
3848 	skb_push(skb, -skb_network_offset(skb) + offset);
3849 
3850 	skb_shinfo(skb)->frag_list = NULL;
3851 
3852 	do {
3853 		nskb = list_skb;
3854 		list_skb = list_skb->next;
3855 
3856 		err = 0;
3857 		if (skb_shared(nskb)) {
3858 			tmp = skb_clone(nskb, GFP_ATOMIC);
3859 			if (tmp) {
3860 				consume_skb(nskb);
3861 				nskb = tmp;
3862 				err = skb_unclone(nskb, GFP_ATOMIC);
3863 			} else {
3864 				err = -ENOMEM;
3865 			}
3866 		}
3867 
3868 		if (!tail)
3869 			skb->next = nskb;
3870 		else
3871 			tail->next = nskb;
3872 
3873 		if (unlikely(err)) {
3874 			nskb->next = list_skb;
3875 			goto err_linearize;
3876 		}
3877 
3878 		tail = nskb;
3879 
3880 		delta_len += nskb->len;
3881 		delta_truesize += nskb->truesize;
3882 
3883 		skb_push(nskb, -skb_network_offset(nskb) + offset);
3884 
3885 		skb_release_head_state(nskb);
3886 		__copy_skb_header(nskb, skb);
3887 
3888 		skb_headers_offset_update(nskb, skb_headroom(nskb) - skb_headroom(skb));
3889 		skb_copy_from_linear_data_offset(skb, -tnl_hlen,
3890 						 nskb->data - tnl_hlen,
3891 						 offset + tnl_hlen);
3892 
3893 		if (skb_needs_linearize(nskb, features) &&
3894 		    __skb_linearize(nskb))
3895 			goto err_linearize;
3896 
3897 	} while (list_skb);
3898 
3899 	skb->truesize = skb->truesize - delta_truesize;
3900 	skb->data_len = skb->data_len - delta_len;
3901 	skb->len = skb->len - delta_len;
3902 
3903 	skb_gso_reset(skb);
3904 
3905 	skb->prev = tail;
3906 
3907 	if (skb_needs_linearize(skb, features) &&
3908 	    __skb_linearize(skb))
3909 		goto err_linearize;
3910 
3911 	skb_get(skb);
3912 
3913 	return skb;
3914 
3915 err_linearize:
3916 	kfree_skb_list(skb->next);
3917 	skb->next = NULL;
3918 	return ERR_PTR(-ENOMEM);
3919 }
3920 EXPORT_SYMBOL_GPL(skb_segment_list);
3921 
3922 /**
3923  *	skb_segment - Perform protocol segmentation on skb.
3924  *	@head_skb: buffer to segment
3925  *	@features: features for the output path (see dev->features)
3926  *
3927  *	This function performs segmentation on the given skb.  It returns
3928  *	a pointer to the first in a list of new skbs for the segments.
3929  *	In case of error it returns ERR_PTR(err).
3930  */
3931 struct sk_buff *skb_segment(struct sk_buff *head_skb,
3932 			    netdev_features_t features)
3933 {
3934 	struct sk_buff *segs = NULL;
3935 	struct sk_buff *tail = NULL;
3936 	struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
3937 	skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3938 	unsigned int mss = skb_shinfo(head_skb)->gso_size;
3939 	unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
3940 	struct sk_buff *frag_skb = head_skb;
3941 	unsigned int offset = doffset;
3942 	unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
3943 	unsigned int partial_segs = 0;
3944 	unsigned int headroom;
3945 	unsigned int len = head_skb->len;
3946 	__be16 proto;
3947 	bool csum, sg;
3948 	int nfrags = skb_shinfo(head_skb)->nr_frags;
3949 	int err = -ENOMEM;
3950 	int i = 0;
3951 	int pos;
3952 
3953 	if (list_skb && !list_skb->head_frag && skb_headlen(list_skb) &&
3954 	    (skb_shinfo(head_skb)->gso_type & SKB_GSO_DODGY)) {
3955 		/* gso_size is untrusted, and we have a frag_list with a linear
3956 		 * non head_frag head.
3957 		 *
3958 		 * (we assume checking the first list_skb member suffices;
3959 		 * i.e if either of the list_skb members have non head_frag
3960 		 * head, then the first one has too).
3961 		 *
3962 		 * If head_skb's headlen does not fit requested gso_size, it
3963 		 * means that the frag_list members do NOT terminate on exact
3964 		 * gso_size boundaries. Hence we cannot perform skb_frag_t page
3965 		 * sharing. Therefore we must fallback to copying the frag_list
3966 		 * skbs; we do so by disabling SG.
3967 		 */
3968 		if (mss != GSO_BY_FRAGS && mss != skb_headlen(head_skb))
3969 			features &= ~NETIF_F_SG;
3970 	}
3971 
3972 	__skb_push(head_skb, doffset);
3973 	proto = skb_network_protocol(head_skb, NULL);
3974 	if (unlikely(!proto))
3975 		return ERR_PTR(-EINVAL);
3976 
3977 	sg = !!(features & NETIF_F_SG);
3978 	csum = !!can_checksum_protocol(features, proto);
3979 
3980 	if (sg && csum && (mss != GSO_BY_FRAGS))  {
3981 		if (!(features & NETIF_F_GSO_PARTIAL)) {
3982 			struct sk_buff *iter;
3983 			unsigned int frag_len;
3984 
3985 			if (!list_skb ||
3986 			    !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
3987 				goto normal;
3988 
3989 			/* If we get here then all the required
3990 			 * GSO features except frag_list are supported.
3991 			 * Try to split the SKB to multiple GSO SKBs
3992 			 * with no frag_list.
3993 			 * Currently we can do that only when the buffers don't
3994 			 * have a linear part and all the buffers except
3995 			 * the last are of the same length.
3996 			 */
3997 			frag_len = list_skb->len;
3998 			skb_walk_frags(head_skb, iter) {
3999 				if (frag_len != iter->len && iter->next)
4000 					goto normal;
4001 				if (skb_headlen(iter) && !iter->head_frag)
4002 					goto normal;
4003 
4004 				len -= iter->len;
4005 			}
4006 
4007 			if (len != frag_len)
4008 				goto normal;
4009 		}
4010 
4011 		/* GSO partial only requires that we trim off any excess that
4012 		 * doesn't fit into an MSS sized block, so take care of that
4013 		 * now.
4014 		 */
4015 		partial_segs = len / mss;
4016 		if (partial_segs > 1)
4017 			mss *= partial_segs;
4018 		else
4019 			partial_segs = 0;
4020 	}
4021 
4022 normal:
4023 	headroom = skb_headroom(head_skb);
4024 	pos = skb_headlen(head_skb);
4025 
4026 	do {
4027 		struct sk_buff *nskb;
4028 		skb_frag_t *nskb_frag;
4029 		int hsize;
4030 		int size;
4031 
4032 		if (unlikely(mss == GSO_BY_FRAGS)) {
4033 			len = list_skb->len;
4034 		} else {
4035 			len = head_skb->len - offset;
4036 			if (len > mss)
4037 				len = mss;
4038 		}
4039 
4040 		hsize = skb_headlen(head_skb) - offset;
4041 
4042 		if (hsize <= 0 && i >= nfrags && skb_headlen(list_skb) &&
4043 		    (skb_headlen(list_skb) == len || sg)) {
4044 			BUG_ON(skb_headlen(list_skb) > len);
4045 
4046 			i = 0;
4047 			nfrags = skb_shinfo(list_skb)->nr_frags;
4048 			frag = skb_shinfo(list_skb)->frags;
4049 			frag_skb = list_skb;
4050 			pos += skb_headlen(list_skb);
4051 
4052 			while (pos < offset + len) {
4053 				BUG_ON(i >= nfrags);
4054 
4055 				size = skb_frag_size(frag);
4056 				if (pos + size > offset + len)
4057 					break;
4058 
4059 				i++;
4060 				pos += size;
4061 				frag++;
4062 			}
4063 
4064 			nskb = skb_clone(list_skb, GFP_ATOMIC);
4065 			list_skb = list_skb->next;
4066 
4067 			if (unlikely(!nskb))
4068 				goto err;
4069 
4070 			if (unlikely(pskb_trim(nskb, len))) {
4071 				kfree_skb(nskb);
4072 				goto err;
4073 			}
4074 
4075 			hsize = skb_end_offset(nskb);
4076 			if (skb_cow_head(nskb, doffset + headroom)) {
4077 				kfree_skb(nskb);
4078 				goto err;
4079 			}
4080 
4081 			nskb->truesize += skb_end_offset(nskb) - hsize;
4082 			skb_release_head_state(nskb);
4083 			__skb_push(nskb, doffset);
4084 		} else {
4085 			if (hsize < 0)
4086 				hsize = 0;
4087 			if (hsize > len || !sg)
4088 				hsize = len;
4089 
4090 			nskb = __alloc_skb(hsize + doffset + headroom,
4091 					   GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
4092 					   NUMA_NO_NODE);
4093 
4094 			if (unlikely(!nskb))
4095 				goto err;
4096 
4097 			skb_reserve(nskb, headroom);
4098 			__skb_put(nskb, doffset);
4099 		}
4100 
4101 		if (segs)
4102 			tail->next = nskb;
4103 		else
4104 			segs = nskb;
4105 		tail = nskb;
4106 
4107 		__copy_skb_header(nskb, head_skb);
4108 
4109 		skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
4110 		skb_reset_mac_len(nskb);
4111 
4112 		skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
4113 						 nskb->data - tnl_hlen,
4114 						 doffset + tnl_hlen);
4115 
4116 		if (nskb->len == len + doffset)
4117 			goto perform_csum_check;
4118 
4119 		if (!sg) {
4120 			if (!csum) {
4121 				if (!nskb->remcsum_offload)
4122 					nskb->ip_summed = CHECKSUM_NONE;
4123 				SKB_GSO_CB(nskb)->csum =
4124 					skb_copy_and_csum_bits(head_skb, offset,
4125 							       skb_put(nskb,
4126 								       len),
4127 							       len);
4128 				SKB_GSO_CB(nskb)->csum_start =
4129 					skb_headroom(nskb) + doffset;
4130 			} else {
4131 				skb_copy_bits(head_skb, offset,
4132 					      skb_put(nskb, len),
4133 					      len);
4134 			}
4135 			continue;
4136 		}
4137 
4138 		nskb_frag = skb_shinfo(nskb)->frags;
4139 
4140 		skb_copy_from_linear_data_offset(head_skb, offset,
4141 						 skb_put(nskb, hsize), hsize);
4142 
4143 		skb_shinfo(nskb)->flags |= skb_shinfo(head_skb)->flags &
4144 					   SKBFL_SHARED_FRAG;
4145 
4146 		if (skb_orphan_frags(frag_skb, GFP_ATOMIC) ||
4147 		    skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC))
4148 			goto err;
4149 
4150 		while (pos < offset + len) {
4151 			if (i >= nfrags) {
4152 				i = 0;
4153 				nfrags = skb_shinfo(list_skb)->nr_frags;
4154 				frag = skb_shinfo(list_skb)->frags;
4155 				frag_skb = list_skb;
4156 				if (!skb_headlen(list_skb)) {
4157 					BUG_ON(!nfrags);
4158 				} else {
4159 					BUG_ON(!list_skb->head_frag);
4160 
4161 					/* to make room for head_frag. */
4162 					i--;
4163 					frag--;
4164 				}
4165 				if (skb_orphan_frags(frag_skb, GFP_ATOMIC) ||
4166 				    skb_zerocopy_clone(nskb, frag_skb,
4167 						       GFP_ATOMIC))
4168 					goto err;
4169 
4170 				list_skb = list_skb->next;
4171 			}
4172 
4173 			if (unlikely(skb_shinfo(nskb)->nr_frags >=
4174 				     MAX_SKB_FRAGS)) {
4175 				net_warn_ratelimited(
4176 					"skb_segment: too many frags: %u %u\n",
4177 					pos, mss);
4178 				err = -EINVAL;
4179 				goto err;
4180 			}
4181 
4182 			*nskb_frag = (i < 0) ? skb_head_frag_to_page_desc(frag_skb) : *frag;
4183 			__skb_frag_ref(nskb_frag);
4184 			size = skb_frag_size(nskb_frag);
4185 
4186 			if (pos < offset) {
4187 				skb_frag_off_add(nskb_frag, offset - pos);
4188 				skb_frag_size_sub(nskb_frag, offset - pos);
4189 			}
4190 
4191 			skb_shinfo(nskb)->nr_frags++;
4192 
4193 			if (pos + size <= offset + len) {
4194 				i++;
4195 				frag++;
4196 				pos += size;
4197 			} else {
4198 				skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
4199 				goto skip_fraglist;
4200 			}
4201 
4202 			nskb_frag++;
4203 		}
4204 
4205 skip_fraglist:
4206 		nskb->data_len = len - hsize;
4207 		nskb->len += nskb->data_len;
4208 		nskb->truesize += nskb->data_len;
4209 
4210 perform_csum_check:
4211 		if (!csum) {
4212 			if (skb_has_shared_frag(nskb) &&
4213 			    __skb_linearize(nskb))
4214 				goto err;
4215 
4216 			if (!nskb->remcsum_offload)
4217 				nskb->ip_summed = CHECKSUM_NONE;
4218 			SKB_GSO_CB(nskb)->csum =
4219 				skb_checksum(nskb, doffset,
4220 					     nskb->len - doffset, 0);
4221 			SKB_GSO_CB(nskb)->csum_start =
4222 				skb_headroom(nskb) + doffset;
4223 		}
4224 	} while ((offset += len) < head_skb->len);
4225 
4226 	/* Some callers want to get the end of the list.
4227 	 * Put it in segs->prev to avoid walking the list.
4228 	 * (see validate_xmit_skb_list() for example)
4229 	 */
4230 	segs->prev = tail;
4231 
4232 	if (partial_segs) {
4233 		struct sk_buff *iter;
4234 		int type = skb_shinfo(head_skb)->gso_type;
4235 		unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
4236 
4237 		/* Update type to add partial and then remove dodgy if set */
4238 		type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
4239 		type &= ~SKB_GSO_DODGY;
4240 
4241 		/* Update GSO info and prepare to start updating headers on
4242 		 * our way back down the stack of protocols.
4243 		 */
4244 		for (iter = segs; iter; iter = iter->next) {
4245 			skb_shinfo(iter)->gso_size = gso_size;
4246 			skb_shinfo(iter)->gso_segs = partial_segs;
4247 			skb_shinfo(iter)->gso_type = type;
4248 			SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
4249 		}
4250 
4251 		if (tail->len - doffset <= gso_size)
4252 			skb_shinfo(tail)->gso_size = 0;
4253 		else if (tail != segs)
4254 			skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
4255 	}
4256 
4257 	/* Following permits correct backpressure, for protocols
4258 	 * using skb_set_owner_w().
4259 	 * Idea is to tranfert ownership from head_skb to last segment.
4260 	 */
4261 	if (head_skb->destructor == sock_wfree) {
4262 		swap(tail->truesize, head_skb->truesize);
4263 		swap(tail->destructor, head_skb->destructor);
4264 		swap(tail->sk, head_skb->sk);
4265 	}
4266 	return segs;
4267 
4268 err:
4269 	kfree_skb_list(segs);
4270 	return ERR_PTR(err);
4271 }
4272 EXPORT_SYMBOL_GPL(skb_segment);
4273 
4274 #ifdef CONFIG_SKB_EXTENSIONS
4275 #define SKB_EXT_ALIGN_VALUE	8
4276 #define SKB_EXT_CHUNKSIZEOF(x)	(ALIGN((sizeof(x)), SKB_EXT_ALIGN_VALUE) / SKB_EXT_ALIGN_VALUE)
4277 
4278 static const u8 skb_ext_type_len[] = {
4279 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4280 	[SKB_EXT_BRIDGE_NF] = SKB_EXT_CHUNKSIZEOF(struct nf_bridge_info),
4281 #endif
4282 #ifdef CONFIG_XFRM
4283 	[SKB_EXT_SEC_PATH] = SKB_EXT_CHUNKSIZEOF(struct sec_path),
4284 #endif
4285 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4286 	[TC_SKB_EXT] = SKB_EXT_CHUNKSIZEOF(struct tc_skb_ext),
4287 #endif
4288 #if IS_ENABLED(CONFIG_MPTCP)
4289 	[SKB_EXT_MPTCP] = SKB_EXT_CHUNKSIZEOF(struct mptcp_ext),
4290 #endif
4291 #if IS_ENABLED(CONFIG_MCTP_FLOWS)
4292 	[SKB_EXT_MCTP] = SKB_EXT_CHUNKSIZEOF(struct mctp_flow),
4293 #endif
4294 };
4295 
4296 static __always_inline unsigned int skb_ext_total_length(void)
4297 {
4298 	return SKB_EXT_CHUNKSIZEOF(struct skb_ext) +
4299 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4300 		skb_ext_type_len[SKB_EXT_BRIDGE_NF] +
4301 #endif
4302 #ifdef CONFIG_XFRM
4303 		skb_ext_type_len[SKB_EXT_SEC_PATH] +
4304 #endif
4305 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4306 		skb_ext_type_len[TC_SKB_EXT] +
4307 #endif
4308 #if IS_ENABLED(CONFIG_MPTCP)
4309 		skb_ext_type_len[SKB_EXT_MPTCP] +
4310 #endif
4311 #if IS_ENABLED(CONFIG_MCTP_FLOWS)
4312 		skb_ext_type_len[SKB_EXT_MCTP] +
4313 #endif
4314 		0;
4315 }
4316 
4317 static void skb_extensions_init(void)
4318 {
4319 	BUILD_BUG_ON(SKB_EXT_NUM >= 8);
4320 	BUILD_BUG_ON(skb_ext_total_length() > 255);
4321 
4322 	skbuff_ext_cache = kmem_cache_create("skbuff_ext_cache",
4323 					     SKB_EXT_ALIGN_VALUE * skb_ext_total_length(),
4324 					     0,
4325 					     SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4326 					     NULL);
4327 }
4328 #else
4329 static void skb_extensions_init(void) {}
4330 #endif
4331 
4332 void __init skb_init(void)
4333 {
4334 	skbuff_head_cache = kmem_cache_create_usercopy("skbuff_head_cache",
4335 					      sizeof(struct sk_buff),
4336 					      0,
4337 					      SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4338 					      offsetof(struct sk_buff, cb),
4339 					      sizeof_field(struct sk_buff, cb),
4340 					      NULL);
4341 	skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
4342 						sizeof(struct sk_buff_fclones),
4343 						0,
4344 						SLAB_HWCACHE_ALIGN|SLAB_PANIC,
4345 						NULL);
4346 	skb_extensions_init();
4347 }
4348 
4349 static int
4350 __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
4351 	       unsigned int recursion_level)
4352 {
4353 	int start = skb_headlen(skb);
4354 	int i, copy = start - offset;
4355 	struct sk_buff *frag_iter;
4356 	int elt = 0;
4357 
4358 	if (unlikely(recursion_level >= 24))
4359 		return -EMSGSIZE;
4360 
4361 	if (copy > 0) {
4362 		if (copy > len)
4363 			copy = len;
4364 		sg_set_buf(sg, skb->data + offset, copy);
4365 		elt++;
4366 		if ((len -= copy) == 0)
4367 			return elt;
4368 		offset += copy;
4369 	}
4370 
4371 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
4372 		int end;
4373 
4374 		WARN_ON(start > offset + len);
4375 
4376 		end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
4377 		if ((copy = end - offset) > 0) {
4378 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
4379 			if (unlikely(elt && sg_is_last(&sg[elt - 1])))
4380 				return -EMSGSIZE;
4381 
4382 			if (copy > len)
4383 				copy = len;
4384 			sg_set_page(&sg[elt], skb_frag_page(frag), copy,
4385 				    skb_frag_off(frag) + offset - start);
4386 			elt++;
4387 			if (!(len -= copy))
4388 				return elt;
4389 			offset += copy;
4390 		}
4391 		start = end;
4392 	}
4393 
4394 	skb_walk_frags(skb, frag_iter) {
4395 		int end, ret;
4396 
4397 		WARN_ON(start > offset + len);
4398 
4399 		end = start + frag_iter->len;
4400 		if ((copy = end - offset) > 0) {
4401 			if (unlikely(elt && sg_is_last(&sg[elt - 1])))
4402 				return -EMSGSIZE;
4403 
4404 			if (copy > len)
4405 				copy = len;
4406 			ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
4407 					      copy, recursion_level + 1);
4408 			if (unlikely(ret < 0))
4409 				return ret;
4410 			elt += ret;
4411 			if ((len -= copy) == 0)
4412 				return elt;
4413 			offset += copy;
4414 		}
4415 		start = end;
4416 	}
4417 	BUG_ON(len);
4418 	return elt;
4419 }
4420 
4421 /**
4422  *	skb_to_sgvec - Fill a scatter-gather list from a socket buffer
4423  *	@skb: Socket buffer containing the buffers to be mapped
4424  *	@sg: The scatter-gather list to map into
4425  *	@offset: The offset into the buffer's contents to start mapping
4426  *	@len: Length of buffer space to be mapped
4427  *
4428  *	Fill the specified scatter-gather list with mappings/pointers into a
4429  *	region of the buffer space attached to a socket buffer. Returns either
4430  *	the number of scatterlist items used, or -EMSGSIZE if the contents
4431  *	could not fit.
4432  */
4433 int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
4434 {
4435 	int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
4436 
4437 	if (nsg <= 0)
4438 		return nsg;
4439 
4440 	sg_mark_end(&sg[nsg - 1]);
4441 
4442 	return nsg;
4443 }
4444 EXPORT_SYMBOL_GPL(skb_to_sgvec);
4445 
4446 /* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
4447  * sglist without mark the sg which contain last skb data as the end.
4448  * So the caller can mannipulate sg list as will when padding new data after
4449  * the first call without calling sg_unmark_end to expend sg list.
4450  *
4451  * Scenario to use skb_to_sgvec_nomark:
4452  * 1. sg_init_table
4453  * 2. skb_to_sgvec_nomark(payload1)
4454  * 3. skb_to_sgvec_nomark(payload2)
4455  *
4456  * This is equivalent to:
4457  * 1. sg_init_table
4458  * 2. skb_to_sgvec(payload1)
4459  * 3. sg_unmark_end
4460  * 4. skb_to_sgvec(payload2)
4461  *
4462  * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
4463  * is more preferable.
4464  */
4465 int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
4466 			int offset, int len)
4467 {
4468 	return __skb_to_sgvec(skb, sg, offset, len, 0);
4469 }
4470 EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
4471 
4472 
4473 
4474 /**
4475  *	skb_cow_data - Check that a socket buffer's data buffers are writable
4476  *	@skb: The socket buffer to check.
4477  *	@tailbits: Amount of trailing space to be added
4478  *	@trailer: Returned pointer to the skb where the @tailbits space begins
4479  *
4480  *	Make sure that the data buffers attached to a socket buffer are
4481  *	writable. If they are not, private copies are made of the data buffers
4482  *	and the socket buffer is set to use these instead.
4483  *
4484  *	If @tailbits is given, make sure that there is space to write @tailbits
4485  *	bytes of data beyond current end of socket buffer.  @trailer will be
4486  *	set to point to the skb in which this space begins.
4487  *
4488  *	The number of scatterlist elements required to completely map the
4489  *	COW'd and extended socket buffer will be returned.
4490  */
4491 int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
4492 {
4493 	int copyflag;
4494 	int elt;
4495 	struct sk_buff *skb1, **skb_p;
4496 
4497 	/* If skb is cloned or its head is paged, reallocate
4498 	 * head pulling out all the pages (pages are considered not writable
4499 	 * at the moment even if they are anonymous).
4500 	 */
4501 	if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
4502 	    !__pskb_pull_tail(skb, __skb_pagelen(skb)))
4503 		return -ENOMEM;
4504 
4505 	/* Easy case. Most of packets will go this way. */
4506 	if (!skb_has_frag_list(skb)) {
4507 		/* A little of trouble, not enough of space for trailer.
4508 		 * This should not happen, when stack is tuned to generate
4509 		 * good frames. OK, on miss we reallocate and reserve even more
4510 		 * space, 128 bytes is fair. */
4511 
4512 		if (skb_tailroom(skb) < tailbits &&
4513 		    pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
4514 			return -ENOMEM;
4515 
4516 		/* Voila! */
4517 		*trailer = skb;
4518 		return 1;
4519 	}
4520 
4521 	/* Misery. We are in troubles, going to mincer fragments... */
4522 
4523 	elt = 1;
4524 	skb_p = &skb_shinfo(skb)->frag_list;
4525 	copyflag = 0;
4526 
4527 	while ((skb1 = *skb_p) != NULL) {
4528 		int ntail = 0;
4529 
4530 		/* The fragment is partially pulled by someone,
4531 		 * this can happen on input. Copy it and everything
4532 		 * after it. */
4533 
4534 		if (skb_shared(skb1))
4535 			copyflag = 1;
4536 
4537 		/* If the skb is the last, worry about trailer. */
4538 
4539 		if (skb1->next == NULL && tailbits) {
4540 			if (skb_shinfo(skb1)->nr_frags ||
4541 			    skb_has_frag_list(skb1) ||
4542 			    skb_tailroom(skb1) < tailbits)
4543 				ntail = tailbits + 128;
4544 		}
4545 
4546 		if (copyflag ||
4547 		    skb_cloned(skb1) ||
4548 		    ntail ||
4549 		    skb_shinfo(skb1)->nr_frags ||
4550 		    skb_has_frag_list(skb1)) {
4551 			struct sk_buff *skb2;
4552 
4553 			/* Fuck, we are miserable poor guys... */
4554 			if (ntail == 0)
4555 				skb2 = skb_copy(skb1, GFP_ATOMIC);
4556 			else
4557 				skb2 = skb_copy_expand(skb1,
4558 						       skb_headroom(skb1),
4559 						       ntail,
4560 						       GFP_ATOMIC);
4561 			if (unlikely(skb2 == NULL))
4562 				return -ENOMEM;
4563 
4564 			if (skb1->sk)
4565 				skb_set_owner_w(skb2, skb1->sk);
4566 
4567 			/* Looking around. Are we still alive?
4568 			 * OK, link new skb, drop old one */
4569 
4570 			skb2->next = skb1->next;
4571 			*skb_p = skb2;
4572 			kfree_skb(skb1);
4573 			skb1 = skb2;
4574 		}
4575 		elt++;
4576 		*trailer = skb1;
4577 		skb_p = &skb1->next;
4578 	}
4579 
4580 	return elt;
4581 }
4582 EXPORT_SYMBOL_GPL(skb_cow_data);
4583 
4584 static void sock_rmem_free(struct sk_buff *skb)
4585 {
4586 	struct sock *sk = skb->sk;
4587 
4588 	atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
4589 }
4590 
4591 static void skb_set_err_queue(struct sk_buff *skb)
4592 {
4593 	/* pkt_type of skbs received on local sockets is never PACKET_OUTGOING.
4594 	 * So, it is safe to (mis)use it to mark skbs on the error queue.
4595 	 */
4596 	skb->pkt_type = PACKET_OUTGOING;
4597 	BUILD_BUG_ON(PACKET_OUTGOING == 0);
4598 }
4599 
4600 /*
4601  * Note: We dont mem charge error packets (no sk_forward_alloc changes)
4602  */
4603 int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
4604 {
4605 	if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
4606 	    (unsigned int)READ_ONCE(sk->sk_rcvbuf))
4607 		return -ENOMEM;
4608 
4609 	skb_orphan(skb);
4610 	skb->sk = sk;
4611 	skb->destructor = sock_rmem_free;
4612 	atomic_add(skb->truesize, &sk->sk_rmem_alloc);
4613 	skb_set_err_queue(skb);
4614 
4615 	/* before exiting rcu section, make sure dst is refcounted */
4616 	skb_dst_force(skb);
4617 
4618 	skb_queue_tail(&sk->sk_error_queue, skb);
4619 	if (!sock_flag(sk, SOCK_DEAD))
4620 		sk_error_report(sk);
4621 	return 0;
4622 }
4623 EXPORT_SYMBOL(sock_queue_err_skb);
4624 
4625 static bool is_icmp_err_skb(const struct sk_buff *skb)
4626 {
4627 	return skb && (SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
4628 		       SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP6);
4629 }
4630 
4631 struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
4632 {
4633 	struct sk_buff_head *q = &sk->sk_error_queue;
4634 	struct sk_buff *skb, *skb_next = NULL;
4635 	bool icmp_next = false;
4636 	unsigned long flags;
4637 
4638 	spin_lock_irqsave(&q->lock, flags);
4639 	skb = __skb_dequeue(q);
4640 	if (skb && (skb_next = skb_peek(q))) {
4641 		icmp_next = is_icmp_err_skb(skb_next);
4642 		if (icmp_next)
4643 			sk->sk_err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
4644 	}
4645 	spin_unlock_irqrestore(&q->lock, flags);
4646 
4647 	if (is_icmp_err_skb(skb) && !icmp_next)
4648 		sk->sk_err = 0;
4649 
4650 	if (skb_next)
4651 		sk_error_report(sk);
4652 
4653 	return skb;
4654 }
4655 EXPORT_SYMBOL(sock_dequeue_err_skb);
4656 
4657 /**
4658  * skb_clone_sk - create clone of skb, and take reference to socket
4659  * @skb: the skb to clone
4660  *
4661  * This function creates a clone of a buffer that holds a reference on
4662  * sk_refcnt.  Buffers created via this function are meant to be
4663  * returned using sock_queue_err_skb, or free via kfree_skb.
4664  *
4665  * When passing buffers allocated with this function to sock_queue_err_skb
4666  * it is necessary to wrap the call with sock_hold/sock_put in order to
4667  * prevent the socket from being released prior to being enqueued on
4668  * the sk_error_queue.
4669  */
4670 struct sk_buff *skb_clone_sk(struct sk_buff *skb)
4671 {
4672 	struct sock *sk = skb->sk;
4673 	struct sk_buff *clone;
4674 
4675 	if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
4676 		return NULL;
4677 
4678 	clone = skb_clone(skb, GFP_ATOMIC);
4679 	if (!clone) {
4680 		sock_put(sk);
4681 		return NULL;
4682 	}
4683 
4684 	clone->sk = sk;
4685 	clone->destructor = sock_efree;
4686 
4687 	return clone;
4688 }
4689 EXPORT_SYMBOL(skb_clone_sk);
4690 
4691 static void __skb_complete_tx_timestamp(struct sk_buff *skb,
4692 					struct sock *sk,
4693 					int tstype,
4694 					bool opt_stats)
4695 {
4696 	struct sock_exterr_skb *serr;
4697 	int err;
4698 
4699 	BUILD_BUG_ON(sizeof(struct sock_exterr_skb) > sizeof(skb->cb));
4700 
4701 	serr = SKB_EXT_ERR(skb);
4702 	memset(serr, 0, sizeof(*serr));
4703 	serr->ee.ee_errno = ENOMSG;
4704 	serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
4705 	serr->ee.ee_info = tstype;
4706 	serr->opt_stats = opt_stats;
4707 	serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
4708 	if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
4709 		serr->ee.ee_data = skb_shinfo(skb)->tskey;
4710 		if (sk_is_tcp(sk))
4711 			serr->ee.ee_data -= sk->sk_tskey;
4712 	}
4713 
4714 	err = sock_queue_err_skb(sk, skb);
4715 
4716 	if (err)
4717 		kfree_skb(skb);
4718 }
4719 
4720 static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
4721 {
4722 	bool ret;
4723 
4724 	if (likely(sysctl_tstamp_allow_data || tsonly))
4725 		return true;
4726 
4727 	read_lock_bh(&sk->sk_callback_lock);
4728 	ret = sk->sk_socket && sk->sk_socket->file &&
4729 	      file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
4730 	read_unlock_bh(&sk->sk_callback_lock);
4731 	return ret;
4732 }
4733 
4734 void skb_complete_tx_timestamp(struct sk_buff *skb,
4735 			       struct skb_shared_hwtstamps *hwtstamps)
4736 {
4737 	struct sock *sk = skb->sk;
4738 
4739 	if (!skb_may_tx_timestamp(sk, false))
4740 		goto err;
4741 
4742 	/* Take a reference to prevent skb_orphan() from freeing the socket,
4743 	 * but only if the socket refcount is not zero.
4744 	 */
4745 	if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4746 		*skb_hwtstamps(skb) = *hwtstamps;
4747 		__skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND, false);
4748 		sock_put(sk);
4749 		return;
4750 	}
4751 
4752 err:
4753 	kfree_skb(skb);
4754 }
4755 EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
4756 
4757 void __skb_tstamp_tx(struct sk_buff *orig_skb,
4758 		     const struct sk_buff *ack_skb,
4759 		     struct skb_shared_hwtstamps *hwtstamps,
4760 		     struct sock *sk, int tstype)
4761 {
4762 	struct sk_buff *skb;
4763 	bool tsonly, opt_stats = false;
4764 
4765 	if (!sk)
4766 		return;
4767 
4768 	if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) &&
4769 	    skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS)
4770 		return;
4771 
4772 	tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
4773 	if (!skb_may_tx_timestamp(sk, tsonly))
4774 		return;
4775 
4776 	if (tsonly) {
4777 #ifdef CONFIG_INET
4778 		if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) &&
4779 		    sk_is_tcp(sk)) {
4780 			skb = tcp_get_timestamping_opt_stats(sk, orig_skb,
4781 							     ack_skb);
4782 			opt_stats = true;
4783 		} else
4784 #endif
4785 			skb = alloc_skb(0, GFP_ATOMIC);
4786 	} else {
4787 		skb = skb_clone(orig_skb, GFP_ATOMIC);
4788 	}
4789 	if (!skb)
4790 		return;
4791 
4792 	if (tsonly) {
4793 		skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
4794 					     SKBTX_ANY_TSTAMP;
4795 		skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
4796 	}
4797 
4798 	if (hwtstamps)
4799 		*skb_hwtstamps(skb) = *hwtstamps;
4800 	else
4801 		skb->tstamp = ktime_get_real();
4802 
4803 	__skb_complete_tx_timestamp(skb, sk, tstype, opt_stats);
4804 }
4805 EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
4806 
4807 void skb_tstamp_tx(struct sk_buff *orig_skb,
4808 		   struct skb_shared_hwtstamps *hwtstamps)
4809 {
4810 	return __skb_tstamp_tx(orig_skb, NULL, hwtstamps, orig_skb->sk,
4811 			       SCM_TSTAMP_SND);
4812 }
4813 EXPORT_SYMBOL_GPL(skb_tstamp_tx);
4814 
4815 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
4816 {
4817 	struct sock *sk = skb->sk;
4818 	struct sock_exterr_skb *serr;
4819 	int err = 1;
4820 
4821 	skb->wifi_acked_valid = 1;
4822 	skb->wifi_acked = acked;
4823 
4824 	serr = SKB_EXT_ERR(skb);
4825 	memset(serr, 0, sizeof(*serr));
4826 	serr->ee.ee_errno = ENOMSG;
4827 	serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
4828 
4829 	/* Take a reference to prevent skb_orphan() from freeing the socket,
4830 	 * but only if the socket refcount is not zero.
4831 	 */
4832 	if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
4833 		err = sock_queue_err_skb(sk, skb);
4834 		sock_put(sk);
4835 	}
4836 	if (err)
4837 		kfree_skb(skb);
4838 }
4839 EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
4840 
4841 /**
4842  * skb_partial_csum_set - set up and verify partial csum values for packet
4843  * @skb: the skb to set
4844  * @start: the number of bytes after skb->data to start checksumming.
4845  * @off: the offset from start to place the checksum.
4846  *
4847  * For untrusted partially-checksummed packets, we need to make sure the values
4848  * for skb->csum_start and skb->csum_offset are valid so we don't oops.
4849  *
4850  * This function checks and sets those values and skb->ip_summed: if this
4851  * returns false you should drop the packet.
4852  */
4853 bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
4854 {
4855 	u32 csum_end = (u32)start + (u32)off + sizeof(__sum16);
4856 	u32 csum_start = skb_headroom(skb) + (u32)start;
4857 
4858 	if (unlikely(csum_start > U16_MAX || csum_end > skb_headlen(skb))) {
4859 		net_warn_ratelimited("bad partial csum: csum=%u/%u headroom=%u headlen=%u\n",
4860 				     start, off, skb_headroom(skb), skb_headlen(skb));
4861 		return false;
4862 	}
4863 	skb->ip_summed = CHECKSUM_PARTIAL;
4864 	skb->csum_start = csum_start;
4865 	skb->csum_offset = off;
4866 	skb_set_transport_header(skb, start);
4867 	return true;
4868 }
4869 EXPORT_SYMBOL_GPL(skb_partial_csum_set);
4870 
4871 static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
4872 			       unsigned int max)
4873 {
4874 	if (skb_headlen(skb) >= len)
4875 		return 0;
4876 
4877 	/* If we need to pullup then pullup to the max, so we
4878 	 * won't need to do it again.
4879 	 */
4880 	if (max > skb->len)
4881 		max = skb->len;
4882 
4883 	if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
4884 		return -ENOMEM;
4885 
4886 	if (skb_headlen(skb) < len)
4887 		return -EPROTO;
4888 
4889 	return 0;
4890 }
4891 
4892 #define MAX_TCP_HDR_LEN (15 * 4)
4893 
4894 static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
4895 				      typeof(IPPROTO_IP) proto,
4896 				      unsigned int off)
4897 {
4898 	int err;
4899 
4900 	switch (proto) {
4901 	case IPPROTO_TCP:
4902 		err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
4903 					  off + MAX_TCP_HDR_LEN);
4904 		if (!err && !skb_partial_csum_set(skb, off,
4905 						  offsetof(struct tcphdr,
4906 							   check)))
4907 			err = -EPROTO;
4908 		return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4909 
4910 	case IPPROTO_UDP:
4911 		err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4912 					  off + sizeof(struct udphdr));
4913 		if (!err && !skb_partial_csum_set(skb, off,
4914 						  offsetof(struct udphdr,
4915 							   check)))
4916 			err = -EPROTO;
4917 		return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4918 	}
4919 
4920 	return ERR_PTR(-EPROTO);
4921 }
4922 
4923 /* This value should be large enough to cover a tagged ethernet header plus
4924  * maximally sized IP and TCP or UDP headers.
4925  */
4926 #define MAX_IP_HDR_LEN 128
4927 
4928 static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
4929 {
4930 	unsigned int off;
4931 	bool fragment;
4932 	__sum16 *csum;
4933 	int err;
4934 
4935 	fragment = false;
4936 
4937 	err = skb_maybe_pull_tail(skb,
4938 				  sizeof(struct iphdr),
4939 				  MAX_IP_HDR_LEN);
4940 	if (err < 0)
4941 		goto out;
4942 
4943 	if (ip_is_fragment(ip_hdr(skb)))
4944 		fragment = true;
4945 
4946 	off = ip_hdrlen(skb);
4947 
4948 	err = -EPROTO;
4949 
4950 	if (fragment)
4951 		goto out;
4952 
4953 	csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4954 	if (IS_ERR(csum))
4955 		return PTR_ERR(csum);
4956 
4957 	if (recalculate)
4958 		*csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4959 					   ip_hdr(skb)->daddr,
4960 					   skb->len - off,
4961 					   ip_hdr(skb)->protocol, 0);
4962 	err = 0;
4963 
4964 out:
4965 	return err;
4966 }
4967 
4968 /* This value should be large enough to cover a tagged ethernet header plus
4969  * an IPv6 header, all options, and a maximal TCP or UDP header.
4970  */
4971 #define MAX_IPV6_HDR_LEN 256
4972 
4973 #define OPT_HDR(type, skb, off) \
4974 	(type *)(skb_network_header(skb) + (off))
4975 
4976 static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4977 {
4978 	int err;
4979 	u8 nexthdr;
4980 	unsigned int off;
4981 	unsigned int len;
4982 	bool fragment;
4983 	bool done;
4984 	__sum16 *csum;
4985 
4986 	fragment = false;
4987 	done = false;
4988 
4989 	off = sizeof(struct ipv6hdr);
4990 
4991 	err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4992 	if (err < 0)
4993 		goto out;
4994 
4995 	nexthdr = ipv6_hdr(skb)->nexthdr;
4996 
4997 	len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4998 	while (off <= len && !done) {
4999 		switch (nexthdr) {
5000 		case IPPROTO_DSTOPTS:
5001 		case IPPROTO_HOPOPTS:
5002 		case IPPROTO_ROUTING: {
5003 			struct ipv6_opt_hdr *hp;
5004 
5005 			err = skb_maybe_pull_tail(skb,
5006 						  off +
5007 						  sizeof(struct ipv6_opt_hdr),
5008 						  MAX_IPV6_HDR_LEN);
5009 			if (err < 0)
5010 				goto out;
5011 
5012 			hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
5013 			nexthdr = hp->nexthdr;
5014 			off += ipv6_optlen(hp);
5015 			break;
5016 		}
5017 		case IPPROTO_AH: {
5018 			struct ip_auth_hdr *hp;
5019 
5020 			err = skb_maybe_pull_tail(skb,
5021 						  off +
5022 						  sizeof(struct ip_auth_hdr),
5023 						  MAX_IPV6_HDR_LEN);
5024 			if (err < 0)
5025 				goto out;
5026 
5027 			hp = OPT_HDR(struct ip_auth_hdr, skb, off);
5028 			nexthdr = hp->nexthdr;
5029 			off += ipv6_authlen(hp);
5030 			break;
5031 		}
5032 		case IPPROTO_FRAGMENT: {
5033 			struct frag_hdr *hp;
5034 
5035 			err = skb_maybe_pull_tail(skb,
5036 						  off +
5037 						  sizeof(struct frag_hdr),
5038 						  MAX_IPV6_HDR_LEN);
5039 			if (err < 0)
5040 				goto out;
5041 
5042 			hp = OPT_HDR(struct frag_hdr, skb, off);
5043 
5044 			if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
5045 				fragment = true;
5046 
5047 			nexthdr = hp->nexthdr;
5048 			off += sizeof(struct frag_hdr);
5049 			break;
5050 		}
5051 		default:
5052 			done = true;
5053 			break;
5054 		}
5055 	}
5056 
5057 	err = -EPROTO;
5058 
5059 	if (!done || fragment)
5060 		goto out;
5061 
5062 	csum = skb_checksum_setup_ip(skb, nexthdr, off);
5063 	if (IS_ERR(csum))
5064 		return PTR_ERR(csum);
5065 
5066 	if (recalculate)
5067 		*csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
5068 					 &ipv6_hdr(skb)->daddr,
5069 					 skb->len - off, nexthdr, 0);
5070 	err = 0;
5071 
5072 out:
5073 	return err;
5074 }
5075 
5076 /**
5077  * skb_checksum_setup - set up partial checksum offset
5078  * @skb: the skb to set up
5079  * @recalculate: if true the pseudo-header checksum will be recalculated
5080  */
5081 int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
5082 {
5083 	int err;
5084 
5085 	switch (skb->protocol) {
5086 	case htons(ETH_P_IP):
5087 		err = skb_checksum_setup_ipv4(skb, recalculate);
5088 		break;
5089 
5090 	case htons(ETH_P_IPV6):
5091 		err = skb_checksum_setup_ipv6(skb, recalculate);
5092 		break;
5093 
5094 	default:
5095 		err = -EPROTO;
5096 		break;
5097 	}
5098 
5099 	return err;
5100 }
5101 EXPORT_SYMBOL(skb_checksum_setup);
5102 
5103 /**
5104  * skb_checksum_maybe_trim - maybe trims the given skb
5105  * @skb: the skb to check
5106  * @transport_len: the data length beyond the network header
5107  *
5108  * Checks whether the given skb has data beyond the given transport length.
5109  * If so, returns a cloned skb trimmed to this transport length.
5110  * Otherwise returns the provided skb. Returns NULL in error cases
5111  * (e.g. transport_len exceeds skb length or out-of-memory).
5112  *
5113  * Caller needs to set the skb transport header and free any returned skb if it
5114  * differs from the provided skb.
5115  */
5116 static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
5117 					       unsigned int transport_len)
5118 {
5119 	struct sk_buff *skb_chk;
5120 	unsigned int len = skb_transport_offset(skb) + transport_len;
5121 	int ret;
5122 
5123 	if (skb->len < len)
5124 		return NULL;
5125 	else if (skb->len == len)
5126 		return skb;
5127 
5128 	skb_chk = skb_clone(skb, GFP_ATOMIC);
5129 	if (!skb_chk)
5130 		return NULL;
5131 
5132 	ret = pskb_trim_rcsum(skb_chk, len);
5133 	if (ret) {
5134 		kfree_skb(skb_chk);
5135 		return NULL;
5136 	}
5137 
5138 	return skb_chk;
5139 }
5140 
5141 /**
5142  * skb_checksum_trimmed - validate checksum of an skb
5143  * @skb: the skb to check
5144  * @transport_len: the data length beyond the network header
5145  * @skb_chkf: checksum function to use
5146  *
5147  * Applies the given checksum function skb_chkf to the provided skb.
5148  * Returns a checked and maybe trimmed skb. Returns NULL on error.
5149  *
5150  * If the skb has data beyond the given transport length, then a
5151  * trimmed & cloned skb is checked and returned.
5152  *
5153  * Caller needs to set the skb transport header and free any returned skb if it
5154  * differs from the provided skb.
5155  */
5156 struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
5157 				     unsigned int transport_len,
5158 				     __sum16(*skb_chkf)(struct sk_buff *skb))
5159 {
5160 	struct sk_buff *skb_chk;
5161 	unsigned int offset = skb_transport_offset(skb);
5162 	__sum16 ret;
5163 
5164 	skb_chk = skb_checksum_maybe_trim(skb, transport_len);
5165 	if (!skb_chk)
5166 		goto err;
5167 
5168 	if (!pskb_may_pull(skb_chk, offset))
5169 		goto err;
5170 
5171 	skb_pull_rcsum(skb_chk, offset);
5172 	ret = skb_chkf(skb_chk);
5173 	skb_push_rcsum(skb_chk, offset);
5174 
5175 	if (ret)
5176 		goto err;
5177 
5178 	return skb_chk;
5179 
5180 err:
5181 	if (skb_chk && skb_chk != skb)
5182 		kfree_skb(skb_chk);
5183 
5184 	return NULL;
5185 
5186 }
5187 EXPORT_SYMBOL(skb_checksum_trimmed);
5188 
5189 void __skb_warn_lro_forwarding(const struct sk_buff *skb)
5190 {
5191 	net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
5192 			     skb->dev->name);
5193 }
5194 EXPORT_SYMBOL(__skb_warn_lro_forwarding);
5195 
5196 void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
5197 {
5198 	if (head_stolen) {
5199 		skb_release_head_state(skb);
5200 		kmem_cache_free(skbuff_head_cache, skb);
5201 	} else {
5202 		__kfree_skb(skb);
5203 	}
5204 }
5205 EXPORT_SYMBOL(kfree_skb_partial);
5206 
5207 /**
5208  * skb_try_coalesce - try to merge skb to prior one
5209  * @to: prior buffer
5210  * @from: buffer to add
5211  * @fragstolen: pointer to boolean
5212  * @delta_truesize: how much more was allocated than was requested
5213  */
5214 bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
5215 		      bool *fragstolen, int *delta_truesize)
5216 {
5217 	struct skb_shared_info *to_shinfo, *from_shinfo;
5218 	int i, delta, len = from->len;
5219 
5220 	*fragstolen = false;
5221 
5222 	if (skb_cloned(to))
5223 		return false;
5224 
5225 	/* The page pool signature of struct page will eventually figure out
5226 	 * which pages can be recycled or not but for now let's prohibit slab
5227 	 * allocated and page_pool allocated SKBs from being coalesced.
5228 	 */
5229 	if (to->pp_recycle != from->pp_recycle)
5230 		return false;
5231 
5232 	if (len <= skb_tailroom(to)) {
5233 		if (len)
5234 			BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
5235 		*delta_truesize = 0;
5236 		return true;
5237 	}
5238 
5239 	to_shinfo = skb_shinfo(to);
5240 	from_shinfo = skb_shinfo(from);
5241 	if (to_shinfo->frag_list || from_shinfo->frag_list)
5242 		return false;
5243 	if (skb_zcopy(to) || skb_zcopy(from))
5244 		return false;
5245 
5246 	if (skb_headlen(from) != 0) {
5247 		struct page *page;
5248 		unsigned int offset;
5249 
5250 		if (to_shinfo->nr_frags +
5251 		    from_shinfo->nr_frags >= MAX_SKB_FRAGS)
5252 			return false;
5253 
5254 		if (skb_head_is_locked(from))
5255 			return false;
5256 
5257 		delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
5258 
5259 		page = virt_to_head_page(from->head);
5260 		offset = from->data - (unsigned char *)page_address(page);
5261 
5262 		skb_fill_page_desc(to, to_shinfo->nr_frags,
5263 				   page, offset, skb_headlen(from));
5264 		*fragstolen = true;
5265 	} else {
5266 		if (to_shinfo->nr_frags +
5267 		    from_shinfo->nr_frags > MAX_SKB_FRAGS)
5268 			return false;
5269 
5270 		delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
5271 	}
5272 
5273 	WARN_ON_ONCE(delta < len);
5274 
5275 	memcpy(to_shinfo->frags + to_shinfo->nr_frags,
5276 	       from_shinfo->frags,
5277 	       from_shinfo->nr_frags * sizeof(skb_frag_t));
5278 	to_shinfo->nr_frags += from_shinfo->nr_frags;
5279 
5280 	if (!skb_cloned(from))
5281 		from_shinfo->nr_frags = 0;
5282 
5283 	/* if the skb is not cloned this does nothing
5284 	 * since we set nr_frags to 0.
5285 	 */
5286 	for (i = 0; i < from_shinfo->nr_frags; i++)
5287 		__skb_frag_ref(&from_shinfo->frags[i]);
5288 
5289 	to->truesize += delta;
5290 	to->len += len;
5291 	to->data_len += len;
5292 
5293 	*delta_truesize = delta;
5294 	return true;
5295 }
5296 EXPORT_SYMBOL(skb_try_coalesce);
5297 
5298 /**
5299  * skb_scrub_packet - scrub an skb
5300  *
5301  * @skb: buffer to clean
5302  * @xnet: packet is crossing netns
5303  *
5304  * skb_scrub_packet can be used after encapsulating or decapsulting a packet
5305  * into/from a tunnel. Some information have to be cleared during these
5306  * operations.
5307  * skb_scrub_packet can also be used to clean a skb before injecting it in
5308  * another namespace (@xnet == true). We have to clear all information in the
5309  * skb that could impact namespace isolation.
5310  */
5311 void skb_scrub_packet(struct sk_buff *skb, bool xnet)
5312 {
5313 	skb->pkt_type = PACKET_HOST;
5314 	skb->skb_iif = 0;
5315 	skb->ignore_df = 0;
5316 	skb_dst_drop(skb);
5317 	skb_ext_reset(skb);
5318 	nf_reset_ct(skb);
5319 	nf_reset_trace(skb);
5320 
5321 #ifdef CONFIG_NET_SWITCHDEV
5322 	skb->offload_fwd_mark = 0;
5323 	skb->offload_l3_fwd_mark = 0;
5324 #endif
5325 
5326 	if (!xnet)
5327 		return;
5328 
5329 	ipvs_reset(skb);
5330 	skb->mark = 0;
5331 	skb->tstamp = 0;
5332 }
5333 EXPORT_SYMBOL_GPL(skb_scrub_packet);
5334 
5335 /**
5336  * skb_gso_transport_seglen - Return length of individual segments of a gso packet
5337  *
5338  * @skb: GSO skb
5339  *
5340  * skb_gso_transport_seglen is used to determine the real size of the
5341  * individual segments, including Layer4 headers (TCP/UDP).
5342  *
5343  * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
5344  */
5345 static unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
5346 {
5347 	const struct skb_shared_info *shinfo = skb_shinfo(skb);
5348 	unsigned int thlen = 0;
5349 
5350 	if (skb->encapsulation) {
5351 		thlen = skb_inner_transport_header(skb) -
5352 			skb_transport_header(skb);
5353 
5354 		if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
5355 			thlen += inner_tcp_hdrlen(skb);
5356 	} else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
5357 		thlen = tcp_hdrlen(skb);
5358 	} else if (unlikely(skb_is_gso_sctp(skb))) {
5359 		thlen = sizeof(struct sctphdr);
5360 	} else if (shinfo->gso_type & SKB_GSO_UDP_L4) {
5361 		thlen = sizeof(struct udphdr);
5362 	}
5363 	/* UFO sets gso_size to the size of the fragmentation
5364 	 * payload, i.e. the size of the L4 (UDP) header is already
5365 	 * accounted for.
5366 	 */
5367 	return thlen + shinfo->gso_size;
5368 }
5369 
5370 /**
5371  * skb_gso_network_seglen - Return length of individual segments of a gso packet
5372  *
5373  * @skb: GSO skb
5374  *
5375  * skb_gso_network_seglen is used to determine the real size of the
5376  * individual segments, including Layer3 (IP, IPv6) and L4 headers (TCP/UDP).
5377  *
5378  * The MAC/L2 header is not accounted for.
5379  */
5380 static unsigned int skb_gso_network_seglen(const struct sk_buff *skb)
5381 {
5382 	unsigned int hdr_len = skb_transport_header(skb) -
5383 			       skb_network_header(skb);
5384 
5385 	return hdr_len + skb_gso_transport_seglen(skb);
5386 }
5387 
5388 /**
5389  * skb_gso_mac_seglen - Return length of individual segments of a gso packet
5390  *
5391  * @skb: GSO skb
5392  *
5393  * skb_gso_mac_seglen is used to determine the real size of the
5394  * individual segments, including MAC/L2, Layer3 (IP, IPv6) and L4
5395  * headers (TCP/UDP).
5396  */
5397 static unsigned int skb_gso_mac_seglen(const struct sk_buff *skb)
5398 {
5399 	unsigned int hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
5400 
5401 	return hdr_len + skb_gso_transport_seglen(skb);
5402 }
5403 
5404 /**
5405  * skb_gso_size_check - check the skb size, considering GSO_BY_FRAGS
5406  *
5407  * There are a couple of instances where we have a GSO skb, and we
5408  * want to determine what size it would be after it is segmented.
5409  *
5410  * We might want to check:
5411  * -    L3+L4+payload size (e.g. IP forwarding)
5412  * - L2+L3+L4+payload size (e.g. sanity check before passing to driver)
5413  *
5414  * This is a helper to do that correctly considering GSO_BY_FRAGS.
5415  *
5416  * @skb: GSO skb
5417  *
5418  * @seg_len: The segmented length (from skb_gso_*_seglen). In the
5419  *           GSO_BY_FRAGS case this will be [header sizes + GSO_BY_FRAGS].
5420  *
5421  * @max_len: The maximum permissible length.
5422  *
5423  * Returns true if the segmented length <= max length.
5424  */
5425 static inline bool skb_gso_size_check(const struct sk_buff *skb,
5426 				      unsigned int seg_len,
5427 				      unsigned int max_len) {
5428 	const struct skb_shared_info *shinfo = skb_shinfo(skb);
5429 	const struct sk_buff *iter;
5430 
5431 	if (shinfo->gso_size != GSO_BY_FRAGS)
5432 		return seg_len <= max_len;
5433 
5434 	/* Undo this so we can re-use header sizes */
5435 	seg_len -= GSO_BY_FRAGS;
5436 
5437 	skb_walk_frags(skb, iter) {
5438 		if (seg_len + skb_headlen(iter) > max_len)
5439 			return false;
5440 	}
5441 
5442 	return true;
5443 }
5444 
5445 /**
5446  * skb_gso_validate_network_len - Will a split GSO skb fit into a given MTU?
5447  *
5448  * @skb: GSO skb
5449  * @mtu: MTU to validate against
5450  *
5451  * skb_gso_validate_network_len validates if a given skb will fit a
5452  * wanted MTU once split. It considers L3 headers, L4 headers, and the
5453  * payload.
5454  */
5455 bool skb_gso_validate_network_len(const struct sk_buff *skb, unsigned int mtu)
5456 {
5457 	return skb_gso_size_check(skb, skb_gso_network_seglen(skb), mtu);
5458 }
5459 EXPORT_SYMBOL_GPL(skb_gso_validate_network_len);
5460 
5461 /**
5462  * skb_gso_validate_mac_len - Will a split GSO skb fit in a given length?
5463  *
5464  * @skb: GSO skb
5465  * @len: length to validate against
5466  *
5467  * skb_gso_validate_mac_len validates if a given skb will fit a wanted
5468  * length once split, including L2, L3 and L4 headers and the payload.
5469  */
5470 bool skb_gso_validate_mac_len(const struct sk_buff *skb, unsigned int len)
5471 {
5472 	return skb_gso_size_check(skb, skb_gso_mac_seglen(skb), len);
5473 }
5474 EXPORT_SYMBOL_GPL(skb_gso_validate_mac_len);
5475 
5476 static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
5477 {
5478 	int mac_len, meta_len;
5479 	void *meta;
5480 
5481 	if (skb_cow(skb, skb_headroom(skb)) < 0) {
5482 		kfree_skb(skb);
5483 		return NULL;
5484 	}
5485 
5486 	mac_len = skb->data - skb_mac_header(skb);
5487 	if (likely(mac_len > VLAN_HLEN + ETH_TLEN)) {
5488 		memmove(skb_mac_header(skb) + VLAN_HLEN, skb_mac_header(skb),
5489 			mac_len - VLAN_HLEN - ETH_TLEN);
5490 	}
5491 
5492 	meta_len = skb_metadata_len(skb);
5493 	if (meta_len) {
5494 		meta = skb_metadata_end(skb) - meta_len;
5495 		memmove(meta + VLAN_HLEN, meta, meta_len);
5496 	}
5497 
5498 	skb->mac_header += VLAN_HLEN;
5499 	return skb;
5500 }
5501 
5502 struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
5503 {
5504 	struct vlan_hdr *vhdr;
5505 	u16 vlan_tci;
5506 
5507 	if (unlikely(skb_vlan_tag_present(skb))) {
5508 		/* vlan_tci is already set-up so leave this for another time */
5509 		return skb;
5510 	}
5511 
5512 	skb = skb_share_check(skb, GFP_ATOMIC);
5513 	if (unlikely(!skb))
5514 		goto err_free;
5515 	/* We may access the two bytes after vlan_hdr in vlan_set_encap_proto(). */
5516 	if (unlikely(!pskb_may_pull(skb, VLAN_HLEN + sizeof(unsigned short))))
5517 		goto err_free;
5518 
5519 	vhdr = (struct vlan_hdr *)skb->data;
5520 	vlan_tci = ntohs(vhdr->h_vlan_TCI);
5521 	__vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
5522 
5523 	skb_pull_rcsum(skb, VLAN_HLEN);
5524 	vlan_set_encap_proto(skb, vhdr);
5525 
5526 	skb = skb_reorder_vlan_header(skb);
5527 	if (unlikely(!skb))
5528 		goto err_free;
5529 
5530 	skb_reset_network_header(skb);
5531 	if (!skb_transport_header_was_set(skb))
5532 		skb_reset_transport_header(skb);
5533 	skb_reset_mac_len(skb);
5534 
5535 	return skb;
5536 
5537 err_free:
5538 	kfree_skb(skb);
5539 	return NULL;
5540 }
5541 EXPORT_SYMBOL(skb_vlan_untag);
5542 
5543 int skb_ensure_writable(struct sk_buff *skb, int write_len)
5544 {
5545 	if (!pskb_may_pull(skb, write_len))
5546 		return -ENOMEM;
5547 
5548 	if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
5549 		return 0;
5550 
5551 	return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5552 }
5553 EXPORT_SYMBOL(skb_ensure_writable);
5554 
5555 /* remove VLAN header from packet and update csum accordingly.
5556  * expects a non skb_vlan_tag_present skb with a vlan tag payload
5557  */
5558 int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
5559 {
5560 	struct vlan_hdr *vhdr;
5561 	int offset = skb->data - skb_mac_header(skb);
5562 	int err;
5563 
5564 	if (WARN_ONCE(offset,
5565 		      "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
5566 		      offset)) {
5567 		return -EINVAL;
5568 	}
5569 
5570 	err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
5571 	if (unlikely(err))
5572 		return err;
5573 
5574 	skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5575 
5576 	vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
5577 	*vlan_tci = ntohs(vhdr->h_vlan_TCI);
5578 
5579 	memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
5580 	__skb_pull(skb, VLAN_HLEN);
5581 
5582 	vlan_set_encap_proto(skb, vhdr);
5583 	skb->mac_header += VLAN_HLEN;
5584 
5585 	if (skb_network_offset(skb) < ETH_HLEN)
5586 		skb_set_network_header(skb, ETH_HLEN);
5587 
5588 	skb_reset_mac_len(skb);
5589 
5590 	return err;
5591 }
5592 EXPORT_SYMBOL(__skb_vlan_pop);
5593 
5594 /* Pop a vlan tag either from hwaccel or from payload.
5595  * Expects skb->data at mac header.
5596  */
5597 int skb_vlan_pop(struct sk_buff *skb)
5598 {
5599 	u16 vlan_tci;
5600 	__be16 vlan_proto;
5601 	int err;
5602 
5603 	if (likely(skb_vlan_tag_present(skb))) {
5604 		__vlan_hwaccel_clear_tag(skb);
5605 	} else {
5606 		if (unlikely(!eth_type_vlan(skb->protocol)))
5607 			return 0;
5608 
5609 		err = __skb_vlan_pop(skb, &vlan_tci);
5610 		if (err)
5611 			return err;
5612 	}
5613 	/* move next vlan tag to hw accel tag */
5614 	if (likely(!eth_type_vlan(skb->protocol)))
5615 		return 0;
5616 
5617 	vlan_proto = skb->protocol;
5618 	err = __skb_vlan_pop(skb, &vlan_tci);
5619 	if (unlikely(err))
5620 		return err;
5621 
5622 	__vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5623 	return 0;
5624 }
5625 EXPORT_SYMBOL(skb_vlan_pop);
5626 
5627 /* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
5628  * Expects skb->data at mac header.
5629  */
5630 int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
5631 {
5632 	if (skb_vlan_tag_present(skb)) {
5633 		int offset = skb->data - skb_mac_header(skb);
5634 		int err;
5635 
5636 		if (WARN_ONCE(offset,
5637 			      "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
5638 			      offset)) {
5639 			return -EINVAL;
5640 		}
5641 
5642 		err = __vlan_insert_tag(skb, skb->vlan_proto,
5643 					skb_vlan_tag_get(skb));
5644 		if (err)
5645 			return err;
5646 
5647 		skb->protocol = skb->vlan_proto;
5648 		skb->mac_len += VLAN_HLEN;
5649 
5650 		skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
5651 	}
5652 	__vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
5653 	return 0;
5654 }
5655 EXPORT_SYMBOL(skb_vlan_push);
5656 
5657 /**
5658  * skb_eth_pop() - Drop the Ethernet header at the head of a packet
5659  *
5660  * @skb: Socket buffer to modify
5661  *
5662  * Drop the Ethernet header of @skb.
5663  *
5664  * Expects that skb->data points to the mac header and that no VLAN tags are
5665  * present.
5666  *
5667  * Returns 0 on success, -errno otherwise.
5668  */
5669 int skb_eth_pop(struct sk_buff *skb)
5670 {
5671 	if (!pskb_may_pull(skb, ETH_HLEN) || skb_vlan_tagged(skb) ||
5672 	    skb_network_offset(skb) < ETH_HLEN)
5673 		return -EPROTO;
5674 
5675 	skb_pull_rcsum(skb, ETH_HLEN);
5676 	skb_reset_mac_header(skb);
5677 	skb_reset_mac_len(skb);
5678 
5679 	return 0;
5680 }
5681 EXPORT_SYMBOL(skb_eth_pop);
5682 
5683 /**
5684  * skb_eth_push() - Add a new Ethernet header at the head of a packet
5685  *
5686  * @skb: Socket buffer to modify
5687  * @dst: Destination MAC address of the new header
5688  * @src: Source MAC address of the new header
5689  *
5690  * Prepend @skb with a new Ethernet header.
5691  *
5692  * Expects that skb->data points to the mac header, which must be empty.
5693  *
5694  * Returns 0 on success, -errno otherwise.
5695  */
5696 int skb_eth_push(struct sk_buff *skb, const unsigned char *dst,
5697 		 const unsigned char *src)
5698 {
5699 	struct ethhdr *eth;
5700 	int err;
5701 
5702 	if (skb_network_offset(skb) || skb_vlan_tag_present(skb))
5703 		return -EPROTO;
5704 
5705 	err = skb_cow_head(skb, sizeof(*eth));
5706 	if (err < 0)
5707 		return err;
5708 
5709 	skb_push(skb, sizeof(*eth));
5710 	skb_reset_mac_header(skb);
5711 	skb_reset_mac_len(skb);
5712 
5713 	eth = eth_hdr(skb);
5714 	ether_addr_copy(eth->h_dest, dst);
5715 	ether_addr_copy(eth->h_source, src);
5716 	eth->h_proto = skb->protocol;
5717 
5718 	skb_postpush_rcsum(skb, eth, sizeof(*eth));
5719 
5720 	return 0;
5721 }
5722 EXPORT_SYMBOL(skb_eth_push);
5723 
5724 /* Update the ethertype of hdr and the skb csum value if required. */
5725 static void skb_mod_eth_type(struct sk_buff *skb, struct ethhdr *hdr,
5726 			     __be16 ethertype)
5727 {
5728 	if (skb->ip_summed == CHECKSUM_COMPLETE) {
5729 		__be16 diff[] = { ~hdr->h_proto, ethertype };
5730 
5731 		skb->csum = csum_partial((char *)diff, sizeof(diff), skb->csum);
5732 	}
5733 
5734 	hdr->h_proto = ethertype;
5735 }
5736 
5737 /**
5738  * skb_mpls_push() - push a new MPLS header after mac_len bytes from start of
5739  *                   the packet
5740  *
5741  * @skb: buffer
5742  * @mpls_lse: MPLS label stack entry to push
5743  * @mpls_proto: ethertype of the new MPLS header (expects 0x8847 or 0x8848)
5744  * @mac_len: length of the MAC header
5745  * @ethernet: flag to indicate if the resulting packet after skb_mpls_push is
5746  *            ethernet
5747  *
5748  * Expects skb->data at mac header.
5749  *
5750  * Returns 0 on success, -errno otherwise.
5751  */
5752 int skb_mpls_push(struct sk_buff *skb, __be32 mpls_lse, __be16 mpls_proto,
5753 		  int mac_len, bool ethernet)
5754 {
5755 	struct mpls_shim_hdr *lse;
5756 	int err;
5757 
5758 	if (unlikely(!eth_p_mpls(mpls_proto)))
5759 		return -EINVAL;
5760 
5761 	/* Networking stack does not allow simultaneous Tunnel and MPLS GSO. */
5762 	if (skb->encapsulation)
5763 		return -EINVAL;
5764 
5765 	err = skb_cow_head(skb, MPLS_HLEN);
5766 	if (unlikely(err))
5767 		return err;
5768 
5769 	if (!skb->inner_protocol) {
5770 		skb_set_inner_network_header(skb, skb_network_offset(skb));
5771 		skb_set_inner_protocol(skb, skb->protocol);
5772 	}
5773 
5774 	skb_push(skb, MPLS_HLEN);
5775 	memmove(skb_mac_header(skb) - MPLS_HLEN, skb_mac_header(skb),
5776 		mac_len);
5777 	skb_reset_mac_header(skb);
5778 	skb_set_network_header(skb, mac_len);
5779 	skb_reset_mac_len(skb);
5780 
5781 	lse = mpls_hdr(skb);
5782 	lse->label_stack_entry = mpls_lse;
5783 	skb_postpush_rcsum(skb, lse, MPLS_HLEN);
5784 
5785 	if (ethernet && mac_len >= ETH_HLEN)
5786 		skb_mod_eth_type(skb, eth_hdr(skb), mpls_proto);
5787 	skb->protocol = mpls_proto;
5788 
5789 	return 0;
5790 }
5791 EXPORT_SYMBOL_GPL(skb_mpls_push);
5792 
5793 /**
5794  * skb_mpls_pop() - pop the outermost MPLS header
5795  *
5796  * @skb: buffer
5797  * @next_proto: ethertype of header after popped MPLS header
5798  * @mac_len: length of the MAC header
5799  * @ethernet: flag to indicate if the packet is ethernet
5800  *
5801  * Expects skb->data at mac header.
5802  *
5803  * Returns 0 on success, -errno otherwise.
5804  */
5805 int skb_mpls_pop(struct sk_buff *skb, __be16 next_proto, int mac_len,
5806 		 bool ethernet)
5807 {
5808 	int err;
5809 
5810 	if (unlikely(!eth_p_mpls(skb->protocol)))
5811 		return 0;
5812 
5813 	err = skb_ensure_writable(skb, mac_len + MPLS_HLEN);
5814 	if (unlikely(err))
5815 		return err;
5816 
5817 	skb_postpull_rcsum(skb, mpls_hdr(skb), MPLS_HLEN);
5818 	memmove(skb_mac_header(skb) + MPLS_HLEN, skb_mac_header(skb),
5819 		mac_len);
5820 
5821 	__skb_pull(skb, MPLS_HLEN);
5822 	skb_reset_mac_header(skb);
5823 	skb_set_network_header(skb, mac_len);
5824 
5825 	if (ethernet && mac_len >= ETH_HLEN) {
5826 		struct ethhdr *hdr;
5827 
5828 		/* use mpls_hdr() to get ethertype to account for VLANs. */
5829 		hdr = (struct ethhdr *)((void *)mpls_hdr(skb) - ETH_HLEN);
5830 		skb_mod_eth_type(skb, hdr, next_proto);
5831 	}
5832 	skb->protocol = next_proto;
5833 
5834 	return 0;
5835 }
5836 EXPORT_SYMBOL_GPL(skb_mpls_pop);
5837 
5838 /**
5839  * skb_mpls_update_lse() - modify outermost MPLS header and update csum
5840  *
5841  * @skb: buffer
5842  * @mpls_lse: new MPLS label stack entry to update to
5843  *
5844  * Expects skb->data at mac header.
5845  *
5846  * Returns 0 on success, -errno otherwise.
5847  */
5848 int skb_mpls_update_lse(struct sk_buff *skb, __be32 mpls_lse)
5849 {
5850 	int err;
5851 
5852 	if (unlikely(!eth_p_mpls(skb->protocol)))
5853 		return -EINVAL;
5854 
5855 	err = skb_ensure_writable(skb, skb->mac_len + MPLS_HLEN);
5856 	if (unlikely(err))
5857 		return err;
5858 
5859 	if (skb->ip_summed == CHECKSUM_COMPLETE) {
5860 		__be32 diff[] = { ~mpls_hdr(skb)->label_stack_entry, mpls_lse };
5861 
5862 		skb->csum = csum_partial((char *)diff, sizeof(diff), skb->csum);
5863 	}
5864 
5865 	mpls_hdr(skb)->label_stack_entry = mpls_lse;
5866 
5867 	return 0;
5868 }
5869 EXPORT_SYMBOL_GPL(skb_mpls_update_lse);
5870 
5871 /**
5872  * skb_mpls_dec_ttl() - decrement the TTL of the outermost MPLS header
5873  *
5874  * @skb: buffer
5875  *
5876  * Expects skb->data at mac header.
5877  *
5878  * Returns 0 on success, -errno otherwise.
5879  */
5880 int skb_mpls_dec_ttl(struct sk_buff *skb)
5881 {
5882 	u32 lse;
5883 	u8 ttl;
5884 
5885 	if (unlikely(!eth_p_mpls(skb->protocol)))
5886 		return -EINVAL;
5887 
5888 	if (!pskb_may_pull(skb, skb_network_offset(skb) + MPLS_HLEN))
5889 		return -ENOMEM;
5890 
5891 	lse = be32_to_cpu(mpls_hdr(skb)->label_stack_entry);
5892 	ttl = (lse & MPLS_LS_TTL_MASK) >> MPLS_LS_TTL_SHIFT;
5893 	if (!--ttl)
5894 		return -EINVAL;
5895 
5896 	lse &= ~MPLS_LS_TTL_MASK;
5897 	lse |= ttl << MPLS_LS_TTL_SHIFT;
5898 
5899 	return skb_mpls_update_lse(skb, cpu_to_be32(lse));
5900 }
5901 EXPORT_SYMBOL_GPL(skb_mpls_dec_ttl);
5902 
5903 /**
5904  * alloc_skb_with_frags - allocate skb with page frags
5905  *
5906  * @header_len: size of linear part
5907  * @data_len: needed length in frags
5908  * @max_page_order: max page order desired.
5909  * @errcode: pointer to error code if any
5910  * @gfp_mask: allocation mask
5911  *
5912  * This can be used to allocate a paged skb, given a maximal order for frags.
5913  */
5914 struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
5915 				     unsigned long data_len,
5916 				     int max_page_order,
5917 				     int *errcode,
5918 				     gfp_t gfp_mask)
5919 {
5920 	int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
5921 	unsigned long chunk;
5922 	struct sk_buff *skb;
5923 	struct page *page;
5924 	int i;
5925 
5926 	*errcode = -EMSGSIZE;
5927 	/* Note this test could be relaxed, if we succeed to allocate
5928 	 * high order pages...
5929 	 */
5930 	if (npages > MAX_SKB_FRAGS)
5931 		return NULL;
5932 
5933 	*errcode = -ENOBUFS;
5934 	skb = alloc_skb(header_len, gfp_mask);
5935 	if (!skb)
5936 		return NULL;
5937 
5938 	skb->truesize += npages << PAGE_SHIFT;
5939 
5940 	for (i = 0; npages > 0; i++) {
5941 		int order = max_page_order;
5942 
5943 		while (order) {
5944 			if (npages >= 1 << order) {
5945 				page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
5946 						   __GFP_COMP |
5947 						   __GFP_NOWARN,
5948 						   order);
5949 				if (page)
5950 					goto fill_page;
5951 				/* Do not retry other high order allocations */
5952 				order = 1;
5953 				max_page_order = 0;
5954 			}
5955 			order--;
5956 		}
5957 		page = alloc_page(gfp_mask);
5958 		if (!page)
5959 			goto failure;
5960 fill_page:
5961 		chunk = min_t(unsigned long, data_len,
5962 			      PAGE_SIZE << order);
5963 		skb_fill_page_desc(skb, i, page, 0, chunk);
5964 		data_len -= chunk;
5965 		npages -= 1 << order;
5966 	}
5967 	return skb;
5968 
5969 failure:
5970 	kfree_skb(skb);
5971 	return NULL;
5972 }
5973 EXPORT_SYMBOL(alloc_skb_with_frags);
5974 
5975 /* carve out the first off bytes from skb when off < headlen */
5976 static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
5977 				    const int headlen, gfp_t gfp_mask)
5978 {
5979 	int i;
5980 	int size = skb_end_offset(skb);
5981 	int new_hlen = headlen - off;
5982 	u8 *data;
5983 
5984 	size = SKB_DATA_ALIGN(size);
5985 
5986 	if (skb_pfmemalloc(skb))
5987 		gfp_mask |= __GFP_MEMALLOC;
5988 	data = kmalloc_reserve(size +
5989 			       SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
5990 			       gfp_mask, NUMA_NO_NODE, NULL);
5991 	if (!data)
5992 		return -ENOMEM;
5993 
5994 	size = SKB_WITH_OVERHEAD(ksize(data));
5995 
5996 	/* Copy real data, and all frags */
5997 	skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
5998 	skb->len -= off;
5999 
6000 	memcpy((struct skb_shared_info *)(data + size),
6001 	       skb_shinfo(skb),
6002 	       offsetof(struct skb_shared_info,
6003 			frags[skb_shinfo(skb)->nr_frags]));
6004 	if (skb_cloned(skb)) {
6005 		/* drop the old head gracefully */
6006 		if (skb_orphan_frags(skb, gfp_mask)) {
6007 			kfree(data);
6008 			return -ENOMEM;
6009 		}
6010 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
6011 			skb_frag_ref(skb, i);
6012 		if (skb_has_frag_list(skb))
6013 			skb_clone_fraglist(skb);
6014 		skb_release_data(skb);
6015 	} else {
6016 		/* we can reuse existing recount- all we did was
6017 		 * relocate values
6018 		 */
6019 		skb_free_head(skb);
6020 	}
6021 
6022 	skb->head = data;
6023 	skb->data = data;
6024 	skb->head_frag = 0;
6025 #ifdef NET_SKBUFF_DATA_USES_OFFSET
6026 	skb->end = size;
6027 #else
6028 	skb->end = skb->head + size;
6029 #endif
6030 	skb_set_tail_pointer(skb, skb_headlen(skb));
6031 	skb_headers_offset_update(skb, 0);
6032 	skb->cloned = 0;
6033 	skb->hdr_len = 0;
6034 	skb->nohdr = 0;
6035 	atomic_set(&skb_shinfo(skb)->dataref, 1);
6036 
6037 	return 0;
6038 }
6039 
6040 static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
6041 
6042 /* carve out the first eat bytes from skb's frag_list. May recurse into
6043  * pskb_carve()
6044  */
6045 static int pskb_carve_frag_list(struct sk_buff *skb,
6046 				struct skb_shared_info *shinfo, int eat,
6047 				gfp_t gfp_mask)
6048 {
6049 	struct sk_buff *list = shinfo->frag_list;
6050 	struct sk_buff *clone = NULL;
6051 	struct sk_buff *insp = NULL;
6052 
6053 	do {
6054 		if (!list) {
6055 			pr_err("Not enough bytes to eat. Want %d\n", eat);
6056 			return -EFAULT;
6057 		}
6058 		if (list->len <= eat) {
6059 			/* Eaten as whole. */
6060 			eat -= list->len;
6061 			list = list->next;
6062 			insp = list;
6063 		} else {
6064 			/* Eaten partially. */
6065 			if (skb_shared(list)) {
6066 				clone = skb_clone(list, gfp_mask);
6067 				if (!clone)
6068 					return -ENOMEM;
6069 				insp = list->next;
6070 				list = clone;
6071 			} else {
6072 				/* This may be pulled without problems. */
6073 				insp = list;
6074 			}
6075 			if (pskb_carve(list, eat, gfp_mask) < 0) {
6076 				kfree_skb(clone);
6077 				return -ENOMEM;
6078 			}
6079 			break;
6080 		}
6081 	} while (eat);
6082 
6083 	/* Free pulled out fragments. */
6084 	while ((list = shinfo->frag_list) != insp) {
6085 		shinfo->frag_list = list->next;
6086 		kfree_skb(list);
6087 	}
6088 	/* And insert new clone at head. */
6089 	if (clone) {
6090 		clone->next = list;
6091 		shinfo->frag_list = clone;
6092 	}
6093 	return 0;
6094 }
6095 
6096 /* carve off first len bytes from skb. Split line (off) is in the
6097  * non-linear part of skb
6098  */
6099 static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
6100 				       int pos, gfp_t gfp_mask)
6101 {
6102 	int i, k = 0;
6103 	int size = skb_end_offset(skb);
6104 	u8 *data;
6105 	const int nfrags = skb_shinfo(skb)->nr_frags;
6106 	struct skb_shared_info *shinfo;
6107 
6108 	size = SKB_DATA_ALIGN(size);
6109 
6110 	if (skb_pfmemalloc(skb))
6111 		gfp_mask |= __GFP_MEMALLOC;
6112 	data = kmalloc_reserve(size +
6113 			       SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
6114 			       gfp_mask, NUMA_NO_NODE, NULL);
6115 	if (!data)
6116 		return -ENOMEM;
6117 
6118 	size = SKB_WITH_OVERHEAD(ksize(data));
6119 
6120 	memcpy((struct skb_shared_info *)(data + size),
6121 	       skb_shinfo(skb), offsetof(struct skb_shared_info, frags[0]));
6122 	if (skb_orphan_frags(skb, gfp_mask)) {
6123 		kfree(data);
6124 		return -ENOMEM;
6125 	}
6126 	shinfo = (struct skb_shared_info *)(data + size);
6127 	for (i = 0; i < nfrags; i++) {
6128 		int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
6129 
6130 		if (pos + fsize > off) {
6131 			shinfo->frags[k] = skb_shinfo(skb)->frags[i];
6132 
6133 			if (pos < off) {
6134 				/* Split frag.
6135 				 * We have two variants in this case:
6136 				 * 1. Move all the frag to the second
6137 				 *    part, if it is possible. F.e.
6138 				 *    this approach is mandatory for TUX,
6139 				 *    where splitting is expensive.
6140 				 * 2. Split is accurately. We make this.
6141 				 */
6142 				skb_frag_off_add(&shinfo->frags[0], off - pos);
6143 				skb_frag_size_sub(&shinfo->frags[0], off - pos);
6144 			}
6145 			skb_frag_ref(skb, i);
6146 			k++;
6147 		}
6148 		pos += fsize;
6149 	}
6150 	shinfo->nr_frags = k;
6151 	if (skb_has_frag_list(skb))
6152 		skb_clone_fraglist(skb);
6153 
6154 	/* split line is in frag list */
6155 	if (k == 0 && pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask)) {
6156 		/* skb_frag_unref() is not needed here as shinfo->nr_frags = 0. */
6157 		if (skb_has_frag_list(skb))
6158 			kfree_skb_list(skb_shinfo(skb)->frag_list);
6159 		kfree(data);
6160 		return -ENOMEM;
6161 	}
6162 	skb_release_data(skb);
6163 
6164 	skb->head = data;
6165 	skb->head_frag = 0;
6166 	skb->data = data;
6167 #ifdef NET_SKBUFF_DATA_USES_OFFSET
6168 	skb->end = size;
6169 #else
6170 	skb->end = skb->head + size;
6171 #endif
6172 	skb_reset_tail_pointer(skb);
6173 	skb_headers_offset_update(skb, 0);
6174 	skb->cloned   = 0;
6175 	skb->hdr_len  = 0;
6176 	skb->nohdr    = 0;
6177 	skb->len -= off;
6178 	skb->data_len = skb->len;
6179 	atomic_set(&skb_shinfo(skb)->dataref, 1);
6180 	return 0;
6181 }
6182 
6183 /* remove len bytes from the beginning of the skb */
6184 static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
6185 {
6186 	int headlen = skb_headlen(skb);
6187 
6188 	if (len < headlen)
6189 		return pskb_carve_inside_header(skb, len, headlen, gfp);
6190 	else
6191 		return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
6192 }
6193 
6194 /* Extract to_copy bytes starting at off from skb, and return this in
6195  * a new skb
6196  */
6197 struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
6198 			     int to_copy, gfp_t gfp)
6199 {
6200 	struct sk_buff  *clone = skb_clone(skb, gfp);
6201 
6202 	if (!clone)
6203 		return NULL;
6204 
6205 	if (pskb_carve(clone, off, gfp) < 0 ||
6206 	    pskb_trim(clone, to_copy)) {
6207 		kfree_skb(clone);
6208 		return NULL;
6209 	}
6210 	return clone;
6211 }
6212 EXPORT_SYMBOL(pskb_extract);
6213 
6214 /**
6215  * skb_condense - try to get rid of fragments/frag_list if possible
6216  * @skb: buffer
6217  *
6218  * Can be used to save memory before skb is added to a busy queue.
6219  * If packet has bytes in frags and enough tail room in skb->head,
6220  * pull all of them, so that we can free the frags right now and adjust
6221  * truesize.
6222  * Notes:
6223  *	We do not reallocate skb->head thus can not fail.
6224  *	Caller must re-evaluate skb->truesize if needed.
6225  */
6226 void skb_condense(struct sk_buff *skb)
6227 {
6228 	if (skb->data_len) {
6229 		if (skb->data_len > skb->end - skb->tail ||
6230 		    skb_cloned(skb))
6231 			return;
6232 
6233 		/* Nice, we can free page frag(s) right now */
6234 		__pskb_pull_tail(skb, skb->data_len);
6235 	}
6236 	/* At this point, skb->truesize might be over estimated,
6237 	 * because skb had a fragment, and fragments do not tell
6238 	 * their truesize.
6239 	 * When we pulled its content into skb->head, fragment
6240 	 * was freed, but __pskb_pull_tail() could not possibly
6241 	 * adjust skb->truesize, not knowing the frag truesize.
6242 	 */
6243 	skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
6244 }
6245 
6246 #ifdef CONFIG_SKB_EXTENSIONS
6247 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id)
6248 {
6249 	return (void *)ext + (ext->offset[id] * SKB_EXT_ALIGN_VALUE);
6250 }
6251 
6252 /**
6253  * __skb_ext_alloc - allocate a new skb extensions storage
6254  *
6255  * @flags: See kmalloc().
6256  *
6257  * Returns the newly allocated pointer. The pointer can later attached to a
6258  * skb via __skb_ext_set().
6259  * Note: caller must handle the skb_ext as an opaque data.
6260  */
6261 struct skb_ext *__skb_ext_alloc(gfp_t flags)
6262 {
6263 	struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags);
6264 
6265 	if (new) {
6266 		memset(new->offset, 0, sizeof(new->offset));
6267 		refcount_set(&new->refcnt, 1);
6268 	}
6269 
6270 	return new;
6271 }
6272 
6273 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old,
6274 					 unsigned int old_active)
6275 {
6276 	struct skb_ext *new;
6277 
6278 	if (refcount_read(&old->refcnt) == 1)
6279 		return old;
6280 
6281 	new = kmem_cache_alloc(skbuff_ext_cache, GFP_ATOMIC);
6282 	if (!new)
6283 		return NULL;
6284 
6285 	memcpy(new, old, old->chunks * SKB_EXT_ALIGN_VALUE);
6286 	refcount_set(&new->refcnt, 1);
6287 
6288 #ifdef CONFIG_XFRM
6289 	if (old_active & (1 << SKB_EXT_SEC_PATH)) {
6290 		struct sec_path *sp = skb_ext_get_ptr(old, SKB_EXT_SEC_PATH);
6291 		unsigned int i;
6292 
6293 		for (i = 0; i < sp->len; i++)
6294 			xfrm_state_hold(sp->xvec[i]);
6295 	}
6296 #endif
6297 	__skb_ext_put(old);
6298 	return new;
6299 }
6300 
6301 /**
6302  * __skb_ext_set - attach the specified extension storage to this skb
6303  * @skb: buffer
6304  * @id: extension id
6305  * @ext: extension storage previously allocated via __skb_ext_alloc()
6306  *
6307  * Existing extensions, if any, are cleared.
6308  *
6309  * Returns the pointer to the extension.
6310  */
6311 void *__skb_ext_set(struct sk_buff *skb, enum skb_ext_id id,
6312 		    struct skb_ext *ext)
6313 {
6314 	unsigned int newlen, newoff = SKB_EXT_CHUNKSIZEOF(*ext);
6315 
6316 	skb_ext_put(skb);
6317 	newlen = newoff + skb_ext_type_len[id];
6318 	ext->chunks = newlen;
6319 	ext->offset[id] = newoff;
6320 	skb->extensions = ext;
6321 	skb->active_extensions = 1 << id;
6322 	return skb_ext_get_ptr(ext, id);
6323 }
6324 
6325 /**
6326  * skb_ext_add - allocate space for given extension, COW if needed
6327  * @skb: buffer
6328  * @id: extension to allocate space for
6329  *
6330  * Allocates enough space for the given extension.
6331  * If the extension is already present, a pointer to that extension
6332  * is returned.
6333  *
6334  * If the skb was cloned, COW applies and the returned memory can be
6335  * modified without changing the extension space of clones buffers.
6336  *
6337  * Returns pointer to the extension or NULL on allocation failure.
6338  */
6339 void *skb_ext_add(struct sk_buff *skb, enum skb_ext_id id)
6340 {
6341 	struct skb_ext *new, *old = NULL;
6342 	unsigned int newlen, newoff;
6343 
6344 	if (skb->active_extensions) {
6345 		old = skb->extensions;
6346 
6347 		new = skb_ext_maybe_cow(old, skb->active_extensions);
6348 		if (!new)
6349 			return NULL;
6350 
6351 		if (__skb_ext_exist(new, id))
6352 			goto set_active;
6353 
6354 		newoff = new->chunks;
6355 	} else {
6356 		newoff = SKB_EXT_CHUNKSIZEOF(*new);
6357 
6358 		new = __skb_ext_alloc(GFP_ATOMIC);
6359 		if (!new)
6360 			return NULL;
6361 	}
6362 
6363 	newlen = newoff + skb_ext_type_len[id];
6364 	new->chunks = newlen;
6365 	new->offset[id] = newoff;
6366 set_active:
6367 	skb->slow_gro = 1;
6368 	skb->extensions = new;
6369 	skb->active_extensions |= 1 << id;
6370 	return skb_ext_get_ptr(new, id);
6371 }
6372 EXPORT_SYMBOL(skb_ext_add);
6373 
6374 #ifdef CONFIG_XFRM
6375 static void skb_ext_put_sp(struct sec_path *sp)
6376 {
6377 	unsigned int i;
6378 
6379 	for (i = 0; i < sp->len; i++)
6380 		xfrm_state_put(sp->xvec[i]);
6381 }
6382 #endif
6383 
6384 #ifdef CONFIG_MCTP_FLOWS
6385 static void skb_ext_put_mctp(struct mctp_flow *flow)
6386 {
6387 	if (flow->key)
6388 		mctp_key_unref(flow->key);
6389 }
6390 #endif
6391 
6392 void __skb_ext_del(struct sk_buff *skb, enum skb_ext_id id)
6393 {
6394 	struct skb_ext *ext = skb->extensions;
6395 
6396 	skb->active_extensions &= ~(1 << id);
6397 	if (skb->active_extensions == 0) {
6398 		skb->extensions = NULL;
6399 		__skb_ext_put(ext);
6400 #ifdef CONFIG_XFRM
6401 	} else if (id == SKB_EXT_SEC_PATH &&
6402 		   refcount_read(&ext->refcnt) == 1) {
6403 		struct sec_path *sp = skb_ext_get_ptr(ext, SKB_EXT_SEC_PATH);
6404 
6405 		skb_ext_put_sp(sp);
6406 		sp->len = 0;
6407 #endif
6408 	}
6409 }
6410 EXPORT_SYMBOL(__skb_ext_del);
6411 
6412 void __skb_ext_put(struct skb_ext *ext)
6413 {
6414 	/* If this is last clone, nothing can increment
6415 	 * it after check passes.  Avoids one atomic op.
6416 	 */
6417 	if (refcount_read(&ext->refcnt) == 1)
6418 		goto free_now;
6419 
6420 	if (!refcount_dec_and_test(&ext->refcnt))
6421 		return;
6422 free_now:
6423 #ifdef CONFIG_XFRM
6424 	if (__skb_ext_exist(ext, SKB_EXT_SEC_PATH))
6425 		skb_ext_put_sp(skb_ext_get_ptr(ext, SKB_EXT_SEC_PATH));
6426 #endif
6427 #ifdef CONFIG_MCTP_FLOWS
6428 	if (__skb_ext_exist(ext, SKB_EXT_MCTP))
6429 		skb_ext_put_mctp(skb_ext_get_ptr(ext, SKB_EXT_MCTP));
6430 #endif
6431 
6432 	kmem_cache_free(skbuff_ext_cache, ext);
6433 }
6434 EXPORT_SYMBOL(__skb_ext_put);
6435 #endif /* CONFIG_SKB_EXTENSIONS */
6436