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