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