xref: /openbmc/linux/net/core/skbuff.c (revision b90ddd56)
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>
441da177e4SLinus Torvalds #include <linux/mm.h>
451da177e4SLinus Torvalds #include <linux/interrupt.h>
461da177e4SLinus Torvalds #include <linux/in.h>
471da177e4SLinus Torvalds #include <linux/inet.h>
481da177e4SLinus Torvalds #include <linux/slab.h>
49de960aa9SFlorian Westphal #include <linux/tcp.h>
50de960aa9SFlorian Westphal #include <linux/udp.h>
5190017accSMarcelo Ricardo Leitner #include <linux/sctp.h>
521da177e4SLinus Torvalds #include <linux/netdevice.h>
531da177e4SLinus Torvalds #ifdef CONFIG_NET_CLS_ACT
541da177e4SLinus Torvalds #include <net/pkt_sched.h>
551da177e4SLinus Torvalds #endif
561da177e4SLinus Torvalds #include <linux/string.h>
571da177e4SLinus Torvalds #include <linux/skbuff.h>
589c55e01cSJens Axboe #include <linux/splice.h>
591da177e4SLinus Torvalds #include <linux/cache.h>
601da177e4SLinus Torvalds #include <linux/rtnetlink.h>
611da177e4SLinus Torvalds #include <linux/init.h>
62716ea3a7SDavid Howells #include <linux/scatterlist.h>
63ac45f602SPatrick Ohly #include <linux/errqueue.h>
64268bb0ceSLinus Torvalds #include <linux/prefetch.h>
650d5501c1SVlad Yasevich #include <linux/if_vlan.h>
661da177e4SLinus Torvalds 
671da177e4SLinus Torvalds #include <net/protocol.h>
681da177e4SLinus Torvalds #include <net/dst.h>
691da177e4SLinus Torvalds #include <net/sock.h>
701da177e4SLinus Torvalds #include <net/checksum.h>
71ed1f50c3SPaul Durrant #include <net/ip6_checksum.h>
721da177e4SLinus Torvalds #include <net/xfrm.h>
731da177e4SLinus Torvalds 
747c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
75ad8d75ffSSteven Rostedt #include <trace/events/skb.h>
7651c56b00SEric Dumazet #include <linux/highmem.h>
77b245be1fSWillem de Bruijn #include <linux/capability.h>
78b245be1fSWillem de Bruijn #include <linux/user_namespace.h>
79a1f8e7f7SAl Viro 
80d7e8883cSEric Dumazet struct kmem_cache *skbuff_head_cache __read_mostly;
81e18b890bSChristoph Lameter static struct kmem_cache *skbuff_fclone_cache __read_mostly;
825f74f82eSHans Westgaard Ry int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
835f74f82eSHans Westgaard Ry EXPORT_SYMBOL(sysctl_max_skb_frags);
841da177e4SLinus Torvalds 
851da177e4SLinus Torvalds /**
86f05de73bSJean Sacren  *	skb_panic - private function for out-of-line support
871da177e4SLinus Torvalds  *	@skb:	buffer
881da177e4SLinus Torvalds  *	@sz:	size
89f05de73bSJean Sacren  *	@addr:	address
9099d5851eSJames Hogan  *	@msg:	skb_over_panic or skb_under_panic
911da177e4SLinus Torvalds  *
92f05de73bSJean Sacren  *	Out-of-line support for skb_put() and skb_push().
93f05de73bSJean Sacren  *	Called via the wrapper skb_over_panic() or skb_under_panic().
94f05de73bSJean Sacren  *	Keep out of line to prevent kernel bloat.
95f05de73bSJean Sacren  *	__builtin_return_address is not used because it is not always reliable.
961da177e4SLinus Torvalds  */
97f05de73bSJean Sacren static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
9899d5851eSJames Hogan 		      const char msg[])
991da177e4SLinus Torvalds {
100e005d193SJoe Perches 	pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
10199d5851eSJames Hogan 		 msg, addr, skb->len, sz, skb->head, skb->data,
1024305b541SArnaldo Carvalho de Melo 		 (unsigned long)skb->tail, (unsigned long)skb->end,
10326095455SPatrick McHardy 		 skb->dev ? skb->dev->name : "<NULL>");
1041da177e4SLinus Torvalds 	BUG();
1051da177e4SLinus Torvalds }
1061da177e4SLinus Torvalds 
107f05de73bSJean Sacren static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
1081da177e4SLinus Torvalds {
109f05de73bSJean Sacren 	skb_panic(skb, sz, addr, __func__);
1101da177e4SLinus Torvalds }
1111da177e4SLinus Torvalds 
112f05de73bSJean Sacren static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
113f05de73bSJean Sacren {
114f05de73bSJean Sacren 	skb_panic(skb, sz, addr, __func__);
115f05de73bSJean Sacren }
116c93bdd0eSMel Gorman 
117c93bdd0eSMel Gorman /*
118c93bdd0eSMel Gorman  * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
119c93bdd0eSMel Gorman  * the caller if emergency pfmemalloc reserves are being used. If it is and
120c93bdd0eSMel Gorman  * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
121c93bdd0eSMel Gorman  * may be used. Otherwise, the packet data may be discarded until enough
122c93bdd0eSMel Gorman  * memory is free
123c93bdd0eSMel Gorman  */
124c93bdd0eSMel Gorman #define kmalloc_reserve(size, gfp, node, pfmemalloc) \
125c93bdd0eSMel Gorman 	 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
12661c5e88aSstephen hemminger 
12761c5e88aSstephen hemminger static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
12861c5e88aSstephen hemminger 			       unsigned long ip, bool *pfmemalloc)
129c93bdd0eSMel Gorman {
130c93bdd0eSMel Gorman 	void *obj;
131c93bdd0eSMel Gorman 	bool ret_pfmemalloc = false;
132c93bdd0eSMel Gorman 
133c93bdd0eSMel Gorman 	/*
134c93bdd0eSMel Gorman 	 * Try a regular allocation, when that fails and we're not entitled
135c93bdd0eSMel Gorman 	 * to the reserves, fail.
136c93bdd0eSMel Gorman 	 */
137c93bdd0eSMel Gorman 	obj = kmalloc_node_track_caller(size,
138c93bdd0eSMel Gorman 					flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
139c93bdd0eSMel Gorman 					node);
140c93bdd0eSMel Gorman 	if (obj || !(gfp_pfmemalloc_allowed(flags)))
141c93bdd0eSMel Gorman 		goto out;
142c93bdd0eSMel Gorman 
143c93bdd0eSMel Gorman 	/* Try again but now we are using pfmemalloc reserves */
144c93bdd0eSMel Gorman 	ret_pfmemalloc = true;
145c93bdd0eSMel Gorman 	obj = kmalloc_node_track_caller(size, flags, node);
146c93bdd0eSMel Gorman 
147c93bdd0eSMel Gorman out:
148c93bdd0eSMel Gorman 	if (pfmemalloc)
149c93bdd0eSMel Gorman 		*pfmemalloc = ret_pfmemalloc;
150c93bdd0eSMel Gorman 
151c93bdd0eSMel Gorman 	return obj;
152c93bdd0eSMel Gorman }
153c93bdd0eSMel Gorman 
1541da177e4SLinus Torvalds /* 	Allocate a new skbuff. We do this ourselves so we can fill in a few
1551da177e4SLinus Torvalds  *	'private' fields and also do memory statistics to find all the
1561da177e4SLinus Torvalds  *	[BEEP] leaks.
1571da177e4SLinus Torvalds  *
1581da177e4SLinus Torvalds  */
1591da177e4SLinus Torvalds 
1601da177e4SLinus Torvalds /**
161d179cd12SDavid S. Miller  *	__alloc_skb	-	allocate a network buffer
1621da177e4SLinus Torvalds  *	@size: size to allocate
1631da177e4SLinus Torvalds  *	@gfp_mask: allocation mask
164c93bdd0eSMel Gorman  *	@flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
165c93bdd0eSMel Gorman  *		instead of head cache and allocate a cloned (child) skb.
166c93bdd0eSMel Gorman  *		If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
167c93bdd0eSMel Gorman  *		allocations in case the data is required for writeback
168b30973f8SChristoph Hellwig  *	@node: numa node to allocate memory on
1691da177e4SLinus Torvalds  *
1701da177e4SLinus Torvalds  *	Allocate a new &sk_buff. The returned buffer has no headroom and a
17194b6042cSBen Hutchings  *	tail room of at least size bytes. The object has a reference count
17294b6042cSBen Hutchings  *	of one. The return is the buffer. On a failure the return is %NULL.
1731da177e4SLinus Torvalds  *
1741da177e4SLinus Torvalds  *	Buffers may only be allocated from interrupts using a @gfp_mask of
1751da177e4SLinus Torvalds  *	%GFP_ATOMIC.
1761da177e4SLinus Torvalds  */
177dd0fc66fSAl Viro struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
178c93bdd0eSMel Gorman 			    int flags, int node)
1791da177e4SLinus Torvalds {
180e18b890bSChristoph Lameter 	struct kmem_cache *cache;
1814947d3efSBenjamin LaHaise 	struct skb_shared_info *shinfo;
1821da177e4SLinus Torvalds 	struct sk_buff *skb;
1831da177e4SLinus Torvalds 	u8 *data;
184c93bdd0eSMel Gorman 	bool pfmemalloc;
1851da177e4SLinus Torvalds 
186c93bdd0eSMel Gorman 	cache = (flags & SKB_ALLOC_FCLONE)
187c93bdd0eSMel Gorman 		? skbuff_fclone_cache : skbuff_head_cache;
188c93bdd0eSMel Gorman 
189c93bdd0eSMel Gorman 	if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
190c93bdd0eSMel Gorman 		gfp_mask |= __GFP_MEMALLOC;
1918798b3fbSHerbert Xu 
1921da177e4SLinus Torvalds 	/* Get the HEAD */
193b30973f8SChristoph Hellwig 	skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
1941da177e4SLinus Torvalds 	if (!skb)
1951da177e4SLinus Torvalds 		goto out;
196ec7d2f2cSEric Dumazet 	prefetchw(skb);
1971da177e4SLinus Torvalds 
19887fb4b7bSEric Dumazet 	/* We do our best to align skb_shared_info on a separate cache
19987fb4b7bSEric Dumazet 	 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
20087fb4b7bSEric Dumazet 	 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
20187fb4b7bSEric Dumazet 	 * Both skb->head and skb_shared_info are cache line aligned.
20287fb4b7bSEric Dumazet 	 */
203bc417e30STony Lindgren 	size = SKB_DATA_ALIGN(size);
20487fb4b7bSEric Dumazet 	size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
205c93bdd0eSMel Gorman 	data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
2061da177e4SLinus Torvalds 	if (!data)
2071da177e4SLinus Torvalds 		goto nodata;
20887fb4b7bSEric Dumazet 	/* kmalloc(size) might give us more room than requested.
20987fb4b7bSEric Dumazet 	 * Put skb_shared_info exactly at the end of allocated zone,
21087fb4b7bSEric Dumazet 	 * to allow max possible filling before reallocation.
21187fb4b7bSEric Dumazet 	 */
21287fb4b7bSEric Dumazet 	size = SKB_WITH_OVERHEAD(ksize(data));
213ec7d2f2cSEric Dumazet 	prefetchw(data + size);
2141da177e4SLinus Torvalds 
215ca0605a7SArnaldo Carvalho de Melo 	/*
216c8005785SJohannes Berg 	 * Only clear those fields we need to clear, not those that we will
217c8005785SJohannes Berg 	 * actually initialise below. Hence, don't put any more fields after
218c8005785SJohannes Berg 	 * the tail pointer in struct sk_buff!
219ca0605a7SArnaldo Carvalho de Melo 	 */
220ca0605a7SArnaldo Carvalho de Melo 	memset(skb, 0, offsetof(struct sk_buff, tail));
22187fb4b7bSEric Dumazet 	/* Account for allocated memory : skb + skb->head */
22287fb4b7bSEric Dumazet 	skb->truesize = SKB_TRUESIZE(size);
223c93bdd0eSMel Gorman 	skb->pfmemalloc = pfmemalloc;
22463354797SReshetova, Elena 	refcount_set(&skb->users, 1);
2251da177e4SLinus Torvalds 	skb->head = data;
2261da177e4SLinus Torvalds 	skb->data = data;
22727a884dcSArnaldo Carvalho de Melo 	skb_reset_tail_pointer(skb);
2284305b541SArnaldo Carvalho de Melo 	skb->end = skb->tail + size;
22935d04610SCong Wang 	skb->mac_header = (typeof(skb->mac_header))~0U;
23035d04610SCong Wang 	skb->transport_header = (typeof(skb->transport_header))~0U;
23119633e12SStephen Hemminger 
2324947d3efSBenjamin LaHaise 	/* make sure we initialize shinfo sequentially */
2334947d3efSBenjamin LaHaise 	shinfo = skb_shinfo(skb);
234ec7d2f2cSEric Dumazet 	memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
2354947d3efSBenjamin LaHaise 	atomic_set(&shinfo->dataref, 1);
2364947d3efSBenjamin LaHaise 
237c93bdd0eSMel Gorman 	if (flags & SKB_ALLOC_FCLONE) {
238d0bf4a9eSEric Dumazet 		struct sk_buff_fclones *fclones;
2391da177e4SLinus Torvalds 
240d0bf4a9eSEric Dumazet 		fclones = container_of(skb, struct sk_buff_fclones, skb1);
241d0bf4a9eSEric Dumazet 
242d179cd12SDavid S. Miller 		skb->fclone = SKB_FCLONE_ORIG;
2432638595aSReshetova, Elena 		refcount_set(&fclones->fclone_ref, 1);
244d179cd12SDavid S. Miller 
2456ffe75ebSEric Dumazet 		fclones->skb2.fclone = SKB_FCLONE_CLONE;
246d179cd12SDavid S. Miller 	}
2471da177e4SLinus Torvalds out:
2481da177e4SLinus Torvalds 	return skb;
2491da177e4SLinus Torvalds nodata:
2508798b3fbSHerbert Xu 	kmem_cache_free(cache, skb);
2511da177e4SLinus Torvalds 	skb = NULL;
2521da177e4SLinus Torvalds 	goto out;
2531da177e4SLinus Torvalds }
254b4ac530fSDavid S. Miller EXPORT_SYMBOL(__alloc_skb);
2551da177e4SLinus Torvalds 
2561da177e4SLinus Torvalds /**
2572ea2f62cSEric Dumazet  * __build_skb - build a network buffer
258b2b5ce9dSEric Dumazet  * @data: data buffer provided by caller
2592ea2f62cSEric Dumazet  * @frag_size: size of data, or 0 if head was kmalloced
260b2b5ce9dSEric Dumazet  *
261b2b5ce9dSEric Dumazet  * Allocate a new &sk_buff. Caller provides space holding head and
262deceb4c0SFlorian Fainelli  * skb_shared_info. @data must have been allocated by kmalloc() only if
2632ea2f62cSEric Dumazet  * @frag_size is 0, otherwise data should come from the page allocator
2642ea2f62cSEric Dumazet  *  or vmalloc()
265b2b5ce9dSEric Dumazet  * The return is the new skb buffer.
266b2b5ce9dSEric Dumazet  * On a failure the return is %NULL, and @data is not freed.
267b2b5ce9dSEric Dumazet  * Notes :
268b2b5ce9dSEric Dumazet  *  Before IO, driver allocates only data buffer where NIC put incoming frame
269b2b5ce9dSEric Dumazet  *  Driver should add room at head (NET_SKB_PAD) and
270b2b5ce9dSEric Dumazet  *  MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
271b2b5ce9dSEric Dumazet  *  After IO, driver calls build_skb(), to allocate sk_buff and populate it
272b2b5ce9dSEric Dumazet  *  before giving packet to stack.
273b2b5ce9dSEric Dumazet  *  RX rings only contains data buffers, not full skbs.
274b2b5ce9dSEric Dumazet  */
2752ea2f62cSEric Dumazet struct sk_buff *__build_skb(void *data, unsigned int frag_size)
276b2b5ce9dSEric Dumazet {
277b2b5ce9dSEric Dumazet 	struct skb_shared_info *shinfo;
278b2b5ce9dSEric Dumazet 	struct sk_buff *skb;
279d3836f21SEric Dumazet 	unsigned int size = frag_size ? : ksize(data);
280b2b5ce9dSEric Dumazet 
281b2b5ce9dSEric Dumazet 	skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
282b2b5ce9dSEric Dumazet 	if (!skb)
283b2b5ce9dSEric Dumazet 		return NULL;
284b2b5ce9dSEric Dumazet 
285d3836f21SEric Dumazet 	size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
286b2b5ce9dSEric Dumazet 
287b2b5ce9dSEric Dumazet 	memset(skb, 0, offsetof(struct sk_buff, tail));
288b2b5ce9dSEric Dumazet 	skb->truesize = SKB_TRUESIZE(size);
28963354797SReshetova, Elena 	refcount_set(&skb->users, 1);
290b2b5ce9dSEric Dumazet 	skb->head = data;
291b2b5ce9dSEric Dumazet 	skb->data = data;
292b2b5ce9dSEric Dumazet 	skb_reset_tail_pointer(skb);
293b2b5ce9dSEric Dumazet 	skb->end = skb->tail + size;
29435d04610SCong Wang 	skb->mac_header = (typeof(skb->mac_header))~0U;
29535d04610SCong Wang 	skb->transport_header = (typeof(skb->transport_header))~0U;
296b2b5ce9dSEric Dumazet 
297b2b5ce9dSEric Dumazet 	/* make sure we initialize shinfo sequentially */
298b2b5ce9dSEric Dumazet 	shinfo = skb_shinfo(skb);
299b2b5ce9dSEric Dumazet 	memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
300b2b5ce9dSEric Dumazet 	atomic_set(&shinfo->dataref, 1);
301b2b5ce9dSEric Dumazet 
302b2b5ce9dSEric Dumazet 	return skb;
303b2b5ce9dSEric Dumazet }
3042ea2f62cSEric Dumazet 
3052ea2f62cSEric Dumazet /* build_skb() is wrapper over __build_skb(), that specifically
3062ea2f62cSEric Dumazet  * takes care of skb->head and skb->pfmemalloc
3072ea2f62cSEric Dumazet  * This means that if @frag_size is not zero, then @data must be backed
3082ea2f62cSEric Dumazet  * by a page fragment, not kmalloc() or vmalloc()
3092ea2f62cSEric Dumazet  */
3102ea2f62cSEric Dumazet struct sk_buff *build_skb(void *data, unsigned int frag_size)
3112ea2f62cSEric Dumazet {
3122ea2f62cSEric Dumazet 	struct sk_buff *skb = __build_skb(data, frag_size);
3132ea2f62cSEric Dumazet 
3142ea2f62cSEric Dumazet 	if (skb && frag_size) {
3152ea2f62cSEric Dumazet 		skb->head_frag = 1;
3162f064f34SMichal Hocko 		if (page_is_pfmemalloc(virt_to_head_page(data)))
3172ea2f62cSEric Dumazet 			skb->pfmemalloc = 1;
3182ea2f62cSEric Dumazet 	}
3192ea2f62cSEric Dumazet 	return skb;
3202ea2f62cSEric Dumazet }
321b2b5ce9dSEric Dumazet EXPORT_SYMBOL(build_skb);
322b2b5ce9dSEric Dumazet 
323795bb1c0SJesper Dangaard Brouer #define NAPI_SKB_CACHE_SIZE	64
324795bb1c0SJesper Dangaard Brouer 
325795bb1c0SJesper Dangaard Brouer struct napi_alloc_cache {
326795bb1c0SJesper Dangaard Brouer 	struct page_frag_cache page;
327e0d7924aSAlexey Dobriyan 	unsigned int skb_count;
328795bb1c0SJesper Dangaard Brouer 	void *skb_cache[NAPI_SKB_CACHE_SIZE];
329795bb1c0SJesper Dangaard Brouer };
330795bb1c0SJesper Dangaard Brouer 
331b63ae8caSAlexander Duyck static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
332795bb1c0SJesper Dangaard Brouer static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
333ffde7328SAlexander Duyck 
334ffde7328SAlexander Duyck static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
335ffde7328SAlexander Duyck {
336b63ae8caSAlexander Duyck 	struct page_frag_cache *nc;
337ffde7328SAlexander Duyck 	unsigned long flags;
338ffde7328SAlexander Duyck 	void *data;
339ffde7328SAlexander Duyck 
340ffde7328SAlexander Duyck 	local_irq_save(flags);
3419451980aSAlexander Duyck 	nc = this_cpu_ptr(&netdev_alloc_cache);
3428c2dd3e4SAlexander Duyck 	data = page_frag_alloc(nc, fragsz, gfp_mask);
3436f532612SEric Dumazet 	local_irq_restore(flags);
3446f532612SEric Dumazet 	return data;
3456f532612SEric Dumazet }
346c93bdd0eSMel Gorman 
347c93bdd0eSMel Gorman /**
348c93bdd0eSMel Gorman  * netdev_alloc_frag - allocate a page fragment
349c93bdd0eSMel Gorman  * @fragsz: fragment size
350c93bdd0eSMel Gorman  *
351c93bdd0eSMel Gorman  * Allocates a frag from a page for receive buffer.
352c93bdd0eSMel Gorman  * Uses GFP_ATOMIC allocations.
353c93bdd0eSMel Gorman  */
354c93bdd0eSMel Gorman void *netdev_alloc_frag(unsigned int fragsz)
355c93bdd0eSMel Gorman {
356453f85d4SMel Gorman 	return __netdev_alloc_frag(fragsz, GFP_ATOMIC);
357c93bdd0eSMel Gorman }
3586f532612SEric Dumazet EXPORT_SYMBOL(netdev_alloc_frag);
3596f532612SEric Dumazet 
360ffde7328SAlexander Duyck static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
361ffde7328SAlexander Duyck {
362795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
3639451980aSAlexander Duyck 
3648c2dd3e4SAlexander Duyck 	return page_frag_alloc(&nc->page, fragsz, gfp_mask);
365ffde7328SAlexander Duyck }
366ffde7328SAlexander Duyck 
367ffde7328SAlexander Duyck void *napi_alloc_frag(unsigned int fragsz)
368ffde7328SAlexander Duyck {
369453f85d4SMel Gorman 	return __napi_alloc_frag(fragsz, GFP_ATOMIC);
370ffde7328SAlexander Duyck }
371ffde7328SAlexander Duyck EXPORT_SYMBOL(napi_alloc_frag);
372ffde7328SAlexander Duyck 
3736f532612SEric Dumazet /**
374fd11a83dSAlexander Duyck  *	__netdev_alloc_skb - allocate an skbuff for rx on a specific device
375fd11a83dSAlexander Duyck  *	@dev: network device to receive on
376d7499160SMasanari Iida  *	@len: length to allocate
377fd11a83dSAlexander Duyck  *	@gfp_mask: get_free_pages mask, passed to alloc_skb
378fd11a83dSAlexander Duyck  *
379fd11a83dSAlexander Duyck  *	Allocate a new &sk_buff and assign it a usage count of one. The
380fd11a83dSAlexander Duyck  *	buffer has NET_SKB_PAD headroom built in. Users should allocate
381fd11a83dSAlexander Duyck  *	the headroom they think they need without accounting for the
382fd11a83dSAlexander Duyck  *	built in space. The built in space is used for optimisations.
383fd11a83dSAlexander Duyck  *
384fd11a83dSAlexander Duyck  *	%NULL is returned if there is no free memory.
385fd11a83dSAlexander Duyck  */
3869451980aSAlexander Duyck struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
3879451980aSAlexander Duyck 				   gfp_t gfp_mask)
388fd11a83dSAlexander Duyck {
389b63ae8caSAlexander Duyck 	struct page_frag_cache *nc;
3909451980aSAlexander Duyck 	unsigned long flags;
391fd11a83dSAlexander Duyck 	struct sk_buff *skb;
3929451980aSAlexander Duyck 	bool pfmemalloc;
3939451980aSAlexander Duyck 	void *data;
394fd11a83dSAlexander Duyck 
3959451980aSAlexander Duyck 	len += NET_SKB_PAD;
396fd11a83dSAlexander Duyck 
3979451980aSAlexander Duyck 	if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
398d0164adcSMel Gorman 	    (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
399a080e7bdSAlexander Duyck 		skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
400a080e7bdSAlexander Duyck 		if (!skb)
401a080e7bdSAlexander Duyck 			goto skb_fail;
402a080e7bdSAlexander Duyck 		goto skb_success;
403a080e7bdSAlexander Duyck 	}
4049451980aSAlexander Duyck 
4059451980aSAlexander Duyck 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4069451980aSAlexander Duyck 	len = SKB_DATA_ALIGN(len);
4079451980aSAlexander Duyck 
4089451980aSAlexander Duyck 	if (sk_memalloc_socks())
4099451980aSAlexander Duyck 		gfp_mask |= __GFP_MEMALLOC;
4109451980aSAlexander Duyck 
4119451980aSAlexander Duyck 	local_irq_save(flags);
4129451980aSAlexander Duyck 
4139451980aSAlexander Duyck 	nc = this_cpu_ptr(&netdev_alloc_cache);
4148c2dd3e4SAlexander Duyck 	data = page_frag_alloc(nc, len, gfp_mask);
4159451980aSAlexander Duyck 	pfmemalloc = nc->pfmemalloc;
4169451980aSAlexander Duyck 
4179451980aSAlexander Duyck 	local_irq_restore(flags);
4189451980aSAlexander Duyck 
4199451980aSAlexander Duyck 	if (unlikely(!data))
4209451980aSAlexander Duyck 		return NULL;
4219451980aSAlexander Duyck 
4229451980aSAlexander Duyck 	skb = __build_skb(data, len);
4239451980aSAlexander Duyck 	if (unlikely(!skb)) {
424181edb2bSAlexander Duyck 		skb_free_frag(data);
4259451980aSAlexander Duyck 		return NULL;
4269451980aSAlexander Duyck 	}
4279451980aSAlexander Duyck 
4289451980aSAlexander Duyck 	/* use OR instead of assignment to avoid clearing of bits in mask */
4299451980aSAlexander Duyck 	if (pfmemalloc)
4309451980aSAlexander Duyck 		skb->pfmemalloc = 1;
4319451980aSAlexander Duyck 	skb->head_frag = 1;
4329451980aSAlexander Duyck 
433a080e7bdSAlexander Duyck skb_success:
4348af27456SChristoph Hellwig 	skb_reserve(skb, NET_SKB_PAD);
4357b2e497aSChristoph Hellwig 	skb->dev = dev;
436fd11a83dSAlexander Duyck 
437a080e7bdSAlexander Duyck skb_fail:
4388af27456SChristoph Hellwig 	return skb;
4398af27456SChristoph Hellwig }
440b4ac530fSDavid S. Miller EXPORT_SYMBOL(__netdev_alloc_skb);
4411da177e4SLinus Torvalds 
442fd11a83dSAlexander Duyck /**
443fd11a83dSAlexander Duyck  *	__napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
444fd11a83dSAlexander Duyck  *	@napi: napi instance this buffer was allocated for
445d7499160SMasanari Iida  *	@len: length to allocate
446fd11a83dSAlexander Duyck  *	@gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
447fd11a83dSAlexander Duyck  *
448fd11a83dSAlexander Duyck  *	Allocate a new sk_buff for use in NAPI receive.  This buffer will
449fd11a83dSAlexander Duyck  *	attempt to allocate the head from a special reserved region used
450fd11a83dSAlexander Duyck  *	only for NAPI Rx allocation.  By doing this we can save several
451fd11a83dSAlexander Duyck  *	CPU cycles by avoiding having to disable and re-enable IRQs.
452fd11a83dSAlexander Duyck  *
453fd11a83dSAlexander Duyck  *	%NULL is returned if there is no free memory.
454fd11a83dSAlexander Duyck  */
4559451980aSAlexander Duyck struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
4569451980aSAlexander Duyck 				 gfp_t gfp_mask)
457fd11a83dSAlexander Duyck {
458795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
459fd11a83dSAlexander Duyck 	struct sk_buff *skb;
4609451980aSAlexander Duyck 	void *data;
461fd11a83dSAlexander Duyck 
4629451980aSAlexander Duyck 	len += NET_SKB_PAD + NET_IP_ALIGN;
463fd11a83dSAlexander Duyck 
4649451980aSAlexander Duyck 	if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
465d0164adcSMel Gorman 	    (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
466a080e7bdSAlexander Duyck 		skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
467a080e7bdSAlexander Duyck 		if (!skb)
468a080e7bdSAlexander Duyck 			goto skb_fail;
469a080e7bdSAlexander Duyck 		goto skb_success;
470a080e7bdSAlexander Duyck 	}
4719451980aSAlexander Duyck 
4729451980aSAlexander Duyck 	len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4739451980aSAlexander Duyck 	len = SKB_DATA_ALIGN(len);
4749451980aSAlexander Duyck 
4759451980aSAlexander Duyck 	if (sk_memalloc_socks())
4769451980aSAlexander Duyck 		gfp_mask |= __GFP_MEMALLOC;
4779451980aSAlexander Duyck 
4788c2dd3e4SAlexander Duyck 	data = page_frag_alloc(&nc->page, len, gfp_mask);
4799451980aSAlexander Duyck 	if (unlikely(!data))
4809451980aSAlexander Duyck 		return NULL;
4819451980aSAlexander Duyck 
4829451980aSAlexander Duyck 	skb = __build_skb(data, len);
4839451980aSAlexander Duyck 	if (unlikely(!skb)) {
484181edb2bSAlexander Duyck 		skb_free_frag(data);
4859451980aSAlexander Duyck 		return NULL;
4869451980aSAlexander Duyck 	}
4879451980aSAlexander Duyck 
4889451980aSAlexander Duyck 	/* use OR instead of assignment to avoid clearing of bits in mask */
489795bb1c0SJesper Dangaard Brouer 	if (nc->page.pfmemalloc)
4909451980aSAlexander Duyck 		skb->pfmemalloc = 1;
4919451980aSAlexander Duyck 	skb->head_frag = 1;
4929451980aSAlexander Duyck 
493a080e7bdSAlexander Duyck skb_success:
494fd11a83dSAlexander Duyck 	skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
495fd11a83dSAlexander Duyck 	skb->dev = napi->dev;
496fd11a83dSAlexander Duyck 
497a080e7bdSAlexander Duyck skb_fail:
498fd11a83dSAlexander Duyck 	return skb;
499fd11a83dSAlexander Duyck }
500fd11a83dSAlexander Duyck EXPORT_SYMBOL(__napi_alloc_skb);
501fd11a83dSAlexander Duyck 
502654bed16SPeter Zijlstra void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
50350269e19SEric Dumazet 		     int size, unsigned int truesize)
504654bed16SPeter Zijlstra {
505654bed16SPeter Zijlstra 	skb_fill_page_desc(skb, i, page, off, size);
506654bed16SPeter Zijlstra 	skb->len += size;
507654bed16SPeter Zijlstra 	skb->data_len += size;
50850269e19SEric Dumazet 	skb->truesize += truesize;
509654bed16SPeter Zijlstra }
510654bed16SPeter Zijlstra EXPORT_SYMBOL(skb_add_rx_frag);
511654bed16SPeter Zijlstra 
512f8e617e1SJason Wang void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
513f8e617e1SJason Wang 			  unsigned int truesize)
514f8e617e1SJason Wang {
515f8e617e1SJason Wang 	skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
516f8e617e1SJason Wang 
517f8e617e1SJason Wang 	skb_frag_size_add(frag, size);
518f8e617e1SJason Wang 	skb->len += size;
519f8e617e1SJason Wang 	skb->data_len += size;
520f8e617e1SJason Wang 	skb->truesize += truesize;
521f8e617e1SJason Wang }
522f8e617e1SJason Wang EXPORT_SYMBOL(skb_coalesce_rx_frag);
523f8e617e1SJason Wang 
52427b437c8SHerbert Xu static void skb_drop_list(struct sk_buff **listp)
5251da177e4SLinus Torvalds {
526bd8a7036SEric Dumazet 	kfree_skb_list(*listp);
52727b437c8SHerbert Xu 	*listp = NULL;
5281da177e4SLinus Torvalds }
5291da177e4SLinus Torvalds 
53027b437c8SHerbert Xu static inline void skb_drop_fraglist(struct sk_buff *skb)
53127b437c8SHerbert Xu {
53227b437c8SHerbert Xu 	skb_drop_list(&skb_shinfo(skb)->frag_list);
53327b437c8SHerbert Xu }
53427b437c8SHerbert Xu 
5351da177e4SLinus Torvalds static void skb_clone_fraglist(struct sk_buff *skb)
5361da177e4SLinus Torvalds {
5371da177e4SLinus Torvalds 	struct sk_buff *list;
5381da177e4SLinus Torvalds 
539fbb398a8SDavid S. Miller 	skb_walk_frags(skb, list)
5401da177e4SLinus Torvalds 		skb_get(list);
5411da177e4SLinus Torvalds }
5421da177e4SLinus Torvalds 
543d3836f21SEric Dumazet static void skb_free_head(struct sk_buff *skb)
544d3836f21SEric Dumazet {
545181edb2bSAlexander Duyck 	unsigned char *head = skb->head;
546181edb2bSAlexander Duyck 
547d3836f21SEric Dumazet 	if (skb->head_frag)
548181edb2bSAlexander Duyck 		skb_free_frag(head);
549d3836f21SEric Dumazet 	else
550181edb2bSAlexander Duyck 		kfree(head);
551d3836f21SEric Dumazet }
552d3836f21SEric Dumazet 
5535bba1712SAdrian Bunk static void skb_release_data(struct sk_buff *skb)
5541da177e4SLinus Torvalds {
555ff04a771SEric Dumazet 	struct skb_shared_info *shinfo = skb_shinfo(skb);
5561da177e4SLinus Torvalds 	int i;
557ff04a771SEric Dumazet 
558ff04a771SEric Dumazet 	if (skb->cloned &&
559ff04a771SEric Dumazet 	    atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
560ff04a771SEric Dumazet 			      &shinfo->dataref))
561ff04a771SEric Dumazet 		return;
562ff04a771SEric Dumazet 
563ff04a771SEric Dumazet 	for (i = 0; i < shinfo->nr_frags; i++)
564ff04a771SEric Dumazet 		__skb_frag_unref(&shinfo->frags[i]);
5651da177e4SLinus Torvalds 
566ff04a771SEric Dumazet 	if (shinfo->frag_list)
567ff04a771SEric Dumazet 		kfree_skb_list(shinfo->frag_list);
5681da177e4SLinus Torvalds 
5691f8b977aSWillem de Bruijn 	skb_zcopy_clear(skb, true);
570d3836f21SEric Dumazet 	skb_free_head(skb);
5711da177e4SLinus Torvalds }
5721da177e4SLinus Torvalds 
5731da177e4SLinus Torvalds /*
5741da177e4SLinus Torvalds  *	Free an skbuff by memory without cleaning the state.
5751da177e4SLinus Torvalds  */
5762d4baff8SHerbert Xu static void kfree_skbmem(struct sk_buff *skb)
5771da177e4SLinus Torvalds {
578d0bf4a9eSEric Dumazet 	struct sk_buff_fclones *fclones;
579d179cd12SDavid S. Miller 
580d179cd12SDavid S. Miller 	switch (skb->fclone) {
581d179cd12SDavid S. Miller 	case SKB_FCLONE_UNAVAILABLE:
5821da177e4SLinus Torvalds 		kmem_cache_free(skbuff_head_cache, skb);
5836ffe75ebSEric Dumazet 		return;
584d179cd12SDavid S. Miller 
585d179cd12SDavid S. Miller 	case SKB_FCLONE_ORIG:
586d0bf4a9eSEric Dumazet 		fclones = container_of(skb, struct sk_buff_fclones, skb1);
5876ffe75ebSEric Dumazet 
5886ffe75ebSEric Dumazet 		/* We usually free the clone (TX completion) before original skb
5896ffe75ebSEric Dumazet 		 * This test would have no chance to be true for the clone,
5906ffe75ebSEric Dumazet 		 * while here, branch prediction will be good.
5916ffe75ebSEric Dumazet 		 */
5922638595aSReshetova, Elena 		if (refcount_read(&fclones->fclone_ref) == 1)
5936ffe75ebSEric Dumazet 			goto fastpath;
594d179cd12SDavid S. Miller 		break;
595d179cd12SDavid S. Miller 
5966ffe75ebSEric Dumazet 	default: /* SKB_FCLONE_CLONE */
597d0bf4a9eSEric Dumazet 		fclones = container_of(skb, struct sk_buff_fclones, skb2);
598d179cd12SDavid S. Miller 		break;
5993ff50b79SStephen Hemminger 	}
6002638595aSReshetova, Elena 	if (!refcount_dec_and_test(&fclones->fclone_ref))
6016ffe75ebSEric Dumazet 		return;
6026ffe75ebSEric Dumazet fastpath:
6036ffe75ebSEric Dumazet 	kmem_cache_free(skbuff_fclone_cache, fclones);
6041da177e4SLinus Torvalds }
6051da177e4SLinus Torvalds 
6060a463c78SPaolo Abeni void skb_release_head_state(struct sk_buff *skb)
6071da177e4SLinus Torvalds {
608adf30907SEric Dumazet 	skb_dst_drop(skb);
6090a463c78SPaolo Abeni 	secpath_reset(skb);
6101da177e4SLinus Torvalds 	if (skb->destructor) {
6119c2b3328SStephen Hemminger 		WARN_ON(in_irq());
6121da177e4SLinus Torvalds 		skb->destructor(skb);
6131da177e4SLinus Torvalds 	}
614a3bf7ae9SIgor Maravić #if IS_ENABLED(CONFIG_NF_CONNTRACK)
615cb9c6836SFlorian Westphal 	nf_conntrack_put(skb_nfct(skb));
6162fc72c7bSKOVACS Krisztian #endif
6171109a90cSPablo Neira Ayuso #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
6181da177e4SLinus Torvalds 	nf_bridge_put(skb->nf_bridge);
6191da177e4SLinus Torvalds #endif
62004a4bb55SLennert Buytenhek }
62104a4bb55SLennert Buytenhek 
62204a4bb55SLennert Buytenhek /* Free everything but the sk_buff shell. */
62304a4bb55SLennert Buytenhek static void skb_release_all(struct sk_buff *skb)
62404a4bb55SLennert Buytenhek {
62504a4bb55SLennert Buytenhek 	skb_release_head_state(skb);
626a28b1b90SFlorian Westphal 	if (likely(skb->head))
6272d4baff8SHerbert Xu 		skb_release_data(skb);
6282d4baff8SHerbert Xu }
6291da177e4SLinus Torvalds 
6302d4baff8SHerbert Xu /**
6312d4baff8SHerbert Xu  *	__kfree_skb - private function
6322d4baff8SHerbert Xu  *	@skb: buffer
6332d4baff8SHerbert Xu  *
6342d4baff8SHerbert Xu  *	Free an sk_buff. Release anything attached to the buffer.
6352d4baff8SHerbert Xu  *	Clean the state. This is an internal helper function. Users should
6362d4baff8SHerbert Xu  *	always call kfree_skb
6372d4baff8SHerbert Xu  */
6382d4baff8SHerbert Xu 
6392d4baff8SHerbert Xu void __kfree_skb(struct sk_buff *skb)
6402d4baff8SHerbert Xu {
6412d4baff8SHerbert Xu 	skb_release_all(skb);
6421da177e4SLinus Torvalds 	kfree_skbmem(skb);
6431da177e4SLinus Torvalds }
644b4ac530fSDavid S. Miller EXPORT_SYMBOL(__kfree_skb);
6451da177e4SLinus Torvalds 
6461da177e4SLinus Torvalds /**
647231d06aeSJörn Engel  *	kfree_skb - free an sk_buff
648231d06aeSJörn Engel  *	@skb: buffer to free
649231d06aeSJörn Engel  *
650231d06aeSJörn Engel  *	Drop a reference to the buffer and free it if the usage count has
651231d06aeSJörn Engel  *	hit zero.
652231d06aeSJörn Engel  */
653231d06aeSJörn Engel void kfree_skb(struct sk_buff *skb)
654231d06aeSJörn Engel {
6553889a803SPaolo Abeni 	if (!skb_unref(skb))
656231d06aeSJörn Engel 		return;
6573889a803SPaolo Abeni 
658ead2ceb0SNeil Horman 	trace_kfree_skb(skb, __builtin_return_address(0));
659231d06aeSJörn Engel 	__kfree_skb(skb);
660231d06aeSJörn Engel }
661b4ac530fSDavid S. Miller EXPORT_SYMBOL(kfree_skb);
662231d06aeSJörn Engel 
663bd8a7036SEric Dumazet void kfree_skb_list(struct sk_buff *segs)
664bd8a7036SEric Dumazet {
665bd8a7036SEric Dumazet 	while (segs) {
666bd8a7036SEric Dumazet 		struct sk_buff *next = segs->next;
667bd8a7036SEric Dumazet 
668bd8a7036SEric Dumazet 		kfree_skb(segs);
669bd8a7036SEric Dumazet 		segs = next;
670bd8a7036SEric Dumazet 	}
671bd8a7036SEric Dumazet }
672bd8a7036SEric Dumazet EXPORT_SYMBOL(kfree_skb_list);
673bd8a7036SEric Dumazet 
674d1a203eaSStephen Hemminger /**
67525121173SMichael S. Tsirkin  *	skb_tx_error - report an sk_buff xmit error
67625121173SMichael S. Tsirkin  *	@skb: buffer that triggered an error
67725121173SMichael S. Tsirkin  *
67825121173SMichael S. Tsirkin  *	Report xmit error if a device callback is tracking this skb.
67925121173SMichael S. Tsirkin  *	skb must be freed afterwards.
68025121173SMichael S. Tsirkin  */
68125121173SMichael S. Tsirkin void skb_tx_error(struct sk_buff *skb)
68225121173SMichael S. Tsirkin {
6831f8b977aSWillem de Bruijn 	skb_zcopy_clear(skb, true);
68425121173SMichael S. Tsirkin }
68525121173SMichael S. Tsirkin EXPORT_SYMBOL(skb_tx_error);
68625121173SMichael S. Tsirkin 
68725121173SMichael S. Tsirkin /**
688ead2ceb0SNeil Horman  *	consume_skb - free an skbuff
689ead2ceb0SNeil Horman  *	@skb: buffer to free
690ead2ceb0SNeil Horman  *
691ead2ceb0SNeil Horman  *	Drop a ref to the buffer and free it if the usage count has hit zero
692ead2ceb0SNeil Horman  *	Functions identically to kfree_skb, but kfree_skb assumes that the frame
693ead2ceb0SNeil Horman  *	is being dropped after a failure and notes that
694ead2ceb0SNeil Horman  */
695ead2ceb0SNeil Horman void consume_skb(struct sk_buff *skb)
696ead2ceb0SNeil Horman {
6973889a803SPaolo Abeni 	if (!skb_unref(skb))
698ead2ceb0SNeil Horman 		return;
6993889a803SPaolo Abeni 
70007dc22e7SKoki Sanagi 	trace_consume_skb(skb);
701ead2ceb0SNeil Horman 	__kfree_skb(skb);
702ead2ceb0SNeil Horman }
703ead2ceb0SNeil Horman EXPORT_SYMBOL(consume_skb);
704ead2ceb0SNeil Horman 
7050a463c78SPaolo Abeni /**
7060a463c78SPaolo Abeni  *	consume_stateless_skb - free an skbuff, assuming it is stateless
7070a463c78SPaolo Abeni  *	@skb: buffer to free
7080a463c78SPaolo Abeni  *
709ca2c1418SPaolo Abeni  *	Alike consume_skb(), but this variant assumes that this is the last
710ca2c1418SPaolo Abeni  *	skb reference and all the head states have been already dropped
7110a463c78SPaolo Abeni  */
712ca2c1418SPaolo Abeni void __consume_stateless_skb(struct sk_buff *skb)
7130a463c78SPaolo Abeni {
7140a463c78SPaolo Abeni 	trace_consume_skb(skb);
7150a463c78SPaolo Abeni 	skb_release_data(skb);
7160a463c78SPaolo Abeni 	kfree_skbmem(skb);
7170a463c78SPaolo Abeni }
7180a463c78SPaolo Abeni 
719795bb1c0SJesper Dangaard Brouer void __kfree_skb_flush(void)
720795bb1c0SJesper Dangaard Brouer {
721795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
722795bb1c0SJesper Dangaard Brouer 
723795bb1c0SJesper Dangaard Brouer 	/* flush skb_cache if containing objects */
724795bb1c0SJesper Dangaard Brouer 	if (nc->skb_count) {
725795bb1c0SJesper Dangaard Brouer 		kmem_cache_free_bulk(skbuff_head_cache, nc->skb_count,
726795bb1c0SJesper Dangaard Brouer 				     nc->skb_cache);
727795bb1c0SJesper Dangaard Brouer 		nc->skb_count = 0;
728795bb1c0SJesper Dangaard Brouer 	}
729795bb1c0SJesper Dangaard Brouer }
730795bb1c0SJesper Dangaard Brouer 
73115fad714SJesper Dangaard Brouer static inline void _kfree_skb_defer(struct sk_buff *skb)
732795bb1c0SJesper Dangaard Brouer {
733795bb1c0SJesper Dangaard Brouer 	struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
734795bb1c0SJesper Dangaard Brouer 
735795bb1c0SJesper Dangaard Brouer 	/* drop skb->head and call any destructors for packet */
736795bb1c0SJesper Dangaard Brouer 	skb_release_all(skb);
737795bb1c0SJesper Dangaard Brouer 
738795bb1c0SJesper Dangaard Brouer 	/* record skb to CPU local list */
739795bb1c0SJesper Dangaard Brouer 	nc->skb_cache[nc->skb_count++] = skb;
740795bb1c0SJesper Dangaard Brouer 
741795bb1c0SJesper Dangaard Brouer #ifdef CONFIG_SLUB
742795bb1c0SJesper Dangaard Brouer 	/* SLUB writes into objects when freeing */
743795bb1c0SJesper Dangaard Brouer 	prefetchw(skb);
744795bb1c0SJesper Dangaard Brouer #endif
745795bb1c0SJesper Dangaard Brouer 
746795bb1c0SJesper Dangaard Brouer 	/* flush skb_cache if it is filled */
747795bb1c0SJesper Dangaard Brouer 	if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
748795bb1c0SJesper Dangaard Brouer 		kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_SIZE,
749795bb1c0SJesper Dangaard Brouer 				     nc->skb_cache);
750795bb1c0SJesper Dangaard Brouer 		nc->skb_count = 0;
751795bb1c0SJesper Dangaard Brouer 	}
752795bb1c0SJesper Dangaard Brouer }
75315fad714SJesper Dangaard Brouer void __kfree_skb_defer(struct sk_buff *skb)
75415fad714SJesper Dangaard Brouer {
75515fad714SJesper Dangaard Brouer 	_kfree_skb_defer(skb);
75615fad714SJesper Dangaard Brouer }
757795bb1c0SJesper Dangaard Brouer 
758795bb1c0SJesper Dangaard Brouer void napi_consume_skb(struct sk_buff *skb, int budget)
759795bb1c0SJesper Dangaard Brouer {
760795bb1c0SJesper Dangaard Brouer 	if (unlikely(!skb))
761795bb1c0SJesper Dangaard Brouer 		return;
762795bb1c0SJesper Dangaard Brouer 
763885eb0a5SJesper Dangaard Brouer 	/* Zero budget indicate non-NAPI context called us, like netpoll */
764795bb1c0SJesper Dangaard Brouer 	if (unlikely(!budget)) {
765885eb0a5SJesper Dangaard Brouer 		dev_consume_skb_any(skb);
766795bb1c0SJesper Dangaard Brouer 		return;
767795bb1c0SJesper Dangaard Brouer 	}
768795bb1c0SJesper Dangaard Brouer 
7697608894eSPaolo Abeni 	if (!skb_unref(skb))
770795bb1c0SJesper Dangaard Brouer 		return;
7717608894eSPaolo Abeni 
772795bb1c0SJesper Dangaard Brouer 	/* if reaching here SKB is ready to free */
773795bb1c0SJesper Dangaard Brouer 	trace_consume_skb(skb);
774795bb1c0SJesper Dangaard Brouer 
775795bb1c0SJesper Dangaard Brouer 	/* if SKB is a clone, don't handle this case */
776abbdb5a7SEric Dumazet 	if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
777795bb1c0SJesper Dangaard Brouer 		__kfree_skb(skb);
778795bb1c0SJesper Dangaard Brouer 		return;
779795bb1c0SJesper Dangaard Brouer 	}
780795bb1c0SJesper Dangaard Brouer 
78115fad714SJesper Dangaard Brouer 	_kfree_skb_defer(skb);
782795bb1c0SJesper Dangaard Brouer }
783795bb1c0SJesper Dangaard Brouer EXPORT_SYMBOL(napi_consume_skb);
784795bb1c0SJesper Dangaard Brouer 
785b1937227SEric Dumazet /* Make sure a field is enclosed inside headers_start/headers_end section */
786b1937227SEric Dumazet #define CHECK_SKB_FIELD(field) \
787b1937227SEric Dumazet 	BUILD_BUG_ON(offsetof(struct sk_buff, field) <		\
788b1937227SEric Dumazet 		     offsetof(struct sk_buff, headers_start));	\
789b1937227SEric Dumazet 	BUILD_BUG_ON(offsetof(struct sk_buff, field) >		\
790b1937227SEric Dumazet 		     offsetof(struct sk_buff, headers_end));	\
791b1937227SEric Dumazet 
792dec18810SHerbert Xu static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
793dec18810SHerbert Xu {
794dec18810SHerbert Xu 	new->tstamp		= old->tstamp;
795b1937227SEric Dumazet 	/* We do not copy old->sk */
796dec18810SHerbert Xu 	new->dev		= old->dev;
797b1937227SEric Dumazet 	memcpy(new->cb, old->cb, sizeof(old->cb));
7987fee226aSEric Dumazet 	skb_dst_copy(new, old);
799def8b4faSAlexey Dobriyan #ifdef CONFIG_XFRM
800dec18810SHerbert Xu 	new->sp			= secpath_get(old->sp);
801dec18810SHerbert Xu #endif
802b1937227SEric Dumazet 	__nf_copy(new, old, false);
8036aa895b0SPatrick McHardy 
804b1937227SEric Dumazet 	/* Note : this field could be in headers_start/headers_end section
805b1937227SEric Dumazet 	 * It is not yet because we do not want to have a 16 bit hole
806b1937227SEric Dumazet 	 */
807b1937227SEric Dumazet 	new->queue_mapping = old->queue_mapping;
80806021292SEliezer Tamir 
809b1937227SEric Dumazet 	memcpy(&new->headers_start, &old->headers_start,
810b1937227SEric Dumazet 	       offsetof(struct sk_buff, headers_end) -
811b1937227SEric Dumazet 	       offsetof(struct sk_buff, headers_start));
812b1937227SEric Dumazet 	CHECK_SKB_FIELD(protocol);
813b1937227SEric Dumazet 	CHECK_SKB_FIELD(csum);
814b1937227SEric Dumazet 	CHECK_SKB_FIELD(hash);
815b1937227SEric Dumazet 	CHECK_SKB_FIELD(priority);
816b1937227SEric Dumazet 	CHECK_SKB_FIELD(skb_iif);
817b1937227SEric Dumazet 	CHECK_SKB_FIELD(vlan_proto);
818b1937227SEric Dumazet 	CHECK_SKB_FIELD(vlan_tci);
819b1937227SEric Dumazet 	CHECK_SKB_FIELD(transport_header);
820b1937227SEric Dumazet 	CHECK_SKB_FIELD(network_header);
821b1937227SEric Dumazet 	CHECK_SKB_FIELD(mac_header);
822b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_protocol);
823b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_transport_header);
824b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_network_header);
825b1937227SEric Dumazet 	CHECK_SKB_FIELD(inner_mac_header);
826b1937227SEric Dumazet 	CHECK_SKB_FIELD(mark);
827b1937227SEric Dumazet #ifdef CONFIG_NETWORK_SECMARK
828b1937227SEric Dumazet 	CHECK_SKB_FIELD(secmark);
829b1937227SEric Dumazet #endif
830e0d1095aSCong Wang #ifdef CONFIG_NET_RX_BUSY_POLL
831b1937227SEric Dumazet 	CHECK_SKB_FIELD(napi_id);
83206021292SEliezer Tamir #endif
8332bd82484SEric Dumazet #ifdef CONFIG_XPS
8342bd82484SEric Dumazet 	CHECK_SKB_FIELD(sender_cpu);
8352bd82484SEric Dumazet #endif
836b1937227SEric Dumazet #ifdef CONFIG_NET_SCHED
837b1937227SEric Dumazet 	CHECK_SKB_FIELD(tc_index);
838b1937227SEric Dumazet #endif
839b1937227SEric Dumazet 
840dec18810SHerbert Xu }
841dec18810SHerbert Xu 
84282c49a35SHerbert Xu /*
84382c49a35SHerbert Xu  * You should not add any new code to this function.  Add it to
84482c49a35SHerbert Xu  * __copy_skb_header above instead.
84582c49a35SHerbert Xu  */
846e0053ec0SHerbert Xu static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
8471da177e4SLinus Torvalds {
8481da177e4SLinus Torvalds #define C(x) n->x = skb->x
8491da177e4SLinus Torvalds 
8501da177e4SLinus Torvalds 	n->next = n->prev = NULL;
8511da177e4SLinus Torvalds 	n->sk = NULL;
852dec18810SHerbert Xu 	__copy_skb_header(n, skb);
853dec18810SHerbert Xu 
8541da177e4SLinus Torvalds 	C(len);
8551da177e4SLinus Torvalds 	C(data_len);
8563e6b3b2eSAlexey Dobriyan 	C(mac_len);
857334a8132SPatrick McHardy 	n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
85802f1c89dSPaul Moore 	n->cloned = 1;
8591da177e4SLinus Torvalds 	n->nohdr = 0;
8601da177e4SLinus Torvalds 	n->destructor = NULL;
8611da177e4SLinus Torvalds 	C(tail);
8621da177e4SLinus Torvalds 	C(end);
86302f1c89dSPaul Moore 	C(head);
864d3836f21SEric Dumazet 	C(head_frag);
86502f1c89dSPaul Moore 	C(data);
86602f1c89dSPaul Moore 	C(truesize);
86763354797SReshetova, Elena 	refcount_set(&n->users, 1);
8681da177e4SLinus Torvalds 
8691da177e4SLinus Torvalds 	atomic_inc(&(skb_shinfo(skb)->dataref));
8701da177e4SLinus Torvalds 	skb->cloned = 1;
8711da177e4SLinus Torvalds 
8721da177e4SLinus Torvalds 	return n;
873e0053ec0SHerbert Xu #undef C
874e0053ec0SHerbert Xu }
875e0053ec0SHerbert Xu 
876e0053ec0SHerbert Xu /**
877e0053ec0SHerbert Xu  *	skb_morph	-	morph one skb into another
878e0053ec0SHerbert Xu  *	@dst: the skb to receive the contents
879e0053ec0SHerbert Xu  *	@src: the skb to supply the contents
880e0053ec0SHerbert Xu  *
881e0053ec0SHerbert Xu  *	This is identical to skb_clone except that the target skb is
882e0053ec0SHerbert Xu  *	supplied by the user.
883e0053ec0SHerbert Xu  *
884e0053ec0SHerbert Xu  *	The target skb is returned upon exit.
885e0053ec0SHerbert Xu  */
886e0053ec0SHerbert Xu struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
887e0053ec0SHerbert Xu {
8882d4baff8SHerbert Xu 	skb_release_all(dst);
889e0053ec0SHerbert Xu 	return __skb_clone(dst, src);
890e0053ec0SHerbert Xu }
891e0053ec0SHerbert Xu EXPORT_SYMBOL_GPL(skb_morph);
892e0053ec0SHerbert Xu 
893a91dbff5SWillem de Bruijn static int mm_account_pinned_pages(struct mmpin *mmp, size_t size)
894a91dbff5SWillem de Bruijn {
895a91dbff5SWillem de Bruijn 	unsigned long max_pg, num_pg, new_pg, old_pg;
896a91dbff5SWillem de Bruijn 	struct user_struct *user;
897a91dbff5SWillem de Bruijn 
898a91dbff5SWillem de Bruijn 	if (capable(CAP_IPC_LOCK) || !size)
899a91dbff5SWillem de Bruijn 		return 0;
900a91dbff5SWillem de Bruijn 
901a91dbff5SWillem de Bruijn 	num_pg = (size >> PAGE_SHIFT) + 2;	/* worst case */
902a91dbff5SWillem de Bruijn 	max_pg = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
903a91dbff5SWillem de Bruijn 	user = mmp->user ? : current_user();
904a91dbff5SWillem de Bruijn 
905a91dbff5SWillem de Bruijn 	do {
906a91dbff5SWillem de Bruijn 		old_pg = atomic_long_read(&user->locked_vm);
907a91dbff5SWillem de Bruijn 		new_pg = old_pg + num_pg;
908a91dbff5SWillem de Bruijn 		if (new_pg > max_pg)
909a91dbff5SWillem de Bruijn 			return -ENOBUFS;
910a91dbff5SWillem de Bruijn 	} while (atomic_long_cmpxchg(&user->locked_vm, old_pg, new_pg) !=
911a91dbff5SWillem de Bruijn 		 old_pg);
912a91dbff5SWillem de Bruijn 
913a91dbff5SWillem de Bruijn 	if (!mmp->user) {
914a91dbff5SWillem de Bruijn 		mmp->user = get_uid(user);
915a91dbff5SWillem de Bruijn 		mmp->num_pg = num_pg;
916a91dbff5SWillem de Bruijn 	} else {
917a91dbff5SWillem de Bruijn 		mmp->num_pg += num_pg;
918a91dbff5SWillem de Bruijn 	}
919a91dbff5SWillem de Bruijn 
920a91dbff5SWillem de Bruijn 	return 0;
921a91dbff5SWillem de Bruijn }
922a91dbff5SWillem de Bruijn 
923a91dbff5SWillem de Bruijn static void mm_unaccount_pinned_pages(struct mmpin *mmp)
924a91dbff5SWillem de Bruijn {
925a91dbff5SWillem de Bruijn 	if (mmp->user) {
926a91dbff5SWillem de Bruijn 		atomic_long_sub(mmp->num_pg, &mmp->user->locked_vm);
927a91dbff5SWillem de Bruijn 		free_uid(mmp->user);
928a91dbff5SWillem de Bruijn 	}
929a91dbff5SWillem de Bruijn }
930a91dbff5SWillem de Bruijn 
93152267790SWillem de Bruijn struct ubuf_info *sock_zerocopy_alloc(struct sock *sk, size_t size)
93252267790SWillem de Bruijn {
93352267790SWillem de Bruijn 	struct ubuf_info *uarg;
93452267790SWillem de Bruijn 	struct sk_buff *skb;
93552267790SWillem de Bruijn 
93652267790SWillem de Bruijn 	WARN_ON_ONCE(!in_task());
93752267790SWillem de Bruijn 
93876851d12SWillem de Bruijn 	if (!sock_flag(sk, SOCK_ZEROCOPY))
93976851d12SWillem de Bruijn 		return NULL;
94076851d12SWillem de Bruijn 
94152267790SWillem de Bruijn 	skb = sock_omalloc(sk, 0, GFP_KERNEL);
94252267790SWillem de Bruijn 	if (!skb)
94352267790SWillem de Bruijn 		return NULL;
94452267790SWillem de Bruijn 
94552267790SWillem de Bruijn 	BUILD_BUG_ON(sizeof(*uarg) > sizeof(skb->cb));
94652267790SWillem de Bruijn 	uarg = (void *)skb->cb;
947a91dbff5SWillem de Bruijn 	uarg->mmp.user = NULL;
948a91dbff5SWillem de Bruijn 
949a91dbff5SWillem de Bruijn 	if (mm_account_pinned_pages(&uarg->mmp, size)) {
950a91dbff5SWillem de Bruijn 		kfree_skb(skb);
951a91dbff5SWillem de Bruijn 		return NULL;
952a91dbff5SWillem de Bruijn 	}
95352267790SWillem de Bruijn 
95452267790SWillem de Bruijn 	uarg->callback = sock_zerocopy_callback;
9554ab6c99dSWillem de Bruijn 	uarg->id = ((u32)atomic_inc_return(&sk->sk_zckey)) - 1;
9564ab6c99dSWillem de Bruijn 	uarg->len = 1;
9574ab6c99dSWillem de Bruijn 	uarg->bytelen = size;
95852267790SWillem de Bruijn 	uarg->zerocopy = 1;
959c1d1b437SEric Dumazet 	refcount_set(&uarg->refcnt, 1);
96052267790SWillem de Bruijn 	sock_hold(sk);
96152267790SWillem de Bruijn 
96252267790SWillem de Bruijn 	return uarg;
96352267790SWillem de Bruijn }
96452267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_alloc);
96552267790SWillem de Bruijn 
96652267790SWillem de Bruijn static inline struct sk_buff *skb_from_uarg(struct ubuf_info *uarg)
96752267790SWillem de Bruijn {
96852267790SWillem de Bruijn 	return container_of((void *)uarg, struct sk_buff, cb);
96952267790SWillem de Bruijn }
97052267790SWillem de Bruijn 
9714ab6c99dSWillem de Bruijn struct ubuf_info *sock_zerocopy_realloc(struct sock *sk, size_t size,
9724ab6c99dSWillem de Bruijn 					struct ubuf_info *uarg)
9734ab6c99dSWillem de Bruijn {
9744ab6c99dSWillem de Bruijn 	if (uarg) {
9754ab6c99dSWillem de Bruijn 		const u32 byte_limit = 1 << 19;		/* limit to a few TSO */
9764ab6c99dSWillem de Bruijn 		u32 bytelen, next;
9774ab6c99dSWillem de Bruijn 
9784ab6c99dSWillem de Bruijn 		/* realloc only when socket is locked (TCP, UDP cork),
9794ab6c99dSWillem de Bruijn 		 * so uarg->len and sk_zckey access is serialized
9804ab6c99dSWillem de Bruijn 		 */
9814ab6c99dSWillem de Bruijn 		if (!sock_owned_by_user(sk)) {
9824ab6c99dSWillem de Bruijn 			WARN_ON_ONCE(1);
9834ab6c99dSWillem de Bruijn 			return NULL;
9844ab6c99dSWillem de Bruijn 		}
9854ab6c99dSWillem de Bruijn 
9864ab6c99dSWillem de Bruijn 		bytelen = uarg->bytelen + size;
9874ab6c99dSWillem de Bruijn 		if (uarg->len == USHRT_MAX - 1 || bytelen > byte_limit) {
9884ab6c99dSWillem de Bruijn 			/* TCP can create new skb to attach new uarg */
9894ab6c99dSWillem de Bruijn 			if (sk->sk_type == SOCK_STREAM)
9904ab6c99dSWillem de Bruijn 				goto new_alloc;
9914ab6c99dSWillem de Bruijn 			return NULL;
9924ab6c99dSWillem de Bruijn 		}
9934ab6c99dSWillem de Bruijn 
9944ab6c99dSWillem de Bruijn 		next = (u32)atomic_read(&sk->sk_zckey);
9954ab6c99dSWillem de Bruijn 		if ((u32)(uarg->id + uarg->len) == next) {
996a91dbff5SWillem de Bruijn 			if (mm_account_pinned_pages(&uarg->mmp, size))
997a91dbff5SWillem de Bruijn 				return NULL;
9984ab6c99dSWillem de Bruijn 			uarg->len++;
9994ab6c99dSWillem de Bruijn 			uarg->bytelen = bytelen;
10004ab6c99dSWillem de Bruijn 			atomic_set(&sk->sk_zckey, ++next);
1001db5bce32SEric Dumazet 			sock_zerocopy_get(uarg);
10024ab6c99dSWillem de Bruijn 			return uarg;
10034ab6c99dSWillem de Bruijn 		}
10044ab6c99dSWillem de Bruijn 	}
10054ab6c99dSWillem de Bruijn 
10064ab6c99dSWillem de Bruijn new_alloc:
10074ab6c99dSWillem de Bruijn 	return sock_zerocopy_alloc(sk, size);
10084ab6c99dSWillem de Bruijn }
10094ab6c99dSWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_realloc);
10104ab6c99dSWillem de Bruijn 
10114ab6c99dSWillem de Bruijn static bool skb_zerocopy_notify_extend(struct sk_buff *skb, u32 lo, u16 len)
10124ab6c99dSWillem de Bruijn {
10134ab6c99dSWillem de Bruijn 	struct sock_exterr_skb *serr = SKB_EXT_ERR(skb);
10144ab6c99dSWillem de Bruijn 	u32 old_lo, old_hi;
10154ab6c99dSWillem de Bruijn 	u64 sum_len;
10164ab6c99dSWillem de Bruijn 
10174ab6c99dSWillem de Bruijn 	old_lo = serr->ee.ee_info;
10184ab6c99dSWillem de Bruijn 	old_hi = serr->ee.ee_data;
10194ab6c99dSWillem de Bruijn 	sum_len = old_hi - old_lo + 1ULL + len;
10204ab6c99dSWillem de Bruijn 
10214ab6c99dSWillem de Bruijn 	if (sum_len >= (1ULL << 32))
10224ab6c99dSWillem de Bruijn 		return false;
10234ab6c99dSWillem de Bruijn 
10244ab6c99dSWillem de Bruijn 	if (lo != old_hi + 1)
10254ab6c99dSWillem de Bruijn 		return false;
10264ab6c99dSWillem de Bruijn 
10274ab6c99dSWillem de Bruijn 	serr->ee.ee_data += len;
10284ab6c99dSWillem de Bruijn 	return true;
10294ab6c99dSWillem de Bruijn }
10304ab6c99dSWillem de Bruijn 
103152267790SWillem de Bruijn void sock_zerocopy_callback(struct ubuf_info *uarg, bool success)
103252267790SWillem de Bruijn {
10334ab6c99dSWillem de Bruijn 	struct sk_buff *tail, *skb = skb_from_uarg(uarg);
103452267790SWillem de Bruijn 	struct sock_exterr_skb *serr;
103552267790SWillem de Bruijn 	struct sock *sk = skb->sk;
10364ab6c99dSWillem de Bruijn 	struct sk_buff_head *q;
10374ab6c99dSWillem de Bruijn 	unsigned long flags;
10384ab6c99dSWillem de Bruijn 	u32 lo, hi;
10394ab6c99dSWillem de Bruijn 	u16 len;
104052267790SWillem de Bruijn 
1041ccaffff1SWillem de Bruijn 	mm_unaccount_pinned_pages(&uarg->mmp);
1042ccaffff1SWillem de Bruijn 
10434ab6c99dSWillem de Bruijn 	/* if !len, there was only 1 call, and it was aborted
10444ab6c99dSWillem de Bruijn 	 * so do not queue a completion notification
10454ab6c99dSWillem de Bruijn 	 */
10464ab6c99dSWillem de Bruijn 	if (!uarg->len || sock_flag(sk, SOCK_DEAD))
104752267790SWillem de Bruijn 		goto release;
104852267790SWillem de Bruijn 
10494ab6c99dSWillem de Bruijn 	len = uarg->len;
10504ab6c99dSWillem de Bruijn 	lo = uarg->id;
10514ab6c99dSWillem de Bruijn 	hi = uarg->id + len - 1;
10524ab6c99dSWillem de Bruijn 
105352267790SWillem de Bruijn 	serr = SKB_EXT_ERR(skb);
105452267790SWillem de Bruijn 	memset(serr, 0, sizeof(*serr));
105552267790SWillem de Bruijn 	serr->ee.ee_errno = 0;
105652267790SWillem de Bruijn 	serr->ee.ee_origin = SO_EE_ORIGIN_ZEROCOPY;
10574ab6c99dSWillem de Bruijn 	serr->ee.ee_data = hi;
10584ab6c99dSWillem de Bruijn 	serr->ee.ee_info = lo;
105952267790SWillem de Bruijn 	if (!success)
106052267790SWillem de Bruijn 		serr->ee.ee_code |= SO_EE_CODE_ZEROCOPY_COPIED;
106152267790SWillem de Bruijn 
10624ab6c99dSWillem de Bruijn 	q = &sk->sk_error_queue;
10634ab6c99dSWillem de Bruijn 	spin_lock_irqsave(&q->lock, flags);
10644ab6c99dSWillem de Bruijn 	tail = skb_peek_tail(q);
10654ab6c99dSWillem de Bruijn 	if (!tail || SKB_EXT_ERR(tail)->ee.ee_origin != SO_EE_ORIGIN_ZEROCOPY ||
10664ab6c99dSWillem de Bruijn 	    !skb_zerocopy_notify_extend(tail, lo, len)) {
10674ab6c99dSWillem de Bruijn 		__skb_queue_tail(q, skb);
106852267790SWillem de Bruijn 		skb = NULL;
10694ab6c99dSWillem de Bruijn 	}
10704ab6c99dSWillem de Bruijn 	spin_unlock_irqrestore(&q->lock, flags);
107152267790SWillem de Bruijn 
107252267790SWillem de Bruijn 	sk->sk_error_report(sk);
107352267790SWillem de Bruijn 
107452267790SWillem de Bruijn release:
107552267790SWillem de Bruijn 	consume_skb(skb);
107652267790SWillem de Bruijn 	sock_put(sk);
107752267790SWillem de Bruijn }
107852267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_callback);
107952267790SWillem de Bruijn 
108052267790SWillem de Bruijn void sock_zerocopy_put(struct ubuf_info *uarg)
108152267790SWillem de Bruijn {
1082c1d1b437SEric Dumazet 	if (uarg && refcount_dec_and_test(&uarg->refcnt)) {
108352267790SWillem de Bruijn 		if (uarg->callback)
108452267790SWillem de Bruijn 			uarg->callback(uarg, uarg->zerocopy);
108552267790SWillem de Bruijn 		else
108652267790SWillem de Bruijn 			consume_skb(skb_from_uarg(uarg));
108752267790SWillem de Bruijn 	}
108852267790SWillem de Bruijn }
108952267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_put);
109052267790SWillem de Bruijn 
109152267790SWillem de Bruijn void sock_zerocopy_put_abort(struct ubuf_info *uarg)
109252267790SWillem de Bruijn {
109352267790SWillem de Bruijn 	if (uarg) {
109452267790SWillem de Bruijn 		struct sock *sk = skb_from_uarg(uarg)->sk;
109552267790SWillem de Bruijn 
109652267790SWillem de Bruijn 		atomic_dec(&sk->sk_zckey);
10974ab6c99dSWillem de Bruijn 		uarg->len--;
109852267790SWillem de Bruijn 
109952267790SWillem de Bruijn 		sock_zerocopy_put(uarg);
110052267790SWillem de Bruijn 	}
110152267790SWillem de Bruijn }
110252267790SWillem de Bruijn EXPORT_SYMBOL_GPL(sock_zerocopy_put_abort);
110352267790SWillem de Bruijn 
110452267790SWillem de Bruijn extern int __zerocopy_sg_from_iter(struct sock *sk, struct sk_buff *skb,
110552267790SWillem de Bruijn 				   struct iov_iter *from, size_t length);
110652267790SWillem de Bruijn 
110752267790SWillem de Bruijn int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
110852267790SWillem de Bruijn 			     struct msghdr *msg, int len,
110952267790SWillem de Bruijn 			     struct ubuf_info *uarg)
111052267790SWillem de Bruijn {
11114ab6c99dSWillem de Bruijn 	struct ubuf_info *orig_uarg = skb_zcopy(skb);
111252267790SWillem de Bruijn 	struct iov_iter orig_iter = msg->msg_iter;
111352267790SWillem de Bruijn 	int err, orig_len = skb->len;
111452267790SWillem de Bruijn 
11154ab6c99dSWillem de Bruijn 	/* An skb can only point to one uarg. This edge case happens when
11164ab6c99dSWillem de Bruijn 	 * TCP appends to an skb, but zerocopy_realloc triggered a new alloc.
11174ab6c99dSWillem de Bruijn 	 */
11184ab6c99dSWillem de Bruijn 	if (orig_uarg && uarg != orig_uarg)
11194ab6c99dSWillem de Bruijn 		return -EEXIST;
11204ab6c99dSWillem de Bruijn 
112152267790SWillem de Bruijn 	err = __zerocopy_sg_from_iter(sk, skb, &msg->msg_iter, len);
112252267790SWillem de Bruijn 	if (err == -EFAULT || (err == -EMSGSIZE && skb->len == orig_len)) {
112354d43117SWillem de Bruijn 		struct sock *save_sk = skb->sk;
112454d43117SWillem de Bruijn 
112552267790SWillem de Bruijn 		/* Streams do not free skb on error. Reset to prev state. */
112652267790SWillem de Bruijn 		msg->msg_iter = orig_iter;
112754d43117SWillem de Bruijn 		skb->sk = sk;
112852267790SWillem de Bruijn 		___pskb_trim(skb, orig_len);
112954d43117SWillem de Bruijn 		skb->sk = save_sk;
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)
1181b90ddd56SWillem de Bruijn 		goto release;
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 
1241b90ddd56SWillem de Bruijn release:
12421f8b977aSWillem de Bruijn 	skb_zcopy_clear(skb, false);
1243a6686f2fSShirley Ma 	return 0;
1244a6686f2fSShirley Ma }
1245dcc0fb78SMichael S. Tsirkin EXPORT_SYMBOL_GPL(skb_copy_ubufs);
1246a6686f2fSShirley Ma 
1247e0053ec0SHerbert Xu /**
1248e0053ec0SHerbert Xu  *	skb_clone	-	duplicate an sk_buff
1249e0053ec0SHerbert Xu  *	@skb: buffer to clone
1250e0053ec0SHerbert Xu  *	@gfp_mask: allocation priority
1251e0053ec0SHerbert Xu  *
1252e0053ec0SHerbert Xu  *	Duplicate an &sk_buff. The new one is not owned by a socket. Both
1253e0053ec0SHerbert Xu  *	copies share the same packet data but not structure. The new
1254e0053ec0SHerbert Xu  *	buffer has a reference count of 1. If the allocation fails the
1255e0053ec0SHerbert Xu  *	function returns %NULL otherwise the new buffer is returned.
1256e0053ec0SHerbert Xu  *
1257e0053ec0SHerbert Xu  *	If this function is called from an interrupt gfp_mask() must be
1258e0053ec0SHerbert Xu  *	%GFP_ATOMIC.
1259e0053ec0SHerbert Xu  */
1260e0053ec0SHerbert Xu 
1261e0053ec0SHerbert Xu struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1262e0053ec0SHerbert Xu {
1263d0bf4a9eSEric Dumazet 	struct sk_buff_fclones *fclones = container_of(skb,
1264d0bf4a9eSEric Dumazet 						       struct sk_buff_fclones,
1265d0bf4a9eSEric Dumazet 						       skb1);
12666ffe75ebSEric Dumazet 	struct sk_buff *n;
1267e0053ec0SHerbert Xu 
126870008aa5SMichael S. Tsirkin 	if (skb_orphan_frags(skb, gfp_mask))
1269a6686f2fSShirley Ma 		return NULL;
1270a6686f2fSShirley Ma 
1271e0053ec0SHerbert Xu 	if (skb->fclone == SKB_FCLONE_ORIG &&
12722638595aSReshetova, Elena 	    refcount_read(&fclones->fclone_ref) == 1) {
12736ffe75ebSEric Dumazet 		n = &fclones->skb2;
12742638595aSReshetova, Elena 		refcount_set(&fclones->fclone_ref, 2);
1275e0053ec0SHerbert Xu 	} else {
1276c93bdd0eSMel Gorman 		if (skb_pfmemalloc(skb))
1277c93bdd0eSMel Gorman 			gfp_mask |= __GFP_MEMALLOC;
1278c93bdd0eSMel Gorman 
1279e0053ec0SHerbert Xu 		n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1280e0053ec0SHerbert Xu 		if (!n)
1281e0053ec0SHerbert Xu 			return NULL;
1282fe55f6d5SVegard Nossum 
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 
13539f77fad3STim Hansen 	BUG_ON(skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len));
13541da177e4SLinus Torvalds 
13551da177e4SLinus Torvalds 	copy_skb_header(n, skb);
13561da177e4SLinus Torvalds 	return n;
13571da177e4SLinus Torvalds }
1358b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy);
13591da177e4SLinus Torvalds 
13601da177e4SLinus Torvalds /**
1361bad93e9dSOctavian Purdila  *	__pskb_copy_fclone	-  create copy of an sk_buff with private head.
13621da177e4SLinus Torvalds  *	@skb: buffer to copy
1363117632e6SEric Dumazet  *	@headroom: headroom of new skb
13641da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
1365bad93e9dSOctavian Purdila  *	@fclone: if true allocate the copy of the skb from the fclone
1366bad93e9dSOctavian Purdila  *	cache instead of the head cache; it is recommended to set this
1367bad93e9dSOctavian Purdila  *	to true for the cases where the copy will likely be cloned
13681da177e4SLinus Torvalds  *
13691da177e4SLinus Torvalds  *	Make a copy of both an &sk_buff and part of its data, located
13701da177e4SLinus Torvalds  *	in header. Fragmented data remain shared. This is used when
13711da177e4SLinus Torvalds  *	the caller wishes to modify only header of &sk_buff and needs
13721da177e4SLinus Torvalds  *	private copy of the header to alter. Returns %NULL on failure
13731da177e4SLinus Torvalds  *	or the pointer to the buffer on success.
13741da177e4SLinus Torvalds  *	The returned buffer has a reference count of 1.
13751da177e4SLinus Torvalds  */
13761da177e4SLinus Torvalds 
1377bad93e9dSOctavian Purdila struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1378bad93e9dSOctavian Purdila 				   gfp_t gfp_mask, bool fclone)
13791da177e4SLinus Torvalds {
1380117632e6SEric Dumazet 	unsigned int size = skb_headlen(skb) + headroom;
1381bad93e9dSOctavian Purdila 	int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1382bad93e9dSOctavian Purdila 	struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
13836602cebbSEric Dumazet 
13841da177e4SLinus Torvalds 	if (!n)
13851da177e4SLinus Torvalds 		goto out;
13861da177e4SLinus Torvalds 
13871da177e4SLinus Torvalds 	/* Set the data pointer */
1388117632e6SEric Dumazet 	skb_reserve(n, headroom);
13891da177e4SLinus Torvalds 	/* Set the tail pointer and length */
13901da177e4SLinus Torvalds 	skb_put(n, skb_headlen(skb));
13911da177e4SLinus Torvalds 	/* Copy the bytes */
1392d626f62bSArnaldo Carvalho de Melo 	skb_copy_from_linear_data(skb, n->data, n->len);
13931da177e4SLinus Torvalds 
139425f484a6SHerbert Xu 	n->truesize += skb->data_len;
13951da177e4SLinus Torvalds 	n->data_len  = skb->data_len;
13961da177e4SLinus Torvalds 	n->len	     = skb->len;
13971da177e4SLinus Torvalds 
13981da177e4SLinus Torvalds 	if (skb_shinfo(skb)->nr_frags) {
13991da177e4SLinus Torvalds 		int i;
14001da177e4SLinus Torvalds 
14011f8b977aSWillem de Bruijn 		if (skb_orphan_frags(skb, gfp_mask) ||
14021f8b977aSWillem de Bruijn 		    skb_zerocopy_clone(n, skb, gfp_mask)) {
14031511022cSDan Carpenter 			kfree_skb(n);
14041511022cSDan Carpenter 			n = NULL;
1405a6686f2fSShirley Ma 			goto out;
1406a6686f2fSShirley Ma 		}
14071da177e4SLinus Torvalds 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
14081da177e4SLinus Torvalds 			skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
1409ea2ab693SIan Campbell 			skb_frag_ref(skb, i);
14101da177e4SLinus Torvalds 		}
14111da177e4SLinus Torvalds 		skb_shinfo(n)->nr_frags = i;
14121da177e4SLinus Torvalds 	}
14131da177e4SLinus Torvalds 
141421dc3301SDavid S. Miller 	if (skb_has_frag_list(skb)) {
14151da177e4SLinus Torvalds 		skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
14161da177e4SLinus Torvalds 		skb_clone_fraglist(n);
14171da177e4SLinus Torvalds 	}
14181da177e4SLinus Torvalds 
14191da177e4SLinus Torvalds 	copy_skb_header(n, skb);
14201da177e4SLinus Torvalds out:
14211da177e4SLinus Torvalds 	return n;
14221da177e4SLinus Torvalds }
1423bad93e9dSOctavian Purdila EXPORT_SYMBOL(__pskb_copy_fclone);
14241da177e4SLinus Torvalds 
14251da177e4SLinus Torvalds /**
14261da177e4SLinus Torvalds  *	pskb_expand_head - reallocate header of &sk_buff
14271da177e4SLinus Torvalds  *	@skb: buffer to reallocate
14281da177e4SLinus Torvalds  *	@nhead: room to add at head
14291da177e4SLinus Torvalds  *	@ntail: room to add at tail
14301da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
14311da177e4SLinus Torvalds  *
1432bc32383cSMathias Krause  *	Expands (or creates identical copy, if @nhead and @ntail are zero)
1433bc32383cSMathias Krause  *	header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
14341da177e4SLinus Torvalds  *	reference count of 1. Returns zero in the case of success or error,
14351da177e4SLinus Torvalds  *	if expansion failed. In the last case, &sk_buff is not changed.
14361da177e4SLinus Torvalds  *
14371da177e4SLinus Torvalds  *	All the pointers pointing into skb header may change and must be
14381da177e4SLinus Torvalds  *	reloaded after call to this function.
14391da177e4SLinus Torvalds  */
14401da177e4SLinus Torvalds 
144186a76cafSVictor Fusco int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
1442dd0fc66fSAl Viro 		     gfp_t gfp_mask)
14431da177e4SLinus Torvalds {
1444158f323bSEric Dumazet 	int i, osize = skb_end_offset(skb);
1445158f323bSEric Dumazet 	int size = osize + nhead + ntail;
14461da177e4SLinus Torvalds 	long off;
1447158f323bSEric Dumazet 	u8 *data;
14481da177e4SLinus Torvalds 
14494edd87adSHerbert Xu 	BUG_ON(nhead < 0);
14504edd87adSHerbert Xu 
14519f77fad3STim Hansen 	BUG_ON(skb_shared(skb));
14521da177e4SLinus Torvalds 
14531da177e4SLinus Torvalds 	size = SKB_DATA_ALIGN(size);
14541da177e4SLinus Torvalds 
1455c93bdd0eSMel Gorman 	if (skb_pfmemalloc(skb))
1456c93bdd0eSMel Gorman 		gfp_mask |= __GFP_MEMALLOC;
1457c93bdd0eSMel Gorman 	data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1458c93bdd0eSMel Gorman 			       gfp_mask, NUMA_NO_NODE, NULL);
14591da177e4SLinus Torvalds 	if (!data)
14601da177e4SLinus Torvalds 		goto nodata;
146187151b86SEric Dumazet 	size = SKB_WITH_OVERHEAD(ksize(data));
14621da177e4SLinus Torvalds 
14631da177e4SLinus Torvalds 	/* Copy only real data... and, alas, header. This should be
14646602cebbSEric Dumazet 	 * optimized for the cases when header is void.
14656602cebbSEric Dumazet 	 */
14666602cebbSEric Dumazet 	memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
14676602cebbSEric Dumazet 
14686602cebbSEric Dumazet 	memcpy((struct skb_shared_info *)(data + size),
14696602cebbSEric Dumazet 	       skb_shinfo(skb),
1470fed66381SEric Dumazet 	       offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
14711da177e4SLinus Torvalds 
14723e24591aSAlexander Duyck 	/*
14733e24591aSAlexander Duyck 	 * if shinfo is shared we must drop the old head gracefully, but if it
14743e24591aSAlexander Duyck 	 * is not we can just drop the old head and let the existing refcount
14753e24591aSAlexander Duyck 	 * be since all we did is relocate the values
14763e24591aSAlexander Duyck 	 */
14773e24591aSAlexander Duyck 	if (skb_cloned(skb)) {
147870008aa5SMichael S. Tsirkin 		if (skb_orphan_frags(skb, gfp_mask))
1479a6686f2fSShirley Ma 			goto nofrags;
14801f8b977aSWillem de Bruijn 		if (skb_zcopy(skb))
1481c1d1b437SEric Dumazet 			refcount_inc(&skb_uarg(skb)->refcnt);
14821da177e4SLinus Torvalds 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1483ea2ab693SIan Campbell 			skb_frag_ref(skb, i);
14841da177e4SLinus Torvalds 
148521dc3301SDavid S. Miller 		if (skb_has_frag_list(skb))
14861da177e4SLinus Torvalds 			skb_clone_fraglist(skb);
14871da177e4SLinus Torvalds 
14881da177e4SLinus Torvalds 		skb_release_data(skb);
14893e24591aSAlexander Duyck 	} else {
14903e24591aSAlexander Duyck 		skb_free_head(skb);
14911fd63041SEric Dumazet 	}
14921da177e4SLinus Torvalds 	off = (data + nhead) - skb->head;
14931da177e4SLinus Torvalds 
14941da177e4SLinus Torvalds 	skb->head     = data;
1495d3836f21SEric Dumazet 	skb->head_frag = 0;
14961da177e4SLinus Torvalds 	skb->data    += off;
14974305b541SArnaldo Carvalho de Melo #ifdef NET_SKBUFF_DATA_USES_OFFSET
14984305b541SArnaldo Carvalho de Melo 	skb->end      = size;
149956eb8882SPatrick McHardy 	off           = nhead;
15004305b541SArnaldo Carvalho de Melo #else
15014305b541SArnaldo Carvalho de Melo 	skb->end      = skb->head + size;
150256eb8882SPatrick McHardy #endif
150327a884dcSArnaldo Carvalho de Melo 	skb->tail	      += off;
1504b41abb42SPeter Pan(潘卫平) 	skb_headers_offset_update(skb, nhead);
15051da177e4SLinus Torvalds 	skb->cloned   = 0;
1506334a8132SPatrick McHardy 	skb->hdr_len  = 0;
15071da177e4SLinus Torvalds 	skb->nohdr    = 0;
15081da177e4SLinus Torvalds 	atomic_set(&skb_shinfo(skb)->dataref, 1);
1509158f323bSEric Dumazet 
1510de8f3a83SDaniel Borkmann 	skb_metadata_clear(skb);
1511de8f3a83SDaniel Borkmann 
1512158f323bSEric Dumazet 	/* It is not generally safe to change skb->truesize.
1513158f323bSEric Dumazet 	 * For the moment, we really care of rx path, or
1514158f323bSEric Dumazet 	 * when skb is orphaned (not attached to a socket).
1515158f323bSEric Dumazet 	 */
1516158f323bSEric Dumazet 	if (!skb->sk || skb->destructor == sock_edemux)
1517158f323bSEric Dumazet 		skb->truesize += size - osize;
1518158f323bSEric Dumazet 
15191da177e4SLinus Torvalds 	return 0;
15201da177e4SLinus Torvalds 
1521a6686f2fSShirley Ma nofrags:
1522a6686f2fSShirley Ma 	kfree(data);
15231da177e4SLinus Torvalds nodata:
15241da177e4SLinus Torvalds 	return -ENOMEM;
15251da177e4SLinus Torvalds }
1526b4ac530fSDavid S. Miller EXPORT_SYMBOL(pskb_expand_head);
15271da177e4SLinus Torvalds 
15281da177e4SLinus Torvalds /* Make private copy of skb with writable head and some headroom */
15291da177e4SLinus Torvalds 
15301da177e4SLinus Torvalds struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
15311da177e4SLinus Torvalds {
15321da177e4SLinus Torvalds 	struct sk_buff *skb2;
15331da177e4SLinus Torvalds 	int delta = headroom - skb_headroom(skb);
15341da177e4SLinus Torvalds 
15351da177e4SLinus Torvalds 	if (delta <= 0)
15361da177e4SLinus Torvalds 		skb2 = pskb_copy(skb, GFP_ATOMIC);
15371da177e4SLinus Torvalds 	else {
15381da177e4SLinus Torvalds 		skb2 = skb_clone(skb, GFP_ATOMIC);
15391da177e4SLinus Torvalds 		if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
15401da177e4SLinus Torvalds 					     GFP_ATOMIC)) {
15411da177e4SLinus Torvalds 			kfree_skb(skb2);
15421da177e4SLinus Torvalds 			skb2 = NULL;
15431da177e4SLinus Torvalds 		}
15441da177e4SLinus Torvalds 	}
15451da177e4SLinus Torvalds 	return skb2;
15461da177e4SLinus Torvalds }
1547b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_realloc_headroom);
15481da177e4SLinus Torvalds 
15491da177e4SLinus Torvalds /**
15501da177e4SLinus Torvalds  *	skb_copy_expand	-	copy and expand sk_buff
15511da177e4SLinus Torvalds  *	@skb: buffer to copy
15521da177e4SLinus Torvalds  *	@newheadroom: new free bytes at head
15531da177e4SLinus Torvalds  *	@newtailroom: new free bytes at tail
15541da177e4SLinus Torvalds  *	@gfp_mask: allocation priority
15551da177e4SLinus Torvalds  *
15561da177e4SLinus Torvalds  *	Make a copy of both an &sk_buff and its data and while doing so
15571da177e4SLinus Torvalds  *	allocate additional space.
15581da177e4SLinus Torvalds  *
15591da177e4SLinus Torvalds  *	This is used when the caller wishes to modify the data and needs a
15601da177e4SLinus Torvalds  *	private copy of the data to alter as well as more space for new fields.
15611da177e4SLinus Torvalds  *	Returns %NULL on failure or the pointer to the buffer
15621da177e4SLinus Torvalds  *	on success. The returned buffer has a reference count of 1.
15631da177e4SLinus Torvalds  *
15641da177e4SLinus Torvalds  *	You must pass %GFP_ATOMIC as the allocation priority if this function
15651da177e4SLinus Torvalds  *	is called from an interrupt.
15661da177e4SLinus Torvalds  */
15671da177e4SLinus Torvalds struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
156886a76cafSVictor Fusco 				int newheadroom, int newtailroom,
1569dd0fc66fSAl Viro 				gfp_t gfp_mask)
15701da177e4SLinus Torvalds {
15711da177e4SLinus Torvalds 	/*
15721da177e4SLinus Torvalds 	 *	Allocate the copy buffer
15731da177e4SLinus Torvalds 	 */
1574c93bdd0eSMel Gorman 	struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1575c93bdd0eSMel Gorman 					gfp_mask, skb_alloc_rx_flag(skb),
1576c93bdd0eSMel Gorman 					NUMA_NO_NODE);
1577efd1e8d5SPatrick McHardy 	int oldheadroom = skb_headroom(skb);
15781da177e4SLinus Torvalds 	int head_copy_len, head_copy_off;
15791da177e4SLinus Torvalds 
15801da177e4SLinus Torvalds 	if (!n)
15811da177e4SLinus Torvalds 		return NULL;
15821da177e4SLinus Torvalds 
15831da177e4SLinus Torvalds 	skb_reserve(n, newheadroom);
15841da177e4SLinus Torvalds 
15851da177e4SLinus Torvalds 	/* Set the tail pointer and length */
15861da177e4SLinus Torvalds 	skb_put(n, skb->len);
15871da177e4SLinus Torvalds 
1588efd1e8d5SPatrick McHardy 	head_copy_len = oldheadroom;
15891da177e4SLinus Torvalds 	head_copy_off = 0;
15901da177e4SLinus Torvalds 	if (newheadroom <= head_copy_len)
15911da177e4SLinus Torvalds 		head_copy_len = newheadroom;
15921da177e4SLinus Torvalds 	else
15931da177e4SLinus Torvalds 		head_copy_off = newheadroom - head_copy_len;
15941da177e4SLinus Torvalds 
15951da177e4SLinus Torvalds 	/* Copy the linear header and data. */
15969f77fad3STim Hansen 	BUG_ON(skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
15979f77fad3STim Hansen 			     skb->len + head_copy_len));
15981da177e4SLinus Torvalds 
15991da177e4SLinus Torvalds 	copy_skb_header(n, skb);
16001da177e4SLinus Torvalds 
1601030737bcSEric Dumazet 	skb_headers_offset_update(n, newheadroom - oldheadroom);
1602efd1e8d5SPatrick McHardy 
16031da177e4SLinus Torvalds 	return n;
16041da177e4SLinus Torvalds }
1605b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_expand);
16061da177e4SLinus Torvalds 
16071da177e4SLinus Torvalds /**
1608cd0a137aSFlorian Fainelli  *	__skb_pad		-	zero pad the tail of an skb
16091da177e4SLinus Torvalds  *	@skb: buffer to pad
16101da177e4SLinus Torvalds  *	@pad: space to pad
1611cd0a137aSFlorian Fainelli  *	@free_on_error: free buffer on error
16121da177e4SLinus Torvalds  *
16131da177e4SLinus Torvalds  *	Ensure that a buffer is followed by a padding area that is zero
16141da177e4SLinus Torvalds  *	filled. Used by network drivers which may DMA or transfer data
16151da177e4SLinus Torvalds  *	beyond the buffer end onto the wire.
16161da177e4SLinus Torvalds  *
1617cd0a137aSFlorian Fainelli  *	May return error in out of memory cases. The skb is freed on error
1618cd0a137aSFlorian Fainelli  *	if @free_on_error is true.
16191da177e4SLinus Torvalds  */
16201da177e4SLinus Torvalds 
1621cd0a137aSFlorian Fainelli int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error)
16221da177e4SLinus Torvalds {
16235b057c6bSHerbert Xu 	int err;
16245b057c6bSHerbert Xu 	int ntail;
16251da177e4SLinus Torvalds 
16261da177e4SLinus Torvalds 	/* If the skbuff is non linear tailroom is always zero.. */
16275b057c6bSHerbert Xu 	if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
16281da177e4SLinus Torvalds 		memset(skb->data+skb->len, 0, pad);
16295b057c6bSHerbert Xu 		return 0;
16301da177e4SLinus Torvalds 	}
16311da177e4SLinus Torvalds 
16324305b541SArnaldo Carvalho de Melo 	ntail = skb->data_len + pad - (skb->end - skb->tail);
16335b057c6bSHerbert Xu 	if (likely(skb_cloned(skb) || ntail > 0)) {
16345b057c6bSHerbert Xu 		err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
16355b057c6bSHerbert Xu 		if (unlikely(err))
16365b057c6bSHerbert Xu 			goto free_skb;
16375b057c6bSHerbert Xu 	}
16385b057c6bSHerbert Xu 
16395b057c6bSHerbert Xu 	/* FIXME: The use of this function with non-linear skb's really needs
16405b057c6bSHerbert Xu 	 * to be audited.
16415b057c6bSHerbert Xu 	 */
16425b057c6bSHerbert Xu 	err = skb_linearize(skb);
16435b057c6bSHerbert Xu 	if (unlikely(err))
16445b057c6bSHerbert Xu 		goto free_skb;
16455b057c6bSHerbert Xu 
16465b057c6bSHerbert Xu 	memset(skb->data + skb->len, 0, pad);
16475b057c6bSHerbert Xu 	return 0;
16485b057c6bSHerbert Xu 
16495b057c6bSHerbert Xu free_skb:
1650cd0a137aSFlorian Fainelli 	if (free_on_error)
16511da177e4SLinus Torvalds 		kfree_skb(skb);
16525b057c6bSHerbert Xu 	return err;
16531da177e4SLinus Torvalds }
1654cd0a137aSFlorian Fainelli EXPORT_SYMBOL(__skb_pad);
16551da177e4SLinus Torvalds 
16560dde3e16SIlpo Järvinen /**
16570c7ddf36SMathias Krause  *	pskb_put - add data to the tail of a potentially fragmented buffer
16580c7ddf36SMathias Krause  *	@skb: start of the buffer to use
16590c7ddf36SMathias Krause  *	@tail: tail fragment of the buffer to use
16600c7ddf36SMathias Krause  *	@len: amount of data to add
16610c7ddf36SMathias Krause  *
16620c7ddf36SMathias Krause  *	This function extends the used data area of the potentially
16630c7ddf36SMathias Krause  *	fragmented buffer. @tail must be the last fragment of @skb -- or
16640c7ddf36SMathias Krause  *	@skb itself. If this would exceed the total buffer size the kernel
16650c7ddf36SMathias Krause  *	will panic. A pointer to the first byte of the extra data is
16660c7ddf36SMathias Krause  *	returned.
16670c7ddf36SMathias Krause  */
16680c7ddf36SMathias Krause 
16694df864c1SJohannes Berg void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
16700c7ddf36SMathias Krause {
16710c7ddf36SMathias Krause 	if (tail != skb) {
16720c7ddf36SMathias Krause 		skb->data_len += len;
16730c7ddf36SMathias Krause 		skb->len += len;
16740c7ddf36SMathias Krause 	}
16750c7ddf36SMathias Krause 	return skb_put(tail, len);
16760c7ddf36SMathias Krause }
16770c7ddf36SMathias Krause EXPORT_SYMBOL_GPL(pskb_put);
16780c7ddf36SMathias Krause 
16790c7ddf36SMathias Krause /**
16800dde3e16SIlpo Järvinen  *	skb_put - add data to a buffer
16810dde3e16SIlpo Järvinen  *	@skb: buffer to use
16820dde3e16SIlpo Järvinen  *	@len: amount of data to add
16830dde3e16SIlpo Järvinen  *
16840dde3e16SIlpo Järvinen  *	This function extends the used data area of the buffer. If this would
16850dde3e16SIlpo Järvinen  *	exceed the total buffer size the kernel will panic. A pointer to the
16860dde3e16SIlpo Järvinen  *	first byte of the extra data is returned.
16870dde3e16SIlpo Järvinen  */
16884df864c1SJohannes Berg void *skb_put(struct sk_buff *skb, unsigned int len)
16890dde3e16SIlpo Järvinen {
16904df864c1SJohannes Berg 	void *tmp = skb_tail_pointer(skb);
16910dde3e16SIlpo Järvinen 	SKB_LINEAR_ASSERT(skb);
16920dde3e16SIlpo Järvinen 	skb->tail += len;
16930dde3e16SIlpo Järvinen 	skb->len  += len;
16940dde3e16SIlpo Järvinen 	if (unlikely(skb->tail > skb->end))
16950dde3e16SIlpo Järvinen 		skb_over_panic(skb, len, __builtin_return_address(0));
16960dde3e16SIlpo Järvinen 	return tmp;
16970dde3e16SIlpo Järvinen }
16980dde3e16SIlpo Järvinen EXPORT_SYMBOL(skb_put);
16990dde3e16SIlpo Järvinen 
17006be8ac2fSIlpo Järvinen /**
1701c2aa270aSIlpo Järvinen  *	skb_push - add data to the start of a buffer
1702c2aa270aSIlpo Järvinen  *	@skb: buffer to use
1703c2aa270aSIlpo Järvinen  *	@len: amount of data to add
1704c2aa270aSIlpo Järvinen  *
1705c2aa270aSIlpo Järvinen  *	This function extends the used data area of the buffer at the buffer
1706c2aa270aSIlpo Järvinen  *	start. If this would exceed the total buffer headroom the kernel will
1707c2aa270aSIlpo Järvinen  *	panic. A pointer to the first byte of the extra data is returned.
1708c2aa270aSIlpo Järvinen  */
1709d58ff351SJohannes Berg void *skb_push(struct sk_buff *skb, unsigned int len)
1710c2aa270aSIlpo Järvinen {
1711c2aa270aSIlpo Järvinen 	skb->data -= len;
1712c2aa270aSIlpo Järvinen 	skb->len  += len;
1713c2aa270aSIlpo Järvinen 	if (unlikely(skb->data<skb->head))
1714c2aa270aSIlpo Järvinen 		skb_under_panic(skb, len, __builtin_return_address(0));
1715c2aa270aSIlpo Järvinen 	return skb->data;
1716c2aa270aSIlpo Järvinen }
1717c2aa270aSIlpo Järvinen EXPORT_SYMBOL(skb_push);
1718c2aa270aSIlpo Järvinen 
1719c2aa270aSIlpo Järvinen /**
17206be8ac2fSIlpo Järvinen  *	skb_pull - remove data from the start of a buffer
17216be8ac2fSIlpo Järvinen  *	@skb: buffer to use
17226be8ac2fSIlpo Järvinen  *	@len: amount of data to remove
17236be8ac2fSIlpo Järvinen  *
17246be8ac2fSIlpo Järvinen  *	This function removes data from the start of a buffer, returning
17256be8ac2fSIlpo Järvinen  *	the memory to the headroom. A pointer to the next data in the buffer
17266be8ac2fSIlpo Järvinen  *	is returned. Once the data has been pulled future pushes will overwrite
17276be8ac2fSIlpo Järvinen  *	the old data.
17286be8ac2fSIlpo Järvinen  */
1729af72868bSJohannes Berg void *skb_pull(struct sk_buff *skb, unsigned int len)
17306be8ac2fSIlpo Järvinen {
173147d29646SDavid S. Miller 	return skb_pull_inline(skb, len);
17326be8ac2fSIlpo Järvinen }
17336be8ac2fSIlpo Järvinen EXPORT_SYMBOL(skb_pull);
17346be8ac2fSIlpo Järvinen 
1735419ae74eSIlpo Järvinen /**
1736419ae74eSIlpo Järvinen  *	skb_trim - remove end from a buffer
1737419ae74eSIlpo Järvinen  *	@skb: buffer to alter
1738419ae74eSIlpo Järvinen  *	@len: new length
1739419ae74eSIlpo Järvinen  *
1740419ae74eSIlpo Järvinen  *	Cut the length of a buffer down by removing data from the tail. If
1741419ae74eSIlpo Järvinen  *	the buffer is already under the length specified it is not modified.
1742419ae74eSIlpo Järvinen  *	The skb must be linear.
1743419ae74eSIlpo Järvinen  */
1744419ae74eSIlpo Järvinen void skb_trim(struct sk_buff *skb, unsigned int len)
1745419ae74eSIlpo Järvinen {
1746419ae74eSIlpo Järvinen 	if (skb->len > len)
1747419ae74eSIlpo Järvinen 		__skb_trim(skb, len);
1748419ae74eSIlpo Järvinen }
1749419ae74eSIlpo Järvinen EXPORT_SYMBOL(skb_trim);
1750419ae74eSIlpo Järvinen 
17513cc0e873SHerbert Xu /* Trims skb to length len. It can change skb pointers.
17521da177e4SLinus Torvalds  */
17531da177e4SLinus Torvalds 
17543cc0e873SHerbert Xu int ___pskb_trim(struct sk_buff *skb, unsigned int len)
17551da177e4SLinus Torvalds {
175627b437c8SHerbert Xu 	struct sk_buff **fragp;
175727b437c8SHerbert Xu 	struct sk_buff *frag;
17581da177e4SLinus Torvalds 	int offset = skb_headlen(skb);
17591da177e4SLinus Torvalds 	int nfrags = skb_shinfo(skb)->nr_frags;
17601da177e4SLinus Torvalds 	int i;
176127b437c8SHerbert Xu 	int err;
176227b437c8SHerbert Xu 
176327b437c8SHerbert Xu 	if (skb_cloned(skb) &&
176427b437c8SHerbert Xu 	    unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
176527b437c8SHerbert Xu 		return err;
17661da177e4SLinus Torvalds 
1767f4d26fb3SHerbert Xu 	i = 0;
1768f4d26fb3SHerbert Xu 	if (offset >= len)
1769f4d26fb3SHerbert Xu 		goto drop_pages;
1770f4d26fb3SHerbert Xu 
1771f4d26fb3SHerbert Xu 	for (; i < nfrags; i++) {
17729e903e08SEric Dumazet 		int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
177327b437c8SHerbert Xu 
177427b437c8SHerbert Xu 		if (end < len) {
17751da177e4SLinus Torvalds 			offset = end;
177627b437c8SHerbert Xu 			continue;
17771da177e4SLinus Torvalds 		}
17781da177e4SLinus Torvalds 
17799e903e08SEric Dumazet 		skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
178027b437c8SHerbert Xu 
1781f4d26fb3SHerbert Xu drop_pages:
178227b437c8SHerbert Xu 		skb_shinfo(skb)->nr_frags = i;
178327b437c8SHerbert Xu 
178427b437c8SHerbert Xu 		for (; i < nfrags; i++)
1785ea2ab693SIan Campbell 			skb_frag_unref(skb, i);
178627b437c8SHerbert Xu 
178721dc3301SDavid S. Miller 		if (skb_has_frag_list(skb))
178827b437c8SHerbert Xu 			skb_drop_fraglist(skb);
1789f4d26fb3SHerbert Xu 		goto done;
179027b437c8SHerbert Xu 	}
179127b437c8SHerbert Xu 
179227b437c8SHerbert Xu 	for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
179327b437c8SHerbert Xu 	     fragp = &frag->next) {
179427b437c8SHerbert Xu 		int end = offset + frag->len;
179527b437c8SHerbert Xu 
179627b437c8SHerbert Xu 		if (skb_shared(frag)) {
179727b437c8SHerbert Xu 			struct sk_buff *nfrag;
179827b437c8SHerbert Xu 
179927b437c8SHerbert Xu 			nfrag = skb_clone(frag, GFP_ATOMIC);
180027b437c8SHerbert Xu 			if (unlikely(!nfrag))
180127b437c8SHerbert Xu 				return -ENOMEM;
180227b437c8SHerbert Xu 
180327b437c8SHerbert Xu 			nfrag->next = frag->next;
180485bb2a60SEric Dumazet 			consume_skb(frag);
180527b437c8SHerbert Xu 			frag = nfrag;
180627b437c8SHerbert Xu 			*fragp = frag;
180727b437c8SHerbert Xu 		}
180827b437c8SHerbert Xu 
180927b437c8SHerbert Xu 		if (end < len) {
181027b437c8SHerbert Xu 			offset = end;
181127b437c8SHerbert Xu 			continue;
181227b437c8SHerbert Xu 		}
181327b437c8SHerbert Xu 
181427b437c8SHerbert Xu 		if (end > len &&
181527b437c8SHerbert Xu 		    unlikely((err = pskb_trim(frag, len - offset))))
181627b437c8SHerbert Xu 			return err;
181727b437c8SHerbert Xu 
181827b437c8SHerbert Xu 		if (frag->next)
181927b437c8SHerbert Xu 			skb_drop_list(&frag->next);
182027b437c8SHerbert Xu 		break;
182127b437c8SHerbert Xu 	}
182227b437c8SHerbert Xu 
1823f4d26fb3SHerbert Xu done:
182427b437c8SHerbert Xu 	if (len > skb_headlen(skb)) {
18251da177e4SLinus Torvalds 		skb->data_len -= skb->len - len;
18261da177e4SLinus Torvalds 		skb->len       = len;
18271da177e4SLinus Torvalds 	} else {
18281da177e4SLinus Torvalds 		skb->len       = len;
18291da177e4SLinus Torvalds 		skb->data_len  = 0;
183027a884dcSArnaldo Carvalho de Melo 		skb_set_tail_pointer(skb, len);
18311da177e4SLinus Torvalds 	}
18321da177e4SLinus Torvalds 
1833c21b48ccSEric Dumazet 	if (!skb->sk || skb->destructor == sock_edemux)
1834c21b48ccSEric Dumazet 		skb_condense(skb);
18351da177e4SLinus Torvalds 	return 0;
18361da177e4SLinus Torvalds }
1837b4ac530fSDavid S. Miller EXPORT_SYMBOL(___pskb_trim);
18381da177e4SLinus Torvalds 
18391da177e4SLinus Torvalds /**
18401da177e4SLinus Torvalds  *	__pskb_pull_tail - advance tail of skb header
18411da177e4SLinus Torvalds  *	@skb: buffer to reallocate
18421da177e4SLinus Torvalds  *	@delta: number of bytes to advance tail
18431da177e4SLinus Torvalds  *
18441da177e4SLinus Torvalds  *	The function makes a sense only on a fragmented &sk_buff,
18451da177e4SLinus Torvalds  *	it expands header moving its tail forward and copying necessary
18461da177e4SLinus Torvalds  *	data from fragmented part.
18471da177e4SLinus Torvalds  *
18481da177e4SLinus Torvalds  *	&sk_buff MUST have reference count of 1.
18491da177e4SLinus Torvalds  *
18501da177e4SLinus Torvalds  *	Returns %NULL (and &sk_buff does not change) if pull failed
18511da177e4SLinus Torvalds  *	or value of new tail of skb in the case of success.
18521da177e4SLinus Torvalds  *
18531da177e4SLinus Torvalds  *	All the pointers pointing into skb header may change and must be
18541da177e4SLinus Torvalds  *	reloaded after call to this function.
18551da177e4SLinus Torvalds  */
18561da177e4SLinus Torvalds 
18571da177e4SLinus Torvalds /* Moves tail of skb head forward, copying data from fragmented part,
18581da177e4SLinus Torvalds  * when it is necessary.
18591da177e4SLinus Torvalds  * 1. It may fail due to malloc failure.
18601da177e4SLinus Torvalds  * 2. It may change skb pointers.
18611da177e4SLinus Torvalds  *
18621da177e4SLinus Torvalds  * It is pretty complicated. Luckily, it is called only in exceptional cases.
18631da177e4SLinus Torvalds  */
1864af72868bSJohannes Berg void *__pskb_pull_tail(struct sk_buff *skb, int delta)
18651da177e4SLinus Torvalds {
18661da177e4SLinus Torvalds 	/* If skb has not enough free space at tail, get new one
18671da177e4SLinus Torvalds 	 * plus 128 bytes for future expansions. If we have enough
18681da177e4SLinus Torvalds 	 * room at tail, reallocate without expansion only if skb is cloned.
18691da177e4SLinus Torvalds 	 */
18704305b541SArnaldo Carvalho de Melo 	int i, k, eat = (skb->tail + delta) - skb->end;
18711da177e4SLinus Torvalds 
18721da177e4SLinus Torvalds 	if (eat > 0 || skb_cloned(skb)) {
18731da177e4SLinus Torvalds 		if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
18741da177e4SLinus Torvalds 				     GFP_ATOMIC))
18751da177e4SLinus Torvalds 			return NULL;
18761da177e4SLinus Torvalds 	}
18771da177e4SLinus Torvalds 
18789f77fad3STim Hansen 	BUG_ON(skb_copy_bits(skb, skb_headlen(skb),
18799f77fad3STim Hansen 			     skb_tail_pointer(skb), delta));
18801da177e4SLinus Torvalds 
18811da177e4SLinus Torvalds 	/* Optimization: no fragments, no reasons to preestimate
18821da177e4SLinus Torvalds 	 * size of pulled pages. Superb.
18831da177e4SLinus Torvalds 	 */
188421dc3301SDavid S. Miller 	if (!skb_has_frag_list(skb))
18851da177e4SLinus Torvalds 		goto pull_pages;
18861da177e4SLinus Torvalds 
18871da177e4SLinus Torvalds 	/* Estimate size of pulled pages. */
18881da177e4SLinus Torvalds 	eat = delta;
18891da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
18909e903e08SEric Dumazet 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
18919e903e08SEric Dumazet 
18929e903e08SEric Dumazet 		if (size >= eat)
18931da177e4SLinus Torvalds 			goto pull_pages;
18949e903e08SEric Dumazet 		eat -= size;
18951da177e4SLinus Torvalds 	}
18961da177e4SLinus Torvalds 
18971da177e4SLinus Torvalds 	/* If we need update frag list, we are in troubles.
189809001b03SWenhua Shi 	 * Certainly, it is possible to add an offset to skb data,
18991da177e4SLinus Torvalds 	 * but taking into account that pulling is expected to
19001da177e4SLinus Torvalds 	 * be very rare operation, it is worth to fight against
19011da177e4SLinus Torvalds 	 * further bloating skb head and crucify ourselves here instead.
19021da177e4SLinus Torvalds 	 * Pure masohism, indeed. 8)8)
19031da177e4SLinus Torvalds 	 */
19041da177e4SLinus Torvalds 	if (eat) {
19051da177e4SLinus Torvalds 		struct sk_buff *list = skb_shinfo(skb)->frag_list;
19061da177e4SLinus Torvalds 		struct sk_buff *clone = NULL;
19071da177e4SLinus Torvalds 		struct sk_buff *insp = NULL;
19081da177e4SLinus Torvalds 
19091da177e4SLinus Torvalds 		do {
191009a62660SKris Katterjohn 			BUG_ON(!list);
19111da177e4SLinus Torvalds 
19121da177e4SLinus Torvalds 			if (list->len <= eat) {
19131da177e4SLinus Torvalds 				/* Eaten as whole. */
19141da177e4SLinus Torvalds 				eat -= list->len;
19151da177e4SLinus Torvalds 				list = list->next;
19161da177e4SLinus Torvalds 				insp = list;
19171da177e4SLinus Torvalds 			} else {
19181da177e4SLinus Torvalds 				/* Eaten partially. */
19191da177e4SLinus Torvalds 
19201da177e4SLinus Torvalds 				if (skb_shared(list)) {
19211da177e4SLinus Torvalds 					/* Sucks! We need to fork list. :-( */
19221da177e4SLinus Torvalds 					clone = skb_clone(list, GFP_ATOMIC);
19231da177e4SLinus Torvalds 					if (!clone)
19241da177e4SLinus Torvalds 						return NULL;
19251da177e4SLinus Torvalds 					insp = list->next;
19261da177e4SLinus Torvalds 					list = clone;
19271da177e4SLinus Torvalds 				} else {
19281da177e4SLinus Torvalds 					/* This may be pulled without
19291da177e4SLinus Torvalds 					 * problems. */
19301da177e4SLinus Torvalds 					insp = list;
19311da177e4SLinus Torvalds 				}
19321da177e4SLinus Torvalds 				if (!pskb_pull(list, eat)) {
19331da177e4SLinus Torvalds 					kfree_skb(clone);
19341da177e4SLinus Torvalds 					return NULL;
19351da177e4SLinus Torvalds 				}
19361da177e4SLinus Torvalds 				break;
19371da177e4SLinus Torvalds 			}
19381da177e4SLinus Torvalds 		} while (eat);
19391da177e4SLinus Torvalds 
19401da177e4SLinus Torvalds 		/* Free pulled out fragments. */
19411da177e4SLinus Torvalds 		while ((list = skb_shinfo(skb)->frag_list) != insp) {
19421da177e4SLinus Torvalds 			skb_shinfo(skb)->frag_list = list->next;
19431da177e4SLinus Torvalds 			kfree_skb(list);
19441da177e4SLinus Torvalds 		}
19451da177e4SLinus Torvalds 		/* And insert new clone at head. */
19461da177e4SLinus Torvalds 		if (clone) {
19471da177e4SLinus Torvalds 			clone->next = list;
19481da177e4SLinus Torvalds 			skb_shinfo(skb)->frag_list = clone;
19491da177e4SLinus Torvalds 		}
19501da177e4SLinus Torvalds 	}
19511da177e4SLinus Torvalds 	/* Success! Now we may commit changes to skb data. */
19521da177e4SLinus Torvalds 
19531da177e4SLinus Torvalds pull_pages:
19541da177e4SLinus Torvalds 	eat = delta;
19551da177e4SLinus Torvalds 	k = 0;
19561da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
19579e903e08SEric Dumazet 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
19589e903e08SEric Dumazet 
19599e903e08SEric Dumazet 		if (size <= eat) {
1960ea2ab693SIan Campbell 			skb_frag_unref(skb, i);
19619e903e08SEric Dumazet 			eat -= size;
19621da177e4SLinus Torvalds 		} else {
19631da177e4SLinus Torvalds 			skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
19641da177e4SLinus Torvalds 			if (eat) {
19651da177e4SLinus Torvalds 				skb_shinfo(skb)->frags[k].page_offset += eat;
19669e903e08SEric Dumazet 				skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
19673ccc6c6fSlinzhang 				if (!i)
19683ccc6c6fSlinzhang 					goto end;
19691da177e4SLinus Torvalds 				eat = 0;
19701da177e4SLinus Torvalds 			}
19711da177e4SLinus Torvalds 			k++;
19721da177e4SLinus Torvalds 		}
19731da177e4SLinus Torvalds 	}
19741da177e4SLinus Torvalds 	skb_shinfo(skb)->nr_frags = k;
19751da177e4SLinus Torvalds 
19763ccc6c6fSlinzhang end:
19771da177e4SLinus Torvalds 	skb->tail     += delta;
19781da177e4SLinus Torvalds 	skb->data_len -= delta;
19791da177e4SLinus Torvalds 
19801f8b977aSWillem de Bruijn 	if (!skb->data_len)
19811f8b977aSWillem de Bruijn 		skb_zcopy_clear(skb, false);
19821f8b977aSWillem de Bruijn 
198327a884dcSArnaldo Carvalho de Melo 	return skb_tail_pointer(skb);
19841da177e4SLinus Torvalds }
1985b4ac530fSDavid S. Miller EXPORT_SYMBOL(__pskb_pull_tail);
19861da177e4SLinus Torvalds 
198722019b17SEric Dumazet /**
198822019b17SEric Dumazet  *	skb_copy_bits - copy bits from skb to kernel buffer
198922019b17SEric Dumazet  *	@skb: source skb
199022019b17SEric Dumazet  *	@offset: offset in source
199122019b17SEric Dumazet  *	@to: destination buffer
199222019b17SEric Dumazet  *	@len: number of bytes to copy
199322019b17SEric Dumazet  *
199422019b17SEric Dumazet  *	Copy the specified number of bytes from the source skb to the
199522019b17SEric Dumazet  *	destination buffer.
199622019b17SEric Dumazet  *
199722019b17SEric Dumazet  *	CAUTION ! :
199822019b17SEric Dumazet  *		If its prototype is ever changed,
199922019b17SEric Dumazet  *		check arch/{*}/net/{*}.S files,
200022019b17SEric Dumazet  *		since it is called from BPF assembly code.
200122019b17SEric Dumazet  */
20021da177e4SLinus Torvalds int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
20031da177e4SLinus Torvalds {
20041a028e50SDavid S. Miller 	int start = skb_headlen(skb);
2005fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
2006fbb398a8SDavid S. Miller 	int i, copy;
20071da177e4SLinus Torvalds 
20081da177e4SLinus Torvalds 	if (offset > (int)skb->len - len)
20091da177e4SLinus Torvalds 		goto fault;
20101da177e4SLinus Torvalds 
20111da177e4SLinus Torvalds 	/* Copy header. */
20121a028e50SDavid S. Miller 	if ((copy = start - offset) > 0) {
20131da177e4SLinus Torvalds 		if (copy > len)
20141da177e4SLinus Torvalds 			copy = len;
2015d626f62bSArnaldo Carvalho de Melo 		skb_copy_from_linear_data_offset(skb, offset, to, copy);
20161da177e4SLinus Torvalds 		if ((len -= copy) == 0)
20171da177e4SLinus Torvalds 			return 0;
20181da177e4SLinus Torvalds 		offset += copy;
20191da177e4SLinus Torvalds 		to     += copy;
20201da177e4SLinus Torvalds 	}
20211da177e4SLinus Torvalds 
20221da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
20231a028e50SDavid S. Miller 		int end;
202451c56b00SEric Dumazet 		skb_frag_t *f = &skb_shinfo(skb)->frags[i];
20251da177e4SLinus Torvalds 
2026547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
20271a028e50SDavid S. Miller 
202851c56b00SEric Dumazet 		end = start + skb_frag_size(f);
20291da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
2030c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2031c613c209SWillem de Bruijn 			struct page *p;
20321da177e4SLinus Torvalds 			u8 *vaddr;
20331da177e4SLinus Torvalds 
20341da177e4SLinus Torvalds 			if (copy > len)
20351da177e4SLinus Torvalds 				copy = len;
20361da177e4SLinus Torvalds 
2037c613c209SWillem de Bruijn 			skb_frag_foreach_page(f,
2038c613c209SWillem de Bruijn 					      f->page_offset + offset - start,
2039c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2040c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2041c613c209SWillem de Bruijn 				memcpy(to + copied, vaddr + p_off, p_len);
204251c56b00SEric Dumazet 				kunmap_atomic(vaddr);
2043c613c209SWillem de Bruijn 			}
20441da177e4SLinus Torvalds 
20451da177e4SLinus Torvalds 			if ((len -= copy) == 0)
20461da177e4SLinus Torvalds 				return 0;
20471da177e4SLinus Torvalds 			offset += copy;
20481da177e4SLinus Torvalds 			to     += copy;
20491da177e4SLinus Torvalds 		}
20501a028e50SDavid S. Miller 		start = end;
20511da177e4SLinus Torvalds 	}
20521da177e4SLinus Torvalds 
2053fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
20541a028e50SDavid S. Miller 		int end;
20551da177e4SLinus Torvalds 
2056547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
20571a028e50SDavid S. Miller 
2058fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
20591da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
20601da177e4SLinus Torvalds 			if (copy > len)
20611da177e4SLinus Torvalds 				copy = len;
2062fbb398a8SDavid S. Miller 			if (skb_copy_bits(frag_iter, offset - start, to, copy))
20631da177e4SLinus Torvalds 				goto fault;
20641da177e4SLinus Torvalds 			if ((len -= copy) == 0)
20651da177e4SLinus Torvalds 				return 0;
20661da177e4SLinus Torvalds 			offset += copy;
20671da177e4SLinus Torvalds 			to     += copy;
20681da177e4SLinus Torvalds 		}
20691a028e50SDavid S. Miller 		start = end;
20701da177e4SLinus Torvalds 	}
2071a6686f2fSShirley Ma 
20721da177e4SLinus Torvalds 	if (!len)
20731da177e4SLinus Torvalds 		return 0;
20741da177e4SLinus Torvalds 
20751da177e4SLinus Torvalds fault:
20761da177e4SLinus Torvalds 	return -EFAULT;
20771da177e4SLinus Torvalds }
2078b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_bits);
20791da177e4SLinus Torvalds 
20809c55e01cSJens Axboe /*
20819c55e01cSJens Axboe  * Callback from splice_to_pipe(), if we need to release some pages
20829c55e01cSJens Axboe  * at the end of the spd in case we error'ed out in filling the pipe.
20839c55e01cSJens Axboe  */
20849c55e01cSJens Axboe static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
20859c55e01cSJens Axboe {
20868b9d3728SJarek Poplawski 	put_page(spd->pages[i]);
20878b9d3728SJarek Poplawski }
20889c55e01cSJens Axboe 
2089a108d5f3SDavid S. Miller static struct page *linear_to_page(struct page *page, unsigned int *len,
20904fb66994SJarek Poplawski 				   unsigned int *offset,
209118aafc62SEric Dumazet 				   struct sock *sk)
20928b9d3728SJarek Poplawski {
20935640f768SEric Dumazet 	struct page_frag *pfrag = sk_page_frag(sk);
20948b9d3728SJarek Poplawski 
20955640f768SEric Dumazet 	if (!sk_page_frag_refill(sk, pfrag))
20968b9d3728SJarek Poplawski 		return NULL;
20974fb66994SJarek Poplawski 
20985640f768SEric Dumazet 	*len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
20994fb66994SJarek Poplawski 
21005640f768SEric Dumazet 	memcpy(page_address(pfrag->page) + pfrag->offset,
21015640f768SEric Dumazet 	       page_address(page) + *offset, *len);
21025640f768SEric Dumazet 	*offset = pfrag->offset;
21035640f768SEric Dumazet 	pfrag->offset += *len;
21044fb66994SJarek Poplawski 
21055640f768SEric Dumazet 	return pfrag->page;
21069c55e01cSJens Axboe }
21079c55e01cSJens Axboe 
210841c73a0dSEric Dumazet static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
210941c73a0dSEric Dumazet 			     struct page *page,
211041c73a0dSEric Dumazet 			     unsigned int offset)
211141c73a0dSEric Dumazet {
211241c73a0dSEric Dumazet 	return	spd->nr_pages &&
211341c73a0dSEric Dumazet 		spd->pages[spd->nr_pages - 1] == page &&
211441c73a0dSEric Dumazet 		(spd->partial[spd->nr_pages - 1].offset +
211541c73a0dSEric Dumazet 		 spd->partial[spd->nr_pages - 1].len == offset);
211641c73a0dSEric Dumazet }
211741c73a0dSEric Dumazet 
21189c55e01cSJens Axboe /*
21199c55e01cSJens Axboe  * Fill page/offset/length into spd, if it can hold more pages.
21209c55e01cSJens Axboe  */
2121a108d5f3SDavid S. Miller static bool spd_fill_page(struct splice_pipe_desc *spd,
212235f3d14dSJens Axboe 			  struct pipe_inode_info *pipe, struct page *page,
21234fb66994SJarek Poplawski 			  unsigned int *len, unsigned int offset,
212418aafc62SEric Dumazet 			  bool linear,
21257a67e56fSJarek Poplawski 			  struct sock *sk)
21269c55e01cSJens Axboe {
212741c73a0dSEric Dumazet 	if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
2128a108d5f3SDavid S. Miller 		return true;
21299c55e01cSJens Axboe 
21308b9d3728SJarek Poplawski 	if (linear) {
213118aafc62SEric Dumazet 		page = linear_to_page(page, len, &offset, sk);
21328b9d3728SJarek Poplawski 		if (!page)
2133a108d5f3SDavid S. Miller 			return true;
213441c73a0dSEric Dumazet 	}
213541c73a0dSEric Dumazet 	if (spd_can_coalesce(spd, page, offset)) {
213641c73a0dSEric Dumazet 		spd->partial[spd->nr_pages - 1].len += *len;
2137a108d5f3SDavid S. Miller 		return false;
213841c73a0dSEric Dumazet 	}
21398b9d3728SJarek Poplawski 	get_page(page);
21409c55e01cSJens Axboe 	spd->pages[spd->nr_pages] = page;
21414fb66994SJarek Poplawski 	spd->partial[spd->nr_pages].len = *len;
21429c55e01cSJens Axboe 	spd->partial[spd->nr_pages].offset = offset;
21439c55e01cSJens Axboe 	spd->nr_pages++;
21448b9d3728SJarek Poplawski 
2145a108d5f3SDavid S. Miller 	return false;
21469c55e01cSJens Axboe }
21479c55e01cSJens Axboe 
2148a108d5f3SDavid S. Miller static bool __splice_segment(struct page *page, unsigned int poff,
21492870c43dSOctavian Purdila 			     unsigned int plen, unsigned int *off,
215018aafc62SEric Dumazet 			     unsigned int *len,
2151d7ccf7c0SEric Dumazet 			     struct splice_pipe_desc *spd, bool linear,
215235f3d14dSJens Axboe 			     struct sock *sk,
215335f3d14dSJens Axboe 			     struct pipe_inode_info *pipe)
21549c55e01cSJens Axboe {
21552870c43dSOctavian Purdila 	if (!*len)
2156a108d5f3SDavid S. Miller 		return true;
21579c55e01cSJens Axboe 
21582870c43dSOctavian Purdila 	/* skip this segment if already processed */
21592870c43dSOctavian Purdila 	if (*off >= plen) {
21602870c43dSOctavian Purdila 		*off -= plen;
2161a108d5f3SDavid S. Miller 		return false;
21622870c43dSOctavian Purdila 	}
21632870c43dSOctavian Purdila 
21642870c43dSOctavian Purdila 	/* ignore any bits we already processed */
21659ca1b22dSEric Dumazet 	poff += *off;
21669ca1b22dSEric Dumazet 	plen -= *off;
21672870c43dSOctavian Purdila 	*off = 0;
21682870c43dSOctavian Purdila 
216918aafc62SEric Dumazet 	do {
217018aafc62SEric Dumazet 		unsigned int flen = min(*len, plen);
21712870c43dSOctavian Purdila 
217218aafc62SEric Dumazet 		if (spd_fill_page(spd, pipe, page, &flen, poff,
217318aafc62SEric Dumazet 				  linear, sk))
2174a108d5f3SDavid S. Miller 			return true;
217518aafc62SEric Dumazet 		poff += flen;
217618aafc62SEric Dumazet 		plen -= flen;
21772870c43dSOctavian Purdila 		*len -= flen;
217818aafc62SEric Dumazet 	} while (*len && plen);
21792870c43dSOctavian Purdila 
2180a108d5f3SDavid S. Miller 	return false;
2181db43a282SOctavian Purdila }
21829c55e01cSJens Axboe 
21839c55e01cSJens Axboe /*
2184a108d5f3SDavid S. Miller  * Map linear and fragment data from the skb to spd. It reports true if the
21852870c43dSOctavian Purdila  * pipe is full or if we already spliced the requested length.
21869c55e01cSJens Axboe  */
2187a108d5f3SDavid S. Miller static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
218835f3d14dSJens Axboe 			      unsigned int *offset, unsigned int *len,
218935f3d14dSJens Axboe 			      struct splice_pipe_desc *spd, struct sock *sk)
21902870c43dSOctavian Purdila {
21912870c43dSOctavian Purdila 	int seg;
2192fa9835e5STom Herbert 	struct sk_buff *iter;
21939c55e01cSJens Axboe 
21941d0c0b32SEric Dumazet 	/* map the linear part :
21952996d31fSAlexander Duyck 	 * If skb->head_frag is set, this 'linear' part is backed by a
21962996d31fSAlexander Duyck 	 * fragment, and if the head is not shared with any clones then
21972996d31fSAlexander Duyck 	 * we can avoid a copy since we own the head portion of this page.
21989c55e01cSJens Axboe 	 */
21992870c43dSOctavian Purdila 	if (__splice_segment(virt_to_page(skb->data),
22002870c43dSOctavian Purdila 			     (unsigned long) skb->data & (PAGE_SIZE - 1),
22012870c43dSOctavian Purdila 			     skb_headlen(skb),
220218aafc62SEric Dumazet 			     offset, len, spd,
22033a7c1ee4SAlexander Duyck 			     skb_head_is_locked(skb),
22041d0c0b32SEric Dumazet 			     sk, pipe))
2205a108d5f3SDavid S. Miller 		return true;
22069c55e01cSJens Axboe 
22079c55e01cSJens Axboe 	/*
22089c55e01cSJens Axboe 	 * then map the fragments
22099c55e01cSJens Axboe 	 */
22109c55e01cSJens Axboe 	for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
22119c55e01cSJens Axboe 		const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
22129c55e01cSJens Axboe 
2213ea2ab693SIan Campbell 		if (__splice_segment(skb_frag_page(f),
22149e903e08SEric Dumazet 				     f->page_offset, skb_frag_size(f),
221518aafc62SEric Dumazet 				     offset, len, spd, false, sk, pipe))
2216a108d5f3SDavid S. Miller 			return true;
22179c55e01cSJens Axboe 	}
22189c55e01cSJens Axboe 
2219fa9835e5STom Herbert 	skb_walk_frags(skb, iter) {
2220fa9835e5STom Herbert 		if (*offset >= iter->len) {
2221fa9835e5STom Herbert 			*offset -= iter->len;
2222fa9835e5STom Herbert 			continue;
2223fa9835e5STom Herbert 		}
2224fa9835e5STom Herbert 		/* __skb_splice_bits() only fails if the output has no room
2225fa9835e5STom Herbert 		 * left, so no point in going over the frag_list for the error
2226fa9835e5STom Herbert 		 * case.
2227fa9835e5STom Herbert 		 */
2228fa9835e5STom Herbert 		if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
2229fa9835e5STom Herbert 			return true;
2230fa9835e5STom Herbert 	}
2231fa9835e5STom Herbert 
2232a108d5f3SDavid S. Miller 	return false;
22339c55e01cSJens Axboe }
22349c55e01cSJens Axboe 
22359c55e01cSJens Axboe /*
22369c55e01cSJens Axboe  * Map data from the skb to a pipe. Should handle both the linear part,
2237fa9835e5STom Herbert  * the fragments, and the frag list.
22389c55e01cSJens Axboe  */
2239a60e3cc7SHannes Frederic Sowa int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
22409c55e01cSJens Axboe 		    struct pipe_inode_info *pipe, unsigned int tlen,
224125869262SAl Viro 		    unsigned int flags)
22429c55e01cSJens Axboe {
224341c73a0dSEric Dumazet 	struct partial_page partial[MAX_SKB_FRAGS];
224441c73a0dSEric Dumazet 	struct page *pages[MAX_SKB_FRAGS];
22459c55e01cSJens Axboe 	struct splice_pipe_desc spd = {
22469c55e01cSJens Axboe 		.pages = pages,
22479c55e01cSJens Axboe 		.partial = partial,
2248047fe360SEric Dumazet 		.nr_pages_max = MAX_SKB_FRAGS,
224928a625cbSMiklos Szeredi 		.ops = &nosteal_pipe_buf_ops,
22509c55e01cSJens Axboe 		.spd_release = sock_spd_release,
22519c55e01cSJens Axboe 	};
225235f3d14dSJens Axboe 	int ret = 0;
225335f3d14dSJens Axboe 
2254fa9835e5STom Herbert 	__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
22559c55e01cSJens Axboe 
2256a60e3cc7SHannes Frederic Sowa 	if (spd.nr_pages)
225725869262SAl Viro 		ret = splice_to_pipe(pipe, &spd);
22589c55e01cSJens Axboe 
225935f3d14dSJens Axboe 	return ret;
22609c55e01cSJens Axboe }
22612b514574SHannes Frederic Sowa EXPORT_SYMBOL_GPL(skb_splice_bits);
22629c55e01cSJens Axboe 
226320bf50deSTom Herbert /* Send skb data on a socket. Socket must be locked. */
226420bf50deSTom Herbert int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
226520bf50deSTom Herbert 			 int len)
226620bf50deSTom Herbert {
226720bf50deSTom Herbert 	unsigned int orig_len = len;
226820bf50deSTom Herbert 	struct sk_buff *head = skb;
226920bf50deSTom Herbert 	unsigned short fragidx;
227020bf50deSTom Herbert 	int slen, ret;
227120bf50deSTom Herbert 
227220bf50deSTom Herbert do_frag_list:
227320bf50deSTom Herbert 
227420bf50deSTom Herbert 	/* Deal with head data */
227520bf50deSTom Herbert 	while (offset < skb_headlen(skb) && len) {
227620bf50deSTom Herbert 		struct kvec kv;
227720bf50deSTom Herbert 		struct msghdr msg;
227820bf50deSTom Herbert 
227920bf50deSTom Herbert 		slen = min_t(int, len, skb_headlen(skb) - offset);
228020bf50deSTom Herbert 		kv.iov_base = skb->data + offset;
2281db5980d8SJohn Fastabend 		kv.iov_len = slen;
228220bf50deSTom Herbert 		memset(&msg, 0, sizeof(msg));
228320bf50deSTom Herbert 
228420bf50deSTom Herbert 		ret = kernel_sendmsg_locked(sk, &msg, &kv, 1, slen);
228520bf50deSTom Herbert 		if (ret <= 0)
228620bf50deSTom Herbert 			goto error;
228720bf50deSTom Herbert 
228820bf50deSTom Herbert 		offset += ret;
228920bf50deSTom Herbert 		len -= ret;
229020bf50deSTom Herbert 	}
229120bf50deSTom Herbert 
229220bf50deSTom Herbert 	/* All the data was skb head? */
229320bf50deSTom Herbert 	if (!len)
229420bf50deSTom Herbert 		goto out;
229520bf50deSTom Herbert 
229620bf50deSTom Herbert 	/* Make offset relative to start of frags */
229720bf50deSTom Herbert 	offset -= skb_headlen(skb);
229820bf50deSTom Herbert 
229920bf50deSTom Herbert 	/* Find where we are in frag list */
230020bf50deSTom Herbert 	for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
230120bf50deSTom Herbert 		skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
230220bf50deSTom Herbert 
230320bf50deSTom Herbert 		if (offset < frag->size)
230420bf50deSTom Herbert 			break;
230520bf50deSTom Herbert 
230620bf50deSTom Herbert 		offset -= frag->size;
230720bf50deSTom Herbert 	}
230820bf50deSTom Herbert 
230920bf50deSTom Herbert 	for (; len && fragidx < skb_shinfo(skb)->nr_frags; fragidx++) {
231020bf50deSTom Herbert 		skb_frag_t *frag  = &skb_shinfo(skb)->frags[fragidx];
231120bf50deSTom Herbert 
231220bf50deSTom Herbert 		slen = min_t(size_t, len, frag->size - offset);
231320bf50deSTom Herbert 
231420bf50deSTom Herbert 		while (slen) {
231520bf50deSTom Herbert 			ret = kernel_sendpage_locked(sk, frag->page.p,
231620bf50deSTom Herbert 						     frag->page_offset + offset,
231720bf50deSTom Herbert 						     slen, MSG_DONTWAIT);
231820bf50deSTom Herbert 			if (ret <= 0)
231920bf50deSTom Herbert 				goto error;
232020bf50deSTom Herbert 
232120bf50deSTom Herbert 			len -= ret;
232220bf50deSTom Herbert 			offset += ret;
232320bf50deSTom Herbert 			slen -= ret;
232420bf50deSTom Herbert 		}
232520bf50deSTom Herbert 
232620bf50deSTom Herbert 		offset = 0;
232720bf50deSTom Herbert 	}
232820bf50deSTom Herbert 
232920bf50deSTom Herbert 	if (len) {
233020bf50deSTom Herbert 		/* Process any frag lists */
233120bf50deSTom Herbert 
233220bf50deSTom Herbert 		if (skb == head) {
233320bf50deSTom Herbert 			if (skb_has_frag_list(skb)) {
233420bf50deSTom Herbert 				skb = skb_shinfo(skb)->frag_list;
233520bf50deSTom Herbert 				goto do_frag_list;
233620bf50deSTom Herbert 			}
233720bf50deSTom Herbert 		} else if (skb->next) {
233820bf50deSTom Herbert 			skb = skb->next;
233920bf50deSTom Herbert 			goto do_frag_list;
234020bf50deSTom Herbert 		}
234120bf50deSTom Herbert 	}
234220bf50deSTom Herbert 
234320bf50deSTom Herbert out:
234420bf50deSTom Herbert 	return orig_len - len;
234520bf50deSTom Herbert 
234620bf50deSTom Herbert error:
234720bf50deSTom Herbert 	return orig_len == len ? ret : orig_len - len;
234820bf50deSTom Herbert }
234920bf50deSTom Herbert EXPORT_SYMBOL_GPL(skb_send_sock_locked);
235020bf50deSTom Herbert 
235120bf50deSTom Herbert /* Send skb data on a socket. */
235220bf50deSTom Herbert int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len)
235320bf50deSTom Herbert {
235420bf50deSTom Herbert 	int ret = 0;
235520bf50deSTom Herbert 
235620bf50deSTom Herbert 	lock_sock(sk);
235720bf50deSTom Herbert 	ret = skb_send_sock_locked(sk, skb, offset, len);
235820bf50deSTom Herbert 	release_sock(sk);
235920bf50deSTom Herbert 
236020bf50deSTom Herbert 	return ret;
236120bf50deSTom Herbert }
236220bf50deSTom Herbert EXPORT_SYMBOL_GPL(skb_send_sock);
236320bf50deSTom Herbert 
2364357b40a1SHerbert Xu /**
2365357b40a1SHerbert Xu  *	skb_store_bits - store bits from kernel buffer to skb
2366357b40a1SHerbert Xu  *	@skb: destination buffer
2367357b40a1SHerbert Xu  *	@offset: offset in destination
2368357b40a1SHerbert Xu  *	@from: source buffer
2369357b40a1SHerbert Xu  *	@len: number of bytes to copy
2370357b40a1SHerbert Xu  *
2371357b40a1SHerbert Xu  *	Copy the specified number of bytes from the source buffer to the
2372357b40a1SHerbert Xu  *	destination skb.  This function handles all the messy bits of
2373357b40a1SHerbert Xu  *	traversing fragment lists and such.
2374357b40a1SHerbert Xu  */
2375357b40a1SHerbert Xu 
23760c6fcc8aSStephen Hemminger int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
2377357b40a1SHerbert Xu {
23781a028e50SDavid S. Miller 	int start = skb_headlen(skb);
2379fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
2380fbb398a8SDavid S. Miller 	int i, copy;
2381357b40a1SHerbert Xu 
2382357b40a1SHerbert Xu 	if (offset > (int)skb->len - len)
2383357b40a1SHerbert Xu 		goto fault;
2384357b40a1SHerbert Xu 
23851a028e50SDavid S. Miller 	if ((copy = start - offset) > 0) {
2386357b40a1SHerbert Xu 		if (copy > len)
2387357b40a1SHerbert Xu 			copy = len;
238827d7ff46SArnaldo Carvalho de Melo 		skb_copy_to_linear_data_offset(skb, offset, from, copy);
2389357b40a1SHerbert Xu 		if ((len -= copy) == 0)
2390357b40a1SHerbert Xu 			return 0;
2391357b40a1SHerbert Xu 		offset += copy;
2392357b40a1SHerbert Xu 		from += copy;
2393357b40a1SHerbert Xu 	}
2394357b40a1SHerbert Xu 
2395357b40a1SHerbert Xu 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2396357b40a1SHerbert Xu 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
23971a028e50SDavid S. Miller 		int end;
2398357b40a1SHerbert Xu 
2399547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
24001a028e50SDavid S. Miller 
24019e903e08SEric Dumazet 		end = start + skb_frag_size(frag);
2402357b40a1SHerbert Xu 		if ((copy = end - offset) > 0) {
2403c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2404c613c209SWillem de Bruijn 			struct page *p;
2405357b40a1SHerbert Xu 			u8 *vaddr;
2406357b40a1SHerbert Xu 
2407357b40a1SHerbert Xu 			if (copy > len)
2408357b40a1SHerbert Xu 				copy = len;
2409357b40a1SHerbert Xu 
2410c613c209SWillem de Bruijn 			skb_frag_foreach_page(frag,
2411c613c209SWillem de Bruijn 					      frag->page_offset + offset - start,
2412c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2413c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2414c613c209SWillem de Bruijn 				memcpy(vaddr + p_off, from + copied, p_len);
241551c56b00SEric Dumazet 				kunmap_atomic(vaddr);
2416c613c209SWillem de Bruijn 			}
2417357b40a1SHerbert Xu 
2418357b40a1SHerbert Xu 			if ((len -= copy) == 0)
2419357b40a1SHerbert Xu 				return 0;
2420357b40a1SHerbert Xu 			offset += copy;
2421357b40a1SHerbert Xu 			from += copy;
2422357b40a1SHerbert Xu 		}
24231a028e50SDavid S. Miller 		start = end;
2424357b40a1SHerbert Xu 	}
2425357b40a1SHerbert Xu 
2426fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
24271a028e50SDavid S. Miller 		int end;
2428357b40a1SHerbert Xu 
2429547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
24301a028e50SDavid S. Miller 
2431fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
2432357b40a1SHerbert Xu 		if ((copy = end - offset) > 0) {
2433357b40a1SHerbert Xu 			if (copy > len)
2434357b40a1SHerbert Xu 				copy = len;
2435fbb398a8SDavid S. Miller 			if (skb_store_bits(frag_iter, offset - start,
24361a028e50SDavid S. Miller 					   from, copy))
2437357b40a1SHerbert Xu 				goto fault;
2438357b40a1SHerbert Xu 			if ((len -= copy) == 0)
2439357b40a1SHerbert Xu 				return 0;
2440357b40a1SHerbert Xu 			offset += copy;
2441357b40a1SHerbert Xu 			from += copy;
2442357b40a1SHerbert Xu 		}
24431a028e50SDavid S. Miller 		start = end;
2444357b40a1SHerbert Xu 	}
2445357b40a1SHerbert Xu 	if (!len)
2446357b40a1SHerbert Xu 		return 0;
2447357b40a1SHerbert Xu 
2448357b40a1SHerbert Xu fault:
2449357b40a1SHerbert Xu 	return -EFAULT;
2450357b40a1SHerbert Xu }
2451357b40a1SHerbert Xu EXPORT_SYMBOL(skb_store_bits);
2452357b40a1SHerbert Xu 
24531da177e4SLinus Torvalds /* Checksum skb data. */
24542817a336SDaniel Borkmann __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
24552817a336SDaniel Borkmann 		      __wsum csum, const struct skb_checksum_ops *ops)
24561da177e4SLinus Torvalds {
24571a028e50SDavid S. Miller 	int start = skb_headlen(skb);
24581a028e50SDavid S. Miller 	int i, copy = start - offset;
2459fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
24601da177e4SLinus Torvalds 	int pos = 0;
24611da177e4SLinus Torvalds 
24621da177e4SLinus Torvalds 	/* Checksum header. */
24631da177e4SLinus Torvalds 	if (copy > 0) {
24641da177e4SLinus Torvalds 		if (copy > len)
24651da177e4SLinus Torvalds 			copy = len;
24662817a336SDaniel Borkmann 		csum = ops->update(skb->data + offset, copy, csum);
24671da177e4SLinus Torvalds 		if ((len -= copy) == 0)
24681da177e4SLinus Torvalds 			return csum;
24691da177e4SLinus Torvalds 		offset += copy;
24701da177e4SLinus Torvalds 		pos	= copy;
24711da177e4SLinus Torvalds 	}
24721da177e4SLinus Torvalds 
24731da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
24741a028e50SDavid S. Miller 		int end;
247551c56b00SEric Dumazet 		skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
24761da177e4SLinus Torvalds 
2477547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
24781a028e50SDavid S. Miller 
247951c56b00SEric Dumazet 		end = start + skb_frag_size(frag);
24801da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
2481c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2482c613c209SWillem de Bruijn 			struct page *p;
248344bb9363SAl Viro 			__wsum csum2;
24841da177e4SLinus Torvalds 			u8 *vaddr;
24851da177e4SLinus Torvalds 
24861da177e4SLinus Torvalds 			if (copy > len)
24871da177e4SLinus Torvalds 				copy = len;
2488c613c209SWillem de Bruijn 
2489c613c209SWillem de Bruijn 			skb_frag_foreach_page(frag,
2490c613c209SWillem de Bruijn 					      frag->page_offset + offset - start,
2491c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2492c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2493c613c209SWillem de Bruijn 				csum2 = ops->update(vaddr + p_off, p_len, 0);
249451c56b00SEric Dumazet 				kunmap_atomic(vaddr);
2495c613c209SWillem de Bruijn 				csum = ops->combine(csum, csum2, pos, p_len);
2496c613c209SWillem de Bruijn 				pos += p_len;
2497c613c209SWillem de Bruijn 			}
2498c613c209SWillem de Bruijn 
24991da177e4SLinus Torvalds 			if (!(len -= copy))
25001da177e4SLinus Torvalds 				return csum;
25011da177e4SLinus Torvalds 			offset += copy;
25021da177e4SLinus Torvalds 		}
25031a028e50SDavid S. Miller 		start = end;
25041da177e4SLinus Torvalds 	}
25051da177e4SLinus Torvalds 
2506fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
25071a028e50SDavid S. Miller 		int end;
25081da177e4SLinus Torvalds 
2509547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
25101a028e50SDavid S. Miller 
2511fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
25121da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
25135f92a738SAl Viro 			__wsum csum2;
25141da177e4SLinus Torvalds 			if (copy > len)
25151da177e4SLinus Torvalds 				copy = len;
25162817a336SDaniel Borkmann 			csum2 = __skb_checksum(frag_iter, offset - start,
25172817a336SDaniel Borkmann 					       copy, 0, ops);
25182817a336SDaniel Borkmann 			csum = ops->combine(csum, csum2, pos, copy);
25191da177e4SLinus Torvalds 			if ((len -= copy) == 0)
25201da177e4SLinus Torvalds 				return csum;
25211da177e4SLinus Torvalds 			offset += copy;
25221da177e4SLinus Torvalds 			pos    += copy;
25231da177e4SLinus Torvalds 		}
25241a028e50SDavid S. Miller 		start = end;
25251da177e4SLinus Torvalds 	}
252609a62660SKris Katterjohn 	BUG_ON(len);
25271da177e4SLinus Torvalds 
25281da177e4SLinus Torvalds 	return csum;
25291da177e4SLinus Torvalds }
25302817a336SDaniel Borkmann EXPORT_SYMBOL(__skb_checksum);
25312817a336SDaniel Borkmann 
25322817a336SDaniel Borkmann __wsum skb_checksum(const struct sk_buff *skb, int offset,
25332817a336SDaniel Borkmann 		    int len, __wsum csum)
25342817a336SDaniel Borkmann {
25352817a336SDaniel Borkmann 	const struct skb_checksum_ops ops = {
2536cea80ea8SDaniel Borkmann 		.update  = csum_partial_ext,
25372817a336SDaniel Borkmann 		.combine = csum_block_add_ext,
25382817a336SDaniel Borkmann 	};
25392817a336SDaniel Borkmann 
25402817a336SDaniel Borkmann 	return __skb_checksum(skb, offset, len, csum, &ops);
25412817a336SDaniel Borkmann }
2542b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_checksum);
25431da177e4SLinus Torvalds 
25441da177e4SLinus Torvalds /* Both of above in one bottle. */
25451da177e4SLinus Torvalds 
254681d77662SAl Viro __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
254781d77662SAl Viro 				    u8 *to, int len, __wsum csum)
25481da177e4SLinus Torvalds {
25491a028e50SDavid S. Miller 	int start = skb_headlen(skb);
25501a028e50SDavid S. Miller 	int i, copy = start - offset;
2551fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
25521da177e4SLinus Torvalds 	int pos = 0;
25531da177e4SLinus Torvalds 
25541da177e4SLinus Torvalds 	/* Copy header. */
25551da177e4SLinus Torvalds 	if (copy > 0) {
25561da177e4SLinus Torvalds 		if (copy > len)
25571da177e4SLinus Torvalds 			copy = len;
25581da177e4SLinus Torvalds 		csum = csum_partial_copy_nocheck(skb->data + offset, to,
25591da177e4SLinus Torvalds 						 copy, csum);
25601da177e4SLinus Torvalds 		if ((len -= copy) == 0)
25611da177e4SLinus Torvalds 			return csum;
25621da177e4SLinus Torvalds 		offset += copy;
25631da177e4SLinus Torvalds 		to     += copy;
25641da177e4SLinus Torvalds 		pos	= copy;
25651da177e4SLinus Torvalds 	}
25661da177e4SLinus Torvalds 
25671da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
25681a028e50SDavid S. Miller 		int end;
25691da177e4SLinus Torvalds 
2570547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
25711a028e50SDavid S. Miller 
25729e903e08SEric Dumazet 		end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
25731da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
2574c613c209SWillem de Bruijn 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2575c613c209SWillem de Bruijn 			u32 p_off, p_len, copied;
2576c613c209SWillem de Bruijn 			struct page *p;
25775084205fSAl Viro 			__wsum csum2;
25781da177e4SLinus Torvalds 			u8 *vaddr;
25791da177e4SLinus Torvalds 
25801da177e4SLinus Torvalds 			if (copy > len)
25811da177e4SLinus Torvalds 				copy = len;
2582c613c209SWillem de Bruijn 
2583c613c209SWillem de Bruijn 			skb_frag_foreach_page(frag,
2584c613c209SWillem de Bruijn 					      frag->page_offset + offset - start,
2585c613c209SWillem de Bruijn 					      copy, p, p_off, p_len, copied) {
2586c613c209SWillem de Bruijn 				vaddr = kmap_atomic(p);
2587c613c209SWillem de Bruijn 				csum2 = csum_partial_copy_nocheck(vaddr + p_off,
2588c613c209SWillem de Bruijn 								  to + copied,
2589c613c209SWillem de Bruijn 								  p_len, 0);
259051c56b00SEric Dumazet 				kunmap_atomic(vaddr);
25911da177e4SLinus Torvalds 				csum = csum_block_add(csum, csum2, pos);
2592c613c209SWillem de Bruijn 				pos += p_len;
2593c613c209SWillem de Bruijn 			}
2594c613c209SWillem de Bruijn 
25951da177e4SLinus Torvalds 			if (!(len -= copy))
25961da177e4SLinus Torvalds 				return csum;
25971da177e4SLinus Torvalds 			offset += copy;
25981da177e4SLinus Torvalds 			to     += copy;
25991da177e4SLinus Torvalds 		}
26001a028e50SDavid S. Miller 		start = end;
26011da177e4SLinus Torvalds 	}
26021da177e4SLinus Torvalds 
2603fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
260481d77662SAl Viro 		__wsum csum2;
26051a028e50SDavid S. Miller 		int end;
26061da177e4SLinus Torvalds 
2607547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
26081a028e50SDavid S. Miller 
2609fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
26101da177e4SLinus Torvalds 		if ((copy = end - offset) > 0) {
26111da177e4SLinus Torvalds 			if (copy > len)
26121da177e4SLinus Torvalds 				copy = len;
2613fbb398a8SDavid S. Miller 			csum2 = skb_copy_and_csum_bits(frag_iter,
26141a028e50SDavid S. Miller 						       offset - start,
26151da177e4SLinus Torvalds 						       to, copy, 0);
26161da177e4SLinus Torvalds 			csum = csum_block_add(csum, csum2, pos);
26171da177e4SLinus Torvalds 			if ((len -= copy) == 0)
26181da177e4SLinus Torvalds 				return csum;
26191da177e4SLinus Torvalds 			offset += copy;
26201da177e4SLinus Torvalds 			to     += copy;
26211da177e4SLinus Torvalds 			pos    += copy;
26221da177e4SLinus Torvalds 		}
26231a028e50SDavid S. Miller 		start = end;
26241da177e4SLinus Torvalds 	}
262509a62660SKris Katterjohn 	BUG_ON(len);
26261da177e4SLinus Torvalds 	return csum;
26271da177e4SLinus Torvalds }
2628b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_and_csum_bits);
26291da177e4SLinus Torvalds 
26309617813dSDavide Caratti static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum)
26319617813dSDavide Caratti {
26329617813dSDavide Caratti 	net_warn_ratelimited(
26339617813dSDavide Caratti 		"%s: attempt to compute crc32c without libcrc32c.ko\n",
26349617813dSDavide Caratti 		__func__);
26359617813dSDavide Caratti 	return 0;
26369617813dSDavide Caratti }
26379617813dSDavide Caratti 
26389617813dSDavide Caratti static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2,
26399617813dSDavide Caratti 				       int offset, int len)
26409617813dSDavide Caratti {
26419617813dSDavide Caratti 	net_warn_ratelimited(
26429617813dSDavide Caratti 		"%s: attempt to compute crc32c without libcrc32c.ko\n",
26439617813dSDavide Caratti 		__func__);
26449617813dSDavide Caratti 	return 0;
26459617813dSDavide Caratti }
26469617813dSDavide Caratti 
26479617813dSDavide Caratti static const struct skb_checksum_ops default_crc32c_ops = {
26489617813dSDavide Caratti 	.update  = warn_crc32c_csum_update,
26499617813dSDavide Caratti 	.combine = warn_crc32c_csum_combine,
26509617813dSDavide Caratti };
26519617813dSDavide Caratti 
26529617813dSDavide Caratti const struct skb_checksum_ops *crc32c_csum_stub __read_mostly =
26539617813dSDavide Caratti 	&default_crc32c_ops;
26549617813dSDavide Caratti EXPORT_SYMBOL(crc32c_csum_stub);
26559617813dSDavide Caratti 
2656af2806f8SThomas Graf  /**
2657af2806f8SThomas Graf  *	skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2658af2806f8SThomas Graf  *	@from: source buffer
2659af2806f8SThomas Graf  *
2660af2806f8SThomas Graf  *	Calculates the amount of linear headroom needed in the 'to' skb passed
2661af2806f8SThomas Graf  *	into skb_zerocopy().
2662af2806f8SThomas Graf  */
2663af2806f8SThomas Graf unsigned int
2664af2806f8SThomas Graf skb_zerocopy_headlen(const struct sk_buff *from)
2665af2806f8SThomas Graf {
2666af2806f8SThomas Graf 	unsigned int hlen = 0;
2667af2806f8SThomas Graf 
2668af2806f8SThomas Graf 	if (!from->head_frag ||
2669af2806f8SThomas Graf 	    skb_headlen(from) < L1_CACHE_BYTES ||
2670af2806f8SThomas Graf 	    skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2671af2806f8SThomas Graf 		hlen = skb_headlen(from);
2672af2806f8SThomas Graf 
2673af2806f8SThomas Graf 	if (skb_has_frag_list(from))
2674af2806f8SThomas Graf 		hlen = from->len;
2675af2806f8SThomas Graf 
2676af2806f8SThomas Graf 	return hlen;
2677af2806f8SThomas Graf }
2678af2806f8SThomas Graf EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2679af2806f8SThomas Graf 
2680af2806f8SThomas Graf /**
2681af2806f8SThomas Graf  *	skb_zerocopy - Zero copy skb to skb
2682af2806f8SThomas Graf  *	@to: destination buffer
26837fceb4deSMasanari Iida  *	@from: source buffer
2684af2806f8SThomas Graf  *	@len: number of bytes to copy from source buffer
2685af2806f8SThomas Graf  *	@hlen: size of linear headroom in destination buffer
2686af2806f8SThomas Graf  *
2687af2806f8SThomas Graf  *	Copies up to `len` bytes from `from` to `to` by creating references
2688af2806f8SThomas Graf  *	to the frags in the source buffer.
2689af2806f8SThomas Graf  *
2690af2806f8SThomas Graf  *	The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2691af2806f8SThomas Graf  *	headroom in the `to` buffer.
269236d5fe6aSZoltan Kiss  *
269336d5fe6aSZoltan Kiss  *	Return value:
269436d5fe6aSZoltan Kiss  *	0: everything is OK
269536d5fe6aSZoltan Kiss  *	-ENOMEM: couldn't orphan frags of @from due to lack of memory
269636d5fe6aSZoltan Kiss  *	-EFAULT: skb_copy_bits() found some problem with skb geometry
2697af2806f8SThomas Graf  */
269836d5fe6aSZoltan Kiss int
269936d5fe6aSZoltan Kiss skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
2700af2806f8SThomas Graf {
2701af2806f8SThomas Graf 	int i, j = 0;
2702af2806f8SThomas Graf 	int plen = 0; /* length of skb->head fragment */
270336d5fe6aSZoltan Kiss 	int ret;
2704af2806f8SThomas Graf 	struct page *page;
2705af2806f8SThomas Graf 	unsigned int offset;
2706af2806f8SThomas Graf 
2707af2806f8SThomas Graf 	BUG_ON(!from->head_frag && !hlen);
2708af2806f8SThomas Graf 
2709af2806f8SThomas Graf 	/* dont bother with small payloads */
271036d5fe6aSZoltan Kiss 	if (len <= skb_tailroom(to))
271136d5fe6aSZoltan Kiss 		return skb_copy_bits(from, 0, skb_put(to, len), len);
2712af2806f8SThomas Graf 
2713af2806f8SThomas Graf 	if (hlen) {
271436d5fe6aSZoltan Kiss 		ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
271536d5fe6aSZoltan Kiss 		if (unlikely(ret))
271636d5fe6aSZoltan Kiss 			return ret;
2717af2806f8SThomas Graf 		len -= hlen;
2718af2806f8SThomas Graf 	} else {
2719af2806f8SThomas Graf 		plen = min_t(int, skb_headlen(from), len);
2720af2806f8SThomas Graf 		if (plen) {
2721af2806f8SThomas Graf 			page = virt_to_head_page(from->head);
2722af2806f8SThomas Graf 			offset = from->data - (unsigned char *)page_address(page);
2723af2806f8SThomas Graf 			__skb_fill_page_desc(to, 0, page, offset, plen);
2724af2806f8SThomas Graf 			get_page(page);
2725af2806f8SThomas Graf 			j = 1;
2726af2806f8SThomas Graf 			len -= plen;
2727af2806f8SThomas Graf 		}
2728af2806f8SThomas Graf 	}
2729af2806f8SThomas Graf 
2730af2806f8SThomas Graf 	to->truesize += len + plen;
2731af2806f8SThomas Graf 	to->len += len + plen;
2732af2806f8SThomas Graf 	to->data_len += len + plen;
2733af2806f8SThomas Graf 
273436d5fe6aSZoltan Kiss 	if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
273536d5fe6aSZoltan Kiss 		skb_tx_error(from);
273636d5fe6aSZoltan Kiss 		return -ENOMEM;
273736d5fe6aSZoltan Kiss 	}
27381f8b977aSWillem de Bruijn 	skb_zerocopy_clone(to, from, GFP_ATOMIC);
273936d5fe6aSZoltan Kiss 
2740af2806f8SThomas Graf 	for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2741af2806f8SThomas Graf 		if (!len)
2742af2806f8SThomas Graf 			break;
2743af2806f8SThomas Graf 		skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2744af2806f8SThomas Graf 		skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2745af2806f8SThomas Graf 		len -= skb_shinfo(to)->frags[j].size;
2746af2806f8SThomas Graf 		skb_frag_ref(to, j);
2747af2806f8SThomas Graf 		j++;
2748af2806f8SThomas Graf 	}
2749af2806f8SThomas Graf 	skb_shinfo(to)->nr_frags = j;
275036d5fe6aSZoltan Kiss 
275136d5fe6aSZoltan Kiss 	return 0;
2752af2806f8SThomas Graf }
2753af2806f8SThomas Graf EXPORT_SYMBOL_GPL(skb_zerocopy);
2754af2806f8SThomas Graf 
27551da177e4SLinus Torvalds void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
27561da177e4SLinus Torvalds {
2757d3bc23e7SAl Viro 	__wsum csum;
27581da177e4SLinus Torvalds 	long csstart;
27591da177e4SLinus Torvalds 
276084fa7933SPatrick McHardy 	if (skb->ip_summed == CHECKSUM_PARTIAL)
276155508d60SMichał Mirosław 		csstart = skb_checksum_start_offset(skb);
27621da177e4SLinus Torvalds 	else
27631da177e4SLinus Torvalds 		csstart = skb_headlen(skb);
27641da177e4SLinus Torvalds 
276509a62660SKris Katterjohn 	BUG_ON(csstart > skb_headlen(skb));
27661da177e4SLinus Torvalds 
2767d626f62bSArnaldo Carvalho de Melo 	skb_copy_from_linear_data(skb, to, csstart);
27681da177e4SLinus Torvalds 
27691da177e4SLinus Torvalds 	csum = 0;
27701da177e4SLinus Torvalds 	if (csstart != skb->len)
27711da177e4SLinus Torvalds 		csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
27721da177e4SLinus Torvalds 					      skb->len - csstart, 0);
27731da177e4SLinus Torvalds 
277484fa7933SPatrick McHardy 	if (skb->ip_summed == CHECKSUM_PARTIAL) {
2775ff1dcadbSAl Viro 		long csstuff = csstart + skb->csum_offset;
27761da177e4SLinus Torvalds 
2777d3bc23e7SAl Viro 		*((__sum16 *)(to + csstuff)) = csum_fold(csum);
27781da177e4SLinus Torvalds 	}
27791da177e4SLinus Torvalds }
2780b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_copy_and_csum_dev);
27811da177e4SLinus Torvalds 
27821da177e4SLinus Torvalds /**
27831da177e4SLinus Torvalds  *	skb_dequeue - remove from the head of the queue
27841da177e4SLinus Torvalds  *	@list: list to dequeue from
27851da177e4SLinus Torvalds  *
27861da177e4SLinus Torvalds  *	Remove the head of the list. The list lock is taken so the function
27871da177e4SLinus Torvalds  *	may be used safely with other locking list functions. The head item is
27881da177e4SLinus Torvalds  *	returned or %NULL if the list is empty.
27891da177e4SLinus Torvalds  */
27901da177e4SLinus Torvalds 
27911da177e4SLinus Torvalds struct sk_buff *skb_dequeue(struct sk_buff_head *list)
27921da177e4SLinus Torvalds {
27931da177e4SLinus Torvalds 	unsigned long flags;
27941da177e4SLinus Torvalds 	struct sk_buff *result;
27951da177e4SLinus Torvalds 
27961da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
27971da177e4SLinus Torvalds 	result = __skb_dequeue(list);
27981da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
27991da177e4SLinus Torvalds 	return result;
28001da177e4SLinus Torvalds }
2801b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_dequeue);
28021da177e4SLinus Torvalds 
28031da177e4SLinus Torvalds /**
28041da177e4SLinus Torvalds  *	skb_dequeue_tail - remove from the tail of the queue
28051da177e4SLinus Torvalds  *	@list: list to dequeue from
28061da177e4SLinus Torvalds  *
28071da177e4SLinus Torvalds  *	Remove the tail of the list. The list lock is taken so the function
28081da177e4SLinus Torvalds  *	may be used safely with other locking list functions. The tail item is
28091da177e4SLinus Torvalds  *	returned or %NULL if the list is empty.
28101da177e4SLinus Torvalds  */
28111da177e4SLinus Torvalds struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
28121da177e4SLinus Torvalds {
28131da177e4SLinus Torvalds 	unsigned long flags;
28141da177e4SLinus Torvalds 	struct sk_buff *result;
28151da177e4SLinus Torvalds 
28161da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
28171da177e4SLinus Torvalds 	result = __skb_dequeue_tail(list);
28181da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
28191da177e4SLinus Torvalds 	return result;
28201da177e4SLinus Torvalds }
2821b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_dequeue_tail);
28221da177e4SLinus Torvalds 
28231da177e4SLinus Torvalds /**
28241da177e4SLinus Torvalds  *	skb_queue_purge - empty a list
28251da177e4SLinus Torvalds  *	@list: list to empty
28261da177e4SLinus Torvalds  *
28271da177e4SLinus Torvalds  *	Delete all buffers on an &sk_buff list. Each buffer is removed from
28281da177e4SLinus Torvalds  *	the list and one reference dropped. This function takes the list
28291da177e4SLinus Torvalds  *	lock and is atomic with respect to other list locking functions.
28301da177e4SLinus Torvalds  */
28311da177e4SLinus Torvalds void skb_queue_purge(struct sk_buff_head *list)
28321da177e4SLinus Torvalds {
28331da177e4SLinus Torvalds 	struct sk_buff *skb;
28341da177e4SLinus Torvalds 	while ((skb = skb_dequeue(list)) != NULL)
28351da177e4SLinus Torvalds 		kfree_skb(skb);
28361da177e4SLinus Torvalds }
2837b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_queue_purge);
28381da177e4SLinus Torvalds 
28391da177e4SLinus Torvalds /**
28409f5afeaeSYaogong Wang  *	skb_rbtree_purge - empty a skb rbtree
28419f5afeaeSYaogong Wang  *	@root: root of the rbtree to empty
28429f5afeaeSYaogong Wang  *
28439f5afeaeSYaogong Wang  *	Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
28449f5afeaeSYaogong Wang  *	the list and one reference dropped. This function does not take
28459f5afeaeSYaogong Wang  *	any lock. Synchronization should be handled by the caller (e.g., TCP
28469f5afeaeSYaogong Wang  *	out-of-order queue is protected by the socket lock).
28479f5afeaeSYaogong Wang  */
28489f5afeaeSYaogong Wang void skb_rbtree_purge(struct rb_root *root)
28499f5afeaeSYaogong Wang {
28507c90584cSEric Dumazet 	struct rb_node *p = rb_first(root);
28519f5afeaeSYaogong Wang 
28527c90584cSEric Dumazet 	while (p) {
28537c90584cSEric Dumazet 		struct sk_buff *skb = rb_entry(p, struct sk_buff, rbnode);
28547c90584cSEric Dumazet 
28557c90584cSEric Dumazet 		p = rb_next(p);
28567c90584cSEric Dumazet 		rb_erase(&skb->rbnode, root);
28579f5afeaeSYaogong Wang 		kfree_skb(skb);
28587c90584cSEric Dumazet 	}
28599f5afeaeSYaogong Wang }
28609f5afeaeSYaogong Wang 
28619f5afeaeSYaogong Wang /**
28621da177e4SLinus Torvalds  *	skb_queue_head - queue a buffer at the list head
28631da177e4SLinus Torvalds  *	@list: list to use
28641da177e4SLinus Torvalds  *	@newsk: buffer to queue
28651da177e4SLinus Torvalds  *
28661da177e4SLinus Torvalds  *	Queue a buffer at the start of the list. This function takes the
28671da177e4SLinus Torvalds  *	list lock and can be used safely with other locking &sk_buff functions
28681da177e4SLinus Torvalds  *	safely.
28691da177e4SLinus Torvalds  *
28701da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
28711da177e4SLinus Torvalds  */
28721da177e4SLinus Torvalds void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
28731da177e4SLinus Torvalds {
28741da177e4SLinus Torvalds 	unsigned long flags;
28751da177e4SLinus Torvalds 
28761da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
28771da177e4SLinus Torvalds 	__skb_queue_head(list, newsk);
28781da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
28791da177e4SLinus Torvalds }
2880b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_queue_head);
28811da177e4SLinus Torvalds 
28821da177e4SLinus Torvalds /**
28831da177e4SLinus Torvalds  *	skb_queue_tail - queue a buffer at the list tail
28841da177e4SLinus Torvalds  *	@list: list to use
28851da177e4SLinus Torvalds  *	@newsk: buffer to queue
28861da177e4SLinus Torvalds  *
28871da177e4SLinus Torvalds  *	Queue a buffer at the tail of the list. This function takes the
28881da177e4SLinus Torvalds  *	list lock and can be used safely with other locking &sk_buff functions
28891da177e4SLinus Torvalds  *	safely.
28901da177e4SLinus Torvalds  *
28911da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
28921da177e4SLinus Torvalds  */
28931da177e4SLinus Torvalds void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
28941da177e4SLinus Torvalds {
28951da177e4SLinus Torvalds 	unsigned long flags;
28961da177e4SLinus Torvalds 
28971da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
28981da177e4SLinus Torvalds 	__skb_queue_tail(list, newsk);
28991da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
29001da177e4SLinus Torvalds }
2901b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_queue_tail);
29028728b834SDavid S. Miller 
29031da177e4SLinus Torvalds /**
29041da177e4SLinus Torvalds  *	skb_unlink	-	remove a buffer from a list
29051da177e4SLinus Torvalds  *	@skb: buffer to remove
29068728b834SDavid S. Miller  *	@list: list to use
29071da177e4SLinus Torvalds  *
29088728b834SDavid S. Miller  *	Remove a packet from a list. The list locks are taken and this
29098728b834SDavid S. Miller  *	function is atomic with respect to other list locked calls
29101da177e4SLinus Torvalds  *
29118728b834SDavid S. Miller  *	You must know what list the SKB is on.
29121da177e4SLinus Torvalds  */
29138728b834SDavid S. Miller void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
29141da177e4SLinus Torvalds {
29151da177e4SLinus Torvalds 	unsigned long flags;
29161da177e4SLinus Torvalds 
29171da177e4SLinus Torvalds 	spin_lock_irqsave(&list->lock, flags);
29188728b834SDavid S. Miller 	__skb_unlink(skb, list);
29191da177e4SLinus Torvalds 	spin_unlock_irqrestore(&list->lock, flags);
29201da177e4SLinus Torvalds }
2921b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_unlink);
29221da177e4SLinus Torvalds 
29231da177e4SLinus Torvalds /**
29241da177e4SLinus Torvalds  *	skb_append	-	append a buffer
29251da177e4SLinus Torvalds  *	@old: buffer to insert after
29261da177e4SLinus Torvalds  *	@newsk: buffer to insert
29278728b834SDavid S. Miller  *	@list: list to use
29281da177e4SLinus Torvalds  *
29291da177e4SLinus Torvalds  *	Place a packet after a given packet in a list. The list locks are taken
29301da177e4SLinus Torvalds  *	and this function is atomic with respect to other list locked calls.
29311da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
29321da177e4SLinus Torvalds  */
29338728b834SDavid S. Miller void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
29341da177e4SLinus Torvalds {
29351da177e4SLinus Torvalds 	unsigned long flags;
29361da177e4SLinus Torvalds 
29378728b834SDavid S. Miller 	spin_lock_irqsave(&list->lock, flags);
29387de6c033SGerrit Renker 	__skb_queue_after(list, old, newsk);
29398728b834SDavid S. Miller 	spin_unlock_irqrestore(&list->lock, flags);
29401da177e4SLinus Torvalds }
2941b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_append);
29421da177e4SLinus Torvalds 
29431da177e4SLinus Torvalds /**
29441da177e4SLinus Torvalds  *	skb_insert	-	insert a buffer
29451da177e4SLinus Torvalds  *	@old: buffer to insert before
29461da177e4SLinus Torvalds  *	@newsk: buffer to insert
29478728b834SDavid S. Miller  *	@list: list to use
29481da177e4SLinus Torvalds  *
29498728b834SDavid S. Miller  *	Place a packet before a given packet in a list. The list locks are
29508728b834SDavid S. Miller  * 	taken and this function is atomic with respect to other list locked
29518728b834SDavid S. Miller  *	calls.
29528728b834SDavid S. Miller  *
29531da177e4SLinus Torvalds  *	A buffer cannot be placed on two lists at the same time.
29541da177e4SLinus Torvalds  */
29558728b834SDavid S. Miller void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
29561da177e4SLinus Torvalds {
29571da177e4SLinus Torvalds 	unsigned long flags;
29581da177e4SLinus Torvalds 
29598728b834SDavid S. Miller 	spin_lock_irqsave(&list->lock, flags);
29608728b834SDavid S. Miller 	__skb_insert(newsk, old->prev, old, list);
29618728b834SDavid S. Miller 	spin_unlock_irqrestore(&list->lock, flags);
29621da177e4SLinus Torvalds }
2963b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_insert);
29641da177e4SLinus Torvalds 
29651da177e4SLinus Torvalds static inline void skb_split_inside_header(struct sk_buff *skb,
29661da177e4SLinus Torvalds 					   struct sk_buff* skb1,
29671da177e4SLinus Torvalds 					   const u32 len, const int pos)
29681da177e4SLinus Torvalds {
29691da177e4SLinus Torvalds 	int i;
29701da177e4SLinus Torvalds 
2971d626f62bSArnaldo Carvalho de Melo 	skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2972d626f62bSArnaldo Carvalho de Melo 					 pos - len);
29731da177e4SLinus Torvalds 	/* And move data appendix as is. */
29741da177e4SLinus Torvalds 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
29751da177e4SLinus Torvalds 		skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
29761da177e4SLinus Torvalds 
29771da177e4SLinus Torvalds 	skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
29781da177e4SLinus Torvalds 	skb_shinfo(skb)->nr_frags  = 0;
29791da177e4SLinus Torvalds 	skb1->data_len		   = skb->data_len;
29801da177e4SLinus Torvalds 	skb1->len		   += skb1->data_len;
29811da177e4SLinus Torvalds 	skb->data_len		   = 0;
29821da177e4SLinus Torvalds 	skb->len		   = len;
298327a884dcSArnaldo Carvalho de Melo 	skb_set_tail_pointer(skb, len);
29841da177e4SLinus Torvalds }
29851da177e4SLinus Torvalds 
29861da177e4SLinus Torvalds static inline void skb_split_no_header(struct sk_buff *skb,
29871da177e4SLinus Torvalds 				       struct sk_buff* skb1,
29881da177e4SLinus Torvalds 				       const u32 len, int pos)
29891da177e4SLinus Torvalds {
29901da177e4SLinus Torvalds 	int i, k = 0;
29911da177e4SLinus Torvalds 	const int nfrags = skb_shinfo(skb)->nr_frags;
29921da177e4SLinus Torvalds 
29931da177e4SLinus Torvalds 	skb_shinfo(skb)->nr_frags = 0;
29941da177e4SLinus Torvalds 	skb1->len		  = skb1->data_len = skb->len - len;
29951da177e4SLinus Torvalds 	skb->len		  = len;
29961da177e4SLinus Torvalds 	skb->data_len		  = len - pos;
29971da177e4SLinus Torvalds 
29981da177e4SLinus Torvalds 	for (i = 0; i < nfrags; i++) {
29999e903e08SEric Dumazet 		int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
30001da177e4SLinus Torvalds 
30011da177e4SLinus Torvalds 		if (pos + size > len) {
30021da177e4SLinus Torvalds 			skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
30031da177e4SLinus Torvalds 
30041da177e4SLinus Torvalds 			if (pos < len) {
30051da177e4SLinus Torvalds 				/* Split frag.
30061da177e4SLinus Torvalds 				 * We have two variants in this case:
30071da177e4SLinus Torvalds 				 * 1. Move all the frag to the second
30081da177e4SLinus Torvalds 				 *    part, if it is possible. F.e.
30091da177e4SLinus Torvalds 				 *    this approach is mandatory for TUX,
30101da177e4SLinus Torvalds 				 *    where splitting is expensive.
30111da177e4SLinus Torvalds 				 * 2. Split is accurately. We make this.
30121da177e4SLinus Torvalds 				 */
3013ea2ab693SIan Campbell 				skb_frag_ref(skb, i);
30141da177e4SLinus Torvalds 				skb_shinfo(skb1)->frags[0].page_offset += len - pos;
30159e903e08SEric Dumazet 				skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
30169e903e08SEric Dumazet 				skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
30171da177e4SLinus Torvalds 				skb_shinfo(skb)->nr_frags++;
30181da177e4SLinus Torvalds 			}
30191da177e4SLinus Torvalds 			k++;
30201da177e4SLinus Torvalds 		} else
30211da177e4SLinus Torvalds 			skb_shinfo(skb)->nr_frags++;
30221da177e4SLinus Torvalds 		pos += size;
30231da177e4SLinus Torvalds 	}
30241da177e4SLinus Torvalds 	skb_shinfo(skb1)->nr_frags = k;
30251da177e4SLinus Torvalds }
30261da177e4SLinus Torvalds 
30271da177e4SLinus Torvalds /**
30281da177e4SLinus Torvalds  * skb_split - Split fragmented skb to two parts at length len.
30291da177e4SLinus Torvalds  * @skb: the buffer to split
30301da177e4SLinus Torvalds  * @skb1: the buffer to receive the second part
30311da177e4SLinus Torvalds  * @len: new length for skb
30321da177e4SLinus Torvalds  */
30331da177e4SLinus Torvalds void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
30341da177e4SLinus Torvalds {
30351da177e4SLinus Torvalds 	int pos = skb_headlen(skb);
30361da177e4SLinus Torvalds 
3037fff88030SWillem de Bruijn 	skb_shinfo(skb1)->tx_flags |= skb_shinfo(skb)->tx_flags &
3038fff88030SWillem de Bruijn 				      SKBTX_SHARED_FRAG;
30391f8b977aSWillem de Bruijn 	skb_zerocopy_clone(skb1, skb, 0);
30401da177e4SLinus Torvalds 	if (len < pos)	/* Split line is inside header. */
30411da177e4SLinus Torvalds 		skb_split_inside_header(skb, skb1, len, pos);
30421da177e4SLinus Torvalds 	else		/* Second chunk has no header, nothing to copy. */
30431da177e4SLinus Torvalds 		skb_split_no_header(skb, skb1, len, pos);
30441da177e4SLinus Torvalds }
3045b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_split);
30461da177e4SLinus Torvalds 
30479f782db3SIlpo Järvinen /* Shifting from/to a cloned skb is a no-go.
30489f782db3SIlpo Järvinen  *
30499f782db3SIlpo Järvinen  * Caller cannot keep skb_shinfo related pointers past calling here!
30509f782db3SIlpo Järvinen  */
3051832d11c5SIlpo Järvinen static int skb_prepare_for_shift(struct sk_buff *skb)
3052832d11c5SIlpo Järvinen {
30530ace2856SIlpo Järvinen 	return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3054832d11c5SIlpo Järvinen }
3055832d11c5SIlpo Järvinen 
3056832d11c5SIlpo Järvinen /**
3057832d11c5SIlpo Järvinen  * skb_shift - Shifts paged data partially from skb to another
3058832d11c5SIlpo Järvinen  * @tgt: buffer into which tail data gets added
3059832d11c5SIlpo Järvinen  * @skb: buffer from which the paged data comes from
3060832d11c5SIlpo Järvinen  * @shiftlen: shift up to this many bytes
3061832d11c5SIlpo Järvinen  *
3062832d11c5SIlpo Järvinen  * Attempts to shift up to shiftlen worth of bytes, which may be less than
306320e994a0SFeng King  * the length of the skb, from skb to tgt. Returns number bytes shifted.
3064832d11c5SIlpo Järvinen  * It's up to caller to free skb if everything was shifted.
3065832d11c5SIlpo Järvinen  *
3066832d11c5SIlpo Järvinen  * If @tgt runs out of frags, the whole operation is aborted.
3067832d11c5SIlpo Järvinen  *
3068832d11c5SIlpo Järvinen  * Skb cannot include anything else but paged data while tgt is allowed
3069832d11c5SIlpo Järvinen  * to have non-paged data as well.
3070832d11c5SIlpo Järvinen  *
3071832d11c5SIlpo Järvinen  * TODO: full sized shift could be optimized but that would need
3072832d11c5SIlpo Järvinen  * specialized skb free'er to handle frags without up-to-date nr_frags.
3073832d11c5SIlpo Järvinen  */
3074832d11c5SIlpo Järvinen int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
3075832d11c5SIlpo Järvinen {
3076832d11c5SIlpo Järvinen 	int from, to, merge, todo;
3077832d11c5SIlpo Järvinen 	struct skb_frag_struct *fragfrom, *fragto;
3078832d11c5SIlpo Järvinen 
3079832d11c5SIlpo Järvinen 	BUG_ON(shiftlen > skb->len);
3080f8071cdeSEric Dumazet 
3081f8071cdeSEric Dumazet 	if (skb_headlen(skb))
3082f8071cdeSEric Dumazet 		return 0;
30831f8b977aSWillem de Bruijn 	if (skb_zcopy(tgt) || skb_zcopy(skb))
30841f8b977aSWillem de Bruijn 		return 0;
3085832d11c5SIlpo Järvinen 
3086832d11c5SIlpo Järvinen 	todo = shiftlen;
3087832d11c5SIlpo Järvinen 	from = 0;
3088832d11c5SIlpo Järvinen 	to = skb_shinfo(tgt)->nr_frags;
3089832d11c5SIlpo Järvinen 	fragfrom = &skb_shinfo(skb)->frags[from];
3090832d11c5SIlpo Järvinen 
3091832d11c5SIlpo Järvinen 	/* Actual merge is delayed until the point when we know we can
3092832d11c5SIlpo Järvinen 	 * commit all, so that we don't have to undo partial changes
3093832d11c5SIlpo Järvinen 	 */
3094832d11c5SIlpo Järvinen 	if (!to ||
3095ea2ab693SIan Campbell 	    !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
3096ea2ab693SIan Campbell 			      fragfrom->page_offset)) {
3097832d11c5SIlpo Järvinen 		merge = -1;
3098832d11c5SIlpo Järvinen 	} else {
3099832d11c5SIlpo Järvinen 		merge = to - 1;
3100832d11c5SIlpo Järvinen 
31019e903e08SEric Dumazet 		todo -= skb_frag_size(fragfrom);
3102832d11c5SIlpo Järvinen 		if (todo < 0) {
3103832d11c5SIlpo Järvinen 			if (skb_prepare_for_shift(skb) ||
3104832d11c5SIlpo Järvinen 			    skb_prepare_for_shift(tgt))
3105832d11c5SIlpo Järvinen 				return 0;
3106832d11c5SIlpo Järvinen 
31079f782db3SIlpo Järvinen 			/* All previous frag pointers might be stale! */
31089f782db3SIlpo Järvinen 			fragfrom = &skb_shinfo(skb)->frags[from];
3109832d11c5SIlpo Järvinen 			fragto = &skb_shinfo(tgt)->frags[merge];
3110832d11c5SIlpo Järvinen 
31119e903e08SEric Dumazet 			skb_frag_size_add(fragto, shiftlen);
31129e903e08SEric Dumazet 			skb_frag_size_sub(fragfrom, shiftlen);
3113832d11c5SIlpo Järvinen 			fragfrom->page_offset += shiftlen;
3114832d11c5SIlpo Järvinen 
3115832d11c5SIlpo Järvinen 			goto onlymerged;
3116832d11c5SIlpo Järvinen 		}
3117832d11c5SIlpo Järvinen 
3118832d11c5SIlpo Järvinen 		from++;
3119832d11c5SIlpo Järvinen 	}
3120832d11c5SIlpo Järvinen 
3121832d11c5SIlpo Järvinen 	/* Skip full, not-fitting skb to avoid expensive operations */
3122832d11c5SIlpo Järvinen 	if ((shiftlen == skb->len) &&
3123832d11c5SIlpo Järvinen 	    (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
3124832d11c5SIlpo Järvinen 		return 0;
3125832d11c5SIlpo Järvinen 
3126832d11c5SIlpo Järvinen 	if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
3127832d11c5SIlpo Järvinen 		return 0;
3128832d11c5SIlpo Järvinen 
3129832d11c5SIlpo Järvinen 	while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
3130832d11c5SIlpo Järvinen 		if (to == MAX_SKB_FRAGS)
3131832d11c5SIlpo Järvinen 			return 0;
3132832d11c5SIlpo Järvinen 
3133832d11c5SIlpo Järvinen 		fragfrom = &skb_shinfo(skb)->frags[from];
3134832d11c5SIlpo Järvinen 		fragto = &skb_shinfo(tgt)->frags[to];
3135832d11c5SIlpo Järvinen 
31369e903e08SEric Dumazet 		if (todo >= skb_frag_size(fragfrom)) {
3137832d11c5SIlpo Järvinen 			*fragto = *fragfrom;
31389e903e08SEric Dumazet 			todo -= skb_frag_size(fragfrom);
3139832d11c5SIlpo Järvinen 			from++;
3140832d11c5SIlpo Järvinen 			to++;
3141832d11c5SIlpo Järvinen 
3142832d11c5SIlpo Järvinen 		} else {
3143ea2ab693SIan Campbell 			__skb_frag_ref(fragfrom);
3144832d11c5SIlpo Järvinen 			fragto->page = fragfrom->page;
3145832d11c5SIlpo Järvinen 			fragto->page_offset = fragfrom->page_offset;
31469e903e08SEric Dumazet 			skb_frag_size_set(fragto, todo);
3147832d11c5SIlpo Järvinen 
3148832d11c5SIlpo Järvinen 			fragfrom->page_offset += todo;
31499e903e08SEric Dumazet 			skb_frag_size_sub(fragfrom, todo);
3150832d11c5SIlpo Järvinen 			todo = 0;
3151832d11c5SIlpo Järvinen 
3152832d11c5SIlpo Järvinen 			to++;
3153832d11c5SIlpo Järvinen 			break;
3154832d11c5SIlpo Järvinen 		}
3155832d11c5SIlpo Järvinen 	}
3156832d11c5SIlpo Järvinen 
3157832d11c5SIlpo Järvinen 	/* Ready to "commit" this state change to tgt */
3158832d11c5SIlpo Järvinen 	skb_shinfo(tgt)->nr_frags = to;
3159832d11c5SIlpo Järvinen 
3160832d11c5SIlpo Järvinen 	if (merge >= 0) {
3161832d11c5SIlpo Järvinen 		fragfrom = &skb_shinfo(skb)->frags[0];
3162832d11c5SIlpo Järvinen 		fragto = &skb_shinfo(tgt)->frags[merge];
3163832d11c5SIlpo Järvinen 
31649e903e08SEric Dumazet 		skb_frag_size_add(fragto, skb_frag_size(fragfrom));
3165ea2ab693SIan Campbell 		__skb_frag_unref(fragfrom);
3166832d11c5SIlpo Järvinen 	}
3167832d11c5SIlpo Järvinen 
3168832d11c5SIlpo Järvinen 	/* Reposition in the original skb */
3169832d11c5SIlpo Järvinen 	to = 0;
3170832d11c5SIlpo Järvinen 	while (from < skb_shinfo(skb)->nr_frags)
3171832d11c5SIlpo Järvinen 		skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
3172832d11c5SIlpo Järvinen 	skb_shinfo(skb)->nr_frags = to;
3173832d11c5SIlpo Järvinen 
3174832d11c5SIlpo Järvinen 	BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
3175832d11c5SIlpo Järvinen 
3176832d11c5SIlpo Järvinen onlymerged:
3177832d11c5SIlpo Järvinen 	/* Most likely the tgt won't ever need its checksum anymore, skb on
3178832d11c5SIlpo Järvinen 	 * the other hand might need it if it needs to be resent
3179832d11c5SIlpo Järvinen 	 */
3180832d11c5SIlpo Järvinen 	tgt->ip_summed = CHECKSUM_PARTIAL;
3181832d11c5SIlpo Järvinen 	skb->ip_summed = CHECKSUM_PARTIAL;
3182832d11c5SIlpo Järvinen 
3183832d11c5SIlpo Järvinen 	/* Yak, is it really working this way? Some helper please? */
3184832d11c5SIlpo Järvinen 	skb->len -= shiftlen;
3185832d11c5SIlpo Järvinen 	skb->data_len -= shiftlen;
3186832d11c5SIlpo Järvinen 	skb->truesize -= shiftlen;
3187832d11c5SIlpo Järvinen 	tgt->len += shiftlen;
3188832d11c5SIlpo Järvinen 	tgt->data_len += shiftlen;
3189832d11c5SIlpo Järvinen 	tgt->truesize += shiftlen;
3190832d11c5SIlpo Järvinen 
3191832d11c5SIlpo Järvinen 	return shiftlen;
3192832d11c5SIlpo Järvinen }
3193832d11c5SIlpo Järvinen 
3194677e90edSThomas Graf /**
3195677e90edSThomas Graf  * skb_prepare_seq_read - Prepare a sequential read of skb data
3196677e90edSThomas Graf  * @skb: the buffer to read
3197677e90edSThomas Graf  * @from: lower offset of data to be read
3198677e90edSThomas Graf  * @to: upper offset of data to be read
3199677e90edSThomas Graf  * @st: state variable
3200677e90edSThomas Graf  *
3201677e90edSThomas Graf  * Initializes the specified state variable. Must be called before
3202677e90edSThomas Graf  * invoking skb_seq_read() for the first time.
3203677e90edSThomas Graf  */
3204677e90edSThomas Graf void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
3205677e90edSThomas Graf 			  unsigned int to, struct skb_seq_state *st)
3206677e90edSThomas Graf {
3207677e90edSThomas Graf 	st->lower_offset = from;
3208677e90edSThomas Graf 	st->upper_offset = to;
3209677e90edSThomas Graf 	st->root_skb = st->cur_skb = skb;
3210677e90edSThomas Graf 	st->frag_idx = st->stepped_offset = 0;
3211677e90edSThomas Graf 	st->frag_data = NULL;
3212677e90edSThomas Graf }
3213b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_prepare_seq_read);
3214677e90edSThomas Graf 
3215677e90edSThomas Graf /**
3216677e90edSThomas Graf  * skb_seq_read - Sequentially read skb data
3217677e90edSThomas Graf  * @consumed: number of bytes consumed by the caller so far
3218677e90edSThomas Graf  * @data: destination pointer for data to be returned
3219677e90edSThomas Graf  * @st: state variable
3220677e90edSThomas Graf  *
3221bc32383cSMathias Krause  * Reads a block of skb data at @consumed relative to the
3222677e90edSThomas Graf  * lower offset specified to skb_prepare_seq_read(). Assigns
3223bc32383cSMathias Krause  * the head of the data block to @data and returns the length
3224677e90edSThomas Graf  * of the block or 0 if the end of the skb data or the upper
3225677e90edSThomas Graf  * offset has been reached.
3226677e90edSThomas Graf  *
3227677e90edSThomas Graf  * The caller is not required to consume all of the data
3228bc32383cSMathias Krause  * returned, i.e. @consumed is typically set to the number
3229677e90edSThomas Graf  * of bytes already consumed and the next call to
3230677e90edSThomas Graf  * skb_seq_read() will return the remaining part of the block.
3231677e90edSThomas Graf  *
323225985edcSLucas De Marchi  * Note 1: The size of each block of data returned can be arbitrary,
3233e793c0f7SMasanari Iida  *       this limitation is the cost for zerocopy sequential
3234677e90edSThomas Graf  *       reads of potentially non linear data.
3235677e90edSThomas Graf  *
3236bc2cda1eSRandy Dunlap  * Note 2: Fragment lists within fragments are not implemented
3237677e90edSThomas Graf  *       at the moment, state->root_skb could be replaced with
3238677e90edSThomas Graf  *       a stack for this purpose.
3239677e90edSThomas Graf  */
3240677e90edSThomas Graf unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
3241677e90edSThomas Graf 			  struct skb_seq_state *st)
3242677e90edSThomas Graf {
3243677e90edSThomas Graf 	unsigned int block_limit, abs_offset = consumed + st->lower_offset;
3244677e90edSThomas Graf 	skb_frag_t *frag;
3245677e90edSThomas Graf 
3246aeb193eaSWedson Almeida Filho 	if (unlikely(abs_offset >= st->upper_offset)) {
3247aeb193eaSWedson Almeida Filho 		if (st->frag_data) {
3248aeb193eaSWedson Almeida Filho 			kunmap_atomic(st->frag_data);
3249aeb193eaSWedson Almeida Filho 			st->frag_data = NULL;
3250aeb193eaSWedson Almeida Filho 		}
3251677e90edSThomas Graf 		return 0;
3252aeb193eaSWedson Almeida Filho 	}
3253677e90edSThomas Graf 
3254677e90edSThomas Graf next_skb:
325595e3b24cSHerbert Xu 	block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
3256677e90edSThomas Graf 
3257995b3379SThomas Chenault 	if (abs_offset < block_limit && !st->frag_data) {
325895e3b24cSHerbert Xu 		*data = st->cur_skb->data + (abs_offset - st->stepped_offset);
3259677e90edSThomas Graf 		return block_limit - abs_offset;
3260677e90edSThomas Graf 	}
3261677e90edSThomas Graf 
3262677e90edSThomas Graf 	if (st->frag_idx == 0 && !st->frag_data)
3263677e90edSThomas Graf 		st->stepped_offset += skb_headlen(st->cur_skb);
3264677e90edSThomas Graf 
3265677e90edSThomas Graf 	while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
3266677e90edSThomas Graf 		frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
32679e903e08SEric Dumazet 		block_limit = skb_frag_size(frag) + st->stepped_offset;
3268677e90edSThomas Graf 
3269677e90edSThomas Graf 		if (abs_offset < block_limit) {
3270677e90edSThomas Graf 			if (!st->frag_data)
327151c56b00SEric Dumazet 				st->frag_data = kmap_atomic(skb_frag_page(frag));
3272677e90edSThomas Graf 
3273677e90edSThomas Graf 			*data = (u8 *) st->frag_data + frag->page_offset +
3274677e90edSThomas Graf 				(abs_offset - st->stepped_offset);
3275677e90edSThomas Graf 
3276677e90edSThomas Graf 			return block_limit - abs_offset;
3277677e90edSThomas Graf 		}
3278677e90edSThomas Graf 
3279677e90edSThomas Graf 		if (st->frag_data) {
328051c56b00SEric Dumazet 			kunmap_atomic(st->frag_data);
3281677e90edSThomas Graf 			st->frag_data = NULL;
3282677e90edSThomas Graf 		}
3283677e90edSThomas Graf 
3284677e90edSThomas Graf 		st->frag_idx++;
32859e903e08SEric Dumazet 		st->stepped_offset += skb_frag_size(frag);
3286677e90edSThomas Graf 	}
3287677e90edSThomas Graf 
32885b5a60daSOlaf Kirch 	if (st->frag_data) {
328951c56b00SEric Dumazet 		kunmap_atomic(st->frag_data);
32905b5a60daSOlaf Kirch 		st->frag_data = NULL;
32915b5a60daSOlaf Kirch 	}
32925b5a60daSOlaf Kirch 
329321dc3301SDavid S. Miller 	if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
3294677e90edSThomas Graf 		st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
329595e3b24cSHerbert Xu 		st->frag_idx = 0;
3296677e90edSThomas Graf 		goto next_skb;
329771b3346dSShyam Iyer 	} else if (st->cur_skb->next) {
329871b3346dSShyam Iyer 		st->cur_skb = st->cur_skb->next;
329971b3346dSShyam Iyer 		st->frag_idx = 0;
3300677e90edSThomas Graf 		goto next_skb;
3301677e90edSThomas Graf 	}
3302677e90edSThomas Graf 
3303677e90edSThomas Graf 	return 0;
3304677e90edSThomas Graf }
3305b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_seq_read);
3306677e90edSThomas Graf 
3307677e90edSThomas Graf /**
3308677e90edSThomas Graf  * skb_abort_seq_read - Abort a sequential read of skb data
3309677e90edSThomas Graf  * @st: state variable
3310677e90edSThomas Graf  *
3311677e90edSThomas Graf  * Must be called if skb_seq_read() was not called until it
3312677e90edSThomas Graf  * returned 0.
3313677e90edSThomas Graf  */
3314677e90edSThomas Graf void skb_abort_seq_read(struct skb_seq_state *st)
3315677e90edSThomas Graf {
3316677e90edSThomas Graf 	if (st->frag_data)
331751c56b00SEric Dumazet 		kunmap_atomic(st->frag_data);
3318677e90edSThomas Graf }
3319b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_abort_seq_read);
3320677e90edSThomas Graf 
33213fc7e8a6SThomas Graf #define TS_SKB_CB(state)	((struct skb_seq_state *) &((state)->cb))
33223fc7e8a6SThomas Graf 
33233fc7e8a6SThomas Graf static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
33243fc7e8a6SThomas Graf 					  struct ts_config *conf,
33253fc7e8a6SThomas Graf 					  struct ts_state *state)
33263fc7e8a6SThomas Graf {
33273fc7e8a6SThomas Graf 	return skb_seq_read(offset, text, TS_SKB_CB(state));
33283fc7e8a6SThomas Graf }
33293fc7e8a6SThomas Graf 
33303fc7e8a6SThomas Graf static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
33313fc7e8a6SThomas Graf {
33323fc7e8a6SThomas Graf 	skb_abort_seq_read(TS_SKB_CB(state));
33333fc7e8a6SThomas Graf }
33343fc7e8a6SThomas Graf 
33353fc7e8a6SThomas Graf /**
33363fc7e8a6SThomas Graf  * skb_find_text - Find a text pattern in skb data
33373fc7e8a6SThomas Graf  * @skb: the buffer to look in
33383fc7e8a6SThomas Graf  * @from: search offset
33393fc7e8a6SThomas Graf  * @to: search limit
33403fc7e8a6SThomas Graf  * @config: textsearch configuration
33413fc7e8a6SThomas Graf  *
33423fc7e8a6SThomas Graf  * Finds a pattern in the skb data according to the specified
33433fc7e8a6SThomas Graf  * textsearch configuration. Use textsearch_next() to retrieve
33443fc7e8a6SThomas Graf  * subsequent occurrences of the pattern. Returns the offset
33453fc7e8a6SThomas Graf  * to the first occurrence or UINT_MAX if no match was found.
33463fc7e8a6SThomas Graf  */
33473fc7e8a6SThomas Graf unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
3348059a2440SBojan Prtvar 			   unsigned int to, struct ts_config *config)
33493fc7e8a6SThomas Graf {
3350059a2440SBojan Prtvar 	struct ts_state state;
3351f72b948dSPhil Oester 	unsigned int ret;
3352f72b948dSPhil Oester 
33533fc7e8a6SThomas Graf 	config->get_next_block = skb_ts_get_next_block;
33543fc7e8a6SThomas Graf 	config->finish = skb_ts_finish;
33553fc7e8a6SThomas Graf 
3356059a2440SBojan Prtvar 	skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
33573fc7e8a6SThomas Graf 
3358059a2440SBojan Prtvar 	ret = textsearch_find(config, &state);
3359f72b948dSPhil Oester 	return (ret <= to - from ? ret : UINT_MAX);
33603fc7e8a6SThomas Graf }
3361b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_find_text);
33623fc7e8a6SThomas Graf 
3363e89e9cf5SAnanda Raju /**
33642c53040fSBen Hutchings  * skb_append_datato_frags - append the user data to a skb
3365e89e9cf5SAnanda Raju  * @sk: sock  structure
3366e793c0f7SMasanari Iida  * @skb: skb structure to be appended with user data.
3367e89e9cf5SAnanda Raju  * @getfrag: call back function to be used for getting the user data
3368e89e9cf5SAnanda Raju  * @from: pointer to user message iov
3369e89e9cf5SAnanda Raju  * @length: length of the iov message
3370e89e9cf5SAnanda Raju  *
3371e89e9cf5SAnanda Raju  * Description: This procedure append the user data in the fragment part
3372e89e9cf5SAnanda Raju  * of the skb if any page alloc fails user this procedure returns  -ENOMEM
3373e89e9cf5SAnanda Raju  */
3374e89e9cf5SAnanda Raju int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
3375dab9630fSMartin Waitz 			int (*getfrag)(void *from, char *to, int offset,
3376e89e9cf5SAnanda Raju 					int len, int odd, struct sk_buff *skb),
3377e89e9cf5SAnanda Raju 			void *from, int length)
3378e89e9cf5SAnanda Raju {
3379b2111724SEric Dumazet 	int frg_cnt = skb_shinfo(skb)->nr_frags;
3380b2111724SEric Dumazet 	int copy;
3381e89e9cf5SAnanda Raju 	int offset = 0;
3382e89e9cf5SAnanda Raju 	int ret;
3383b2111724SEric Dumazet 	struct page_frag *pfrag = &current->task_frag;
3384e89e9cf5SAnanda Raju 
3385e89e9cf5SAnanda Raju 	do {
3386e89e9cf5SAnanda Raju 		/* Return error if we don't have space for new frag */
3387e89e9cf5SAnanda Raju 		if (frg_cnt >= MAX_SKB_FRAGS)
3388b2111724SEric Dumazet 			return -EMSGSIZE;
3389e89e9cf5SAnanda Raju 
3390b2111724SEric Dumazet 		if (!sk_page_frag_refill(sk, pfrag))
3391e89e9cf5SAnanda Raju 			return -ENOMEM;
3392e89e9cf5SAnanda Raju 
3393e89e9cf5SAnanda Raju 		/* copy the user data to page */
3394b2111724SEric Dumazet 		copy = min_t(int, length, pfrag->size - pfrag->offset);
3395e89e9cf5SAnanda Raju 
3396b2111724SEric Dumazet 		ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
3397e89e9cf5SAnanda Raju 			      offset, copy, 0, skb);
3398e89e9cf5SAnanda Raju 		if (ret < 0)
3399e89e9cf5SAnanda Raju 			return -EFAULT;
3400e89e9cf5SAnanda Raju 
3401e89e9cf5SAnanda Raju 		/* copy was successful so update the size parameters */
3402b2111724SEric Dumazet 		skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
3403b2111724SEric Dumazet 				   copy);
3404b2111724SEric Dumazet 		frg_cnt++;
3405b2111724SEric Dumazet 		pfrag->offset += copy;
3406b2111724SEric Dumazet 		get_page(pfrag->page);
3407b2111724SEric Dumazet 
3408b2111724SEric Dumazet 		skb->truesize += copy;
340914afee4bSReshetova, Elena 		refcount_add(copy, &sk->sk_wmem_alloc);
3410e89e9cf5SAnanda Raju 		skb->len += copy;
3411e89e9cf5SAnanda Raju 		skb->data_len += copy;
3412e89e9cf5SAnanda Raju 		offset += copy;
3413e89e9cf5SAnanda Raju 		length -= copy;
3414e89e9cf5SAnanda Raju 
3415e89e9cf5SAnanda Raju 	} while (length > 0);
3416e89e9cf5SAnanda Raju 
3417e89e9cf5SAnanda Raju 	return 0;
3418e89e9cf5SAnanda Raju }
3419b4ac530fSDavid S. Miller EXPORT_SYMBOL(skb_append_datato_frags);
3420e89e9cf5SAnanda Raju 
3421be12a1feSHannes Frederic Sowa int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3422be12a1feSHannes Frederic Sowa 			 int offset, size_t size)
3423be12a1feSHannes Frederic Sowa {
3424be12a1feSHannes Frederic Sowa 	int i = skb_shinfo(skb)->nr_frags;
3425be12a1feSHannes Frederic Sowa 
3426be12a1feSHannes Frederic Sowa 	if (skb_can_coalesce(skb, i, page, offset)) {
3427be12a1feSHannes Frederic Sowa 		skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3428be12a1feSHannes Frederic Sowa 	} else if (i < MAX_SKB_FRAGS) {
3429be12a1feSHannes Frederic Sowa 		get_page(page);
3430be12a1feSHannes Frederic Sowa 		skb_fill_page_desc(skb, i, page, offset, size);
3431be12a1feSHannes Frederic Sowa 	} else {
3432be12a1feSHannes Frederic Sowa 		return -EMSGSIZE;
3433be12a1feSHannes Frederic Sowa 	}
3434be12a1feSHannes Frederic Sowa 
3435be12a1feSHannes Frederic Sowa 	return 0;
3436be12a1feSHannes Frederic Sowa }
3437be12a1feSHannes Frederic Sowa EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3438be12a1feSHannes Frederic Sowa 
3439cbb042f9SHerbert Xu /**
3440cbb042f9SHerbert Xu  *	skb_pull_rcsum - pull skb and update receive checksum
3441cbb042f9SHerbert Xu  *	@skb: buffer to update
3442cbb042f9SHerbert Xu  *	@len: length of data pulled
3443cbb042f9SHerbert Xu  *
3444cbb042f9SHerbert Xu  *	This function performs an skb_pull on the packet and updates
3445fee54fa5SUrs Thuermann  *	the CHECKSUM_COMPLETE checksum.  It should be used on
344684fa7933SPatrick McHardy  *	receive path processing instead of skb_pull unless you know
344784fa7933SPatrick McHardy  *	that the checksum difference is zero (e.g., a valid IP header)
344884fa7933SPatrick McHardy  *	or you are setting ip_summed to CHECKSUM_NONE.
3449cbb042f9SHerbert Xu  */
3450af72868bSJohannes Berg void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3451cbb042f9SHerbert Xu {
345231b33dfbSPravin B Shelar 	unsigned char *data = skb->data;
345331b33dfbSPravin B Shelar 
3454cbb042f9SHerbert Xu 	BUG_ON(len > skb->len);
345531b33dfbSPravin B Shelar 	__skb_pull(skb, len);
345631b33dfbSPravin B Shelar 	skb_postpull_rcsum(skb, data, len);
345731b33dfbSPravin B Shelar 	return skb->data;
3458cbb042f9SHerbert Xu }
3459f94691acSArnaldo Carvalho de Melo EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3460f94691acSArnaldo Carvalho de Melo 
3461f4c50d99SHerbert Xu /**
3462f4c50d99SHerbert Xu  *	skb_segment - Perform protocol segmentation on skb.
3463df5771ffSMichael S. Tsirkin  *	@head_skb: buffer to segment
3464576a30ebSHerbert Xu  *	@features: features for the output path (see dev->features)
3465f4c50d99SHerbert Xu  *
3466f4c50d99SHerbert Xu  *	This function performs segmentation on the given skb.  It returns
34674c821d75SBen Hutchings  *	a pointer to the first in a list of new skbs for the segments.
34684c821d75SBen Hutchings  *	In case of error it returns ERR_PTR(err).
3469f4c50d99SHerbert Xu  */
3470df5771ffSMichael S. Tsirkin struct sk_buff *skb_segment(struct sk_buff *head_skb,
3471df5771ffSMichael S. Tsirkin 			    netdev_features_t features)
3472f4c50d99SHerbert Xu {
3473f4c50d99SHerbert Xu 	struct sk_buff *segs = NULL;
3474f4c50d99SHerbert Xu 	struct sk_buff *tail = NULL;
34751a4cedafSMichael S. Tsirkin 	struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
3476df5771ffSMichael S. Tsirkin 	skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3477df5771ffSMichael S. Tsirkin 	unsigned int mss = skb_shinfo(head_skb)->gso_size;
3478df5771ffSMichael S. Tsirkin 	unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
34791fd819ecSMichael S. Tsirkin 	struct sk_buff *frag_skb = head_skb;
3480f4c50d99SHerbert Xu 	unsigned int offset = doffset;
3481df5771ffSMichael S. Tsirkin 	unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
3482802ab55aSAlexander Duyck 	unsigned int partial_segs = 0;
3483f4c50d99SHerbert Xu 	unsigned int headroom;
3484802ab55aSAlexander Duyck 	unsigned int len = head_skb->len;
3485ec5f0615SPravin B Shelar 	__be16 proto;
348636c98382SAlexander Duyck 	bool csum, sg;
3487df5771ffSMichael S. Tsirkin 	int nfrags = skb_shinfo(head_skb)->nr_frags;
3488f4c50d99SHerbert Xu 	int err = -ENOMEM;
3489f4c50d99SHerbert Xu 	int i = 0;
3490f4c50d99SHerbert Xu 	int pos;
349153d6471cSVlad Yasevich 	int dummy;
3492f4c50d99SHerbert Xu 
34935882a07cSWei-Chun Chao 	__skb_push(head_skb, doffset);
349453d6471cSVlad Yasevich 	proto = skb_network_protocol(head_skb, &dummy);
3495ec5f0615SPravin B Shelar 	if (unlikely(!proto))
3496ec5f0615SPravin B Shelar 		return ERR_PTR(-EINVAL);
3497ec5f0615SPravin B Shelar 
349836c98382SAlexander Duyck 	sg = !!(features & NETIF_F_SG);
3499f245d079SAlexander Duyck 	csum = !!can_checksum_protocol(features, proto);
35007e2b10c1STom Herbert 
350107b26c94SSteffen Klassert 	if (sg && csum && (mss != GSO_BY_FRAGS))  {
350207b26c94SSteffen Klassert 		if (!(features & NETIF_F_GSO_PARTIAL)) {
350307b26c94SSteffen Klassert 			struct sk_buff *iter;
350443170c4eSIlan Tayari 			unsigned int frag_len;
350507b26c94SSteffen Klassert 
350607b26c94SSteffen Klassert 			if (!list_skb ||
350707b26c94SSteffen Klassert 			    !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
350807b26c94SSteffen Klassert 				goto normal;
350907b26c94SSteffen Klassert 
351043170c4eSIlan Tayari 			/* If we get here then all the required
351143170c4eSIlan Tayari 			 * GSO features except frag_list are supported.
351243170c4eSIlan Tayari 			 * Try to split the SKB to multiple GSO SKBs
351343170c4eSIlan Tayari 			 * with no frag_list.
351443170c4eSIlan Tayari 			 * Currently we can do that only when the buffers don't
351543170c4eSIlan Tayari 			 * have a linear part and all the buffers except
351643170c4eSIlan Tayari 			 * the last are of the same length.
351707b26c94SSteffen Klassert 			 */
351843170c4eSIlan Tayari 			frag_len = list_skb->len;
351907b26c94SSteffen Klassert 			skb_walk_frags(head_skb, iter) {
352043170c4eSIlan Tayari 				if (frag_len != iter->len && iter->next)
352143170c4eSIlan Tayari 					goto normal;
3522eaffadbbSIlan Tayari 				if (skb_headlen(iter) && !iter->head_frag)
352307b26c94SSteffen Klassert 					goto normal;
352407b26c94SSteffen Klassert 
352507b26c94SSteffen Klassert 				len -= iter->len;
352607b26c94SSteffen Klassert 			}
352743170c4eSIlan Tayari 
352843170c4eSIlan Tayari 			if (len != frag_len)
352943170c4eSIlan Tayari 				goto normal;
353007b26c94SSteffen Klassert 		}
353107b26c94SSteffen Klassert 
3532802ab55aSAlexander Duyck 		/* GSO partial only requires that we trim off any excess that
3533802ab55aSAlexander Duyck 		 * doesn't fit into an MSS sized block, so take care of that
3534802ab55aSAlexander Duyck 		 * now.
3535802ab55aSAlexander Duyck 		 */
3536802ab55aSAlexander Duyck 		partial_segs = len / mss;
3537d7fb5a80SAlexander Duyck 		if (partial_segs > 1)
3538802ab55aSAlexander Duyck 			mss *= partial_segs;
3539d7fb5a80SAlexander Duyck 		else
3540d7fb5a80SAlexander Duyck 			partial_segs = 0;
3541802ab55aSAlexander Duyck 	}
3542802ab55aSAlexander Duyck 
354307b26c94SSteffen Klassert normal:
3544df5771ffSMichael S. Tsirkin 	headroom = skb_headroom(head_skb);
3545df5771ffSMichael S. Tsirkin 	pos = skb_headlen(head_skb);
3546f4c50d99SHerbert Xu 
3547f4c50d99SHerbert Xu 	do {
3548f4c50d99SHerbert Xu 		struct sk_buff *nskb;
35498cb19905SMichael S. Tsirkin 		skb_frag_t *nskb_frag;
3550c8884eddSHerbert Xu 		int hsize;
3551f4c50d99SHerbert Xu 		int size;
3552f4c50d99SHerbert Xu 
35533953c46cSMarcelo Ricardo Leitner 		if (unlikely(mss == GSO_BY_FRAGS)) {
35543953c46cSMarcelo Ricardo Leitner 			len = list_skb->len;
35553953c46cSMarcelo Ricardo Leitner 		} else {
3556df5771ffSMichael S. Tsirkin 			len = head_skb->len - offset;
3557f4c50d99SHerbert Xu 			if (len > mss)
3558f4c50d99SHerbert Xu 				len = mss;
35593953c46cSMarcelo Ricardo Leitner 		}
3560f4c50d99SHerbert Xu 
3561df5771ffSMichael S. Tsirkin 		hsize = skb_headlen(head_skb) - offset;
3562f4c50d99SHerbert Xu 		if (hsize < 0)
3563f4c50d99SHerbert Xu 			hsize = 0;
3564c8884eddSHerbert Xu 		if (hsize > len || !sg)
3565c8884eddSHerbert Xu 			hsize = len;
3566f4c50d99SHerbert Xu 
35671a4cedafSMichael S. Tsirkin 		if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
35681a4cedafSMichael S. Tsirkin 		    (skb_headlen(list_skb) == len || sg)) {
35691a4cedafSMichael S. Tsirkin 			BUG_ON(skb_headlen(list_skb) > len);
357089319d38SHerbert Xu 
35719d8506ccSHerbert Xu 			i = 0;
35721a4cedafSMichael S. Tsirkin 			nfrags = skb_shinfo(list_skb)->nr_frags;
35731a4cedafSMichael S. Tsirkin 			frag = skb_shinfo(list_skb)->frags;
35741fd819ecSMichael S. Tsirkin 			frag_skb = list_skb;
35751a4cedafSMichael S. Tsirkin 			pos += skb_headlen(list_skb);
35769d8506ccSHerbert Xu 
35779d8506ccSHerbert Xu 			while (pos < offset + len) {
35789d8506ccSHerbert Xu 				BUG_ON(i >= nfrags);
35799d8506ccSHerbert Xu 
35804e1beba1SMichael S. Tsirkin 				size = skb_frag_size(frag);
35819d8506ccSHerbert Xu 				if (pos + size > offset + len)
35829d8506ccSHerbert Xu 					break;
35839d8506ccSHerbert Xu 
35849d8506ccSHerbert Xu 				i++;
35859d8506ccSHerbert Xu 				pos += size;
35864e1beba1SMichael S. Tsirkin 				frag++;
35879d8506ccSHerbert Xu 			}
35889d8506ccSHerbert Xu 
35891a4cedafSMichael S. Tsirkin 			nskb = skb_clone(list_skb, GFP_ATOMIC);
35901a4cedafSMichael S. Tsirkin 			list_skb = list_skb->next;
359189319d38SHerbert Xu 
3592f4c50d99SHerbert Xu 			if (unlikely(!nskb))
3593f4c50d99SHerbert Xu 				goto err;
3594f4c50d99SHerbert Xu 
35959d8506ccSHerbert Xu 			if (unlikely(pskb_trim(nskb, len))) {
35969d8506ccSHerbert Xu 				kfree_skb(nskb);
35979d8506ccSHerbert Xu 				goto err;
35989d8506ccSHerbert Xu 			}
35999d8506ccSHerbert Xu 
3600ec47ea82SAlexander Duyck 			hsize = skb_end_offset(nskb);
360189319d38SHerbert Xu 			if (skb_cow_head(nskb, doffset + headroom)) {
360289319d38SHerbert Xu 				kfree_skb(nskb);
360389319d38SHerbert Xu 				goto err;
360489319d38SHerbert Xu 			}
360589319d38SHerbert Xu 
3606ec47ea82SAlexander Duyck 			nskb->truesize += skb_end_offset(nskb) - hsize;
360789319d38SHerbert Xu 			skb_release_head_state(nskb);
360889319d38SHerbert Xu 			__skb_push(nskb, doffset);
360989319d38SHerbert Xu 		} else {
3610c93bdd0eSMel Gorman 			nskb = __alloc_skb(hsize + doffset + headroom,
3611df5771ffSMichael S. Tsirkin 					   GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
3612c93bdd0eSMel Gorman 					   NUMA_NO_NODE);
361389319d38SHerbert Xu 
361489319d38SHerbert Xu 			if (unlikely(!nskb))
361589319d38SHerbert Xu 				goto err;
361689319d38SHerbert Xu 
361789319d38SHerbert Xu 			skb_reserve(nskb, headroom);
361889319d38SHerbert Xu 			__skb_put(nskb, doffset);
361989319d38SHerbert Xu 		}
362089319d38SHerbert Xu 
3621f4c50d99SHerbert Xu 		if (segs)
3622f4c50d99SHerbert Xu 			tail->next = nskb;
3623f4c50d99SHerbert Xu 		else
3624f4c50d99SHerbert Xu 			segs = nskb;
3625f4c50d99SHerbert Xu 		tail = nskb;
3626f4c50d99SHerbert Xu 
3627df5771ffSMichael S. Tsirkin 		__copy_skb_header(nskb, head_skb);
3628f4c50d99SHerbert Xu 
3629030737bcSEric Dumazet 		skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
3630fcdfe3a7SVlad Yasevich 		skb_reset_mac_len(nskb);
363168c33163SPravin B Shelar 
3632df5771ffSMichael S. Tsirkin 		skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
363368c33163SPravin B Shelar 						 nskb->data - tnl_hlen,
363468c33163SPravin B Shelar 						 doffset + tnl_hlen);
363589319d38SHerbert Xu 
36369d8506ccSHerbert Xu 		if (nskb->len == len + doffset)
36371cdbcb79SSimon Horman 			goto perform_csum_check;
363889319d38SHerbert Xu 
36397fbeffedSAlexander Duyck 		if (!sg) {
36407fbeffedSAlexander Duyck 			if (!nskb->remcsum_offload)
36416f85a124SHerbert Xu 				nskb->ip_summed = CHECKSUM_NONE;
364276443456SAlexander Duyck 			SKB_GSO_CB(nskb)->csum =
364376443456SAlexander Duyck 				skb_copy_and_csum_bits(head_skb, offset,
3644f4c50d99SHerbert Xu 						       skb_put(nskb, len),
3645f4c50d99SHerbert Xu 						       len, 0);
36467e2b10c1STom Herbert 			SKB_GSO_CB(nskb)->csum_start =
3647de843723STom Herbert 				skb_headroom(nskb) + doffset;
3648f4c50d99SHerbert Xu 			continue;
3649f4c50d99SHerbert Xu 		}
3650f4c50d99SHerbert Xu 
36518cb19905SMichael S. Tsirkin 		nskb_frag = skb_shinfo(nskb)->frags;
3652f4c50d99SHerbert Xu 
3653df5771ffSMichael S. Tsirkin 		skb_copy_from_linear_data_offset(head_skb, offset,
3654d626f62bSArnaldo Carvalho de Melo 						 skb_put(nskb, hsize), hsize);
3655f4c50d99SHerbert Xu 
3656fff88030SWillem de Bruijn 		skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
3657df5771ffSMichael S. Tsirkin 					      SKBTX_SHARED_FRAG;
3658cef401deSEric Dumazet 
36599d8506ccSHerbert Xu 		while (pos < offset + len) {
36609d8506ccSHerbert Xu 			if (i >= nfrags) {
36611a4cedafSMichael S. Tsirkin 				BUG_ON(skb_headlen(list_skb));
36629d8506ccSHerbert Xu 
36639d8506ccSHerbert Xu 				i = 0;
36641a4cedafSMichael S. Tsirkin 				nfrags = skb_shinfo(list_skb)->nr_frags;
36651a4cedafSMichael S. Tsirkin 				frag = skb_shinfo(list_skb)->frags;
36661fd819ecSMichael S. Tsirkin 				frag_skb = list_skb;
36679d8506ccSHerbert Xu 
36689d8506ccSHerbert Xu 				BUG_ON(!nfrags);
36699d8506ccSHerbert Xu 
36701a4cedafSMichael S. Tsirkin 				list_skb = list_skb->next;
36719d8506ccSHerbert Xu 			}
36729d8506ccSHerbert Xu 
36739d8506ccSHerbert Xu 			if (unlikely(skb_shinfo(nskb)->nr_frags >=
36749d8506ccSHerbert Xu 				     MAX_SKB_FRAGS)) {
36759d8506ccSHerbert Xu 				net_warn_ratelimited(
36769d8506ccSHerbert Xu 					"skb_segment: too many frags: %u %u\n",
36779d8506ccSHerbert Xu 					pos, mss);
36789d8506ccSHerbert Xu 				goto err;
36799d8506ccSHerbert Xu 			}
36809d8506ccSHerbert Xu 
36811fd819ecSMichael S. Tsirkin 			if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
36821fd819ecSMichael S. Tsirkin 				goto err;
3683268b7906SWillem de Bruijn 			if (skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC))
3684268b7906SWillem de Bruijn 				goto err;
36851fd819ecSMichael S. Tsirkin 
36864e1beba1SMichael S. Tsirkin 			*nskb_frag = *frag;
36878cb19905SMichael S. Tsirkin 			__skb_frag_ref(nskb_frag);
36888cb19905SMichael S. Tsirkin 			size = skb_frag_size(nskb_frag);
3689f4c50d99SHerbert Xu 
3690f4c50d99SHerbert Xu 			if (pos < offset) {
36918cb19905SMichael S. Tsirkin 				nskb_frag->page_offset += offset - pos;
36928cb19905SMichael S. Tsirkin 				skb_frag_size_sub(nskb_frag, offset - pos);
3693f4c50d99SHerbert Xu 			}
3694f4c50d99SHerbert Xu 
369589319d38SHerbert Xu 			skb_shinfo(nskb)->nr_frags++;
3696f4c50d99SHerbert Xu 
3697f4c50d99SHerbert Xu 			if (pos + size <= offset + len) {
3698f4c50d99SHerbert Xu 				i++;
36994e1beba1SMichael S. Tsirkin 				frag++;
3700f4c50d99SHerbert Xu 				pos += size;
3701f4c50d99SHerbert Xu 			} else {
37028cb19905SMichael S. Tsirkin 				skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
370389319d38SHerbert Xu 				goto skip_fraglist;
3704f4c50d99SHerbert Xu 			}
3705f4c50d99SHerbert Xu 
37068cb19905SMichael S. Tsirkin 			nskb_frag++;
3707f4c50d99SHerbert Xu 		}
3708f4c50d99SHerbert Xu 
370989319d38SHerbert Xu skip_fraglist:
3710f4c50d99SHerbert Xu 		nskb->data_len = len - hsize;
3711f4c50d99SHerbert Xu 		nskb->len += nskb->data_len;
3712f4c50d99SHerbert Xu 		nskb->truesize += nskb->data_len;
3713ec5f0615SPravin B Shelar 
37141cdbcb79SSimon Horman perform_csum_check:
37157fbeffedSAlexander Duyck 		if (!csum) {
3716ddff00d4SAlexander Duyck 			if (skb_has_shared_frag(nskb)) {
3717ddff00d4SAlexander Duyck 				err = __skb_linearize(nskb);
3718ddff00d4SAlexander Duyck 				if (err)
3719ddff00d4SAlexander Duyck 					goto err;
3720ddff00d4SAlexander Duyck 			}
37217fbeffedSAlexander Duyck 			if (!nskb->remcsum_offload)
3722ec5f0615SPravin B Shelar 				nskb->ip_summed = CHECKSUM_NONE;
372376443456SAlexander Duyck 			SKB_GSO_CB(nskb)->csum =
372476443456SAlexander Duyck 				skb_checksum(nskb, doffset,
372576443456SAlexander Duyck 					     nskb->len - doffset, 0);
37267e2b10c1STom Herbert 			SKB_GSO_CB(nskb)->csum_start =
37277e2b10c1STom Herbert 				skb_headroom(nskb) + doffset;
3728ec5f0615SPravin B Shelar 		}
3729df5771ffSMichael S. Tsirkin 	} while ((offset += len) < head_skb->len);
3730f4c50d99SHerbert Xu 
3731bec3cfdcSEric Dumazet 	/* Some callers want to get the end of the list.
3732bec3cfdcSEric Dumazet 	 * Put it in segs->prev to avoid walking the list.
3733bec3cfdcSEric Dumazet 	 * (see validate_xmit_skb_list() for example)
3734bec3cfdcSEric Dumazet 	 */
3735bec3cfdcSEric Dumazet 	segs->prev = tail;
3736432c856fSToshiaki Makita 
3737802ab55aSAlexander Duyck 	if (partial_segs) {
373807b26c94SSteffen Klassert 		struct sk_buff *iter;
3739802ab55aSAlexander Duyck 		int type = skb_shinfo(head_skb)->gso_type;
374007b26c94SSteffen Klassert 		unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
3741802ab55aSAlexander Duyck 
3742802ab55aSAlexander Duyck 		/* Update type to add partial and then remove dodgy if set */
374307b26c94SSteffen Klassert 		type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
3744802ab55aSAlexander Duyck 		type &= ~SKB_GSO_DODGY;
3745802ab55aSAlexander Duyck 
3746802ab55aSAlexander Duyck 		/* Update GSO info and prepare to start updating headers on
3747802ab55aSAlexander Duyck 		 * our way back down the stack of protocols.
3748802ab55aSAlexander Duyck 		 */
374907b26c94SSteffen Klassert 		for (iter = segs; iter; iter = iter->next) {
375007b26c94SSteffen Klassert 			skb_shinfo(iter)->gso_size = gso_size;
375107b26c94SSteffen Klassert 			skb_shinfo(iter)->gso_segs = partial_segs;
375207b26c94SSteffen Klassert 			skb_shinfo(iter)->gso_type = type;
375307b26c94SSteffen Klassert 			SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
375407b26c94SSteffen Klassert 		}
375507b26c94SSteffen Klassert 
375607b26c94SSteffen Klassert 		if (tail->len - doffset <= gso_size)
375707b26c94SSteffen Klassert 			skb_shinfo(tail)->gso_size = 0;
375807b26c94SSteffen Klassert 		else if (tail != segs)
375907b26c94SSteffen Klassert 			skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
3760802ab55aSAlexander Duyck 	}
3761802ab55aSAlexander Duyck 
3762432c856fSToshiaki Makita 	/* Following permits correct backpressure, for protocols
3763432c856fSToshiaki Makita 	 * using skb_set_owner_w().
3764432c856fSToshiaki Makita 	 * Idea is to tranfert ownership from head_skb to last segment.
3765432c856fSToshiaki Makita 	 */
3766432c856fSToshiaki Makita 	if (head_skb->destructor == sock_wfree) {
3767432c856fSToshiaki Makita 		swap(tail->truesize, head_skb->truesize);
3768432c856fSToshiaki Makita 		swap(tail->destructor, head_skb->destructor);
3769432c856fSToshiaki Makita 		swap(tail->sk, head_skb->sk);
3770432c856fSToshiaki Makita 	}
3771f4c50d99SHerbert Xu 	return segs;
3772f4c50d99SHerbert Xu 
3773f4c50d99SHerbert Xu err:
3774289dccbeSEric Dumazet 	kfree_skb_list(segs);
3775f4c50d99SHerbert Xu 	return ERR_PTR(err);
3776f4c50d99SHerbert Xu }
3777f4c50d99SHerbert Xu EXPORT_SYMBOL_GPL(skb_segment);
3778f4c50d99SHerbert Xu 
377971d93b39SHerbert Xu int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
378071d93b39SHerbert Xu {
37818a29111cSEric Dumazet 	struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
378267147ba9SHerbert Xu 	unsigned int offset = skb_gro_offset(skb);
378367147ba9SHerbert Xu 	unsigned int headlen = skb_headlen(skb);
37848a29111cSEric Dumazet 	unsigned int len = skb_gro_len(skb);
378558025e46SEric Dumazet 	struct sk_buff *lp, *p = *head;
3786715dc1f3SEric Dumazet 	unsigned int delta_truesize;
378771d93b39SHerbert Xu 
37888a29111cSEric Dumazet 	if (unlikely(p->len + len >= 65536))
378971d93b39SHerbert Xu 		return -E2BIG;
379071d93b39SHerbert Xu 
379129e98242SEric Dumazet 	lp = NAPI_GRO_CB(p)->last;
37928a29111cSEric Dumazet 	pinfo = skb_shinfo(lp);
37938a29111cSEric Dumazet 
37948a29111cSEric Dumazet 	if (headlen <= offset) {
379542da6994SHerbert Xu 		skb_frag_t *frag;
379666e92fcfSHerbert Xu 		skb_frag_t *frag2;
37979aaa156cSHerbert Xu 		int i = skbinfo->nr_frags;
37989aaa156cSHerbert Xu 		int nr_frags = pinfo->nr_frags + i;
379942da6994SHerbert Xu 
380066e92fcfSHerbert Xu 		if (nr_frags > MAX_SKB_FRAGS)
38018a29111cSEric Dumazet 			goto merge;
380281705ad1SHerbert Xu 
38038a29111cSEric Dumazet 		offset -= headlen;
38049aaa156cSHerbert Xu 		pinfo->nr_frags = nr_frags;
38059aaa156cSHerbert Xu 		skbinfo->nr_frags = 0;
3806f5572068SHerbert Xu 
38079aaa156cSHerbert Xu 		frag = pinfo->frags + nr_frags;
38089aaa156cSHerbert Xu 		frag2 = skbinfo->frags + i;
380966e92fcfSHerbert Xu 		do {
381066e92fcfSHerbert Xu 			*--frag = *--frag2;
381166e92fcfSHerbert Xu 		} while (--i);
381266e92fcfSHerbert Xu 
381366e92fcfSHerbert Xu 		frag->page_offset += offset;
38149e903e08SEric Dumazet 		skb_frag_size_sub(frag, offset);
381566e92fcfSHerbert Xu 
3816715dc1f3SEric Dumazet 		/* all fragments truesize : remove (head size + sk_buff) */
3817ec47ea82SAlexander Duyck 		delta_truesize = skb->truesize -
3818ec47ea82SAlexander Duyck 				 SKB_TRUESIZE(skb_end_offset(skb));
3819715dc1f3SEric Dumazet 
3820f5572068SHerbert Xu 		skb->truesize -= skb->data_len;
3821f5572068SHerbert Xu 		skb->len -= skb->data_len;
3822f5572068SHerbert Xu 		skb->data_len = 0;
3823f5572068SHerbert Xu 
3824715dc1f3SEric Dumazet 		NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
38255d38a079SHerbert Xu 		goto done;
3826d7e8883cSEric Dumazet 	} else if (skb->head_frag) {
3827d7e8883cSEric Dumazet 		int nr_frags = pinfo->nr_frags;
3828d7e8883cSEric Dumazet 		skb_frag_t *frag = pinfo->frags + nr_frags;
3829d7e8883cSEric Dumazet 		struct page *page = virt_to_head_page(skb->head);
3830d7e8883cSEric Dumazet 		unsigned int first_size = headlen - offset;
3831d7e8883cSEric Dumazet 		unsigned int first_offset;
3832d7e8883cSEric Dumazet 
3833d7e8883cSEric Dumazet 		if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
38348a29111cSEric Dumazet 			goto merge;
3835d7e8883cSEric Dumazet 
3836d7e8883cSEric Dumazet 		first_offset = skb->data -
3837d7e8883cSEric Dumazet 			       (unsigned char *)page_address(page) +
3838d7e8883cSEric Dumazet 			       offset;
3839d7e8883cSEric Dumazet 
3840d7e8883cSEric Dumazet 		pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3841d7e8883cSEric Dumazet 
3842d7e8883cSEric Dumazet 		frag->page.p	  = page;
3843d7e8883cSEric Dumazet 		frag->page_offset = first_offset;
3844d7e8883cSEric Dumazet 		skb_frag_size_set(frag, first_size);
3845d7e8883cSEric Dumazet 
3846d7e8883cSEric Dumazet 		memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3847d7e8883cSEric Dumazet 		/* We dont need to clear skbinfo->nr_frags here */
3848d7e8883cSEric Dumazet 
3849715dc1f3SEric Dumazet 		delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3850d7e8883cSEric Dumazet 		NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3851d7e8883cSEric Dumazet 		goto done;
38528a29111cSEric Dumazet 	}
385371d93b39SHerbert Xu 
385471d93b39SHerbert Xu merge:
3855715dc1f3SEric Dumazet 	delta_truesize = skb->truesize;
385667147ba9SHerbert Xu 	if (offset > headlen) {
3857d1dc7abfSMichal Schmidt 		unsigned int eat = offset - headlen;
3858d1dc7abfSMichal Schmidt 
3859d1dc7abfSMichal Schmidt 		skbinfo->frags[0].page_offset += eat;
38609e903e08SEric Dumazet 		skb_frag_size_sub(&skbinfo->frags[0], eat);
3861d1dc7abfSMichal Schmidt 		skb->data_len -= eat;
3862d1dc7abfSMichal Schmidt 		skb->len -= eat;
386367147ba9SHerbert Xu 		offset = headlen;
386456035022SHerbert Xu 	}
386556035022SHerbert Xu 
386667147ba9SHerbert Xu 	__skb_pull(skb, offset);
386756035022SHerbert Xu 
386829e98242SEric Dumazet 	if (NAPI_GRO_CB(p)->last == p)
38698a29111cSEric Dumazet 		skb_shinfo(p)->frag_list = skb;
38708a29111cSEric Dumazet 	else
3871c3c7c254SEric Dumazet 		NAPI_GRO_CB(p)->last->next = skb;
3872c3c7c254SEric Dumazet 	NAPI_GRO_CB(p)->last = skb;
3873f4a775d1SEric Dumazet 	__skb_header_release(skb);
38748a29111cSEric Dumazet 	lp = p;
387571d93b39SHerbert Xu 
38765d38a079SHerbert Xu done:
38775d38a079SHerbert Xu 	NAPI_GRO_CB(p)->count++;
387837fe4732SHerbert Xu 	p->data_len += len;
3879715dc1f3SEric Dumazet 	p->truesize += delta_truesize;
388037fe4732SHerbert Xu 	p->len += len;
38818a29111cSEric Dumazet 	if (lp != p) {
38828a29111cSEric Dumazet 		lp->data_len += len;
38838a29111cSEric Dumazet 		lp->truesize += delta_truesize;
38848a29111cSEric Dumazet 		lp->len += len;
38858a29111cSEric Dumazet 	}
388671d93b39SHerbert Xu 	NAPI_GRO_CB(skb)->same_flow = 1;
388771d93b39SHerbert Xu 	return 0;
388871d93b39SHerbert Xu }
388957c05650SMarcelo Ricardo Leitner EXPORT_SYMBOL_GPL(skb_gro_receive);
389071d93b39SHerbert Xu 
38911da177e4SLinus Torvalds void __init skb_init(void)
38921da177e4SLinus Torvalds {
38931da177e4SLinus Torvalds 	skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
38941da177e4SLinus Torvalds 					      sizeof(struct sk_buff),
38951da177e4SLinus Torvalds 					      0,
3896e5d679f3SAlexey Dobriyan 					      SLAB_HWCACHE_ALIGN|SLAB_PANIC,
389720c2df83SPaul Mundt 					      NULL);
3898d179cd12SDavid S. Miller 	skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3899d0bf4a9eSEric Dumazet 						sizeof(struct sk_buff_fclones),
3900d179cd12SDavid S. Miller 						0,
3901e5d679f3SAlexey Dobriyan 						SLAB_HWCACHE_ALIGN|SLAB_PANIC,
390220c2df83SPaul Mundt 						NULL);
39031da177e4SLinus Torvalds }
39041da177e4SLinus Torvalds 
390551c739d1SDavid S. Miller static int
390648a1df65SJason A. Donenfeld __skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
390748a1df65SJason A. Donenfeld 	       unsigned int recursion_level)
3908716ea3a7SDavid Howells {
39091a028e50SDavid S. Miller 	int start = skb_headlen(skb);
39101a028e50SDavid S. Miller 	int i, copy = start - offset;
3911fbb398a8SDavid S. Miller 	struct sk_buff *frag_iter;
3912716ea3a7SDavid Howells 	int elt = 0;
3913716ea3a7SDavid Howells 
391448a1df65SJason A. Donenfeld 	if (unlikely(recursion_level >= 24))
391548a1df65SJason A. Donenfeld 		return -EMSGSIZE;
391648a1df65SJason A. Donenfeld 
3917716ea3a7SDavid Howells 	if (copy > 0) {
3918716ea3a7SDavid Howells 		if (copy > len)
3919716ea3a7SDavid Howells 			copy = len;
3920642f1490SJens Axboe 		sg_set_buf(sg, skb->data + offset, copy);
3921716ea3a7SDavid Howells 		elt++;
3922716ea3a7SDavid Howells 		if ((len -= copy) == 0)
3923716ea3a7SDavid Howells 			return elt;
3924716ea3a7SDavid Howells 		offset += copy;
3925716ea3a7SDavid Howells 	}
3926716ea3a7SDavid Howells 
3927716ea3a7SDavid Howells 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
39281a028e50SDavid S. Miller 		int end;
3929716ea3a7SDavid Howells 
3930547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
39311a028e50SDavid S. Miller 
39329e903e08SEric Dumazet 		end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
3933716ea3a7SDavid Howells 		if ((copy = end - offset) > 0) {
3934716ea3a7SDavid Howells 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
393548a1df65SJason A. Donenfeld 			if (unlikely(elt && sg_is_last(&sg[elt - 1])))
393648a1df65SJason A. Donenfeld 				return -EMSGSIZE;
3937716ea3a7SDavid Howells 
3938716ea3a7SDavid Howells 			if (copy > len)
3939716ea3a7SDavid Howells 				copy = len;
3940ea2ab693SIan Campbell 			sg_set_page(&sg[elt], skb_frag_page(frag), copy,
3941642f1490SJens Axboe 					frag->page_offset+offset-start);
3942716ea3a7SDavid Howells 			elt++;
3943716ea3a7SDavid Howells 			if (!(len -= copy))
3944716ea3a7SDavid Howells 				return elt;
3945716ea3a7SDavid Howells 			offset += copy;
3946716ea3a7SDavid Howells 		}
39471a028e50SDavid S. Miller 		start = end;
3948716ea3a7SDavid Howells 	}
3949716ea3a7SDavid Howells 
3950fbb398a8SDavid S. Miller 	skb_walk_frags(skb, frag_iter) {
395148a1df65SJason A. Donenfeld 		int end, ret;
3952716ea3a7SDavid Howells 
3953547b792cSIlpo Järvinen 		WARN_ON(start > offset + len);
39541a028e50SDavid S. Miller 
3955fbb398a8SDavid S. Miller 		end = start + frag_iter->len;
3956716ea3a7SDavid Howells 		if ((copy = end - offset) > 0) {
395748a1df65SJason A. Donenfeld 			if (unlikely(elt && sg_is_last(&sg[elt - 1])))
395848a1df65SJason A. Donenfeld 				return -EMSGSIZE;
395948a1df65SJason A. Donenfeld 
3960716ea3a7SDavid Howells 			if (copy > len)
3961716ea3a7SDavid Howells 				copy = len;
396248a1df65SJason A. Donenfeld 			ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
396348a1df65SJason A. Donenfeld 					      copy, recursion_level + 1);
396448a1df65SJason A. Donenfeld 			if (unlikely(ret < 0))
396548a1df65SJason A. Donenfeld 				return ret;
396648a1df65SJason A. Donenfeld 			elt += ret;
3967716ea3a7SDavid Howells 			if ((len -= copy) == 0)
3968716ea3a7SDavid Howells 				return elt;
3969716ea3a7SDavid Howells 			offset += copy;
3970716ea3a7SDavid Howells 		}
39711a028e50SDavid S. Miller 		start = end;
3972716ea3a7SDavid Howells 	}
3973716ea3a7SDavid Howells 	BUG_ON(len);
3974716ea3a7SDavid Howells 	return elt;
3975716ea3a7SDavid Howells }
3976716ea3a7SDavid Howells 
397748a1df65SJason A. Donenfeld /**
397848a1df65SJason A. Donenfeld  *	skb_to_sgvec - Fill a scatter-gather list from a socket buffer
397948a1df65SJason A. Donenfeld  *	@skb: Socket buffer containing the buffers to be mapped
398048a1df65SJason A. Donenfeld  *	@sg: The scatter-gather list to map into
398148a1df65SJason A. Donenfeld  *	@offset: The offset into the buffer's contents to start mapping
398248a1df65SJason A. Donenfeld  *	@len: Length of buffer space to be mapped
398348a1df65SJason A. Donenfeld  *
398448a1df65SJason A. Donenfeld  *	Fill the specified scatter-gather list with mappings/pointers into a
398548a1df65SJason A. Donenfeld  *	region of the buffer space attached to a socket buffer. Returns either
398648a1df65SJason A. Donenfeld  *	the number of scatterlist items used, or -EMSGSIZE if the contents
398748a1df65SJason A. Donenfeld  *	could not fit.
398848a1df65SJason A. Donenfeld  */
398948a1df65SJason A. Donenfeld int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
399048a1df65SJason A. Donenfeld {
399148a1df65SJason A. Donenfeld 	int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
399248a1df65SJason A. Donenfeld 
399348a1df65SJason A. Donenfeld 	if (nsg <= 0)
399448a1df65SJason A. Donenfeld 		return nsg;
399548a1df65SJason A. Donenfeld 
399648a1df65SJason A. Donenfeld 	sg_mark_end(&sg[nsg - 1]);
399748a1df65SJason A. Donenfeld 
399848a1df65SJason A. Donenfeld 	return nsg;
399948a1df65SJason A. Donenfeld }
400048a1df65SJason A. Donenfeld EXPORT_SYMBOL_GPL(skb_to_sgvec);
400148a1df65SJason A. Donenfeld 
400225a91d8dSFan Du /* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
400325a91d8dSFan Du  * sglist without mark the sg which contain last skb data as the end.
400425a91d8dSFan Du  * So the caller can mannipulate sg list as will when padding new data after
400525a91d8dSFan Du  * the first call without calling sg_unmark_end to expend sg list.
400625a91d8dSFan Du  *
400725a91d8dSFan Du  * Scenario to use skb_to_sgvec_nomark:
400825a91d8dSFan Du  * 1. sg_init_table
400925a91d8dSFan Du  * 2. skb_to_sgvec_nomark(payload1)
401025a91d8dSFan Du  * 3. skb_to_sgvec_nomark(payload2)
401125a91d8dSFan Du  *
401225a91d8dSFan Du  * This is equivalent to:
401325a91d8dSFan Du  * 1. sg_init_table
401425a91d8dSFan Du  * 2. skb_to_sgvec(payload1)
401525a91d8dSFan Du  * 3. sg_unmark_end
401625a91d8dSFan Du  * 4. skb_to_sgvec(payload2)
401725a91d8dSFan Du  *
401825a91d8dSFan Du  * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
401925a91d8dSFan Du  * is more preferable.
402025a91d8dSFan Du  */
402125a91d8dSFan Du int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
402225a91d8dSFan Du 			int offset, int len)
402325a91d8dSFan Du {
402448a1df65SJason A. Donenfeld 	return __skb_to_sgvec(skb, sg, offset, len, 0);
402525a91d8dSFan Du }
402625a91d8dSFan Du EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
402725a91d8dSFan Du 
402851c739d1SDavid S. Miller 
402951c739d1SDavid S. Miller 
4030716ea3a7SDavid Howells /**
4031716ea3a7SDavid Howells  *	skb_cow_data - Check that a socket buffer's data buffers are writable
4032716ea3a7SDavid Howells  *	@skb: The socket buffer to check.
4033716ea3a7SDavid Howells  *	@tailbits: Amount of trailing space to be added
4034716ea3a7SDavid Howells  *	@trailer: Returned pointer to the skb where the @tailbits space begins
4035716ea3a7SDavid Howells  *
4036716ea3a7SDavid Howells  *	Make sure that the data buffers attached to a socket buffer are
4037716ea3a7SDavid Howells  *	writable. If they are not, private copies are made of the data buffers
4038716ea3a7SDavid Howells  *	and the socket buffer is set to use these instead.
4039716ea3a7SDavid Howells  *
4040716ea3a7SDavid Howells  *	If @tailbits is given, make sure that there is space to write @tailbits
4041716ea3a7SDavid Howells  *	bytes of data beyond current end of socket buffer.  @trailer will be
4042716ea3a7SDavid Howells  *	set to point to the skb in which this space begins.
4043716ea3a7SDavid Howells  *
4044716ea3a7SDavid Howells  *	The number of scatterlist elements required to completely map the
4045716ea3a7SDavid Howells  *	COW'd and extended socket buffer will be returned.
4046716ea3a7SDavid Howells  */
4047716ea3a7SDavid Howells int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
4048716ea3a7SDavid Howells {
4049716ea3a7SDavid Howells 	int copyflag;
4050716ea3a7SDavid Howells 	int elt;
4051716ea3a7SDavid Howells 	struct sk_buff *skb1, **skb_p;
4052716ea3a7SDavid Howells 
4053716ea3a7SDavid Howells 	/* If skb is cloned or its head is paged, reallocate
4054716ea3a7SDavid Howells 	 * head pulling out all the pages (pages are considered not writable
4055716ea3a7SDavid Howells 	 * at the moment even if they are anonymous).
4056716ea3a7SDavid Howells 	 */
4057716ea3a7SDavid Howells 	if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
4058716ea3a7SDavid Howells 	    __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
4059716ea3a7SDavid Howells 		return -ENOMEM;
4060716ea3a7SDavid Howells 
4061716ea3a7SDavid Howells 	/* Easy case. Most of packets will go this way. */
406221dc3301SDavid S. Miller 	if (!skb_has_frag_list(skb)) {
4063716ea3a7SDavid Howells 		/* A little of trouble, not enough of space for trailer.
4064716ea3a7SDavid Howells 		 * This should not happen, when stack is tuned to generate
4065716ea3a7SDavid Howells 		 * good frames. OK, on miss we reallocate and reserve even more
4066716ea3a7SDavid Howells 		 * space, 128 bytes is fair. */
4067716ea3a7SDavid Howells 
4068716ea3a7SDavid Howells 		if (skb_tailroom(skb) < tailbits &&
4069716ea3a7SDavid Howells 		    pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
4070716ea3a7SDavid Howells 			return -ENOMEM;
4071716ea3a7SDavid Howells 
4072716ea3a7SDavid Howells 		/* Voila! */
4073716ea3a7SDavid Howells 		*trailer = skb;
4074716ea3a7SDavid Howells 		return 1;
4075716ea3a7SDavid Howells 	}
4076716ea3a7SDavid Howells 
4077716ea3a7SDavid Howells 	/* Misery. We are in troubles, going to mincer fragments... */
4078716ea3a7SDavid Howells 
4079716ea3a7SDavid Howells 	elt = 1;
4080716ea3a7SDavid Howells 	skb_p = &skb_shinfo(skb)->frag_list;
4081716ea3a7SDavid Howells 	copyflag = 0;
4082716ea3a7SDavid Howells 
4083716ea3a7SDavid Howells 	while ((skb1 = *skb_p) != NULL) {
4084716ea3a7SDavid Howells 		int ntail = 0;
4085716ea3a7SDavid Howells 
4086716ea3a7SDavid Howells 		/* The fragment is partially pulled by someone,
4087716ea3a7SDavid Howells 		 * this can happen on input. Copy it and everything
4088716ea3a7SDavid Howells 		 * after it. */
4089716ea3a7SDavid Howells 
4090716ea3a7SDavid Howells 		if (skb_shared(skb1))
4091716ea3a7SDavid Howells 			copyflag = 1;
4092716ea3a7SDavid Howells 
4093716ea3a7SDavid Howells 		/* If the skb is the last, worry about trailer. */
4094716ea3a7SDavid Howells 
4095716ea3a7SDavid Howells 		if (skb1->next == NULL && tailbits) {
4096716ea3a7SDavid Howells 			if (skb_shinfo(skb1)->nr_frags ||
409721dc3301SDavid S. Miller 			    skb_has_frag_list(skb1) ||
4098716ea3a7SDavid Howells 			    skb_tailroom(skb1) < tailbits)
4099716ea3a7SDavid Howells 				ntail = tailbits + 128;
4100716ea3a7SDavid Howells 		}
4101716ea3a7SDavid Howells 
4102716ea3a7SDavid Howells 		if (copyflag ||
4103716ea3a7SDavid Howells 		    skb_cloned(skb1) ||
4104716ea3a7SDavid Howells 		    ntail ||
4105716ea3a7SDavid Howells 		    skb_shinfo(skb1)->nr_frags ||
410621dc3301SDavid S. Miller 		    skb_has_frag_list(skb1)) {
4107716ea3a7SDavid Howells 			struct sk_buff *skb2;
4108716ea3a7SDavid Howells 
4109716ea3a7SDavid Howells 			/* Fuck, we are miserable poor guys... */
4110716ea3a7SDavid Howells 			if (ntail == 0)
4111716ea3a7SDavid Howells 				skb2 = skb_copy(skb1, GFP_ATOMIC);
4112716ea3a7SDavid Howells 			else
4113716ea3a7SDavid Howells 				skb2 = skb_copy_expand(skb1,
4114716ea3a7SDavid Howells 						       skb_headroom(skb1),
4115716ea3a7SDavid Howells 						       ntail,
4116716ea3a7SDavid Howells 						       GFP_ATOMIC);
4117716ea3a7SDavid Howells 			if (unlikely(skb2 == NULL))
4118716ea3a7SDavid Howells 				return -ENOMEM;
4119716ea3a7SDavid Howells 
4120716ea3a7SDavid Howells 			if (skb1->sk)
4121716ea3a7SDavid Howells 				skb_set_owner_w(skb2, skb1->sk);
4122716ea3a7SDavid Howells 
4123716ea3a7SDavid Howells 			/* Looking around. Are we still alive?
4124716ea3a7SDavid Howells 			 * OK, link new skb, drop old one */
4125716ea3a7SDavid Howells 
4126716ea3a7SDavid Howells 			skb2->next = skb1->next;
4127716ea3a7SDavid Howells 			*skb_p = skb2;
4128716ea3a7SDavid Howells 			kfree_skb(skb1);
4129716ea3a7SDavid Howells 			skb1 = skb2;
4130716ea3a7SDavid Howells 		}
4131716ea3a7SDavid Howells 		elt++;
4132716ea3a7SDavid Howells 		*trailer = skb1;
4133716ea3a7SDavid Howells 		skb_p = &skb1->next;
4134716ea3a7SDavid Howells 	}
4135716ea3a7SDavid Howells 
4136716ea3a7SDavid Howells 	return elt;
4137716ea3a7SDavid Howells }
4138b4ac530fSDavid S. Miller EXPORT_SYMBOL_GPL(skb_cow_data);
4139716ea3a7SDavid Howells 
4140b1faf566SEric Dumazet static void sock_rmem_free(struct sk_buff *skb)
4141b1faf566SEric Dumazet {
4142b1faf566SEric Dumazet 	struct sock *sk = skb->sk;
4143b1faf566SEric Dumazet 
4144b1faf566SEric Dumazet 	atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
4145b1faf566SEric Dumazet }
4146b1faf566SEric Dumazet 
41478605330aSSoheil Hassas Yeganeh static void skb_set_err_queue(struct sk_buff *skb)
41488605330aSSoheil Hassas Yeganeh {
41498605330aSSoheil Hassas Yeganeh 	/* pkt_type of skbs received on local sockets is never PACKET_OUTGOING.
41508605330aSSoheil Hassas Yeganeh 	 * So, it is safe to (mis)use it to mark skbs on the error queue.
41518605330aSSoheil Hassas Yeganeh 	 */
41528605330aSSoheil Hassas Yeganeh 	skb->pkt_type = PACKET_OUTGOING;
41538605330aSSoheil Hassas Yeganeh 	BUILD_BUG_ON(PACKET_OUTGOING == 0);
41548605330aSSoheil Hassas Yeganeh }
41558605330aSSoheil Hassas Yeganeh 
4156b1faf566SEric Dumazet /*
4157b1faf566SEric Dumazet  * Note: We dont mem charge error packets (no sk_forward_alloc changes)
4158b1faf566SEric Dumazet  */
4159b1faf566SEric Dumazet int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
4160b1faf566SEric Dumazet {
4161b1faf566SEric Dumazet 	if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
416295c96174SEric Dumazet 	    (unsigned int)sk->sk_rcvbuf)
4163b1faf566SEric Dumazet 		return -ENOMEM;
4164b1faf566SEric Dumazet 
4165b1faf566SEric Dumazet 	skb_orphan(skb);
4166b1faf566SEric Dumazet 	skb->sk = sk;
4167b1faf566SEric Dumazet 	skb->destructor = sock_rmem_free;
4168b1faf566SEric Dumazet 	atomic_add(skb->truesize, &sk->sk_rmem_alloc);
41698605330aSSoheil Hassas Yeganeh 	skb_set_err_queue(skb);
4170b1faf566SEric Dumazet 
4171abb57ea4SEric Dumazet 	/* before exiting rcu section, make sure dst is refcounted */
4172abb57ea4SEric Dumazet 	skb_dst_force(skb);
4173abb57ea4SEric Dumazet 
4174b1faf566SEric Dumazet 	skb_queue_tail(&sk->sk_error_queue, skb);
4175b1faf566SEric Dumazet 	if (!sock_flag(sk, SOCK_DEAD))
4176676d2369SDavid S. Miller 		sk->sk_data_ready(sk);
4177b1faf566SEric Dumazet 	return 0;
4178b1faf566SEric Dumazet }
4179b1faf566SEric Dumazet EXPORT_SYMBOL(sock_queue_err_skb);
4180b1faf566SEric Dumazet 
418183a1a1a7SSoheil Hassas Yeganeh static bool is_icmp_err_skb(const struct sk_buff *skb)
418283a1a1a7SSoheil Hassas Yeganeh {
418383a1a1a7SSoheil Hassas Yeganeh 	return skb && (SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
418483a1a1a7SSoheil Hassas Yeganeh 		       SKB_EXT_ERR(skb)->ee.ee_origin == SO_EE_ORIGIN_ICMP6);
418583a1a1a7SSoheil Hassas Yeganeh }
418683a1a1a7SSoheil Hassas Yeganeh 
4187364a9e93SWillem de Bruijn struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
4188364a9e93SWillem de Bruijn {
4189364a9e93SWillem de Bruijn 	struct sk_buff_head *q = &sk->sk_error_queue;
419083a1a1a7SSoheil Hassas Yeganeh 	struct sk_buff *skb, *skb_next = NULL;
419183a1a1a7SSoheil Hassas Yeganeh 	bool icmp_next = false;
4192997d5c3fSEric Dumazet 	unsigned long flags;
4193364a9e93SWillem de Bruijn 
4194997d5c3fSEric Dumazet 	spin_lock_irqsave(&q->lock, flags);
4195364a9e93SWillem de Bruijn 	skb = __skb_dequeue(q);
419638b25793SSoheil Hassas Yeganeh 	if (skb && (skb_next = skb_peek(q))) {
419783a1a1a7SSoheil Hassas Yeganeh 		icmp_next = is_icmp_err_skb(skb_next);
419838b25793SSoheil Hassas Yeganeh 		if (icmp_next)
419938b25793SSoheil Hassas Yeganeh 			sk->sk_err = SKB_EXT_ERR(skb_next)->ee.ee_origin;
420038b25793SSoheil Hassas Yeganeh 	}
4201997d5c3fSEric Dumazet 	spin_unlock_irqrestore(&q->lock, flags);
4202364a9e93SWillem de Bruijn 
420383a1a1a7SSoheil Hassas Yeganeh 	if (is_icmp_err_skb(skb) && !icmp_next)
420483a1a1a7SSoheil Hassas Yeganeh 		sk->sk_err = 0;
420583a1a1a7SSoheil Hassas Yeganeh 
420683a1a1a7SSoheil Hassas Yeganeh 	if (skb_next)
4207364a9e93SWillem de Bruijn 		sk->sk_error_report(sk);
4208364a9e93SWillem de Bruijn 
4209364a9e93SWillem de Bruijn 	return skb;
4210364a9e93SWillem de Bruijn }
4211364a9e93SWillem de Bruijn EXPORT_SYMBOL(sock_dequeue_err_skb);
4212364a9e93SWillem de Bruijn 
4213cab41c47SAlexander Duyck /**
4214cab41c47SAlexander Duyck  * skb_clone_sk - create clone of skb, and take reference to socket
4215cab41c47SAlexander Duyck  * @skb: the skb to clone
4216cab41c47SAlexander Duyck  *
4217cab41c47SAlexander Duyck  * This function creates a clone of a buffer that holds a reference on
4218cab41c47SAlexander Duyck  * sk_refcnt.  Buffers created via this function are meant to be
4219cab41c47SAlexander Duyck  * returned using sock_queue_err_skb, or free via kfree_skb.
4220cab41c47SAlexander Duyck  *
4221cab41c47SAlexander Duyck  * When passing buffers allocated with this function to sock_queue_err_skb
4222cab41c47SAlexander Duyck  * it is necessary to wrap the call with sock_hold/sock_put in order to
4223cab41c47SAlexander Duyck  * prevent the socket from being released prior to being enqueued on
4224cab41c47SAlexander Duyck  * the sk_error_queue.
4225cab41c47SAlexander Duyck  */
422662bccb8cSAlexander Duyck struct sk_buff *skb_clone_sk(struct sk_buff *skb)
422762bccb8cSAlexander Duyck {
422862bccb8cSAlexander Duyck 	struct sock *sk = skb->sk;
422962bccb8cSAlexander Duyck 	struct sk_buff *clone;
423062bccb8cSAlexander Duyck 
423141c6d650SReshetova, Elena 	if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
423262bccb8cSAlexander Duyck 		return NULL;
423362bccb8cSAlexander Duyck 
423462bccb8cSAlexander Duyck 	clone = skb_clone(skb, GFP_ATOMIC);
423562bccb8cSAlexander Duyck 	if (!clone) {
423662bccb8cSAlexander Duyck 		sock_put(sk);
423762bccb8cSAlexander Duyck 		return NULL;
423862bccb8cSAlexander Duyck 	}
423962bccb8cSAlexander Duyck 
424062bccb8cSAlexander Duyck 	clone->sk = sk;
424162bccb8cSAlexander Duyck 	clone->destructor = sock_efree;
424262bccb8cSAlexander Duyck 
424362bccb8cSAlexander Duyck 	return clone;
424462bccb8cSAlexander Duyck }
424562bccb8cSAlexander Duyck EXPORT_SYMBOL(skb_clone_sk);
424662bccb8cSAlexander Duyck 
424737846ef0SAlexander Duyck static void __skb_complete_tx_timestamp(struct sk_buff *skb,
424837846ef0SAlexander Duyck 					struct sock *sk,
42494ef1b286SSoheil Hassas Yeganeh 					int tstype,
42504ef1b286SSoheil Hassas Yeganeh 					bool opt_stats)
4251ac45f602SPatrick Ohly {
4252ac45f602SPatrick Ohly 	struct sock_exterr_skb *serr;
4253ac45f602SPatrick Ohly 	int err;
4254ac45f602SPatrick Ohly 
42554ef1b286SSoheil Hassas Yeganeh 	BUILD_BUG_ON(sizeof(struct sock_exterr_skb) > sizeof(skb->cb));
42564ef1b286SSoheil Hassas Yeganeh 
4257ac45f602SPatrick Ohly 	serr = SKB_EXT_ERR(skb);
4258ac45f602SPatrick Ohly 	memset(serr, 0, sizeof(*serr));
4259ac45f602SPatrick Ohly 	serr->ee.ee_errno = ENOMSG;
4260ac45f602SPatrick Ohly 	serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
4261e7fd2885SWillem de Bruijn 	serr->ee.ee_info = tstype;
42624ef1b286SSoheil Hassas Yeganeh 	serr->opt_stats = opt_stats;
42631862d620SWillem de Bruijn 	serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
42644ed2d765SWillem de Bruijn 	if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
426509c2d251SWillem de Bruijn 		serr->ee.ee_data = skb_shinfo(skb)->tskey;
4266ac5cc977SWANG Cong 		if (sk->sk_protocol == IPPROTO_TCP &&
4267ac5cc977SWANG Cong 		    sk->sk_type == SOCK_STREAM)
42684ed2d765SWillem de Bruijn 			serr->ee.ee_data -= sk->sk_tskey;
42694ed2d765SWillem de Bruijn 	}
427029030374SEric Dumazet 
4271ac45f602SPatrick Ohly 	err = sock_queue_err_skb(sk, skb);
427229030374SEric Dumazet 
4273ac45f602SPatrick Ohly 	if (err)
4274ac45f602SPatrick Ohly 		kfree_skb(skb);
4275ac45f602SPatrick Ohly }
427637846ef0SAlexander Duyck 
4277b245be1fSWillem de Bruijn static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
4278b245be1fSWillem de Bruijn {
4279b245be1fSWillem de Bruijn 	bool ret;
4280b245be1fSWillem de Bruijn 
4281b245be1fSWillem de Bruijn 	if (likely(sysctl_tstamp_allow_data || tsonly))
4282b245be1fSWillem de Bruijn 		return true;
4283b245be1fSWillem de Bruijn 
4284b245be1fSWillem de Bruijn 	read_lock_bh(&sk->sk_callback_lock);
4285b245be1fSWillem de Bruijn 	ret = sk->sk_socket && sk->sk_socket->file &&
4286b245be1fSWillem de Bruijn 	      file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
4287b245be1fSWillem de Bruijn 	read_unlock_bh(&sk->sk_callback_lock);
4288b245be1fSWillem de Bruijn 	return ret;
4289b245be1fSWillem de Bruijn }
4290b245be1fSWillem de Bruijn 
429137846ef0SAlexander Duyck void skb_complete_tx_timestamp(struct sk_buff *skb,
429237846ef0SAlexander Duyck 			       struct skb_shared_hwtstamps *hwtstamps)
429337846ef0SAlexander Duyck {
429437846ef0SAlexander Duyck 	struct sock *sk = skb->sk;
429537846ef0SAlexander Duyck 
4296b245be1fSWillem de Bruijn 	if (!skb_may_tx_timestamp(sk, false))
429735b99dffSWillem de Bruijn 		goto err;
4298b245be1fSWillem de Bruijn 
42999ac25fc0SEric Dumazet 	/* Take a reference to prevent skb_orphan() from freeing the socket,
43009ac25fc0SEric Dumazet 	 * but only if the socket refcount is not zero.
43019ac25fc0SEric Dumazet 	 */
430241c6d650SReshetova, Elena 	if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
430337846ef0SAlexander Duyck 		*skb_hwtstamps(skb) = *hwtstamps;
43044ef1b286SSoheil Hassas Yeganeh 		__skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND, false);
430537846ef0SAlexander Duyck 		sock_put(sk);
430635b99dffSWillem de Bruijn 		return;
430737846ef0SAlexander Duyck 	}
430835b99dffSWillem de Bruijn 
430935b99dffSWillem de Bruijn err:
431035b99dffSWillem de Bruijn 	kfree_skb(skb);
43119ac25fc0SEric Dumazet }
431237846ef0SAlexander Duyck EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
431337846ef0SAlexander Duyck 
431437846ef0SAlexander Duyck void __skb_tstamp_tx(struct sk_buff *orig_skb,
431537846ef0SAlexander Duyck 		     struct skb_shared_hwtstamps *hwtstamps,
431637846ef0SAlexander Duyck 		     struct sock *sk, int tstype)
431737846ef0SAlexander Duyck {
431837846ef0SAlexander Duyck 	struct sk_buff *skb;
43194ef1b286SSoheil Hassas Yeganeh 	bool tsonly, opt_stats = false;
432037846ef0SAlexander Duyck 
43213a8dd971SWillem de Bruijn 	if (!sk)
43223a8dd971SWillem de Bruijn 		return;
43233a8dd971SWillem de Bruijn 
4324b50a5c70SMiroslav Lichvar 	if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) &&
4325b50a5c70SMiroslav Lichvar 	    skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS)
4326b50a5c70SMiroslav Lichvar 		return;
4327b50a5c70SMiroslav Lichvar 
43283a8dd971SWillem de Bruijn 	tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
43293a8dd971SWillem de Bruijn 	if (!skb_may_tx_timestamp(sk, tsonly))
433037846ef0SAlexander Duyck 		return;
433137846ef0SAlexander Duyck 
43321c885808SFrancis Yan 	if (tsonly) {
43331c885808SFrancis Yan #ifdef CONFIG_INET
43341c885808SFrancis Yan 		if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) &&
43351c885808SFrancis Yan 		    sk->sk_protocol == IPPROTO_TCP &&
43364ef1b286SSoheil Hassas Yeganeh 		    sk->sk_type == SOCK_STREAM) {
43371c885808SFrancis Yan 			skb = tcp_get_timestamping_opt_stats(sk);
43384ef1b286SSoheil Hassas Yeganeh 			opt_stats = true;
43394ef1b286SSoheil Hassas Yeganeh 		} else
43401c885808SFrancis Yan #endif
43411c885808SFrancis Yan 			skb = alloc_skb(0, GFP_ATOMIC);
43421c885808SFrancis Yan 	} else {
434337846ef0SAlexander Duyck 		skb = skb_clone(orig_skb, GFP_ATOMIC);
43441c885808SFrancis Yan 	}
434537846ef0SAlexander Duyck 	if (!skb)
434637846ef0SAlexander Duyck 		return;
434737846ef0SAlexander Duyck 
434849ca0d8bSWillem de Bruijn 	if (tsonly) {
4349fff88030SWillem de Bruijn 		skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
4350fff88030SWillem de Bruijn 					     SKBTX_ANY_TSTAMP;
435149ca0d8bSWillem de Bruijn 		skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
435249ca0d8bSWillem de Bruijn 	}
435349ca0d8bSWillem de Bruijn 
435449ca0d8bSWillem de Bruijn 	if (hwtstamps)
435549ca0d8bSWillem de Bruijn 		*skb_hwtstamps(skb) = *hwtstamps;
435649ca0d8bSWillem de Bruijn 	else
435749ca0d8bSWillem de Bruijn 		skb->tstamp = ktime_get_real();
435849ca0d8bSWillem de Bruijn 
43594ef1b286SSoheil Hassas Yeganeh 	__skb_complete_tx_timestamp(skb, sk, tstype, opt_stats);
436037846ef0SAlexander Duyck }
4361e7fd2885SWillem de Bruijn EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
4362e7fd2885SWillem de Bruijn 
4363e7fd2885SWillem de Bruijn void skb_tstamp_tx(struct sk_buff *orig_skb,
4364e7fd2885SWillem de Bruijn 		   struct skb_shared_hwtstamps *hwtstamps)
4365e7fd2885SWillem de Bruijn {
4366e7fd2885SWillem de Bruijn 	return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
4367e7fd2885SWillem de Bruijn 			       SCM_TSTAMP_SND);
4368e7fd2885SWillem de Bruijn }
4369ac45f602SPatrick Ohly EXPORT_SYMBOL_GPL(skb_tstamp_tx);
4370ac45f602SPatrick Ohly 
43716e3e939fSJohannes Berg void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
43726e3e939fSJohannes Berg {
43736e3e939fSJohannes Berg 	struct sock *sk = skb->sk;
43746e3e939fSJohannes Berg 	struct sock_exterr_skb *serr;
4375dd4f1072SEric Dumazet 	int err = 1;
43766e3e939fSJohannes Berg 
43776e3e939fSJohannes Berg 	skb->wifi_acked_valid = 1;
43786e3e939fSJohannes Berg 	skb->wifi_acked = acked;
43796e3e939fSJohannes Berg 
43806e3e939fSJohannes Berg 	serr = SKB_EXT_ERR(skb);
43816e3e939fSJohannes Berg 	memset(serr, 0, sizeof(*serr));
43826e3e939fSJohannes Berg 	serr->ee.ee_errno = ENOMSG;
43836e3e939fSJohannes Berg 	serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
43846e3e939fSJohannes Berg 
4385dd4f1072SEric Dumazet 	/* Take a reference to prevent skb_orphan() from freeing the socket,
4386dd4f1072SEric Dumazet 	 * but only if the socket refcount is not zero.
4387dd4f1072SEric Dumazet 	 */
438841c6d650SReshetova, Elena 	if (likely(refcount_inc_not_zero(&sk->sk_refcnt))) {
43896e3e939fSJohannes Berg 		err = sock_queue_err_skb(sk, skb);
4390dd4f1072SEric Dumazet 		sock_put(sk);
4391dd4f1072SEric Dumazet 	}
43926e3e939fSJohannes Berg 	if (err)
43936e3e939fSJohannes Berg 		kfree_skb(skb);
43946e3e939fSJohannes Berg }
43956e3e939fSJohannes Berg EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
43966e3e939fSJohannes Berg 
4397f35d9d8aSRusty Russell /**
4398f35d9d8aSRusty Russell  * skb_partial_csum_set - set up and verify partial csum values for packet
4399f35d9d8aSRusty Russell  * @skb: the skb to set
4400f35d9d8aSRusty Russell  * @start: the number of bytes after skb->data to start checksumming.
4401f35d9d8aSRusty Russell  * @off: the offset from start to place the checksum.
4402f35d9d8aSRusty Russell  *
4403f35d9d8aSRusty Russell  * For untrusted partially-checksummed packets, we need to make sure the values
4404f35d9d8aSRusty Russell  * for skb->csum_start and skb->csum_offset are valid so we don't oops.
4405f35d9d8aSRusty Russell  *
4406f35d9d8aSRusty Russell  * This function checks and sets those values and skb->ip_summed: if this
4407f35d9d8aSRusty Russell  * returns false you should drop the packet.
4408f35d9d8aSRusty Russell  */
4409f35d9d8aSRusty Russell bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
4410f35d9d8aSRusty Russell {
44115ff8dda3SHerbert Xu 	if (unlikely(start > skb_headlen(skb)) ||
44125ff8dda3SHerbert Xu 	    unlikely((int)start + off > skb_headlen(skb) - 2)) {
4413e87cc472SJoe Perches 		net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
44145ff8dda3SHerbert Xu 				     start, off, skb_headlen(skb));
4415f35d9d8aSRusty Russell 		return false;
4416f35d9d8aSRusty Russell 	}
4417f35d9d8aSRusty Russell 	skb->ip_summed = CHECKSUM_PARTIAL;
4418f35d9d8aSRusty Russell 	skb->csum_start = skb_headroom(skb) + start;
4419f35d9d8aSRusty Russell 	skb->csum_offset = off;
4420e5d5decaSJason Wang 	skb_set_transport_header(skb, start);
4421f35d9d8aSRusty Russell 	return true;
4422f35d9d8aSRusty Russell }
4423b4ac530fSDavid S. Miller EXPORT_SYMBOL_GPL(skb_partial_csum_set);
4424f35d9d8aSRusty Russell 
4425ed1f50c3SPaul Durrant static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
4426ed1f50c3SPaul Durrant 			       unsigned int max)
4427ed1f50c3SPaul Durrant {
4428ed1f50c3SPaul Durrant 	if (skb_headlen(skb) >= len)
4429ed1f50c3SPaul Durrant 		return 0;
4430ed1f50c3SPaul Durrant 
4431ed1f50c3SPaul Durrant 	/* If we need to pullup then pullup to the max, so we
4432ed1f50c3SPaul Durrant 	 * won't need to do it again.
4433ed1f50c3SPaul Durrant 	 */
4434ed1f50c3SPaul Durrant 	if (max > skb->len)
4435ed1f50c3SPaul Durrant 		max = skb->len;
4436ed1f50c3SPaul Durrant 
4437ed1f50c3SPaul Durrant 	if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
4438ed1f50c3SPaul Durrant 		return -ENOMEM;
4439ed1f50c3SPaul Durrant 
4440ed1f50c3SPaul Durrant 	if (skb_headlen(skb) < len)
4441ed1f50c3SPaul Durrant 		return -EPROTO;
4442ed1f50c3SPaul Durrant 
4443ed1f50c3SPaul Durrant 	return 0;
4444ed1f50c3SPaul Durrant }
4445ed1f50c3SPaul Durrant 
4446f9708b43SJan Beulich #define MAX_TCP_HDR_LEN (15 * 4)
4447f9708b43SJan Beulich 
4448f9708b43SJan Beulich static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
4449f9708b43SJan Beulich 				      typeof(IPPROTO_IP) proto,
4450f9708b43SJan Beulich 				      unsigned int off)
4451f9708b43SJan Beulich {
4452f9708b43SJan Beulich 	switch (proto) {
4453f9708b43SJan Beulich 		int err;
4454f9708b43SJan Beulich 
4455f9708b43SJan Beulich 	case IPPROTO_TCP:
4456f9708b43SJan Beulich 		err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
4457f9708b43SJan Beulich 					  off + MAX_TCP_HDR_LEN);
4458f9708b43SJan Beulich 		if (!err && !skb_partial_csum_set(skb, off,
4459f9708b43SJan Beulich 						  offsetof(struct tcphdr,
4460f9708b43SJan Beulich 							   check)))
4461f9708b43SJan Beulich 			err = -EPROTO;
4462f9708b43SJan Beulich 		return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4463f9708b43SJan Beulich 
4464f9708b43SJan Beulich 	case IPPROTO_UDP:
4465f9708b43SJan Beulich 		err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4466f9708b43SJan Beulich 					  off + sizeof(struct udphdr));
4467f9708b43SJan Beulich 		if (!err && !skb_partial_csum_set(skb, off,
4468f9708b43SJan Beulich 						  offsetof(struct udphdr,
4469f9708b43SJan Beulich 							   check)))
4470f9708b43SJan Beulich 			err = -EPROTO;
4471f9708b43SJan Beulich 		return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4472f9708b43SJan Beulich 	}
4473f9708b43SJan Beulich 
4474f9708b43SJan Beulich 	return ERR_PTR(-EPROTO);
4475f9708b43SJan Beulich }
4476f9708b43SJan Beulich 
4477ed1f50c3SPaul Durrant /* This value should be large enough to cover a tagged ethernet header plus
4478ed1f50c3SPaul Durrant  * maximally sized IP and TCP or UDP headers.
4479ed1f50c3SPaul Durrant  */
4480ed1f50c3SPaul Durrant #define MAX_IP_HDR_LEN 128
4481ed1f50c3SPaul Durrant 
4482f9708b43SJan Beulich static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
4483ed1f50c3SPaul Durrant {
4484ed1f50c3SPaul Durrant 	unsigned int off;
4485ed1f50c3SPaul Durrant 	bool fragment;
4486f9708b43SJan Beulich 	__sum16 *csum;
4487ed1f50c3SPaul Durrant 	int err;
4488ed1f50c3SPaul Durrant 
4489ed1f50c3SPaul Durrant 	fragment = false;
4490ed1f50c3SPaul Durrant 
4491ed1f50c3SPaul Durrant 	err = skb_maybe_pull_tail(skb,
4492ed1f50c3SPaul Durrant 				  sizeof(struct iphdr),
4493ed1f50c3SPaul Durrant 				  MAX_IP_HDR_LEN);
4494ed1f50c3SPaul Durrant 	if (err < 0)
4495ed1f50c3SPaul Durrant 		goto out;
4496ed1f50c3SPaul Durrant 
4497ed1f50c3SPaul Durrant 	if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
4498ed1f50c3SPaul Durrant 		fragment = true;
4499ed1f50c3SPaul Durrant 
4500ed1f50c3SPaul Durrant 	off = ip_hdrlen(skb);
4501ed1f50c3SPaul Durrant 
4502ed1f50c3SPaul Durrant 	err = -EPROTO;
4503ed1f50c3SPaul Durrant 
4504ed1f50c3SPaul Durrant 	if (fragment)
4505ed1f50c3SPaul Durrant 		goto out;
4506ed1f50c3SPaul Durrant 
4507f9708b43SJan Beulich 	csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4508f9708b43SJan Beulich 	if (IS_ERR(csum))
4509f9708b43SJan Beulich 		return PTR_ERR(csum);
4510ed1f50c3SPaul Durrant 
4511ed1f50c3SPaul Durrant 	if (recalculate)
4512f9708b43SJan Beulich 		*csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4513ed1f50c3SPaul Durrant 					   ip_hdr(skb)->daddr,
4514ed1f50c3SPaul Durrant 					   skb->len - off,
4515f9708b43SJan Beulich 					   ip_hdr(skb)->protocol, 0);
4516ed1f50c3SPaul Durrant 	err = 0;
4517ed1f50c3SPaul Durrant 
4518ed1f50c3SPaul Durrant out:
4519ed1f50c3SPaul Durrant 	return err;
4520ed1f50c3SPaul Durrant }
4521ed1f50c3SPaul Durrant 
4522ed1f50c3SPaul Durrant /* This value should be large enough to cover a tagged ethernet header plus
4523ed1f50c3SPaul Durrant  * an IPv6 header, all options, and a maximal TCP or UDP header.
4524ed1f50c3SPaul Durrant  */
4525ed1f50c3SPaul Durrant #define MAX_IPV6_HDR_LEN 256
4526ed1f50c3SPaul Durrant 
4527ed1f50c3SPaul Durrant #define OPT_HDR(type, skb, off) \
4528ed1f50c3SPaul Durrant 	(type *)(skb_network_header(skb) + (off))
4529ed1f50c3SPaul Durrant 
4530ed1f50c3SPaul Durrant static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4531ed1f50c3SPaul Durrant {
4532ed1f50c3SPaul Durrant 	int err;
4533ed1f50c3SPaul Durrant 	u8 nexthdr;
4534ed1f50c3SPaul Durrant 	unsigned int off;
4535ed1f50c3SPaul Durrant 	unsigned int len;
4536ed1f50c3SPaul Durrant 	bool fragment;
4537ed1f50c3SPaul Durrant 	bool done;
4538f9708b43SJan Beulich 	__sum16 *csum;
4539ed1f50c3SPaul Durrant 
4540ed1f50c3SPaul Durrant 	fragment = false;
4541ed1f50c3SPaul Durrant 	done = false;
4542ed1f50c3SPaul Durrant 
4543ed1f50c3SPaul Durrant 	off = sizeof(struct ipv6hdr);
4544ed1f50c3SPaul Durrant 
4545ed1f50c3SPaul Durrant 	err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4546ed1f50c3SPaul Durrant 	if (err < 0)
4547ed1f50c3SPaul Durrant 		goto out;
4548ed1f50c3SPaul Durrant 
4549ed1f50c3SPaul Durrant 	nexthdr = ipv6_hdr(skb)->nexthdr;
4550ed1f50c3SPaul Durrant 
4551ed1f50c3SPaul Durrant 	len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4552ed1f50c3SPaul Durrant 	while (off <= len && !done) {
4553ed1f50c3SPaul Durrant 		switch (nexthdr) {
4554ed1f50c3SPaul Durrant 		case IPPROTO_DSTOPTS:
4555ed1f50c3SPaul Durrant 		case IPPROTO_HOPOPTS:
4556ed1f50c3SPaul Durrant 		case IPPROTO_ROUTING: {
4557ed1f50c3SPaul Durrant 			struct ipv6_opt_hdr *hp;
4558ed1f50c3SPaul Durrant 
4559ed1f50c3SPaul Durrant 			err = skb_maybe_pull_tail(skb,
4560ed1f50c3SPaul Durrant 						  off +
4561ed1f50c3SPaul Durrant 						  sizeof(struct ipv6_opt_hdr),
4562ed1f50c3SPaul Durrant 						  MAX_IPV6_HDR_LEN);
4563ed1f50c3SPaul Durrant 			if (err < 0)
4564ed1f50c3SPaul Durrant 				goto out;
4565ed1f50c3SPaul Durrant 
4566ed1f50c3SPaul Durrant 			hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4567ed1f50c3SPaul Durrant 			nexthdr = hp->nexthdr;
4568ed1f50c3SPaul Durrant 			off += ipv6_optlen(hp);
4569ed1f50c3SPaul Durrant 			break;
4570ed1f50c3SPaul Durrant 		}
4571ed1f50c3SPaul Durrant 		case IPPROTO_AH: {
4572ed1f50c3SPaul Durrant 			struct ip_auth_hdr *hp;
4573ed1f50c3SPaul Durrant 
4574ed1f50c3SPaul Durrant 			err = skb_maybe_pull_tail(skb,
4575ed1f50c3SPaul Durrant 						  off +
4576ed1f50c3SPaul Durrant 						  sizeof(struct ip_auth_hdr),
4577ed1f50c3SPaul Durrant 						  MAX_IPV6_HDR_LEN);
4578ed1f50c3SPaul Durrant 			if (err < 0)
4579ed1f50c3SPaul Durrant 				goto out;
4580ed1f50c3SPaul Durrant 
4581ed1f50c3SPaul Durrant 			hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4582ed1f50c3SPaul Durrant 			nexthdr = hp->nexthdr;
4583ed1f50c3SPaul Durrant 			off += ipv6_authlen(hp);
4584ed1f50c3SPaul Durrant 			break;
4585ed1f50c3SPaul Durrant 		}
4586ed1f50c3SPaul Durrant 		case IPPROTO_FRAGMENT: {
4587ed1f50c3SPaul Durrant 			struct frag_hdr *hp;
4588ed1f50c3SPaul Durrant 
4589ed1f50c3SPaul Durrant 			err = skb_maybe_pull_tail(skb,
4590ed1f50c3SPaul Durrant 						  off +
4591ed1f50c3SPaul Durrant 						  sizeof(struct frag_hdr),
4592ed1f50c3SPaul Durrant 						  MAX_IPV6_HDR_LEN);
4593ed1f50c3SPaul Durrant 			if (err < 0)
4594ed1f50c3SPaul Durrant 				goto out;
4595ed1f50c3SPaul Durrant 
4596ed1f50c3SPaul Durrant 			hp = OPT_HDR(struct frag_hdr, skb, off);
4597ed1f50c3SPaul Durrant 
4598ed1f50c3SPaul Durrant 			if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
4599ed1f50c3SPaul Durrant 				fragment = true;
4600ed1f50c3SPaul Durrant 
4601ed1f50c3SPaul Durrant 			nexthdr = hp->nexthdr;
4602ed1f50c3SPaul Durrant 			off += sizeof(struct frag_hdr);
4603ed1f50c3SPaul Durrant 			break;
4604ed1f50c3SPaul Durrant 		}
4605ed1f50c3SPaul Durrant 		default:
4606ed1f50c3SPaul Durrant 			done = true;
4607ed1f50c3SPaul Durrant 			break;
4608ed1f50c3SPaul Durrant 		}
4609ed1f50c3SPaul Durrant 	}
4610ed1f50c3SPaul Durrant 
4611ed1f50c3SPaul Durrant 	err = -EPROTO;
4612ed1f50c3SPaul Durrant 
4613ed1f50c3SPaul Durrant 	if (!done || fragment)
4614ed1f50c3SPaul Durrant 		goto out;
4615ed1f50c3SPaul Durrant 
4616f9708b43SJan Beulich 	csum = skb_checksum_setup_ip(skb, nexthdr, off);
4617f9708b43SJan Beulich 	if (IS_ERR(csum))
4618f9708b43SJan Beulich 		return PTR_ERR(csum);
4619ed1f50c3SPaul Durrant 
4620ed1f50c3SPaul Durrant 	if (recalculate)
4621f9708b43SJan Beulich 		*csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4622ed1f50c3SPaul Durrant 					 &ipv6_hdr(skb)->daddr,
4623f9708b43SJan Beulich 					 skb->len - off, nexthdr, 0);
4624ed1f50c3SPaul Durrant 	err = 0;
4625ed1f50c3SPaul Durrant 
4626ed1f50c3SPaul Durrant out:
4627ed1f50c3SPaul Durrant 	return err;
4628ed1f50c3SPaul Durrant }
4629ed1f50c3SPaul Durrant 
4630ed1f50c3SPaul Durrant /**
4631ed1f50c3SPaul Durrant  * skb_checksum_setup - set up partial checksum offset
4632ed1f50c3SPaul Durrant  * @skb: the skb to set up
4633ed1f50c3SPaul Durrant  * @recalculate: if true the pseudo-header checksum will be recalculated
4634ed1f50c3SPaul Durrant  */
4635ed1f50c3SPaul Durrant int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4636ed1f50c3SPaul Durrant {
4637ed1f50c3SPaul Durrant 	int err;
4638ed1f50c3SPaul Durrant 
4639ed1f50c3SPaul Durrant 	switch (skb->protocol) {
4640ed1f50c3SPaul Durrant 	case htons(ETH_P_IP):
4641f9708b43SJan Beulich 		err = skb_checksum_setup_ipv4(skb, recalculate);
4642ed1f50c3SPaul Durrant 		break;
4643ed1f50c3SPaul Durrant 
4644ed1f50c3SPaul Durrant 	case htons(ETH_P_IPV6):
4645ed1f50c3SPaul Durrant 		err = skb_checksum_setup_ipv6(skb, recalculate);
4646ed1f50c3SPaul Durrant 		break;
4647ed1f50c3SPaul Durrant 
4648ed1f50c3SPaul Durrant 	default:
4649ed1f50c3SPaul Durrant 		err = -EPROTO;
4650ed1f50c3SPaul Durrant 		break;
4651ed1f50c3SPaul Durrant 	}
4652ed1f50c3SPaul Durrant 
4653ed1f50c3SPaul Durrant 	return err;
4654ed1f50c3SPaul Durrant }
4655ed1f50c3SPaul Durrant EXPORT_SYMBOL(skb_checksum_setup);
4656ed1f50c3SPaul Durrant 
46579afd85c9SLinus Lüssing /**
46589afd85c9SLinus Lüssing  * skb_checksum_maybe_trim - maybe trims the given skb
46599afd85c9SLinus Lüssing  * @skb: the skb to check
46609afd85c9SLinus Lüssing  * @transport_len: the data length beyond the network header
46619afd85c9SLinus Lüssing  *
46629afd85c9SLinus Lüssing  * Checks whether the given skb has data beyond the given transport length.
46639afd85c9SLinus Lüssing  * If so, returns a cloned skb trimmed to this transport length.
46649afd85c9SLinus Lüssing  * Otherwise returns the provided skb. Returns NULL in error cases
46659afd85c9SLinus Lüssing  * (e.g. transport_len exceeds skb length or out-of-memory).
46669afd85c9SLinus Lüssing  *
4667a516993fSLinus Lüssing  * Caller needs to set the skb transport header and free any returned skb if it
4668a516993fSLinus Lüssing  * differs from the provided skb.
46699afd85c9SLinus Lüssing  */
46709afd85c9SLinus Lüssing static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
46719afd85c9SLinus Lüssing 					       unsigned int transport_len)
46729afd85c9SLinus Lüssing {
46739afd85c9SLinus Lüssing 	struct sk_buff *skb_chk;
46749afd85c9SLinus Lüssing 	unsigned int len = skb_transport_offset(skb) + transport_len;
46759afd85c9SLinus Lüssing 	int ret;
46769afd85c9SLinus Lüssing 
4677a516993fSLinus Lüssing 	if (skb->len < len)
46789afd85c9SLinus Lüssing 		return NULL;
4679a516993fSLinus Lüssing 	else if (skb->len == len)
46809afd85c9SLinus Lüssing 		return skb;
46819afd85c9SLinus Lüssing 
46829afd85c9SLinus Lüssing 	skb_chk = skb_clone(skb, GFP_ATOMIC);
46839afd85c9SLinus Lüssing 	if (!skb_chk)
46849afd85c9SLinus Lüssing 		return NULL;
46859afd85c9SLinus Lüssing 
46869afd85c9SLinus Lüssing 	ret = pskb_trim_rcsum(skb_chk, len);
46879afd85c9SLinus Lüssing 	if (ret) {
46889afd85c9SLinus Lüssing 		kfree_skb(skb_chk);
46899afd85c9SLinus Lüssing 		return NULL;
46909afd85c9SLinus Lüssing 	}
46919afd85c9SLinus Lüssing 
46929afd85c9SLinus Lüssing 	return skb_chk;
46939afd85c9SLinus Lüssing }
46949afd85c9SLinus Lüssing 
46959afd85c9SLinus Lüssing /**
46969afd85c9SLinus Lüssing  * skb_checksum_trimmed - validate checksum of an skb
46979afd85c9SLinus Lüssing  * @skb: the skb to check
46989afd85c9SLinus Lüssing  * @transport_len: the data length beyond the network header
46999afd85c9SLinus Lüssing  * @skb_chkf: checksum function to use
47009afd85c9SLinus Lüssing  *
47019afd85c9SLinus Lüssing  * Applies the given checksum function skb_chkf to the provided skb.
47029afd85c9SLinus Lüssing  * Returns a checked and maybe trimmed skb. Returns NULL on error.
47039afd85c9SLinus Lüssing  *
47049afd85c9SLinus Lüssing  * If the skb has data beyond the given transport length, then a
47059afd85c9SLinus Lüssing  * trimmed & cloned skb is checked and returned.
47069afd85c9SLinus Lüssing  *
4707a516993fSLinus Lüssing  * Caller needs to set the skb transport header and free any returned skb if it
4708a516993fSLinus Lüssing  * differs from the provided skb.
47099afd85c9SLinus Lüssing  */
47109afd85c9SLinus Lüssing struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
47119afd85c9SLinus Lüssing 				     unsigned int transport_len,
47129afd85c9SLinus Lüssing 				     __sum16(*skb_chkf)(struct sk_buff *skb))
47139afd85c9SLinus Lüssing {
47149afd85c9SLinus Lüssing 	struct sk_buff *skb_chk;
47159afd85c9SLinus Lüssing 	unsigned int offset = skb_transport_offset(skb);
4716fcba67c9SLinus Lüssing 	__sum16 ret;
47179afd85c9SLinus Lüssing 
47189afd85c9SLinus Lüssing 	skb_chk = skb_checksum_maybe_trim(skb, transport_len);
47199afd85c9SLinus Lüssing 	if (!skb_chk)
4720a516993fSLinus Lüssing 		goto err;
47219afd85c9SLinus Lüssing 
4722a516993fSLinus Lüssing 	if (!pskb_may_pull(skb_chk, offset))
4723a516993fSLinus Lüssing 		goto err;
47249afd85c9SLinus Lüssing 
47259b368814SLinus Lüssing 	skb_pull_rcsum(skb_chk, offset);
47269afd85c9SLinus Lüssing 	ret = skb_chkf(skb_chk);
47279b368814SLinus Lüssing 	skb_push_rcsum(skb_chk, offset);
47289afd85c9SLinus Lüssing 
4729a516993fSLinus Lüssing 	if (ret)
4730a516993fSLinus Lüssing 		goto err;
47319afd85c9SLinus Lüssing 
47329afd85c9SLinus Lüssing 	return skb_chk;
4733a516993fSLinus Lüssing 
4734a516993fSLinus Lüssing err:
4735a516993fSLinus Lüssing 	if (skb_chk && skb_chk != skb)
4736a516993fSLinus Lüssing 		kfree_skb(skb_chk);
4737a516993fSLinus Lüssing 
4738a516993fSLinus Lüssing 	return NULL;
4739a516993fSLinus Lüssing 
47409afd85c9SLinus Lüssing }
47419afd85c9SLinus Lüssing EXPORT_SYMBOL(skb_checksum_trimmed);
47429afd85c9SLinus Lüssing 
47434497b076SBen Hutchings void __skb_warn_lro_forwarding(const struct sk_buff *skb)
47444497b076SBen Hutchings {
4745e87cc472SJoe Perches 	net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4746e87cc472SJoe Perches 			     skb->dev->name);
47474497b076SBen Hutchings }
47484497b076SBen Hutchings EXPORT_SYMBOL(__skb_warn_lro_forwarding);
4749bad43ca8SEric Dumazet 
4750bad43ca8SEric Dumazet void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4751bad43ca8SEric Dumazet {
47523d861f66SEric Dumazet 	if (head_stolen) {
47533d861f66SEric Dumazet 		skb_release_head_state(skb);
4754bad43ca8SEric Dumazet 		kmem_cache_free(skbuff_head_cache, skb);
47553d861f66SEric Dumazet 	} else {
4756bad43ca8SEric Dumazet 		__kfree_skb(skb);
4757bad43ca8SEric Dumazet 	}
47583d861f66SEric Dumazet }
4759bad43ca8SEric Dumazet EXPORT_SYMBOL(kfree_skb_partial);
4760bad43ca8SEric Dumazet 
4761bad43ca8SEric Dumazet /**
4762bad43ca8SEric Dumazet  * skb_try_coalesce - try to merge skb to prior one
4763bad43ca8SEric Dumazet  * @to: prior buffer
4764bad43ca8SEric Dumazet  * @from: buffer to add
4765bad43ca8SEric Dumazet  * @fragstolen: pointer to boolean
4766c6c4b97cSRandy Dunlap  * @delta_truesize: how much more was allocated than was requested
4767bad43ca8SEric Dumazet  */
4768bad43ca8SEric Dumazet bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4769bad43ca8SEric Dumazet 		      bool *fragstolen, int *delta_truesize)
4770bad43ca8SEric Dumazet {
4771c818fa9eSEric Dumazet 	struct skb_shared_info *to_shinfo, *from_shinfo;
4772bad43ca8SEric Dumazet 	int i, delta, len = from->len;
4773bad43ca8SEric Dumazet 
4774bad43ca8SEric Dumazet 	*fragstolen = false;
4775bad43ca8SEric Dumazet 
4776bad43ca8SEric Dumazet 	if (skb_cloned(to))
4777bad43ca8SEric Dumazet 		return false;
4778bad43ca8SEric Dumazet 
4779bad43ca8SEric Dumazet 	if (len <= skb_tailroom(to)) {
4780e93a0435SEric Dumazet 		if (len)
4781bad43ca8SEric Dumazet 			BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
4782bad43ca8SEric Dumazet 		*delta_truesize = 0;
4783bad43ca8SEric Dumazet 		return true;
4784bad43ca8SEric Dumazet 	}
4785bad43ca8SEric Dumazet 
4786c818fa9eSEric Dumazet 	to_shinfo = skb_shinfo(to);
4787c818fa9eSEric Dumazet 	from_shinfo = skb_shinfo(from);
4788c818fa9eSEric Dumazet 	if (to_shinfo->frag_list || from_shinfo->frag_list)
4789bad43ca8SEric Dumazet 		return false;
47901f8b977aSWillem de Bruijn 	if (skb_zcopy(to) || skb_zcopy(from))
47911f8b977aSWillem de Bruijn 		return false;
4792bad43ca8SEric Dumazet 
4793bad43ca8SEric Dumazet 	if (skb_headlen(from) != 0) {
4794bad43ca8SEric Dumazet 		struct page *page;
4795bad43ca8SEric Dumazet 		unsigned int offset;
4796bad43ca8SEric Dumazet 
4797c818fa9eSEric Dumazet 		if (to_shinfo->nr_frags +
4798c818fa9eSEric Dumazet 		    from_shinfo->nr_frags >= MAX_SKB_FRAGS)
4799bad43ca8SEric Dumazet 			return false;
4800bad43ca8SEric Dumazet 
4801bad43ca8SEric Dumazet 		if (skb_head_is_locked(from))
4802bad43ca8SEric Dumazet 			return false;
4803bad43ca8SEric Dumazet 
4804bad43ca8SEric Dumazet 		delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4805bad43ca8SEric Dumazet 
4806bad43ca8SEric Dumazet 		page = virt_to_head_page(from->head);
4807bad43ca8SEric Dumazet 		offset = from->data - (unsigned char *)page_address(page);
4808bad43ca8SEric Dumazet 
4809c818fa9eSEric Dumazet 		skb_fill_page_desc(to, to_shinfo->nr_frags,
4810bad43ca8SEric Dumazet 				   page, offset, skb_headlen(from));
4811bad43ca8SEric Dumazet 		*fragstolen = true;
4812bad43ca8SEric Dumazet 	} else {
4813c818fa9eSEric Dumazet 		if (to_shinfo->nr_frags +
4814c818fa9eSEric Dumazet 		    from_shinfo->nr_frags > MAX_SKB_FRAGS)
4815bad43ca8SEric Dumazet 			return false;
4816bad43ca8SEric Dumazet 
4817f4b549a5SWeiping Pan 		delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
4818bad43ca8SEric Dumazet 	}
4819bad43ca8SEric Dumazet 
4820bad43ca8SEric Dumazet 	WARN_ON_ONCE(delta < len);
4821bad43ca8SEric Dumazet 
4822c818fa9eSEric Dumazet 	memcpy(to_shinfo->frags + to_shinfo->nr_frags,
4823c818fa9eSEric Dumazet 	       from_shinfo->frags,
4824c818fa9eSEric Dumazet 	       from_shinfo->nr_frags * sizeof(skb_frag_t));
4825c818fa9eSEric Dumazet 	to_shinfo->nr_frags += from_shinfo->nr_frags;
4826bad43ca8SEric Dumazet 
4827bad43ca8SEric Dumazet 	if (!skb_cloned(from))
4828c818fa9eSEric Dumazet 		from_shinfo->nr_frags = 0;
4829bad43ca8SEric Dumazet 
48308ea853fdSLi RongQing 	/* if the skb is not cloned this does nothing
48318ea853fdSLi RongQing 	 * since we set nr_frags to 0.
48328ea853fdSLi RongQing 	 */
4833c818fa9eSEric Dumazet 	for (i = 0; i < from_shinfo->nr_frags; i++)
4834c818fa9eSEric Dumazet 		__skb_frag_ref(&from_shinfo->frags[i]);
4835bad43ca8SEric Dumazet 
4836bad43ca8SEric Dumazet 	to->truesize += delta;
4837bad43ca8SEric Dumazet 	to->len += len;
4838bad43ca8SEric Dumazet 	to->data_len += len;
4839bad43ca8SEric Dumazet 
4840bad43ca8SEric Dumazet 	*delta_truesize = delta;
4841bad43ca8SEric Dumazet 	return true;
4842bad43ca8SEric Dumazet }
4843bad43ca8SEric Dumazet EXPORT_SYMBOL(skb_try_coalesce);
4844621e84d6SNicolas Dichtel 
4845621e84d6SNicolas Dichtel /**
48468b27f277SNicolas Dichtel  * skb_scrub_packet - scrub an skb
4847621e84d6SNicolas Dichtel  *
4848621e84d6SNicolas Dichtel  * @skb: buffer to clean
48498b27f277SNicolas Dichtel  * @xnet: packet is crossing netns
4850621e84d6SNicolas Dichtel  *
48518b27f277SNicolas Dichtel  * skb_scrub_packet can be used after encapsulating or decapsulting a packet
48528b27f277SNicolas Dichtel  * into/from a tunnel. Some information have to be cleared during these
48538b27f277SNicolas Dichtel  * operations.
48548b27f277SNicolas Dichtel  * skb_scrub_packet can also be used to clean a skb before injecting it in
48558b27f277SNicolas Dichtel  * another namespace (@xnet == true). We have to clear all information in the
48568b27f277SNicolas Dichtel  * skb that could impact namespace isolation.
4857621e84d6SNicolas Dichtel  */
48588b27f277SNicolas Dichtel void skb_scrub_packet(struct sk_buff *skb, bool xnet)
4859621e84d6SNicolas Dichtel {
48602456e855SThomas Gleixner 	skb->tstamp = 0;
4861621e84d6SNicolas Dichtel 	skb->pkt_type = PACKET_HOST;
4862621e84d6SNicolas Dichtel 	skb->skb_iif = 0;
486360ff7467SWANG Cong 	skb->ignore_df = 0;
4864621e84d6SNicolas Dichtel 	skb_dst_drop(skb);
4865621e84d6SNicolas Dichtel 	secpath_reset(skb);
4866621e84d6SNicolas Dichtel 	nf_reset(skb);
4867621e84d6SNicolas Dichtel 	nf_reset_trace(skb);
4868213dd74aSHerbert Xu 
4869213dd74aSHerbert Xu 	if (!xnet)
4870213dd74aSHerbert Xu 		return;
4871213dd74aSHerbert Xu 
48722b5ec1a5SYe Yin 	ipvs_reset(skb);
4873213dd74aSHerbert Xu 	skb_orphan(skb);
4874213dd74aSHerbert Xu 	skb->mark = 0;
4875621e84d6SNicolas Dichtel }
4876621e84d6SNicolas Dichtel EXPORT_SYMBOL_GPL(skb_scrub_packet);
4877de960aa9SFlorian Westphal 
4878de960aa9SFlorian Westphal /**
4879de960aa9SFlorian Westphal  * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4880de960aa9SFlorian Westphal  *
4881de960aa9SFlorian Westphal  * @skb: GSO skb
4882de960aa9SFlorian Westphal  *
4883de960aa9SFlorian Westphal  * skb_gso_transport_seglen is used to determine the real size of the
4884de960aa9SFlorian Westphal  * individual segments, including Layer4 headers (TCP/UDP).
4885de960aa9SFlorian Westphal  *
4886de960aa9SFlorian Westphal  * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4887de960aa9SFlorian Westphal  */
4888de960aa9SFlorian Westphal unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4889de960aa9SFlorian Westphal {
4890de960aa9SFlorian Westphal 	const struct skb_shared_info *shinfo = skb_shinfo(skb);
4891f993bc25SFlorian Westphal 	unsigned int thlen = 0;
4892f993bc25SFlorian Westphal 
4893f993bc25SFlorian Westphal 	if (skb->encapsulation) {
4894f993bc25SFlorian Westphal 		thlen = skb_inner_transport_header(skb) -
4895f993bc25SFlorian Westphal 			skb_transport_header(skb);
4896de960aa9SFlorian Westphal 
4897de960aa9SFlorian Westphal 		if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4898f993bc25SFlorian Westphal 			thlen += inner_tcp_hdrlen(skb);
4899f993bc25SFlorian Westphal 	} else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4900f993bc25SFlorian Westphal 		thlen = tcp_hdrlen(skb);
490190017accSMarcelo Ricardo Leitner 	} else if (unlikely(shinfo->gso_type & SKB_GSO_SCTP)) {
490290017accSMarcelo Ricardo Leitner 		thlen = sizeof(struct sctphdr);
4903f993bc25SFlorian Westphal 	}
49046d39d589SFlorian Westphal 	/* UFO sets gso_size to the size of the fragmentation
49056d39d589SFlorian Westphal 	 * payload, i.e. the size of the L4 (UDP) header is already
49066d39d589SFlorian Westphal 	 * accounted for.
49076d39d589SFlorian Westphal 	 */
4908f993bc25SFlorian Westphal 	return thlen + shinfo->gso_size;
4909de960aa9SFlorian Westphal }
4910de960aa9SFlorian Westphal EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
49110d5501c1SVlad Yasevich 
4912ae7ef81eSMarcelo Ricardo Leitner /**
4913ae7ef81eSMarcelo Ricardo Leitner  * skb_gso_validate_mtu - Return in case such skb fits a given MTU
4914ae7ef81eSMarcelo Ricardo Leitner  *
4915ae7ef81eSMarcelo Ricardo Leitner  * @skb: GSO skb
491676f21b99SDavid S. Miller  * @mtu: MTU to validate against
4917ae7ef81eSMarcelo Ricardo Leitner  *
4918ae7ef81eSMarcelo Ricardo Leitner  * skb_gso_validate_mtu validates if a given skb will fit a wanted MTU
4919ae7ef81eSMarcelo Ricardo Leitner  * once split.
4920ae7ef81eSMarcelo Ricardo Leitner  */
4921ae7ef81eSMarcelo Ricardo Leitner bool skb_gso_validate_mtu(const struct sk_buff *skb, unsigned int mtu)
4922ae7ef81eSMarcelo Ricardo Leitner {
4923ae7ef81eSMarcelo Ricardo Leitner 	const struct skb_shared_info *shinfo = skb_shinfo(skb);
4924ae7ef81eSMarcelo Ricardo Leitner 	const struct sk_buff *iter;
4925ae7ef81eSMarcelo Ricardo Leitner 	unsigned int hlen;
4926ae7ef81eSMarcelo Ricardo Leitner 
4927ae7ef81eSMarcelo Ricardo Leitner 	hlen = skb_gso_network_seglen(skb);
4928ae7ef81eSMarcelo Ricardo Leitner 
4929ae7ef81eSMarcelo Ricardo Leitner 	if (shinfo->gso_size != GSO_BY_FRAGS)
4930ae7ef81eSMarcelo Ricardo Leitner 		return hlen <= mtu;
4931ae7ef81eSMarcelo Ricardo Leitner 
4932ae7ef81eSMarcelo Ricardo Leitner 	/* Undo this so we can re-use header sizes */
4933ae7ef81eSMarcelo Ricardo Leitner 	hlen -= GSO_BY_FRAGS;
4934ae7ef81eSMarcelo Ricardo Leitner 
4935ae7ef81eSMarcelo Ricardo Leitner 	skb_walk_frags(skb, iter) {
4936ae7ef81eSMarcelo Ricardo Leitner 		if (hlen + skb_headlen(iter) > mtu)
4937ae7ef81eSMarcelo Ricardo Leitner 			return false;
4938ae7ef81eSMarcelo Ricardo Leitner 	}
4939ae7ef81eSMarcelo Ricardo Leitner 
4940ae7ef81eSMarcelo Ricardo Leitner 	return true;
4941ae7ef81eSMarcelo Ricardo Leitner }
4942ae7ef81eSMarcelo Ricardo Leitner EXPORT_SYMBOL_GPL(skb_gso_validate_mtu);
4943ae7ef81eSMarcelo Ricardo Leitner 
49440d5501c1SVlad Yasevich static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
49450d5501c1SVlad Yasevich {
49460d5501c1SVlad Yasevich 	if (skb_cow(skb, skb_headroom(skb)) < 0) {
49470d5501c1SVlad Yasevich 		kfree_skb(skb);
49480d5501c1SVlad Yasevich 		return NULL;
49490d5501c1SVlad Yasevich 	}
49500d5501c1SVlad Yasevich 
4951f6548615SVlad Yasevich 	memmove(skb->data - ETH_HLEN, skb->data - skb->mac_len - VLAN_HLEN,
4952a6e18ff1SVlad Yasevich 		2 * ETH_ALEN);
49530d5501c1SVlad Yasevich 	skb->mac_header += VLAN_HLEN;
49540d5501c1SVlad Yasevich 	return skb;
49550d5501c1SVlad Yasevich }
49560d5501c1SVlad Yasevich 
49570d5501c1SVlad Yasevich struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
49580d5501c1SVlad Yasevich {
49590d5501c1SVlad Yasevich 	struct vlan_hdr *vhdr;
49600d5501c1SVlad Yasevich 	u16 vlan_tci;
49610d5501c1SVlad Yasevich 
4962df8a39deSJiri Pirko 	if (unlikely(skb_vlan_tag_present(skb))) {
49630d5501c1SVlad Yasevich 		/* vlan_tci is already set-up so leave this for another time */
49640d5501c1SVlad Yasevich 		return skb;
49650d5501c1SVlad Yasevich 	}
49660d5501c1SVlad Yasevich 
49670d5501c1SVlad Yasevich 	skb = skb_share_check(skb, GFP_ATOMIC);
49680d5501c1SVlad Yasevich 	if (unlikely(!skb))
49690d5501c1SVlad Yasevich 		goto err_free;
49700d5501c1SVlad Yasevich 
49710d5501c1SVlad Yasevich 	if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
49720d5501c1SVlad Yasevich 		goto err_free;
49730d5501c1SVlad Yasevich 
49740d5501c1SVlad Yasevich 	vhdr = (struct vlan_hdr *)skb->data;
49750d5501c1SVlad Yasevich 	vlan_tci = ntohs(vhdr->h_vlan_TCI);
49760d5501c1SVlad Yasevich 	__vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
49770d5501c1SVlad Yasevich 
49780d5501c1SVlad Yasevich 	skb_pull_rcsum(skb, VLAN_HLEN);
49790d5501c1SVlad Yasevich 	vlan_set_encap_proto(skb, vhdr);
49800d5501c1SVlad Yasevich 
49810d5501c1SVlad Yasevich 	skb = skb_reorder_vlan_header(skb);
49820d5501c1SVlad Yasevich 	if (unlikely(!skb))
49830d5501c1SVlad Yasevich 		goto err_free;
49840d5501c1SVlad Yasevich 
49850d5501c1SVlad Yasevich 	skb_reset_network_header(skb);
49860d5501c1SVlad Yasevich 	skb_reset_transport_header(skb);
49870d5501c1SVlad Yasevich 	skb_reset_mac_len(skb);
49880d5501c1SVlad Yasevich 
49890d5501c1SVlad Yasevich 	return skb;
49900d5501c1SVlad Yasevich 
49910d5501c1SVlad Yasevich err_free:
49920d5501c1SVlad Yasevich 	kfree_skb(skb);
49930d5501c1SVlad Yasevich 	return NULL;
49940d5501c1SVlad Yasevich }
49950d5501c1SVlad Yasevich EXPORT_SYMBOL(skb_vlan_untag);
49962e4e4410SEric Dumazet 
4997e2195121SJiri Pirko int skb_ensure_writable(struct sk_buff *skb, int write_len)
4998e2195121SJiri Pirko {
4999e2195121SJiri Pirko 	if (!pskb_may_pull(skb, write_len))
5000e2195121SJiri Pirko 		return -ENOMEM;
5001e2195121SJiri Pirko 
5002e2195121SJiri Pirko 	if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
5003e2195121SJiri Pirko 		return 0;
5004e2195121SJiri Pirko 
5005e2195121SJiri Pirko 	return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
5006e2195121SJiri Pirko }
5007e2195121SJiri Pirko EXPORT_SYMBOL(skb_ensure_writable);
5008e2195121SJiri Pirko 
5009bfca4c52SShmulik Ladkani /* remove VLAN header from packet and update csum accordingly.
5010bfca4c52SShmulik Ladkani  * expects a non skb_vlan_tag_present skb with a vlan tag payload
5011bfca4c52SShmulik Ladkani  */
5012bfca4c52SShmulik Ladkani int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
501393515d53SJiri Pirko {
501493515d53SJiri Pirko 	struct vlan_hdr *vhdr;
5015b6a79208SShmulik Ladkani 	int offset = skb->data - skb_mac_header(skb);
501693515d53SJiri Pirko 	int err;
501793515d53SJiri Pirko 
5018b6a79208SShmulik Ladkani 	if (WARN_ONCE(offset,
5019b6a79208SShmulik Ladkani 		      "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
5020b6a79208SShmulik Ladkani 		      offset)) {
5021b6a79208SShmulik Ladkani 		return -EINVAL;
5022b6a79208SShmulik Ladkani 	}
5023b6a79208SShmulik Ladkani 
502493515d53SJiri Pirko 	err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
502593515d53SJiri Pirko 	if (unlikely(err))
5026b6a79208SShmulik Ladkani 		return err;
502793515d53SJiri Pirko 
502893515d53SJiri Pirko 	skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
502993515d53SJiri Pirko 
503093515d53SJiri Pirko 	vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
503193515d53SJiri Pirko 	*vlan_tci = ntohs(vhdr->h_vlan_TCI);
503293515d53SJiri Pirko 
503393515d53SJiri Pirko 	memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
503493515d53SJiri Pirko 	__skb_pull(skb, VLAN_HLEN);
503593515d53SJiri Pirko 
503693515d53SJiri Pirko 	vlan_set_encap_proto(skb, vhdr);
503793515d53SJiri Pirko 	skb->mac_header += VLAN_HLEN;
503893515d53SJiri Pirko 
503993515d53SJiri Pirko 	if (skb_network_offset(skb) < ETH_HLEN)
504093515d53SJiri Pirko 		skb_set_network_header(skb, ETH_HLEN);
504193515d53SJiri Pirko 
504293515d53SJiri Pirko 	skb_reset_mac_len(skb);
504393515d53SJiri Pirko 
504493515d53SJiri Pirko 	return err;
504593515d53SJiri Pirko }
5046bfca4c52SShmulik Ladkani EXPORT_SYMBOL(__skb_vlan_pop);
504793515d53SJiri Pirko 
5048b6a79208SShmulik Ladkani /* Pop a vlan tag either from hwaccel or from payload.
5049b6a79208SShmulik Ladkani  * Expects skb->data at mac header.
5050b6a79208SShmulik Ladkani  */
505193515d53SJiri Pirko int skb_vlan_pop(struct sk_buff *skb)
505293515d53SJiri Pirko {
505393515d53SJiri Pirko 	u16 vlan_tci;
505493515d53SJiri Pirko 	__be16 vlan_proto;
505593515d53SJiri Pirko 	int err;
505693515d53SJiri Pirko 
5057df8a39deSJiri Pirko 	if (likely(skb_vlan_tag_present(skb))) {
505893515d53SJiri Pirko 		skb->vlan_tci = 0;
505993515d53SJiri Pirko 	} else {
5060ecf4ee41SShmulik Ladkani 		if (unlikely(!eth_type_vlan(skb->protocol)))
506193515d53SJiri Pirko 			return 0;
506293515d53SJiri Pirko 
506393515d53SJiri Pirko 		err = __skb_vlan_pop(skb, &vlan_tci);
506493515d53SJiri Pirko 		if (err)
506593515d53SJiri Pirko 			return err;
506693515d53SJiri Pirko 	}
506793515d53SJiri Pirko 	/* move next vlan tag to hw accel tag */
5068ecf4ee41SShmulik Ladkani 	if (likely(!eth_type_vlan(skb->protocol)))
506993515d53SJiri Pirko 		return 0;
507093515d53SJiri Pirko 
507193515d53SJiri Pirko 	vlan_proto = skb->protocol;
507293515d53SJiri Pirko 	err = __skb_vlan_pop(skb, &vlan_tci);
507393515d53SJiri Pirko 	if (unlikely(err))
507493515d53SJiri Pirko 		return err;
507593515d53SJiri Pirko 
507693515d53SJiri Pirko 	__vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
507793515d53SJiri Pirko 	return 0;
507893515d53SJiri Pirko }
507993515d53SJiri Pirko EXPORT_SYMBOL(skb_vlan_pop);
508093515d53SJiri Pirko 
5081b6a79208SShmulik Ladkani /* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
5082b6a79208SShmulik Ladkani  * Expects skb->data at mac header.
5083b6a79208SShmulik Ladkani  */
508493515d53SJiri Pirko int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
508593515d53SJiri Pirko {
5086df8a39deSJiri Pirko 	if (skb_vlan_tag_present(skb)) {
5087b6a79208SShmulik Ladkani 		int offset = skb->data - skb_mac_header(skb);
508893515d53SJiri Pirko 		int err;
508993515d53SJiri Pirko 
5090b6a79208SShmulik Ladkani 		if (WARN_ONCE(offset,
5091b6a79208SShmulik Ladkani 			      "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
5092b6a79208SShmulik Ladkani 			      offset)) {
5093b6a79208SShmulik Ladkani 			return -EINVAL;
5094b6a79208SShmulik Ladkani 		}
5095b6a79208SShmulik Ladkani 
509693515d53SJiri Pirko 		err = __vlan_insert_tag(skb, skb->vlan_proto,
5097df8a39deSJiri Pirko 					skb_vlan_tag_get(skb));
5098b6a79208SShmulik Ladkani 		if (err)
509993515d53SJiri Pirko 			return err;
51009241e2dfSDaniel Borkmann 
510193515d53SJiri Pirko 		skb->protocol = skb->vlan_proto;
510293515d53SJiri Pirko 		skb->mac_len += VLAN_HLEN;
510393515d53SJiri Pirko 
51046b83d28aSDaniel Borkmann 		skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
510593515d53SJiri Pirko 	}
510693515d53SJiri Pirko 	__vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
510793515d53SJiri Pirko 	return 0;
510893515d53SJiri Pirko }
510993515d53SJiri Pirko EXPORT_SYMBOL(skb_vlan_push);
511093515d53SJiri Pirko 
51112e4e4410SEric Dumazet /**
51122e4e4410SEric Dumazet  * alloc_skb_with_frags - allocate skb with page frags
51132e4e4410SEric Dumazet  *
5114de3f0d0eSMasanari Iida  * @header_len: size of linear part
5115de3f0d0eSMasanari Iida  * @data_len: needed length in frags
5116de3f0d0eSMasanari Iida  * @max_page_order: max page order desired.
5117de3f0d0eSMasanari Iida  * @errcode: pointer to error code if any
5118de3f0d0eSMasanari Iida  * @gfp_mask: allocation mask
51192e4e4410SEric Dumazet  *
51202e4e4410SEric Dumazet  * This can be used to allocate a paged skb, given a maximal order for frags.
51212e4e4410SEric Dumazet  */
51222e4e4410SEric Dumazet struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
51232e4e4410SEric Dumazet 				     unsigned long data_len,
51242e4e4410SEric Dumazet 				     int max_page_order,
51252e4e4410SEric Dumazet 				     int *errcode,
51262e4e4410SEric Dumazet 				     gfp_t gfp_mask)
51272e4e4410SEric Dumazet {
51282e4e4410SEric Dumazet 	int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
51292e4e4410SEric Dumazet 	unsigned long chunk;
51302e4e4410SEric Dumazet 	struct sk_buff *skb;
51312e4e4410SEric Dumazet 	struct page *page;
51322e4e4410SEric Dumazet 	gfp_t gfp_head;
51332e4e4410SEric Dumazet 	int i;
51342e4e4410SEric Dumazet 
51352e4e4410SEric Dumazet 	*errcode = -EMSGSIZE;
51362e4e4410SEric Dumazet 	/* Note this test could be relaxed, if we succeed to allocate
51372e4e4410SEric Dumazet 	 * high order pages...
51382e4e4410SEric Dumazet 	 */
51392e4e4410SEric Dumazet 	if (npages > MAX_SKB_FRAGS)
51402e4e4410SEric Dumazet 		return NULL;
51412e4e4410SEric Dumazet 
51422e4e4410SEric Dumazet 	gfp_head = gfp_mask;
5143d0164adcSMel Gorman 	if (gfp_head & __GFP_DIRECT_RECLAIM)
5144dcda9b04SMichal Hocko 		gfp_head |= __GFP_RETRY_MAYFAIL;
51452e4e4410SEric Dumazet 
51462e4e4410SEric Dumazet 	*errcode = -ENOBUFS;
51472e4e4410SEric Dumazet 	skb = alloc_skb(header_len, gfp_head);
51482e4e4410SEric Dumazet 	if (!skb)
51492e4e4410SEric Dumazet 		return NULL;
51502e4e4410SEric Dumazet 
51512e4e4410SEric Dumazet 	skb->truesize += npages << PAGE_SHIFT;
51522e4e4410SEric Dumazet 
51532e4e4410SEric Dumazet 	for (i = 0; npages > 0; i++) {
51542e4e4410SEric Dumazet 		int order = max_page_order;
51552e4e4410SEric Dumazet 
51562e4e4410SEric Dumazet 		while (order) {
51572e4e4410SEric Dumazet 			if (npages >= 1 << order) {
5158d0164adcSMel Gorman 				page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
51592e4e4410SEric Dumazet 						   __GFP_COMP |
51602e4e4410SEric Dumazet 						   __GFP_NOWARN |
51612e4e4410SEric Dumazet 						   __GFP_NORETRY,
51622e4e4410SEric Dumazet 						   order);
51632e4e4410SEric Dumazet 				if (page)
51642e4e4410SEric Dumazet 					goto fill_page;
51652e4e4410SEric Dumazet 				/* Do not retry other high order allocations */
51662e4e4410SEric Dumazet 				order = 1;
51672e4e4410SEric Dumazet 				max_page_order = 0;
51682e4e4410SEric Dumazet 			}
51692e4e4410SEric Dumazet 			order--;
51702e4e4410SEric Dumazet 		}
51712e4e4410SEric Dumazet 		page = alloc_page(gfp_mask);
51722e4e4410SEric Dumazet 		if (!page)
51732e4e4410SEric Dumazet 			goto failure;
51742e4e4410SEric Dumazet fill_page:
51752e4e4410SEric Dumazet 		chunk = min_t(unsigned long, data_len,
51762e4e4410SEric Dumazet 			      PAGE_SIZE << order);
51772e4e4410SEric Dumazet 		skb_fill_page_desc(skb, i, page, 0, chunk);
51782e4e4410SEric Dumazet 		data_len -= chunk;
51792e4e4410SEric Dumazet 		npages -= 1 << order;
51802e4e4410SEric Dumazet 	}
51812e4e4410SEric Dumazet 	return skb;
51822e4e4410SEric Dumazet 
51832e4e4410SEric Dumazet failure:
51842e4e4410SEric Dumazet 	kfree_skb(skb);
51852e4e4410SEric Dumazet 	return NULL;
51862e4e4410SEric Dumazet }
51872e4e4410SEric Dumazet EXPORT_SYMBOL(alloc_skb_with_frags);
51886fa01ccdSSowmini Varadhan 
51896fa01ccdSSowmini Varadhan /* carve out the first off bytes from skb when off < headlen */
51906fa01ccdSSowmini Varadhan static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
51916fa01ccdSSowmini Varadhan 				    const int headlen, gfp_t gfp_mask)
51926fa01ccdSSowmini Varadhan {
51936fa01ccdSSowmini Varadhan 	int i;
51946fa01ccdSSowmini Varadhan 	int size = skb_end_offset(skb);
51956fa01ccdSSowmini Varadhan 	int new_hlen = headlen - off;
51966fa01ccdSSowmini Varadhan 	u8 *data;
51976fa01ccdSSowmini Varadhan 
51986fa01ccdSSowmini Varadhan 	size = SKB_DATA_ALIGN(size);
51996fa01ccdSSowmini Varadhan 
52006fa01ccdSSowmini Varadhan 	if (skb_pfmemalloc(skb))
52016fa01ccdSSowmini Varadhan 		gfp_mask |= __GFP_MEMALLOC;
52026fa01ccdSSowmini Varadhan 	data = kmalloc_reserve(size +
52036fa01ccdSSowmini Varadhan 			       SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
52046fa01ccdSSowmini Varadhan 			       gfp_mask, NUMA_NO_NODE, NULL);
52056fa01ccdSSowmini Varadhan 	if (!data)
52066fa01ccdSSowmini Varadhan 		return -ENOMEM;
52076fa01ccdSSowmini Varadhan 
52086fa01ccdSSowmini Varadhan 	size = SKB_WITH_OVERHEAD(ksize(data));
52096fa01ccdSSowmini Varadhan 
52106fa01ccdSSowmini Varadhan 	/* Copy real data, and all frags */
52116fa01ccdSSowmini Varadhan 	skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
52126fa01ccdSSowmini Varadhan 	skb->len -= off;
52136fa01ccdSSowmini Varadhan 
52146fa01ccdSSowmini Varadhan 	memcpy((struct skb_shared_info *)(data + size),
52156fa01ccdSSowmini Varadhan 	       skb_shinfo(skb),
52166fa01ccdSSowmini Varadhan 	       offsetof(struct skb_shared_info,
52176fa01ccdSSowmini Varadhan 			frags[skb_shinfo(skb)->nr_frags]));
52186fa01ccdSSowmini Varadhan 	if (skb_cloned(skb)) {
52196fa01ccdSSowmini Varadhan 		/* drop the old head gracefully */
52206fa01ccdSSowmini Varadhan 		if (skb_orphan_frags(skb, gfp_mask)) {
52216fa01ccdSSowmini Varadhan 			kfree(data);
52226fa01ccdSSowmini Varadhan 			return -ENOMEM;
52236fa01ccdSSowmini Varadhan 		}
52246fa01ccdSSowmini Varadhan 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
52256fa01ccdSSowmini Varadhan 			skb_frag_ref(skb, i);
52266fa01ccdSSowmini Varadhan 		if (skb_has_frag_list(skb))
52276fa01ccdSSowmini Varadhan 			skb_clone_fraglist(skb);
52286fa01ccdSSowmini Varadhan 		skb_release_data(skb);
52296fa01ccdSSowmini Varadhan 	} else {
52306fa01ccdSSowmini Varadhan 		/* we can reuse existing recount- all we did was
52316fa01ccdSSowmini Varadhan 		 * relocate values
52326fa01ccdSSowmini Varadhan 		 */
52336fa01ccdSSowmini Varadhan 		skb_free_head(skb);
52346fa01ccdSSowmini Varadhan 	}
52356fa01ccdSSowmini Varadhan 
52366fa01ccdSSowmini Varadhan 	skb->head = data;
52376fa01ccdSSowmini Varadhan 	skb->data = data;
52386fa01ccdSSowmini Varadhan 	skb->head_frag = 0;
52396fa01ccdSSowmini Varadhan #ifdef NET_SKBUFF_DATA_USES_OFFSET
52406fa01ccdSSowmini Varadhan 	skb->end = size;
52416fa01ccdSSowmini Varadhan #else
52426fa01ccdSSowmini Varadhan 	skb->end = skb->head + size;
52436fa01ccdSSowmini Varadhan #endif
52446fa01ccdSSowmini Varadhan 	skb_set_tail_pointer(skb, skb_headlen(skb));
52456fa01ccdSSowmini Varadhan 	skb_headers_offset_update(skb, 0);
52466fa01ccdSSowmini Varadhan 	skb->cloned = 0;
52476fa01ccdSSowmini Varadhan 	skb->hdr_len = 0;
52486fa01ccdSSowmini Varadhan 	skb->nohdr = 0;
52496fa01ccdSSowmini Varadhan 	atomic_set(&skb_shinfo(skb)->dataref, 1);
52506fa01ccdSSowmini Varadhan 
52516fa01ccdSSowmini Varadhan 	return 0;
52526fa01ccdSSowmini Varadhan }
52536fa01ccdSSowmini Varadhan 
52546fa01ccdSSowmini Varadhan static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
52556fa01ccdSSowmini Varadhan 
52566fa01ccdSSowmini Varadhan /* carve out the first eat bytes from skb's frag_list. May recurse into
52576fa01ccdSSowmini Varadhan  * pskb_carve()
52586fa01ccdSSowmini Varadhan  */
52596fa01ccdSSowmini Varadhan static int pskb_carve_frag_list(struct sk_buff *skb,
52606fa01ccdSSowmini Varadhan 				struct skb_shared_info *shinfo, int eat,
52616fa01ccdSSowmini Varadhan 				gfp_t gfp_mask)
52626fa01ccdSSowmini Varadhan {
52636fa01ccdSSowmini Varadhan 	struct sk_buff *list = shinfo->frag_list;
52646fa01ccdSSowmini Varadhan 	struct sk_buff *clone = NULL;
52656fa01ccdSSowmini Varadhan 	struct sk_buff *insp = NULL;
52666fa01ccdSSowmini Varadhan 
52676fa01ccdSSowmini Varadhan 	do {
52686fa01ccdSSowmini Varadhan 		if (!list) {
52696fa01ccdSSowmini Varadhan 			pr_err("Not enough bytes to eat. Want %d\n", eat);
52706fa01ccdSSowmini Varadhan 			return -EFAULT;
52716fa01ccdSSowmini Varadhan 		}
52726fa01ccdSSowmini Varadhan 		if (list->len <= eat) {
52736fa01ccdSSowmini Varadhan 			/* Eaten as whole. */
52746fa01ccdSSowmini Varadhan 			eat -= list->len;
52756fa01ccdSSowmini Varadhan 			list = list->next;
52766fa01ccdSSowmini Varadhan 			insp = list;
52776fa01ccdSSowmini Varadhan 		} else {
52786fa01ccdSSowmini Varadhan 			/* Eaten partially. */
52796fa01ccdSSowmini Varadhan 			if (skb_shared(list)) {
52806fa01ccdSSowmini Varadhan 				clone = skb_clone(list, gfp_mask);
52816fa01ccdSSowmini Varadhan 				if (!clone)
52826fa01ccdSSowmini Varadhan 					return -ENOMEM;
52836fa01ccdSSowmini Varadhan 				insp = list->next;
52846fa01ccdSSowmini Varadhan 				list = clone;
52856fa01ccdSSowmini Varadhan 			} else {
52866fa01ccdSSowmini Varadhan 				/* This may be pulled without problems. */
52876fa01ccdSSowmini Varadhan 				insp = list;
52886fa01ccdSSowmini Varadhan 			}
52896fa01ccdSSowmini Varadhan 			if (pskb_carve(list, eat, gfp_mask) < 0) {
52906fa01ccdSSowmini Varadhan 				kfree_skb(clone);
52916fa01ccdSSowmini Varadhan 				return -ENOMEM;
52926fa01ccdSSowmini Varadhan 			}
52936fa01ccdSSowmini Varadhan 			break;
52946fa01ccdSSowmini Varadhan 		}
52956fa01ccdSSowmini Varadhan 	} while (eat);
52966fa01ccdSSowmini Varadhan 
52976fa01ccdSSowmini Varadhan 	/* Free pulled out fragments. */
52986fa01ccdSSowmini Varadhan 	while ((list = shinfo->frag_list) != insp) {
52996fa01ccdSSowmini Varadhan 		shinfo->frag_list = list->next;
53006fa01ccdSSowmini Varadhan 		kfree_skb(list);
53016fa01ccdSSowmini Varadhan 	}
53026fa01ccdSSowmini Varadhan 	/* And insert new clone at head. */
53036fa01ccdSSowmini Varadhan 	if (clone) {
53046fa01ccdSSowmini Varadhan 		clone->next = list;
53056fa01ccdSSowmini Varadhan 		shinfo->frag_list = clone;
53066fa01ccdSSowmini Varadhan 	}
53076fa01ccdSSowmini Varadhan 	return 0;
53086fa01ccdSSowmini Varadhan }
53096fa01ccdSSowmini Varadhan 
53106fa01ccdSSowmini Varadhan /* carve off first len bytes from skb. Split line (off) is in the
53116fa01ccdSSowmini Varadhan  * non-linear part of skb
53126fa01ccdSSowmini Varadhan  */
53136fa01ccdSSowmini Varadhan static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
53146fa01ccdSSowmini Varadhan 				       int pos, gfp_t gfp_mask)
53156fa01ccdSSowmini Varadhan {
53166fa01ccdSSowmini Varadhan 	int i, k = 0;
53176fa01ccdSSowmini Varadhan 	int size = skb_end_offset(skb);
53186fa01ccdSSowmini Varadhan 	u8 *data;
53196fa01ccdSSowmini Varadhan 	const int nfrags = skb_shinfo(skb)->nr_frags;
53206fa01ccdSSowmini Varadhan 	struct skb_shared_info *shinfo;
53216fa01ccdSSowmini Varadhan 
53226fa01ccdSSowmini Varadhan 	size = SKB_DATA_ALIGN(size);
53236fa01ccdSSowmini Varadhan 
53246fa01ccdSSowmini Varadhan 	if (skb_pfmemalloc(skb))
53256fa01ccdSSowmini Varadhan 		gfp_mask |= __GFP_MEMALLOC;
53266fa01ccdSSowmini Varadhan 	data = kmalloc_reserve(size +
53276fa01ccdSSowmini Varadhan 			       SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
53286fa01ccdSSowmini Varadhan 			       gfp_mask, NUMA_NO_NODE, NULL);
53296fa01ccdSSowmini Varadhan 	if (!data)
53306fa01ccdSSowmini Varadhan 		return -ENOMEM;
53316fa01ccdSSowmini Varadhan 
53326fa01ccdSSowmini Varadhan 	size = SKB_WITH_OVERHEAD(ksize(data));
53336fa01ccdSSowmini Varadhan 
53346fa01ccdSSowmini Varadhan 	memcpy((struct skb_shared_info *)(data + size),
53356fa01ccdSSowmini Varadhan 	       skb_shinfo(skb), offsetof(struct skb_shared_info,
53366fa01ccdSSowmini Varadhan 					 frags[skb_shinfo(skb)->nr_frags]));
53376fa01ccdSSowmini Varadhan 	if (skb_orphan_frags(skb, gfp_mask)) {
53386fa01ccdSSowmini Varadhan 		kfree(data);
53396fa01ccdSSowmini Varadhan 		return -ENOMEM;
53406fa01ccdSSowmini Varadhan 	}
53416fa01ccdSSowmini Varadhan 	shinfo = (struct skb_shared_info *)(data + size);
53426fa01ccdSSowmini Varadhan 	for (i = 0; i < nfrags; i++) {
53436fa01ccdSSowmini Varadhan 		int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
53446fa01ccdSSowmini Varadhan 
53456fa01ccdSSowmini Varadhan 		if (pos + fsize > off) {
53466fa01ccdSSowmini Varadhan 			shinfo->frags[k] = skb_shinfo(skb)->frags[i];
53476fa01ccdSSowmini Varadhan 
53486fa01ccdSSowmini Varadhan 			if (pos < off) {
53496fa01ccdSSowmini Varadhan 				/* Split frag.
53506fa01ccdSSowmini Varadhan 				 * We have two variants in this case:
53516fa01ccdSSowmini Varadhan 				 * 1. Move all the frag to the second
53526fa01ccdSSowmini Varadhan 				 *    part, if it is possible. F.e.
53536fa01ccdSSowmini Varadhan 				 *    this approach is mandatory for TUX,
53546fa01ccdSSowmini Varadhan 				 *    where splitting is expensive.
53556fa01ccdSSowmini Varadhan 				 * 2. Split is accurately. We make this.
53566fa01ccdSSowmini Varadhan 				 */
53576fa01ccdSSowmini Varadhan 				shinfo->frags[0].page_offset += off - pos;
53586fa01ccdSSowmini Varadhan 				skb_frag_size_sub(&shinfo->frags[0], off - pos);
53596fa01ccdSSowmini Varadhan 			}
53606fa01ccdSSowmini Varadhan 			skb_frag_ref(skb, i);
53616fa01ccdSSowmini Varadhan 			k++;
53626fa01ccdSSowmini Varadhan 		}
53636fa01ccdSSowmini Varadhan 		pos += fsize;
53646fa01ccdSSowmini Varadhan 	}
53656fa01ccdSSowmini Varadhan 	shinfo->nr_frags = k;
53666fa01ccdSSowmini Varadhan 	if (skb_has_frag_list(skb))
53676fa01ccdSSowmini Varadhan 		skb_clone_fraglist(skb);
53686fa01ccdSSowmini Varadhan 
53696fa01ccdSSowmini Varadhan 	if (k == 0) {
53706fa01ccdSSowmini Varadhan 		/* split line is in frag list */
53716fa01ccdSSowmini Varadhan 		pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask);
53726fa01ccdSSowmini Varadhan 	}
53736fa01ccdSSowmini Varadhan 	skb_release_data(skb);
53746fa01ccdSSowmini Varadhan 
53756fa01ccdSSowmini Varadhan 	skb->head = data;
53766fa01ccdSSowmini Varadhan 	skb->head_frag = 0;
53776fa01ccdSSowmini Varadhan 	skb->data = data;
53786fa01ccdSSowmini Varadhan #ifdef NET_SKBUFF_DATA_USES_OFFSET
53796fa01ccdSSowmini Varadhan 	skb->end = size;
53806fa01ccdSSowmini Varadhan #else
53816fa01ccdSSowmini Varadhan 	skb->end = skb->head + size;
53826fa01ccdSSowmini Varadhan #endif
53836fa01ccdSSowmini Varadhan 	skb_reset_tail_pointer(skb);
53846fa01ccdSSowmini Varadhan 	skb_headers_offset_update(skb, 0);
53856fa01ccdSSowmini Varadhan 	skb->cloned   = 0;
53866fa01ccdSSowmini Varadhan 	skb->hdr_len  = 0;
53876fa01ccdSSowmini Varadhan 	skb->nohdr    = 0;
53886fa01ccdSSowmini Varadhan 	skb->len -= off;
53896fa01ccdSSowmini Varadhan 	skb->data_len = skb->len;
53906fa01ccdSSowmini Varadhan 	atomic_set(&skb_shinfo(skb)->dataref, 1);
53916fa01ccdSSowmini Varadhan 	return 0;
53926fa01ccdSSowmini Varadhan }
53936fa01ccdSSowmini Varadhan 
53946fa01ccdSSowmini Varadhan /* remove len bytes from the beginning of the skb */
53956fa01ccdSSowmini Varadhan static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
53966fa01ccdSSowmini Varadhan {
53976fa01ccdSSowmini Varadhan 	int headlen = skb_headlen(skb);
53986fa01ccdSSowmini Varadhan 
53996fa01ccdSSowmini Varadhan 	if (len < headlen)
54006fa01ccdSSowmini Varadhan 		return pskb_carve_inside_header(skb, len, headlen, gfp);
54016fa01ccdSSowmini Varadhan 	else
54026fa01ccdSSowmini Varadhan 		return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
54036fa01ccdSSowmini Varadhan }
54046fa01ccdSSowmini Varadhan 
54056fa01ccdSSowmini Varadhan /* Extract to_copy bytes starting at off from skb, and return this in
54066fa01ccdSSowmini Varadhan  * a new skb
54076fa01ccdSSowmini Varadhan  */
54086fa01ccdSSowmini Varadhan struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
54096fa01ccdSSowmini Varadhan 			     int to_copy, gfp_t gfp)
54106fa01ccdSSowmini Varadhan {
54116fa01ccdSSowmini Varadhan 	struct sk_buff  *clone = skb_clone(skb, gfp);
54126fa01ccdSSowmini Varadhan 
54136fa01ccdSSowmini Varadhan 	if (!clone)
54146fa01ccdSSowmini Varadhan 		return NULL;
54156fa01ccdSSowmini Varadhan 
54166fa01ccdSSowmini Varadhan 	if (pskb_carve(clone, off, gfp) < 0 ||
54176fa01ccdSSowmini Varadhan 	    pskb_trim(clone, to_copy)) {
54186fa01ccdSSowmini Varadhan 		kfree_skb(clone);
54196fa01ccdSSowmini Varadhan 		return NULL;
54206fa01ccdSSowmini Varadhan 	}
54216fa01ccdSSowmini Varadhan 	return clone;
54226fa01ccdSSowmini Varadhan }
54236fa01ccdSSowmini Varadhan EXPORT_SYMBOL(pskb_extract);
5424c8c8b127SEric Dumazet 
5425c8c8b127SEric Dumazet /**
5426c8c8b127SEric Dumazet  * skb_condense - try to get rid of fragments/frag_list if possible
5427c8c8b127SEric Dumazet  * @skb: buffer
5428c8c8b127SEric Dumazet  *
5429c8c8b127SEric Dumazet  * Can be used to save memory before skb is added to a busy queue.
5430c8c8b127SEric Dumazet  * If packet has bytes in frags and enough tail room in skb->head,
5431c8c8b127SEric Dumazet  * pull all of them, so that we can free the frags right now and adjust
5432c8c8b127SEric Dumazet  * truesize.
5433c8c8b127SEric Dumazet  * Notes:
5434c8c8b127SEric Dumazet  *	We do not reallocate skb->head thus can not fail.
5435c8c8b127SEric Dumazet  *	Caller must re-evaluate skb->truesize if needed.
5436c8c8b127SEric Dumazet  */
5437c8c8b127SEric Dumazet void skb_condense(struct sk_buff *skb)
5438c8c8b127SEric Dumazet {
54393174fed9SEric Dumazet 	if (skb->data_len) {
54403174fed9SEric Dumazet 		if (skb->data_len > skb->end - skb->tail ||
5441c8c8b127SEric Dumazet 		    skb_cloned(skb))
5442c8c8b127SEric Dumazet 			return;
5443c8c8b127SEric Dumazet 
5444c8c8b127SEric Dumazet 		/* Nice, we can free page frag(s) right now */
5445c8c8b127SEric Dumazet 		__pskb_pull_tail(skb, skb->data_len);
54463174fed9SEric Dumazet 	}
54473174fed9SEric Dumazet 	/* At this point, skb->truesize might be over estimated,
54483174fed9SEric Dumazet 	 * because skb had a fragment, and fragments do not tell
54493174fed9SEric Dumazet 	 * their truesize.
54503174fed9SEric Dumazet 	 * When we pulled its content into skb->head, fragment
54513174fed9SEric Dumazet 	 * was freed, but __pskb_pull_tail() could not possibly
54523174fed9SEric Dumazet 	 * adjust skb->truesize, not knowing the frag truesize.
5453c8c8b127SEric Dumazet 	 */
5454c8c8b127SEric Dumazet 	skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
5455c8c8b127SEric Dumazet }
5456