xref: /openbmc/linux/net/core/skbuff.c (revision de8f3a83)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *	Routines having to do with the 'struct sk_buff' memory handlers.
31da177e4SLinus Torvalds  *
4113aa838SAlan Cox  *	Authors:	Alan Cox <alan@lxorguk.ukuu.org.uk>
51da177e4SLinus Torvalds  *			Florian La Roche <rzsfl@rz.uni-sb.de>
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  *	Fixes:
81da177e4SLinus Torvalds  *		Alan Cox	:	Fixed the worst of the load
91da177e4SLinus Torvalds  *					balancer bugs.
101da177e4SLinus Torvalds  *		Dave Platt	:	Interrupt stacking fix.
111da177e4SLinus Torvalds  *	Richard Kooijman	:	Timestamp fixes.
121da177e4SLinus Torvalds  *		Alan Cox	:	Changed buffer format.
131da177e4SLinus Torvalds  *		Alan Cox	:	destructor hook for AF_UNIX etc.
141da177e4SLinus Torvalds  *		Linus Torvalds	:	Better skb_clone.
151da177e4SLinus Torvalds  *		Alan Cox	:	Added skb_copy.
161da177e4SLinus Torvalds  *		Alan Cox	:	Added all the changed routines Linus
171da177e4SLinus Torvalds  *					only put in the headers
181da177e4SLinus Torvalds  *		Ray VanTassle	:	Fixed --skb->lock in free
191da177e4SLinus Torvalds  *		Alan Cox	:	skb_copy copy arp field
201da177e4SLinus Torvalds  *		Andi Kleen	:	slabified it.
211da177e4SLinus Torvalds  *		Robert Olsson	:	Removed skb_head_pool
221da177e4SLinus Torvalds  *
231da177e4SLinus Torvalds  *	NOTE:
241da177e4SLinus Torvalds  *		The __skb_ routines should be called with interrupts
251da177e4SLinus Torvalds  *	disabled, or you better be *real* sure that the operation is atomic
261da177e4SLinus Torvalds  *	with respect to whatever list is being frobbed (e.g. via lock_sock()
271da177e4SLinus Torvalds  *	or via disabling bottom half handlers, etc).
281da177e4SLinus Torvalds  *
291da177e4SLinus Torvalds  *	This program is free software; you can redistribute it and/or
301da177e4SLinus Torvalds  *	modify it under the terms of the GNU General Public License
311da177e4SLinus Torvalds  *	as published by the Free Software Foundation; either version
321da177e4SLinus Torvalds  *	2 of the License, or (at your option) any later version.
331da177e4SLinus Torvalds  */
341da177e4SLinus Torvalds 
351da177e4SLinus Torvalds /*
361da177e4SLinus Torvalds  *	The functions in this file will not compile correctly with gcc 2.4.x
371da177e4SLinus Torvalds  */
381da177e4SLinus Torvalds 
39e005d193SJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40e005d193SJoe Perches 
411da177e4SLinus Torvalds #include <linux/module.h>
421da177e4SLinus Torvalds #include <linux/types.h>
431da177e4SLinus Torvalds #include <linux/kernel.h>
44fe55f6d5SVegard Nossum #include <linux/kmemcheck.h>
451da177e4SLinus Torvalds #include <linux/mm.h>
461da177e4SLinus Torvalds #include <linux/interrupt.h>
471da177e4SLinus Torvalds #include <linux/in.h>
481da177e4SLinus Torvalds #include <linux/inet.h>
491da177e4SLinus Torvalds #include <linux/slab.h>
50de960aa9SFlorian Westphal #include <linux/tcp.h>
51de960aa9SFlorian Westphal #include <linux/udp.h>
5290017accSMarcelo Ricardo Leitner #include <linux/sctp.h>
531da177e4SLinus Torvalds #include <linux/netdevice.h>
541da177e4SLinus Torvalds #ifdef CONFIG_NET_CLS_ACT
551da177e4SLinus Torvalds #include <net/pkt_sched.h>
561da177e4SLinus Torvalds #endif
571da177e4SLinus Torvalds #include <linux/string.h>
581da177e4SLinus Torvalds #include <linux/skbuff.h>
599c55e01cSJens Axboe #include <linux/splice.h>
601da177e4SLinus Torvalds #include <linux/cache.h>
611da177e4SLinus Torvalds #include <linux/rtnetlink.h>
621da177e4SLinus Torvalds #include <linux/init.h>
63716ea3a7SDavid Howells #include <linux/scatterlist.h>
64ac45f602SPatrick Ohly #include <linux/errqueue.h>
65268bb0ceSLinus Torvalds #include <linux/prefetch.h>
660d5501c1SVlad Yasevich #include <linux/if_vlan.h>
671da177e4SLinus Torvalds 
681da177e4SLinus Torvalds #include <net/protocol.h>
691da177e4SLinus Torvalds #include <net/dst.h>
701da177e4SLinus Torvalds #include <net/sock.h>
711da177e4SLinus Torvalds #include <net/checksum.h>
72ed1f50c3SPaul Durrant #include <net/ip6_checksum.h>
731da177e4SLinus Torvalds #include <net/xfrm.h>
741da177e4SLinus Torvalds 
757c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
76ad8d75ffSSteven Rostedt #include <trace/events/skb.h>
7751c56b00SEric Dumazet #include <linux/highmem.h>
78b245be1fSWillem de Bruijn #include <linux/capability.h>
79b245be1fSWillem de Bruijn #include <linux/user_namespace.h>
80a1f8e7f7SAl Viro 
81d7e8883cSEric Dumazet struct kmem_cache *skbuff_head_cache __read_mostly;
82e18b890bSChristoph Lameter static struct kmem_cache *skbuff_fclone_cache __read_mostly;
835f74f82eSHans Westgaard Ry int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
845f74f82eSHans Westgaard Ry EXPORT_SYMBOL(sysctl_max_skb_frags);
851da177e4SLinus Torvalds 
861da177e4SLinus Torvalds /**
87f05de73bSJean Sacren  *	skb_panic - private function for out-of-line support
881da177e4SLinus Torvalds  *	@skb:	buffer
891da177e4SLinus Torvalds  *	@sz:	size
90f05de73bSJean Sacren  *	@addr:	address
9199d5851eSJames Hogan  *	@msg:	skb_over_panic or skb_under_panic
921da177e4SLinus Torvalds  *
93f05de73bSJean Sacren  *	Out-of-line support for skb_put() and skb_push().
94f05de73bSJean Sacren  *	Called via the wrapper skb_over_panic() or skb_under_panic().
95f05de73bSJean Sacren  *	Keep out of line to prevent kernel bloat.
96f05de73bSJean Sacren  *	__builtin_return_address is not used because it is not always reliable.
971da177e4SLinus Torvalds  */
98f05de73bSJean Sacren static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
9999d5851eSJames Hogan 		      const char msg[])
1001da177e4SLinus Torvalds {
101e005d193SJoe Perches 	pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
10299d5851eSJames Hogan 		 msg, addr, skb->len, sz, skb->head, skb->data,
1034305b541SArnaldo Carvalho de Melo 		 (unsigned long)skb->tail, (unsigned long)skb->end,
10426095455SPatrick McHardy 		 skb->dev ? skb->dev->name : "<NULL>");
1051da177e4SLinus Torvalds 	BUG();
1061da177e4SLinus Torvalds }
1071da177e4SLinus Torvalds 
108f05de73bSJean Sacren static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
1091da177e4SLinus Torvalds {
110f05de73bSJean Sacren 	skb_panic(skb, sz, addr, __func__);
1111da177e4SLinus Torvalds }
1121da177e4SLinus Torvalds 
113f05de73bSJean Sacren static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
114f05de73bSJean Sacren {
115f05de73bSJean Sacren 	skb_panic(skb, sz, addr, __func__);
116f05de73bSJean Sacren }
117c93bdd0eSMel Gorman 
118c93bdd0eSMel Gorman /*
119c93bdd0eSMel Gorman  * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
120c93bdd0eSMel Gorman  * the caller if emergency pfmemalloc reserves are being used. If it is and
121c93bdd0eSMel Gorman  * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
122c93bdd0eSMel Gorman  * may be used. Otherwise, the packet data may be discarded until enough
123c93bdd0eSMel Gorman  * memory is free
124c93bdd0eSMel Gorman  */
125c93bdd0eSMel Gorman #define kmalloc_reserve(size, gfp, node, pfmemalloc) \
126c93bdd0eSMel Gorman 	 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
12761c5e88aSstephen hemminger 
12861c5e88aSstephen hemminger static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
12961c5e88aSstephen hemminger 			       unsigned long ip, bool *pfmemalloc)
130c93bdd0eSMel Gorman {
131c93bdd0eSMel Gorman 	void *obj;
132c93bdd0eSMel Gorman 	bool ret_pfmemalloc = false;
133c93bdd0eSMel Gorman 
134c93bdd0eSMel Gorman 	/*
135c93bdd0eSMel Gorman 	 * Try a regular allocation, when that fails and we're not entitled
136c93bdd0eSMel Gorman 	 * to the reserves, fail.
137c93bdd0eSMel Gorman 	 */
138c93bdd0eSMel Gorman 	obj = kmalloc_node_track_caller(size,
139c93bdd0eSMel Gorman 					flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
140c93bdd0eSMel Gorman 					node);
141c93bdd0eSMel Gorman 	if (obj || !(gfp_pfmemalloc_allowed(flags)))
142c93bdd0eSMel Gorman 		goto out;
143c93bdd0eSMel Gorman 
144c93bdd0eSMel Gorman 	/* Try again but now we are using pfmemalloc reserves */
145c93bdd0eSMel Gorman 	ret_pfmemalloc = true;
146c93bdd0eSMel Gorman 	obj = kmalloc_node_track_caller(size, flags, node);
147c93bdd0eSMel Gorman 
148c93bdd0eSMel Gorman out:
149c93bdd0eSMel Gorman 	if (pfmemalloc)
150c93bdd0eSMel Gorman 		*pfmemalloc = ret_pfmemalloc;
151c93bdd0eSMel Gorman 
152c93bdd0eSMel Gorman 	return obj;
153c93bdd0eSMel Gorman }
154c93bdd0eSMel Gorman 
1551da177e4SLinus Torvalds /* 	Allocate a new skbuff. We do this ourselves so we can fill in a few
1561da177e4SLinus Torvalds  *	'private' fields and also do memory statistics to find all the
1571da177e4SLinus Torvalds  *	[BEEP] leaks.
1581da177e4SLinus Torvalds  *
1591da177e4SLinus Torvalds  */
1601da177e4SLinus Torvalds 
1611da177e4SLinus Torvalds /**
162d179cd12SDavid S. Miller  *	__alloc_skb	-	allocate a network buffer
1631da177e4SLinus Torvalds  *	@size: size to allocate
1641da177e4SLinus Torvalds  *	@gfp_mask: allocation mask
165c93bdd0eSMel Gorman  *	@flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
166c93bdd0eSMel Gorman  *		instead of head cache and allocate a cloned (child) skb.
167c93bdd0eSMel Gorman  *		If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
168c93bdd0eSMel Gorman  *		allocations in case the data is required for writeback
169b30973f8SChristoph Hellwig  *	@node: numa node to allocate memory on
1701da177e4SLinus Torvalds  *
1711da177e4SLinus Torvalds  *	Allocate a new &sk_buff. The returned buffer has no headroom and a
17294b6042cSBen Hutchings  *	tail room of at least size bytes. The object has a reference count
17394b6042cSBen Hutchings  *	of one. The return is the buffer. On a failure the return is %NULL.
1741da177e4SLinus Torvalds  *
1751da177e4SLinus Torvalds  *	Buffers may only be allocated from interrupts using a @gfp_mask of
1761da177e4SLinus Torvalds  *	%GFP_ATOMIC.
1771da177e4SLinus Torvalds  */
178dd0fc66fSAl Viro struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
179c93bdd0eSMel Gorman 			    int flags, int node)
1801da177e4SLinus Torvalds {
181e18b890bSChristoph Lameter 	struct kmem_cache *cache;
1824947d3efSBenjamin LaHaise 	struct skb_shared_info *shinfo;
1831da177e4SLinus Torvalds 	struct sk_buff *skb;
1841da177e4SLinus Torvalds 	u8 *data;
185c93bdd0eSMel Gorman 	bool pfmemalloc;
1861da177e4SLinus Torvalds 
187c93bdd0eSMel Gorman 	cache = (flags & SKB_ALLOC_FCLONE)
188c93bdd0eSMel Gorman 		? skbuff_fclone_cache : skbuff_head_cache;
189c93bdd0eSMel Gorman 
190c93bdd0eSMel Gorman 	if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
191c93bdd0eSMel Gorman 		gfp_mask |= __GFP_MEMALLOC;
1928798b3fbSHerbert Xu 
1931da177e4SLinus Torvalds 	/* Get the HEAD */
194b30973f8SChristoph Hellwig 	skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
1951da177e4SLinus Torvalds 	if (!skb)
1961da177e4SLinus Torvalds 		goto out;
197ec7d2f2cSEric Dumazet 	prefetchw(skb);
1981da177e4SLinus Torvalds 
19987fb4b7bSEric Dumazet 	/* We do our best to align skb_shared_info on a separate cache
20087fb4b7bSEric Dumazet 	 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
20187fb4b7bSEric Dumazet 	 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
20287fb4b7bSEric Dumazet 	 * Both skb->head and skb_shared_info are cache line aligned.
20387fb4b7bSEric Dumazet 	 */
204bc417e30STony Lindgren 	size = SKB_DATA_ALIGN(size);
20587fb4b7bSEric Dumazet 	size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
206c93bdd0eSMel Gorman 	data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
2071da177e4SLinus Torvalds 	if (!data)
2081da177e4SLinus Torvalds 		goto nodata;
20987fb4b7bSEric Dumazet 	/* kmalloc(size) might give us more room than requested.
21087fb4b7bSEric Dumazet 	 * Put skb_shared_info exactly at the end of allocated zone,
21187fb4b7bSEric Dumazet 	 * to allow max possible filling before reallocation.
21287fb4b7bSEric Dumazet 	 */
21387fb4b7bSEric Dumazet 	size = SKB_WITH_OVERHEAD(ksize(data));
214ec7d2f2cSEric Dumazet 	prefetchw(data + size);
2151da177e4SLinus Torvalds 
216ca0605a7SArnaldo Carvalho de Melo 	/*
217c8005785SJohannes Berg 	 * Only clear those fields we need to clear, not those that we will
218c8005785SJohannes Berg 	 * actually initialise below. Hence, don't put any more fields after
219c8005785SJohannes Berg 	 * the tail pointer in struct sk_buff!
220ca0605a7SArnaldo Carvalho de Melo 	 */
221ca0605a7SArnaldo Carvalho de Melo 	memset(skb, 0, offsetof(struct sk_buff, tail));
22287fb4b7bSEric Dumazet 	/* Account for allocated memory : skb + skb->head */
22387fb4b7bSEric Dumazet 	skb->truesize = SKB_TRUESIZE(size);
224c93bdd0eSMel Gorman 	skb->pfmemalloc = pfmemalloc;
22563354797SReshetova, Elena 	refcount_set(&skb->users, 1);
2261da177e4SLinus Torvalds 	skb->head = data;
2271da177e4SLinus Torvalds 	skb->data = data;
22827a884dcSArnaldo Carvalho de Melo 	skb_reset_tail_pointer(skb);
2294305b541SArnaldo Carvalho de Melo 	skb->end = skb->tail + size;
23035d04610SCong Wang 	skb->mac_header = (typeof(skb->mac_header))~0U;
23135d04610SCong Wang 	skb->transport_header = (typeof(skb->transport_header))~0U;
23219633e12SStephen Hemminger 
2334947d3efSBenjamin LaHaise 	/* make sure we initialize shinfo sequentially */
2344947d3efSBenjamin LaHaise 	shinfo = skb_shinfo(skb);
235ec7d2f2cSEric Dumazet 	memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
2364947d3efSBenjamin LaHaise 	atomic_set(&shinfo->dataref, 1);
237c2aa3665SEric Dumazet 	kmemcheck_annotate_variable(shinfo->destructor_arg);
2384947d3efSBenjamin LaHaise 
239c93bdd0eSMel Gorman 	if (flags & SKB_ALLOC_FCLONE) {
240d0bf4a9eSEric Dumazet 		struct sk_buff_fclones *fclones;
2411da177e4SLinus Torvalds 
242d0bf4a9eSEric Dumazet 		fclones = container_of(skb, struct sk_buff_fclones, skb1);
243d0bf4a9eSEric Dumazet 
244d0bf4a9eSEric Dumazet 		kmemcheck_annotate_bitfield(&fclones->skb2, flags1);
245d179cd12SDavid S. Miller 		skb->fclone = SKB_FCLONE_ORIG;
2462638595aSReshetova, Elena 		refcount_set(&fclones->fclone_ref, 1);
247d179cd12SDavid S. Miller 
2486ffe75ebSEric Dumazet 		fclones->skb2.fclone = SKB_FCLONE_CLONE;
249d179cd12SDavid S. Miller 	}
2501da177e4SLinus Torvalds out:
2511da177e4SLinus Torvalds 	return skb;
2521da177e4SLinus Torvalds nodata:
2538798b3fbSHerbert Xu 	kmem_cache_free(cache, skb);
2541da177e4SLinus Torvalds 	skb = NULL;
2551da177e4SLinus Torvalds 	goto out;
2561da177e4SLinus Torvalds }
257b4ac530fSDavid S. Miller EXPORT_SYMBOL(__alloc_skb);
2581da177e4SLinus Torvalds 
2591da177e4SLinus Torvalds /**
2602ea2f62cSEric Dumazet  * __build_skb - build a network buffer
261b2b5ce9dSEric Dumazet  * @data: data buffer provided by caller
2622ea2f62cSEric Dumazet  * @frag_size: size of data, or 0 if head was kmalloced
263b2b5ce9dSEric Dumazet  *
264b2b5ce9dSEric Dumazet  * Allocate a new &sk_buff. Caller provides space holding head and
265deceb4c0SFlorian Fainelli  * skb_shared_info. @data must have been allocated by kmalloc() only if
2662ea2f62cSEric Dumazet  * @frag_size is 0, otherwise data should come from the page allocator
2672ea2f62cSEric Dumazet  *  or vmalloc()
268b2b5ce9dSEric Dumazet  * The return is the new skb buffer.
269b2b5ce9dSEric Dumazet  * On a failure the return is %NULL, and @data is not freed.
270b2b5ce9dSEric Dumazet  * Notes :
271b2b5ce9dSEric Dumazet  *  Before IO, driver allocates only data buffer where NIC put incoming frame
272b2b5ce9dSEric Dumazet  *  Driver should add room at head (NET_SKB_PAD) and
273b2b5ce9dSEric Dumazet  *  MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
274b2b5ce9dSEric Dumazet  *  After IO, driver calls build_skb(), to allocate sk_buff and populate it
275b2b5ce9dSEric Dumazet  *  before giving packet to stack.
276b2b5ce9dSEric Dumazet  *  RX rings only contains data buffers, not full skbs.
277b2b5ce9dSEric Dumazet  */
2782ea2f62cSEric Dumazet struct sk_buff *__build_skb(void *data, unsigned int frag_size)
279b2b5ce9dSEric Dumazet {
280b2b5ce9dSEric Dumazet 	struct skb_shared_info *shinfo;
281b2b5ce9dSEric Dumazet 	struct sk_buff *skb;
282d3836f21SEric Dumazet 	unsigned int size = frag_size ? : ksize(data);
283b2b5ce9dSEric Dumazet 
284b2b5ce9dSEric Dumazet 	skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
285b2b5ce9dSEric Dumazet 	if (!skb)
286b2b5ce9dSEric Dumazet 		return NULL;
287b2b5ce9dSEric Dumazet 
288d3836f21SEric Dumazet 	size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
289b2b5ce9dSEric Dumazet 
290b2b5ce9dSEric Dumazet 	memset(skb, 0, offsetof(struct sk_buff, tail));
291b2b5ce9dSEric Dumazet 	skb->truesize = SKB_TRUESIZE(size);
29263354797SReshetova, Elena 	refcount_set(&skb->users, 1);
293b2b5ce9dSEric Dumazet 	skb->head = data;
294b2b5ce9dSEric Dumazet 	skb->data = data;
295b2b5ce9dSEric Dumazet 	skb_reset_tail_pointer(skb);
296b2b5ce9dSEric Dumazet 	skb->end = skb->tail + size;
29735d04610SCong Wang 	skb->mac_header = (typeof(skb->mac_header))~0U;
29835d04610SCong Wang 	skb->transport_header = (typeof(skb->transport_header))~0U;
299b2b5ce9dSEric Dumazet 
300b2b5ce9dSEric Dumazet 	/* make sure we initialize shinfo sequentially */
301b2b5ce9dSEric Dumazet 	shinfo = skb_shinfo(skb);
302b2b5ce9dSEric Dumazet 	memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
303b2b5ce9dSEric Dumazet 	atomic_set(&shinfo->dataref, 1);
304b2b5ce9dSEric Dumazet 	kmemcheck_annotate_variable(shinfo->destructor_arg);
305b2b5ce9dSEric Dumazet 
306b2b5ce9dSEric Dumazet 	return skb;
307b2b5ce9dSEric Dumazet }
3082ea2f62cSEric Dumazet 
3092ea2f62cSEric Dumazet /* build_skb() is wrapper over __build_skb(), that specifically
3102ea2f62cSEric Dumazet  * takes care of skb->head and skb->pfmemalloc
3112ea2f62cSEric Dumazet  * This means that if @frag_size is not zero, then @data must be backed
3122ea2f62cSEric Dumazet  * by a page fragment, not kmalloc() or vmalloc()
3132ea2f62cSEric Dumazet  */
3142ea2f62cSEric Dumazet struct sk_buff *build_skb(void *data, unsigned int frag_size)
3152ea2f62cSEric Dumazet {
3162ea2f62cSEric Dumazet 	struct sk_buff *skb = __build_skb(data, frag_size);
3172ea2f62cSEric Dumazet 
3182ea2f62cSEric Dumazet 	if (skb && frag_size) {
3192ea2f62cSEric Dumazet 		skb->head_frag = 1;
3202f064f34SMichal Hocko 		if (page_is_pfmemalloc(virt_to_head_page(data)))
3212ea2f62cSEric Dumazet 			skb->pfmemalloc = 1;
3222ea2f62cSEric Dumazet 	}
3232ea2f62cSEric Dumazet 	return skb;
3242ea2f62cSEric Dumazet }
325b2b5ce9dSEric Dumazet EXPORT_SYMBOL(build_skb);
326b2b5ce9dSEric Dumazet 
327795bb1c0SJesper Dangaard Brouer #define NAPI_SKB_CACHE_SIZE	64
328795bb1c0SJesper Dangaard Brouer 
329795bb1c0SJesper Dangaard Brouer struct napi_alloc_cache {
330795bb1c0SJesper Dangaard Brouer 	struct page_frag_cache page;
331e0d7924aSAlexey Dobriyan 	unsigned int skb_count;
332795bb1c0SJesper Dangaard Brouer 	void *skb_cache[NAPI_SKB_CACHE_SIZE];
333795bb1c0SJesper Dangaard Brouer };
334795bb1c0SJesper Dangaard Brouer 
335b63ae8caSAlexander Duyck static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
336795bb1c0SJesper Dangaard Brouer static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
337ffde7328SAlexander Duyck 
338ffde7328SAlexander Duyck static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
339ffde7328SAlexander Duyck {
340b63ae8caSAlexander Duyck 	struct page_frag_cache *nc;
341ffde7328SAlexander Duyck 	unsigned long flags;
342ffde7328SAlexander Duyck 	void *data;
343ffde7328SAlexander Duyck 
344ffde7328SAlexander Duyck 	local_irq_save(flags);
3459451980aSAlexander Duyck 	nc = this_cpu_ptr(&netdev_alloc_cache);
3468c2dd3e4SAlexander Duyck 	data = page_frag_alloc(nc, fragsz, gfp_mask);
3476f532612SEric Dumazet 	local_irq_restore(flags);
3486f532612SEric Dumazet 	return data;
3496f532612SEric Dumazet }
350c93bdd0eSMel Gorman 
351c93bdd0eSMel Gorman /**
352c93bdd0eSMel Gorman  * netdev_alloc_frag - allocate a page fragment
353c93bdd0eSMel Gorman  * @fragsz: fragment size
354c93bdd0eSMel Gorman  *
355c93bdd0eSMel Gorman  * Allocates a frag from a page for receive buffer.
356c93bdd0eSMel Gorman  * Uses GFP_ATOMIC allocations.
357c93bdd0eSMel Gorman  */
358c93bdd0eSMel Gorman void *netdev_alloc_frag(unsigned int fragsz)
359c93bdd0eSMel Gorman {
360c93bdd0eSMel Gorman 	return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
361c93bdd0eSMel Gorman }
3626f532612SEric Dumazet EXPORT_SYMBOL(netdev_alloc_frag);
3636f532612SEric Dumazet 
364ffde7328SAlexander Duyck static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
365ffde7328SAlexander Duyck {
366795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
3679451980aSAlexander Duyck 
3688c2dd3e4SAlexander Duyck 	return page_frag_alloc(&nc->page, fragsz, gfp_mask);
369ffde7328SAlexander Duyck }
370ffde7328SAlexander Duyck 
371ffde7328SAlexander Duyck void *napi_alloc_frag(unsigned int fragsz)
372ffde7328SAlexander Duyck {
373ffde7328SAlexander Duyck 	return __napi_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
374ffde7328SAlexander Duyck }
375ffde7328SAlexander Duyck EXPORT_SYMBOL(napi_alloc_frag);
376ffde7328SAlexander Duyck 
3776f532612SEric Dumazet /**
378fd11a83dSAlexander Duyck  *	__netdev_alloc_skb - allocate an skbuff for rx on a specific device
379fd11a83dSAlexander Duyck  *	@dev: network device to receive on
380d7499160SMasanari Iida  *	@len: length to allocate
381fd11a83dSAlexander Duyck  *	@gfp_mask: get_free_pages mask, passed to alloc_skb
382fd11a83dSAlexander Duyck  *
383fd11a83dSAlexander Duyck  *	Allocate a new &sk_buff and assign it a usage count of one. The
384fd11a83dSAlexander Duyck  *	buffer has NET_SKB_PAD headroom built in. Users should allocate
385fd11a83dSAlexander Duyck  *	the headroom they think they need without accounting for the
386fd11a83dSAlexander Duyck  *	built in space. The built in space is used for optimisations.
387fd11a83dSAlexander Duyck  *
388fd11a83dSAlexander Duyck  *	%NULL is returned if there is no free memory.
389fd11a83dSAlexander Duyck  */
3909451980aSAlexander Duyck struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
3919451980aSAlexander Duyck 				   gfp_t gfp_mask)
392fd11a83dSAlexander Duyck {
393b63ae8caSAlexander Duyck 	struct page_frag_cache *nc;
3949451980aSAlexander Duyck 	unsigned long flags;
395fd11a83dSAlexander Duyck 	struct sk_buff *skb;
3969451980aSAlexander Duyck 	bool pfmemalloc;
3979451980aSAlexander Duyck 	void *data;
398fd11a83dSAlexander Duyck 
3999451980aSAlexander Duyck 	len += NET_SKB_PAD;
400fd11a83dSAlexander Duyck 
4019451980aSAlexander Duyck 	if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
402d0164adcSMel Gorman 	    (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
403a080e7bdSAlexander Duyck 		skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
404a080e7bdSAlexander Duyck 		if (!skb)
405a080e7bdSAlexander Duyck 			goto skb_fail;
406a080e7bdSAlexander Duyck 		goto skb_success;
407a080e7bdSAlexander Duyck 	}
4089451980aSAlexander Duyck 
4099451980aSAlexander Duyck 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4109451980aSAlexander Duyck 	len = SKB_DATA_ALIGN(len);
4119451980aSAlexander Duyck 
4129451980aSAlexander Duyck 	if (sk_memalloc_socks())
4139451980aSAlexander Duyck 		gfp_mask |= __GFP_MEMALLOC;
4149451980aSAlexander Duyck 
4159451980aSAlexander Duyck 	local_irq_save(flags);
4169451980aSAlexander Duyck 
4179451980aSAlexander Duyck 	nc = this_cpu_ptr(&netdev_alloc_cache);
4188c2dd3e4SAlexander Duyck 	data = page_frag_alloc(nc, len, gfp_mask);
4199451980aSAlexander Duyck 	pfmemalloc = nc->pfmemalloc;
4209451980aSAlexander Duyck 
4219451980aSAlexander Duyck 	local_irq_restore(flags);
4229451980aSAlexander Duyck 
4239451980aSAlexander Duyck 	if (unlikely(!data))
4249451980aSAlexander Duyck 		return NULL;
4259451980aSAlexander Duyck 
4269451980aSAlexander Duyck 	skb = __build_skb(data, len);
4279451980aSAlexander Duyck 	if (unlikely(!skb)) {
428181edb2bSAlexander Duyck 		skb_free_frag(data);
4299451980aSAlexander Duyck 		return NULL;
4309451980aSAlexander Duyck 	}
4319451980aSAlexander Duyck 
4329451980aSAlexander Duyck 	/* use OR instead of assignment to avoid clearing of bits in mask */
4339451980aSAlexander Duyck 	if (pfmemalloc)
4349451980aSAlexander Duyck 		skb->pfmemalloc = 1;
4359451980aSAlexander Duyck 	skb->head_frag = 1;
4369451980aSAlexander Duyck 
437a080e7bdSAlexander Duyck skb_success:
4388af27456SChristoph Hellwig 	skb_reserve(skb, NET_SKB_PAD);
4397b2e497aSChristoph Hellwig 	skb->dev = dev;
440fd11a83dSAlexander Duyck 
441a080e7bdSAlexander Duyck skb_fail:
4428af27456SChristoph Hellwig 	return skb;
4438af27456SChristoph Hellwig }
444b4ac530fSDavid S. Miller EXPORT_SYMBOL(__netdev_alloc_skb);
4451da177e4SLinus Torvalds 
446fd11a83dSAlexander Duyck /**
447fd11a83dSAlexander Duyck  *	__napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
448fd11a83dSAlexander Duyck  *	@napi: napi instance this buffer was allocated for
449d7499160SMasanari Iida  *	@len: length to allocate
450fd11a83dSAlexander Duyck  *	@gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
451fd11a83dSAlexander Duyck  *
452fd11a83dSAlexander Duyck  *	Allocate a new sk_buff for use in NAPI receive.  This buffer will
453fd11a83dSAlexander Duyck  *	attempt to allocate the head from a special reserved region used
454fd11a83dSAlexander Duyck  *	only for NAPI Rx allocation.  By doing this we can save several
455fd11a83dSAlexander Duyck  *	CPU cycles by avoiding having to disable and re-enable IRQs.
456fd11a83dSAlexander Duyck  *
457fd11a83dSAlexander Duyck  *	%NULL is returned if there is no free memory.
458fd11a83dSAlexander Duyck  */
4599451980aSAlexander Duyck struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
4609451980aSAlexander Duyck 				 gfp_t gfp_mask)
461fd11a83dSAlexander Duyck {
462795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
463fd11a83dSAlexander Duyck 	struct sk_buff *skb;
4649451980aSAlexander Duyck 	void *data;
465fd11a83dSAlexander Duyck 
4669451980aSAlexander Duyck 	len += NET_SKB_PAD + NET_IP_ALIGN;
467fd11a83dSAlexander Duyck 
4689451980aSAlexander Duyck 	if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
469d0164adcSMel Gorman 	    (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
470a080e7bdSAlexander Duyck 		skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
471a080e7bdSAlexander Duyck 		if (!skb)
472a080e7bdSAlexander Duyck 			goto skb_fail;
473a080e7bdSAlexander Duyck 		goto skb_success;
474a080e7bdSAlexander Duyck 	}
4759451980aSAlexander Duyck 
4769451980aSAlexander Duyck 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4779451980aSAlexander Duyck 	len = SKB_DATA_ALIGN(len);
4789451980aSAlexander Duyck 
4799451980aSAlexander Duyck 	if (sk_memalloc_socks())
4809451980aSAlexander Duyck 		gfp_mask |= __GFP_MEMALLOC;
4819451980aSAlexander Duyck 
4828c2dd3e4SAlexander Duyck 	data = page_frag_alloc(&nc->page, len, gfp_mask);
4839451980aSAlexander Duyck 	if (unlikely(!data))
4849451980aSAlexander Duyck 		return NULL;
4859451980aSAlexander Duyck 
4869451980aSAlexander Duyck 	skb = __build_skb(data, len);
4879451980aSAlexander Duyck 	if (unlikely(!skb)) {
488181edb2bSAlexander Duyck 		skb_free_frag(data);
4899451980aSAlexander Duyck 		return NULL;
4909451980aSAlexander Duyck 	}
4919451980aSAlexander Duyck 
4929451980aSAlexander Duyck 	/* use OR instead of assignment to avoid clearing of bits in mask */
493795bb1c0SJesper Dangaard Brouer 	if (nc->page.pfmemalloc)
4949451980aSAlexander Duyck 		skb->pfmemalloc = 1;
4959451980aSAlexander Duyck 	skb->head_frag = 1;
4969451980aSAlexander Duyck 
497a080e7bdSAlexander Duyck skb_success:
498fd11a83dSAlexander Duyck 	skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
499fd11a83dSAlexander Duyck 	skb->dev = napi->dev;
500fd11a83dSAlexander Duyck 
501a080e7bdSAlexander Duyck skb_fail:
502fd11a83dSAlexander Duyck 	return skb;
503fd11a83dSAlexander Duyck }
504fd11a83dSAlexander Duyck EXPORT_SYMBOL(__napi_alloc_skb);
505fd11a83dSAlexander Duyck 
506654bed16SPeter Zijlstra void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
50750269e19SEric Dumazet 		     int size, unsigned int truesize)
508654bed16SPeter Zijlstra {
509654bed16SPeter Zijlstra 	skb_fill_page_desc(skb, i, page, off, size);
510654bed16SPeter Zijlstra 	skb->len += size;
511654bed16SPeter Zijlstra 	skb->data_len += size;
51250269e19SEric Dumazet 	skb->truesize += truesize;
513654bed16SPeter Zijlstra }
514654bed16SPeter Zijlstra EXPORT_SYMBOL(skb_add_rx_frag);
515654bed16SPeter Zijlstra 
516f8e617e1SJason Wang void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
517f8e617e1SJason Wang 			  unsigned int truesize)
518f8e617e1SJason Wang {
519f8e617e1SJason Wang 	skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
520f8e617e1SJason Wang 
521f8e617e1SJason Wang 	skb_frag_size_add(frag, size);
522f8e617e1SJason Wang 	skb->len += size;
523f8e617e1SJason Wang 	skb->data_len += size;
524f8e617e1SJason Wang 	skb->truesize += truesize;
525f8e617e1SJason Wang }
526f8e617e1SJason Wang EXPORT_SYMBOL(skb_coalesce_rx_frag);
527f8e617e1SJason Wang 
52827b437c8SHerbert Xu static void skb_drop_list(struct sk_buff **listp)
5291da177e4SLinus Torvalds {
530bd8a7036SEric Dumazet 	kfree_skb_list(*listp);
53127b437c8SHerbert Xu 	*listp = NULL;
5321da177e4SLinus Torvalds }
5331da177e4SLinus Torvalds 
53427b437c8SHerbert Xu static inline void skb_drop_fraglist(struct sk_buff *skb)
53527b437c8SHerbert Xu {
53627b437c8SHerbert Xu 	skb_drop_list(&skb_shinfo(skb)->frag_list);
53727b437c8SHerbert Xu }
53827b437c8SHerbert Xu 
5391da177e4SLinus Torvalds static void skb_clone_fraglist(struct sk_buff *skb)
5401da177e4SLinus Torvalds {
5411da177e4SLinus Torvalds 	struct sk_buff *list;
5421da177e4SLinus Torvalds 
543fbb398a8SDavid S. Miller 	skb_walk_frags(skb, list)
5441da177e4SLinus Torvalds 		skb_get(list);
5451da177e4SLinus Torvalds }
5461da177e4SLinus Torvalds 
547d3836f21SEric Dumazet static void skb_free_head(struct sk_buff *skb)
548d3836f21SEric Dumazet {
549181edb2bSAlexander Duyck 	unsigned char *head = skb->head;
550181edb2bSAlexander Duyck 
551d3836f21SEric Dumazet 	if (skb->head_frag)
552181edb2bSAlexander Duyck 		skb_free_frag(head);
553d3836f21SEric Dumazet 	else
554181edb2bSAlexander Duyck 		kfree(head);
555d3836f21SEric Dumazet }
556d3836f21SEric Dumazet 
5575bba1712SAdrian Bunk static void skb_release_data(struct sk_buff *skb)
5581da177e4SLinus Torvalds {
559ff04a771SEric Dumazet 	struct skb_shared_info *shinfo = skb_shinfo(skb);
5601da177e4SLinus Torvalds 	int i;
561ff04a771SEric Dumazet 
562ff04a771SEric Dumazet 	if (skb->cloned &&
563ff04a771SEric Dumazet 	    atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
564ff04a771SEric Dumazet 			      &shinfo->dataref))
565ff04a771SEric Dumazet 		return;
566ff04a771SEric Dumazet 
567ff04a771SEric Dumazet 	for (i = 0; i < shinfo->nr_frags; i++)
568ff04a771SEric Dumazet 		__skb_frag_unref(&shinfo->frags[i]);
5691da177e4SLinus Torvalds 
570ff04a771SEric Dumazet 	if (shinfo->frag_list)
571ff04a771SEric Dumazet 		kfree_skb_list(shinfo->frag_list);
5721da177e4SLinus Torvalds 
5731f8b977aSWillem de Bruijn 	skb_zcopy_clear(skb, true);
574d3836f21SEric Dumazet 	skb_free_head(skb);
5751da177e4SLinus Torvalds }
5761da177e4SLinus Torvalds 
5771da177e4SLinus Torvalds /*
5781da177e4SLinus Torvalds  *	Free an skbuff by memory without cleaning the state.
5791da177e4SLinus Torvalds  */
5802d4baff8SHerbert Xu static void kfree_skbmem(struct sk_buff *skb)
5811da177e4SLinus Torvalds {
582d0bf4a9eSEric Dumazet 	struct sk_buff_fclones *fclones;
583d179cd12SDavid S. Miller 
584d179cd12SDavid S. Miller 	switch (skb->fclone) {
585d179cd12SDavid S. Miller 	case SKB_FCLONE_UNAVAILABLE:
5861da177e4SLinus Torvalds 		kmem_cache_free(skbuff_head_cache, skb);
5876ffe75ebSEric Dumazet 		return;
588d179cd12SDavid S. Miller 
589d179cd12SDavid S. Miller 	case SKB_FCLONE_ORIG:
590d0bf4a9eSEric Dumazet 		fclones = container_of(skb, struct sk_buff_fclones, skb1);
5916ffe75ebSEric Dumazet 
5926ffe75ebSEric Dumazet 		/* We usually free the clone (TX completion) before original skb
5936ffe75ebSEric Dumazet 		 * This test would have no chance to be true for the clone,
5946ffe75ebSEric Dumazet 		 * while here, branch prediction will be good.
5956ffe75ebSEric Dumazet 		 */
5962638595aSReshetova, Elena 		if (refcount_read(&fclones->fclone_ref) == 1)
5976ffe75ebSEric Dumazet 			goto fastpath;
598d179cd12SDavid S. Miller 		break;
599d179cd12SDavid S. Miller 
6006ffe75ebSEric Dumazet 	default: /* SKB_FCLONE_CLONE */
601d0bf4a9eSEric Dumazet 		fclones = container_of(skb, struct sk_buff_fclones, skb2);
602d179cd12SDavid S. Miller 		break;
6033ff50b79SStephen Hemminger 	}
6042638595aSReshetova, Elena 	if (!refcount_dec_and_test(&fclones->fclone_ref))
6056ffe75ebSEric Dumazet 		return;
6066ffe75ebSEric Dumazet fastpath:
6076ffe75ebSEric Dumazet 	kmem_cache_free(skbuff_fclone_cache, fclones);
6081da177e4SLinus Torvalds }
6091da177e4SLinus Torvalds 
6100a463c78SPaolo Abeni void skb_release_head_state(struct sk_buff *skb)
6111da177e4SLinus Torvalds {
612adf30907SEric Dumazet 	skb_dst_drop(skb);
6130a463c78SPaolo Abeni 	secpath_reset(skb);
6141da177e4SLinus Torvalds 	if (skb->destructor) {
6159c2b3328SStephen Hemminger 		WARN_ON(in_irq());
6161da177e4SLinus Torvalds 		skb->destructor(skb);
6171da177e4SLinus Torvalds 	}
618a3bf7ae9SIgor Maravić #if IS_ENABLED(CONFIG_NF_CONNTRACK)
619cb9c6836SFlorian Westphal 	nf_conntrack_put(skb_nfct(skb));
6202fc72c7bSKOVACS Krisztian #endif
6211109a90cSPablo Neira Ayuso #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
6221da177e4SLinus Torvalds 	nf_bridge_put(skb->nf_bridge);
6231da177e4SLinus Torvalds #endif
62404a4bb55SLennert Buytenhek }
62504a4bb55SLennert Buytenhek 
62604a4bb55SLennert Buytenhek /* Free everything but the sk_buff shell. */
62704a4bb55SLennert Buytenhek static void skb_release_all(struct sk_buff *skb)
62804a4bb55SLennert Buytenhek {
62904a4bb55SLennert Buytenhek 	skb_release_head_state(skb);
630a28b1b90SFlorian Westphal 	if (likely(skb->head))
6312d4baff8SHerbert Xu 		skb_release_data(skb);
6322d4baff8SHerbert Xu }
6331da177e4SLinus Torvalds 
6342d4baff8SHerbert Xu /**
6352d4baff8SHerbert Xu  *	__kfree_skb - private function
6362d4baff8SHerbert Xu  *	@skb: buffer
6372d4baff8SHerbert Xu  *
6382d4baff8SHerbert Xu  *	Free an sk_buff. Release anything attached to the buffer.
6392d4baff8SHerbert Xu  *	Clean the state. This is an internal helper function. Users should
6402d4baff8SHerbert Xu  *	always call kfree_skb
6412d4baff8SHerbert Xu  */
6422d4baff8SHerbert Xu 
6432d4baff8SHerbert Xu void __kfree_skb(struct sk_buff *skb)
6442d4baff8SHerbert Xu {
6452d4baff8SHerbert Xu 	skb_release_all(skb);
6461da177e4SLinus Torvalds 	kfree_skbmem(skb);
6471da177e4SLinus Torvalds }
648b4ac530fSDavid S. Miller EXPORT_SYMBOL(__kfree_skb);
6491da177e4SLinus Torvalds 
6501da177e4SLinus Torvalds /**
651231d06aeSJörn Engel  *	kfree_skb - free an sk_buff
652231d06aeSJörn Engel  *	@skb: buffer to free
653231d06aeSJörn Engel  *
654231d06aeSJörn Engel  *	Drop a reference to the buffer and free it if the usage count has
655231d06aeSJörn Engel  *	hit zero.
656231d06aeSJörn Engel  */
657231d06aeSJörn Engel void kfree_skb(struct sk_buff *skb)
658231d06aeSJörn Engel {
6593889a803SPaolo Abeni 	if (!skb_unref(skb))
660231d06aeSJörn Engel 		return;
6613889a803SPaolo Abeni 
662ead2ceb0SNeil Horman 	trace_kfree_skb(skb, __builtin_return_address(0));
663231d06aeSJörn Engel 	__kfree_skb(skb);
664231d06aeSJörn Engel }
665b4ac530fSDavid S. Miller EXPORT_SYMBOL(kfree_skb);
666231d06aeSJörn Engel 
667bd8a7036SEric Dumazet void kfree_skb_list(struct sk_buff *segs)
668bd8a7036SEric Dumazet {
669bd8a7036SEric Dumazet 	while (segs) {
670bd8a7036SEric Dumazet 		struct sk_buff *next = segs->next;
671bd8a7036SEric Dumazet 
672bd8a7036SEric Dumazet 		kfree_skb(segs);
673bd8a7036SEric Dumazet 		segs = next;
674bd8a7036SEric Dumazet 	}
675bd8a7036SEric Dumazet }
676bd8a7036SEric Dumazet EXPORT_SYMBOL(kfree_skb_list);
677bd8a7036SEric Dumazet 
678d1a203eaSStephen Hemminger /**
67925121173SMichael S. Tsirkin  *	skb_tx_error - report an sk_buff xmit error
68025121173SMichael S. Tsirkin  *	@skb: buffer that triggered an error
68125121173SMichael S. Tsirkin  *
68225121173SMichael S. Tsirkin  *	Report xmit error if a device callback is tracking this skb.
68325121173SMichael S. Tsirkin  *	skb must be freed afterwards.
68425121173SMichael S. Tsirkin  */
68525121173SMichael S. Tsirkin void skb_tx_error(struct sk_buff *skb)
68625121173SMichael S. Tsirkin {
6871f8b977aSWillem de Bruijn 	skb_zcopy_clear(skb, true);
68825121173SMichael S. Tsirkin }
68925121173SMichael S. Tsirkin EXPORT_SYMBOL(skb_tx_error);
69025121173SMichael S. Tsirkin 
69125121173SMichael S. Tsirkin /**
692ead2ceb0SNeil Horman  *	consume_skb - free an skbuff
693ead2ceb0SNeil Horman  *	@skb: buffer to free
694ead2ceb0SNeil Horman  *
695ead2ceb0SNeil Horman  *	Drop a ref to the buffer and free it if the usage count has hit zero
696ead2ceb0SNeil Horman  *	Functions identically to kfree_skb, but kfree_skb assumes that the frame
697ead2ceb0SNeil Horman  *	is being dropped after a failure and notes that
698ead2ceb0SNeil Horman  */
699ead2ceb0SNeil Horman void consume_skb(struct sk_buff *skb)
700ead2ceb0SNeil Horman {
7013889a803SPaolo Abeni 	if (!skb_unref(skb))
702ead2ceb0SNeil Horman 		return;
7033889a803SPaolo Abeni 
70407dc22e7SKoki Sanagi 	trace_consume_skb(skb);
705ead2ceb0SNeil Horman 	__kfree_skb(skb);
706ead2ceb0SNeil Horman }
707ead2ceb0SNeil Horman EXPORT_SYMBOL(consume_skb);
708ead2ceb0SNeil Horman 
7090a463c78SPaolo Abeni /**
7100a463c78SPaolo Abeni  *	consume_stateless_skb - free an skbuff, assuming it is stateless
7110a463c78SPaolo Abeni  *	@skb: buffer to free
7120a463c78SPaolo Abeni  *
713ca2c1418SPaolo Abeni  *	Alike consume_skb(), but this variant assumes that this is the last
714ca2c1418SPaolo Abeni  *	skb reference and all the head states have been already dropped
7150a463c78SPaolo Abeni  */
716ca2c1418SPaolo Abeni void __consume_stateless_skb(struct sk_buff *skb)
7170a463c78SPaolo Abeni {
7180a463c78SPaolo Abeni 	trace_consume_skb(skb);
7190a463c78SPaolo Abeni 	skb_release_data(skb);
7200a463c78SPaolo Abeni 	kfree_skbmem(skb);
7210a463c78SPaolo Abeni }
7220a463c78SPaolo Abeni 
723795bb1c0SJesper Dangaard Brouer void __kfree_skb_flush(void)
724795bb1c0SJesper Dangaard Brouer {
725795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
726795bb1c0SJesper Dangaard Brouer 
727795bb1c0SJesper Dangaard Brouer 	/* flush skb_cache if containing objects */
728795bb1c0SJesper Dangaard Brouer 	if (nc->skb_count) {
729795bb1c0SJesper Dangaard Brouer 		kmem_cache_free_bulk(skbuff_head_cache, nc->skb_count,
730795bb1c0SJesper Dangaard Brouer 				     nc->skb_cache);
731795bb1c0SJesper Dangaard Brouer 		nc->skb_count = 0;
732795bb1c0SJesper Dangaard Brouer 	}
733795bb1c0SJesper Dangaard Brouer }
734795bb1c0SJesper Dangaard Brouer 
73515fad714SJesper Dangaard Brouer static inline void _kfree_skb_defer(struct sk_buff *skb)
736795bb1c0SJesper Dangaard Brouer {
737795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
738795bb1c0SJesper Dangaard Brouer 
739795bb1c0SJesper Dangaard Brouer 	/* drop skb->head and call any destructors for packet */
740795bb1c0SJesper Dangaard Brouer 	skb_release_all(skb);
741795bb1c0SJesper Dangaard Brouer 
742795bb1c0SJesper Dangaard Brouer 	/* record skb to CPU local list */
743795bb1c0SJesper Dangaard Brouer 	nc->skb_cache[nc->skb_count++] = skb;
744795bb1c0SJesper Dangaard Brouer 
745795bb1c0SJesper Dangaard Brouer #ifdef CONFIG_SLUB
746795bb1c0SJesper Dangaard Brouer 	/* SLUB writes into objects when freeing */
747795bb1c0SJesper Dangaard Brouer 	prefetchw(skb);
748795bb1c0SJesper Dangaard Brouer #endif
749795bb1c0SJesper Dangaard Brouer 
750795bb1c0SJesper Dangaard Brouer 	/* flush skb_cache if it is filled */
751795bb1c0SJesper Dangaard Brouer 	if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
752795bb1c0SJesper Dangaard Brouer 		kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_SIZE,
753795bb1c0SJesper Dangaard Brouer 				     nc->skb_cache);
754795bb1c0SJesper Dangaard Brouer 		nc->skb_count = 0;
755795bb1c0SJesper Dangaard Brouer 	}
756795bb1c0SJesper Dangaard Brouer }
75715fad714SJesper Dangaard Brouer void __kfree_skb_defer(struct sk_buff *skb)
75815fad714SJesper Dangaard Brouer {
75915fad714SJesper Dangaard Brouer 	_kfree_skb_defer(skb);
76015fad714SJesper Dangaard Brouer }
761795bb1c0SJesper Dangaard Brouer 
762795bb1c0SJesper Dangaard Brouer void napi_consume_skb(struct sk_buff *skb, int budget)
763795bb1c0SJesper Dangaard Brouer {
764795bb1c0SJesper Dangaard Brouer 	if (unlikely(!skb))
765795bb1c0SJesper Dangaard Brouer 		return;
766795bb1c0SJesper Dangaard Brouer 
767885eb0a5SJesper Dangaard Brouer 	/* Zero budget indicate non-NAPI context called us, like netpoll */
768795bb1c0SJesper Dangaard Brouer 	if (unlikely(!budget)) {
769885eb0a5SJesper Dangaard Brouer 		dev_consume_skb_any(skb);
770795bb1c0SJesper Dangaard Brouer 		return;
771795bb1c0SJesper Dangaard Brouer 	}
772795bb1c0SJesper Dangaard Brouer 
7737608894eSPaolo Abeni 	if (!skb_unref(skb))
774795bb1c0SJesper Dangaard Brouer 		return;
7757608894eSPaolo Abeni 
776795bb1c0SJesper Dangaard Brouer 	/* if reaching here SKB is ready to free */
777795bb1c0SJesper Dangaard Brouer 	trace_consume_skb(skb);
778795bb1c0SJesper Dangaard Brouer 
779795bb1c0SJesper Dangaard Brouer 	/* if SKB is a clone, don't handle this case */
780abbdb5a7SEric Dumazet 	if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
781795bb1c0SJesper Dangaard Brouer 		__kfree_skb(skb);
782795bb1c0SJesper Dangaard Brouer 		return;
783795bb1c0SJesper Dangaard Brouer 	}
784795bb1c0SJesper Dangaard Brouer 
78515fad714SJesper Dangaard Brouer 	_kfree_skb_defer(skb);
786795bb1c0SJesper Dangaard Brouer }
787795bb1c0SJesper Dangaard Brouer EXPORT_SYMBOL(napi_consume_skb);
788795bb1c0SJesper Dangaard Brouer 
789b1937227SEric Dumazet /* Make sure a field is enclosed inside headers_start/headers_end section */
790b1937227SEric Dumazet #define CHECK_SKB_FIELD(field) \
791b1937227SEric Dumazet 	BUILD_BUG_ON(offsetof(struct sk_buff, field) <		\
792b1937227SEric Dumazet 		     offsetof(struct sk_buff, headers_start));	\
793b1937227SEric Dumazet 	BUILD_BUG_ON(offsetof(struct sk_buff, field) >		\
794b1937227SEric Dumazet 		     offsetof(struct sk_buff, headers_end));	\
795b1937227SEric Dumazet 
796dec18810SHerbert Xu static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
797dec18810SHerbert Xu {
798dec18810SHerbert Xu 	new->tstamp		= old->tstamp;
799b1937227SEric Dumazet 	/* We do not copy old->sk */
800dec18810SHerbert Xu 	new->dev		= old->dev;
801b1937227SEric Dumazet 	memcpy(new->cb, old->cb, sizeof(old->cb));
8027fee226aSEric Dumazet 	skb_dst_copy(new, old);
803def8b4faSAlexey Dobriyan #ifdef CONFIG_XFRM
804dec18810SHerbert Xu 	new->sp			= secpath_get(old->sp);
805dec18810SHerbert Xu #endif
806b1937227SEric Dumazet 	__nf_copy(new, old, false);
8076aa895b0SPatrick McHardy 
808b1937227SEric Dumazet 	/* Note : this field could be in headers_start/headers_end section
809b1937227SEric Dumazet 	 * It is not yet because we do not want to have a 16 bit hole
810b1937227SEric Dumazet 	 */
811b1937227SEric Dumazet 	new->queue_mapping = old->queue_mapping;
81206021292SEliezer Tamir 
813b1937227SEric Dumazet 	memcpy(&new->headers_start, &old->headers_start,
814b1937227SEric Dumazet 	       offsetof(struct sk_buff, headers_end) -
815b1937227SEric Dumazet 	       offsetof(struct sk_buff, headers_start));
816b1937227SEric Dumazet 	CHECK_SKB_FIELD(protocol);
817b1937227SEric Dumazet 	CHECK_SKB_FIELD(csum);
818b1937227SEric Dumazet 	CHECK_SKB_FIELD(hash);
819b1937227SEric Dumazet 	CHECK_SKB_FIELD(priority);
820b1937227SEric Dumazet 	CHECK_SKB_FIELD(skb_iif);
821b1937227SEric Dumazet 	CHECK_SKB_FIELD(vlan_proto);
822b1937227SEric Dumazet 	CHECK_SKB_FIELD(vlan_tci);
823b1937227SEric Dumazet 	CHECK_SKB_FIELD(transport_header);
824b1937227SEric Dumazet 	CHECK_SKB_FIELD(network_header);
825b1937227SEric Dumazet 	CHECK_SKB_FIELD(mac_header);
826b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_protocol);
827b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_transport_header);
828b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_network_header);
829b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_mac_header);
830b1937227SEric Dumazet 	CHECK_SKB_FIELD(mark);
831b1937227SEric Dumazet #ifdef CONFIG_NETWORK_SECMARK
832b1937227SEric Dumazet 	CHECK_SKB_FIELD(secmark);
833b1937227SEric Dumazet #endif
834e0d1095aSCong Wang #ifdef CONFIG_NET_RX_BUSY_POLL
835b1937227SEric Dumazet 	CHECK_SKB_FIELD(napi_id);
83606021292SEliezer Tamir #endif
8372bd82484SEric Dumazet #ifdef CONFIG_XPS
8382bd82484SEric Dumazet 	CHECK_SKB_FIELD(sender_cpu);
8392bd82484SEric Dumazet #endif
840b1937227SEric Dumazet #ifdef CONFIG_NET_SCHED
841b1937227SEric Dumazet 	CHECK_SKB_FIELD(tc_index);
842b1937227SEric Dumazet #endif
843b1937227SEric Dumazet 
844dec18810SHerbert Xu }
845dec18810SHerbert Xu 
84682c49a35SHerbert Xu /*
84782c49a35SHerbert Xu  * You should not add any new code to this function.  Add it to
84882c49a35SHerbert Xu  * __copy_skb_header above instead.
84982c49a35SHerbert Xu  */
850e0053ec0SHerbert Xu static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
8511da177e4SLinus Torvalds {
8521da177e4SLinus Torvalds #define C(x) n->x = skb->x
8531da177e4SLinus Torvalds 
8541da177e4SLinus Torvalds 	n->next = n->prev = NULL;
8551da177e4SLinus Torvalds 	n->sk = NULL;
856dec18810SHerbert Xu 	__copy_skb_header(n, skb);
857dec18810SHerbert Xu 
8581da177e4SLinus Torvalds 	C(len);
8591da177e4SLinus Torvalds 	C(data_len);
8603e6b3b2eSAlexey Dobriyan 	C(mac_len);
861334a8132SPatrick McHardy 	n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
86202f1c89dSPaul Moore 	n->cloned = 1;
8631da177e4SLinus Torvalds 	n->nohdr = 0;
8641da177e4SLinus Torvalds 	n->destructor = NULL;
8651da177e4SLinus Torvalds 	C(tail);
8661da177e4SLinus Torvalds 	C(end);
86702f1c89dSPaul Moore 	C(head);
868d3836f21SEric Dumazet 	C(head_frag);
86902f1c89dSPaul Moore 	C(data);
87002f1c89dSPaul Moore 	C(truesize);
87163354797SReshetova, Elena 	refcount_set(&n->users, 1);
8721da177e4SLinus Torvalds 
8731da177e4SLinus Torvalds 	atomic_inc(&(skb_shinfo(skb)->dataref));
8741da177e4SLinus Torvalds 	skb->cloned = 1;
8751da177e4SLinus Torvalds 
8761da177e4SLinus Torvalds 	return n;
877e0053ec0SHerbert Xu #undef C
878e0053ec0SHerbert Xu }
879e0053ec0SHerbert Xu 
880e0053ec0SHerbert Xu /**
881e0053ec0SHerbert Xu  *	skb_morph	-	morph one skb into another
882e0053ec0SHerbert Xu  *	@dst: the skb to receive the contents
883e0053ec0SHerbert Xu  *	@src: the skb to supply the contents
884e0053ec0SHerbert Xu  *
885e0053ec0SHerbert Xu  *	This is identical to skb_clone except that the target skb is
886e0053ec0SHerbert Xu  *	supplied by the user.
887e0053ec0SHerbert Xu  *
888e0053ec0SHerbert Xu  *	The target skb is returned upon exit.
889e0053ec0SHerbert Xu  */
890e0053ec0SHerbert Xu struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
891e0053ec0SHerbert Xu {
8922d4baff8SHerbert Xu 	skb_release_all(dst);
893e0053ec0SHerbert Xu 	return __skb_clone(dst, src);
894e0053ec0SHerbert Xu }
895e0053ec0SHerbert Xu EXPORT_SYMBOL_GPL(skb_morph);
896e0053ec0SHerbert Xu 
897a91dbff5SWillem de Bruijn static int mm_account_pinned_pages(struct mmpin *mmp, size_t size)
898a91dbff5SWillem de Bruijn {
899a91dbff5SWillem de Bruijn 	unsigned long max_pg, num_pg, new_pg, old_pg;
900a91dbff5SWillem de Bruijn 	struct user_struct *user;
901a91dbff5SWillem de Bruijn 
902a91dbff5SWillem de Bruijn 	if (capable(CAP_IPC_LOCK) || !size)
903a91dbff5SWillem de Bruijn 		return 0;
904a91dbff5SWillem de Bruijn 
905a91dbff5SWillem de Bruijn 	num_pg = (size >> PAGE_SHIFT) + 2;	/* worst case */
906a91dbff5SWillem de Bruijn 	max_pg = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
907a91dbff5SWillem de Bruijn 	user = mmp->user ? : current_user();
908a91dbff5SWillem de Bruijn 
909a91dbff5SWillem de Bruijn 	do {
910a91dbff5SWillem de Bruijn 		old_pg = atomic_long_read(&user->locked_vm);
911a91dbff5SWillem de Bruijn 		new_pg = old_pg + num_pg;
912a91dbff5SWillem de Bruijn 		if (new_pg > max_pg)
913a91dbff5SWillem de Bruijn 			return -ENOBUFS;
914a91dbff5SWillem de Bruijn 	} while (atomic_long_cmpxchg(&user->locked_vm, old_pg, new_pg) !=
915a91dbff5SWillem de Bruijn 		 old_pg);
916a91dbff5SWillem de Bruijn 
917a91dbff5SWillem de Bruijn 	if (!mmp->user) {
918a91dbff5SWillem de Bruijn 		mmp->user = get_uid(user);
919a91dbff5SWillem de Bruijn 		mmp->num_pg = num_pg;
920a91dbff5SWillem de Bruijn 	} else {
921a91dbff5SWillem de Bruijn 		mmp->num_pg += num_pg;
922a91dbff5SWillem de Bruijn 	}
923a91dbff5SWillem de Bruijn 
924a91dbff5SWillem de Bruijn 	return 0;
925a91dbff5SWillem de Bruijn }
926a91dbff5SWillem de Bruijn 
927a91dbff5SWillem de Bruijn static void mm_unaccount_pinned_pages(struct mmpin *mmp)
928a91dbff5SWillem de Bruijn {
929a91dbff5SWillem de Bruijn 	if (mmp->user) {
930a91dbff5SWillem de Bruijn 		atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm);
931a91dbff5SWillem de Bruijn 		free_uid(mmp->user);
932a91dbff5SWillem de Bruijn 	}
933a91dbff5SWillem de Bruijn }
934a91dbff5SWillem de Bruijn 
93552267790SWillem de Bruijn struct ubuf_info *sock_zerocopy_alloc(struct sock *sk, size_t size)
93652267790SWillem de Bruijn {
93752267790SWillem de Bruijn 	struct ubuf_info *uarg;
93852267790SWillem de Bruijn 	struct sk_buff *skb;
93952267790SWillem de Bruijn 
94052267790SWillem de Bruijn 	WARN_ON_ONCE(!in_task());
94152267790SWillem de Bruijn 
94276851d12SWillem de Bruijn 	if (!sock_flag(sk, SOCK_ZEROCOPY))
94376851d12SWillem de Bruijn 		return NULL;
94476851d12SWillem de Bruijn 
94552267790SWillem de Bruijn 	skb = sock_omalloc(sk, 0, GFP_KERNEL);
94652267790SWillem de Bruijn 	if (!skb)
94752267790SWillem de Bruijn 		return NULL;
94852267790SWillem de Bruijn 
94952267790SWillem de Bruijn 	BUILD_BUG_ON(sizeof(*uarg) > sizeof(skb->cb));
95052267790SWillem de Bruijn 	uarg = (void *)skb->cb;
951a91dbff5SWillem de Bruijn 	uarg->mmp.user = NULL;
952a91dbff5SWillem de Bruijn 
953a91dbff5SWillem de Bruijn 	if (mm_account_pinned_pages(&uarg->mmp, size)) {
954a91dbff5SWillem de Bruijn 		kfree_skb(skb);
955a91dbff5SWillem de Bruijn 		return NULL;
956a91dbff5SWillem de Bruijn 	}
95752267790SWillem de Bruijn 
95852267790SWillem de Bruijn 	uarg->callback = sock_zerocopy_callback;
9594ab6c99dSWillem de Bruijn 	uarg->id = ((u32)atomic_inc_return(&sk->sk_zckey)) - 1;
9604ab6c99dSWillem de Bruijn 	uarg->len = 1;
9614ab6c99dSWillem de Bruijn 	uarg->bytelen = size;
96252267790SWillem de Bruijn 	uarg->zerocopy = 1;
963c1d1b437SEric Dumazet 	refcount_set(&uarg->refcnt, 1);
96452267790SWillem de Bruijn 	sock_hold(sk);
96552267790SWillem de Bruijn 
96652267790SWillem de Bruijn 	return uarg;
96752267790SWillem de Bruijn }
96852267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_alloc);
96952267790SWillem de Bruijn 
97052267790SWillem de Bruijn static inline struct sk_buff *skb_from_uarg(struct ubuf_info *uarg)
97152267790SWillem de Bruijn {
97252267790SWillem de Bruijn 	return container_of((void *)uarg, struct sk_buff, cb);
97352267790SWillem de Bruijn }
97452267790SWillem de Bruijn 
9754ab6c99dSWillem de Bruijn struct ubuf_info *sock_zerocopy_realloc(struct sock *sk, size_t size,
9764ab6c99dSWillem de Bruijn 					struct ubuf_info *uarg)
9774ab6c99dSWillem de Bruijn {
9784ab6c99dSWillem de Bruijn 	if (uarg) {
9794ab6c99dSWillem de Bruijn 		const u32 byte_limit = 1 << 19;		/* limit to a few TSO */
9804ab6c99dSWillem de Bruijn 		u32 bytelen, next;
9814ab6c99dSWillem de Bruijn 
9824ab6c99dSWillem de Bruijn 		/* realloc only when socket is locked (TCP, UDP cork),
9834ab6c99dSWillem de Bruijn 		 * so uarg->len and sk_zckey access is serialized
9844ab6c99dSWillem de Bruijn 		 */
9854ab6c99dSWillem de Bruijn 		if (!sock_owned_by_user(sk)) {
9864ab6c99dSWillem de Bruijn 			WARN_ON_ONCE(1);
9874ab6c99dSWillem de Bruijn 			return NULL;
9884ab6c99dSWillem de Bruijn 		}
9894ab6c99dSWillem de Bruijn 
9904ab6c99dSWillem de Bruijn 		bytelen = uarg->bytelen + size;
9914ab6c99dSWillem de Bruijn 		if (uarg->len == USHRT_MAX - 1 || bytelen > byte_limit) {
9924ab6c99dSWillem de Bruijn 			/* TCP can create new skb to attach new uarg */
9934ab6c99dSWillem de Bruijn 			if (sk->sk_type == SOCK_STREAM)
9944ab6c99dSWillem de Bruijn 				goto new_alloc;
9954ab6c99dSWillem de Bruijn 			return NULL;
9964ab6c99dSWillem de Bruijn 		}
9974ab6c99dSWillem de Bruijn 
9984ab6c99dSWillem de Bruijn 		next = (u32)atomic_read(&sk->sk_zckey);
9994ab6c99dSWillem de Bruijn 		if ((u32)(uarg->id + uarg->len) == next) {
1000a91dbff5SWillem de Bruijn 			if (mm_account_pinned_pages(&uarg->mmp, size))
1001a91dbff5SWillem de Bruijn 				return NULL;
10024ab6c99dSWillem de Bruijn 			uarg->len++;
10034ab6c99dSWillem de Bruijn 			uarg->bytelen = bytelen;
10044ab6c99dSWillem de Bruijn 			atomic_set(&sk->sk_zckey, ++next);
1005db5bce32SEric Dumazet 			sock_zerocopy_get(uarg);
10064ab6c99dSWillem de Bruijn 			return uarg;
10074ab6c99dSWillem de Bruijn 		}
10084ab6c99dSWillem de Bruijn 	}
10094ab6c99dSWillem de Bruijn 
10104ab6c99dSWillem de Bruijn new_alloc:
10114ab6c99dSWillem de Bruijn 	return sock_zerocopy_alloc(sk, size);
10124ab6c99dSWillem de Bruijn }
10134ab6c99dSWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_realloc);
10144ab6c99dSWillem de Bruijn 
10154ab6c99dSWillem de Bruijn static bool skb_zerocopy_notify_extend(struct sk_buff *skb, u32 lo, u16 len)
10164ab6c99dSWillem de Bruijn {
10174ab6c99dSWillem de Bruijn 	struct sock_exterr_skb *serr = SKB_EXT_ERR(skb);
10184ab6c99dSWillem de Bruijn 	u32 old_lo, old_hi;
10194ab6c99dSWillem de Bruijn 	u64 sum_len;
10204ab6c99dSWillem de Bruijn 
10214ab6c99dSWillem de Bruijn 	old_lo = serr->ee.ee_info;
10224ab6c99dSWillem de Bruijn 	old_hi = serr->ee.ee_data;
10234ab6c99dSWillem de Bruijn 	sum_len = old_hi - old_lo + 1ULL + len;
10244ab6c99dSWillem de Bruijn 
10254ab6c99dSWillem de Bruijn 	if (sum_len >= (1ULL << 32))
10264ab6c99dSWillem de Bruijn 		return false;
10274ab6c99dSWillem de Bruijn 
10284ab6c99dSWillem de Bruijn 	if (lo != old_hi + 1)
10294ab6c99dSWillem de Bruijn 		return false;
10304ab6c99dSWillem de Bruijn 
10314ab6c99dSWillem de Bruijn 	serr->ee.ee_data += len;
10324ab6c99dSWillem de Bruijn 	return true;
10334ab6c99dSWillem de Bruijn }
10344ab6c99dSWillem de Bruijn 
103552267790SWillem de Bruijn void sock_zerocopy_callback(struct ubuf_info *uarg, bool success)
103652267790SWillem de Bruijn {
10374ab6c99dSWillem de Bruijn 	struct sk_buff *tail, *skb = skb_from_uarg(uarg);
103852267790SWillem de Bruijn 	struct sock_exterr_skb *serr;
103952267790SWillem de Bruijn 	struct sock *sk = skb->sk;
10404ab6c99dSWillem de Bruijn 	struct sk_buff_head *q;
10414ab6c99dSWillem de Bruijn 	unsigned long flags;
10424ab6c99dSWillem de Bruijn 	u32 lo, hi;
10434ab6c99dSWillem de Bruijn 	u16 len;
104452267790SWillem de Bruijn 
1045ccaffff1SWillem de Bruijn 	mm_unaccount_pinned_pages(&uarg->mmp);
1046ccaffff1SWillem de Bruijn 
10474ab6c99dSWillem de Bruijn 	/* if !len, there was only 1 call, and it was aborted
10484ab6c99dSWillem de Bruijn 	 * so do not queue a completion notification
10494ab6c99dSWillem de Bruijn 	 */
10504ab6c99dSWillem de Bruijn 	if (!uarg->len || sock_flag(sk, SOCK_DEAD))
105152267790SWillem de Bruijn 		goto release;
105252267790SWillem de Bruijn 
10534ab6c99dSWillem de Bruijn 	len = uarg->len;
10544ab6c99dSWillem de Bruijn 	lo = uarg->id;
10554ab6c99dSWillem de Bruijn 	hi = uarg->id + len - 1;
10564ab6c99dSWillem de Bruijn 
105752267790SWillem de Bruijn 	serr = SKB_EXT_ERR(skb);
105852267790SWillem de Bruijn 	memset(serr, 0, sizeof(*serr));
105952267790SWillem de Bruijn 	serr->ee.ee_errno = 0;
106052267790SWillem de Bruijn 	serr->ee.ee_origin = SO_EE_ORIGIN_ZEROCOPY;
10614ab6c99dSWillem de Bruijn 	serr->ee.ee_data = hi;
10624ab6c99dSWillem de Bruijn 	serr->ee.ee_info = lo;
106352267790SWillem de Bruijn 	if (!success)
106452267790SWillem de Bruijn 		serr->ee.ee_code |= SO_EE_CODE_ZEROCOPY_COPIED;
106552267790SWillem de Bruijn 
10664ab6c99dSWillem de Bruijn 	q = &sk->sk_error_queue;
10674ab6c99dSWillem de Bruijn 	spin_lock_irqsave(&q->lock, flags);
10684ab6c99dSWillem de Bruijn 	tail = skb_peek_tail(q);
10694ab6c99dSWillem de Bruijn 	if (!tail || SKB_EXT_ERR(tail)->ee.ee_origin != SO_EE_ORIGIN_ZEROCOPY ||
10704ab6c99dSWillem de Bruijn 	    !skb_zerocopy_notify_extend(tail, lo, len)) {
10714ab6c99dSWillem de Bruijn 		__skb_queue_tail(q, skb);
107252267790SWillem de Bruijn 		skb = NULL;
10734ab6c99dSWillem de Bruijn 	}
10744ab6c99dSWillem de Bruijn 	spin_unlock_irqrestore(&q->lock, flags);
107552267790SWillem de Bruijn 
107652267790SWillem de Bruijn 	sk->sk_error_report(sk);
107752267790SWillem de Bruijn 
107852267790SWillem de Bruijn release:
107952267790SWillem de Bruijn 	consume_skb(skb);
108052267790SWillem de Bruijn 	sock_put(sk);
108152267790SWillem de Bruijn }
108252267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_callback);
108352267790SWillem de Bruijn 
108452267790SWillem de Bruijn void sock_zerocopy_put(struct ubuf_info *uarg)
108552267790SWillem de Bruijn {
1086c1d1b437SEric Dumazet 	if (uarg && refcount_dec_and_test(&uarg->refcnt)) {
108752267790SWillem de Bruijn 		if (uarg->callback)
108852267790SWillem de Bruijn 			uarg->callback(uarg, uarg->zerocopy);
108952267790SWillem de Bruijn 		else
109052267790SWillem de Bruijn 			consume_skb(skb_from_uarg(uarg));
109152267790SWillem de Bruijn 	}
109252267790SWillem de Bruijn }
109352267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_put);
109452267790SWillem de Bruijn 
109552267790SWillem de Bruijn void sock_zerocopy_put_abort(struct ubuf_info *uarg)
109652267790SWillem de Bruijn {
109752267790SWillem de Bruijn 	if (uarg) {
109852267790SWillem de Bruijn 		struct sock *sk = skb_from_uarg(uarg)->sk;
109952267790SWillem de Bruijn 
110052267790SWillem de Bruijn 		atomic_dec(&sk->sk_zckey);
11014ab6c99dSWillem de Bruijn 		uarg->len--;
110252267790SWillem de Bruijn 
110352267790SWillem de Bruijn 		sock_zerocopy_put(uarg);
110452267790SWillem de Bruijn 	}
110552267790SWillem de Bruijn }
110652267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_put_abort);
110752267790SWillem de Bruijn 
110852267790SWillem de Bruijn extern int __zerocopy_sg_from_iter(struct sock *sk, struct sk_buff *skb,
110952267790SWillem de Bruijn 				   struct iov_iter *from, size_t length);
111052267790SWillem de Bruijn 
111152267790SWillem de Bruijn int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
111252267790SWillem de Bruijn 			     struct msghdr *msg, int len,
111352267790SWillem de Bruijn 			     struct ubuf_info *uarg)
111452267790SWillem de Bruijn {
11154ab6c99dSWillem de Bruijn 	struct ubuf_info *orig_uarg = skb_zcopy(skb);
111652267790SWillem de Bruijn 	struct iov_iter orig_iter = msg->msg_iter;
111752267790SWillem de Bruijn 	int err, orig_len = skb->len;
111852267790SWillem de Bruijn 
11194ab6c99dSWillem de Bruijn 	/* An skb can only point to one uarg. This edge case happens when
11204ab6c99dSWillem de Bruijn 	 * TCP appends to an skb, but zerocopy_realloc triggered a new alloc.
11214ab6c99dSWillem de Bruijn 	 */
11224ab6c99dSWillem de Bruijn 	if (orig_uarg && uarg != orig_uarg)
11234ab6c99dSWillem de Bruijn 		return -EEXIST;
11244ab6c99dSWillem de Bruijn 
112552267790SWillem de Bruijn 	err = __zerocopy_sg_from_iter(sk, skb, &msg->msg_iter, len);
112652267790SWillem de Bruijn 	if (err == -EFAULT || (err == -EMSGSIZE && skb->len == orig_len)) {
112752267790SWillem de Bruijn 		/* Streams do not free skb on error. Reset to prev state. */
112852267790SWillem de Bruijn 		msg->msg_iter = orig_iter;
112952267790SWillem de Bruijn 		___pskb_trim(skb, orig_len);
113052267790SWillem de Bruijn 		return err;
113152267790SWillem de Bruijn 	}
113252267790SWillem de Bruijn 
113352267790SWillem de Bruijn 	skb_zcopy_set(skb, uarg);
113452267790SWillem de Bruijn 	return skb->len - orig_len;
113552267790SWillem de Bruijn }
113652267790SWillem de Bruijn EXPORT_SYMBOL_GPL(skb_zerocopy_iter_stream);
113752267790SWillem de Bruijn 
11381f8b977aSWillem de Bruijn static int skb_zerocopy_clone(struct sk_buff *nskb, struct sk_buff *orig,
113952267790SWillem de Bruijn 			      gfp_t gfp_mask)
114052267790SWillem de Bruijn {
114152267790SWillem de Bruijn 	if (skb_zcopy(orig)) {
114252267790SWillem de Bruijn 		if (skb_zcopy(nskb)) {
114352267790SWillem de Bruijn 			/* !gfp_mask callers are verified to !skb_zcopy(nskb) */
114452267790SWillem de Bruijn 			if (!gfp_mask) {
114552267790SWillem de Bruijn 				WARN_ON_ONCE(1);
114652267790SWillem de Bruijn 				return -ENOMEM;
114752267790SWillem de Bruijn 			}
114852267790SWillem de Bruijn 			if (skb_uarg(nskb) == skb_uarg(orig))
114952267790SWillem de Bruijn 				return 0;
115052267790SWillem de Bruijn 			if (skb_copy_ubufs(nskb, GFP_ATOMIC))
115152267790SWillem de Bruijn 				return -EIO;
115252267790SWillem de Bruijn 		}
115352267790SWillem de Bruijn 		skb_zcopy_set(nskb, skb_uarg(orig));
115452267790SWillem de Bruijn 	}
115552267790SWillem de Bruijn 	return 0;
115652267790SWillem de Bruijn }
115752267790SWillem de Bruijn 
11582c53040fSBen Hutchings /**
11592c53040fSBen Hutchings  *	skb_copy_ubufs	-	copy userspace skb frags buffers to kernel
116048c83012SMichael S. Tsirkin  *	@skb: the skb to modify
116148c83012SMichael S. Tsirkin  *	@gfp_mask: allocation priority
116248c83012SMichael S. Tsirkin  *
116348c83012SMichael S. Tsirkin  *	This must be called on SKBTX_DEV_ZEROCOPY skb.
116448c83012SMichael S. Tsirkin  *	It will copy all frags into kernel and drop the reference
116548c83012SMichael S. Tsirkin  *	to userspace pages.
116648c83012SMichael S. Tsirkin  *
116748c83012SMichael S. Tsirkin  *	If this function is called from an interrupt gfp_mask() must be
116848c83012SMichael S. Tsirkin  *	%GFP_ATOMIC.
116948c83012SMichael S. Tsirkin  *
117048c83012SMichael S. Tsirkin  *	Returns 0 on success or a negative error code on failure
117148c83012SMichael S. Tsirkin  *	to allocate kernel memory to copy to.
117248c83012SMichael S. Tsirkin  */
117348c83012SMichael S. Tsirkin int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
1174a6686f2fSShirley Ma {
1175a6686f2fSShirley Ma 	int num_frags = skb_shinfo(skb)->nr_frags;
1176a6686f2fSShirley Ma 	struct page *page, *head = NULL;
11773ece7826SWillem de Bruijn 	int i, new_frags;
11783ece7826SWillem de Bruijn 	u32 d_off;
1179a6686f2fSShirley Ma 
11803ece7826SWillem de Bruijn 	if (!num_frags)
11813ece7826SWillem de Bruijn 		return 0;
1182a6686f2fSShirley Ma 
11833ece7826SWillem de Bruijn 	if (skb_shared(skb) || skb_unclone(skb, gfp_mask))
11843ece7826SWillem de Bruijn 		return -EINVAL;
11853ece7826SWillem de Bruijn 
11863ece7826SWillem de Bruijn 	new_frags = (__skb_pagelen(skb) + PAGE_SIZE - 1) >> PAGE_SHIFT;
11873ece7826SWillem de Bruijn 	for (i = 0; i < new_frags; i++) {
118802756ed4SKrishna Kumar 		page = alloc_page(gfp_mask);
1189a6686f2fSShirley Ma 		if (!page) {
1190a6686f2fSShirley Ma 			while (head) {
119140dadff2SSunghan Suh 				struct page *next = (struct page *)page_private(head);
1192a6686f2fSShirley Ma 				put_page(head);
1193a6686f2fSShirley Ma 				head = next;
1194a6686f2fSShirley Ma 			}
1195a6686f2fSShirley Ma 			return -ENOMEM;
1196a6686f2fSShirley Ma 		}
11973ece7826SWillem de Bruijn 		set_page_private(page, (unsigned long)head);
11983ece7826SWillem de Bruijn 		head = page;
11993ece7826SWillem de Bruijn 	}
12003ece7826SWillem de Bruijn 
12013ece7826SWillem de Bruijn 	page = head;
12023ece7826SWillem de Bruijn 	d_off = 0;
12033ece7826SWillem de Bruijn 	for (i = 0; i < num_frags; i++) {
12043ece7826SWillem de Bruijn 		skb_frag_t *f = &skb_shinfo(skb)->frags[i];
12053ece7826SWillem de Bruijn 		u32 p_off, p_len, copied;
12063ece7826SWillem de Bruijn 		struct page *p;
12073ece7826SWillem de Bruijn 		u8 *vaddr;
1208c613c209SWillem de Bruijn 
1209c613c209SWillem de Bruijn 		skb_frag_foreach_page(f, f->page_offset, skb_frag_size(f),
1210c613c209SWillem de Bruijn 				      p, p_off, p_len, copied) {
12113ece7826SWillem de Bruijn 			u32 copy, done = 0;
1212c613c209SWillem de Bruijn 			vaddr = kmap_atomic(p);
12133ece7826SWillem de Bruijn 
12143ece7826SWillem de Bruijn 			while (done < p_len) {
12153ece7826SWillem de Bruijn 				if (d_off == PAGE_SIZE) {
12163ece7826SWillem de Bruijn 					d_off = 0;
12173ece7826SWillem de Bruijn 					page = (struct page *)page_private(page);
12183ece7826SWillem de Bruijn 				}
12193ece7826SWillem de Bruijn 				copy = min_t(u32, PAGE_SIZE - d_off, p_len - done);
12203ece7826SWillem de Bruijn 				memcpy(page_address(page) + d_off,
12213ece7826SWillem de Bruijn 				       vaddr + p_off + done, copy);
12223ece7826SWillem de Bruijn 				done += copy;
12233ece7826SWillem de Bruijn 				d_off += copy;
12243ece7826SWillem de Bruijn 			}
122551c56b00SEric Dumazet 			kunmap_atomic(vaddr);
1226c613c209SWillem de Bruijn 		}
1227a6686f2fSShirley Ma 	}
1228a6686f2fSShirley Ma 
1229a6686f2fSShirley Ma 	/* skb frags release userspace buffers */
123002756ed4SKrishna Kumar 	for (i = 0; i < num_frags; i++)
1231a8605c60SIan Campbell 		skb_frag_unref(skb, i);
1232a6686f2fSShirley Ma 
1233a6686f2fSShirley Ma 	/* skb frags point to kernel buffers */
12343ece7826SWillem de Bruijn 	for (i = 0; i < new_frags - 1; i++) {
12353ece7826SWillem de Bruijn 		__skb_fill_page_desc(skb, i, head, 0, PAGE_SIZE);
123640dadff2SSunghan Suh 		head = (struct page *)page_private(head);
1237a6686f2fSShirley Ma 	}
12383ece7826SWillem de Bruijn 	__skb_fill_page_desc(skb, new_frags - 1, head, 0, d_off);
12393ece7826SWillem de Bruijn 	skb_shinfo(skb)->nr_frags = new_frags;
124048c83012SMichael S. Tsirkin 
12411f8b977aSWillem de Bruijn 	skb_zcopy_clear(skb, false);
1242a6686f2fSShirley Ma 	return 0;
1243a6686f2fSShirley Ma }
1244dcc0fb78SMichael S. Tsirkin EXPORT_SYMBOL_GPL(skb_copy_ubufs);
1245a6686f2fSShirley Ma 
1246e0053ec0SHerbert Xu /**
1247e0053ec0SHerbert Xu  *	skb_clone	-	duplicate an sk_buff
1248e0053ec0SHerbert Xu  *	@skb: buffer to clone
1249e0053ec0SHerbert Xu  *	@gfp_mask: allocation priority
1250e0053ec0SHerbert Xu  *
1251e0053ec0SHerbert Xu  *	Duplicate an &sk_buff. The new one is not owned by a socket. Both
1252e0053ec0SHerbert Xu  *	copies share the same packet data but not structure. The new
1253e0053ec0SHerbert Xu  *	buffer has a reference count of 1. If the allocation fails the
1254e0053ec0SHerbert Xu  *	function returns %NULL otherwise the new buffer is returned.
1255e0053ec0SHerbert Xu  *
1256e0053ec0SHerbert Xu  *	If this function is called from an interrupt gfp_mask() must be
1257e0053ec0SHerbert Xu  *	%GFP_ATOMIC.
1258e0053ec0SHerbert Xu  */
1259e0053ec0SHerbert Xu 
1260e0053ec0SHerbert Xu struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1261e0053ec0SHerbert Xu {
1262d0bf4a9eSEric Dumazet 	struct sk_buff_fclones *fclones = container_of(skb,
1263d0bf4a9eSEric Dumazet 						       struct sk_buff_fclones,
1264d0bf4a9eSEric Dumazet 						       skb1);
12656ffe75ebSEric Dumazet 	struct sk_buff *n;
1266e0053ec0SHerbert Xu 
126770008aa5SMichael S. Tsirkin 	if (skb_orphan_frags(skb, gfp_mask))
1268a6686f2fSShirley Ma 		return NULL;
1269a6686f2fSShirley Ma 
1270e0053ec0SHerbert Xu 	if (skb->fclone == SKB_FCLONE_ORIG &&
12712638595aSReshetova, Elena 	    refcount_read(&fclones->fclone_ref) == 1) {
12726ffe75ebSEric Dumazet 		n = &fclones->skb2;
12732638595aSReshetova, Elena 		refcount_set(&fclones->fclone_ref, 2);
1274e0053ec0SHerbert Xu 	} else {
1275c93bdd0eSMel Gorman 		if (skb_pfmemalloc(skb))
1276c93bdd0eSMel Gorman 			gfp_mask |= __GFP_MEMALLOC;
1277c93bdd0eSMel Gorman 
1278e0053ec0SHerbert Xu 		n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1279e0053ec0SHerbert Xu 		if (!n)
1280e0053ec0SHerbert Xu 			return NULL;
1281fe55f6d5SVegard Nossum 
1282fe55f6d5SVegard Nossum 		kmemcheck_annotate_bitfield(n, flags1);
1283e0053ec0SHerbert Xu 		n->fclone = SKB_FCLONE_UNAVAILABLE;
1284e0053ec0SHerbert Xu 	}
1285e0053ec0SHerbert Xu 
1286e0053ec0SHerbert Xu 	return __skb_clone(n, skb);
12871da177e4SLinus Torvalds }
1288b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_clone);
12891da177e4SLinus Torvalds 
1290f5b17294SPravin B Shelar static void skb_headers_offset_update(struct sk_buff *skb, int off)
1291f5b17294SPravin B Shelar {
1292030737bcSEric Dumazet 	/* Only adjust this if it actually is csum_start rather than csum */
1293030737bcSEric Dumazet 	if (skb->ip_summed == CHECKSUM_PARTIAL)
1294030737bcSEric Dumazet 		skb->csum_start += off;
1295f5b17294SPravin B Shelar 	/* {transport,network,mac}_header and tail are relative to skb->head */
1296f5b17294SPravin B Shelar 	skb->transport_header += off;
1297f5b17294SPravin B Shelar 	skb->network_header   += off;
1298f5b17294SPravin B Shelar 	if (skb_mac_header_was_set(skb))
1299f5b17294SPravin B Shelar 		skb->mac_header += off;
1300f5b17294SPravin B Shelar 	skb->inner_transport_header += off;
1301f5b17294SPravin B Shelar 	skb->inner_network_header += off;
1302aefbd2b3SPravin B Shelar 	skb->inner_mac_header += off;
1303f5b17294SPravin B Shelar }
1304f5b17294SPravin B Shelar 
13051da177e4SLinus Torvalds static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
13061da177e4SLinus Torvalds {
1307dec18810SHerbert Xu 	__copy_skb_header(new, old);
1308dec18810SHerbert Xu 
13097967168cSHerbert Xu 	skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
13107967168cSHerbert Xu 	skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
13117967168cSHerbert Xu 	skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
13121da177e4SLinus Torvalds }
13131da177e4SLinus Torvalds 
1314c93bdd0eSMel Gorman static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1315c93bdd0eSMel Gorman {
1316c93bdd0eSMel Gorman 	if (skb_pfmemalloc(skb))
1317c93bdd0eSMel Gorman 		return SKB_ALLOC_RX;
1318c93bdd0eSMel Gorman 	return 0;
1319c93bdd0eSMel Gorman }
1320c93bdd0eSMel Gorman 
13211da177e4SLinus Torvalds /**
13221da177e4SLinus Torvalds  *	skb_copy	-	create private copy of an sk_buff
13231da177e4SLinus Torvalds  *	@skb: buffer to copy
13241da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
13251da177e4SLinus Torvalds  *
13261da177e4SLinus Torvalds  *	Make a copy of both an &sk_buff and its data. This is used when the
13271da177e4SLinus Torvalds  *	caller wishes to modify the data and needs a private copy of the
13281da177e4SLinus Torvalds  *	data to alter. Returns %NULL on failure or the pointer to the buffer
13291da177e4SLinus Torvalds  *	on success. The returned buffer has a reference count of 1.
13301da177e4SLinus Torvalds  *
13311da177e4SLinus Torvalds  *	As by-product this function converts non-linear &sk_buff to linear
13321da177e4SLinus Torvalds  *	one, so that &sk_buff becomes completely private and caller is allowed
13331da177e4SLinus Torvalds  *	to modify all the data of returned buffer. This means that this
13341da177e4SLinus Torvalds  *	function is not recommended for use in circumstances when only
13351da177e4SLinus Torvalds  *	header is going to be modified. Use pskb_copy() instead.
13361da177e4SLinus Torvalds  */
13371da177e4SLinus Torvalds 
1338dd0fc66fSAl Viro struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
13391da177e4SLinus Torvalds {
13406602cebbSEric Dumazet 	int headerlen = skb_headroom(skb);
1341ec47ea82SAlexander Duyck 	unsigned int size = skb_end_offset(skb) + skb->data_len;
1342c93bdd0eSMel Gorman 	struct sk_buff *n = __alloc_skb(size, gfp_mask,
1343c93bdd0eSMel Gorman 					skb_alloc_rx_flag(skb), NUMA_NO_NODE);
13446602cebbSEric Dumazet 
13451da177e4SLinus Torvalds 	if (!n)
13461da177e4SLinus Torvalds 		return NULL;
13471da177e4SLinus Torvalds 
13481da177e4SLinus Torvalds 	/* Set the data pointer */
13491da177e4SLinus Torvalds 	skb_reserve(n, headerlen);
13501da177e4SLinus Torvalds 	/* Set the tail pointer and length */
13511da177e4SLinus Torvalds 	skb_put(n, skb->len);
13521da177e4SLinus Torvalds 
13531da177e4SLinus Torvalds 	if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
13541da177e4SLinus Torvalds 		BUG();
13551da177e4SLinus Torvalds 
13561da177e4SLinus Torvalds 	copy_skb_header(n, skb);
13571da177e4SLinus Torvalds 	return n;
13581da177e4SLinus Torvalds }
1359b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy);
13601da177e4SLinus Torvalds 
13611da177e4SLinus Torvalds /**
1362bad93e9dSOctavian Purdila  *	__pskb_copy_fclone	-  create copy of an sk_buff with private head.
13631da177e4SLinus Torvalds  *	@skb: buffer to copy
1364117632e6SEric Dumazet  *	@headroom: headroom of new skb
13651da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
1366bad93e9dSOctavian Purdila  *	@fclone: if true allocate the copy of the skb from the fclone
1367bad93e9dSOctavian Purdila  *	cache instead of the head cache; it is recommended to set this
1368bad93e9dSOctavian Purdila  *	to true for the cases where the copy will likely be cloned
13691da177e4SLinus Torvalds  *
13701da177e4SLinus Torvalds  *	Make a copy of both an &sk_buff and part of its data, located
13711da177e4SLinus Torvalds  *	in header. Fragmented data remain shared. This is used when
13721da177e4SLinus Torvalds  *	the caller wishes to modify only header of &sk_buff and needs
13731da177e4SLinus Torvalds  *	private copy of the header to alter. Returns %NULL on failure
13741da177e4SLinus Torvalds  *	or the pointer to the buffer on success.
13751da177e4SLinus Torvalds  *	The returned buffer has a reference count of 1.
13761da177e4SLinus Torvalds  */
13771da177e4SLinus Torvalds 
1378bad93e9dSOctavian Purdila struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1379bad93e9dSOctavian Purdila 				   gfp_t gfp_mask, bool fclone)
13801da177e4SLinus Torvalds {
1381117632e6SEric Dumazet 	unsigned int size = skb_headlen(skb) + headroom;
1382bad93e9dSOctavian Purdila 	int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1383bad93e9dSOctavian Purdila 	struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
13846602cebbSEric Dumazet 
13851da177e4SLinus Torvalds 	if (!n)
13861da177e4SLinus Torvalds 		goto out;
13871da177e4SLinus Torvalds 
13881da177e4SLinus Torvalds 	/* Set the data pointer */
1389117632e6SEric Dumazet 	skb_reserve(n, headroom);
13901da177e4SLinus Torvalds 	/* Set the tail pointer and length */
13911da177e4SLinus Torvalds 	skb_put(n, skb_headlen(skb));
13921da177e4SLinus Torvalds 	/* Copy the bytes */
1393d626f62bSArnaldo Carvalho de Melo 	skb_copy_from_linear_data(skb, n->data, n->len);
13941da177e4SLinus Torvalds 
139525f484a6SHerbert Xu 	n->truesize += skb->data_len;
13961da177e4SLinus Torvalds 	n->data_len  = skb->data_len;
13971da177e4SLinus Torvalds 	n->len	     = skb->len;
13981da177e4SLinus Torvalds 
13991da177e4SLinus Torvalds 	if (skb_shinfo(skb)->nr_frags) {
14001da177e4SLinus Torvalds 		int i;
14011da177e4SLinus Torvalds 
14021f8b977aSWillem de Bruijn 		if (skb_orphan_frags(skb, gfp_mask) ||
14031f8b977aSWillem de Bruijn 		    skb_zerocopy_clone(n, skb, gfp_mask)) {
14041511022cSDan Carpenter 			kfree_skb(n);
14051511022cSDan Carpenter 			n = NULL;
1406a6686f2fSShirley Ma 			goto out;
1407a6686f2fSShirley Ma 		}
14081da177e4SLinus Torvalds 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
14091da177e4SLinus Torvalds 			skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
1410ea2ab693SIan Campbell 			skb_frag_ref(skb, i);
14111da177e4SLinus Torvalds 		}
14121da177e4SLinus Torvalds 		skb_shinfo(n)->nr_frags = i;
14131da177e4SLinus Torvalds 	}
14141da177e4SLinus Torvalds 
141521dc3301SDavid S. Miller 	if (skb_has_frag_list(skb)) {
14161da177e4SLinus Torvalds 		skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
14171da177e4SLinus Torvalds 		skb_clone_fraglist(n);
14181da177e4SLinus Torvalds 	}
14191da177e4SLinus Torvalds 
14201da177e4SLinus Torvalds 	copy_skb_header(n, skb);
14211da177e4SLinus Torvalds out:
14221da177e4SLinus Torvalds 	return n;
14231da177e4SLinus Torvalds }
1424bad93e9dSOctavian Purdila EXPORT_SYMBOL(__pskb_copy_fclone);
14251da177e4SLinus Torvalds 
14261da177e4SLinus Torvalds /**
14271da177e4SLinus Torvalds  *	pskb_expand_head - reallocate header of &sk_buff
14281da177e4SLinus Torvalds  *	@skb: buffer to reallocate
14291da177e4SLinus Torvalds  *	@nhead: room to add at head
14301da177e4SLinus Torvalds  *	@ntail: room to add at tail
14311da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
14321da177e4SLinus Torvalds  *
1433bc32383cSMathias Krause  *	Expands (or creates identical copy, if @nhead and @ntail are zero)
1434bc32383cSMathias Krause  *	header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
14351da177e4SLinus Torvalds  *	reference count of 1. Returns zero in the case of success or error,
14361da177e4SLinus Torvalds  *	if expansion failed. In the last case, &sk_buff is not changed.
14371da177e4SLinus Torvalds  *
14381da177e4SLinus Torvalds  *	All the pointers pointing into skb header may change and must be
14391da177e4SLinus Torvalds  *	reloaded after call to this function.
14401da177e4SLinus Torvalds  */
14411da177e4SLinus Torvalds 
144286a76cafSVictor Fusco int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
1443dd0fc66fSAl Viro 		     gfp_t gfp_mask)
14441da177e4SLinus Torvalds {
1445158f323bSEric Dumazet 	int i, osize = skb_end_offset(skb);
1446158f323bSEric Dumazet 	int size = osize + nhead + ntail;
14471da177e4SLinus Torvalds 	long off;
1448158f323bSEric Dumazet 	u8 *data;
14491da177e4SLinus Torvalds 
14504edd87adSHerbert Xu 	BUG_ON(nhead < 0);
14514edd87adSHerbert Xu 
14521da177e4SLinus Torvalds 	if (skb_shared(skb))
14531da177e4SLinus Torvalds 		BUG();
14541da177e4SLinus Torvalds 
14551da177e4SLinus Torvalds 	size = SKB_DATA_ALIGN(size);
14561da177e4SLinus Torvalds 
1457c93bdd0eSMel Gorman 	if (skb_pfmemalloc(skb))
1458c93bdd0eSMel Gorman 		gfp_mask |= __GFP_MEMALLOC;
1459c93bdd0eSMel Gorman 	data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1460c93bdd0eSMel Gorman 			       gfp_mask, NUMA_NO_NODE, NULL);
14611da177e4SLinus Torvalds 	if (!data)
14621da177e4SLinus Torvalds 		goto nodata;
146387151b86SEric Dumazet 	size = SKB_WITH_OVERHEAD(ksize(data));
14641da177e4SLinus Torvalds 
14651da177e4SLinus Torvalds 	/* Copy only real data... and, alas, header. This should be
14666602cebbSEric Dumazet 	 * optimized for the cases when header is void.
14676602cebbSEric Dumazet 	 */
14686602cebbSEric Dumazet 	memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
14696602cebbSEric Dumazet 
14706602cebbSEric Dumazet 	memcpy((struct skb_shared_info *)(data + size),
14716602cebbSEric Dumazet 	       skb_shinfo(skb),
1472fed66381SEric Dumazet 	       offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
14731da177e4SLinus Torvalds 
14743e24591aSAlexander Duyck 	/*
14753e24591aSAlexander Duyck 	 * if shinfo is shared we must drop the old head gracefully, but if it
14763e24591aSAlexander Duyck 	 * is not we can just drop the old head and let the existing refcount
14773e24591aSAlexander Duyck 	 * be since all we did is relocate the values
14783e24591aSAlexander Duyck 	 */
14793e24591aSAlexander Duyck 	if (skb_cloned(skb)) {
148070008aa5SMichael S. Tsirkin 		if (skb_orphan_frags(skb, gfp_mask))
1481a6686f2fSShirley Ma 			goto nofrags;
14821f8b977aSWillem de Bruijn 		if (skb_zcopy(skb))
1483c1d1b437SEric Dumazet 			refcount_inc(&skb_uarg(skb)->refcnt);
14841da177e4SLinus Torvalds 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1485ea2ab693SIan Campbell 			skb_frag_ref(skb, i);
14861da177e4SLinus Torvalds 
148721dc3301SDavid S. Miller 		if (skb_has_frag_list(skb))
14881da177e4SLinus Torvalds 			skb_clone_fraglist(skb);
14891da177e4SLinus Torvalds 
14901da177e4SLinus Torvalds 		skb_release_data(skb);
14913e24591aSAlexander Duyck 	} else {
14923e24591aSAlexander Duyck 		skb_free_head(skb);
14931fd63041SEric Dumazet 	}
14941da177e4SLinus Torvalds 	off = (data + nhead) - skb->head;
14951da177e4SLinus Torvalds 
14961da177e4SLinus Torvalds 	skb->head     = data;
1497d3836f21SEric Dumazet 	skb->head_frag = 0;
14981da177e4SLinus Torvalds 	skb->data    += off;
14994305b541SArnaldo Carvalho de Melo #ifdef NET_SKBUFF_DATA_USES_OFFSET
15004305b541SArnaldo Carvalho de Melo 	skb->end      = size;
150156eb8882SPatrick McHardy 	off           = nhead;
15024305b541SArnaldo Carvalho de Melo #else
15034305b541SArnaldo Carvalho de Melo 	skb->end      = skb->head + size;
150456eb8882SPatrick McHardy #endif
150527a884dcSArnaldo Carvalho de Melo 	skb->tail	      += off;
1506b41abb42SPeter Pan(潘卫平) 	skb_headers_offset_update(skb, nhead);
15071da177e4SLinus Torvalds 	skb->cloned   = 0;
1508334a8132SPatrick McHardy 	skb->hdr_len  = 0;
15091da177e4SLinus Torvalds 	skb->nohdr    = 0;
15101da177e4SLinus Torvalds 	atomic_set(&skb_shinfo(skb)->dataref, 1);
1511158f323bSEric Dumazet 
1512de8f3a83SDaniel Borkmann 	skb_metadata_clear(skb);
1513de8f3a83SDaniel Borkmann 
1514158f323bSEric Dumazet 	/* It is not generally safe to change skb->truesize.
1515158f323bSEric Dumazet 	 * For the moment, we really care of rx path, or
1516158f323bSEric Dumazet 	 * when skb is orphaned (not attached to a socket).
1517158f323bSEric Dumazet 	 */
1518158f323bSEric Dumazet 	if (!skb->sk || skb->destructor == sock_edemux)
1519158f323bSEric Dumazet 		skb->truesize += size - osize;
1520158f323bSEric Dumazet 
15211da177e4SLinus Torvalds 	return 0;
15221da177e4SLinus Torvalds 
1523a6686f2fSShirley Ma nofrags:
1524a6686f2fSShirley Ma 	kfree(data);
15251da177e4SLinus Torvalds nodata:
15261da177e4SLinus Torvalds 	return -ENOMEM;
15271da177e4SLinus Torvalds }
1528b4ac530fSDavid S. Miller EXPORT_SYMBOL(pskb_expand_head);
15291da177e4SLinus Torvalds 
15301da177e4SLinus Torvalds /* Make private copy of skb with writable head and some headroom */
15311da177e4SLinus Torvalds 
15321da177e4SLinus Torvalds struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
15331da177e4SLinus Torvalds {
15341da177e4SLinus Torvalds 	struct sk_buff *skb2;
15351da177e4SLinus Torvalds 	int delta = headroom - skb_headroom(skb);
15361da177e4SLinus Torvalds 
15371da177e4SLinus Torvalds 	if (delta <= 0)
15381da177e4SLinus Torvalds 		skb2 = pskb_copy(skb, GFP_ATOMIC);
15391da177e4SLinus Torvalds 	else {
15401da177e4SLinus Torvalds 		skb2 = skb_clone(skb, GFP_ATOMIC);
15411da177e4SLinus Torvalds 		if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
15421da177e4SLinus Torvalds 					     GFP_ATOMIC)) {
15431da177e4SLinus Torvalds 			kfree_skb(skb2);
15441da177e4SLinus Torvalds 			skb2 = NULL;
15451da177e4SLinus Torvalds 		}
15461da177e4SLinus Torvalds 	}
15471da177e4SLinus Torvalds 	return skb2;
15481da177e4SLinus Torvalds }
1549b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_realloc_headroom);
15501da177e4SLinus Torvalds 
15511da177e4SLinus Torvalds /**
15521da177e4SLinus Torvalds  *	skb_copy_expand	-	copy and expand sk_buff
15531da177e4SLinus Torvalds  *	@skb: buffer to copy
15541da177e4SLinus Torvalds  *	@newheadroom: new free bytes at head
15551da177e4SLinus Torvalds  *	@newtailroom: new free bytes at tail
15561da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
15571da177e4SLinus Torvalds  *
15581da177e4SLinus Torvalds  *	Make a copy of both an &sk_buff and its data and while doing so
15591da177e4SLinus Torvalds  *	allocate additional space.
15601da177e4SLinus Torvalds  *
15611da177e4SLinus Torvalds  *	This is used when the caller wishes to modify the data and needs a
15621da177e4SLinus Torvalds  *	private copy of the data to alter as well as more space for new fields.
15631da177e4SLinus Torvalds  *	Returns %NULL on failure or the pointer to the buffer
15641da177e4SLinus Torvalds  *	on success. The returned buffer has a reference count of 1.
15651da177e4SLinus Torvalds  *
15661da177e4SLinus Torvalds  *	You must pass %GFP_ATOMIC as the allocation priority if this function
15671da177e4SLinus Torvalds  *	is called from an interrupt.
15681da177e4SLinus Torvalds  */
15691da177e4SLinus Torvalds struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
157086a76cafSVictor Fusco 				int newheadroom, int newtailroom,
1571dd0fc66fSAl Viro 				gfp_t gfp_mask)
15721da177e4SLinus Torvalds {
15731da177e4SLinus Torvalds 	/*
15741da177e4SLinus Torvalds 	 *	Allocate the copy buffer
15751da177e4SLinus Torvalds 	 */
1576c93bdd0eSMel Gorman 	struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1577c93bdd0eSMel Gorman 					gfp_mask, skb_alloc_rx_flag(skb),
1578c93bdd0eSMel Gorman 					NUMA_NO_NODE);
1579efd1e8d5SPatrick McHardy 	int oldheadroom = skb_headroom(skb);
15801da177e4SLinus Torvalds 	int head_copy_len, head_copy_off;
15811da177e4SLinus Torvalds 
15821da177e4SLinus Torvalds 	if (!n)
15831da177e4SLinus Torvalds 		return NULL;
15841da177e4SLinus Torvalds 
15851da177e4SLinus Torvalds 	skb_reserve(n, newheadroom);
15861da177e4SLinus Torvalds 
15871da177e4SLinus Torvalds 	/* Set the tail pointer and length */
15881da177e4SLinus Torvalds 	skb_put(n, skb->len);
15891da177e4SLinus Torvalds 
1590efd1e8d5SPatrick McHardy 	head_copy_len = oldheadroom;
15911da177e4SLinus Torvalds 	head_copy_off = 0;
15921da177e4SLinus Torvalds 	if (newheadroom <= head_copy_len)
15931da177e4SLinus Torvalds 		head_copy_len = newheadroom;
15941da177e4SLinus Torvalds 	else
15951da177e4SLinus Torvalds 		head_copy_off = newheadroom - head_copy_len;
15961da177e4SLinus Torvalds 
15971da177e4SLinus Torvalds 	/* Copy the linear header and data. */
15981da177e4SLinus Torvalds 	if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
15991da177e4SLinus Torvalds 			  skb->len + head_copy_len))
16001da177e4SLinus Torvalds 		BUG();
16011da177e4SLinus Torvalds 
16021da177e4SLinus Torvalds 	copy_skb_header(n, skb);
16031da177e4SLinus Torvalds 
1604030737bcSEric Dumazet 	skb_headers_offset_update(n, newheadroom - oldheadroom);
1605efd1e8d5SPatrick McHardy 
16061da177e4SLinus Torvalds 	return n;
16071da177e4SLinus Torvalds }
1608b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_expand);
16091da177e4SLinus Torvalds 
16101da177e4SLinus Torvalds /**
1611cd0a137aSFlorian Fainelli  *	__skb_pad		-	zero pad the tail of an skb
16121da177e4SLinus Torvalds  *	@skb: buffer to pad
16131da177e4SLinus Torvalds  *	@pad: space to pad
1614cd0a137aSFlorian Fainelli  *	@free_on_error: free buffer on error
16151da177e4SLinus Torvalds  *
16161da177e4SLinus Torvalds  *	Ensure that a buffer is followed by a padding area that is zero
16171da177e4SLinus Torvalds  *	filled. Used by network drivers which may DMA or transfer data
16181da177e4SLinus Torvalds  *	beyond the buffer end onto the wire.
16191da177e4SLinus Torvalds  *
1620cd0a137aSFlorian Fainelli  *	May return error in out of memory cases. The skb is freed on error
1621cd0a137aSFlorian Fainelli  *	if @free_on_error is true.
16221da177e4SLinus Torvalds  */
16231da177e4SLinus Torvalds 
1624cd0a137aSFlorian Fainelli int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error)
16251da177e4SLinus Torvalds {
16265b057c6bSHerbert Xu 	int err;
16275b057c6bSHerbert Xu 	int ntail;
16281da177e4SLinus Torvalds 
16291da177e4SLinus Torvalds 	/* If the skbuff is non linear tailroom is always zero.. */
16305b057c6bSHerbert Xu 	if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
16311da177e4SLinus Torvalds 		memset(skb->data+skb->len, 0, pad);
16325b057c6bSHerbert Xu 		return 0;
16331da177e4SLinus Torvalds 	}
16341da177e4SLinus Torvalds 
16354305b541SArnaldo Carvalho de Melo 	ntail = skb->data_len + pad - (skb->end - skb->tail);
16365b057c6bSHerbert Xu 	if (likely(skb_cloned(skb) || ntail > 0)) {
16375b057c6bSHerbert Xu 		err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
16385b057c6bSHerbert Xu 		if (unlikely(err))
16395b057c6bSHerbert Xu 			goto free_skb;
16405b057c6bSHerbert Xu 	}
16415b057c6bSHerbert Xu 
16425b057c6bSHerbert Xu 	/* FIXME: The use of this function with non-linear skb's really needs
16435b057c6bSHerbert Xu 	 * to be audited.
16445b057c6bSHerbert Xu 	 */
16455b057c6bSHerbert Xu 	err = skb_linearize(skb);
16465b057c6bSHerbert Xu 	if (unlikely(err))
16475b057c6bSHerbert Xu 		goto free_skb;
16485b057c6bSHerbert Xu 
16495b057c6bSHerbert Xu 	memset(skb->data + skb->len, 0, pad);
16505b057c6bSHerbert Xu 	return 0;
16515b057c6bSHerbert Xu 
16525b057c6bSHerbert Xu free_skb:
1653cd0a137aSFlorian Fainelli 	if (free_on_error)
16541da177e4SLinus Torvalds 		kfree_skb(skb);
16555b057c6bSHerbert Xu 	return err;
16561da177e4SLinus Torvalds }
1657cd0a137aSFlorian Fainelli EXPORT_SYMBOL(__skb_pad);
16581da177e4SLinus Torvalds 
16590dde3e16SIlpo Järvinen /**
16600c7ddf36SMathias Krause  *	pskb_put - add data to the tail of a potentially fragmented buffer
16610c7ddf36SMathias Krause  *	@skb: start of the buffer to use
16620c7ddf36SMathias Krause  *	@tail: tail fragment of the buffer to use
16630c7ddf36SMathias Krause  *	@len: amount of data to add
16640c7ddf36SMathias Krause  *
16650c7ddf36SMathias Krause  *	This function extends the used data area of the potentially
16660c7ddf36SMathias Krause  *	fragmented buffer. @tail must be the last fragment of @skb -- or
16670c7ddf36SMathias Krause  *	@skb itself. If this would exceed the total buffer size the kernel
16680c7ddf36SMathias Krause  *	will panic. A pointer to the first byte of the extra data is
16690c7ddf36SMathias Krause  *	returned.
16700c7ddf36SMathias Krause  */
16710c7ddf36SMathias Krause 
16724df864c1SJohannes Berg void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
16730c7ddf36SMathias Krause {
16740c7ddf36SMathias Krause 	if (tail != skb) {
16750c7ddf36SMathias Krause 		skb->data_len += len;
16760c7ddf36SMathias Krause 		skb->len += len;
16770c7ddf36SMathias Krause 	}
16780c7ddf36SMathias Krause 	return skb_put(tail, len);
16790c7ddf36SMathias Krause }
16800c7ddf36SMathias Krause EXPORT_SYMBOL_GPL(pskb_put);
16810c7ddf36SMathias Krause 
16820c7ddf36SMathias Krause /**
16830dde3e16SIlpo Järvinen  *	skb_put - add data to a buffer
16840dde3e16SIlpo Järvinen  *	@skb: buffer to use
16850dde3e16SIlpo Järvinen  *	@len: amount of data to add
16860dde3e16SIlpo Järvinen  *
16870dde3e16SIlpo Järvinen  *	This function extends the used data area of the buffer. If this would
16880dde3e16SIlpo Järvinen  *	exceed the total buffer size the kernel will panic. A pointer to the
16890dde3e16SIlpo Järvinen  *	first byte of the extra data is returned.
16900dde3e16SIlpo Järvinen  */
16914df864c1SJohannes Berg void *skb_put(struct sk_buff *skb, unsigned int len)
16920dde3e16SIlpo Järvinen {
16934df864c1SJohannes Berg 	void *tmp = skb_tail_pointer(skb);
16940dde3e16SIlpo Järvinen 	SKB_LINEAR_ASSERT(skb);
16950dde3e16SIlpo Järvinen 	skb->tail += len;
16960dde3e16SIlpo Järvinen 	skb->len  += len;
16970dde3e16SIlpo Järvinen 	if (unlikely(skb->tail > skb->end))
16980dde3e16SIlpo Järvinen 		skb_over_panic(skb, len, __builtin_return_address(0));
16990dde3e16SIlpo Järvinen 	return tmp;
17000dde3e16SIlpo Järvinen }
17010dde3e16SIlpo Järvinen EXPORT_SYMBOL(skb_put);
17020dde3e16SIlpo Järvinen 
17036be8ac2fSIlpo Järvinen /**
1704c2aa270aSIlpo Järvinen  *	skb_push - add data to the start of a buffer
1705c2aa270aSIlpo Järvinen  *	@skb: buffer to use
1706c2aa270aSIlpo Järvinen  *	@len: amount of data to add
1707c2aa270aSIlpo Järvinen  *
1708c2aa270aSIlpo Järvinen  *	This function extends the used data area of the buffer at the buffer
1709c2aa270aSIlpo Järvinen  *	start. If this would exceed the total buffer headroom the kernel will
1710c2aa270aSIlpo Järvinen  *	panic. A pointer to the first byte of the extra data is returned.
1711c2aa270aSIlpo Järvinen  */
1712d58ff351SJohannes Berg void *skb_push(struct sk_buff *skb, unsigned int len)
1713c2aa270aSIlpo Järvinen {
1714c2aa270aSIlpo Järvinen 	skb->data -= len;
1715c2aa270aSIlpo Järvinen 	skb->len  += len;
1716c2aa270aSIlpo Järvinen 	if (unlikely(skb->data<skb->head))
1717c2aa270aSIlpo Järvinen 		skb_under_panic(skb, len, __builtin_return_address(0));
1718c2aa270aSIlpo Järvinen 	return skb->data;
1719c2aa270aSIlpo Järvinen }
1720c2aa270aSIlpo Järvinen EXPORT_SYMBOL(skb_push);
1721c2aa270aSIlpo Järvinen 
1722c2aa270aSIlpo Järvinen /**
17236be8ac2fSIlpo Järvinen  *	skb_pull - remove data from the start of a buffer
17246be8ac2fSIlpo Järvinen  *	@skb: buffer to use
17256be8ac2fSIlpo Järvinen  *	@len: amount of data to remove
17266be8ac2fSIlpo Järvinen  *
17276be8ac2fSIlpo Järvinen  *	This function removes data from the start of a buffer, returning
17286be8ac2fSIlpo Järvinen  *	the memory to the headroom. A pointer to the next data in the buffer
17296be8ac2fSIlpo Järvinen  *	is returned. Once the data has been pulled future pushes will overwrite
17306be8ac2fSIlpo Järvinen  *	the old data.
17316be8ac2fSIlpo Järvinen  */
1732af72868bSJohannes Berg void *skb_pull(struct sk_buff *skb, unsigned int len)
17336be8ac2fSIlpo Järvinen {
173447d29646SDavid S. Miller 	return skb_pull_inline(skb, len);
17356be8ac2fSIlpo Järvinen }
17366be8ac2fSIlpo Järvinen EXPORT_SYMBOL(skb_pull);
17376be8ac2fSIlpo Järvinen 
1738419ae74eSIlpo Järvinen /**
1739419ae74eSIlpo Järvinen  *	skb_trim - remove end from a buffer
1740419ae74eSIlpo Järvinen  *	@skb: buffer to alter
1741419ae74eSIlpo Järvinen  *	@len: new length
1742419ae74eSIlpo Järvinen  *
1743419ae74eSIlpo Järvinen  *	Cut the length of a buffer down by removing data from the tail. If
1744419ae74eSIlpo Järvinen  *	the buffer is already under the length specified it is not modified.
1745419ae74eSIlpo Järvinen  *	The skb must be linear.
1746419ae74eSIlpo Järvinen  */
1747419ae74eSIlpo Järvinen void skb_trim(struct sk_buff *skb, unsigned int len)
1748419ae74eSIlpo Järvinen {
1749419ae74eSIlpo Järvinen 	if (skb->len > len)
1750419ae74eSIlpo Järvinen 		__skb_trim(skb, len);
1751419ae74eSIlpo Järvinen }
1752419ae74eSIlpo Järvinen EXPORT_SYMBOL(skb_trim);
1753419ae74eSIlpo Järvinen 
17543cc0e873SHerbert Xu /* Trims skb to length len. It can change skb pointers.
17551da177e4SLinus Torvalds  */
17561da177e4SLinus Torvalds 
17573cc0e873SHerbert Xu int ___pskb_trim(struct sk_buff *skb, unsigned int len)
17581da177e4SLinus Torvalds {
175927b437c8SHerbert Xu 	struct sk_buff **fragp;
176027b437c8SHerbert Xu 	struct sk_buff *frag;
17611da177e4SLinus Torvalds 	int offset = skb_headlen(skb);
17621da177e4SLinus Torvalds 	int nfrags = skb_shinfo(skb)->nr_frags;
17631da177e4SLinus Torvalds 	int i;
176427b437c8SHerbert Xu 	int err;
176527b437c8SHerbert Xu 
176627b437c8SHerbert Xu 	if (skb_cloned(skb) &&
176727b437c8SHerbert Xu 	    unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
176827b437c8SHerbert Xu 		return err;
17691da177e4SLinus Torvalds 
1770f4d26fb3SHerbert Xu 	i = 0;
1771f4d26fb3SHerbert Xu 	if (offset >= len)
1772f4d26fb3SHerbert Xu 		goto drop_pages;
1773f4d26fb3SHerbert Xu 
1774f4d26fb3SHerbert Xu 	for (; i < nfrags; i++) {
17759e903e08SEric Dumazet 		int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
177627b437c8SHerbert Xu 
177727b437c8SHerbert Xu 		if (end < len) {
17781da177e4SLinus Torvalds 			offset = end;
177927b437c8SHerbert Xu 			continue;
17801da177e4SLinus Torvalds 		}
17811da177e4SLinus Torvalds 
17829e903e08SEric Dumazet 		skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
178327b437c8SHerbert Xu 
1784f4d26fb3SHerbert Xu drop_pages:
178527b437c8SHerbert Xu 		skb_shinfo(skb)->nr_frags = i;
178627b437c8SHerbert Xu 
178727b437c8SHerbert Xu 		for (; i < nfrags; i++)
1788ea2ab693SIan Campbell 			skb_frag_unref(skb, i);
178927b437c8SHerbert Xu 
179021dc3301SDavid S. Miller 		if (skb_has_frag_list(skb))
179127b437c8SHerbert Xu 			skb_drop_fraglist(skb);
1792f4d26fb3SHerbert Xu 		goto done;
179327b437c8SHerbert Xu 	}
179427b437c8SHerbert Xu 
179527b437c8SHerbert Xu 	for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
179627b437c8SHerbert Xu 	     fragp = &frag->next) {
179727b437c8SHerbert Xu 		int end = offset + frag->len;
179827b437c8SHerbert Xu 
179927b437c8SHerbert Xu 		if (skb_shared(frag)) {
180027b437c8SHerbert Xu 			struct sk_buff *nfrag;
180127b437c8SHerbert Xu 
180227b437c8SHerbert Xu 			nfrag = skb_clone(frag, GFP_ATOMIC);
180327b437c8SHerbert Xu 			if (unlikely(!nfrag))
180427b437c8SHerbert Xu 				return -ENOMEM;
180527b437c8SHerbert Xu 
180627b437c8SHerbert Xu 			nfrag->next = frag->next;
180785bb2a60SEric Dumazet 			consume_skb(frag);
180827b437c8SHerbert Xu 			frag = nfrag;
180927b437c8SHerbert Xu 			*fragp = frag;
181027b437c8SHerbert Xu 		}
181127b437c8SHerbert Xu 
181227b437c8SHerbert Xu 		if (end < len) {
181327b437c8SHerbert Xu 			offset = end;
181427b437c8SHerbert Xu 			continue;
181527b437c8SHerbert Xu 		}
181627b437c8SHerbert Xu 
181727b437c8SHerbert Xu 		if (end > len &&
181827b437c8SHerbert Xu 		    unlikely((err = pskb_trim(frag, len - offset))))
181927b437c8SHerbert Xu 			return err;
182027b437c8SHerbert Xu 
182127b437c8SHerbert Xu 		if (frag->next)
182227b437c8SHerbert Xu 			skb_drop_list(&frag->next);
182327b437c8SHerbert Xu 		break;
182427b437c8SHerbert Xu 	}
182527b437c8SHerbert Xu 
1826f4d26fb3SHerbert Xu done:
182727b437c8SHerbert Xu 	if (len > skb_headlen(skb)) {
18281da177e4SLinus Torvalds 		skb->data_len -= skb->len - len;
18291da177e4SLinus Torvalds 		skb->len       = len;
18301da177e4SLinus Torvalds 	} else {
18311da177e4SLinus Torvalds 		skb->len       = len;
18321da177e4SLinus Torvalds 		skb->data_len  = 0;
183327a884dcSArnaldo Carvalho de Melo 		skb_set_tail_pointer(skb, len);
18341da177e4SLinus Torvalds 	}
18351da177e4SLinus Torvalds 
1836c21b48ccSEric Dumazet 	if (!skb->sk || skb->destructor == sock_edemux)
1837c21b48ccSEric Dumazet 		skb_condense(skb);
18381da177e4SLinus Torvalds 	return 0;
18391da177e4SLinus Torvalds }
1840b4ac530fSDavid S. Miller EXPORT_SYMBOL(___pskb_trim);
18411da177e4SLinus Torvalds 
18421da177e4SLinus Torvalds /**
18431da177e4SLinus Torvalds  *	__pskb_pull_tail - advance tail of skb header
18441da177e4SLinus Torvalds  *	@skb: buffer to reallocate
18451da177e4SLinus Torvalds  *	@delta: number of bytes to advance tail
18461da177e4SLinus Torvalds  *
18471da177e4SLinus Torvalds  *	The function makes a sense only on a fragmented &sk_buff,
18481da177e4SLinus Torvalds  *	it expands header moving its tail forward and copying necessary
18491da177e4SLinus Torvalds  *	data from fragmented part.
18501da177e4SLinus Torvalds  *
18511da177e4SLinus Torvalds  *	&sk_buff MUST have reference count of 1.
18521da177e4SLinus Torvalds  *
18531da177e4SLinus Torvalds  *	Returns %NULL (and &sk_buff does not change) if pull failed
18541da177e4SLinus Torvalds  *	or value of new tail of skb in the case of success.
18551da177e4SLinus Torvalds  *
18561da177e4SLinus Torvalds  *	All the pointers pointing into skb header may change and must be
18571da177e4SLinus Torvalds  *	reloaded after call to this function.
18581da177e4SLinus Torvalds  */
18591da177e4SLinus Torvalds 
18601da177e4SLinus Torvalds /* Moves tail of skb head forward, copying data from fragmented part,
18611da177e4SLinus Torvalds  * when it is necessary.
18621da177e4SLinus Torvalds  * 1. It may fail due to malloc failure.
18631da177e4SLinus Torvalds  * 2. It may change skb pointers.
18641da177e4SLinus Torvalds  *
18651da177e4SLinus Torvalds  * It is pretty complicated. Luckily, it is called only in exceptional cases.
18661da177e4SLinus Torvalds  */
1867af72868bSJohannes Berg void *__pskb_pull_tail(struct sk_buff *skb, int delta)
18681da177e4SLinus Torvalds {
18691da177e4SLinus Torvalds 	/* If skb has not enough free space at tail, get new one
18701da177e4SLinus Torvalds 	 * plus 128 bytes for future expansions. If we have enough
18711da177e4SLinus Torvalds 	 * room at tail, reallocate without expansion only if skb is cloned.
18721da177e4SLinus Torvalds 	 */
18734305b541SArnaldo Carvalho de Melo 	int i, k, eat = (skb->tail + delta) - skb->end;
18741da177e4SLinus Torvalds 
18751da177e4SLinus Torvalds 	if (eat > 0 || skb_cloned(skb)) {
18761da177e4SLinus Torvalds 		if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
18771da177e4SLinus Torvalds 				     GFP_ATOMIC))
18781da177e4SLinus Torvalds 			return NULL;
18791da177e4SLinus Torvalds 	}
18801da177e4SLinus Torvalds 
188127a884dcSArnaldo Carvalho de Melo 	if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
18821da177e4SLinus Torvalds 		BUG();
18831da177e4SLinus Torvalds 
18841da177e4SLinus Torvalds 	/* Optimization: no fragments, no reasons to preestimate
18851da177e4SLinus Torvalds 	 * size of pulled pages. Superb.
18861da177e4SLinus Torvalds 	 */
188721dc3301SDavid S. Miller 	if (!skb_has_frag_list(skb))
18881da177e4SLinus Torvalds 		goto pull_pages;
18891da177e4SLinus Torvalds 
18901da177e4SLinus Torvalds 	/* Estimate size of pulled pages. */
18911da177e4SLinus Torvalds 	eat = delta;
18921da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
18939e903e08SEric Dumazet 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
18949e903e08SEric Dumazet 
18959e903e08SEric Dumazet 		if (size >= eat)
18961da177e4SLinus Torvalds 			goto pull_pages;
18979e903e08SEric Dumazet 		eat -= size;
18981da177e4SLinus Torvalds 	}
18991da177e4SLinus Torvalds 
19001da177e4SLinus Torvalds 	/* If we need update frag list, we are in troubles.
19011da177e4SLinus Torvalds 	 * Certainly, it possible to add an offset to skb data,
19021da177e4SLinus Torvalds 	 * but taking into account that pulling is expected to
19031da177e4SLinus Torvalds 	 * be very rare operation, it is worth to fight against
19041da177e4SLinus Torvalds 	 * further bloating skb head and crucify ourselves here instead.
19051da177e4SLinus Torvalds 	 * Pure masohism, indeed. 8)8)
19061da177e4SLinus Torvalds 	 */
19071da177e4SLinus Torvalds 	if (eat) {
19081da177e4SLinus Torvalds 		struct sk_buff *list = skb_shinfo(skb)->frag_list;
19091da177e4SLinus Torvalds 		struct sk_buff *clone = NULL;
19101da177e4SLinus Torvalds 		struct sk_buff *insp = NULL;
19111da177e4SLinus Torvalds 
19121da177e4SLinus Torvalds 		do {
191309a62660SKris Katterjohn 			BUG_ON(!list);
19141da177e4SLinus Torvalds 
19151da177e4SLinus Torvalds 			if (list->len <= eat) {
19161da177e4SLinus Torvalds 				/* Eaten as whole. */
19171da177e4SLinus Torvalds 				eat -= list->len;
19181da177e4SLinus Torvalds 				list = list->next;
19191da177e4SLinus Torvalds 				insp = list;
19201da177e4SLinus Torvalds 			} else {
19211da177e4SLinus Torvalds 				/* Eaten partially. */
19221da177e4SLinus Torvalds 
19231da177e4SLinus Torvalds 				if (skb_shared(list)) {
19241da177e4SLinus Torvalds 					/* Sucks! We need to fork list. :-( */
19251da177e4SLinus Torvalds 					clone = skb_clone(list, GFP_ATOMIC);
19261da177e4SLinus Torvalds 					if (!clone)
19271da177e4SLinus Torvalds 						return NULL;
19281da177e4SLinus Torvalds 					insp = list->next;
19291da177e4SLinus Torvalds 					list = clone;
19301da177e4SLinus Torvalds 				} else {
19311da177e4SLinus Torvalds 					/* This may be pulled without
19321da177e4SLinus Torvalds 					 * problems. */
19331da177e4SLinus Torvalds 					insp = list;
19341da177e4SLinus Torvalds 				}
19351da177e4SLinus Torvalds 				if (!pskb_pull(list, eat)) {
19361da177e4SLinus Torvalds 					kfree_skb(clone);
19371da177e4SLinus Torvalds 					return NULL;
19381da177e4SLinus Torvalds 				}
19391da177e4SLinus Torvalds 				break;
19401da177e4SLinus Torvalds 			}
19411da177e4SLinus Torvalds 		} while (eat);
19421da177e4SLinus Torvalds 
19431da177e4SLinus Torvalds 		/* Free pulled out fragments. */
19441da177e4SLinus Torvalds 		while ((list = skb_shinfo(skb)->frag_list) != insp) {
19451da177e4SLinus Torvalds 			skb_shinfo(skb)->frag_list = list->next;
19461da177e4SLinus Torvalds 			kfree_skb(list);
19471da177e4SLinus Torvalds 		}
19481da177e4SLinus Torvalds 		/* And insert new clone at head. */
19491da177e4SLinus Torvalds 		if (clone) {
19501da177e4SLinus Torvalds 			clone->next = list;
19511da177e4SLinus Torvalds 			skb_shinfo(skb)->frag_list = clone;
19521da177e4SLinus Torvalds 		}
19531da177e4SLinus Torvalds 	}
19541da177e4SLinus Torvalds 	/* Success! Now we may commit changes to skb data. */
19551da177e4SLinus Torvalds 
19561da177e4SLinus Torvalds pull_pages:
19571da177e4SLinus Torvalds 	eat = delta;
19581da177e4SLinus Torvalds 	k = 0;
19591da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
19609e903e08SEric Dumazet 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
19619e903e08SEric Dumazet 
19629e903e08SEric Dumazet 		if (size <= eat) {
1963ea2ab693SIan Campbell 			skb_frag_unref(skb, i);
19649e903e08SEric Dumazet 			eat -= size;
19651da177e4SLinus Torvalds 		} else {
19661da177e4SLinus Torvalds 			skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
19671da177e4SLinus Torvalds 			if (eat) {
19681da177e4SLinus Torvalds 				skb_shinfo(skb)->frags[k].page_offset += eat;
19699e903e08SEric Dumazet 				skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
19703ccc6c6fSlinzhang 				if (!i)
19713ccc6c6fSlinzhang 					goto end;
19721da177e4SLinus Torvalds 				eat = 0;
19731da177e4SLinus Torvalds 			}
19741da177e4SLinus Torvalds 			k++;
19751da177e4SLinus Torvalds 		}
19761da177e4SLinus Torvalds 	}
19771da177e4SLinus Torvalds 	skb_shinfo(skb)->nr_frags = k;
19781da177e4SLinus Torvalds 
19793ccc6c6fSlinzhang end:
19801da177e4SLinus Torvalds 	skb->tail     += delta;
19811da177e4SLinus Torvalds 	skb->data_len -= delta;
19821da177e4SLinus Torvalds 
19831f8b977aSWillem de Bruijn 	if (!skb->data_len)
19841f8b977aSWillem de Bruijn 		skb_zcopy_clear(skb, false);
19851f8b977aSWillem de Bruijn 
198627a884dcSArnaldo Carvalho de Melo 	return skb_tail_pointer(skb);
19871da177e4SLinus Torvalds }
1988b4ac530fSDavid S. Miller EXPORT_SYMBOL(__pskb_pull_tail);
19891da177e4SLinus Torvalds 
199022019b17SEric Dumazet /**
199122019b17SEric Dumazet  *	skb_copy_bits - copy bits from skb to kernel buffer
199222019b17SEric Dumazet  *	@skb: source skb
199322019b17SEric Dumazet  *	@offset: offset in source
199422019b17SEric Dumazet  *	@to: destination buffer
199522019b17SEric Dumazet  *	@len: number of bytes to copy
199622019b17SEric Dumazet  *
199722019b17SEric Dumazet  *	Copy the specified number of bytes from the source skb to the
199822019b17SEric Dumazet  *	destination buffer.
199922019b17SEric Dumazet  *
200022019b17SEric Dumazet  *	CAUTION ! :
200122019b17SEric Dumazet  *		If its prototype is ever changed,
200222019b17SEric Dumazet  *		check arch/{*}/net/{*}.S files,
200322019b17SEric Dumazet  *		since it is called from BPF assembly code.
200422019b17SEric Dumazet  */
20051da177e4SLinus Torvalds int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
20061da177e4SLinus Torvalds {
20071a028e50SDavid S. Miller 	int start = skb_headlen(skb);
2008fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
2009fbb398a8SDavid S. Miller 	int i, copy;
20101da177e4SLinus Torvalds 
20111da177e4SLinus Torvalds 	if (offset > (int)skb->len - len)
20121da177e4SLinus Torvalds 		goto fault;
20131da177e4SLinus Torvalds 
20141da177e4SLinus Torvalds 	/* Copy header. */
20151a028e50SDavid S. Miller 	if ((copy = start - offset) > 0) {
20161da177e4SLinus Torvalds 		if (copy > len)
20171da177e4SLinus Torvalds 			copy = len;
2018d626f62bSArnaldo Carvalho de Melo 		skb_copy_from_linear_data_offset(skb, offset, to, copy);
20191da177e4SLinus Torvalds 		if ((len -= copy) == 0)
20201da177e4SLinus Torvalds 			return 0;
20211da177e4SLinus Torvalds 		offset += copy;
20221da177e4SLinus Torvalds 		to     += copy;
20231da177e4SLinus Torvalds 	}
20241da177e4SLinus Torvalds 
20251da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
20261a028e50SDavid S. Miller 		int end;
202751c56b00SEric Dumazet 		skb_frag_t *f = &skb_shinfo(skb)->frags[i];
20281da177e4SLinus Torvalds 
2029547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
20301a028e50SDavid S. Miller 
203151c56b00SEric Dumazet 		end = start + skb_frag_size(f);
20321da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
2033c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2034c613c209SWillem de Bruijn 			struct page *p;
20351da177e4SLinus Torvalds 			u8 *vaddr;
20361da177e4SLinus Torvalds 
20371da177e4SLinus Torvalds 			if (copy > len)
20381da177e4SLinus Torvalds 				copy = len;
20391da177e4SLinus Torvalds 
2040c613c209SWillem de Bruijn 			skb_frag_foreach_page(f,
2041c613c209SWillem de Bruijn 					      f->page_offset + offset - start,
2042c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2043c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2044c613c209SWillem de Bruijn 				memcpy(to + copied, vaddr + p_off, p_len);
204551c56b00SEric Dumazet 				kunmap_atomic(vaddr);
2046c613c209SWillem de Bruijn 			}
20471da177e4SLinus Torvalds 
20481da177e4SLinus Torvalds 			if ((len -= copy) == 0)
20491da177e4SLinus Torvalds 				return 0;
20501da177e4SLinus Torvalds 			offset += copy;
20511da177e4SLinus Torvalds 			to     += copy;
20521da177e4SLinus Torvalds 		}
20531a028e50SDavid S. Miller 		start = end;
20541da177e4SLinus Torvalds 	}
20551da177e4SLinus Torvalds 
2056fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
20571a028e50SDavid S. Miller 		int end;
20581da177e4SLinus Torvalds 
2059547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
20601a028e50SDavid S. Miller 
2061fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
20621da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
20631da177e4SLinus Torvalds 			if (copy > len)
20641da177e4SLinus Torvalds 				copy = len;
2065fbb398a8SDavid S. Miller 			if (skb_copy_bits(frag_iter, offset - start, to, copy))
20661da177e4SLinus Torvalds 				goto fault;
20671da177e4SLinus Torvalds 			if ((len -= copy) == 0)
20681da177e4SLinus Torvalds 				return 0;
20691da177e4SLinus Torvalds 			offset += copy;
20701da177e4SLinus Torvalds 			to     += copy;
20711da177e4SLinus Torvalds 		}
20721a028e50SDavid S. Miller 		start = end;
20731da177e4SLinus Torvalds 	}
2074a6686f2fSShirley Ma 
20751da177e4SLinus Torvalds 	if (!len)
20761da177e4SLinus Torvalds 		return 0;
20771da177e4SLinus Torvalds 
20781da177e4SLinus Torvalds fault:
20791da177e4SLinus Torvalds 	return -EFAULT;
20801da177e4SLinus Torvalds }
2081b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_bits);
20821da177e4SLinus Torvalds 
20839c55e01cSJens Axboe /*
20849c55e01cSJens Axboe  * Callback from splice_to_pipe(), if we need to release some pages
20859c55e01cSJens Axboe  * at the end of the spd in case we error'ed out in filling the pipe.
20869c55e01cSJens Axboe  */
20879c55e01cSJens Axboe static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
20889c55e01cSJens Axboe {
20898b9d3728SJarek Poplawski 	put_page(spd->pages[i]);
20908b9d3728SJarek Poplawski }
20919c55e01cSJens Axboe 
2092a108d5f3SDavid S. Miller static struct page *linear_to_page(struct page *page, unsigned int *len,
20934fb66994SJarek Poplawski 				   unsigned int *offset,
209418aafc62SEric Dumazet 				   struct sock *sk)
20958b9d3728SJarek Poplawski {
20965640f768SEric Dumazet 	struct page_frag *pfrag = sk_page_frag(sk);
20978b9d3728SJarek Poplawski 
20985640f768SEric Dumazet 	if (!sk_page_frag_refill(sk, pfrag))
20998b9d3728SJarek Poplawski 		return NULL;
21004fb66994SJarek Poplawski 
21015640f768SEric Dumazet 	*len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
21024fb66994SJarek Poplawski 
21035640f768SEric Dumazet 	memcpy(page_address(pfrag->page) + pfrag->offset,
21045640f768SEric Dumazet 	       page_address(page) + *offset, *len);
21055640f768SEric Dumazet 	*offset = pfrag->offset;
21065640f768SEric Dumazet 	pfrag->offset += *len;
21074fb66994SJarek Poplawski 
21085640f768SEric Dumazet 	return pfrag->page;
21099c55e01cSJens Axboe }
21109c55e01cSJens Axboe 
211141c73a0dSEric Dumazet static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
211241c73a0dSEric Dumazet 			     struct page *page,
211341c73a0dSEric Dumazet 			     unsigned int offset)
211441c73a0dSEric Dumazet {
211541c73a0dSEric Dumazet 	return	spd->nr_pages &&
211641c73a0dSEric Dumazet 		spd->pages[spd->nr_pages - 1] == page &&
211741c73a0dSEric Dumazet 		(spd->partial[spd->nr_pages - 1].offset +
211841c73a0dSEric Dumazet 		 spd->partial[spd->nr_pages - 1].len == offset);
211941c73a0dSEric Dumazet }
212041c73a0dSEric Dumazet 
21219c55e01cSJens Axboe /*
21229c55e01cSJens Axboe  * Fill page/offset/length into spd, if it can hold more pages.
21239c55e01cSJens Axboe  */
2124a108d5f3SDavid S. Miller static bool spd_fill_page(struct splice_pipe_desc *spd,
212535f3d14dSJens Axboe 			  struct pipe_inode_info *pipe, struct page *page,
21264fb66994SJarek Poplawski 			  unsigned int *len, unsigned int offset,
212718aafc62SEric Dumazet 			  bool linear,
21287a67e56fSJarek Poplawski 			  struct sock *sk)
21299c55e01cSJens Axboe {
213041c73a0dSEric Dumazet 	if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
2131a108d5f3SDavid S. Miller 		return true;
21329c55e01cSJens Axboe 
21338b9d3728SJarek Poplawski 	if (linear) {
213418aafc62SEric Dumazet 		page = linear_to_page(page, len, &offset, sk);
21358b9d3728SJarek Poplawski 		if (!page)
2136a108d5f3SDavid S. Miller 			return true;
213741c73a0dSEric Dumazet 	}
213841c73a0dSEric Dumazet 	if (spd_can_coalesce(spd, page, offset)) {
213941c73a0dSEric Dumazet 		spd->partial[spd->nr_pages - 1].len += *len;
2140a108d5f3SDavid S. Miller 		return false;
214141c73a0dSEric Dumazet 	}
21428b9d3728SJarek Poplawski 	get_page(page);
21439c55e01cSJens Axboe 	spd->pages[spd->nr_pages] = page;
21444fb66994SJarek Poplawski 	spd->partial[spd->nr_pages].len = *len;
21459c55e01cSJens Axboe 	spd->partial[spd->nr_pages].offset = offset;
21469c55e01cSJens Axboe 	spd->nr_pages++;
21478b9d3728SJarek Poplawski 
2148a108d5f3SDavid S. Miller 	return false;
21499c55e01cSJens Axboe }
21509c55e01cSJens Axboe 
2151a108d5f3SDavid S. Miller static bool __splice_segment(struct page *page, unsigned int poff,
21522870c43dSOctavian Purdila 			     unsigned int plen, unsigned int *off,
215318aafc62SEric Dumazet 			     unsigned int *len,
2154d7ccf7c0SEric Dumazet 			     struct splice_pipe_desc *spd, bool linear,
215535f3d14dSJens Axboe 			     struct sock *sk,
215635f3d14dSJens Axboe 			     struct pipe_inode_info *pipe)
21579c55e01cSJens Axboe {
21582870c43dSOctavian Purdila 	if (!*len)
2159a108d5f3SDavid S. Miller 		return true;
21609c55e01cSJens Axboe 
21612870c43dSOctavian Purdila 	/* skip this segment if already processed */
21622870c43dSOctavian Purdila 	if (*off >= plen) {
21632870c43dSOctavian Purdila 		*off -= plen;
2164a108d5f3SDavid S. Miller 		return false;
21652870c43dSOctavian Purdila 	}
21662870c43dSOctavian Purdila 
21672870c43dSOctavian Purdila 	/* ignore any bits we already processed */
21689ca1b22dSEric Dumazet 	poff += *off;
21699ca1b22dSEric Dumazet 	plen -= *off;
21702870c43dSOctavian Purdila 	*off = 0;
21712870c43dSOctavian Purdila 
217218aafc62SEric Dumazet 	do {
217318aafc62SEric Dumazet 		unsigned int flen = min(*len, plen);
21742870c43dSOctavian Purdila 
217518aafc62SEric Dumazet 		if (spd_fill_page(spd, pipe, page, &flen, poff,
217618aafc62SEric Dumazet 				  linear, sk))
2177a108d5f3SDavid S. Miller 			return true;
217818aafc62SEric Dumazet 		poff += flen;
217918aafc62SEric Dumazet 		plen -= flen;
21802870c43dSOctavian Purdila 		*len -= flen;
218118aafc62SEric Dumazet 	} while (*len && plen);
21822870c43dSOctavian Purdila 
2183a108d5f3SDavid S. Miller 	return false;
2184db43a282SOctavian Purdila }
21859c55e01cSJens Axboe 
21869c55e01cSJens Axboe /*
2187a108d5f3SDavid S. Miller  * Map linear and fragment data from the skb to spd. It reports true if the
21882870c43dSOctavian Purdila  * pipe is full or if we already spliced the requested length.
21899c55e01cSJens Axboe  */
2190a108d5f3SDavid S. Miller static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
219135f3d14dSJens Axboe 			      unsigned int *offset, unsigned int *len,
219235f3d14dSJens Axboe 			      struct splice_pipe_desc *spd, struct sock *sk)
21932870c43dSOctavian Purdila {
21942870c43dSOctavian Purdila 	int seg;
2195fa9835e5STom Herbert 	struct sk_buff *iter;
21969c55e01cSJens Axboe 
21971d0c0b32SEric Dumazet 	/* map the linear part :
21982996d31fSAlexander Duyck 	 * If skb->head_frag is set, this 'linear' part is backed by a
21992996d31fSAlexander Duyck 	 * fragment, and if the head is not shared with any clones then
22002996d31fSAlexander Duyck 	 * we can avoid a copy since we own the head portion of this page.
22019c55e01cSJens Axboe 	 */
22022870c43dSOctavian Purdila 	if (__splice_segment(virt_to_page(skb->data),
22032870c43dSOctavian Purdila 			     (unsigned long) skb->data & (PAGE_SIZE - 1),
22042870c43dSOctavian Purdila 			     skb_headlen(skb),
220518aafc62SEric Dumazet 			     offset, len, spd,
22063a7c1ee4SAlexander Duyck 			     skb_head_is_locked(skb),
22071d0c0b32SEric Dumazet 			     sk, pipe))
2208a108d5f3SDavid S. Miller 		return true;
22099c55e01cSJens Axboe 
22109c55e01cSJens Axboe 	/*
22119c55e01cSJens Axboe 	 * then map the fragments
22129c55e01cSJens Axboe 	 */
22139c55e01cSJens Axboe 	for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
22149c55e01cSJens Axboe 		const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
22159c55e01cSJens Axboe 
2216ea2ab693SIan Campbell 		if (__splice_segment(skb_frag_page(f),
22179e903e08SEric Dumazet 				     f->page_offset, skb_frag_size(f),
221818aafc62SEric Dumazet 				     offset, len, spd, false, sk, pipe))
2219a108d5f3SDavid S. Miller 			return true;
22209c55e01cSJens Axboe 	}
22219c55e01cSJens Axboe 
2222fa9835e5STom Herbert 	skb_walk_frags(skb, iter) {
2223fa9835e5STom Herbert 		if (*offset >= iter->len) {
2224fa9835e5STom Herbert 			*offset -= iter->len;
2225fa9835e5STom Herbert 			continue;
2226fa9835e5STom Herbert 		}
2227fa9835e5STom Herbert 		/* __skb_splice_bits() only fails if the output has no room
2228fa9835e5STom Herbert 		 * left, so no point in going over the frag_list for the error
2229fa9835e5STom Herbert 		 * case.
2230fa9835e5STom Herbert 		 */
2231fa9835e5STom Herbert 		if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
2232fa9835e5STom Herbert 			return true;
2233fa9835e5STom Herbert 	}
2234fa9835e5STom Herbert 
2235a108d5f3SDavid S. Miller 	return false;
22369c55e01cSJens Axboe }
22379c55e01cSJens Axboe 
22389c55e01cSJens Axboe /*
22399c55e01cSJens Axboe  * Map data from the skb to a pipe. Should handle both the linear part,
2240fa9835e5STom Herbert  * the fragments, and the frag list.
22419c55e01cSJens Axboe  */
2242a60e3cc7SHannes Frederic Sowa int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
22439c55e01cSJens Axboe 		    struct pipe_inode_info *pipe, unsigned int tlen,
224425869262SAl Viro 		    unsigned int flags)
22459c55e01cSJens Axboe {
224641c73a0dSEric Dumazet 	struct partial_page partial[MAX_SKB_FRAGS];
224741c73a0dSEric Dumazet 	struct page *pages[MAX_SKB_FRAGS];
22489c55e01cSJens Axboe 	struct splice_pipe_desc spd = {
22499c55e01cSJens Axboe 		.pages = pages,
22509c55e01cSJens Axboe 		.partial = partial,
2251047fe360SEric Dumazet 		.nr_pages_max = MAX_SKB_FRAGS,
225228a625cbSMiklos Szeredi 		.ops = &nosteal_pipe_buf_ops,
22539c55e01cSJens Axboe 		.spd_release = sock_spd_release,
22549c55e01cSJens Axboe 	};
225535f3d14dSJens Axboe 	int ret = 0;
225635f3d14dSJens Axboe 
2257fa9835e5STom Herbert 	__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
22589c55e01cSJens Axboe 
2259a60e3cc7SHannes Frederic Sowa 	if (spd.nr_pages)
226025869262SAl Viro 		ret = splice_to_pipe(pipe, &spd);
22619c55e01cSJens Axboe 
226235f3d14dSJens Axboe 	return ret;
22639c55e01cSJens Axboe }
22642b514574SHannes Frederic Sowa EXPORT_SYMBOL_GPL(skb_splice_bits);
22659c55e01cSJens Axboe 
226620bf50deSTom Herbert /* Send skb data on a socket. Socket must be locked. */
226720bf50deSTom Herbert int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
226820bf50deSTom Herbert 			 int len)
226920bf50deSTom Herbert {
227020bf50deSTom Herbert 	unsigned int orig_len = len;
227120bf50deSTom Herbert 	struct sk_buff *head = skb;
227220bf50deSTom Herbert 	unsigned short fragidx;
227320bf50deSTom Herbert 	int slen, ret;
227420bf50deSTom Herbert 
227520bf50deSTom Herbert do_frag_list:
227620bf50deSTom Herbert 
227720bf50deSTom Herbert 	/* Deal with head data */
227820bf50deSTom Herbert 	while (offset < skb_headlen(skb) && len) {
227920bf50deSTom Herbert 		struct kvec kv;
228020bf50deSTom Herbert 		struct msghdr msg;
228120bf50deSTom Herbert 
228220bf50deSTom Herbert 		slen = min_t(int, len, skb_headlen(skb) - offset);
228320bf50deSTom Herbert 		kv.iov_base = skb->data + offset;
2284db5980d8SJohn Fastabend 		kv.iov_len = slen;
228520bf50deSTom Herbert 		memset(&msg, 0, sizeof(msg));
228620bf50deSTom Herbert 
228720bf50deSTom Herbert 		ret = kernel_sendmsg_locked(sk, &msg, &kv, 1, slen);
228820bf50deSTom Herbert 		if (ret <= 0)
228920bf50deSTom Herbert 			goto error;
229020bf50deSTom Herbert 
229120bf50deSTom Herbert 		offset += ret;
229220bf50deSTom Herbert 		len -= ret;
229320bf50deSTom Herbert 	}
229420bf50deSTom Herbert 
229520bf50deSTom Herbert 	/* All the data was skb head? */
229620bf50deSTom Herbert 	if (!len)
229720bf50deSTom Herbert 		goto out;
229820bf50deSTom Herbert 
229920bf50deSTom Herbert 	/* Make offset relative to start of frags */
230020bf50deSTom Herbert 	offset -= skb_headlen(skb);
230120bf50deSTom Herbert 
230220bf50deSTom Herbert 	/* Find where we are in frag list */
230320bf50deSTom Herbert 	for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
230420bf50deSTom Herbert 		skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
230520bf50deSTom Herbert 
230620bf50deSTom Herbert 		if (offset < frag->size)
230720bf50deSTom Herbert 			break;
230820bf50deSTom Herbert 
230920bf50deSTom Herbert 		offset -= frag->size;
231020bf50deSTom Herbert 	}
231120bf50deSTom Herbert 
231220bf50deSTom Herbert 	for (; len && fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
231320bf50deSTom Herbert 		skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
231420bf50deSTom Herbert 
231520bf50deSTom Herbert 		slen = min_t(size_t, len, frag->size - offset);
231620bf50deSTom Herbert 
231720bf50deSTom Herbert 		while (slen) {
231820bf50deSTom Herbert 			ret = kernel_sendpage_locked(sk, frag->page.p,
231920bf50deSTom Herbert 						     frag->page_offset + offset,
232020bf50deSTom Herbert 						     slen, MSG_DONTWAIT);
232120bf50deSTom Herbert 			if (ret <= 0)
232220bf50deSTom Herbert 				goto error;
232320bf50deSTom Herbert 
232420bf50deSTom Herbert 			len -= ret;
232520bf50deSTom Herbert 			offset += ret;
232620bf50deSTom Herbert 			slen -= ret;
232720bf50deSTom Herbert 		}
232820bf50deSTom Herbert 
232920bf50deSTom Herbert 		offset = 0;
233020bf50deSTom Herbert 	}
233120bf50deSTom Herbert 
233220bf50deSTom Herbert 	if (len) {
233320bf50deSTom Herbert 		/* Process any frag lists */
233420bf50deSTom Herbert 
233520bf50deSTom Herbert 		if (skb == head) {
233620bf50deSTom Herbert 			if (skb_has_frag_list(skb)) {
233720bf50deSTom Herbert 				skb = skb_shinfo(skb)->frag_list;
233820bf50deSTom Herbert 				goto do_frag_list;
233920bf50deSTom Herbert 			}
234020bf50deSTom Herbert 		} else if (skb->next) {
234120bf50deSTom Herbert 			skb = skb->next;
234220bf50deSTom Herbert 			goto do_frag_list;
234320bf50deSTom Herbert 		}
234420bf50deSTom Herbert 	}
234520bf50deSTom Herbert 
234620bf50deSTom Herbert out:
234720bf50deSTom Herbert 	return orig_len - len;
234820bf50deSTom Herbert 
234920bf50deSTom Herbert error:
235020bf50deSTom Herbert 	return orig_len == len ? ret : orig_len - len;
235120bf50deSTom Herbert }
235220bf50deSTom Herbert EXPORT_SYMBOL_GPL(skb_send_sock_locked);
235320bf50deSTom Herbert 
235420bf50deSTom Herbert /* Send skb data on a socket. */
235520bf50deSTom Herbert int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len)
235620bf50deSTom Herbert {
235720bf50deSTom Herbert 	int ret = 0;
235820bf50deSTom Herbert 
235920bf50deSTom Herbert 	lock_sock(sk);
236020bf50deSTom Herbert 	ret = skb_send_sock_locked(sk, skb, offset, len);
236120bf50deSTom Herbert 	release_sock(sk);
236220bf50deSTom Herbert 
236320bf50deSTom Herbert 	return ret;
236420bf50deSTom Herbert }
236520bf50deSTom Herbert EXPORT_SYMBOL_GPL(skb_send_sock);
236620bf50deSTom Herbert 
2367357b40a1SHerbert Xu /**
2368357b40a1SHerbert Xu  *	skb_store_bits - store bits from kernel buffer to skb
2369357b40a1SHerbert Xu  *	@skb: destination buffer
2370357b40a1SHerbert Xu  *	@offset: offset in destination
2371357b40a1SHerbert Xu  *	@from: source buffer
2372357b40a1SHerbert Xu  *	@len: number of bytes to copy
2373357b40a1SHerbert Xu  *
2374357b40a1SHerbert Xu  *	Copy the specified number of bytes from the source buffer to the
2375357b40a1SHerbert Xu  *	destination skb.  This function handles all the messy bits of
2376357b40a1SHerbert Xu  *	traversing fragment lists and such.
2377357b40a1SHerbert Xu  */
2378357b40a1SHerbert Xu 
23790c6fcc8aSStephen Hemminger int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
2380357b40a1SHerbert Xu {
23811a028e50SDavid S. Miller 	int start = skb_headlen(skb);
2382fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
2383fbb398a8SDavid S. Miller 	int i, copy;
2384357b40a1SHerbert Xu 
2385357b40a1SHerbert Xu 	if (offset > (int)skb->len - len)
2386357b40a1SHerbert Xu 		goto fault;
2387357b40a1SHerbert Xu 
23881a028e50SDavid S. Miller 	if ((copy = start - offset) > 0) {
2389357b40a1SHerbert Xu 		if (copy > len)
2390357b40a1SHerbert Xu 			copy = len;
239127d7ff46SArnaldo Carvalho de Melo 		skb_copy_to_linear_data_offset(skb, offset, from, copy);
2392357b40a1SHerbert Xu 		if ((len -= copy) == 0)
2393357b40a1SHerbert Xu 			return 0;
2394357b40a1SHerbert Xu 		offset += copy;
2395357b40a1SHerbert Xu 		from += copy;
2396357b40a1SHerbert Xu 	}
2397357b40a1SHerbert Xu 
2398357b40a1SHerbert Xu 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2399357b40a1SHerbert Xu 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
24001a028e50SDavid S. Miller 		int end;
2401357b40a1SHerbert Xu 
2402547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
24031a028e50SDavid S. Miller 
24049e903e08SEric Dumazet 		end = start + skb_frag_size(frag);
2405357b40a1SHerbert Xu 		if ((copy = end - offset) > 0) {
2406c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2407c613c209SWillem de Bruijn 			struct page *p;
2408357b40a1SHerbert Xu 			u8 *vaddr;
2409357b40a1SHerbert Xu 
2410357b40a1SHerbert Xu 			if (copy > len)
2411357b40a1SHerbert Xu 				copy = len;
2412357b40a1SHerbert Xu 
2413c613c209SWillem de Bruijn 			skb_frag_foreach_page(frag,
2414c613c209SWillem de Bruijn 					      frag->page_offset + offset - start,
2415c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2416c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2417c613c209SWillem de Bruijn 				memcpy(vaddr + p_off, from + copied, p_len);
241851c56b00SEric Dumazet 				kunmap_atomic(vaddr);
2419c613c209SWillem de Bruijn 			}
2420357b40a1SHerbert Xu 
2421357b40a1SHerbert Xu 			if ((len -= copy) == 0)
2422357b40a1SHerbert Xu 				return 0;
2423357b40a1SHerbert Xu 			offset += copy;
2424357b40a1SHerbert Xu 			from += copy;
2425357b40a1SHerbert Xu 		}
24261a028e50SDavid S. Miller 		start = end;
2427357b40a1SHerbert Xu 	}
2428357b40a1SHerbert Xu 
2429fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
24301a028e50SDavid S. Miller 		int end;
2431357b40a1SHerbert Xu 
2432547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
24331a028e50SDavid S. Miller 
2434fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
2435357b40a1SHerbert Xu 		if ((copy = end - offset) > 0) {
2436357b40a1SHerbert Xu 			if (copy > len)
2437357b40a1SHerbert Xu 				copy = len;
2438fbb398a8SDavid S. Miller 			if (skb_store_bits(frag_iter, offset - start,
24391a028e50SDavid S. Miller 					   from, copy))
2440357b40a1SHerbert Xu 				goto fault;
2441357b40a1SHerbert Xu 			if ((len -= copy) == 0)
2442357b40a1SHerbert Xu 				return 0;
2443357b40a1SHerbert Xu 			offset += copy;
2444357b40a1SHerbert Xu 			from += copy;
2445357b40a1SHerbert Xu 		}
24461a028e50SDavid S. Miller 		start = end;
2447357b40a1SHerbert Xu 	}
2448357b40a1SHerbert Xu 	if (!len)
2449357b40a1SHerbert Xu 		return 0;
2450357b40a1SHerbert Xu 
2451357b40a1SHerbert Xu fault:
2452357b40a1SHerbert Xu 	return -EFAULT;
2453357b40a1SHerbert Xu }
2454357b40a1SHerbert Xu EXPORT_SYMBOL(skb_store_bits);
2455357b40a1SHerbert Xu 
24561da177e4SLinus Torvalds /* Checksum skb data. */
24572817a336SDaniel Borkmann __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
24582817a336SDaniel Borkmann 		      __wsum csum, const struct skb_checksum_ops *ops)
24591da177e4SLinus Torvalds {
24601a028e50SDavid S. Miller 	int start = skb_headlen(skb);
24611a028e50SDavid S. Miller 	int i, copy = start - offset;
2462fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
24631da177e4SLinus Torvalds 	int pos = 0;
24641da177e4SLinus Torvalds 
24651da177e4SLinus Torvalds 	/* Checksum header. */
24661da177e4SLinus Torvalds 	if (copy > 0) {
24671da177e4SLinus Torvalds 		if (copy > len)
24681da177e4SLinus Torvalds 			copy = len;
24692817a336SDaniel Borkmann 		csum = ops->update(skb->data + offset, copy, csum);
24701da177e4SLinus Torvalds 		if ((len -= copy) == 0)
24711da177e4SLinus Torvalds 			return csum;
24721da177e4SLinus Torvalds 		offset += copy;
24731da177e4SLinus Torvalds 		pos	= copy;
24741da177e4SLinus Torvalds 	}
24751da177e4SLinus Torvalds 
24761da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
24771a028e50SDavid S. Miller 		int end;
247851c56b00SEric Dumazet 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
24791da177e4SLinus Torvalds 
2480547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
24811a028e50SDavid S. Miller 
248251c56b00SEric Dumazet 		end = start + skb_frag_size(frag);
24831da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
2484c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2485c613c209SWillem de Bruijn 			struct page *p;
248644bb9363SAl Viro 			__wsum csum2;
24871da177e4SLinus Torvalds 			u8 *vaddr;
24881da177e4SLinus Torvalds 
24891da177e4SLinus Torvalds 			if (copy > len)
24901da177e4SLinus Torvalds 				copy = len;
2491c613c209SWillem de Bruijn 
2492c613c209SWillem de Bruijn 			skb_frag_foreach_page(frag,
2493c613c209SWillem de Bruijn 					      frag->page_offset + offset - start,
2494c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2495c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2496c613c209SWillem de Bruijn 				csum2 = ops->update(vaddr + p_off, p_len, 0);
249751c56b00SEric Dumazet 				kunmap_atomic(vaddr);
2498c613c209SWillem de Bruijn 				csum = ops->combine(csum, csum2, pos, p_len);
2499c613c209SWillem de Bruijn 				pos += p_len;
2500c613c209SWillem de Bruijn 			}
2501c613c209SWillem de Bruijn 
25021da177e4SLinus Torvalds 			if (!(len -= copy))
25031da177e4SLinus Torvalds 				return csum;
25041da177e4SLinus Torvalds 			offset += copy;
25051da177e4SLinus Torvalds 		}
25061a028e50SDavid S. Miller 		start = end;
25071da177e4SLinus Torvalds 	}
25081da177e4SLinus Torvalds 
2509fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
25101a028e50SDavid S. Miller 		int end;
25111da177e4SLinus Torvalds 
2512547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
25131a028e50SDavid S. Miller 
2514fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
25151da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
25165f92a738SAl Viro 			__wsum csum2;
25171da177e4SLinus Torvalds 			if (copy > len)
25181da177e4SLinus Torvalds 				copy = len;
25192817a336SDaniel Borkmann 			csum2 = __skb_checksum(frag_iter, offset - start,
25202817a336SDaniel Borkmann 					       copy, 0, ops);
25212817a336SDaniel Borkmann 			csum = ops->combine(csum, csum2, pos, copy);
25221da177e4SLinus Torvalds 			if ((len -= copy) == 0)
25231da177e4SLinus Torvalds 				return csum;
25241da177e4SLinus Torvalds 			offset += copy;
25251da177e4SLinus Torvalds 			pos    += copy;
25261da177e4SLinus Torvalds 		}
25271a028e50SDavid S. Miller 		start = end;
25281da177e4SLinus Torvalds 	}
252909a62660SKris Katterjohn 	BUG_ON(len);
25301da177e4SLinus Torvalds 
25311da177e4SLinus Torvalds 	return csum;
25321da177e4SLinus Torvalds }
25332817a336SDaniel Borkmann EXPORT_SYMBOL(__skb_checksum);
25342817a336SDaniel Borkmann 
25352817a336SDaniel Borkmann __wsum skb_checksum(const struct sk_buff *skb, int offset,
25362817a336SDaniel Borkmann 		    int len, __wsum csum)
25372817a336SDaniel Borkmann {
25382817a336SDaniel Borkmann 	const struct skb_checksum_ops ops = {
2539cea80ea8SDaniel Borkmann 		.update  = csum_partial_ext,
25402817a336SDaniel Borkmann 		.combine = csum_block_add_ext,
25412817a336SDaniel Borkmann 	};
25422817a336SDaniel Borkmann 
25432817a336SDaniel Borkmann 	return __skb_checksum(skb, offset, len, csum, &ops);
25442817a336SDaniel Borkmann }
2545b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_checksum);
25461da177e4SLinus Torvalds 
25471da177e4SLinus Torvalds /* Both of above in one bottle. */
25481da177e4SLinus Torvalds 
254981d77662SAl Viro __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
255081d77662SAl Viro 				    u8 *to, int len, __wsum csum)
25511da177e4SLinus Torvalds {
25521a028e50SDavid S. Miller 	int start = skb_headlen(skb);
25531a028e50SDavid S. Miller 	int i, copy = start - offset;
2554fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
25551da177e4SLinus Torvalds 	int pos = 0;
25561da177e4SLinus Torvalds 
25571da177e4SLinus Torvalds 	/* Copy header. */
25581da177e4SLinus Torvalds 	if (copy > 0) {
25591da177e4SLinus Torvalds 		if (copy > len)
25601da177e4SLinus Torvalds 			copy = len;
25611da177e4SLinus Torvalds 		csum = csum_partial_copy_nocheck(skb->data + offset, to,
25621da177e4SLinus Torvalds 						 copy, csum);
25631da177e4SLinus Torvalds 		if ((len -= copy) == 0)
25641da177e4SLinus Torvalds 			return csum;
25651da177e4SLinus Torvalds 		offset += copy;
25661da177e4SLinus Torvalds 		to     += copy;
25671da177e4SLinus Torvalds 		pos	= copy;
25681da177e4SLinus Torvalds 	}
25691da177e4SLinus Torvalds 
25701da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
25711a028e50SDavid S. Miller 		int end;
25721da177e4SLinus Torvalds 
2573547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
25741a028e50SDavid S. Miller 
25759e903e08SEric Dumazet 		end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
25761da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
2577c613c209SWillem de Bruijn 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2578c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2579c613c209SWillem de Bruijn 			struct page *p;
25805084205fSAl Viro 			__wsum csum2;
25811da177e4SLinus Torvalds 			u8 *vaddr;
25821da177e4SLinus Torvalds 
25831da177e4SLinus Torvalds 			if (copy > len)
25841da177e4SLinus Torvalds 				copy = len;
2585c613c209SWillem de Bruijn 
2586c613c209SWillem de Bruijn 			skb_frag_foreach_page(frag,
2587c613c209SWillem de Bruijn 					      frag->page_offset + offset - start,
2588c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2589c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2590c613c209SWillem de Bruijn 				csum2 = csum_partial_copy_nocheck(vaddr + p_off,
2591c613c209SWillem de Bruijn 								  to + copied,
2592c613c209SWillem de Bruijn 								  p_len, 0);
259351c56b00SEric Dumazet 				kunmap_atomic(vaddr);
25941da177e4SLinus Torvalds 				csum = csum_block_add(csum, csum2, pos);
2595c613c209SWillem de Bruijn 				pos += p_len;
2596c613c209SWillem de Bruijn 			}
2597c613c209SWillem de Bruijn 
25981da177e4SLinus Torvalds 			if (!(len -= copy))
25991da177e4SLinus Torvalds 				return csum;
26001da177e4SLinus Torvalds 			offset += copy;
26011da177e4SLinus Torvalds 			to     += copy;
26021da177e4SLinus Torvalds 		}
26031a028e50SDavid S. Miller 		start = end;
26041da177e4SLinus Torvalds 	}
26051da177e4SLinus Torvalds 
2606fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
260781d77662SAl Viro 		__wsum csum2;
26081a028e50SDavid S. Miller 		int end;
26091da177e4SLinus Torvalds 
2610547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
26111a028e50SDavid S. Miller 
2612fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
26131da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
26141da177e4SLinus Torvalds 			if (copy > len)
26151da177e4SLinus Torvalds 				copy = len;
2616fbb398a8SDavid S. Miller 			csum2 = skb_copy_and_csum_bits(frag_iter,
26171a028e50SDavid S. Miller 						       offset - start,
26181da177e4SLinus Torvalds 						       to, copy, 0);
26191da177e4SLinus Torvalds 			csum = csum_block_add(csum, csum2, pos);
26201da177e4SLinus Torvalds 			if ((len -= copy) == 0)
26211da177e4SLinus Torvalds 				return csum;
26221da177e4SLinus Torvalds 			offset += copy;
26231da177e4SLinus Torvalds 			to     += copy;
26241da177e4SLinus Torvalds 			pos    += copy;
26251da177e4SLinus Torvalds 		}
26261a028e50SDavid S. Miller 		start = end;
26271da177e4SLinus Torvalds 	}
262809a62660SKris Katterjohn 	BUG_ON(len);
26291da177e4SLinus Torvalds 	return csum;
26301da177e4SLinus Torvalds }
2631b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_and_csum_bits);
26321da177e4SLinus Torvalds 
26339617813dSDavide Caratti static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum)
26349617813dSDavide Caratti {
26359617813dSDavide Caratti 	net_warn_ratelimited(
26369617813dSDavide Caratti 		"%s: attempt to compute crc32c without libcrc32c.ko\n",
26379617813dSDavide Caratti 		__func__);
26389617813dSDavide Caratti 	return 0;
26399617813dSDavide Caratti }
26409617813dSDavide Caratti 
26419617813dSDavide Caratti static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2,
26429617813dSDavide Caratti 				       int offset, int len)
26439617813dSDavide Caratti {
26449617813dSDavide Caratti 	net_warn_ratelimited(
26459617813dSDavide Caratti 		"%s: attempt to compute crc32c without libcrc32c.ko\n",
26469617813dSDavide Caratti 		__func__);
26479617813dSDavide Caratti 	return 0;
26489617813dSDavide Caratti }
26499617813dSDavide Caratti 
26509617813dSDavide Caratti static const struct skb_checksum_ops default_crc32c_ops = {
26519617813dSDavide Caratti 	.update  = warn_crc32c_csum_update,
26529617813dSDavide Caratti 	.combine = warn_crc32c_csum_combine,
26539617813dSDavide Caratti };
26549617813dSDavide Caratti 
26559617813dSDavide Caratti const struct skb_checksum_ops *crc32c_csum_stub __read_mostly =
26569617813dSDavide Caratti 	&default_crc32c_ops;
26579617813dSDavide Caratti EXPORT_SYMBOL(crc32c_csum_stub);
26589617813dSDavide Caratti 
2659af2806f8SThomas Graf  /**
2660af2806f8SThomas Graf  *	skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2661af2806f8SThomas Graf  *	@from: source buffer
2662af2806f8SThomas Graf  *
2663af2806f8SThomas Graf  *	Calculates the amount of linear headroom needed in the 'to' skb passed
2664af2806f8SThomas Graf  *	into skb_zerocopy().
2665af2806f8SThomas Graf  */
2666af2806f8SThomas Graf unsigned int
2667af2806f8SThomas Graf skb_zerocopy_headlen(const struct sk_buff *from)
2668af2806f8SThomas Graf {
2669af2806f8SThomas Graf 	unsigned int hlen = 0;
2670af2806f8SThomas Graf 
2671af2806f8SThomas Graf 	if (!from->head_frag ||
2672af2806f8SThomas Graf 	    skb_headlen(from) < L1_CACHE_BYTES ||
2673af2806f8SThomas Graf 	    skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2674af2806f8SThomas Graf 		hlen = skb_headlen(from);
2675af2806f8SThomas Graf 
2676af2806f8SThomas Graf 	if (skb_has_frag_list(from))
2677af2806f8SThomas Graf 		hlen = from->len;
2678af2806f8SThomas Graf 
2679af2806f8SThomas Graf 	return hlen;
2680af2806f8SThomas Graf }
2681af2806f8SThomas Graf EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2682af2806f8SThomas Graf 
2683af2806f8SThomas Graf /**
2684af2806f8SThomas Graf  *	skb_zerocopy - Zero copy skb to skb
2685af2806f8SThomas Graf  *	@to: destination buffer
26867fceb4deSMasanari Iida  *	@from: source buffer
2687af2806f8SThomas Graf  *	@len: number of bytes to copy from source buffer
2688af2806f8SThomas Graf  *	@hlen: size of linear headroom in destination buffer
2689af2806f8SThomas Graf  *
2690af2806f8SThomas Graf  *	Copies up to `len` bytes from `from` to `to` by creating references
2691af2806f8SThomas Graf  *	to the frags in the source buffer.
2692af2806f8SThomas Graf  *
2693af2806f8SThomas Graf  *	The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2694af2806f8SThomas Graf  *	headroom in the `to` buffer.
269536d5fe6aSZoltan Kiss  *
269636d5fe6aSZoltan Kiss  *	Return value:
269736d5fe6aSZoltan Kiss  *	0: everything is OK
269836d5fe6aSZoltan Kiss  *	-ENOMEM: couldn't orphan frags of @from due to lack of memory
269936d5fe6aSZoltan Kiss  *	-EFAULT: skb_copy_bits() found some problem with skb geometry
2700af2806f8SThomas Graf  */
270136d5fe6aSZoltan Kiss int
270236d5fe6aSZoltan Kiss skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
2703af2806f8SThomas Graf {
2704af2806f8SThomas Graf 	int i, j = 0;
2705af2806f8SThomas Graf 	int plen = 0; /* length of skb->head fragment */
270636d5fe6aSZoltan Kiss 	int ret;
2707af2806f8SThomas Graf 	struct page *page;
2708af2806f8SThomas Graf 	unsigned int offset;
2709af2806f8SThomas Graf 
2710af2806f8SThomas Graf 	BUG_ON(!from->head_frag && !hlen);
2711af2806f8SThomas Graf 
2712af2806f8SThomas Graf 	/* dont bother with small payloads */
271336d5fe6aSZoltan Kiss 	if (len <= skb_tailroom(to))
271436d5fe6aSZoltan Kiss 		return skb_copy_bits(from, 0, skb_put(to, len), len);
2715af2806f8SThomas Graf 
2716af2806f8SThomas Graf 	if (hlen) {
271736d5fe6aSZoltan Kiss 		ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
271836d5fe6aSZoltan Kiss 		if (unlikely(ret))
271936d5fe6aSZoltan Kiss 			return ret;
2720af2806f8SThomas Graf 		len -= hlen;
2721af2806f8SThomas Graf 	} else {
2722af2806f8SThomas Graf 		plen = min_t(int, skb_headlen(from), len);
2723af2806f8SThomas Graf 		if (plen) {
2724af2806f8SThomas Graf 			page = virt_to_head_page(from->head);
2725af2806f8SThomas Graf 			offset = from->data - (unsigned char *)page_address(page);
2726af2806f8SThomas Graf 			__skb_fill_page_desc(to, 0, page, offset, plen);
2727af2806f8SThomas Graf 			get_page(page);
2728af2806f8SThomas Graf 			j = 1;
2729af2806f8SThomas Graf 			len -= plen;
2730af2806f8SThomas Graf 		}
2731af2806f8SThomas Graf 	}
2732af2806f8SThomas Graf 
2733af2806f8SThomas Graf 	to->truesize += len + plen;
2734af2806f8SThomas Graf 	to->len += len + plen;
2735af2806f8SThomas Graf 	to->data_len += len + plen;
2736af2806f8SThomas Graf 
273736d5fe6aSZoltan Kiss 	if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
273836d5fe6aSZoltan Kiss 		skb_tx_error(from);
273936d5fe6aSZoltan Kiss 		return -ENOMEM;
274036d5fe6aSZoltan Kiss 	}
27411f8b977aSWillem de Bruijn 	skb_zerocopy_clone(to, from, GFP_ATOMIC);
274236d5fe6aSZoltan Kiss 
2743af2806f8SThomas Graf 	for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2744af2806f8SThomas Graf 		if (!len)
2745af2806f8SThomas Graf 			break;
2746af2806f8SThomas Graf 		skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2747af2806f8SThomas Graf 		skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2748af2806f8SThomas Graf 		len -= skb_shinfo(to)->frags[j].size;
2749af2806f8SThomas Graf 		skb_frag_ref(to, j);
2750af2806f8SThomas Graf 		j++;
2751af2806f8SThomas Graf 	}
2752af2806f8SThomas Graf 	skb_shinfo(to)->nr_frags = j;
275336d5fe6aSZoltan Kiss 
275436d5fe6aSZoltan Kiss 	return 0;
2755af2806f8SThomas Graf }
2756af2806f8SThomas Graf EXPORT_SYMBOL_GPL(skb_zerocopy);
2757af2806f8SThomas Graf 
27581da177e4SLinus Torvalds void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
27591da177e4SLinus Torvalds {
2760d3bc23e7SAl Viro 	__wsum csum;
27611da177e4SLinus Torvalds 	long csstart;
27621da177e4SLinus Torvalds 
276384fa7933SPatrick McHardy 	if (skb->ip_summed == CHECKSUM_PARTIAL)
276455508d60SMichał Mirosław 		csstart = skb_checksum_start_offset(skb);
27651da177e4SLinus Torvalds 	else
27661da177e4SLinus Torvalds 		csstart = skb_headlen(skb);
27671da177e4SLinus Torvalds 
276809a62660SKris Katterjohn 	BUG_ON(csstart > skb_headlen(skb));
27691da177e4SLinus Torvalds 
2770d626f62bSArnaldo Carvalho de Melo 	skb_copy_from_linear_data(skb, to, csstart);
27711da177e4SLinus Torvalds 
27721da177e4SLinus Torvalds 	csum = 0;
27731da177e4SLinus Torvalds 	if (csstart != skb->len)
27741da177e4SLinus Torvalds 		csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
27751da177e4SLinus Torvalds 					      skb->len - csstart, 0);
27761da177e4SLinus Torvalds 
277784fa7933SPatrick McHardy 	if (skb->ip_summed == CHECKSUM_PARTIAL) {
2778ff1dcadbSAl Viro 		long csstuff = csstart + skb->csum_offset;
27791da177e4SLinus Torvalds 
2780d3bc23e7SAl Viro 		*((__sum16 *)(to + csstuff)) = csum_fold(csum);
27811da177e4SLinus Torvalds 	}
27821da177e4SLinus Torvalds }
2783b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_and_csum_dev);
27841da177e4SLinus Torvalds 
27851da177e4SLinus Torvalds /**
27861da177e4SLinus Torvalds  *	skb_dequeue - remove from the head of the queue
27871da177e4SLinus Torvalds  *	@list: list to dequeue from
27881da177e4SLinus Torvalds  *
27891da177e4SLinus Torvalds  *	Remove the head of the list. The list lock is taken so the function
27901da177e4SLinus Torvalds  *	may be used safely with other locking list functions. The head item is
27911da177e4SLinus Torvalds  *	returned or %NULL if the list is empty.
27921da177e4SLinus Torvalds  */
27931da177e4SLinus Torvalds 
27941da177e4SLinus Torvalds struct sk_buff *skb_dequeue(struct sk_buff_head *list)
27951da177e4SLinus Torvalds {
27961da177e4SLinus Torvalds 	unsigned long flags;
27971da177e4SLinus Torvalds 	struct sk_buff *result;
27981da177e4SLinus Torvalds 
27991da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
28001da177e4SLinus Torvalds 	result = __skb_dequeue(list);
28011da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
28021da177e4SLinus Torvalds 	return result;
28031da177e4SLinus Torvalds }
2804b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_dequeue);
28051da177e4SLinus Torvalds 
28061da177e4SLinus Torvalds /**
28071da177e4SLinus Torvalds  *	skb_dequeue_tail - remove from the tail of the queue
28081da177e4SLinus Torvalds  *	@list: list to dequeue from
28091da177e4SLinus Torvalds  *
28101da177e4SLinus Torvalds  *	Remove the tail of the list. The list lock is taken so the function
28111da177e4SLinus Torvalds  *	may be used safely with other locking list functions. The tail item is
28121da177e4SLinus Torvalds  *	returned or %NULL if the list is empty.
28131da177e4SLinus Torvalds  */
28141da177e4SLinus Torvalds struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
28151da177e4SLinus Torvalds {
28161da177e4SLinus Torvalds 	unsigned long flags;
28171da177e4SLinus Torvalds 	struct sk_buff *result;
28181da177e4SLinus Torvalds 
28191da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
28201da177e4SLinus Torvalds 	result = __skb_dequeue_tail(list);
28211da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
28221da177e4SLinus Torvalds 	return result;
28231da177e4SLinus Torvalds }
2824b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_dequeue_tail);
28251da177e4SLinus Torvalds 
28261da177e4SLinus Torvalds /**
28271da177e4SLinus Torvalds  *	skb_queue_purge - empty a list
28281da177e4SLinus Torvalds  *	@list: list to empty
28291da177e4SLinus Torvalds  *
28301da177e4SLinus Torvalds  *	Delete all buffers on an &sk_buff list. Each buffer is removed from
28311da177e4SLinus Torvalds  *	the list and one reference dropped. This function takes the list
28321da177e4SLinus Torvalds  *	lock and is atomic with respect to other list locking functions.
28331da177e4SLinus Torvalds  */
28341da177e4SLinus Torvalds void skb_queue_purge(struct sk_buff_head *list)
28351da177e4SLinus Torvalds {
28361da177e4SLinus Torvalds 	struct sk_buff *skb;
28371da177e4SLinus Torvalds 	while ((skb = skb_dequeue(list)) != NULL)
28381da177e4SLinus Torvalds 		kfree_skb(skb);
28391da177e4SLinus Torvalds }
2840b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_queue_purge);
28411da177e4SLinus Torvalds 
28421da177e4SLinus Torvalds /**
28439f5afeaeSYaogong Wang  *	skb_rbtree_purge - empty a skb rbtree
28449f5afeaeSYaogong Wang  *	@root: root of the rbtree to empty
28459f5afeaeSYaogong Wang  *
28469f5afeaeSYaogong Wang  *	Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
28479f5afeaeSYaogong Wang  *	the list and one reference dropped. This function does not take
28489f5afeaeSYaogong Wang  *	any lock. Synchronization should be handled by the caller (e.g., TCP
28499f5afeaeSYaogong Wang  *	out-of-order queue is protected by the socket lock).
28509f5afeaeSYaogong Wang  */
28519f5afeaeSYaogong Wang void skb_rbtree_purge(struct rb_root *root)
28529f5afeaeSYaogong Wang {
28537c90584cSEric Dumazet 	struct rb_node *p = rb_first(root);
28549f5afeaeSYaogong Wang 
28557c90584cSEric Dumazet 	while (p) {
28567c90584cSEric Dumazet 		struct sk_buff *skb = rb_entry(p, struct sk_buff, rbnode);
28577c90584cSEric Dumazet 
28587c90584cSEric Dumazet 		p = rb_next(p);
28597c90584cSEric Dumazet 		rb_erase(&skb->rbnode, root);
28609f5afeaeSYaogong Wang 		kfree_skb(skb);
28617c90584cSEric Dumazet 	}
28629f5afeaeSYaogong Wang }
28639f5afeaeSYaogong Wang 
28649f5afeaeSYaogong Wang /**
28651da177e4SLinus Torvalds  *	skb_queue_head - queue a buffer at the list head
28661da177e4SLinus Torvalds  *	@list: list to use
28671da177e4SLinus Torvalds  *	@newsk: buffer to queue
28681da177e4SLinus Torvalds  *
28691da177e4SLinus Torvalds  *	Queue a buffer at the start of the list. This function takes the
28701da177e4SLinus Torvalds  *	list lock and can be used safely with other locking &sk_buff functions
28711da177e4SLinus Torvalds  *	safely.
28721da177e4SLinus Torvalds  *
28731da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
28741da177e4SLinus Torvalds  */
28751da177e4SLinus Torvalds void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
28761da177e4SLinus Torvalds {
28771da177e4SLinus Torvalds 	unsigned long flags;
28781da177e4SLinus Torvalds 
28791da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
28801da177e4SLinus Torvalds 	__skb_queue_head(list, newsk);
28811da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
28821da177e4SLinus Torvalds }
2883b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_queue_head);
28841da177e4SLinus Torvalds 
28851da177e4SLinus Torvalds /**
28861da177e4SLinus Torvalds  *	skb_queue_tail - queue a buffer at the list tail
28871da177e4SLinus Torvalds  *	@list: list to use
28881da177e4SLinus Torvalds  *	@newsk: buffer to queue
28891da177e4SLinus Torvalds  *
28901da177e4SLinus Torvalds  *	Queue a buffer at the tail of the list. This function takes the
28911da177e4SLinus Torvalds  *	list lock and can be used safely with other locking &sk_buff functions
28921da177e4SLinus Torvalds  *	safely.
28931da177e4SLinus Torvalds  *
28941da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
28951da177e4SLinus Torvalds  */
28961da177e4SLinus Torvalds void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
28971da177e4SLinus Torvalds {
28981da177e4SLinus Torvalds 	unsigned long flags;
28991da177e4SLinus Torvalds 
29001da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
29011da177e4SLinus Torvalds 	__skb_queue_tail(list, newsk);
29021da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
29031da177e4SLinus Torvalds }
2904b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_queue_tail);
29058728b834SDavid S. Miller 
29061da177e4SLinus Torvalds /**
29071da177e4SLinus Torvalds  *	skb_unlink	-	remove a buffer from a list
29081da177e4SLinus Torvalds  *	@skb: buffer to remove
29098728b834SDavid S. Miller  *	@list: list to use
29101da177e4SLinus Torvalds  *
29118728b834SDavid S. Miller  *	Remove a packet from a list. The list locks are taken and this
29128728b834SDavid S. Miller  *	function is atomic with respect to other list locked calls
29131da177e4SLinus Torvalds  *
29148728b834SDavid S. Miller  *	You must know what list the SKB is on.
29151da177e4SLinus Torvalds  */
29168728b834SDavid S. Miller void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
29171da177e4SLinus Torvalds {
29181da177e4SLinus Torvalds 	unsigned long flags;
29191da177e4SLinus Torvalds 
29201da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
29218728b834SDavid S. Miller 	__skb_unlink(skb, list);
29221da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
29231da177e4SLinus Torvalds }
2924b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_unlink);
29251da177e4SLinus Torvalds 
29261da177e4SLinus Torvalds /**
29271da177e4SLinus Torvalds  *	skb_append	-	append a buffer
29281da177e4SLinus Torvalds  *	@old: buffer to insert after
29291da177e4SLinus Torvalds  *	@newsk: buffer to insert
29308728b834SDavid S. Miller  *	@list: list to use
29311da177e4SLinus Torvalds  *
29321da177e4SLinus Torvalds  *	Place a packet after a given packet in a list. The list locks are taken
29331da177e4SLinus Torvalds  *	and this function is atomic with respect to other list locked calls.
29341da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
29351da177e4SLinus Torvalds  */
29368728b834SDavid S. Miller void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
29371da177e4SLinus Torvalds {
29381da177e4SLinus Torvalds 	unsigned long flags;
29391da177e4SLinus Torvalds 
29408728b834SDavid S. Miller 	spin_lock_irqsave(&list->lock, flags);
29417de6c033SGerrit Renker 	__skb_queue_after(list, old, newsk);
29428728b834SDavid S. Miller 	spin_unlock_irqrestore(&list->lock, flags);
29431da177e4SLinus Torvalds }
2944b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_append);
29451da177e4SLinus Torvalds 
29461da177e4SLinus Torvalds /**
29471da177e4SLinus Torvalds  *	skb_insert	-	insert a buffer
29481da177e4SLinus Torvalds  *	@old: buffer to insert before
29491da177e4SLinus Torvalds  *	@newsk: buffer to insert
29508728b834SDavid S. Miller  *	@list: list to use
29511da177e4SLinus Torvalds  *
29528728b834SDavid S. Miller  *	Place a packet before a given packet in a list. The list locks are
29538728b834SDavid S. Miller  * 	taken and this function is atomic with respect to other list locked
29548728b834SDavid S. Miller  *	calls.
29558728b834SDavid S. Miller  *
29561da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
29571da177e4SLinus Torvalds  */
29588728b834SDavid S. Miller void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
29591da177e4SLinus Torvalds {
29601da177e4SLinus Torvalds 	unsigned long flags;
29611da177e4SLinus Torvalds 
29628728b834SDavid S. Miller 	spin_lock_irqsave(&list->lock, flags);
29638728b834SDavid S. Miller 	__skb_insert(newsk, old->prev, old, list);
29648728b834SDavid S. Miller 	spin_unlock_irqrestore(&list->lock, flags);
29651da177e4SLinus Torvalds }
2966b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_insert);
29671da177e4SLinus Torvalds 
29681da177e4SLinus Torvalds static inline void skb_split_inside_header(struct sk_buff *skb,
29691da177e4SLinus Torvalds 					   struct sk_buff* skb1,
29701da177e4SLinus Torvalds 					   const u32 len, const int pos)
29711da177e4SLinus Torvalds {
29721da177e4SLinus Torvalds 	int i;
29731da177e4SLinus Torvalds 
2974d626f62bSArnaldo Carvalho de Melo 	skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2975d626f62bSArnaldo Carvalho de Melo 					 pos - len);
29761da177e4SLinus Torvalds 	/* And move data appendix as is. */
29771da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
29781da177e4SLinus Torvalds 		skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
29791da177e4SLinus Torvalds 
29801da177e4SLinus Torvalds 	skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
29811da177e4SLinus Torvalds 	skb_shinfo(skb)->nr_frags  = 0;
29821da177e4SLinus Torvalds 	skb1->data_len		   = skb->data_len;
29831da177e4SLinus Torvalds 	skb1->len		   += skb1->data_len;
29841da177e4SLinus Torvalds 	skb->data_len		   = 0;
29851da177e4SLinus Torvalds 	skb->len		   = len;
298627a884dcSArnaldo Carvalho de Melo 	skb_set_tail_pointer(skb, len);
29871da177e4SLinus Torvalds }
29881da177e4SLinus Torvalds 
29891da177e4SLinus Torvalds static inline void skb_split_no_header(struct sk_buff *skb,
29901da177e4SLinus Torvalds 				       struct sk_buff* skb1,
29911da177e4SLinus Torvalds 				       const u32 len, int pos)
29921da177e4SLinus Torvalds {
29931da177e4SLinus Torvalds 	int i, k = 0;
29941da177e4SLinus Torvalds 	const int nfrags = skb_shinfo(skb)->nr_frags;
29951da177e4SLinus Torvalds 
29961da177e4SLinus Torvalds 	skb_shinfo(skb)->nr_frags = 0;
29971da177e4SLinus Torvalds 	skb1->len		  = skb1->data_len = skb->len - len;
29981da177e4SLinus Torvalds 	skb->len		  = len;
29991da177e4SLinus Torvalds 	skb->data_len		  = len - pos;
30001da177e4SLinus Torvalds 
30011da177e4SLinus Torvalds 	for (i = 0; i < nfrags; i++) {
30029e903e08SEric Dumazet 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
30031da177e4SLinus Torvalds 
30041da177e4SLinus Torvalds 		if (pos + size > len) {
30051da177e4SLinus Torvalds 			skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
30061da177e4SLinus Torvalds 
30071da177e4SLinus Torvalds 			if (pos < len) {
30081da177e4SLinus Torvalds 				/* Split frag.
30091da177e4SLinus Torvalds 				 * We have two variants in this case:
30101da177e4SLinus Torvalds 				 * 1. Move all the frag to the second
30111da177e4SLinus Torvalds 				 *    part, if it is possible. F.e.
30121da177e4SLinus Torvalds 				 *    this approach is mandatory for TUX,
30131da177e4SLinus Torvalds 				 *    where splitting is expensive.
30141da177e4SLinus Torvalds 				 * 2. Split is accurately. We make this.
30151da177e4SLinus Torvalds 				 */
3016ea2ab693SIan Campbell 				skb_frag_ref(skb, i);
30171da177e4SLinus Torvalds 				skb_shinfo(skb1)->frags[0].page_offset += len - pos;
30189e903e08SEric Dumazet 				skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
30199e903e08SEric Dumazet 				skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
30201da177e4SLinus Torvalds 				skb_shinfo(skb)->nr_frags++;
30211da177e4SLinus Torvalds 			}
30221da177e4SLinus Torvalds 			k++;
30231da177e4SLinus Torvalds 		} else
30241da177e4SLinus Torvalds 			skb_shinfo(skb)->nr_frags++;
30251da177e4SLinus Torvalds 		pos += size;
30261da177e4SLinus Torvalds 	}
30271da177e4SLinus Torvalds 	skb_shinfo(skb1)->nr_frags = k;
30281da177e4SLinus Torvalds }
30291da177e4SLinus Torvalds 
30301da177e4SLinus Torvalds /**
30311da177e4SLinus Torvalds  * skb_split - Split fragmented skb to two parts at length len.
30321da177e4SLinus Torvalds  * @skb: the buffer to split
30331da177e4SLinus Torvalds  * @skb1: the buffer to receive the second part
30341da177e4SLinus Torvalds  * @len: new length for skb
30351da177e4SLinus Torvalds  */
30361da177e4SLinus Torvalds void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
30371da177e4SLinus Torvalds {
30381da177e4SLinus Torvalds 	int pos = skb_headlen(skb);
30391da177e4SLinus Torvalds 
3040fff88030SWillem de Bruijn 	skb_shinfo(skb1)->tx_flags |= skb_shinfo(skb)->tx_flags &
3041fff88030SWillem de Bruijn 				      SKBTX_SHARED_FRAG;
30421f8b977aSWillem de Bruijn 	skb_zerocopy_clone(skb1, skb, 0);
30431da177e4SLinus Torvalds 	if (len < pos)	/* Split line is inside header. */
30441da177e4SLinus Torvalds 		skb_split_inside_header(skb, skb1, len, pos);
30451da177e4SLinus Torvalds 	else		/* Second chunk has no header, nothing to copy. */
30461da177e4SLinus Torvalds 		skb_split_no_header(skb, skb1, len, pos);
30471da177e4SLinus Torvalds }
3048b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_split);
30491da177e4SLinus Torvalds 
30509f782db3SIlpo Järvinen /* Shifting from/to a cloned skb is a no-go.
30519f782db3SIlpo Järvinen  *
30529f782db3SIlpo Järvinen  * Caller cannot keep skb_shinfo related pointers past calling here!
30539f782db3SIlpo Järvinen  */
3054832d11c5SIlpo Järvinen static int skb_prepare_for_shift(struct sk_buff *skb)
3055832d11c5SIlpo Järvinen {
30560ace2856SIlpo Järvinen 	return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3057832d11c5SIlpo Järvinen }
3058832d11c5SIlpo Järvinen 
3059832d11c5SIlpo Järvinen /**
3060832d11c5SIlpo Järvinen  * skb_shift - Shifts paged data partially from skb to another
3061832d11c5SIlpo Järvinen  * @tgt: buffer into which tail data gets added
3062832d11c5SIlpo Järvinen  * @skb: buffer from which the paged data comes from
3063832d11c5SIlpo Järvinen  * @shiftlen: shift up to this many bytes
3064832d11c5SIlpo Järvinen  *
3065832d11c5SIlpo Järvinen  * Attempts to shift up to shiftlen worth of bytes, which may be less than
306620e994a0SFeng King  * the length of the skb, from skb to tgt. Returns number bytes shifted.
3067832d11c5SIlpo Järvinen  * It's up to caller to free skb if everything was shifted.
3068832d11c5SIlpo Järvinen  *
3069832d11c5SIlpo Järvinen  * If @tgt runs out of frags, the whole operation is aborted.
3070832d11c5SIlpo Järvinen  *
3071832d11c5SIlpo Järvinen  * Skb cannot include anything else but paged data while tgt is allowed
3072832d11c5SIlpo Järvinen  * to have non-paged data as well.
3073832d11c5SIlpo Järvinen  *
3074832d11c5SIlpo Järvinen  * TODO: full sized shift could be optimized but that would need
3075832d11c5SIlpo Järvinen  * specialized skb free'er to handle frags without up-to-date nr_frags.
3076832d11c5SIlpo Järvinen  */
3077832d11c5SIlpo Järvinen int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
3078832d11c5SIlpo Järvinen {
3079832d11c5SIlpo Järvinen 	int from, to, merge, todo;
3080832d11c5SIlpo Järvinen 	struct skb_frag_struct *fragfrom, *fragto;
3081832d11c5SIlpo Järvinen 
3082832d11c5SIlpo Järvinen 	BUG_ON(shiftlen > skb->len);
3083f8071cdeSEric Dumazet 
3084f8071cdeSEric Dumazet 	if (skb_headlen(skb))
3085f8071cdeSEric Dumazet 		return 0;
30861f8b977aSWillem de Bruijn 	if (skb_zcopy(tgt) || skb_zcopy(skb))
30871f8b977aSWillem de Bruijn 		return 0;
3088832d11c5SIlpo Järvinen 
3089832d11c5SIlpo Järvinen 	todo = shiftlen;
3090832d11c5SIlpo Järvinen 	from = 0;
3091832d11c5SIlpo Järvinen 	to = skb_shinfo(tgt)->nr_frags;
3092832d11c5SIlpo Järvinen 	fragfrom = &skb_shinfo(skb)->frags[from];
3093832d11c5SIlpo Järvinen 
3094832d11c5SIlpo Järvinen 	/* Actual merge is delayed until the point when we know we can
3095832d11c5SIlpo Järvinen 	 * commit all, so that we don't have to undo partial changes
3096832d11c5SIlpo Järvinen 	 */
3097832d11c5SIlpo Järvinen 	if (!to ||
3098ea2ab693SIan Campbell 	    !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
3099ea2ab693SIan Campbell 			      fragfrom->page_offset)) {
3100832d11c5SIlpo Järvinen 		merge = -1;
3101832d11c5SIlpo Järvinen 	} else {
3102832d11c5SIlpo Järvinen 		merge = to - 1;
3103832d11c5SIlpo Järvinen 
31049e903e08SEric Dumazet 		todo -= skb_frag_size(fragfrom);
3105832d11c5SIlpo Järvinen 		if (todo < 0) {
3106832d11c5SIlpo Järvinen 			if (skb_prepare_for_shift(skb) ||
3107832d11c5SIlpo Järvinen 			    skb_prepare_for_shift(tgt))
3108832d11c5SIlpo Järvinen 				return 0;
3109832d11c5SIlpo Järvinen 
31109f782db3SIlpo Järvinen 			/* All previous frag pointers might be stale! */
31119f782db3SIlpo Järvinen 			fragfrom = &skb_shinfo(skb)->frags[from];
3112832d11c5SIlpo Järvinen 			fragto = &skb_shinfo(tgt)->frags[merge];
3113832d11c5SIlpo Järvinen 
31149e903e08SEric Dumazet 			skb_frag_size_add(fragto, shiftlen);
31159e903e08SEric Dumazet 			skb_frag_size_sub(fragfrom, shiftlen);
3116832d11c5SIlpo Järvinen 			fragfrom->page_offset += shiftlen;
3117832d11c5SIlpo Järvinen 
3118832d11c5SIlpo Järvinen 			goto onlymerged;
3119832d11c5SIlpo Järvinen 		}
3120832d11c5SIlpo Järvinen 
3121832d11c5SIlpo Järvinen 		from++;
3122832d11c5SIlpo Järvinen 	}
3123832d11c5SIlpo Järvinen 
3124832d11c5SIlpo Järvinen 	/* Skip full, not-fitting skb to avoid expensive operations */
3125832d11c5SIlpo Järvinen 	if ((shiftlen == skb->len) &&
3126832d11c5SIlpo Järvinen 	    (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
3127832d11c5SIlpo Järvinen 		return 0;
3128832d11c5SIlpo Järvinen 
3129832d11c5SIlpo Järvinen 	if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
3130832d11c5SIlpo Järvinen 		return 0;
3131832d11c5SIlpo Järvinen 
3132832d11c5SIlpo Järvinen 	while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
3133832d11c5SIlpo Järvinen 		if (to == MAX_SKB_FRAGS)
3134832d11c5SIlpo Järvinen 			return 0;
3135832d11c5SIlpo Järvinen 
3136832d11c5SIlpo Järvinen 		fragfrom = &skb_shinfo(skb)->frags[from];
3137832d11c5SIlpo Järvinen 		fragto = &skb_shinfo(tgt)->frags[to];
3138832d11c5SIlpo Järvinen 
31399e903e08SEric Dumazet 		if (todo >= skb_frag_size(fragfrom)) {
3140832d11c5SIlpo Järvinen 			*fragto = *fragfrom;
31419e903e08SEric Dumazet 			todo -= skb_frag_size(fragfrom);
3142832d11c5SIlpo Järvinen 			from++;
3143832d11c5SIlpo Järvinen 			to++;
3144832d11c5SIlpo Järvinen 
3145832d11c5SIlpo Järvinen 		} else {
3146ea2ab693SIan Campbell 			__skb_frag_ref(fragfrom);
3147832d11c5SIlpo Järvinen 			fragto->page = fragfrom->page;
3148832d11c5SIlpo Järvinen 			fragto->page_offset = fragfrom->page_offset;
31499e903e08SEric Dumazet 			skb_frag_size_set(fragto, todo);
3150832d11c5SIlpo Järvinen 
3151832d11c5SIlpo Järvinen 			fragfrom->page_offset += todo;
31529e903e08SEric Dumazet 			skb_frag_size_sub(fragfrom, todo);
3153832d11c5SIlpo Järvinen 			todo = 0;
3154832d11c5SIlpo Järvinen 
3155832d11c5SIlpo Järvinen 			to++;
3156832d11c5SIlpo Järvinen 			break;
3157832d11c5SIlpo Järvinen 		}
3158832d11c5SIlpo Järvinen 	}
3159832d11c5SIlpo Järvinen 
3160832d11c5SIlpo Järvinen 	/* Ready to "commit" this state change to tgt */
3161832d11c5SIlpo Järvinen 	skb_shinfo(tgt)->nr_frags = to;
3162832d11c5SIlpo Järvinen 
3163832d11c5SIlpo Järvinen 	if (merge >= 0) {
3164832d11c5SIlpo Järvinen 		fragfrom = &skb_shinfo(skb)->frags[0];
3165832d11c5SIlpo Järvinen 		fragto = &skb_shinfo(tgt)->frags[merge];
3166832d11c5SIlpo Järvinen 
31679e903e08SEric Dumazet 		skb_frag_size_add(fragto, skb_frag_size(fragfrom));
3168ea2ab693SIan Campbell 		__skb_frag_unref(fragfrom);
3169832d11c5SIlpo Järvinen 	}
3170832d11c5SIlpo Järvinen 
3171832d11c5SIlpo Järvinen 	/* Reposition in the original skb */
3172832d11c5SIlpo Järvinen 	to = 0;
3173832d11c5SIlpo Järvinen 	while (from < skb_shinfo(skb)->nr_frags)
3174832d11c5SIlpo Järvinen 		skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
3175832d11c5SIlpo Järvinen 	skb_shinfo(skb)->nr_frags = to;
3176832d11c5SIlpo Järvinen 
3177832d11c5SIlpo Järvinen 	BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
3178832d11c5SIlpo Järvinen 
3179832d11c5SIlpo Järvinen onlymerged:
3180832d11c5SIlpo Järvinen 	/* Most likely the tgt won't ever need its checksum anymore, skb on
3181832d11c5SIlpo Järvinen 	 * the other hand might need it if it needs to be resent
3182832d11c5SIlpo Järvinen 	 */
3183832d11c5SIlpo Järvinen 	tgt->ip_summed = CHECKSUM_PARTIAL;
3184832d11c5SIlpo Järvinen 	skb->ip_summed = CHECKSUM_PARTIAL;
3185832d11c5SIlpo Järvinen 
3186832d11c5SIlpo Järvinen 	/* Yak, is it really working this way? Some helper please? */
3187832d11c5SIlpo Järvinen 	skb->len -= shiftlen;
3188832d11c5SIlpo Järvinen 	skb->data_len -= shiftlen;
3189832d11c5SIlpo Järvinen 	skb->truesize -= shiftlen;
3190832d11c5SIlpo Järvinen 	tgt->len += shiftlen;
3191832d11c5SIlpo Järvinen 	tgt->data_len += shiftlen;
3192832d11c5SIlpo Järvinen 	tgt->truesize += shiftlen;
3193832d11c5SIlpo Järvinen 
3194832d11c5SIlpo Järvinen 	return shiftlen;
3195832d11c5SIlpo Järvinen }
3196832d11c5SIlpo Järvinen 
3197677e90edSThomas Graf /**
3198677e90edSThomas Graf  * skb_prepare_seq_read - Prepare a sequential read of skb data
3199677e90edSThomas Graf  * @skb: the buffer to read
3200677e90edSThomas Graf  * @from: lower offset of data to be read
3201677e90edSThomas Graf  * @to: upper offset of data to be read
3202677e90edSThomas Graf  * @st: state variable
3203677e90edSThomas Graf  *
3204677e90edSThomas Graf  * Initializes the specified state variable. Must be called before
3205677e90edSThomas Graf  * invoking skb_seq_read() for the first time.
3206677e90edSThomas Graf  */
3207677e90edSThomas Graf void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
3208677e90edSThomas Graf 			  unsigned int to, struct skb_seq_state *st)
3209677e90edSThomas Graf {
3210677e90edSThomas Graf 	st->lower_offset = from;
3211677e90edSThomas Graf 	st->upper_offset = to;
3212677e90edSThomas Graf 	st->root_skb = st->cur_skb = skb;
3213677e90edSThomas Graf 	st->frag_idx = st->stepped_offset = 0;
3214677e90edSThomas Graf 	st->frag_data = NULL;
3215677e90edSThomas Graf }
3216b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_prepare_seq_read);
3217677e90edSThomas Graf 
3218677e90edSThomas Graf /**
3219677e90edSThomas Graf  * skb_seq_read - Sequentially read skb data
3220677e90edSThomas Graf  * @consumed: number of bytes consumed by the caller so far
3221677e90edSThomas Graf  * @data: destination pointer for data to be returned
3222677e90edSThomas Graf  * @st: state variable
3223677e90edSThomas Graf  *
3224bc32383cSMathias Krause  * Reads a block of skb data at @consumed relative to the
3225677e90edSThomas Graf  * lower offset specified to skb_prepare_seq_read(). Assigns
3226bc32383cSMathias Krause  * the head of the data block to @data and returns the length
3227677e90edSThomas Graf  * of the block or 0 if the end of the skb data or the upper
3228677e90edSThomas Graf  * offset has been reached.
3229677e90edSThomas Graf  *
3230677e90edSThomas Graf  * The caller is not required to consume all of the data
3231bc32383cSMathias Krause  * returned, i.e. @consumed is typically set to the number
3232677e90edSThomas Graf  * of bytes already consumed and the next call to
3233677e90edSThomas Graf  * skb_seq_read() will return the remaining part of the block.
3234677e90edSThomas Graf  *
323525985edcSLucas De Marchi  * Note 1: The size of each block of data returned can be arbitrary,
3236e793c0f7SMasanari Iida  *       this limitation is the cost for zerocopy sequential
3237677e90edSThomas Graf  *       reads of potentially non linear data.
3238677e90edSThomas Graf  *
3239bc2cda1eSRandy Dunlap  * Note 2: Fragment lists within fragments are not implemented
3240677e90edSThomas Graf  *       at the moment, state->root_skb could be replaced with
3241677e90edSThomas Graf  *       a stack for this purpose.
3242677e90edSThomas Graf  */
3243677e90edSThomas Graf unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
3244677e90edSThomas Graf 			  struct skb_seq_state *st)
3245677e90edSThomas Graf {
3246677e90edSThomas Graf 	unsigned int block_limit, abs_offset = consumed + st->lower_offset;
3247677e90edSThomas Graf 	skb_frag_t *frag;
3248677e90edSThomas Graf 
3249aeb193eaSWedson Almeida Filho 	if (unlikely(abs_offset >= st->upper_offset)) {
3250aeb193eaSWedson Almeida Filho 		if (st->frag_data) {
3251aeb193eaSWedson Almeida Filho 			kunmap_atomic(st->frag_data);
3252aeb193eaSWedson Almeida Filho 			st->frag_data = NULL;
3253aeb193eaSWedson Almeida Filho 		}
3254677e90edSThomas Graf 		return 0;
3255aeb193eaSWedson Almeida Filho 	}
3256677e90edSThomas Graf 
3257677e90edSThomas Graf next_skb:
325895e3b24cSHerbert Xu 	block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
3259677e90edSThomas Graf 
3260995b3379SThomas Chenault 	if (abs_offset < block_limit && !st->frag_data) {
326195e3b24cSHerbert Xu 		*data = st->cur_skb->data + (abs_offset - st->stepped_offset);
3262677e90edSThomas Graf 		return block_limit - abs_offset;
3263677e90edSThomas Graf 	}
3264677e90edSThomas Graf 
3265677e90edSThomas Graf 	if (st->frag_idx == 0 && !st->frag_data)
3266677e90edSThomas Graf 		st->stepped_offset += skb_headlen(st->cur_skb);
3267677e90edSThomas Graf 
3268677e90edSThomas Graf 	while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
3269677e90edSThomas Graf 		frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
32709e903e08SEric Dumazet 		block_limit = skb_frag_size(frag) + st->stepped_offset;
3271677e90edSThomas Graf 
3272677e90edSThomas Graf 		if (abs_offset < block_limit) {
3273677e90edSThomas Graf 			if (!st->frag_data)
327451c56b00SEric Dumazet 				st->frag_data = kmap_atomic(skb_frag_page(frag));
3275677e90edSThomas Graf 
3276677e90edSThomas Graf 			*data = (u8 *) st->frag_data + frag->page_offset +
3277677e90edSThomas Graf 				(abs_offset - st->stepped_offset);
3278677e90edSThomas Graf 
3279677e90edSThomas Graf 			return block_limit - abs_offset;
3280677e90edSThomas Graf 		}
3281677e90edSThomas Graf 
3282677e90edSThomas Graf 		if (st->frag_data) {
328351c56b00SEric Dumazet 			kunmap_atomic(st->frag_data);
3284677e90edSThomas Graf 			st->frag_data = NULL;
3285677e90edSThomas Graf 		}
3286677e90edSThomas Graf 
3287677e90edSThomas Graf 		st->frag_idx++;
32889e903e08SEric Dumazet 		st->stepped_offset += skb_frag_size(frag);
3289677e90edSThomas Graf 	}
3290677e90edSThomas Graf 
32915b5a60daSOlaf Kirch 	if (st->frag_data) {
329251c56b00SEric Dumazet 		kunmap_atomic(st->frag_data);
32935b5a60daSOlaf Kirch 		st->frag_data = NULL;
32945b5a60daSOlaf Kirch 	}
32955b5a60daSOlaf Kirch 
329621dc3301SDavid S. Miller 	if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
3297677e90edSThomas Graf 		st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
329895e3b24cSHerbert Xu 		st->frag_idx = 0;
3299677e90edSThomas Graf 		goto next_skb;
330071b3346dSShyam Iyer 	} else if (st->cur_skb->next) {
330171b3346dSShyam Iyer 		st->cur_skb = st->cur_skb->next;
330271b3346dSShyam Iyer 		st->frag_idx = 0;
3303677e90edSThomas Graf 		goto next_skb;
3304677e90edSThomas Graf 	}
3305677e90edSThomas Graf 
3306677e90edSThomas Graf 	return 0;
3307677e90edSThomas Graf }
3308b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_seq_read);
3309677e90edSThomas Graf 
3310677e90edSThomas Graf /**
3311677e90edSThomas Graf  * skb_abort_seq_read - Abort a sequential read of skb data
3312677e90edSThomas Graf  * @st: state variable
3313677e90edSThomas Graf  *
3314677e90edSThomas Graf  * Must be called if skb_seq_read() was not called until it
3315677e90edSThomas Graf  * returned 0.
3316677e90edSThomas Graf  */
3317677e90edSThomas Graf void skb_abort_seq_read(struct skb_seq_state *st)
3318677e90edSThomas Graf {
3319677e90edSThomas Graf 	if (st->frag_data)
332051c56b00SEric Dumazet 		kunmap_atomic(st->frag_data);
3321677e90edSThomas Graf }
3322b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_abort_seq_read);
3323677e90edSThomas Graf 
33243fc7e8a6SThomas Graf #define TS_SKB_CB(state)	((struct skb_seq_state *) &((state)->cb))
33253fc7e8a6SThomas Graf 
33263fc7e8a6SThomas Graf static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
33273fc7e8a6SThomas Graf 					  struct ts_config *conf,
33283fc7e8a6SThomas Graf 					  struct ts_state *state)
33293fc7e8a6SThomas Graf {
33303fc7e8a6SThomas Graf 	return skb_seq_read(offset, text, TS_SKB_CB(state));
33313fc7e8a6SThomas Graf }
33323fc7e8a6SThomas Graf 
33333fc7e8a6SThomas Graf static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
33343fc7e8a6SThomas Graf {
33353fc7e8a6SThomas Graf 	skb_abort_seq_read(TS_SKB_CB(state));
33363fc7e8a6SThomas Graf }
33373fc7e8a6SThomas Graf 
33383fc7e8a6SThomas Graf /**
33393fc7e8a6SThomas Graf  * skb_find_text - Find a text pattern in skb data
33403fc7e8a6SThomas Graf  * @skb: the buffer to look in
33413fc7e8a6SThomas Graf  * @from: search offset
33423fc7e8a6SThomas Graf  * @to: search limit
33433fc7e8a6SThomas Graf  * @config: textsearch configuration
33443fc7e8a6SThomas Graf  *
33453fc7e8a6SThomas Graf  * Finds a pattern in the skb data according to the specified
33463fc7e8a6SThomas Graf  * textsearch configuration. Use textsearch_next() to retrieve
33473fc7e8a6SThomas Graf  * subsequent occurrences of the pattern. Returns the offset
33483fc7e8a6SThomas Graf  * to the first occurrence or UINT_MAX if no match was found.
33493fc7e8a6SThomas Graf  */
33503fc7e8a6SThomas Graf unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
3351059a2440SBojan Prtvar 			   unsigned int to, struct ts_config *config)
33523fc7e8a6SThomas Graf {
3353059a2440SBojan Prtvar 	struct ts_state state;
3354f72b948dSPhil Oester 	unsigned int ret;
3355f72b948dSPhil Oester 
33563fc7e8a6SThomas Graf 	config->get_next_block = skb_ts_get_next_block;
33573fc7e8a6SThomas Graf 	config->finish = skb_ts_finish;
33583fc7e8a6SThomas Graf 
3359059a2440SBojan Prtvar 	skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
33603fc7e8a6SThomas Graf 
3361059a2440SBojan Prtvar 	ret = textsearch_find(config, &state);
3362f72b948dSPhil Oester 	return (ret <= to - from ? ret : UINT_MAX);
33633fc7e8a6SThomas Graf }
3364b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_find_text);
33653fc7e8a6SThomas Graf 
3366e89e9cf5SAnanda Raju /**
33672c53040fSBen Hutchings  * skb_append_datato_frags - append the user data to a skb
3368e89e9cf5SAnanda Raju  * @sk: sock  structure
3369e793c0f7SMasanari Iida  * @skb: skb structure to be appended with user data.
3370e89e9cf5SAnanda Raju  * @getfrag: call back function to be used for getting the user data
3371e89e9cf5SAnanda Raju  * @from: pointer to user message iov
3372e89e9cf5SAnanda Raju  * @length: length of the iov message
3373e89e9cf5SAnanda Raju  *
3374e89e9cf5SAnanda Raju  * Description: This procedure append the user data in the fragment part
3375e89e9cf5SAnanda Raju  * of the skb if any page alloc fails user this procedure returns  -ENOMEM
3376e89e9cf5SAnanda Raju  */
3377e89e9cf5SAnanda Raju int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
3378dab9630fSMartin Waitz 			int (*getfrag)(void *from, char *to, int offset,
3379e89e9cf5SAnanda Raju 					int len, int odd, struct sk_buff *skb),
3380e89e9cf5SAnanda Raju 			void *from, int length)
3381e89e9cf5SAnanda Raju {
3382b2111724SEric Dumazet 	int frg_cnt = skb_shinfo(skb)->nr_frags;
3383b2111724SEric Dumazet 	int copy;
3384e89e9cf5SAnanda Raju 	int offset = 0;
3385e89e9cf5SAnanda Raju 	int ret;
3386b2111724SEric Dumazet 	struct page_frag *pfrag = &current->task_frag;
3387e89e9cf5SAnanda Raju 
3388e89e9cf5SAnanda Raju 	do {
3389e89e9cf5SAnanda Raju 		/* Return error if we don't have space for new frag */
3390e89e9cf5SAnanda Raju 		if (frg_cnt >= MAX_SKB_FRAGS)
3391b2111724SEric Dumazet 			return -EMSGSIZE;
3392e89e9cf5SAnanda Raju 
3393b2111724SEric Dumazet 		if (!sk_page_frag_refill(sk, pfrag))
3394e89e9cf5SAnanda Raju 			return -ENOMEM;
3395e89e9cf5SAnanda Raju 
3396e89e9cf5SAnanda Raju 		/* copy the user data to page */
3397b2111724SEric Dumazet 		copy = min_t(int, length, pfrag->size - pfrag->offset);
3398e89e9cf5SAnanda Raju 
3399b2111724SEric Dumazet 		ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
3400e89e9cf5SAnanda Raju 			      offset, copy, 0, skb);
3401e89e9cf5SAnanda Raju 		if (ret < 0)
3402e89e9cf5SAnanda Raju 			return -EFAULT;
3403e89e9cf5SAnanda Raju 
3404e89e9cf5SAnanda Raju 		/* copy was successful so update the size parameters */
3405b2111724SEric Dumazet 		skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
3406b2111724SEric Dumazet 				   copy);
3407b2111724SEric Dumazet 		frg_cnt++;
3408b2111724SEric Dumazet 		pfrag->offset += copy;
3409b2111724SEric Dumazet 		get_page(pfrag->page);
3410b2111724SEric Dumazet 
3411b2111724SEric Dumazet 		skb->truesize += copy;
341214afee4bSReshetova, Elena 		refcount_add(copy, &sk->sk_wmem_alloc);
3413e89e9cf5SAnanda Raju 		skb->len += copy;
3414e89e9cf5SAnanda Raju 		skb->data_len += copy;
3415e89e9cf5SAnanda Raju 		offset += copy;
3416e89e9cf5SAnanda Raju 		length -= copy;
3417e89e9cf5SAnanda Raju 
3418e89e9cf5SAnanda Raju 	} while (length > 0);
3419e89e9cf5SAnanda Raju 
3420e89e9cf5SAnanda Raju 	return 0;
3421e89e9cf5SAnanda Raju }
3422b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_append_datato_frags);
3423e89e9cf5SAnanda Raju 
3424be12a1feSHannes Frederic Sowa int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3425be12a1feSHannes Frederic Sowa 			 int offset, size_t size)
3426be12a1feSHannes Frederic Sowa {
3427be12a1feSHannes Frederic Sowa 	int i = skb_shinfo(skb)->nr_frags;
3428be12a1feSHannes Frederic Sowa 
3429be12a1feSHannes Frederic Sowa 	if (skb_can_coalesce(skb, i, page, offset)) {
3430be12a1feSHannes Frederic Sowa 		skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3431be12a1feSHannes Frederic Sowa 	} else if (i < MAX_SKB_FRAGS) {
3432be12a1feSHannes Frederic Sowa 		get_page(page);
3433be12a1feSHannes Frederic Sowa 		skb_fill_page_desc(skb, i, page, offset, size);
3434be12a1feSHannes Frederic Sowa 	} else {
3435be12a1feSHannes Frederic Sowa 		return -EMSGSIZE;
3436be12a1feSHannes Frederic Sowa 	}
3437be12a1feSHannes Frederic Sowa 
3438be12a1feSHannes Frederic Sowa 	return 0;
3439be12a1feSHannes Frederic Sowa }
3440be12a1feSHannes Frederic Sowa EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3441be12a1feSHannes Frederic Sowa 
3442cbb042f9SHerbert Xu /**
3443cbb042f9SHerbert Xu  *	skb_pull_rcsum - pull skb and update receive checksum
3444cbb042f9SHerbert Xu  *	@skb: buffer to update
3445cbb042f9SHerbert Xu  *	@len: length of data pulled
3446cbb042f9SHerbert Xu  *
3447cbb042f9SHerbert Xu  *	This function performs an skb_pull on the packet and updates
3448fee54fa5SUrs Thuermann  *	the CHECKSUM_COMPLETE checksum.  It should be used on
344984fa7933SPatrick McHardy  *	receive path processing instead of skb_pull unless you know
345084fa7933SPatrick McHardy  *	that the checksum difference is zero (e.g., a valid IP header)
345184fa7933SPatrick McHardy  *	or you are setting ip_summed to CHECKSUM_NONE.
3452cbb042f9SHerbert Xu  */
3453af72868bSJohannes Berg void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3454cbb042f9SHerbert Xu {
345531b33dfbSPravin B Shelar 	unsigned char *data = skb->data;
345631b33dfbSPravin B Shelar 
3457cbb042f9SHerbert Xu 	BUG_ON(len > skb->len);
345831b33dfbSPravin B Shelar 	__skb_pull(skb, len);
345931b33dfbSPravin B Shelar 	skb_postpull_rcsum(skb, data, len);
346031b33dfbSPravin B Shelar 	return skb->data;
3461cbb042f9SHerbert Xu }
3462f94691acSArnaldo Carvalho de Melo EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3463f94691acSArnaldo Carvalho de Melo 
3464f4c50d99SHerbert Xu /**
3465f4c50d99SHerbert Xu  *	skb_segment - Perform protocol segmentation on skb.
3466df5771ffSMichael S. Tsirkin  *	@head_skb: buffer to segment
3467576a30ebSHerbert Xu  *	@features: features for the output path (see dev->features)
3468f4c50d99SHerbert Xu  *
3469f4c50d99SHerbert Xu  *	This function performs segmentation on the given skb.  It returns
34704c821d75SBen Hutchings  *	a pointer to the first in a list of new skbs for the segments.
34714c821d75SBen Hutchings  *	In case of error it returns ERR_PTR(err).
3472f4c50d99SHerbert Xu  */
3473df5771ffSMichael S. Tsirkin struct sk_buff *skb_segment(struct sk_buff *head_skb,
3474df5771ffSMichael S. Tsirkin 			    netdev_features_t features)
3475f4c50d99SHerbert Xu {
3476f4c50d99SHerbert Xu 	struct sk_buff *segs = NULL;
3477f4c50d99SHerbert Xu 	struct sk_buff *tail = NULL;
34781a4cedafSMichael S. Tsirkin 	struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
3479df5771ffSMichael S. Tsirkin 	skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3480df5771ffSMichael S. Tsirkin 	unsigned int mss = skb_shinfo(head_skb)->gso_size;
3481df5771ffSMichael S. Tsirkin 	unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
34821fd819ecSMichael S. Tsirkin 	struct sk_buff *frag_skb = head_skb;
3483f4c50d99SHerbert Xu 	unsigned int offset = doffset;
3484df5771ffSMichael S. Tsirkin 	unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
3485802ab55aSAlexander Duyck 	unsigned int partial_segs = 0;
3486f4c50d99SHerbert Xu 	unsigned int headroom;
3487802ab55aSAlexander Duyck 	unsigned int len = head_skb->len;
3488ec5f0615SPravin B Shelar 	__be16 proto;
348936c98382SAlexander Duyck 	bool csum, sg;
3490df5771ffSMichael S. Tsirkin 	int nfrags = skb_shinfo(head_skb)->nr_frags;
3491f4c50d99SHerbert Xu 	int err = -ENOMEM;
3492f4c50d99SHerbert Xu 	int i = 0;
3493f4c50d99SHerbert Xu 	int pos;
349453d6471cSVlad Yasevich 	int dummy;
3495f4c50d99SHerbert Xu 
34965882a07cSWei-Chun Chao 	__skb_push(head_skb, doffset);
349753d6471cSVlad Yasevich 	proto = skb_network_protocol(head_skb, &dummy);
3498ec5f0615SPravin B Shelar 	if (unlikely(!proto))
3499ec5f0615SPravin B Shelar 		return ERR_PTR(-EINVAL);
3500ec5f0615SPravin B Shelar 
350136c98382SAlexander Duyck 	sg = !!(features & NETIF_F_SG);
3502f245d079SAlexander Duyck 	csum = !!can_checksum_protocol(features, proto);
35037e2b10c1STom Herbert 
350407b26c94SSteffen Klassert 	if (sg && csum && (mss != GSO_BY_FRAGS))  {
350507b26c94SSteffen Klassert 		if (!(features & NETIF_F_GSO_PARTIAL)) {
350607b26c94SSteffen Klassert 			struct sk_buff *iter;
350743170c4eSIlan Tayari 			unsigned int frag_len;
350807b26c94SSteffen Klassert 
350907b26c94SSteffen Klassert 			if (!list_skb ||
351007b26c94SSteffen Klassert 			    !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
351107b26c94SSteffen Klassert 				goto normal;
351207b26c94SSteffen Klassert 
351343170c4eSIlan Tayari 			/* If we get here then all the required
351443170c4eSIlan Tayari 			 * GSO features except frag_list are supported.
351543170c4eSIlan Tayari 			 * Try to split the SKB to multiple GSO SKBs
351643170c4eSIlan Tayari 			 * with no frag_list.
351743170c4eSIlan Tayari 			 * Currently we can do that only when the buffers don't
351843170c4eSIlan Tayari 			 * have a linear part and all the buffers except
351943170c4eSIlan Tayari 			 * the last are of the same length.
352007b26c94SSteffen Klassert 			 */
352143170c4eSIlan Tayari 			frag_len = list_skb->len;
352207b26c94SSteffen Klassert 			skb_walk_frags(head_skb, iter) {
352343170c4eSIlan Tayari 				if (frag_len != iter->len && iter->next)
352443170c4eSIlan Tayari 					goto normal;
3525eaffadbbSIlan Tayari 				if (skb_headlen(iter) && !iter->head_frag)
352607b26c94SSteffen Klassert 					goto normal;
352707b26c94SSteffen Klassert 
352807b26c94SSteffen Klassert 				len -= iter->len;
352907b26c94SSteffen Klassert 			}
353043170c4eSIlan Tayari 
353143170c4eSIlan Tayari 			if (len != frag_len)
353243170c4eSIlan Tayari 				goto normal;
353307b26c94SSteffen Klassert 		}
353407b26c94SSteffen Klassert 
3535802ab55aSAlexander Duyck 		/* GSO partial only requires that we trim off any excess that
3536802ab55aSAlexander Duyck 		 * doesn't fit into an MSS sized block, so take care of that
3537802ab55aSAlexander Duyck 		 * now.
3538802ab55aSAlexander Duyck 		 */
3539802ab55aSAlexander Duyck 		partial_segs = len / mss;
3540d7fb5a80SAlexander Duyck 		if (partial_segs > 1)
3541802ab55aSAlexander Duyck 			mss *= partial_segs;
3542d7fb5a80SAlexander Duyck 		else
3543d7fb5a80SAlexander Duyck 			partial_segs = 0;
3544802ab55aSAlexander Duyck 	}
3545802ab55aSAlexander Duyck 
354607b26c94SSteffen Klassert normal:
3547df5771ffSMichael S. Tsirkin 	headroom = skb_headroom(head_skb);
3548df5771ffSMichael S. Tsirkin 	pos = skb_headlen(head_skb);
3549f4c50d99SHerbert Xu 
3550f4c50d99SHerbert Xu 	do {
3551f4c50d99SHerbert Xu 		struct sk_buff *nskb;
35528cb19905SMichael S. Tsirkin 		skb_frag_t *nskb_frag;
3553c8884eddSHerbert Xu 		int hsize;
3554f4c50d99SHerbert Xu 		int size;
3555f4c50d99SHerbert Xu 
35563953c46cSMarcelo Ricardo Leitner 		if (unlikely(mss == GSO_BY_FRAGS)) {
35573953c46cSMarcelo Ricardo Leitner 			len = list_skb->len;
35583953c46cSMarcelo Ricardo Leitner 		} else {
3559df5771ffSMichael S. Tsirkin 			len = head_skb->len - offset;
3560f4c50d99SHerbert Xu 			if (len > mss)
3561f4c50d99SHerbert Xu 				len = mss;
35623953c46cSMarcelo Ricardo Leitner 		}
3563f4c50d99SHerbert Xu 
3564df5771ffSMichael S. Tsirkin 		hsize = skb_headlen(head_skb) - offset;
3565f4c50d99SHerbert Xu 		if (hsize < 0)
3566f4c50d99SHerbert Xu 			hsize = 0;
3567c8884eddSHerbert Xu 		if (hsize > len || !sg)
3568c8884eddSHerbert Xu 			hsize = len;
3569f4c50d99SHerbert Xu 
35701a4cedafSMichael S. Tsirkin 		if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
35711a4cedafSMichael S. Tsirkin 		    (skb_headlen(list_skb) == len || sg)) {
35721a4cedafSMichael S. Tsirkin 			BUG_ON(skb_headlen(list_skb) > len);
357389319d38SHerbert Xu 
35749d8506ccSHerbert Xu 			i = 0;
35751a4cedafSMichael S. Tsirkin 			nfrags = skb_shinfo(list_skb)->nr_frags;
35761a4cedafSMichael S. Tsirkin 			frag = skb_shinfo(list_skb)->frags;
35771fd819ecSMichael S. Tsirkin 			frag_skb = list_skb;
35781a4cedafSMichael S. Tsirkin 			pos += skb_headlen(list_skb);
35799d8506ccSHerbert Xu 
35809d8506ccSHerbert Xu 			while (pos < offset + len) {
35819d8506ccSHerbert Xu 				BUG_ON(i >= nfrags);
35829d8506ccSHerbert Xu 
35834e1beba1SMichael S. Tsirkin 				size = skb_frag_size(frag);
35849d8506ccSHerbert Xu 				if (pos + size > offset + len)
35859d8506ccSHerbert Xu 					break;
35869d8506ccSHerbert Xu 
35879d8506ccSHerbert Xu 				i++;
35889d8506ccSHerbert Xu 				pos += size;
35894e1beba1SMichael S. Tsirkin 				frag++;
35909d8506ccSHerbert Xu 			}
35919d8506ccSHerbert Xu 
35921a4cedafSMichael S. Tsirkin 			nskb = skb_clone(list_skb, GFP_ATOMIC);
35931a4cedafSMichael S. Tsirkin 			list_skb = list_skb->next;
359489319d38SHerbert Xu 
3595f4c50d99SHerbert Xu 			if (unlikely(!nskb))
3596f4c50d99SHerbert Xu 				goto err;
3597f4c50d99SHerbert Xu 
35989d8506ccSHerbert Xu 			if (unlikely(pskb_trim(nskb, len))) {
35999d8506ccSHerbert Xu 				kfree_skb(nskb);
36009d8506ccSHerbert Xu 				goto err;
36019d8506ccSHerbert Xu 			}
36029d8506ccSHerbert Xu 
3603ec47ea82SAlexander Duyck 			hsize = skb_end_offset(nskb);
360489319d38SHerbert Xu 			if (skb_cow_head(nskb, doffset + headroom)) {
360589319d38SHerbert Xu 				kfree_skb(nskb);
360689319d38SHerbert Xu 				goto err;
360789319d38SHerbert Xu 			}
360889319d38SHerbert Xu 
3609ec47ea82SAlexander Duyck 			nskb->truesize += skb_end_offset(nskb) - hsize;
361089319d38SHerbert Xu 			skb_release_head_state(nskb);
361189319d38SHerbert Xu 			__skb_push(nskb, doffset);
361289319d38SHerbert Xu 		} else {
3613c93bdd0eSMel Gorman 			nskb = __alloc_skb(hsize + doffset + headroom,
3614df5771ffSMichael S. Tsirkin 					   GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
3615c93bdd0eSMel Gorman 					   NUMA_NO_NODE);
361689319d38SHerbert Xu 
361789319d38SHerbert Xu 			if (unlikely(!nskb))
361889319d38SHerbert Xu 				goto err;
361989319d38SHerbert Xu 
362089319d38SHerbert Xu 			skb_reserve(nskb, headroom);
362189319d38SHerbert Xu 			__skb_put(nskb, doffset);
362289319d38SHerbert Xu 		}
362389319d38SHerbert Xu 
3624f4c50d99SHerbert Xu 		if (segs)
3625f4c50d99SHerbert Xu 			tail->next = nskb;
3626f4c50d99SHerbert Xu 		else
3627f4c50d99SHerbert Xu 			segs = nskb;
3628f4c50d99SHerbert Xu 		tail = nskb;
3629f4c50d99SHerbert Xu 
3630df5771ffSMichael S. Tsirkin 		__copy_skb_header(nskb, head_skb);
3631f4c50d99SHerbert Xu 
3632030737bcSEric Dumazet 		skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
3633fcdfe3a7SVlad Yasevich 		skb_reset_mac_len(nskb);
363468c33163SPravin B Shelar 
3635df5771ffSMichael S. Tsirkin 		skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
363668c33163SPravin B Shelar 						 nskb->data - tnl_hlen,
363768c33163SPravin B Shelar 						 doffset + tnl_hlen);
363889319d38SHerbert Xu 
36399d8506ccSHerbert Xu 		if (nskb->len == len + doffset)
36401cdbcb79SSimon Horman 			goto perform_csum_check;
364189319d38SHerbert Xu 
36427fbeffedSAlexander Duyck 		if (!sg) {
36437fbeffedSAlexander Duyck 			if (!nskb->remcsum_offload)
36446f85a124SHerbert Xu 				nskb->ip_summed = CHECKSUM_NONE;
364576443456SAlexander Duyck 			SKB_GSO_CB(nskb)->csum =
364676443456SAlexander Duyck 				skb_copy_and_csum_bits(head_skb, offset,
3647f4c50d99SHerbert Xu 						       skb_put(nskb, len),
3648f4c50d99SHerbert Xu 						       len, 0);
36497e2b10c1STom Herbert 			SKB_GSO_CB(nskb)->csum_start =
3650de843723STom Herbert 				skb_headroom(nskb) + doffset;
3651f4c50d99SHerbert Xu 			continue;
3652f4c50d99SHerbert Xu 		}
3653f4c50d99SHerbert Xu 
36548cb19905SMichael S. Tsirkin 		nskb_frag = skb_shinfo(nskb)->frags;
3655f4c50d99SHerbert Xu 
3656df5771ffSMichael S. Tsirkin 		skb_copy_from_linear_data_offset(head_skb, offset,
3657d626f62bSArnaldo Carvalho de Melo 						 skb_put(nskb, hsize), hsize);
3658f4c50d99SHerbert Xu 
3659fff88030SWillem de Bruijn 		skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
3660df5771ffSMichael S. Tsirkin 					      SKBTX_SHARED_FRAG;
36611f8b977aSWillem de Bruijn 		if (skb_zerocopy_clone(nskb, head_skb, GFP_ATOMIC))
36621f8b977aSWillem de Bruijn 			goto err;
3663cef401deSEric Dumazet 
36649d8506ccSHerbert Xu 		while (pos < offset + len) {
36659d8506ccSHerbert Xu 			if (i >= nfrags) {
36661a4cedafSMichael S. Tsirkin 				BUG_ON(skb_headlen(list_skb));
36679d8506ccSHerbert Xu 
36689d8506ccSHerbert Xu 				i = 0;
36691a4cedafSMichael S. Tsirkin 				nfrags = skb_shinfo(list_skb)->nr_frags;
36701a4cedafSMichael S. Tsirkin 				frag = skb_shinfo(list_skb)->frags;
36711fd819ecSMichael S. Tsirkin 				frag_skb = list_skb;
36729d8506ccSHerbert Xu 
36739d8506ccSHerbert Xu 				BUG_ON(!nfrags);
36749d8506ccSHerbert Xu 
36751a4cedafSMichael S. Tsirkin 				list_skb = list_skb->next;
36769d8506ccSHerbert Xu 			}
36779d8506ccSHerbert Xu 
36789d8506ccSHerbert Xu 			if (unlikely(skb_shinfo(nskb)->nr_frags >=
36799d8506ccSHerbert Xu 				     MAX_SKB_FRAGS)) {
36809d8506ccSHerbert Xu 				net_warn_ratelimited(
36819d8506ccSHerbert Xu 					"skb_segment: too many frags: %u %u\n",
36829d8506ccSHerbert Xu 					pos, mss);
36839d8506ccSHerbert Xu 				goto err;
36849d8506ccSHerbert Xu 			}
36859d8506ccSHerbert Xu 
36861fd819ecSMichael S. Tsirkin 			if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
36871fd819ecSMichael S. Tsirkin 				goto err;
36881fd819ecSMichael S. Tsirkin 
36894e1beba1SMichael S. Tsirkin 			*nskb_frag = *frag;
36908cb19905SMichael S. Tsirkin 			__skb_frag_ref(nskb_frag);
36918cb19905SMichael S. Tsirkin 			size = skb_frag_size(nskb_frag);
3692f4c50d99SHerbert Xu 
3693f4c50d99SHerbert Xu 			if (pos < offset) {
36948cb19905SMichael S. Tsirkin 				nskb_frag->page_offset += offset - pos;
36958cb19905SMichael S. Tsirkin 				skb_frag_size_sub(nskb_frag, offset - pos);
3696f4c50d99SHerbert Xu 			}
3697f4c50d99SHerbert Xu 
369889319d38SHerbert Xu 			skb_shinfo(nskb)->nr_frags++;
3699f4c50d99SHerbert Xu 
3700f4c50d99SHerbert Xu 			if (pos + size <= offset + len) {
3701f4c50d99SHerbert Xu 				i++;
37024e1beba1SMichael S. Tsirkin 				frag++;
3703f4c50d99SHerbert Xu 				pos += size;
3704f4c50d99SHerbert Xu 			} else {
37058cb19905SMichael S. Tsirkin 				skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
370689319d38SHerbert Xu 				goto skip_fraglist;
3707f4c50d99SHerbert Xu 			}
3708f4c50d99SHerbert Xu 
37098cb19905SMichael S. Tsirkin 			nskb_frag++;
3710f4c50d99SHerbert Xu 		}
3711f4c50d99SHerbert Xu 
371289319d38SHerbert Xu skip_fraglist:
3713f4c50d99SHerbert Xu 		nskb->data_len = len - hsize;
3714f4c50d99SHerbert Xu 		nskb->len += nskb->data_len;
3715f4c50d99SHerbert Xu 		nskb->truesize += nskb->data_len;
3716ec5f0615SPravin B Shelar 
37171cdbcb79SSimon Horman perform_csum_check:
37187fbeffedSAlexander Duyck 		if (!csum) {
3719ddff00d4SAlexander Duyck 			if (skb_has_shared_frag(nskb)) {
3720ddff00d4SAlexander Duyck 				err = __skb_linearize(nskb);
3721ddff00d4SAlexander Duyck 				if (err)
3722ddff00d4SAlexander Duyck 					goto err;
3723ddff00d4SAlexander Duyck 			}
37247fbeffedSAlexander Duyck 			if (!nskb->remcsum_offload)
3725ec5f0615SPravin B Shelar 				nskb->ip_summed = CHECKSUM_NONE;
372676443456SAlexander Duyck 			SKB_GSO_CB(nskb)->csum =
372776443456SAlexander Duyck 				skb_checksum(nskb, doffset,
372876443456SAlexander Duyck 					     nskb->len - doffset, 0);
37297e2b10c1STom Herbert 			SKB_GSO_CB(nskb)->csum_start =
37307e2b10c1STom Herbert 				skb_headroom(nskb) + doffset;
3731ec5f0615SPravin B Shelar 		}
3732df5771ffSMichael S. Tsirkin 	} while ((offset += len) < head_skb->len);
3733f4c50d99SHerbert Xu 
3734bec3cfdcSEric Dumazet 	/* Some callers want to get the end of the list.
3735bec3cfdcSEric Dumazet 	 * Put it in segs->prev to avoid walking the list.
3736bec3cfdcSEric Dumazet 	 * (see validate_xmit_skb_list() for example)
3737bec3cfdcSEric Dumazet 	 */
3738bec3cfdcSEric Dumazet 	segs->prev = tail;
3739432c856fSToshiaki Makita 
3740802ab55aSAlexander Duyck 	if (partial_segs) {
374107b26c94SSteffen Klassert 		struct sk_buff *iter;
3742802ab55aSAlexander Duyck 		int type = skb_shinfo(head_skb)->gso_type;
374307b26c94SSteffen Klassert 		unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
3744802ab55aSAlexander Duyck 
3745802ab55aSAlexander Duyck 		/* Update type to add partial and then remove dodgy if set */
374607b26c94SSteffen Klassert 		type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
3747802ab55aSAlexander Duyck 		type &= ~SKB_GSO_DODGY;
3748802ab55aSAlexander Duyck 
3749802ab55aSAlexander Duyck 		/* Update GSO info and prepare to start updating headers on
3750802ab55aSAlexander Duyck 		 * our way back down the stack of protocols.
3751802ab55aSAlexander Duyck 		 */
375207b26c94SSteffen Klassert 		for (iter = segs; iter; iter = iter->next) {
375307b26c94SSteffen Klassert 			skb_shinfo(iter)->gso_size = gso_size;
375407b26c94SSteffen Klassert 			skb_shinfo(iter)->gso_segs = partial_segs;
375507b26c94SSteffen Klassert 			skb_shinfo(iter)->gso_type = type;
375607b26c94SSteffen Klassert 			SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
375707b26c94SSteffen Klassert 		}
375807b26c94SSteffen Klassert 
375907b26c94SSteffen Klassert 		if (tail->len - doffset <= gso_size)
376007b26c94SSteffen Klassert 			skb_shinfo(tail)->gso_size = 0;
376107b26c94SSteffen Klassert 		else if (tail != segs)
376207b26c94SSteffen Klassert 			skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
3763802ab55aSAlexander Duyck 	}
3764802ab55aSAlexander Duyck 
3765432c856fSToshiaki Makita 	/* Following permits correct backpressure, for protocols
3766432c856fSToshiaki Makita 	 * using skb_set_owner_w().
3767432c856fSToshiaki Makita 	 * Idea is to tranfert ownership from head_skb to last segment.
3768432c856fSToshiaki Makita 	 */
3769432c856fSToshiaki Makita 	if (head_skb->destructor == sock_wfree) {
3770432c856fSToshiaki Makita 		swap(tail->truesize, head_skb->truesize);
3771432c856fSToshiaki Makita 		swap(tail->destructor, head_skb->destructor);
3772432c856fSToshiaki Makita 		swap(tail->sk, head_skb->sk);
3773432c856fSToshiaki Makita 	}
3774f4c50d99SHerbert Xu 	return segs;
3775f4c50d99SHerbert Xu 
3776f4c50d99SHerbert Xu err:
3777289dccbeSEric Dumazet 	kfree_skb_list(segs);
3778f4c50d99SHerbert Xu 	return ERR_PTR(err);
3779f4c50d99SHerbert Xu }
3780f4c50d99SHerbert Xu EXPORT_SYMBOL_GPL(skb_segment);
3781f4c50d99SHerbert Xu 
378271d93b39SHerbert Xu int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
378371d93b39SHerbert Xu {
37848a29111cSEric Dumazet 	struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
378567147ba9SHerbert Xu 	unsigned int offset = skb_gro_offset(skb);
378667147ba9SHerbert Xu 	unsigned int headlen = skb_headlen(skb);
37878a29111cSEric Dumazet 	unsigned int len = skb_gro_len(skb);
378858025e46SEric Dumazet 	struct sk_buff *lp, *p = *head;
3789715dc1f3SEric Dumazet 	unsigned int delta_truesize;
379071d93b39SHerbert Xu 
37918a29111cSEric Dumazet 	if (unlikely(p->len + len >= 65536))
379271d93b39SHerbert Xu 		return -E2BIG;
379371d93b39SHerbert Xu 
379429e98242SEric Dumazet 	lp = NAPI_GRO_CB(p)->last;
37958a29111cSEric Dumazet 	pinfo = skb_shinfo(lp);
37968a29111cSEric Dumazet 
37978a29111cSEric Dumazet 	if (headlen <= offset) {
379842da6994SHerbert Xu 		skb_frag_t *frag;
379966e92fcfSHerbert Xu 		skb_frag_t *frag2;
38009aaa156cSHerbert Xu 		int i = skbinfo->nr_frags;
38019aaa156cSHerbert Xu 		int nr_frags = pinfo->nr_frags + i;
380242da6994SHerbert Xu 
380366e92fcfSHerbert Xu 		if (nr_frags > MAX_SKB_FRAGS)
38048a29111cSEric Dumazet 			goto merge;
380581705ad1SHerbert Xu 
38068a29111cSEric Dumazet 		offset -= headlen;
38079aaa156cSHerbert Xu 		pinfo->nr_frags = nr_frags;
38089aaa156cSHerbert Xu 		skbinfo->nr_frags = 0;
3809f5572068SHerbert Xu 
38109aaa156cSHerbert Xu 		frag = pinfo->frags + nr_frags;
38119aaa156cSHerbert Xu 		frag2 = skbinfo->frags + i;
381266e92fcfSHerbert Xu 		do {
381366e92fcfSHerbert Xu 			*--frag = *--frag2;
381466e92fcfSHerbert Xu 		} while (--i);
381566e92fcfSHerbert Xu 
381666e92fcfSHerbert Xu 		frag->page_offset += offset;
38179e903e08SEric Dumazet 		skb_frag_size_sub(frag, offset);
381866e92fcfSHerbert Xu 
3819715dc1f3SEric Dumazet 		/* all fragments truesize : remove (head size + sk_buff) */
3820ec47ea82SAlexander Duyck 		delta_truesize = skb->truesize -
3821ec47ea82SAlexander Duyck 				 SKB_TRUESIZE(skb_end_offset(skb));
3822715dc1f3SEric Dumazet 
3823f5572068SHerbert Xu 		skb->truesize -= skb->data_len;
3824f5572068SHerbert Xu 		skb->len -= skb->data_len;
3825f5572068SHerbert Xu 		skb->data_len = 0;
3826f5572068SHerbert Xu 
3827715dc1f3SEric Dumazet 		NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
38285d38a079SHerbert Xu 		goto done;
3829d7e8883cSEric Dumazet 	} else if (skb->head_frag) {
3830d7e8883cSEric Dumazet 		int nr_frags = pinfo->nr_frags;
3831d7e8883cSEric Dumazet 		skb_frag_t *frag = pinfo->frags + nr_frags;
3832d7e8883cSEric Dumazet 		struct page *page = virt_to_head_page(skb->head);
3833d7e8883cSEric Dumazet 		unsigned int first_size = headlen - offset;
3834d7e8883cSEric Dumazet 		unsigned int first_offset;
3835d7e8883cSEric Dumazet 
3836d7e8883cSEric Dumazet 		if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
38378a29111cSEric Dumazet 			goto merge;
3838d7e8883cSEric Dumazet 
3839d7e8883cSEric Dumazet 		first_offset = skb->data -
3840d7e8883cSEric Dumazet 			       (unsigned char *)page_address(page) +
3841d7e8883cSEric Dumazet 			       offset;
3842d7e8883cSEric Dumazet 
3843d7e8883cSEric Dumazet 		pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3844d7e8883cSEric Dumazet 
3845d7e8883cSEric Dumazet 		frag->page.p	  = page;
3846d7e8883cSEric Dumazet 		frag->page_offset = first_offset;
3847d7e8883cSEric Dumazet 		skb_frag_size_set(frag, first_size);
3848d7e8883cSEric Dumazet 
3849d7e8883cSEric Dumazet 		memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3850d7e8883cSEric Dumazet 		/* We dont need to clear skbinfo->nr_frags here */
3851d7e8883cSEric Dumazet 
3852715dc1f3SEric Dumazet 		delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3853d7e8883cSEric Dumazet 		NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3854d7e8883cSEric Dumazet 		goto done;
38558a29111cSEric Dumazet 	}
385671d93b39SHerbert Xu 
385771d93b39SHerbert Xu merge:
3858715dc1f3SEric Dumazet 	delta_truesize = skb->truesize;
385967147ba9SHerbert Xu 	if (offset > headlen) {
3860d1dc7abfSMichal Schmidt 		unsigned int eat = offset - headlen;
3861d1dc7abfSMichal Schmidt 
3862d1dc7abfSMichal Schmidt 		skbinfo->frags[0].page_offset += eat;
38639e903e08SEric Dumazet 		skb_frag_size_sub(&skbinfo->frags[0], eat);
3864d1dc7abfSMichal Schmidt 		skb->data_len -= eat;
3865d1dc7abfSMichal Schmidt 		skb->len -= eat;
386667147ba9SHerbert Xu 		offset = headlen;
386756035022SHerbert Xu 	}
386856035022SHerbert Xu 
386967147ba9SHerbert Xu 	__skb_pull(skb, offset);
387056035022SHerbert Xu 
387129e98242SEric Dumazet 	if (NAPI_GRO_CB(p)->last == p)
38728a29111cSEric Dumazet 		skb_shinfo(p)->frag_list = skb;
38738a29111cSEric Dumazet 	else
3874c3c7c254SEric Dumazet 		NAPI_GRO_CB(p)->last->next = skb;
3875c3c7c254SEric Dumazet 	NAPI_GRO_CB(p)->last = skb;
3876f4a775d1SEric Dumazet 	__skb_header_release(skb);
38778a29111cSEric Dumazet 	lp = p;
387871d93b39SHerbert Xu 
38795d38a079SHerbert Xu done:
38805d38a079SHerbert Xu 	NAPI_GRO_CB(p)->count++;
388137fe4732SHerbert Xu 	p->data_len += len;
3882715dc1f3SEric Dumazet 	p->truesize += delta_truesize;
388337fe4732SHerbert Xu 	p->len += len;
38848a29111cSEric Dumazet 	if (lp != p) {
38858a29111cSEric Dumazet 		lp->data_len += len;
38868a29111cSEric Dumazet 		lp->truesize += delta_truesize;
38878a29111cSEric Dumazet 		lp->len += len;
38888a29111cSEric Dumazet 	}
388971d93b39SHerbert Xu 	NAPI_GRO_CB(skb)->same_flow = 1;
389071d93b39SHerbert Xu 	return 0;
389171d93b39SHerbert Xu }
389257c05650SMarcelo Ricardo Leitner EXPORT_SYMBOL_GPL(skb_gro_receive);
389371d93b39SHerbert Xu 
38941da177e4SLinus Torvalds void __init skb_init(void)
38951da177e4SLinus Torvalds {
38961da177e4SLinus Torvalds 	skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
38971da177e4SLinus Torvalds 					      sizeof(struct sk_buff),
38981da177e4SLinus Torvalds 					      0,
3899e5d679f3SAlexey Dobriyan 					      SLAB_HWCACHE_ALIGN|SLAB_PANIC,
390020c2df83SPaul Mundt 					      NULL);
3901d179cd12SDavid S. Miller 	skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3902d0bf4a9eSEric Dumazet 						sizeof(struct sk_buff_fclones),
3903d179cd12SDavid S. Miller 						0,
3904e5d679f3SAlexey Dobriyan 						SLAB_HWCACHE_ALIGN|SLAB_PANIC,
390520c2df83SPaul Mundt 						NULL);
39061da177e4SLinus Torvalds }
39071da177e4SLinus Torvalds 
390851c739d1SDavid S. Miller static int
390948a1df65SJason A. Donenfeld __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
391048a1df65SJason A. Donenfeld 	       unsigned int recursion_level)
3911716ea3a7SDavid Howells {
39121a028e50SDavid S. Miller 	int start = skb_headlen(skb);
39131a028e50SDavid S. Miller 	int i, copy = start - offset;
3914fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
3915716ea3a7SDavid Howells 	int elt = 0;
3916716ea3a7SDavid Howells 
391748a1df65SJason A. Donenfeld 	if (unlikely(recursion_level >= 24))
391848a1df65SJason A. Donenfeld 		return -EMSGSIZE;
391948a1df65SJason A. Donenfeld 
3920716ea3a7SDavid Howells 	if (copy > 0) {
3921716ea3a7SDavid Howells 		if (copy > len)
3922716ea3a7SDavid Howells 			copy = len;
3923642f1490SJens Axboe 		sg_set_buf(sg, skb->data + offset, copy);
3924716ea3a7SDavid Howells 		elt++;
3925716ea3a7SDavid Howells 		if ((len -= copy) == 0)
3926716ea3a7SDavid Howells 			return elt;
3927716ea3a7SDavid Howells 		offset += copy;
3928716ea3a7SDavid Howells 	}
3929716ea3a7SDavid Howells 
3930716ea3a7SDavid Howells 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
39311a028e50SDavid S. Miller 		int end;
3932716ea3a7SDavid Howells 
3933547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
39341a028e50SDavid S. Miller 
39359e903e08SEric Dumazet 		end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
3936716ea3a7SDavid Howells 		if ((copy = end - offset) > 0) {
3937716ea3a7SDavid Howells 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
393848a1df65SJason A. Donenfeld 			if (unlikely(elt && sg_is_last(&sg[elt - 1])))
393948a1df65SJason A. Donenfeld 				return -EMSGSIZE;
3940716ea3a7SDavid Howells 
3941716ea3a7SDavid Howells 			if (copy > len)
3942716ea3a7SDavid Howells 				copy = len;
3943ea2ab693SIan Campbell 			sg_set_page(&sg[elt], skb_frag_page(frag), copy,
3944642f1490SJens Axboe 					frag->page_offset+offset-start);
3945716ea3a7SDavid Howells 			elt++;
3946716ea3a7SDavid Howells 			if (!(len -= copy))
3947716ea3a7SDavid Howells 				return elt;
3948716ea3a7SDavid Howells 			offset += copy;
3949716ea3a7SDavid Howells 		}
39501a028e50SDavid S. Miller 		start = end;
3951716ea3a7SDavid Howells 	}
3952716ea3a7SDavid Howells 
3953fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
395448a1df65SJason A. Donenfeld 		int end, ret;
3955716ea3a7SDavid Howells 
3956547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
39571a028e50SDavid S. Miller 
3958fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
3959716ea3a7SDavid Howells 		if ((copy = end - offset) > 0) {
396048a1df65SJason A. Donenfeld 			if (unlikely(elt && sg_is_last(&sg[elt - 1])))
396148a1df65SJason A. Donenfeld 				return -EMSGSIZE;
396248a1df65SJason A. Donenfeld 
3963716ea3a7SDavid Howells 			if (copy > len)
3964716ea3a7SDavid Howells 				copy = len;
396548a1df65SJason A. Donenfeld 			ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
396648a1df65SJason A. Donenfeld 					      copy, recursion_level + 1);
396748a1df65SJason A. Donenfeld 			if (unlikely(ret < 0))
396848a1df65SJason A. Donenfeld 				return ret;
396948a1df65SJason A. Donenfeld 			elt += ret;
3970716ea3a7SDavid Howells 			if ((len -= copy) == 0)
3971716ea3a7SDavid Howells 				return elt;
3972716ea3a7SDavid Howells 			offset += copy;
3973716ea3a7SDavid Howells 		}
39741a028e50SDavid S. Miller 		start = end;
3975716ea3a7SDavid Howells 	}
3976716ea3a7SDavid Howells 	BUG_ON(len);
3977716ea3a7SDavid Howells 	return elt;
3978716ea3a7SDavid Howells }
3979716ea3a7SDavid Howells 
398048a1df65SJason A. Donenfeld /**
398148a1df65SJason A. Donenfeld  *	skb_to_sgvec - Fill a scatter-gather list from a socket buffer
398248a1df65SJason A. Donenfeld  *	@skb: Socket buffer containing the buffers to be mapped
398348a1df65SJason A. Donenfeld  *	@sg: The scatter-gather list to map into
398448a1df65SJason A. Donenfeld  *	@offset: The offset into the buffer's contents to start mapping
398548a1df65SJason A. Donenfeld  *	@len: Length of buffer space to be mapped
398648a1df65SJason A. Donenfeld  *
398748a1df65SJason A. Donenfeld  *	Fill the specified scatter-gather list with mappings/pointers into a
398848a1df65SJason A. Donenfeld  *	region of the buffer space attached to a socket buffer. Returns either
398948a1df65SJason A. Donenfeld  *	the number of scatterlist items used, or -EMSGSIZE if the contents
399048a1df65SJason A. Donenfeld  *	could not fit.
399148a1df65SJason A. Donenfeld  */
399248a1df65SJason A. Donenfeld int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
399348a1df65SJason A. Donenfeld {
399448a1df65SJason A. Donenfeld 	int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
399548a1df65SJason A. Donenfeld 
399648a1df65SJason A. Donenfeld 	if (nsg <= 0)
399748a1df65SJason A. Donenfeld 		return nsg;
399848a1df65SJason A. Donenfeld 
399948a1df65SJason A. Donenfeld 	sg_mark_end(&sg[nsg - 1]);
400048a1df65SJason A. Donenfeld 
400148a1df65SJason A. Donenfeld 	return nsg;
400248a1df65SJason A. Donenfeld }
400348a1df65SJason A. Donenfeld EXPORT_SYMBOL_GPL(skb_to_sgvec);
400448a1df65SJason A. Donenfeld 
400525a91d8dSFan Du /* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
400625a91d8dSFan Du  * sglist without mark the sg which contain last skb data as the end.
400725a91d8dSFan Du  * So the caller can mannipulate sg list as will when padding new data after
400825a91d8dSFan Du  * the first call without calling sg_unmark_end to expend sg list.
400925a91d8dSFan Du  *
401025a91d8dSFan Du  * Scenario to use skb_to_sgvec_nomark:
401125a91d8dSFan Du  * 1. sg_init_table
401225a91d8dSFan Du  * 2. skb_to_sgvec_nomark(payload1)
401325a91d8dSFan Du  * 3. skb_to_sgvec_nomark(payload2)
401425a91d8dSFan Du  *
401525a91d8dSFan Du  * This is equivalent to:
401625a91d8dSFan Du  * 1. sg_init_table
401725a91d8dSFan Du  * 2. skb_to_sgvec(payload1)
401825a91d8dSFan Du  * 3. sg_unmark_end
401925a91d8dSFan Du  * 4. skb_to_sgvec(payload2)
402025a91d8dSFan Du  *
402125a91d8dSFan Du  * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
402225a91d8dSFan Du  * is more preferable.
402325a91d8dSFan Du  */
402425a91d8dSFan Du int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
402525a91d8dSFan Du 			int offset, int len)
402625a91d8dSFan Du {
402748a1df65SJason A. Donenfeld 	return __skb_to_sgvec(skb, sg, offset, len, 0);
402825a91d8dSFan Du }
402925a91d8dSFan Du EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
403025a91d8dSFan Du 
403151c739d1SDavid S. Miller 
403251c739d1SDavid S. Miller 
4033716ea3a7SDavid Howells /**
4034716ea3a7SDavid Howells  *	skb_cow_data - Check that a socket buffer's data buffers are writable
4035716ea3a7SDavid Howells  *	@skb: The socket buffer to check.
4036716ea3a7SDavid Howells  *	@tailbits: Amount of trailing space to be added
4037716ea3a7SDavid Howells  *	@trailer: Returned pointer to the skb where the @tailbits space begins
4038716ea3a7SDavid Howells  *
4039716ea3a7SDavid Howells  *	Make sure that the data buffers attached to a socket buffer are
4040716ea3a7SDavid Howells  *	writable. If they are not, private copies are made of the data buffers
4041716ea3a7SDavid Howells  *	and the socket buffer is set to use these instead.
4042716ea3a7SDavid Howells  *
4043716ea3a7SDavid Howells  *	If @tailbits is given, make sure that there is space to write @tailbits
4044716ea3a7SDavid Howells  *	bytes of data beyond current end of socket buffer.  @trailer will be
4045716ea3a7SDavid Howells  *	set to point to the skb in which this space begins.
4046716ea3a7SDavid Howells  *
4047716ea3a7SDavid Howells  *	The number of scatterlist elements required to completely map the
4048716ea3a7SDavid Howells  *	COW'd and extended socket buffer will be returned.
4049716ea3a7SDavid Howells  */
4050716ea3a7SDavid Howells int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
4051716ea3a7SDavid Howells {
4052716ea3a7SDavid Howells 	int copyflag;
4053716ea3a7SDavid Howells 	int elt;
4054716ea3a7SDavid Howells 	struct sk_buff *skb1, **skb_p;
4055716ea3a7SDavid Howells 
4056716ea3a7SDavid Howells 	/* If skb is cloned or its head is paged, reallocate
4057716ea3a7SDavid Howells 	 * head pulling out all the pages (pages are considered not writable
4058716ea3a7SDavid Howells 	 * at the moment even if they are anonymous).
4059716ea3a7SDavid Howells 	 */
4060716ea3a7SDavid Howells 	if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
4061716ea3a7SDavid Howells 	    __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
4062716ea3a7SDavid Howells 		return -ENOMEM;
4063716ea3a7SDavid Howells 
4064716ea3a7SDavid Howells 	/* Easy case. Most of packets will go this way. */
406521dc3301SDavid S. Miller 	if (!skb_has_frag_list(skb)) {
4066716ea3a7SDavid Howells 		/* A little of trouble, not enough of space for trailer.
4067716ea3a7SDavid Howells 		 * This should not happen, when stack is tuned to generate
4068716ea3a7SDavid Howells 		 * good frames. OK, on miss we reallocate and reserve even more
4069716ea3a7SDavid Howells 		 * space, 128 bytes is fair. */
4070716ea3a7SDavid Howells 
4071716ea3a7SDavid Howells 		if (skb_tailroom(skb) < tailbits &&
4072716ea3a7SDavid Howells 		    pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
4073716ea3a7SDavid Howells 			return -ENOMEM;
4074716ea3a7SDavid Howells 
4075716ea3a7SDavid Howells 		/* Voila! */
4076716ea3a7SDavid Howells 		*trailer = skb;
4077716ea3a7SDavid Howells 		return 1;
4078716ea3a7SDavid Howells 	}
4079716ea3a7SDavid Howells 
4080716ea3a7SDavid Howells 	/* Misery. We are in troubles, going to mincer fragments... */
4081716ea3a7SDavid Howells 
4082716ea3a7SDavid Howells 	elt = 1;
4083716ea3a7SDavid Howells 	skb_p = &skb_shinfo(skb)->frag_list;
4084716ea3a7SDavid Howells 	copyflag = 0;
4085716ea3a7SDavid Howells 
4086716ea3a7SDavid Howells 	while ((skb1 = *skb_p) != NULL) {
4087716ea3a7SDavid Howells 		int ntail = 0;
4088716ea3a7SDavid Howells 
4089716ea3a7SDavid Howells 		/* The fragment is partially pulled by someone,
4090716ea3a7SDavid Howells 		 * this can happen on input. Copy it and everything
4091716ea3a7SDavid Howells 		 * after it. */
4092716ea3a7SDavid Howells 
4093716ea3a7SDavid Howells 		if (skb_shared(skb1))
4094716ea3a7SDavid Howells 			copyflag = 1;
4095716ea3a7SDavid Howells 
4096716ea3a7SDavid Howells 		/* If the skb is the last, worry about trailer. */
4097716ea3a7SDavid Howells 
4098716ea3a7SDavid Howells 		if (skb1->next == NULL && tailbits) {
4099716ea3a7SDavid Howells 			if (skb_shinfo(skb1)->nr_frags ||
410021dc3301SDavid S. Miller 			    skb_has_frag_list(skb1) ||
4101716ea3a7SDavid Howells 			    skb_tailroom(skb1) < tailbits)
4102716ea3a7SDavid Howells 				ntail = tailbits + 128;
4103716ea3a7SDavid Howells 		}
4104716ea3a7SDavid Howells 
4105716ea3a7SDavid Howells 		if (copyflag ||
4106716ea3a7SDavid Howells 		    skb_cloned(skb1) ||
4107716ea3a7SDavid Howells 		    ntail ||
4108716ea3a7SDavid Howells 		    skb_shinfo(skb1)->nr_frags ||
410921dc3301SDavid S. Miller 		    skb_has_frag_list(skb1)) {
4110716ea3a7SDavid Howells 			struct sk_buff *skb2;
4111716ea3a7SDavid Howells 
4112716ea3a7SDavid Howells 			/* Fuck, we are miserable poor guys... */
4113716ea3a7SDavid Howells 			if (ntail == 0)
4114716ea3a7SDavid Howells 				skb2 = skb_copy(skb1, GFP_ATOMIC);
4115716ea3a7SDavid Howells 			else
4116716ea3a7SDavid Howells 				skb2 = skb_copy_expand(skb1,
4117716ea3a7SDavid Howells 						       skb_headroom(skb1),
4118716ea3a7SDavid Howells 						       ntail,
4119716ea3a7SDavid Howells 						       GFP_ATOMIC);
4120716ea3a7SDavid Howells 			if (unlikely(skb2 == NULL))
4121716ea3a7SDavid Howells 				return -ENOMEM;
4122716ea3a7SDavid Howells 
4123716ea3a7SDavid Howells 			if (skb1->sk)
4124716ea3a7SDavid Howells 				skb_set_owner_w(skb2, skb1->sk);
4125716ea3a7SDavid Howells 
4126716ea3a7SDavid Howells 			/* Looking around. Are we still alive?
4127716ea3a7SDavid Howells 			 * OK, link new skb, drop old one */
4128716ea3a7SDavid Howells 
4129716ea3a7SDavid Howells 			skb2->next = skb1->next;
4130716ea3a7SDavid Howells 			*skb_p = skb2;
4131716ea3a7SDavid Howells 			kfree_skb(skb1);
4132716ea3a7SDavid Howells 			skb1 = skb2;
4133716ea3a7SDavid Howells 		}
4134716ea3a7SDavid Howells 		elt++;
4135716ea3a7SDavid Howells 		*trailer = skb1;
4136716ea3a7SDavid Howells 		skb_p = &skb1->next;
4137716ea3a7SDavid Howells 	}
4138716ea3a7SDavid Howells 
4139716ea3a7SDavid Howells 	return elt;
4140716ea3a7SDavid Howells }
4141b4ac530fSDavid S. Miller EXPORT_SYMBOL_GPL(skb_cow_data);
4142716ea3a7SDavid Howells 
4143b1faf566SEric Dumazet static void sock_rmem_free(struct sk_buff *skb)
4144b1faf566SEric Dumazet {
4145b1faf566SEric Dumazet 	struct sock *sk = skb->sk;
4146b1faf566SEric Dumazet 
4147b1faf566SEric Dumazet 	atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
4148b1faf566SEric Dumazet }
4149b1faf566SEric Dumazet 
41508605330aSSoheil Hassas Yeganeh static void skb_set_err_queue(struct sk_buff *skb)
41518605330aSSoheil Hassas Yeganeh {
41528605330aSSoheil Hassas Yeganeh 	/* pkt_type of skbs received on local sockets is never PACKET_OUTGOING.
41538605330aSSoheil Hassas Yeganeh 	 * So, it is safe to (mis)use it to mark skbs on the error queue.
41548605330aSSoheil Hassas Yeganeh 	 */
41558605330aSSoheil Hassas Yeganeh 	skb->pkt_type = PACKET_OUTGOING;
41568605330aSSoheil Hassas Yeganeh 	BUILD_BUG_ON(PACKET_OUTGOING == 0);
41578605330aSSoheil Hassas Yeganeh }
41588605330aSSoheil Hassas Yeganeh 
4159b1faf566SEric Dumazet /*
4160b1faf566SEric Dumazet  * Note: We dont mem charge error packets (no sk_forward_alloc changes)
4161b1faf566SEric Dumazet  */
4162b1faf566SEric Dumazet int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
4163b1faf566SEric Dumazet {
4164b1faf566SEric Dumazet 	if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
416595c96174SEric Dumazet 	    (unsigned int)sk->sk_rcvbuf)
4166b1faf566SEric Dumazet 		return -ENOMEM;
4167b1faf566SEric Dumazet 
4168b1faf566SEric Dumazet 	skb_orphan(skb);
4169b1faf566SEric Dumazet 	skb->sk = sk;
4170b1faf566SEric Dumazet 	skb->destructor = sock_rmem_free;
4171b1faf566SEric Dumazet 	atomic_add(skb->truesize, &sk->sk_rmem_alloc);
41728605330aSSoheil Hassas Yeganeh 	skb_set_err_queue(skb);
4173b1faf566SEric Dumazet 
4174abb57ea4SEric Dumazet 	/* before exiting rcu section, make sure dst is refcounted */
4175abb57ea4SEric Dumazet 	skb_dst_force(skb);
4176abb57ea4SEric Dumazet 
4177b1faf566SEric Dumazet 	skb_queue_tail(&sk->sk_error_queue, skb);
4178b1faf566SEric Dumazet 	if (!sock_flag(sk, SOCK_DEAD))
4179676d2369SDavid S. Miller 		sk->sk_data_ready(sk);
4180b1faf566SEric Dumazet 	return 0;
4181b1faf566SEric Dumazet }
4182b1faf566SEric Dumazet EXPORT_SYMBOL(sock_queue_err_skb);
4183b1faf566SEric Dumazet 
418483a1a1a7SSoheil Hassas Yeganeh static bool is_icmp_err_skb(const struct sk_buff *skb)
418583a1a1a7SSoheil Hassas Yeganeh {
418683a1a1a7SSoheil Hassas Yeganeh 	return skb && (SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
418783a1a1a7SSoheil Hassas Yeganeh 		       SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP6);
418883a1a1a7SSoheil Hassas Yeganeh }
418983a1a1a7SSoheil Hassas Yeganeh 
4190364a9e93SWillem de Bruijn struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
4191364a9e93SWillem de Bruijn {
4192364a9e93SWillem de Bruijn 	struct sk_buff_head *q = &sk->sk_error_queue;
419383a1a1a7SSoheil Hassas Yeganeh 	struct sk_buff *skb, *skb_next = NULL;
419483a1a1a7SSoheil Hassas Yeganeh 	bool icmp_next = false;
4195997d5c3fSEric Dumazet 	unsigned long flags;
4196364a9e93SWillem de Bruijn 
4197997d5c3fSEric Dumazet 	spin_lock_irqsave(&q->lock, flags);
4198364a9e93SWillem de Bruijn 	skb = __skb_dequeue(q);
419938b25793SSoheil Hassas Yeganeh 	if (skb && (skb_next = skb_peek(q))) {
420083a1a1a7SSoheil Hassas Yeganeh 		icmp_next = is_icmp_err_skb(skb_next);
420138b25793SSoheil Hassas Yeganeh 		if (icmp_next)
420238b25793SSoheil Hassas Yeganeh 			sk->sk_err = SKB_EXT_ERR(skb_next)->ee.ee_origin;
420338b25793SSoheil Hassas Yeganeh 	}
4204997d5c3fSEric Dumazet 	spin_unlock_irqrestore(&q->lock, flags);
4205364a9e93SWillem de Bruijn 
420683a1a1a7SSoheil Hassas Yeganeh 	if (is_icmp_err_skb(skb) && !icmp_next)
420783a1a1a7SSoheil Hassas Yeganeh 		sk->sk_err = 0;
420883a1a1a7SSoheil Hassas Yeganeh 
420983a1a1a7SSoheil Hassas Yeganeh 	if (skb_next)
4210364a9e93SWillem de Bruijn 		sk->sk_error_report(sk);
4211364a9e93SWillem de Bruijn 
4212364a9e93SWillem de Bruijn 	return skb;
4213364a9e93SWillem de Bruijn }
4214364a9e93SWillem de Bruijn EXPORT_SYMBOL(sock_dequeue_err_skb);
4215364a9e93SWillem de Bruijn 
4216cab41c47SAlexander Duyck /**
4217cab41c47SAlexander Duyck  * skb_clone_sk - create clone of skb, and take reference to socket
4218cab41c47SAlexander Duyck  * @skb: the skb to clone
4219cab41c47SAlexander Duyck  *
4220cab41c47SAlexander Duyck  * This function creates a clone of a buffer that holds a reference on
4221cab41c47SAlexander Duyck  * sk_refcnt.  Buffers created via this function are meant to be
4222cab41c47SAlexander Duyck  * returned using sock_queue_err_skb, or free via kfree_skb.
4223cab41c47SAlexander Duyck  *
4224cab41c47SAlexander Duyck  * When passing buffers allocated with this function to sock_queue_err_skb
4225cab41c47SAlexander Duyck  * it is necessary to wrap the call with sock_hold/sock_put in order to
4226cab41c47SAlexander Duyck  * prevent the socket from being released prior to being enqueued on
4227cab41c47SAlexander Duyck  * the sk_error_queue.
4228cab41c47SAlexander Duyck  */
422962bccb8cSAlexander Duyck struct sk_buff *skb_clone_sk(struct sk_buff *skb)
423062bccb8cSAlexander Duyck {
423162bccb8cSAlexander Duyck 	struct sock *sk = skb->sk;
423262bccb8cSAlexander Duyck 	struct sk_buff *clone;
423362bccb8cSAlexander Duyck 
423441c6d650SReshetova, Elena 	if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
423562bccb8cSAlexander Duyck 		return NULL;
423662bccb8cSAlexander Duyck 
423762bccb8cSAlexander Duyck 	clone = skb_clone(skb, GFP_ATOMIC);
423862bccb8cSAlexander Duyck 	if (!clone) {
423962bccb8cSAlexander Duyck 		sock_put(sk);
424062bccb8cSAlexander Duyck 		return NULL;
424162bccb8cSAlexander Duyck 	}
424262bccb8cSAlexander Duyck 
424362bccb8cSAlexander Duyck 	clone->sk = sk;
424462bccb8cSAlexander Duyck 	clone->destructor = sock_efree;
424562bccb8cSAlexander Duyck 
424662bccb8cSAlexander Duyck 	return clone;
424762bccb8cSAlexander Duyck }
424862bccb8cSAlexander Duyck EXPORT_SYMBOL(skb_clone_sk);
424962bccb8cSAlexander Duyck 
425037846ef0SAlexander Duyck static void __skb_complete_tx_timestamp(struct sk_buff *skb,
425137846ef0SAlexander Duyck 					struct sock *sk,
42524ef1b286SSoheil Hassas Yeganeh 					int tstype,
42534ef1b286SSoheil Hassas Yeganeh 					bool opt_stats)
4254ac45f602SPatrick Ohly {
4255ac45f602SPatrick Ohly 	struct sock_exterr_skb *serr;
4256ac45f602SPatrick Ohly 	int err;
4257ac45f602SPatrick Ohly 
42584ef1b286SSoheil Hassas Yeganeh 	BUILD_BUG_ON(sizeof(struct sock_exterr_skb) > sizeof(skb->cb));
42594ef1b286SSoheil Hassas Yeganeh 
4260ac45f602SPatrick Ohly 	serr = SKB_EXT_ERR(skb);
4261ac45f602SPatrick Ohly 	memset(serr, 0, sizeof(*serr));
4262ac45f602SPatrick Ohly 	serr->ee.ee_errno = ENOMSG;
4263ac45f602SPatrick Ohly 	serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
4264e7fd2885SWillem de Bruijn 	serr->ee.ee_info = tstype;
42654ef1b286SSoheil Hassas Yeganeh 	serr->opt_stats = opt_stats;
42661862d620SWillem de Bruijn 	serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
42674ed2d765SWillem de Bruijn 	if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
426809c2d251SWillem de Bruijn 		serr->ee.ee_data = skb_shinfo(skb)->tskey;
4269ac5cc977SWANG Cong 		if (sk->sk_protocol == IPPROTO_TCP &&
4270ac5cc977SWANG Cong 		    sk->sk_type == SOCK_STREAM)
42714ed2d765SWillem de Bruijn 			serr->ee.ee_data -= sk->sk_tskey;
42724ed2d765SWillem de Bruijn 	}
427329030374SEric Dumazet 
4274ac45f602SPatrick Ohly 	err = sock_queue_err_skb(sk, skb);
427529030374SEric Dumazet 
4276ac45f602SPatrick Ohly 	if (err)
4277ac45f602SPatrick Ohly 		kfree_skb(skb);
4278ac45f602SPatrick Ohly }
427937846ef0SAlexander Duyck 
4280b245be1fSWillem de Bruijn static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
4281b245be1fSWillem de Bruijn {
4282b245be1fSWillem de Bruijn 	bool ret;
4283b245be1fSWillem de Bruijn 
4284b245be1fSWillem de Bruijn 	if (likely(sysctl_tstamp_allow_data || tsonly))
4285b245be1fSWillem de Bruijn 		return true;
4286b245be1fSWillem de Bruijn 
4287b245be1fSWillem de Bruijn 	read_lock_bh(&sk->sk_callback_lock);
4288b245be1fSWillem de Bruijn 	ret = sk->sk_socket && sk->sk_socket->file &&
4289b245be1fSWillem de Bruijn 	      file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
4290b245be1fSWillem de Bruijn 	read_unlock_bh(&sk->sk_callback_lock);
4291b245be1fSWillem de Bruijn 	return ret;
4292b245be1fSWillem de Bruijn }
4293b245be1fSWillem de Bruijn 
429437846ef0SAlexander Duyck void skb_complete_tx_timestamp(struct sk_buff *skb,
429537846ef0SAlexander Duyck 			       struct skb_shared_hwtstamps *hwtstamps)
429637846ef0SAlexander Duyck {
429737846ef0SAlexander Duyck 	struct sock *sk = skb->sk;
429837846ef0SAlexander Duyck 
4299b245be1fSWillem de Bruijn 	if (!skb_may_tx_timestamp(sk, false))
4300b245be1fSWillem de Bruijn 		return;
4301b245be1fSWillem de Bruijn 
43029ac25fc0SEric Dumazet 	/* Take a reference to prevent skb_orphan() from freeing the socket,
43039ac25fc0SEric Dumazet 	 * but only if the socket refcount is not zero.
43049ac25fc0SEric Dumazet 	 */
430541c6d650SReshetova, Elena 	if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
430637846ef0SAlexander Duyck 		*skb_hwtstamps(skb) = *hwtstamps;
43074ef1b286SSoheil Hassas Yeganeh 		__skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND, false);
430837846ef0SAlexander Duyck 		sock_put(sk);
430937846ef0SAlexander Duyck 	}
43109ac25fc0SEric Dumazet }
431137846ef0SAlexander Duyck EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
431237846ef0SAlexander Duyck 
431337846ef0SAlexander Duyck void __skb_tstamp_tx(struct sk_buff *orig_skb,
431437846ef0SAlexander Duyck 		     struct skb_shared_hwtstamps *hwtstamps,
431537846ef0SAlexander Duyck 		     struct sock *sk, int tstype)
431637846ef0SAlexander Duyck {
431737846ef0SAlexander Duyck 	struct sk_buff *skb;
43184ef1b286SSoheil Hassas Yeganeh 	bool tsonly, opt_stats = false;
431937846ef0SAlexander Duyck 
43203a8dd971SWillem de Bruijn 	if (!sk)
43213a8dd971SWillem de Bruijn 		return;
43223a8dd971SWillem de Bruijn 
4323b50a5c70SMiroslav Lichvar 	if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) &&
4324b50a5c70SMiroslav Lichvar 	    skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS)
4325b50a5c70SMiroslav Lichvar 		return;
4326b50a5c70SMiroslav Lichvar 
43273a8dd971SWillem de Bruijn 	tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
43283a8dd971SWillem de Bruijn 	if (!skb_may_tx_timestamp(sk, tsonly))
432937846ef0SAlexander Duyck 		return;
433037846ef0SAlexander Duyck 
43311c885808SFrancis Yan 	if (tsonly) {
43321c885808SFrancis Yan #ifdef CONFIG_INET
43331c885808SFrancis Yan 		if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) &&
43341c885808SFrancis Yan 		    sk->sk_protocol == IPPROTO_TCP &&
43354ef1b286SSoheil Hassas Yeganeh 		    sk->sk_type == SOCK_STREAM) {
43361c885808SFrancis Yan 			skb = tcp_get_timestamping_opt_stats(sk);
43374ef1b286SSoheil Hassas Yeganeh 			opt_stats = true;
43384ef1b286SSoheil Hassas Yeganeh 		} else
43391c885808SFrancis Yan #endif
43401c885808SFrancis Yan 			skb = alloc_skb(0, GFP_ATOMIC);
43411c885808SFrancis Yan 	} else {
434237846ef0SAlexander Duyck 		skb = skb_clone(orig_skb, GFP_ATOMIC);
43431c885808SFrancis Yan 	}
434437846ef0SAlexander Duyck 	if (!skb)
434537846ef0SAlexander Duyck 		return;
434637846ef0SAlexander Duyck 
434749ca0d8bSWillem de Bruijn 	if (tsonly) {
4348fff88030SWillem de Bruijn 		skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
4349fff88030SWillem de Bruijn 					     SKBTX_ANY_TSTAMP;
435049ca0d8bSWillem de Bruijn 		skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
435149ca0d8bSWillem de Bruijn 	}
435249ca0d8bSWillem de Bruijn 
435349ca0d8bSWillem de Bruijn 	if (hwtstamps)
435449ca0d8bSWillem de Bruijn 		*skb_hwtstamps(skb) = *hwtstamps;
435549ca0d8bSWillem de Bruijn 	else
435649ca0d8bSWillem de Bruijn 		skb->tstamp = ktime_get_real();
435749ca0d8bSWillem de Bruijn 
43584ef1b286SSoheil Hassas Yeganeh 	__skb_complete_tx_timestamp(skb, sk, tstype, opt_stats);
435937846ef0SAlexander Duyck }
4360e7fd2885SWillem de Bruijn EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
4361e7fd2885SWillem de Bruijn 
4362e7fd2885SWillem de Bruijn void skb_tstamp_tx(struct sk_buff *orig_skb,
4363e7fd2885SWillem de Bruijn 		   struct skb_shared_hwtstamps *hwtstamps)
4364e7fd2885SWillem de Bruijn {
4365e7fd2885SWillem de Bruijn 	return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
4366e7fd2885SWillem de Bruijn 			       SCM_TSTAMP_SND);
4367e7fd2885SWillem de Bruijn }
4368ac45f602SPatrick Ohly EXPORT_SYMBOL_GPL(skb_tstamp_tx);
4369ac45f602SPatrick Ohly 
43706e3e939fSJohannes Berg void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
43716e3e939fSJohannes Berg {
43726e3e939fSJohannes Berg 	struct sock *sk = skb->sk;
43736e3e939fSJohannes Berg 	struct sock_exterr_skb *serr;
4374dd4f1072SEric Dumazet 	int err = 1;
43756e3e939fSJohannes Berg 
43766e3e939fSJohannes Berg 	skb->wifi_acked_valid = 1;
43776e3e939fSJohannes Berg 	skb->wifi_acked = acked;
43786e3e939fSJohannes Berg 
43796e3e939fSJohannes Berg 	serr = SKB_EXT_ERR(skb);
43806e3e939fSJohannes Berg 	memset(serr, 0, sizeof(*serr));
43816e3e939fSJohannes Berg 	serr->ee.ee_errno = ENOMSG;
43826e3e939fSJohannes Berg 	serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
43836e3e939fSJohannes Berg 
4384dd4f1072SEric Dumazet 	/* Take a reference to prevent skb_orphan() from freeing the socket,
4385dd4f1072SEric Dumazet 	 * but only if the socket refcount is not zero.
4386dd4f1072SEric Dumazet 	 */
438741c6d650SReshetova, Elena 	if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
43886e3e939fSJohannes Berg 		err = sock_queue_err_skb(sk, skb);
4389dd4f1072SEric Dumazet 		sock_put(sk);
4390dd4f1072SEric Dumazet 	}
43916e3e939fSJohannes Berg 	if (err)
43926e3e939fSJohannes Berg 		kfree_skb(skb);
43936e3e939fSJohannes Berg }
43946e3e939fSJohannes Berg EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
43956e3e939fSJohannes Berg 
4396f35d9d8aSRusty Russell /**
4397f35d9d8aSRusty Russell  * skb_partial_csum_set - set up and verify partial csum values for packet
4398f35d9d8aSRusty Russell  * @skb: the skb to set
4399f35d9d8aSRusty Russell  * @start: the number of bytes after skb->data to start checksumming.
4400f35d9d8aSRusty Russell  * @off: the offset from start to place the checksum.
4401f35d9d8aSRusty Russell  *
4402f35d9d8aSRusty Russell  * For untrusted partially-checksummed packets, we need to make sure the values
4403f35d9d8aSRusty Russell  * for skb->csum_start and skb->csum_offset are valid so we don't oops.
4404f35d9d8aSRusty Russell  *
4405f35d9d8aSRusty Russell  * This function checks and sets those values and skb->ip_summed: if this
4406f35d9d8aSRusty Russell  * returns false you should drop the packet.
4407f35d9d8aSRusty Russell  */
4408f35d9d8aSRusty Russell bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
4409f35d9d8aSRusty Russell {
44105ff8dda3SHerbert Xu 	if (unlikely(start > skb_headlen(skb)) ||
44115ff8dda3SHerbert Xu 	    unlikely((int)start + off > skb_headlen(skb) - 2)) {
4412e87cc472SJoe Perches 		net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
44135ff8dda3SHerbert Xu 				     start, off, skb_headlen(skb));
4414f35d9d8aSRusty Russell 		return false;
4415f35d9d8aSRusty Russell 	}
4416f35d9d8aSRusty Russell 	skb->ip_summed = CHECKSUM_PARTIAL;
4417f35d9d8aSRusty Russell 	skb->csum_start = skb_headroom(skb) + start;
4418f35d9d8aSRusty Russell 	skb->csum_offset = off;
4419e5d5decaSJason Wang 	skb_set_transport_header(skb, start);
4420f35d9d8aSRusty Russell 	return true;
4421f35d9d8aSRusty Russell }
4422b4ac530fSDavid S. Miller EXPORT_SYMBOL_GPL(skb_partial_csum_set);
4423f35d9d8aSRusty Russell 
4424ed1f50c3SPaul Durrant static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
4425ed1f50c3SPaul Durrant 			       unsigned int max)
4426ed1f50c3SPaul Durrant {
4427ed1f50c3SPaul Durrant 	if (skb_headlen(skb) >= len)
4428ed1f50c3SPaul Durrant 		return 0;
4429ed1f50c3SPaul Durrant 
4430ed1f50c3SPaul Durrant 	/* If we need to pullup then pullup to the max, so we
4431ed1f50c3SPaul Durrant 	 * won't need to do it again.
4432ed1f50c3SPaul Durrant 	 */
4433ed1f50c3SPaul Durrant 	if (max > skb->len)
4434ed1f50c3SPaul Durrant 		max = skb->len;
4435ed1f50c3SPaul Durrant 
4436ed1f50c3SPaul Durrant 	if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
4437ed1f50c3SPaul Durrant 		return -ENOMEM;
4438ed1f50c3SPaul Durrant 
4439ed1f50c3SPaul Durrant 	if (skb_headlen(skb) < len)
4440ed1f50c3SPaul Durrant 		return -EPROTO;
4441ed1f50c3SPaul Durrant 
4442ed1f50c3SPaul Durrant 	return 0;
4443ed1f50c3SPaul Durrant }
4444ed1f50c3SPaul Durrant 
4445f9708b43SJan Beulich #define MAX_TCP_HDR_LEN (15 * 4)
4446f9708b43SJan Beulich 
4447f9708b43SJan Beulich static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
4448f9708b43SJan Beulich 				      typeof(IPPROTO_IP) proto,
4449f9708b43SJan Beulich 				      unsigned int off)
4450f9708b43SJan Beulich {
4451f9708b43SJan Beulich 	switch (proto) {
4452f9708b43SJan Beulich 		int err;
4453f9708b43SJan Beulich 
4454f9708b43SJan Beulich 	case IPPROTO_TCP:
4455f9708b43SJan Beulich 		err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
4456f9708b43SJan Beulich 					  off + MAX_TCP_HDR_LEN);
4457f9708b43SJan Beulich 		if (!err && !skb_partial_csum_set(skb, off,
4458f9708b43SJan Beulich 						  offsetof(struct tcphdr,
4459f9708b43SJan Beulich 							   check)))
4460f9708b43SJan Beulich 			err = -EPROTO;
4461f9708b43SJan Beulich 		return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4462f9708b43SJan Beulich 
4463f9708b43SJan Beulich 	case IPPROTO_UDP:
4464f9708b43SJan Beulich 		err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4465f9708b43SJan Beulich 					  off + sizeof(struct udphdr));
4466f9708b43SJan Beulich 		if (!err && !skb_partial_csum_set(skb, off,
4467f9708b43SJan Beulich 						  offsetof(struct udphdr,
4468f9708b43SJan Beulich 							   check)))
4469f9708b43SJan Beulich 			err = -EPROTO;
4470f9708b43SJan Beulich 		return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4471f9708b43SJan Beulich 	}
4472f9708b43SJan Beulich 
4473f9708b43SJan Beulich 	return ERR_PTR(-EPROTO);
4474f9708b43SJan Beulich }
4475f9708b43SJan Beulich 
4476ed1f50c3SPaul Durrant /* This value should be large enough to cover a tagged ethernet header plus
4477ed1f50c3SPaul Durrant  * maximally sized IP and TCP or UDP headers.
4478ed1f50c3SPaul Durrant  */
4479ed1f50c3SPaul Durrant #define MAX_IP_HDR_LEN 128
4480ed1f50c3SPaul Durrant 
4481f9708b43SJan Beulich static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
4482ed1f50c3SPaul Durrant {
4483ed1f50c3SPaul Durrant 	unsigned int off;
4484ed1f50c3SPaul Durrant 	bool fragment;
4485f9708b43SJan Beulich 	__sum16 *csum;
4486ed1f50c3SPaul Durrant 	int err;
4487ed1f50c3SPaul Durrant 
4488ed1f50c3SPaul Durrant 	fragment = false;
4489ed1f50c3SPaul Durrant 
4490ed1f50c3SPaul Durrant 	err = skb_maybe_pull_tail(skb,
4491ed1f50c3SPaul Durrant 				  sizeof(struct iphdr),
4492ed1f50c3SPaul Durrant 				  MAX_IP_HDR_LEN);
4493ed1f50c3SPaul Durrant 	if (err < 0)
4494ed1f50c3SPaul Durrant 		goto out;
4495ed1f50c3SPaul Durrant 
4496ed1f50c3SPaul Durrant 	if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
4497ed1f50c3SPaul Durrant 		fragment = true;
4498ed1f50c3SPaul Durrant 
4499ed1f50c3SPaul Durrant 	off = ip_hdrlen(skb);
4500ed1f50c3SPaul Durrant 
4501ed1f50c3SPaul Durrant 	err = -EPROTO;
4502ed1f50c3SPaul Durrant 
4503ed1f50c3SPaul Durrant 	if (fragment)
4504ed1f50c3SPaul Durrant 		goto out;
4505ed1f50c3SPaul Durrant 
4506f9708b43SJan Beulich 	csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4507f9708b43SJan Beulich 	if (IS_ERR(csum))
4508f9708b43SJan Beulich 		return PTR_ERR(csum);
4509ed1f50c3SPaul Durrant 
4510ed1f50c3SPaul Durrant 	if (recalculate)
4511f9708b43SJan Beulich 		*csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4512ed1f50c3SPaul Durrant 					   ip_hdr(skb)->daddr,
4513ed1f50c3SPaul Durrant 					   skb->len - off,
4514f9708b43SJan Beulich 					   ip_hdr(skb)->protocol, 0);
4515ed1f50c3SPaul Durrant 	err = 0;
4516ed1f50c3SPaul Durrant 
4517ed1f50c3SPaul Durrant out:
4518ed1f50c3SPaul Durrant 	return err;
4519ed1f50c3SPaul Durrant }
4520ed1f50c3SPaul Durrant 
4521ed1f50c3SPaul Durrant /* This value should be large enough to cover a tagged ethernet header plus
4522ed1f50c3SPaul Durrant  * an IPv6 header, all options, and a maximal TCP or UDP header.
4523ed1f50c3SPaul Durrant  */
4524ed1f50c3SPaul Durrant #define MAX_IPV6_HDR_LEN 256
4525ed1f50c3SPaul Durrant 
4526ed1f50c3SPaul Durrant #define OPT_HDR(type, skb, off) \
4527ed1f50c3SPaul Durrant 	(type *)(skb_network_header(skb) + (off))
4528ed1f50c3SPaul Durrant 
4529ed1f50c3SPaul Durrant static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4530ed1f50c3SPaul Durrant {
4531ed1f50c3SPaul Durrant 	int err;
4532ed1f50c3SPaul Durrant 	u8 nexthdr;
4533ed1f50c3SPaul Durrant 	unsigned int off;
4534ed1f50c3SPaul Durrant 	unsigned int len;
4535ed1f50c3SPaul Durrant 	bool fragment;
4536ed1f50c3SPaul Durrant 	bool done;
4537f9708b43SJan Beulich 	__sum16 *csum;
4538ed1f50c3SPaul Durrant 
4539ed1f50c3SPaul Durrant 	fragment = false;
4540ed1f50c3SPaul Durrant 	done = false;
4541ed1f50c3SPaul Durrant 
4542ed1f50c3SPaul Durrant 	off = sizeof(struct ipv6hdr);
4543ed1f50c3SPaul Durrant 
4544ed1f50c3SPaul Durrant 	err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4545ed1f50c3SPaul Durrant 	if (err < 0)
4546ed1f50c3SPaul Durrant 		goto out;
4547ed1f50c3SPaul Durrant 
4548ed1f50c3SPaul Durrant 	nexthdr = ipv6_hdr(skb)->nexthdr;
4549ed1f50c3SPaul Durrant 
4550ed1f50c3SPaul Durrant 	len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4551ed1f50c3SPaul Durrant 	while (off <= len && !done) {
4552ed1f50c3SPaul Durrant 		switch (nexthdr) {
4553ed1f50c3SPaul Durrant 		case IPPROTO_DSTOPTS:
4554ed1f50c3SPaul Durrant 		case IPPROTO_HOPOPTS:
4555ed1f50c3SPaul Durrant 		case IPPROTO_ROUTING: {
4556ed1f50c3SPaul Durrant 			struct ipv6_opt_hdr *hp;
4557ed1f50c3SPaul Durrant 
4558ed1f50c3SPaul Durrant 			err = skb_maybe_pull_tail(skb,
4559ed1f50c3SPaul Durrant 						  off +
4560ed1f50c3SPaul Durrant 						  sizeof(struct ipv6_opt_hdr),
4561ed1f50c3SPaul Durrant 						  MAX_IPV6_HDR_LEN);
4562ed1f50c3SPaul Durrant 			if (err < 0)
4563ed1f50c3SPaul Durrant 				goto out;
4564ed1f50c3SPaul Durrant 
4565ed1f50c3SPaul Durrant 			hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4566ed1f50c3SPaul Durrant 			nexthdr = hp->nexthdr;
4567ed1f50c3SPaul Durrant 			off += ipv6_optlen(hp);
4568ed1f50c3SPaul Durrant 			break;
4569ed1f50c3SPaul Durrant 		}
4570ed1f50c3SPaul Durrant 		case IPPROTO_AH: {
4571ed1f50c3SPaul Durrant 			struct ip_auth_hdr *hp;
4572ed1f50c3SPaul Durrant 
4573ed1f50c3SPaul Durrant 			err = skb_maybe_pull_tail(skb,
4574ed1f50c3SPaul Durrant 						  off +
4575ed1f50c3SPaul Durrant 						  sizeof(struct ip_auth_hdr),
4576ed1f50c3SPaul Durrant 						  MAX_IPV6_HDR_LEN);
4577ed1f50c3SPaul Durrant 			if (err < 0)
4578ed1f50c3SPaul Durrant 				goto out;
4579ed1f50c3SPaul Durrant 
4580ed1f50c3SPaul Durrant 			hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4581ed1f50c3SPaul Durrant 			nexthdr = hp->nexthdr;
4582ed1f50c3SPaul Durrant 			off += ipv6_authlen(hp);
4583ed1f50c3SPaul Durrant 			break;
4584ed1f50c3SPaul Durrant 		}
4585ed1f50c3SPaul Durrant 		case IPPROTO_FRAGMENT: {
4586ed1f50c3SPaul Durrant 			struct frag_hdr *hp;
4587ed1f50c3SPaul Durrant 
4588ed1f50c3SPaul Durrant 			err = skb_maybe_pull_tail(skb,
4589ed1f50c3SPaul Durrant 						  off +
4590ed1f50c3SPaul Durrant 						  sizeof(struct frag_hdr),
4591ed1f50c3SPaul Durrant 						  MAX_IPV6_HDR_LEN);
4592ed1f50c3SPaul Durrant 			if (err < 0)
4593ed1f50c3SPaul Durrant 				goto out;
4594ed1f50c3SPaul Durrant 
4595ed1f50c3SPaul Durrant 			hp = OPT_HDR(struct frag_hdr, skb, off);
4596ed1f50c3SPaul Durrant 
4597ed1f50c3SPaul Durrant 			if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
4598ed1f50c3SPaul Durrant 				fragment = true;
4599ed1f50c3SPaul Durrant 
4600ed1f50c3SPaul Durrant 			nexthdr = hp->nexthdr;
4601ed1f50c3SPaul Durrant 			off += sizeof(struct frag_hdr);
4602ed1f50c3SPaul Durrant 			break;
4603ed1f50c3SPaul Durrant 		}
4604ed1f50c3SPaul Durrant 		default:
4605ed1f50c3SPaul Durrant 			done = true;
4606ed1f50c3SPaul Durrant 			break;
4607ed1f50c3SPaul Durrant 		}
4608ed1f50c3SPaul Durrant 	}
4609ed1f50c3SPaul Durrant 
4610ed1f50c3SPaul Durrant 	err = -EPROTO;
4611ed1f50c3SPaul Durrant 
4612ed1f50c3SPaul Durrant 	if (!done || fragment)
4613ed1f50c3SPaul Durrant 		goto out;
4614ed1f50c3SPaul Durrant 
4615f9708b43SJan Beulich 	csum = skb_checksum_setup_ip(skb, nexthdr, off);
4616f9708b43SJan Beulich 	if (IS_ERR(csum))
4617f9708b43SJan Beulich 		return PTR_ERR(csum);
4618ed1f50c3SPaul Durrant 
4619ed1f50c3SPaul Durrant 	if (recalculate)
4620f9708b43SJan Beulich 		*csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4621ed1f50c3SPaul Durrant 					 &ipv6_hdr(skb)->daddr,
4622f9708b43SJan Beulich 					 skb->len - off, nexthdr, 0);
4623ed1f50c3SPaul Durrant 	err = 0;
4624ed1f50c3SPaul Durrant 
4625ed1f50c3SPaul Durrant out:
4626ed1f50c3SPaul Durrant 	return err;
4627ed1f50c3SPaul Durrant }
4628ed1f50c3SPaul Durrant 
4629ed1f50c3SPaul Durrant /**
4630ed1f50c3SPaul Durrant  * skb_checksum_setup - set up partial checksum offset
4631ed1f50c3SPaul Durrant  * @skb: the skb to set up
4632ed1f50c3SPaul Durrant  * @recalculate: if true the pseudo-header checksum will be recalculated
4633ed1f50c3SPaul Durrant  */
4634ed1f50c3SPaul Durrant int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4635ed1f50c3SPaul Durrant {
4636ed1f50c3SPaul Durrant 	int err;
4637ed1f50c3SPaul Durrant 
4638ed1f50c3SPaul Durrant 	switch (skb->protocol) {
4639ed1f50c3SPaul Durrant 	case htons(ETH_P_IP):
4640f9708b43SJan Beulich 		err = skb_checksum_setup_ipv4(skb, recalculate);
4641ed1f50c3SPaul Durrant 		break;
4642ed1f50c3SPaul Durrant 
4643ed1f50c3SPaul Durrant 	case htons(ETH_P_IPV6):
4644ed1f50c3SPaul Durrant 		err = skb_checksum_setup_ipv6(skb, recalculate);
4645ed1f50c3SPaul Durrant 		break;
4646ed1f50c3SPaul Durrant 
4647ed1f50c3SPaul Durrant 	default:
4648ed1f50c3SPaul Durrant 		err = -EPROTO;
4649ed1f50c3SPaul Durrant 		break;
4650ed1f50c3SPaul Durrant 	}
4651ed1f50c3SPaul Durrant 
4652ed1f50c3SPaul Durrant 	return err;
4653ed1f50c3SPaul Durrant }
4654ed1f50c3SPaul Durrant EXPORT_SYMBOL(skb_checksum_setup);
4655ed1f50c3SPaul Durrant 
46569afd85c9SLinus Lüssing /**
46579afd85c9SLinus Lüssing  * skb_checksum_maybe_trim - maybe trims the given skb
46589afd85c9SLinus Lüssing  * @skb: the skb to check
46599afd85c9SLinus Lüssing  * @transport_len: the data length beyond the network header
46609afd85c9SLinus Lüssing  *
46619afd85c9SLinus Lüssing  * Checks whether the given skb has data beyond the given transport length.
46629afd85c9SLinus Lüssing  * If so, returns a cloned skb trimmed to this transport length.
46639afd85c9SLinus Lüssing  * Otherwise returns the provided skb. Returns NULL in error cases
46649afd85c9SLinus Lüssing  * (e.g. transport_len exceeds skb length or out-of-memory).
46659afd85c9SLinus Lüssing  *
4666a516993fSLinus Lüssing  * Caller needs to set the skb transport header and free any returned skb if it
4667a516993fSLinus Lüssing  * differs from the provided skb.
46689afd85c9SLinus Lüssing  */
46699afd85c9SLinus Lüssing static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
46709afd85c9SLinus Lüssing 					       unsigned int transport_len)
46719afd85c9SLinus Lüssing {
46729afd85c9SLinus Lüssing 	struct sk_buff *skb_chk;
46739afd85c9SLinus Lüssing 	unsigned int len = skb_transport_offset(skb) + transport_len;
46749afd85c9SLinus Lüssing 	int ret;
46759afd85c9SLinus Lüssing 
4676a516993fSLinus Lüssing 	if (skb->len < len)
46779afd85c9SLinus Lüssing 		return NULL;
4678a516993fSLinus Lüssing 	else if (skb->len == len)
46799afd85c9SLinus Lüssing 		return skb;
46809afd85c9SLinus Lüssing 
46819afd85c9SLinus Lüssing 	skb_chk = skb_clone(skb, GFP_ATOMIC);
46829afd85c9SLinus Lüssing 	if (!skb_chk)
46839afd85c9SLinus Lüssing 		return NULL;
46849afd85c9SLinus Lüssing 
46859afd85c9SLinus Lüssing 	ret = pskb_trim_rcsum(skb_chk, len);
46869afd85c9SLinus Lüssing 	if (ret) {
46879afd85c9SLinus Lüssing 		kfree_skb(skb_chk);
46889afd85c9SLinus Lüssing 		return NULL;
46899afd85c9SLinus Lüssing 	}
46909afd85c9SLinus Lüssing 
46919afd85c9SLinus Lüssing 	return skb_chk;
46929afd85c9SLinus Lüssing }
46939afd85c9SLinus Lüssing 
46949afd85c9SLinus Lüssing /**
46959afd85c9SLinus Lüssing  * skb_checksum_trimmed - validate checksum of an skb
46969afd85c9SLinus Lüssing  * @skb: the skb to check
46979afd85c9SLinus Lüssing  * @transport_len: the data length beyond the network header
46989afd85c9SLinus Lüssing  * @skb_chkf: checksum function to use
46999afd85c9SLinus Lüssing  *
47009afd85c9SLinus Lüssing  * Applies the given checksum function skb_chkf to the provided skb.
47019afd85c9SLinus Lüssing  * Returns a checked and maybe trimmed skb. Returns NULL on error.
47029afd85c9SLinus Lüssing  *
47039afd85c9SLinus Lüssing  * If the skb has data beyond the given transport length, then a
47049afd85c9SLinus Lüssing  * trimmed & cloned skb is checked and returned.
47059afd85c9SLinus Lüssing  *
4706a516993fSLinus Lüssing  * Caller needs to set the skb transport header and free any returned skb if it
4707a516993fSLinus Lüssing  * differs from the provided skb.
47089afd85c9SLinus Lüssing  */
47099afd85c9SLinus Lüssing struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
47109afd85c9SLinus Lüssing 				     unsigned int transport_len,
47119afd85c9SLinus Lüssing 				     __sum16(*skb_chkf)(struct sk_buff *skb))
47129afd85c9SLinus Lüssing {
47139afd85c9SLinus Lüssing 	struct sk_buff *skb_chk;
47149afd85c9SLinus Lüssing 	unsigned int offset = skb_transport_offset(skb);
4715fcba67c9SLinus Lüssing 	__sum16 ret;
47169afd85c9SLinus Lüssing 
47179afd85c9SLinus Lüssing 	skb_chk = skb_checksum_maybe_trim(skb, transport_len);
47189afd85c9SLinus Lüssing 	if (!skb_chk)
4719a516993fSLinus Lüssing 		goto err;
47209afd85c9SLinus Lüssing 
4721a516993fSLinus Lüssing 	if (!pskb_may_pull(skb_chk, offset))
4722a516993fSLinus Lüssing 		goto err;
47239afd85c9SLinus Lüssing 
47249b368814SLinus Lüssing 	skb_pull_rcsum(skb_chk, offset);
47259afd85c9SLinus Lüssing 	ret = skb_chkf(skb_chk);
47269b368814SLinus Lüssing 	skb_push_rcsum(skb_chk, offset);
47279afd85c9SLinus Lüssing 
4728a516993fSLinus Lüssing 	if (ret)
4729a516993fSLinus Lüssing 		goto err;
47309afd85c9SLinus Lüssing 
47319afd85c9SLinus Lüssing 	return skb_chk;
4732a516993fSLinus Lüssing 
4733a516993fSLinus Lüssing err:
4734a516993fSLinus Lüssing 	if (skb_chk && skb_chk != skb)
4735a516993fSLinus Lüssing 		kfree_skb(skb_chk);
4736a516993fSLinus Lüssing 
4737a516993fSLinus Lüssing 	return NULL;
4738a516993fSLinus Lüssing 
47399afd85c9SLinus Lüssing }
47409afd85c9SLinus Lüssing EXPORT_SYMBOL(skb_checksum_trimmed);
47419afd85c9SLinus Lüssing 
47424497b076SBen Hutchings void __skb_warn_lro_forwarding(const struct sk_buff *skb)
47434497b076SBen Hutchings {
4744e87cc472SJoe Perches 	net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4745e87cc472SJoe Perches 			     skb->dev->name);
47464497b076SBen Hutchings }
47474497b076SBen Hutchings EXPORT_SYMBOL(__skb_warn_lro_forwarding);
4748bad43ca8SEric Dumazet 
4749bad43ca8SEric Dumazet void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4750bad43ca8SEric Dumazet {
47513d861f66SEric Dumazet 	if (head_stolen) {
47523d861f66SEric Dumazet 		skb_release_head_state(skb);
4753bad43ca8SEric Dumazet 		kmem_cache_free(skbuff_head_cache, skb);
47543d861f66SEric Dumazet 	} else {
4755bad43ca8SEric Dumazet 		__kfree_skb(skb);
4756bad43ca8SEric Dumazet 	}
47573d861f66SEric Dumazet }
4758bad43ca8SEric Dumazet EXPORT_SYMBOL(kfree_skb_partial);
4759bad43ca8SEric Dumazet 
4760bad43ca8SEric Dumazet /**
4761bad43ca8SEric Dumazet  * skb_try_coalesce - try to merge skb to prior one
4762bad43ca8SEric Dumazet  * @to: prior buffer
4763bad43ca8SEric Dumazet  * @from: buffer to add
4764bad43ca8SEric Dumazet  * @fragstolen: pointer to boolean
4765c6c4b97cSRandy Dunlap  * @delta_truesize: how much more was allocated than was requested
4766bad43ca8SEric Dumazet  */
4767bad43ca8SEric Dumazet bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4768bad43ca8SEric Dumazet 		      bool *fragstolen, int *delta_truesize)
4769bad43ca8SEric Dumazet {
4770bad43ca8SEric Dumazet 	int i, delta, len = from->len;
4771bad43ca8SEric Dumazet 
4772bad43ca8SEric Dumazet 	*fragstolen = false;
4773bad43ca8SEric Dumazet 
4774bad43ca8SEric Dumazet 	if (skb_cloned(to))
4775bad43ca8SEric Dumazet 		return false;
4776bad43ca8SEric Dumazet 
4777bad43ca8SEric Dumazet 	if (len <= skb_tailroom(to)) {
4778e93a0435SEric Dumazet 		if (len)
4779bad43ca8SEric Dumazet 			BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
4780bad43ca8SEric Dumazet 		*delta_truesize = 0;
4781bad43ca8SEric Dumazet 		return true;
4782bad43ca8SEric Dumazet 	}
4783bad43ca8SEric Dumazet 
4784bad43ca8SEric Dumazet 	if (skb_has_frag_list(to) || skb_has_frag_list(from))
4785bad43ca8SEric Dumazet 		return false;
47861f8b977aSWillem de Bruijn 	if (skb_zcopy(to) || skb_zcopy(from))
47871f8b977aSWillem de Bruijn 		return false;
4788bad43ca8SEric Dumazet 
4789bad43ca8SEric Dumazet 	if (skb_headlen(from) != 0) {
4790bad43ca8SEric Dumazet 		struct page *page;
4791bad43ca8SEric Dumazet 		unsigned int offset;
4792bad43ca8SEric Dumazet 
4793bad43ca8SEric Dumazet 		if (skb_shinfo(to)->nr_frags +
4794bad43ca8SEric Dumazet 		    skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4795bad43ca8SEric Dumazet 			return false;
4796bad43ca8SEric Dumazet 
4797bad43ca8SEric Dumazet 		if (skb_head_is_locked(from))
4798bad43ca8SEric Dumazet 			return false;
4799bad43ca8SEric Dumazet 
4800bad43ca8SEric Dumazet 		delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4801bad43ca8SEric Dumazet 
4802bad43ca8SEric Dumazet 		page = virt_to_head_page(from->head);
4803bad43ca8SEric Dumazet 		offset = from->data - (unsigned char *)page_address(page);
4804bad43ca8SEric Dumazet 
4805bad43ca8SEric Dumazet 		skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4806bad43ca8SEric Dumazet 				   page, offset, skb_headlen(from));
4807bad43ca8SEric Dumazet 		*fragstolen = true;
4808bad43ca8SEric Dumazet 	} else {
4809bad43ca8SEric Dumazet 		if (skb_shinfo(to)->nr_frags +
4810bad43ca8SEric Dumazet 		    skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4811bad43ca8SEric Dumazet 			return false;
4812bad43ca8SEric Dumazet 
4813f4b549a5SWeiping Pan 		delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
4814bad43ca8SEric Dumazet 	}
4815bad43ca8SEric Dumazet 
4816bad43ca8SEric Dumazet 	WARN_ON_ONCE(delta < len);
4817bad43ca8SEric Dumazet 
4818bad43ca8SEric Dumazet 	memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4819bad43ca8SEric Dumazet 	       skb_shinfo(from)->frags,
4820bad43ca8SEric Dumazet 	       skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4821bad43ca8SEric Dumazet 	skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4822bad43ca8SEric Dumazet 
4823bad43ca8SEric Dumazet 	if (!skb_cloned(from))
4824bad43ca8SEric Dumazet 		skb_shinfo(from)->nr_frags = 0;
4825bad43ca8SEric Dumazet 
48268ea853fdSLi RongQing 	/* if the skb is not cloned this does nothing
48278ea853fdSLi RongQing 	 * since we set nr_frags to 0.
48288ea853fdSLi RongQing 	 */
4829bad43ca8SEric Dumazet 	for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4830bad43ca8SEric Dumazet 		skb_frag_ref(from, i);
4831bad43ca8SEric Dumazet 
4832bad43ca8SEric Dumazet 	to->truesize += delta;
4833bad43ca8SEric Dumazet 	to->len += len;
4834bad43ca8SEric Dumazet 	to->data_len += len;
4835bad43ca8SEric Dumazet 
4836bad43ca8SEric Dumazet 	*delta_truesize = delta;
4837bad43ca8SEric Dumazet 	return true;
4838bad43ca8SEric Dumazet }
4839bad43ca8SEric Dumazet EXPORT_SYMBOL(skb_try_coalesce);
4840621e84d6SNicolas Dichtel 
4841621e84d6SNicolas Dichtel /**
48428b27f277SNicolas Dichtel  * skb_scrub_packet - scrub an skb
4843621e84d6SNicolas Dichtel  *
4844621e84d6SNicolas Dichtel  * @skb: buffer to clean
48458b27f277SNicolas Dichtel  * @xnet: packet is crossing netns
4846621e84d6SNicolas Dichtel  *
48478b27f277SNicolas Dichtel  * skb_scrub_packet can be used after encapsulating or decapsulting a packet
48488b27f277SNicolas Dichtel  * into/from a tunnel. Some information have to be cleared during these
48498b27f277SNicolas Dichtel  * operations.
48508b27f277SNicolas Dichtel  * skb_scrub_packet can also be used to clean a skb before injecting it in
48518b27f277SNicolas Dichtel  * another namespace (@xnet == true). We have to clear all information in the
48528b27f277SNicolas Dichtel  * skb that could impact namespace isolation.
4853621e84d6SNicolas Dichtel  */
48548b27f277SNicolas Dichtel void skb_scrub_packet(struct sk_buff *skb, bool xnet)
4855621e84d6SNicolas Dichtel {
48562456e855SThomas Gleixner 	skb->tstamp = 0;
4857621e84d6SNicolas Dichtel 	skb->pkt_type = PACKET_HOST;
4858621e84d6SNicolas Dichtel 	skb->skb_iif = 0;
485960ff7467SWANG Cong 	skb->ignore_df = 0;
4860621e84d6SNicolas Dichtel 	skb_dst_drop(skb);
4861621e84d6SNicolas Dichtel 	secpath_reset(skb);
4862621e84d6SNicolas Dichtel 	nf_reset(skb);
4863621e84d6SNicolas Dichtel 	nf_reset_trace(skb);
4864213dd74aSHerbert Xu 
4865213dd74aSHerbert Xu 	if (!xnet)
4866213dd74aSHerbert Xu 		return;
4867213dd74aSHerbert Xu 
4868213dd74aSHerbert Xu 	skb_orphan(skb);
4869213dd74aSHerbert Xu 	skb->mark = 0;
4870621e84d6SNicolas Dichtel }
4871621e84d6SNicolas Dichtel EXPORT_SYMBOL_GPL(skb_scrub_packet);
4872de960aa9SFlorian Westphal 
4873de960aa9SFlorian Westphal /**
4874de960aa9SFlorian Westphal  * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4875de960aa9SFlorian Westphal  *
4876de960aa9SFlorian Westphal  * @skb: GSO skb
4877de960aa9SFlorian Westphal  *
4878de960aa9SFlorian Westphal  * skb_gso_transport_seglen is used to determine the real size of the
4879de960aa9SFlorian Westphal  * individual segments, including Layer4 headers (TCP/UDP).
4880de960aa9SFlorian Westphal  *
4881de960aa9SFlorian Westphal  * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4882de960aa9SFlorian Westphal  */
4883de960aa9SFlorian Westphal unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4884de960aa9SFlorian Westphal {
4885de960aa9SFlorian Westphal 	const struct skb_shared_info *shinfo = skb_shinfo(skb);
4886f993bc25SFlorian Westphal 	unsigned int thlen = 0;
4887f993bc25SFlorian Westphal 
4888f993bc25SFlorian Westphal 	if (skb->encapsulation) {
4889f993bc25SFlorian Westphal 		thlen = skb_inner_transport_header(skb) -
4890f993bc25SFlorian Westphal 			skb_transport_header(skb);
4891de960aa9SFlorian Westphal 
4892de960aa9SFlorian Westphal 		if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4893f993bc25SFlorian Westphal 			thlen += inner_tcp_hdrlen(skb);
4894f993bc25SFlorian Westphal 	} else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4895f993bc25SFlorian Westphal 		thlen = tcp_hdrlen(skb);
489690017accSMarcelo Ricardo Leitner 	} else if (unlikely(shinfo->gso_type & SKB_GSO_SCTP)) {
489790017accSMarcelo Ricardo Leitner 		thlen = sizeof(struct sctphdr);
4898f993bc25SFlorian Westphal 	}
48996d39d589SFlorian Westphal 	/* UFO sets gso_size to the size of the fragmentation
49006d39d589SFlorian Westphal 	 * payload, i.e. the size of the L4 (UDP) header is already
49016d39d589SFlorian Westphal 	 * accounted for.
49026d39d589SFlorian Westphal 	 */
4903f993bc25SFlorian Westphal 	return thlen + shinfo->gso_size;
4904de960aa9SFlorian Westphal }
4905de960aa9SFlorian Westphal EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
49060d5501c1SVlad Yasevich 
4907ae7ef81eSMarcelo Ricardo Leitner /**
4908ae7ef81eSMarcelo Ricardo Leitner  * skb_gso_validate_mtu - Return in case such skb fits a given MTU
4909ae7ef81eSMarcelo Ricardo Leitner  *
4910ae7ef81eSMarcelo Ricardo Leitner  * @skb: GSO skb
491176f21b99SDavid S. Miller  * @mtu: MTU to validate against
4912ae7ef81eSMarcelo Ricardo Leitner  *
4913ae7ef81eSMarcelo Ricardo Leitner  * skb_gso_validate_mtu validates if a given skb will fit a wanted MTU
4914ae7ef81eSMarcelo Ricardo Leitner  * once split.
4915ae7ef81eSMarcelo Ricardo Leitner  */
4916ae7ef81eSMarcelo Ricardo Leitner bool skb_gso_validate_mtu(const struct sk_buff *skb, unsigned int mtu)
4917ae7ef81eSMarcelo Ricardo Leitner {
4918ae7ef81eSMarcelo Ricardo Leitner 	const struct skb_shared_info *shinfo = skb_shinfo(skb);
4919ae7ef81eSMarcelo Ricardo Leitner 	const struct sk_buff *iter;
4920ae7ef81eSMarcelo Ricardo Leitner 	unsigned int hlen;
4921ae7ef81eSMarcelo Ricardo Leitner 
4922ae7ef81eSMarcelo Ricardo Leitner 	hlen = skb_gso_network_seglen(skb);
4923ae7ef81eSMarcelo Ricardo Leitner 
4924ae7ef81eSMarcelo Ricardo Leitner 	if (shinfo->gso_size != GSO_BY_FRAGS)
4925ae7ef81eSMarcelo Ricardo Leitner 		return hlen <= mtu;
4926ae7ef81eSMarcelo Ricardo Leitner 
4927ae7ef81eSMarcelo Ricardo Leitner 	/* Undo this so we can re-use header sizes */
4928ae7ef81eSMarcelo Ricardo Leitner 	hlen -= GSO_BY_FRAGS;
4929ae7ef81eSMarcelo Ricardo Leitner 
4930ae7ef81eSMarcelo Ricardo Leitner 	skb_walk_frags(skb, iter) {
4931ae7ef81eSMarcelo Ricardo Leitner 		if (hlen + skb_headlen(iter) > mtu)
4932ae7ef81eSMarcelo Ricardo Leitner 			return false;
4933ae7ef81eSMarcelo Ricardo Leitner 	}
4934ae7ef81eSMarcelo Ricardo Leitner 
4935ae7ef81eSMarcelo Ricardo Leitner 	return true;
4936ae7ef81eSMarcelo Ricardo Leitner }
4937ae7ef81eSMarcelo Ricardo Leitner EXPORT_SYMBOL_GPL(skb_gso_validate_mtu);
4938ae7ef81eSMarcelo Ricardo Leitner 
49390d5501c1SVlad Yasevich static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
49400d5501c1SVlad Yasevich {
49410d5501c1SVlad Yasevich 	if (skb_cow(skb, skb_headroom(skb)) < 0) {
49420d5501c1SVlad Yasevich 		kfree_skb(skb);
49430d5501c1SVlad Yasevich 		return NULL;
49440d5501c1SVlad Yasevich 	}
49450d5501c1SVlad Yasevich 
4946f6548615SVlad Yasevich 	memmove(skb->data - ETH_HLEN, skb->data - skb->mac_len - VLAN_HLEN,
4947a6e18ff1SVlad Yasevich 		2 * ETH_ALEN);
49480d5501c1SVlad Yasevich 	skb->mac_header += VLAN_HLEN;
49490d5501c1SVlad Yasevich 	return skb;
49500d5501c1SVlad Yasevich }
49510d5501c1SVlad Yasevich 
49520d5501c1SVlad Yasevich struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
49530d5501c1SVlad Yasevich {
49540d5501c1SVlad Yasevich 	struct vlan_hdr *vhdr;
49550d5501c1SVlad Yasevich 	u16 vlan_tci;
49560d5501c1SVlad Yasevich 
4957df8a39deSJiri Pirko 	if (unlikely(skb_vlan_tag_present(skb))) {
49580d5501c1SVlad Yasevich 		/* vlan_tci is already set-up so leave this for another time */
49590d5501c1SVlad Yasevich 		return skb;
49600d5501c1SVlad Yasevich 	}
49610d5501c1SVlad Yasevich 
49620d5501c1SVlad Yasevich 	skb = skb_share_check(skb, GFP_ATOMIC);
49630d5501c1SVlad Yasevich 	if (unlikely(!skb))
49640d5501c1SVlad Yasevich 		goto err_free;
49650d5501c1SVlad Yasevich 
49660d5501c1SVlad Yasevich 	if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
49670d5501c1SVlad Yasevich 		goto err_free;
49680d5501c1SVlad Yasevich 
49690d5501c1SVlad Yasevich 	vhdr = (struct vlan_hdr *)skb->data;
49700d5501c1SVlad Yasevich 	vlan_tci = ntohs(vhdr->h_vlan_TCI);
49710d5501c1SVlad Yasevich 	__vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
49720d5501c1SVlad Yasevich 
49730d5501c1SVlad Yasevich 	skb_pull_rcsum(skb, VLAN_HLEN);
49740d5501c1SVlad Yasevich 	vlan_set_encap_proto(skb, vhdr);
49750d5501c1SVlad Yasevich 
49760d5501c1SVlad Yasevich 	skb = skb_reorder_vlan_header(skb);
49770d5501c1SVlad Yasevich 	if (unlikely(!skb))
49780d5501c1SVlad Yasevich 		goto err_free;
49790d5501c1SVlad Yasevich 
49800d5501c1SVlad Yasevich 	skb_reset_network_header(skb);
49810d5501c1SVlad Yasevich 	skb_reset_transport_header(skb);
49820d5501c1SVlad Yasevich 	skb_reset_mac_len(skb);
49830d5501c1SVlad Yasevich 
49840d5501c1SVlad Yasevich 	return skb;
49850d5501c1SVlad Yasevich 
49860d5501c1SVlad Yasevich err_free:
49870d5501c1SVlad Yasevich 	kfree_skb(skb);
49880d5501c1SVlad Yasevich 	return NULL;
49890d5501c1SVlad Yasevich }
49900d5501c1SVlad Yasevich EXPORT_SYMBOL(skb_vlan_untag);
49912e4e4410SEric Dumazet 
4992e2195121SJiri Pirko int skb_ensure_writable(struct sk_buff *skb, int write_len)
4993e2195121SJiri Pirko {
4994e2195121SJiri Pirko 	if (!pskb_may_pull(skb, write_len))
4995e2195121SJiri Pirko 		return -ENOMEM;
4996e2195121SJiri Pirko 
4997e2195121SJiri Pirko 	if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
4998e2195121SJiri Pirko 		return 0;
4999e2195121SJiri Pirko 
5000e2195121SJiri Pirko 	return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5001e2195121SJiri Pirko }
5002e2195121SJiri Pirko EXPORT_SYMBOL(skb_ensure_writable);
5003e2195121SJiri Pirko 
5004bfca4c52SShmulik Ladkani /* remove VLAN header from packet and update csum accordingly.
5005bfca4c52SShmulik Ladkani  * expects a non skb_vlan_tag_present skb with a vlan tag payload
5006bfca4c52SShmulik Ladkani  */
5007bfca4c52SShmulik Ladkani int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
500893515d53SJiri Pirko {
500993515d53SJiri Pirko 	struct vlan_hdr *vhdr;
5010b6a79208SShmulik Ladkani 	int offset = skb->data - skb_mac_header(skb);
501193515d53SJiri Pirko 	int err;
501293515d53SJiri Pirko 
5013b6a79208SShmulik Ladkani 	if (WARN_ONCE(offset,
5014b6a79208SShmulik Ladkani 		      "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
5015b6a79208SShmulik Ladkani 		      offset)) {
5016b6a79208SShmulik Ladkani 		return -EINVAL;
5017b6a79208SShmulik Ladkani 	}
5018b6a79208SShmulik Ladkani 
501993515d53SJiri Pirko 	err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
502093515d53SJiri Pirko 	if (unlikely(err))
5021b6a79208SShmulik Ladkani 		return err;
502293515d53SJiri Pirko 
502393515d53SJiri Pirko 	skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
502493515d53SJiri Pirko 
502593515d53SJiri Pirko 	vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
502693515d53SJiri Pirko 	*vlan_tci = ntohs(vhdr->h_vlan_TCI);
502793515d53SJiri Pirko 
502893515d53SJiri Pirko 	memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
502993515d53SJiri Pirko 	__skb_pull(skb, VLAN_HLEN);
503093515d53SJiri Pirko 
503193515d53SJiri Pirko 	vlan_set_encap_proto(skb, vhdr);
503293515d53SJiri Pirko 	skb->mac_header += VLAN_HLEN;
503393515d53SJiri Pirko 
503493515d53SJiri Pirko 	if (skb_network_offset(skb) < ETH_HLEN)
503593515d53SJiri Pirko 		skb_set_network_header(skb, ETH_HLEN);
503693515d53SJiri Pirko 
503793515d53SJiri Pirko 	skb_reset_mac_len(skb);
503893515d53SJiri Pirko 
503993515d53SJiri Pirko 	return err;
504093515d53SJiri Pirko }
5041bfca4c52SShmulik Ladkani EXPORT_SYMBOL(__skb_vlan_pop);
504293515d53SJiri Pirko 
5043b6a79208SShmulik Ladkani /* Pop a vlan tag either from hwaccel or from payload.
5044b6a79208SShmulik Ladkani  * Expects skb->data at mac header.
5045b6a79208SShmulik Ladkani  */
504693515d53SJiri Pirko int skb_vlan_pop(struct sk_buff *skb)
504793515d53SJiri Pirko {
504893515d53SJiri Pirko 	u16 vlan_tci;
504993515d53SJiri Pirko 	__be16 vlan_proto;
505093515d53SJiri Pirko 	int err;
505193515d53SJiri Pirko 
5052df8a39deSJiri Pirko 	if (likely(skb_vlan_tag_present(skb))) {
505393515d53SJiri Pirko 		skb->vlan_tci = 0;
505493515d53SJiri Pirko 	} else {
5055ecf4ee41SShmulik Ladkani 		if (unlikely(!eth_type_vlan(skb->protocol)))
505693515d53SJiri Pirko 			return 0;
505793515d53SJiri Pirko 
505893515d53SJiri Pirko 		err = __skb_vlan_pop(skb, &vlan_tci);
505993515d53SJiri Pirko 		if (err)
506093515d53SJiri Pirko 			return err;
506193515d53SJiri Pirko 	}
506293515d53SJiri Pirko 	/* move next vlan tag to hw accel tag */
5063ecf4ee41SShmulik Ladkani 	if (likely(!eth_type_vlan(skb->protocol)))
506493515d53SJiri Pirko 		return 0;
506593515d53SJiri Pirko 
506693515d53SJiri Pirko 	vlan_proto = skb->protocol;
506793515d53SJiri Pirko 	err = __skb_vlan_pop(skb, &vlan_tci);
506893515d53SJiri Pirko 	if (unlikely(err))
506993515d53SJiri Pirko 		return err;
507093515d53SJiri Pirko 
507193515d53SJiri Pirko 	__vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
507293515d53SJiri Pirko 	return 0;
507393515d53SJiri Pirko }
507493515d53SJiri Pirko EXPORT_SYMBOL(skb_vlan_pop);
507593515d53SJiri Pirko 
5076b6a79208SShmulik Ladkani /* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
5077b6a79208SShmulik Ladkani  * Expects skb->data at mac header.
5078b6a79208SShmulik Ladkani  */
507993515d53SJiri Pirko int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
508093515d53SJiri Pirko {
5081df8a39deSJiri Pirko 	if (skb_vlan_tag_present(skb)) {
5082b6a79208SShmulik Ladkani 		int offset = skb->data - skb_mac_header(skb);
508393515d53SJiri Pirko 		int err;
508493515d53SJiri Pirko 
5085b6a79208SShmulik Ladkani 		if (WARN_ONCE(offset,
5086b6a79208SShmulik Ladkani 			      "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
5087b6a79208SShmulik Ladkani 			      offset)) {
5088b6a79208SShmulik Ladkani 			return -EINVAL;
5089b6a79208SShmulik Ladkani 		}
5090b6a79208SShmulik Ladkani 
509193515d53SJiri Pirko 		err = __vlan_insert_tag(skb, skb->vlan_proto,
5092df8a39deSJiri Pirko 					skb_vlan_tag_get(skb));
5093b6a79208SShmulik Ladkani 		if (err)
509493515d53SJiri Pirko 			return err;
50959241e2dfSDaniel Borkmann 
509693515d53SJiri Pirko 		skb->protocol = skb->vlan_proto;
509793515d53SJiri Pirko 		skb->mac_len += VLAN_HLEN;
509893515d53SJiri Pirko 
50996b83d28aSDaniel Borkmann 		skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
510093515d53SJiri Pirko 	}
510193515d53SJiri Pirko 	__vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
510293515d53SJiri Pirko 	return 0;
510393515d53SJiri Pirko }
510493515d53SJiri Pirko EXPORT_SYMBOL(skb_vlan_push);
510593515d53SJiri Pirko 
51062e4e4410SEric Dumazet /**
51072e4e4410SEric Dumazet  * alloc_skb_with_frags - allocate skb with page frags
51082e4e4410SEric Dumazet  *
5109de3f0d0eSMasanari Iida  * @header_len: size of linear part
5110de3f0d0eSMasanari Iida  * @data_len: needed length in frags
5111de3f0d0eSMasanari Iida  * @max_page_order: max page order desired.
5112de3f0d0eSMasanari Iida  * @errcode: pointer to error code if any
5113de3f0d0eSMasanari Iida  * @gfp_mask: allocation mask
51142e4e4410SEric Dumazet  *
51152e4e4410SEric Dumazet  * This can be used to allocate a paged skb, given a maximal order for frags.
51162e4e4410SEric Dumazet  */
51172e4e4410SEric Dumazet struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
51182e4e4410SEric Dumazet 				     unsigned long data_len,
51192e4e4410SEric Dumazet 				     int max_page_order,
51202e4e4410SEric Dumazet 				     int *errcode,
51212e4e4410SEric Dumazet 				     gfp_t gfp_mask)
51222e4e4410SEric Dumazet {
51232e4e4410SEric Dumazet 	int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
51242e4e4410SEric Dumazet 	unsigned long chunk;
51252e4e4410SEric Dumazet 	struct sk_buff *skb;
51262e4e4410SEric Dumazet 	struct page *page;
51272e4e4410SEric Dumazet 	gfp_t gfp_head;
51282e4e4410SEric Dumazet 	int i;
51292e4e4410SEric Dumazet 
51302e4e4410SEric Dumazet 	*errcode = -EMSGSIZE;
51312e4e4410SEric Dumazet 	/* Note this test could be relaxed, if we succeed to allocate
51322e4e4410SEric Dumazet 	 * high order pages...
51332e4e4410SEric Dumazet 	 */
51342e4e4410SEric Dumazet 	if (npages > MAX_SKB_FRAGS)
51352e4e4410SEric Dumazet 		return NULL;
51362e4e4410SEric Dumazet 
51372e4e4410SEric Dumazet 	gfp_head = gfp_mask;
5138d0164adcSMel Gorman 	if (gfp_head & __GFP_DIRECT_RECLAIM)
5139dcda9b04SMichal Hocko 		gfp_head |= __GFP_RETRY_MAYFAIL;
51402e4e4410SEric Dumazet 
51412e4e4410SEric Dumazet 	*errcode = -ENOBUFS;
51422e4e4410SEric Dumazet 	skb = alloc_skb(header_len, gfp_head);
51432e4e4410SEric Dumazet 	if (!skb)
51442e4e4410SEric Dumazet 		return NULL;
51452e4e4410SEric Dumazet 
51462e4e4410SEric Dumazet 	skb->truesize += npages << PAGE_SHIFT;
51472e4e4410SEric Dumazet 
51482e4e4410SEric Dumazet 	for (i = 0; npages > 0; i++) {
51492e4e4410SEric Dumazet 		int order = max_page_order;
51502e4e4410SEric Dumazet 
51512e4e4410SEric Dumazet 		while (order) {
51522e4e4410SEric Dumazet 			if (npages >= 1 << order) {
5153d0164adcSMel Gorman 				page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
51542e4e4410SEric Dumazet 						   __GFP_COMP |
51552e4e4410SEric Dumazet 						   __GFP_NOWARN |
51562e4e4410SEric Dumazet 						   __GFP_NORETRY,
51572e4e4410SEric Dumazet 						   order);
51582e4e4410SEric Dumazet 				if (page)
51592e4e4410SEric Dumazet 					goto fill_page;
51602e4e4410SEric Dumazet 				/* Do not retry other high order allocations */
51612e4e4410SEric Dumazet 				order = 1;
51622e4e4410SEric Dumazet 				max_page_order = 0;
51632e4e4410SEric Dumazet 			}
51642e4e4410SEric Dumazet 			order--;
51652e4e4410SEric Dumazet 		}
51662e4e4410SEric Dumazet 		page = alloc_page(gfp_mask);
51672e4e4410SEric Dumazet 		if (!page)
51682e4e4410SEric Dumazet 			goto failure;
51692e4e4410SEric Dumazet fill_page:
51702e4e4410SEric Dumazet 		chunk = min_t(unsigned long, data_len,
51712e4e4410SEric Dumazet 			      PAGE_SIZE << order);
51722e4e4410SEric Dumazet 		skb_fill_page_desc(skb, i, page, 0, chunk);
51732e4e4410SEric Dumazet 		data_len -= chunk;
51742e4e4410SEric Dumazet 		npages -= 1 << order;
51752e4e4410SEric Dumazet 	}
51762e4e4410SEric Dumazet 	return skb;
51772e4e4410SEric Dumazet 
51782e4e4410SEric Dumazet failure:
51792e4e4410SEric Dumazet 	kfree_skb(skb);
51802e4e4410SEric Dumazet 	return NULL;
51812e4e4410SEric Dumazet }
51822e4e4410SEric Dumazet EXPORT_SYMBOL(alloc_skb_with_frags);
51836fa01ccdSSowmini Varadhan 
51846fa01ccdSSowmini Varadhan /* carve out the first off bytes from skb when off < headlen */
51856fa01ccdSSowmini Varadhan static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
51866fa01ccdSSowmini Varadhan 				    const int headlen, gfp_t gfp_mask)
51876fa01ccdSSowmini Varadhan {
51886fa01ccdSSowmini Varadhan 	int i;
51896fa01ccdSSowmini Varadhan 	int size = skb_end_offset(skb);
51906fa01ccdSSowmini Varadhan 	int new_hlen = headlen - off;
51916fa01ccdSSowmini Varadhan 	u8 *data;
51926fa01ccdSSowmini Varadhan 
51936fa01ccdSSowmini Varadhan 	size = SKB_DATA_ALIGN(size);
51946fa01ccdSSowmini Varadhan 
51956fa01ccdSSowmini Varadhan 	if (skb_pfmemalloc(skb))
51966fa01ccdSSowmini Varadhan 		gfp_mask |= __GFP_MEMALLOC;
51976fa01ccdSSowmini Varadhan 	data = kmalloc_reserve(size +
51986fa01ccdSSowmini Varadhan 			       SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
51996fa01ccdSSowmini Varadhan 			       gfp_mask, NUMA_NO_NODE, NULL);
52006fa01ccdSSowmini Varadhan 	if (!data)
52016fa01ccdSSowmini Varadhan 		return -ENOMEM;
52026fa01ccdSSowmini Varadhan 
52036fa01ccdSSowmini Varadhan 	size = SKB_WITH_OVERHEAD(ksize(data));
52046fa01ccdSSowmini Varadhan 
52056fa01ccdSSowmini Varadhan 	/* Copy real data, and all frags */
52066fa01ccdSSowmini Varadhan 	skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
52076fa01ccdSSowmini Varadhan 	skb->len -= off;
52086fa01ccdSSowmini Varadhan 
52096fa01ccdSSowmini Varadhan 	memcpy((struct skb_shared_info *)(data + size),
52106fa01ccdSSowmini Varadhan 	       skb_shinfo(skb),
52116fa01ccdSSowmini Varadhan 	       offsetof(struct skb_shared_info,
52126fa01ccdSSowmini Varadhan 			frags[skb_shinfo(skb)->nr_frags]));
52136fa01ccdSSowmini Varadhan 	if (skb_cloned(skb)) {
52146fa01ccdSSowmini Varadhan 		/* drop the old head gracefully */
52156fa01ccdSSowmini Varadhan 		if (skb_orphan_frags(skb, gfp_mask)) {
52166fa01ccdSSowmini Varadhan 			kfree(data);
52176fa01ccdSSowmini Varadhan 			return -ENOMEM;
52186fa01ccdSSowmini Varadhan 		}
52196fa01ccdSSowmini Varadhan 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
52206fa01ccdSSowmini Varadhan 			skb_frag_ref(skb, i);
52216fa01ccdSSowmini Varadhan 		if (skb_has_frag_list(skb))
52226fa01ccdSSowmini Varadhan 			skb_clone_fraglist(skb);
52236fa01ccdSSowmini Varadhan 		skb_release_data(skb);
52246fa01ccdSSowmini Varadhan 	} else {
52256fa01ccdSSowmini Varadhan 		/* we can reuse existing recount- all we did was
52266fa01ccdSSowmini Varadhan 		 * relocate values
52276fa01ccdSSowmini Varadhan 		 */
52286fa01ccdSSowmini Varadhan 		skb_free_head(skb);
52296fa01ccdSSowmini Varadhan 	}
52306fa01ccdSSowmini Varadhan 
52316fa01ccdSSowmini Varadhan 	skb->head = data;
52326fa01ccdSSowmini Varadhan 	skb->data = data;
52336fa01ccdSSowmini Varadhan 	skb->head_frag = 0;
52346fa01ccdSSowmini Varadhan #ifdef NET_SKBUFF_DATA_USES_OFFSET
52356fa01ccdSSowmini Varadhan 	skb->end = size;
52366fa01ccdSSowmini Varadhan #else
52376fa01ccdSSowmini Varadhan 	skb->end = skb->head + size;
52386fa01ccdSSowmini Varadhan #endif
52396fa01ccdSSowmini Varadhan 	skb_set_tail_pointer(skb, skb_headlen(skb));
52406fa01ccdSSowmini Varadhan 	skb_headers_offset_update(skb, 0);
52416fa01ccdSSowmini Varadhan 	skb->cloned = 0;
52426fa01ccdSSowmini Varadhan 	skb->hdr_len = 0;
52436fa01ccdSSowmini Varadhan 	skb->nohdr = 0;
52446fa01ccdSSowmini Varadhan 	atomic_set(&skb_shinfo(skb)->dataref, 1);
52456fa01ccdSSowmini Varadhan 
52466fa01ccdSSowmini Varadhan 	return 0;
52476fa01ccdSSowmini Varadhan }
52486fa01ccdSSowmini Varadhan 
52496fa01ccdSSowmini Varadhan static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
52506fa01ccdSSowmini Varadhan 
52516fa01ccdSSowmini Varadhan /* carve out the first eat bytes from skb's frag_list. May recurse into
52526fa01ccdSSowmini Varadhan  * pskb_carve()
52536fa01ccdSSowmini Varadhan  */
52546fa01ccdSSowmini Varadhan static int pskb_carve_frag_list(struct sk_buff *skb,
52556fa01ccdSSowmini Varadhan 				struct skb_shared_info *shinfo, int eat,
52566fa01ccdSSowmini Varadhan 				gfp_t gfp_mask)
52576fa01ccdSSowmini Varadhan {
52586fa01ccdSSowmini Varadhan 	struct sk_buff *list = shinfo->frag_list;
52596fa01ccdSSowmini Varadhan 	struct sk_buff *clone = NULL;
52606fa01ccdSSowmini Varadhan 	struct sk_buff *insp = NULL;
52616fa01ccdSSowmini Varadhan 
52626fa01ccdSSowmini Varadhan 	do {
52636fa01ccdSSowmini Varadhan 		if (!list) {
52646fa01ccdSSowmini Varadhan 			pr_err("Not enough bytes to eat. Want %d\n", eat);
52656fa01ccdSSowmini Varadhan 			return -EFAULT;
52666fa01ccdSSowmini Varadhan 		}
52676fa01ccdSSowmini Varadhan 		if (list->len <= eat) {
52686fa01ccdSSowmini Varadhan 			/* Eaten as whole. */
52696fa01ccdSSowmini Varadhan 			eat -= list->len;
52706fa01ccdSSowmini Varadhan 			list = list->next;
52716fa01ccdSSowmini Varadhan 			insp = list;
52726fa01ccdSSowmini Varadhan 		} else {
52736fa01ccdSSowmini Varadhan 			/* Eaten partially. */
52746fa01ccdSSowmini Varadhan 			if (skb_shared(list)) {
52756fa01ccdSSowmini Varadhan 				clone = skb_clone(list, gfp_mask);
52766fa01ccdSSowmini Varadhan 				if (!clone)
52776fa01ccdSSowmini Varadhan 					return -ENOMEM;
52786fa01ccdSSowmini Varadhan 				insp = list->next;
52796fa01ccdSSowmini Varadhan 				list = clone;
52806fa01ccdSSowmini Varadhan 			} else {
52816fa01ccdSSowmini Varadhan 				/* This may be pulled without problems. */
52826fa01ccdSSowmini Varadhan 				insp = list;
52836fa01ccdSSowmini Varadhan 			}
52846fa01ccdSSowmini Varadhan 			if (pskb_carve(list, eat, gfp_mask) < 0) {
52856fa01ccdSSowmini Varadhan 				kfree_skb(clone);
52866fa01ccdSSowmini Varadhan 				return -ENOMEM;
52876fa01ccdSSowmini Varadhan 			}
52886fa01ccdSSowmini Varadhan 			break;
52896fa01ccdSSowmini Varadhan 		}
52906fa01ccdSSowmini Varadhan 	} while (eat);
52916fa01ccdSSowmini Varadhan 
52926fa01ccdSSowmini Varadhan 	/* Free pulled out fragments. */
52936fa01ccdSSowmini Varadhan 	while ((list = shinfo->frag_list) != insp) {
52946fa01ccdSSowmini Varadhan 		shinfo->frag_list = list->next;
52956fa01ccdSSowmini Varadhan 		kfree_skb(list);
52966fa01ccdSSowmini Varadhan 	}
52976fa01ccdSSowmini Varadhan 	/* And insert new clone at head. */
52986fa01ccdSSowmini Varadhan 	if (clone) {
52996fa01ccdSSowmini Varadhan 		clone->next = list;
53006fa01ccdSSowmini Varadhan 		shinfo->frag_list = clone;
53016fa01ccdSSowmini Varadhan 	}
53026fa01ccdSSowmini Varadhan 	return 0;
53036fa01ccdSSowmini Varadhan }
53046fa01ccdSSowmini Varadhan 
53056fa01ccdSSowmini Varadhan /* carve off first len bytes from skb. Split line (off) is in the
53066fa01ccdSSowmini Varadhan  * non-linear part of skb
53076fa01ccdSSowmini Varadhan  */
53086fa01ccdSSowmini Varadhan static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
53096fa01ccdSSowmini Varadhan 				       int pos, gfp_t gfp_mask)
53106fa01ccdSSowmini Varadhan {
53116fa01ccdSSowmini Varadhan 	int i, k = 0;
53126fa01ccdSSowmini Varadhan 	int size = skb_end_offset(skb);
53136fa01ccdSSowmini Varadhan 	u8 *data;
53146fa01ccdSSowmini Varadhan 	const int nfrags = skb_shinfo(skb)->nr_frags;
53156fa01ccdSSowmini Varadhan 	struct skb_shared_info *shinfo;
53166fa01ccdSSowmini Varadhan 
53176fa01ccdSSowmini Varadhan 	size = SKB_DATA_ALIGN(size);
53186fa01ccdSSowmini Varadhan 
53196fa01ccdSSowmini Varadhan 	if (skb_pfmemalloc(skb))
53206fa01ccdSSowmini Varadhan 		gfp_mask |= __GFP_MEMALLOC;
53216fa01ccdSSowmini Varadhan 	data = kmalloc_reserve(size +
53226fa01ccdSSowmini Varadhan 			       SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
53236fa01ccdSSowmini Varadhan 			       gfp_mask, NUMA_NO_NODE, NULL);
53246fa01ccdSSowmini Varadhan 	if (!data)
53256fa01ccdSSowmini Varadhan 		return -ENOMEM;
53266fa01ccdSSowmini Varadhan 
53276fa01ccdSSowmini Varadhan 	size = SKB_WITH_OVERHEAD(ksize(data));
53286fa01ccdSSowmini Varadhan 
53296fa01ccdSSowmini Varadhan 	memcpy((struct skb_shared_info *)(data + size),
53306fa01ccdSSowmini Varadhan 	       skb_shinfo(skb), offsetof(struct skb_shared_info,
53316fa01ccdSSowmini Varadhan 					 frags[skb_shinfo(skb)->nr_frags]));
53326fa01ccdSSowmini Varadhan 	if (skb_orphan_frags(skb, gfp_mask)) {
53336fa01ccdSSowmini Varadhan 		kfree(data);
53346fa01ccdSSowmini Varadhan 		return -ENOMEM;
53356fa01ccdSSowmini Varadhan 	}
53366fa01ccdSSowmini Varadhan 	shinfo = (struct skb_shared_info *)(data + size);
53376fa01ccdSSowmini Varadhan 	for (i = 0; i < nfrags; i++) {
53386fa01ccdSSowmini Varadhan 		int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
53396fa01ccdSSowmini Varadhan 
53406fa01ccdSSowmini Varadhan 		if (pos + fsize > off) {
53416fa01ccdSSowmini Varadhan 			shinfo->frags[k] = skb_shinfo(skb)->frags[i];
53426fa01ccdSSowmini Varadhan 
53436fa01ccdSSowmini Varadhan 			if (pos < off) {
53446fa01ccdSSowmini Varadhan 				/* Split frag.
53456fa01ccdSSowmini Varadhan 				 * We have two variants in this case:
53466fa01ccdSSowmini Varadhan 				 * 1. Move all the frag to the second
53476fa01ccdSSowmini Varadhan 				 *    part, if it is possible. F.e.
53486fa01ccdSSowmini Varadhan 				 *    this approach is mandatory for TUX,
53496fa01ccdSSowmini Varadhan 				 *    where splitting is expensive.
53506fa01ccdSSowmini Varadhan 				 * 2. Split is accurately. We make this.
53516fa01ccdSSowmini Varadhan 				 */
53526fa01ccdSSowmini Varadhan 				shinfo->frags[0].page_offset += off - pos;
53536fa01ccdSSowmini Varadhan 				skb_frag_size_sub(&shinfo->frags[0], off - pos);
53546fa01ccdSSowmini Varadhan 			}
53556fa01ccdSSowmini Varadhan 			skb_frag_ref(skb, i);
53566fa01ccdSSowmini Varadhan 			k++;
53576fa01ccdSSowmini Varadhan 		}
53586fa01ccdSSowmini Varadhan 		pos += fsize;
53596fa01ccdSSowmini Varadhan 	}
53606fa01ccdSSowmini Varadhan 	shinfo->nr_frags = k;
53616fa01ccdSSowmini Varadhan 	if (skb_has_frag_list(skb))
53626fa01ccdSSowmini Varadhan 		skb_clone_fraglist(skb);
53636fa01ccdSSowmini Varadhan 
53646fa01ccdSSowmini Varadhan 	if (k == 0) {
53656fa01ccdSSowmini Varadhan 		/* split line is in frag list */
53666fa01ccdSSowmini Varadhan 		pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask);
53676fa01ccdSSowmini Varadhan 	}
53686fa01ccdSSowmini Varadhan 	skb_release_data(skb);
53696fa01ccdSSowmini Varadhan 
53706fa01ccdSSowmini Varadhan 	skb->head = data;
53716fa01ccdSSowmini Varadhan 	skb->head_frag = 0;
53726fa01ccdSSowmini Varadhan 	skb->data = data;
53736fa01ccdSSowmini Varadhan #ifdef NET_SKBUFF_DATA_USES_OFFSET
53746fa01ccdSSowmini Varadhan 	skb->end = size;
53756fa01ccdSSowmini Varadhan #else
53766fa01ccdSSowmini Varadhan 	skb->end = skb->head + size;
53776fa01ccdSSowmini Varadhan #endif
53786fa01ccdSSowmini Varadhan 	skb_reset_tail_pointer(skb);
53796fa01ccdSSowmini Varadhan 	skb_headers_offset_update(skb, 0);
53806fa01ccdSSowmini Varadhan 	skb->cloned   = 0;
53816fa01ccdSSowmini Varadhan 	skb->hdr_len  = 0;
53826fa01ccdSSowmini Varadhan 	skb->nohdr    = 0;
53836fa01ccdSSowmini Varadhan 	skb->len -= off;
53846fa01ccdSSowmini Varadhan 	skb->data_len = skb->len;
53856fa01ccdSSowmini Varadhan 	atomic_set(&skb_shinfo(skb)->dataref, 1);
53866fa01ccdSSowmini Varadhan 	return 0;
53876fa01ccdSSowmini Varadhan }
53886fa01ccdSSowmini Varadhan 
53896fa01ccdSSowmini Varadhan /* remove len bytes from the beginning of the skb */
53906fa01ccdSSowmini Varadhan static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
53916fa01ccdSSowmini Varadhan {
53926fa01ccdSSowmini Varadhan 	int headlen = skb_headlen(skb);
53936fa01ccdSSowmini Varadhan 
53946fa01ccdSSowmini Varadhan 	if (len < headlen)
53956fa01ccdSSowmini Varadhan 		return pskb_carve_inside_header(skb, len, headlen, gfp);
53966fa01ccdSSowmini Varadhan 	else
53976fa01ccdSSowmini Varadhan 		return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
53986fa01ccdSSowmini Varadhan }
53996fa01ccdSSowmini Varadhan 
54006fa01ccdSSowmini Varadhan /* Extract to_copy bytes starting at off from skb, and return this in
54016fa01ccdSSowmini Varadhan  * a new skb
54026fa01ccdSSowmini Varadhan  */
54036fa01ccdSSowmini Varadhan struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
54046fa01ccdSSowmini Varadhan 			     int to_copy, gfp_t gfp)
54056fa01ccdSSowmini Varadhan {
54066fa01ccdSSowmini Varadhan 	struct sk_buff  *clone = skb_clone(skb, gfp);
54076fa01ccdSSowmini Varadhan 
54086fa01ccdSSowmini Varadhan 	if (!clone)
54096fa01ccdSSowmini Varadhan 		return NULL;
54106fa01ccdSSowmini Varadhan 
54116fa01ccdSSowmini Varadhan 	if (pskb_carve(clone, off, gfp) < 0 ||
54126fa01ccdSSowmini Varadhan 	    pskb_trim(clone, to_copy)) {
54136fa01ccdSSowmini Varadhan 		kfree_skb(clone);
54146fa01ccdSSowmini Varadhan 		return NULL;
54156fa01ccdSSowmini Varadhan 	}
54166fa01ccdSSowmini Varadhan 	return clone;
54176fa01ccdSSowmini Varadhan }
54186fa01ccdSSowmini Varadhan EXPORT_SYMBOL(pskb_extract);
5419c8c8b127SEric Dumazet 
5420c8c8b127SEric Dumazet /**
5421c8c8b127SEric Dumazet  * skb_condense - try to get rid of fragments/frag_list if possible
5422c8c8b127SEric Dumazet  * @skb: buffer
5423c8c8b127SEric Dumazet  *
5424c8c8b127SEric Dumazet  * Can be used to save memory before skb is added to a busy queue.
5425c8c8b127SEric Dumazet  * If packet has bytes in frags and enough tail room in skb->head,
5426c8c8b127SEric Dumazet  * pull all of them, so that we can free the frags right now and adjust
5427c8c8b127SEric Dumazet  * truesize.
5428c8c8b127SEric Dumazet  * Notes:
5429c8c8b127SEric Dumazet  *	We do not reallocate skb->head thus can not fail.
5430c8c8b127SEric Dumazet  *	Caller must re-evaluate skb->truesize if needed.
5431c8c8b127SEric Dumazet  */
5432c8c8b127SEric Dumazet void skb_condense(struct sk_buff *skb)
5433c8c8b127SEric Dumazet {
54343174fed9SEric Dumazet 	if (skb->data_len) {
54353174fed9SEric Dumazet 		if (skb->data_len > skb->end - skb->tail ||
5436c8c8b127SEric Dumazet 		    skb_cloned(skb))
5437c8c8b127SEric Dumazet 			return;
5438c8c8b127SEric Dumazet 
5439c8c8b127SEric Dumazet 		/* Nice, we can free page frag(s) right now */
5440c8c8b127SEric Dumazet 		__pskb_pull_tail(skb, skb->data_len);
54413174fed9SEric Dumazet 	}
54423174fed9SEric Dumazet 	/* At this point, skb->truesize might be over estimated,
54433174fed9SEric Dumazet 	 * because skb had a fragment, and fragments do not tell
54443174fed9SEric Dumazet 	 * their truesize.
54453174fed9SEric Dumazet 	 * When we pulled its content into skb->head, fragment
54463174fed9SEric Dumazet 	 * was freed, but __pskb_pull_tail() could not possibly
54473174fed9SEric Dumazet 	 * adjust skb->truesize, not knowing the frag truesize.
5448c8c8b127SEric Dumazet 	 */
5449c8c8b127SEric Dumazet 	skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
5450c8c8b127SEric Dumazet }
5451