blob: 11501165f0dfcd7fff46b47c97f70f439f9351a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
Joe Perchese005d192012-05-16 19:58:40 +000039#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/types.h>
43#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020044#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/mm.h>
46#include <linux/interrupt.h>
47#include <linux/in.h>
48#include <linux/inet.h>
49#include <linux/slab.h>
Florian Westphalde960aa2014-01-26 10:58:16 +010050#include <linux/tcp.h>
51#include <linux/udp.h>
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -030052#include <linux/sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/netdevice.h>
54#ifdef CONFIG_NET_CLS_ACT
55#include <net/pkt_sched.h>
56#endif
57#include <linux/string.h>
58#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080059#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/cache.h>
61#include <linux/rtnetlink.h>
62#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070063#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000064#include <linux/errqueue.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070065#include <linux/prefetch.h>
Vlad Yasevich0d5501c2014-08-08 14:42:13 -040066#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#include <net/protocol.h>
69#include <net/dst.h>
70#include <net/sock.h>
71#include <net/checksum.h>
Paul Durranted1f50c2014-01-09 10:02:46 +000072#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <net/xfrm.h>
74
75#include <asm/uaccess.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040076#include <trace/events/skb.h>
Eric Dumazet51c56b02012-04-05 11:35:15 +020077#include <linux/highmem.h>
Willem de Bruijnb245be12015-01-30 13:29:32 -050078#include <linux/capability.h>
79#include <linux/user_namespace.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040080
Eric Dumazetd7e88832012-04-30 08:10:34 +000081struct kmem_cache *skbuff_head_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080082static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Hans Westgaard Ry5f74f822016-02-03 09:26:57 +010083int sysctl_max_skb_frags __read_mostly = MAX_SKB_FRAGS;
84EXPORT_SYMBOL(sysctl_max_skb_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/**
Jean Sacrenf05de732013-02-11 13:30:38 +000087 * skb_panic - private function for out-of-line support
88 * @skb: buffer
89 * @sz: size
90 * @addr: address
James Hogan99d58512013-02-13 11:20:27 +000091 * @msg: skb_over_panic or skb_under_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 *
Jean Sacrenf05de732013-02-11 13:30:38 +000093 * Out-of-line support for skb_put() and skb_push().
94 * Called via the wrapper skb_over_panic() or skb_under_panic().
95 * Keep out of line to prevent kernel bloat.
96 * __builtin_return_address is not used because it is not always reliable.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
Jean Sacrenf05de732013-02-11 13:30:38 +000098static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
James Hogan99d58512013-02-13 11:20:27 +000099 const char msg[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Joe Perchese005d192012-05-16 19:58:40 +0000101 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
James Hogan99d58512013-02-13 11:20:27 +0000102 msg, addr, skb->len, sz, skb->head, skb->data,
Joe Perchese005d192012-05-16 19:58:40 +0000103 (unsigned long)skb->tail, (unsigned long)skb->end,
104 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 BUG();
106}
107
Jean Sacrenf05de732013-02-11 13:30:38 +0000108static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Jean Sacrenf05de732013-02-11 13:30:38 +0000110 skb_panic(skb, sz, addr, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Jean Sacrenf05de732013-02-11 13:30:38 +0000113static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
114{
115 skb_panic(skb, sz, addr, __func__);
116}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700117
118/*
119 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
120 * the caller if emergency pfmemalloc reserves are being used. If it is and
121 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
122 * may be used. Otherwise, the packet data may be discarded until enough
123 * memory is free
124 */
125#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
126 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
stephen hemminger61c5e882012-12-28 18:24:28 +0000127
128static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
129 unsigned long ip, bool *pfmemalloc)
Mel Gormanc93bdd02012-07-31 16:44:19 -0700130{
131 void *obj;
132 bool ret_pfmemalloc = false;
133
134 /*
135 * Try a regular allocation, when that fails and we're not entitled
136 * to the reserves, fail.
137 */
138 obj = kmalloc_node_track_caller(size,
139 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
140 node);
141 if (obj || !(gfp_pfmemalloc_allowed(flags)))
142 goto out;
143
144 /* Try again but now we are using pfmemalloc reserves */
145 ret_pfmemalloc = true;
146 obj = kmalloc_node_track_caller(size, flags, node);
147
148out:
149 if (pfmemalloc)
150 *pfmemalloc = ret_pfmemalloc;
151
152 return obj;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/* Allocate a new skbuff. We do this ourselves so we can fill in a few
156 * 'private' fields and also do memory statistics to find all the
157 * [BEEP] leaks.
158 *
159 */
160
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000161struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
162{
163 struct sk_buff *skb;
164
165 /* Get the HEAD */
166 skb = kmem_cache_alloc_node(skbuff_head_cache,
167 gfp_mask & ~__GFP_DMA, node);
168 if (!skb)
169 goto out;
170
171 /*
172 * Only clear those fields we need to clear, not those that we will
173 * actually initialise below. Hence, don't put any more fields after
174 * the tail pointer in struct sk_buff!
175 */
176 memset(skb, 0, offsetof(struct sk_buff, tail));
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000177 skb->head = NULL;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000178 skb->truesize = sizeof(struct sk_buff);
179 atomic_set(&skb->users, 1);
180
Cong Wang35d04612013-05-29 15:16:05 +0800181 skb->mac_header = (typeof(skb->mac_header))~0U;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000182out:
183 return skb;
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/**
David S. Millerd179cd12005-08-17 14:57:30 -0700187 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 * @size: size to allocate
189 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700190 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
191 * instead of head cache and allocate a cloned (child) skb.
192 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
193 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800194 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
196 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000197 * tail room of at least size bytes. The object has a reference count
198 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
200 * Buffers may only be allocated from interrupts using a @gfp_mask of
201 * %GFP_ATOMIC.
202 */
Al Virodd0fc662005-10-07 07:46:04 +0100203struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700204 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Christoph Lametere18b8902006-12-06 20:33:20 -0800206 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800207 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct sk_buff *skb;
209 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700210 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Mel Gormanc93bdd02012-07-31 16:44:19 -0700212 cache = (flags & SKB_ALLOC_FCLONE)
213 ? skbuff_fclone_cache : skbuff_head_cache;
214
215 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
216 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800219 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (!skb)
221 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700222 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000224 /* We do our best to align skb_shared_info on a separate cache
225 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
226 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
227 * Both skb->head and skb_shared_info are cache line aligned.
228 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000229 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000230 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700231 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!data)
233 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000234 /* kmalloc(size) might give us more room than requested.
235 * Put skb_shared_info exactly at the end of allocated zone,
236 * to allow max possible filling before reallocation.
237 */
238 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700239 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300241 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700242 * Only clear those fields we need to clear, not those that we will
243 * actually initialise below. Hence, don't put any more fields after
244 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300245 */
246 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000247 /* Account for allocated memory : skb + skb->head */
248 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700249 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 atomic_set(&skb->users, 1);
251 skb->head = data;
252 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700253 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700254 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800255 skb->mac_header = (typeof(skb->mac_header))~0U;
256 skb->transport_header = (typeof(skb->transport_header))~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000257
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800258 /* make sure we initialize shinfo sequentially */
259 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700260 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800261 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000262 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800263
Mel Gormanc93bdd02012-07-31 16:44:19 -0700264 if (flags & SKB_ALLOC_FCLONE) {
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700265 struct sk_buff_fclones *fclones;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700267 fclones = container_of(skb, struct sk_buff_fclones, skb1);
268
269 kmemcheck_annotate_bitfield(&fclones->skb2, flags1);
David S. Millerd179cd12005-08-17 14:57:30 -0700270 skb->fclone = SKB_FCLONE_ORIG;
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700271 atomic_set(&fclones->fclone_ref, 1);
David S. Millerd179cd12005-08-17 14:57:30 -0700272
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800273 fclones->skb2.fclone = SKB_FCLONE_CLONE;
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700274 fclones->skb2.pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276out:
277 return skb;
278nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800279 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 skb = NULL;
281 goto out;
282}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800283EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285/**
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700286 * __build_skb - build a network buffer
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000287 * @data: data buffer provided by caller
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700288 * @frag_size: size of data, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000289 *
290 * Allocate a new &sk_buff. Caller provides space holding head and
Florian Fainellideceb4c2013-07-23 20:22:39 +0100291 * skb_shared_info. @data must have been allocated by kmalloc() only if
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700292 * @frag_size is 0, otherwise data should come from the page allocator
293 * or vmalloc()
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000294 * The return is the new skb buffer.
295 * On a failure the return is %NULL, and @data is not freed.
296 * Notes :
297 * Before IO, driver allocates only data buffer where NIC put incoming frame
298 * Driver should add room at head (NET_SKB_PAD) and
299 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
300 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
301 * before giving packet to stack.
302 * RX rings only contains data buffers, not full skbs.
303 */
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700304struct sk_buff *__build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000305{
306 struct skb_shared_info *shinfo;
307 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000308 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000309
310 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
311 if (!skb)
312 return NULL;
313
Eric Dumazetd3836f22012-04-27 00:33:38 +0000314 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000315
316 memset(skb, 0, offsetof(struct sk_buff, tail));
317 skb->truesize = SKB_TRUESIZE(size);
318 atomic_set(&skb->users, 1);
319 skb->head = data;
320 skb->data = data;
321 skb_reset_tail_pointer(skb);
322 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800323 skb->mac_header = (typeof(skb->mac_header))~0U;
324 skb->transport_header = (typeof(skb->transport_header))~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000325
326 /* make sure we initialize shinfo sequentially */
327 shinfo = skb_shinfo(skb);
328 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
329 atomic_set(&shinfo->dataref, 1);
330 kmemcheck_annotate_variable(shinfo->destructor_arg);
331
332 return skb;
333}
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700334
335/* build_skb() is wrapper over __build_skb(), that specifically
336 * takes care of skb->head and skb->pfmemalloc
337 * This means that if @frag_size is not zero, then @data must be backed
338 * by a page fragment, not kmalloc() or vmalloc()
339 */
340struct sk_buff *build_skb(void *data, unsigned int frag_size)
341{
342 struct sk_buff *skb = __build_skb(data, frag_size);
343
344 if (skb && frag_size) {
345 skb->head_frag = 1;
Michal Hocko2f064f32015-08-21 14:11:51 -0700346 if (page_is_pfmemalloc(virt_to_head_page(data)))
Eric Dumazet2ea2f622015-04-24 16:05:01 -0700347 skb->pfmemalloc = 1;
348 }
349 return skb;
350}
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000351EXPORT_SYMBOL(build_skb);
352
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100353#define NAPI_SKB_CACHE_SIZE 64
354
355struct napi_alloc_cache {
356 struct page_frag_cache page;
357 size_t skb_count;
358 void *skb_cache[NAPI_SKB_CACHE_SIZE];
359};
360
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700361static DEFINE_PER_CPU(struct page_frag_cache, netdev_alloc_cache);
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100362static DEFINE_PER_CPU(struct napi_alloc_cache, napi_alloc_cache);
Alexander Duyckffde7322014-12-09 19:40:42 -0800363
364static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
365{
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700366 struct page_frag_cache *nc;
Alexander Duyckffde7322014-12-09 19:40:42 -0800367 unsigned long flags;
368 void *data;
369
370 local_irq_save(flags);
Alexander Duyck94519802015-05-06 21:11:40 -0700371 nc = this_cpu_ptr(&netdev_alloc_cache);
372 data = __alloc_page_frag(nc, fragsz, gfp_mask);
Eric Dumazet6f532612012-05-18 05:12:12 +0000373 local_irq_restore(flags);
374 return data;
375}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700376
377/**
378 * netdev_alloc_frag - allocate a page fragment
379 * @fragsz: fragment size
380 *
381 * Allocates a frag from a page for receive buffer.
382 * Uses GFP_ATOMIC allocations.
383 */
384void *netdev_alloc_frag(unsigned int fragsz)
385{
386 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
387}
Eric Dumazet6f532612012-05-18 05:12:12 +0000388EXPORT_SYMBOL(netdev_alloc_frag);
389
Alexander Duyckffde7322014-12-09 19:40:42 -0800390static void *__napi_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
391{
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100392 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
Alexander Duyck94519802015-05-06 21:11:40 -0700393
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100394 return __alloc_page_frag(&nc->page, fragsz, gfp_mask);
Alexander Duyckffde7322014-12-09 19:40:42 -0800395}
396
397void *napi_alloc_frag(unsigned int fragsz)
398{
399 return __napi_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
400}
401EXPORT_SYMBOL(napi_alloc_frag);
402
Eric Dumazet6f532612012-05-18 05:12:12 +0000403/**
Alexander Duyckfd11a832014-12-09 19:40:49 -0800404 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
405 * @dev: network device to receive on
Masanari Iidad7499162015-08-24 22:56:54 +0900406 * @len: length to allocate
Alexander Duyckfd11a832014-12-09 19:40:49 -0800407 * @gfp_mask: get_free_pages mask, passed to alloc_skb
408 *
409 * Allocate a new &sk_buff and assign it a usage count of one. The
410 * buffer has NET_SKB_PAD headroom built in. Users should allocate
411 * the headroom they think they need without accounting for the
412 * built in space. The built in space is used for optimisations.
413 *
414 * %NULL is returned if there is no free memory.
415 */
Alexander Duyck94519802015-05-06 21:11:40 -0700416struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int len,
417 gfp_t gfp_mask)
Alexander Duyckfd11a832014-12-09 19:40:49 -0800418{
Alexander Duyckb63ae8c2015-05-06 21:11:57 -0700419 struct page_frag_cache *nc;
Alexander Duyck94519802015-05-06 21:11:40 -0700420 unsigned long flags;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800421 struct sk_buff *skb;
Alexander Duyck94519802015-05-06 21:11:40 -0700422 bool pfmemalloc;
423 void *data;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800424
Alexander Duyck94519802015-05-06 21:11:40 -0700425 len += NET_SKB_PAD;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800426
Alexander Duyck94519802015-05-06 21:11:40 -0700427 if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
Mel Gormand0164ad2015-11-06 16:28:21 -0800428 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
Alexander Duycka080e7b2015-05-13 13:34:13 -0700429 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
430 if (!skb)
431 goto skb_fail;
432 goto skb_success;
433 }
Alexander Duyck94519802015-05-06 21:11:40 -0700434
435 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
436 len = SKB_DATA_ALIGN(len);
437
438 if (sk_memalloc_socks())
439 gfp_mask |= __GFP_MEMALLOC;
440
441 local_irq_save(flags);
442
443 nc = this_cpu_ptr(&netdev_alloc_cache);
444 data = __alloc_page_frag(nc, len, gfp_mask);
445 pfmemalloc = nc->pfmemalloc;
446
447 local_irq_restore(flags);
448
449 if (unlikely(!data))
450 return NULL;
451
452 skb = __build_skb(data, len);
453 if (unlikely(!skb)) {
Alexander Duyck181edb22015-05-06 21:12:03 -0700454 skb_free_frag(data);
Alexander Duyck94519802015-05-06 21:11:40 -0700455 return NULL;
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700456 }
Alexander Duyckfd11a832014-12-09 19:40:49 -0800457
Alexander Duyck94519802015-05-06 21:11:40 -0700458 /* use OR instead of assignment to avoid clearing of bits in mask */
459 if (pfmemalloc)
460 skb->pfmemalloc = 1;
461 skb->head_frag = 1;
462
Alexander Duycka080e7b2015-05-13 13:34:13 -0700463skb_success:
Alexander Duyck94519802015-05-06 21:11:40 -0700464 skb_reserve(skb, NET_SKB_PAD);
465 skb->dev = dev;
466
Alexander Duycka080e7b2015-05-13 13:34:13 -0700467skb_fail:
Christoph Hellwig8af27452006-07-31 22:35:23 -0700468 return skb;
469}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800470EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Alexander Duyckfd11a832014-12-09 19:40:49 -0800472/**
473 * __napi_alloc_skb - allocate skbuff for rx in a specific NAPI instance
474 * @napi: napi instance this buffer was allocated for
Masanari Iidad7499162015-08-24 22:56:54 +0900475 * @len: length to allocate
Alexander Duyckfd11a832014-12-09 19:40:49 -0800476 * @gfp_mask: get_free_pages mask, passed to alloc_skb and alloc_pages
477 *
478 * Allocate a new sk_buff for use in NAPI receive. This buffer will
479 * attempt to allocate the head from a special reserved region used
480 * only for NAPI Rx allocation. By doing this we can save several
481 * CPU cycles by avoiding having to disable and re-enable IRQs.
482 *
483 * %NULL is returned if there is no free memory.
484 */
Alexander Duyck94519802015-05-06 21:11:40 -0700485struct sk_buff *__napi_alloc_skb(struct napi_struct *napi, unsigned int len,
486 gfp_t gfp_mask)
Alexander Duyckfd11a832014-12-09 19:40:49 -0800487{
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100488 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
Alexander Duyckfd11a832014-12-09 19:40:49 -0800489 struct sk_buff *skb;
Alexander Duyck94519802015-05-06 21:11:40 -0700490 void *data;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800491
Alexander Duyck94519802015-05-06 21:11:40 -0700492 len += NET_SKB_PAD + NET_IP_ALIGN;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800493
Alexander Duyck94519802015-05-06 21:11:40 -0700494 if ((len > SKB_WITH_OVERHEAD(PAGE_SIZE)) ||
Mel Gormand0164ad2015-11-06 16:28:21 -0800495 (gfp_mask & (__GFP_DIRECT_RECLAIM | GFP_DMA))) {
Alexander Duycka080e7b2015-05-13 13:34:13 -0700496 skb = __alloc_skb(len, gfp_mask, SKB_ALLOC_RX, NUMA_NO_NODE);
497 if (!skb)
498 goto skb_fail;
499 goto skb_success;
500 }
Alexander Duyck94519802015-05-06 21:11:40 -0700501
502 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
503 len = SKB_DATA_ALIGN(len);
504
505 if (sk_memalloc_socks())
506 gfp_mask |= __GFP_MEMALLOC;
507
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100508 data = __alloc_page_frag(&nc->page, len, gfp_mask);
Alexander Duyck94519802015-05-06 21:11:40 -0700509 if (unlikely(!data))
510 return NULL;
511
512 skb = __build_skb(data, len);
513 if (unlikely(!skb)) {
Alexander Duyck181edb22015-05-06 21:12:03 -0700514 skb_free_frag(data);
Alexander Duyck94519802015-05-06 21:11:40 -0700515 return NULL;
Alexander Duyckfd11a832014-12-09 19:40:49 -0800516 }
517
Alexander Duyck94519802015-05-06 21:11:40 -0700518 /* use OR instead of assignment to avoid clearing of bits in mask */
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100519 if (nc->page.pfmemalloc)
Alexander Duyck94519802015-05-06 21:11:40 -0700520 skb->pfmemalloc = 1;
521 skb->head_frag = 1;
522
Alexander Duycka080e7b2015-05-13 13:34:13 -0700523skb_success:
Alexander Duyck94519802015-05-06 21:11:40 -0700524 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
525 skb->dev = napi->dev;
526
Alexander Duycka080e7b2015-05-13 13:34:13 -0700527skb_fail:
Alexander Duyckfd11a832014-12-09 19:40:49 -0800528 return skb;
529}
530EXPORT_SYMBOL(__napi_alloc_skb);
531
Peter Zijlstra654bed12008-10-07 14:22:33 -0700532void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000533 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700534{
535 skb_fill_page_desc(skb, i, page, off, size);
536 skb->len += size;
537 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000538 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700539}
540EXPORT_SYMBOL(skb_add_rx_frag);
541
Jason Wangf8e617e2013-11-01 14:07:47 +0800542void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
543 unsigned int truesize)
544{
545 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
546
547 skb_frag_size_add(frag, size);
548 skb->len += size;
549 skb->data_len += size;
550 skb->truesize += truesize;
551}
552EXPORT_SYMBOL(skb_coalesce_rx_frag);
553
Herbert Xu27b437c2006-07-13 19:26:39 -0700554static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700556 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700557 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Herbert Xu27b437c2006-07-13 19:26:39 -0700560static inline void skb_drop_fraglist(struct sk_buff *skb)
561{
562 skb_drop_list(&skb_shinfo(skb)->frag_list);
563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static void skb_clone_fraglist(struct sk_buff *skb)
566{
567 struct sk_buff *list;
568
David S. Millerfbb398a2009-06-09 00:18:59 -0700569 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 skb_get(list);
571}
572
Eric Dumazetd3836f22012-04-27 00:33:38 +0000573static void skb_free_head(struct sk_buff *skb)
574{
Alexander Duyck181edb22015-05-06 21:12:03 -0700575 unsigned char *head = skb->head;
576
Eric Dumazetd3836f22012-04-27 00:33:38 +0000577 if (skb->head_frag)
Alexander Duyck181edb22015-05-06 21:12:03 -0700578 skb_free_frag(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000579 else
Alexander Duyck181edb22015-05-06 21:12:03 -0700580 kfree(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000581}
582
Adrian Bunk5bba1712006-06-29 13:02:35 -0700583static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Eric Dumazetff04a772014-09-23 18:39:30 -0700585 struct skb_shared_info *shinfo = skb_shinfo(skb);
586 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Eric Dumazetff04a772014-09-23 18:39:30 -0700588 if (skb->cloned &&
589 atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
590 &shinfo->dataref))
591 return;
Shirley Maa6686f22011-07-06 12:22:12 +0000592
Eric Dumazetff04a772014-09-23 18:39:30 -0700593 for (i = 0; i < shinfo->nr_frags; i++)
594 __skb_frag_unref(&shinfo->frags[i]);
Shirley Maa6686f22011-07-06 12:22:12 +0000595
Eric Dumazetff04a772014-09-23 18:39:30 -0700596 /*
597 * If skb buf is from userspace, we need to notify the caller
598 * the lower device DMA has done;
599 */
600 if (shinfo->tx_flags & SKBTX_DEV_ZEROCOPY) {
601 struct ubuf_info *uarg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Eric Dumazetff04a772014-09-23 18:39:30 -0700603 uarg = shinfo->destructor_arg;
604 if (uarg->callback)
605 uarg->callback(uarg, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Eric Dumazetff04a772014-09-23 18:39:30 -0700607
608 if (shinfo->frag_list)
609 kfree_skb_list(shinfo->frag_list);
610
611 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
614/*
615 * Free an skbuff by memory without cleaning the state.
616 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800617static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700619 struct sk_buff_fclones *fclones;
David S. Millerd179cd12005-08-17 14:57:30 -0700620
David S. Millerd179cd12005-08-17 14:57:30 -0700621 switch (skb->fclone) {
622 case SKB_FCLONE_UNAVAILABLE:
623 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800624 return;
David S. Millerd179cd12005-08-17 14:57:30 -0700625
626 case SKB_FCLONE_ORIG:
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700627 fclones = container_of(skb, struct sk_buff_fclones, skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800628
629 /* We usually free the clone (TX completion) before original skb
630 * This test would have no chance to be true for the clone,
631 * while here, branch prediction will be good.
632 */
633 if (atomic_read(&fclones->fclone_ref) == 1)
634 goto fastpath;
David S. Millerd179cd12005-08-17 14:57:30 -0700635 break;
636
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800637 default: /* SKB_FCLONE_CLONE */
Eric Dumazetd0bf4a92014-09-29 13:29:15 -0700638 fclones = container_of(skb, struct sk_buff_fclones, skb2);
David S. Millerd179cd12005-08-17 14:57:30 -0700639 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700640 }
Eric Dumazet6ffe75e2014-12-03 17:04:39 -0800641 if (!atomic_dec_and_test(&fclones->fclone_ref))
642 return;
643fastpath:
644 kmem_cache_free(skbuff_fclone_cache, fclones);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700647static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Eric Dumazetadf30902009-06-02 05:19:30 +0000649 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650#ifdef CONFIG_XFRM
651 secpath_put(skb->sp);
652#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700653 if (skb->destructor) {
654 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 skb->destructor(skb);
656 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000657#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700658 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100659#endif
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +0200660#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 nf_bridge_put(skb->nf_bridge);
662#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700663}
664
665/* Free everything but the sk_buff shell. */
666static void skb_release_all(struct sk_buff *skb)
667{
668 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000669 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000670 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800671}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Herbert Xu2d4baff2007-11-26 23:11:19 +0800673/**
674 * __kfree_skb - private function
675 * @skb: buffer
676 *
677 * Free an sk_buff. Release anything attached to the buffer.
678 * Clean the state. This is an internal helper function. Users should
679 * always call kfree_skb
680 */
681
682void __kfree_skb(struct sk_buff *skb)
683{
684 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 kfree_skbmem(skb);
686}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800687EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800690 * kfree_skb - free an sk_buff
691 * @skb: buffer to free
692 *
693 * Drop a reference to the buffer and free it if the usage count has
694 * hit zero.
695 */
696void kfree_skb(struct sk_buff *skb)
697{
698 if (unlikely(!skb))
699 return;
700 if (likely(atomic_read(&skb->users) == 1))
701 smp_rmb();
702 else if (likely(!atomic_dec_and_test(&skb->users)))
703 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000704 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800705 __kfree_skb(skb);
706}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800707EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800708
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700709void kfree_skb_list(struct sk_buff *segs)
710{
711 while (segs) {
712 struct sk_buff *next = segs->next;
713
714 kfree_skb(segs);
715 segs = next;
716 }
717}
718EXPORT_SYMBOL(kfree_skb_list);
719
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700720/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000721 * skb_tx_error - report an sk_buff xmit error
722 * @skb: buffer that triggered an error
723 *
724 * Report xmit error if a device callback is tracking this skb.
725 * skb must be freed afterwards.
726 */
727void skb_tx_error(struct sk_buff *skb)
728{
729 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
730 struct ubuf_info *uarg;
731
732 uarg = skb_shinfo(skb)->destructor_arg;
733 if (uarg->callback)
734 uarg->callback(uarg, false);
735 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
736 }
737}
738EXPORT_SYMBOL(skb_tx_error);
739
740/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000741 * consume_skb - free an skbuff
742 * @skb: buffer to free
743 *
744 * Drop a ref to the buffer and free it if the usage count has hit zero
745 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
746 * is being dropped after a failure and notes that
747 */
748void consume_skb(struct sk_buff *skb)
749{
750 if (unlikely(!skb))
751 return;
752 if (likely(atomic_read(&skb->users) == 1))
753 smp_rmb();
754 else if (likely(!atomic_dec_and_test(&skb->users)))
755 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900756 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000757 __kfree_skb(skb);
758}
759EXPORT_SYMBOL(consume_skb);
760
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100761void __kfree_skb_flush(void)
762{
763 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
764
765 /* flush skb_cache if containing objects */
766 if (nc->skb_count) {
767 kmem_cache_free_bulk(skbuff_head_cache, nc->skb_count,
768 nc->skb_cache);
769 nc->skb_count = 0;
770 }
771}
772
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +0100773static inline void _kfree_skb_defer(struct sk_buff *skb)
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100774{
775 struct napi_alloc_cache *nc = this_cpu_ptr(&napi_alloc_cache);
776
777 /* drop skb->head and call any destructors for packet */
778 skb_release_all(skb);
779
780 /* record skb to CPU local list */
781 nc->skb_cache[nc->skb_count++] = skb;
782
783#ifdef CONFIG_SLUB
784 /* SLUB writes into objects when freeing */
785 prefetchw(skb);
786#endif
787
788 /* flush skb_cache if it is filled */
789 if (unlikely(nc->skb_count == NAPI_SKB_CACHE_SIZE)) {
790 kmem_cache_free_bulk(skbuff_head_cache, NAPI_SKB_CACHE_SIZE,
791 nc->skb_cache);
792 nc->skb_count = 0;
793 }
794}
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +0100795void __kfree_skb_defer(struct sk_buff *skb)
796{
797 _kfree_skb_defer(skb);
798}
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100799
800void napi_consume_skb(struct sk_buff *skb, int budget)
801{
802 if (unlikely(!skb))
803 return;
804
Jesper Dangaard Brouer885eb0a2016-03-11 09:43:58 +0100805 /* Zero budget indicate non-NAPI context called us, like netpoll */
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100806 if (unlikely(!budget)) {
Jesper Dangaard Brouer885eb0a2016-03-11 09:43:58 +0100807 dev_consume_skb_any(skb);
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100808 return;
809 }
810
811 if (likely(atomic_read(&skb->users) == 1))
812 smp_rmb();
813 else if (likely(!atomic_dec_and_test(&skb->users)))
814 return;
815 /* if reaching here SKB is ready to free */
816 trace_consume_skb(skb);
817
818 /* if SKB is a clone, don't handle this case */
Eric Dumazetabbdb5a2016-03-20 11:27:47 -0700819 if (skb->fclone != SKB_FCLONE_UNAVAILABLE) {
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100820 __kfree_skb(skb);
821 return;
822 }
823
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +0100824 _kfree_skb_defer(skb);
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +0100825}
826EXPORT_SYMBOL(napi_consume_skb);
827
Eric Dumazetb1937222014-09-28 22:18:47 -0700828/* Make sure a field is enclosed inside headers_start/headers_end section */
829#define CHECK_SKB_FIELD(field) \
830 BUILD_BUG_ON(offsetof(struct sk_buff, field) < \
831 offsetof(struct sk_buff, headers_start)); \
832 BUILD_BUG_ON(offsetof(struct sk_buff, field) > \
833 offsetof(struct sk_buff, headers_end)); \
834
Herbert Xudec18812007-10-14 00:37:30 -0700835static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
836{
837 new->tstamp = old->tstamp;
Eric Dumazetb1937222014-09-28 22:18:47 -0700838 /* We do not copy old->sk */
Herbert Xudec18812007-10-14 00:37:30 -0700839 new->dev = old->dev;
Eric Dumazetb1937222014-09-28 22:18:47 -0700840 memcpy(new->cb, old->cb, sizeof(old->cb));
Eric Dumazet7fee2262010-05-11 23:19:48 +0000841 skb_dst_copy(new, old);
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700842#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700843 new->sp = secpath_get(old->sp);
844#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700845 __nf_copy(new, old, false);
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700846
Eric Dumazetb1937222014-09-28 22:18:47 -0700847 /* Note : this field could be in headers_start/headers_end section
848 * It is not yet because we do not want to have a 16 bit hole
849 */
850 new->queue_mapping = old->queue_mapping;
Eliezer Tamir06021292013-06-10 11:39:50 +0300851
Eric Dumazetb1937222014-09-28 22:18:47 -0700852 memcpy(&new->headers_start, &old->headers_start,
853 offsetof(struct sk_buff, headers_end) -
854 offsetof(struct sk_buff, headers_start));
855 CHECK_SKB_FIELD(protocol);
856 CHECK_SKB_FIELD(csum);
857 CHECK_SKB_FIELD(hash);
858 CHECK_SKB_FIELD(priority);
859 CHECK_SKB_FIELD(skb_iif);
860 CHECK_SKB_FIELD(vlan_proto);
861 CHECK_SKB_FIELD(vlan_tci);
862 CHECK_SKB_FIELD(transport_header);
863 CHECK_SKB_FIELD(network_header);
864 CHECK_SKB_FIELD(mac_header);
865 CHECK_SKB_FIELD(inner_protocol);
866 CHECK_SKB_FIELD(inner_transport_header);
867 CHECK_SKB_FIELD(inner_network_header);
868 CHECK_SKB_FIELD(inner_mac_header);
869 CHECK_SKB_FIELD(mark);
870#ifdef CONFIG_NETWORK_SECMARK
871 CHECK_SKB_FIELD(secmark);
872#endif
Cong Wange0d10952013-08-01 11:10:25 +0800873#ifdef CONFIG_NET_RX_BUSY_POLL
Eric Dumazetb1937222014-09-28 22:18:47 -0700874 CHECK_SKB_FIELD(napi_id);
Eliezer Tamir06021292013-06-10 11:39:50 +0300875#endif
Eric Dumazet2bd82482015-02-03 23:48:24 -0800876#ifdef CONFIG_XPS
877 CHECK_SKB_FIELD(sender_cpu);
878#endif
Eric Dumazetb1937222014-09-28 22:18:47 -0700879#ifdef CONFIG_NET_SCHED
880 CHECK_SKB_FIELD(tc_index);
881#ifdef CONFIG_NET_CLS_ACT
882 CHECK_SKB_FIELD(tc_verd);
883#endif
884#endif
885
Herbert Xudec18812007-10-14 00:37:30 -0700886}
887
Herbert Xu82c49a32009-05-22 22:11:37 +0000888/*
889 * You should not add any new code to this function. Add it to
890 * __copy_skb_header above instead.
891 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700892static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894#define C(x) n->x = skb->x
895
896 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700898 __copy_skb_header(n, skb);
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 C(len);
901 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700902 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700903 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800904 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 n->nohdr = 0;
Eric Dumazetec986182018-04-07 13:42:39 -0700906 n->peeked = 0;
Stefano Brivioad375ea2018-07-13 13:21:07 +0200907 C(pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 C(tail);
910 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800911 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000912 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800913 C(data);
914 C(truesize);
915 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 atomic_inc(&(skb_shinfo(skb)->dataref));
918 skb->cloned = 1;
919
920 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700921#undef C
922}
923
924/**
925 * skb_morph - morph one skb into another
926 * @dst: the skb to receive the contents
927 * @src: the skb to supply the contents
928 *
929 * This is identical to skb_clone except that the target skb is
930 * supplied by the user.
931 *
932 * The target skb is returned upon exit.
933 */
934struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
935{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800936 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700937 return __skb_clone(dst, src);
938}
939EXPORT_SYMBOL_GPL(skb_morph);
940
Ben Hutchings2c530402012-07-10 10:55:09 +0000941/**
942 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000943 * @skb: the skb to modify
944 * @gfp_mask: allocation priority
945 *
946 * This must be called on SKBTX_DEV_ZEROCOPY skb.
947 * It will copy all frags into kernel and drop the reference
948 * to userspace pages.
949 *
950 * If this function is called from an interrupt gfp_mask() must be
951 * %GFP_ATOMIC.
952 *
953 * Returns 0 on success or a negative error code on failure
954 * to allocate kernel memory to copy to.
955 */
956int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000957{
958 int i;
959 int num_frags = skb_shinfo(skb)->nr_frags;
960 struct page *page, *head = NULL;
961 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
962
963 for (i = 0; i < num_frags; i++) {
964 u8 *vaddr;
965 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
966
Krishna Kumar02756ed2012-07-17 02:05:29 +0000967 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000968 if (!page) {
969 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900970 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000971 put_page(head);
972 head = next;
973 }
974 return -ENOMEM;
975 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200976 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000977 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000978 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200979 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900980 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000981 head = page;
982 }
983
984 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000985 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000986 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000987
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000988 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000989
990 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000991 for (i = num_frags - 1; i >= 0; i--) {
992 __skb_fill_page_desc(skb, i, head, 0,
993 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900994 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000995 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000996
997 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000998 return 0;
999}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +00001000EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +00001001
Herbert Xue0053ec2007-10-14 00:37:52 -07001002/**
1003 * skb_clone - duplicate an sk_buff
1004 * @skb: buffer to clone
1005 * @gfp_mask: allocation priority
1006 *
1007 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
1008 * copies share the same packet data but not structure. The new
1009 * buffer has a reference count of 1. If the allocation fails the
1010 * function returns %NULL otherwise the new buffer is returned.
1011 *
1012 * If this function is called from an interrupt gfp_mask() must be
1013 * %GFP_ATOMIC.
1014 */
1015
1016struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
1017{
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07001018 struct sk_buff_fclones *fclones = container_of(skb,
1019 struct sk_buff_fclones,
1020 skb1);
Eric Dumazet6ffe75e2014-12-03 17:04:39 -08001021 struct sk_buff *n;
Herbert Xue0053ec2007-10-14 00:37:52 -07001022
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001023 if (skb_orphan_frags(skb, gfp_mask))
1024 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +00001025
Herbert Xue0053ec2007-10-14 00:37:52 -07001026 if (skb->fclone == SKB_FCLONE_ORIG &&
Eric Dumazet6ffe75e2014-12-03 17:04:39 -08001027 atomic_read(&fclones->fclone_ref) == 1) {
1028 n = &fclones->skb2;
1029 atomic_set(&fclones->fclone_ref, 2);
Herbert Xue0053ec2007-10-14 00:37:52 -07001030 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07001031 if (skb_pfmemalloc(skb))
1032 gfp_mask |= __GFP_MEMALLOC;
1033
Herbert Xue0053ec2007-10-14 00:37:52 -07001034 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
1035 if (!n)
1036 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +02001037
1038 kmemcheck_annotate_bitfield(n, flags1);
Herbert Xue0053ec2007-10-14 00:37:52 -07001039 n->fclone = SKB_FCLONE_UNAVAILABLE;
1040 }
1041
1042 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001044EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001046static void skb_headers_offset_update(struct sk_buff *skb, int off)
1047{
Eric Dumazet030737b2013-10-19 11:42:54 -07001048 /* Only adjust this if it actually is csum_start rather than csum */
1049 if (skb->ip_summed == CHECKSUM_PARTIAL)
1050 skb->csum_start += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001051 /* {transport,network,mac}_header and tail are relative to skb->head */
1052 skb->transport_header += off;
1053 skb->network_header += off;
1054 if (skb_mac_header_was_set(skb))
1055 skb->mac_header += off;
1056 skb->inner_transport_header += off;
1057 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +00001058 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001059}
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
1062{
Herbert Xudec18812007-10-14 00:37:30 -07001063 __copy_skb_header(new, old);
1064
Herbert Xu79671682006-06-22 02:40:14 -07001065 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
1066 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
1067 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
Mel Gormanc93bdd02012-07-31 16:44:19 -07001070static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
1071{
1072 if (skb_pfmemalloc(skb))
1073 return SKB_ALLOC_RX;
1074 return 0;
1075}
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077/**
1078 * skb_copy - create private copy of an sk_buff
1079 * @skb: buffer to copy
1080 * @gfp_mask: allocation priority
1081 *
1082 * Make a copy of both an &sk_buff and its data. This is used when the
1083 * caller wishes to modify the data and needs a private copy of the
1084 * data to alter. Returns %NULL on failure or the pointer to the buffer
1085 * on success. The returned buffer has a reference count of 1.
1086 *
1087 * As by-product this function converts non-linear &sk_buff to linear
1088 * one, so that &sk_buff becomes completely private and caller is allowed
1089 * to modify all the data of returned buffer. This means that this
1090 * function is not recommended for use in circumstances when only
1091 * header is going to be modified. Use pskb_copy() instead.
1092 */
1093
Al Virodd0fc662005-10-07 07:46:04 +01001094struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001096 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +00001097 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -07001098 struct sk_buff *n = __alloc_skb(size, gfp_mask,
1099 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (!n)
1102 return NULL;
1103
1104 /* Set the data pointer */
1105 skb_reserve(n, headerlen);
1106 /* Set the tail pointer and length */
1107 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
1110 BUG();
1111
1112 copy_skb_header(n, skb);
1113 return n;
1114}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001115EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117/**
Octavian Purdilabad93e92014-06-12 01:36:26 +03001118 * __pskb_copy_fclone - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +00001120 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 * @gfp_mask: allocation priority
Octavian Purdilabad93e92014-06-12 01:36:26 +03001122 * @fclone: if true allocate the copy of the skb from the fclone
1123 * cache instead of the head cache; it is recommended to set this
1124 * to true for the cases where the copy will likely be cloned
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 *
1126 * Make a copy of both an &sk_buff and part of its data, located
1127 * in header. Fragmented data remain shared. This is used when
1128 * the caller wishes to modify only header of &sk_buff and needs
1129 * private copy of the header to alter. Returns %NULL on failure
1130 * or the pointer to the buffer on success.
1131 * The returned buffer has a reference count of 1.
1132 */
1133
Octavian Purdilabad93e92014-06-12 01:36:26 +03001134struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1135 gfp_t gfp_mask, bool fclone)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Eric Dumazet117632e2011-12-03 21:39:53 +00001137 unsigned int size = skb_headlen(skb) + headroom;
Octavian Purdilabad93e92014-06-12 01:36:26 +03001138 int flags = skb_alloc_rx_flag(skb) | (fclone ? SKB_ALLOC_FCLONE : 0);
1139 struct sk_buff *n = __alloc_skb(size, gfp_mask, flags, NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (!n)
1142 goto out;
1143
1144 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +00001145 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 /* Set the tail pointer and length */
1147 skb_put(n, skb_headlen(skb));
1148 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001149 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Herbert Xu25f484a2006-11-07 14:57:15 -08001151 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 n->data_len = skb->data_len;
1153 n->len = skb->len;
1154
1155 if (skb_shinfo(skb)->nr_frags) {
1156 int i;
1157
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001158 if (skb_orphan_frags(skb, gfp_mask)) {
1159 kfree_skb(n);
1160 n = NULL;
1161 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1164 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001165 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167 skb_shinfo(n)->nr_frags = i;
1168 }
1169
David S. Miller21dc3302010-08-23 00:13:46 -07001170 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1172 skb_clone_fraglist(n);
1173 }
1174
1175 copy_skb_header(n, skb);
1176out:
1177 return n;
1178}
Octavian Purdilabad93e92014-06-12 01:36:26 +03001179EXPORT_SYMBOL(__pskb_copy_fclone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181/**
1182 * pskb_expand_head - reallocate header of &sk_buff
1183 * @skb: buffer to reallocate
1184 * @nhead: room to add at head
1185 * @ntail: room to add at tail
1186 * @gfp_mask: allocation priority
1187 *
Mathias Krausebc323832013-11-07 14:18:26 +01001188 * Expands (or creates identical copy, if @nhead and @ntail are zero)
1189 * header of @skb. &sk_buff itself is not changed. &sk_buff MUST have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * reference count of 1. Returns zero in the case of success or error,
1191 * if expansion failed. In the last case, &sk_buff is not changed.
1192 *
1193 * All the pointers pointing into skb header may change and must be
1194 * reloaded after call to this function.
1195 */
1196
Victor Fusco86a76ca2005-07-08 14:57:47 -07001197int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001198 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 int i;
1201 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001202 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 long off;
1204
Herbert Xu4edd87a2008-10-01 07:09:38 -07001205 BUG_ON(nhead < 0);
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (skb_shared(skb))
1208 BUG();
1209
1210 size = SKB_DATA_ALIGN(size);
1211
Mel Gormanc93bdd02012-07-31 16:44:19 -07001212 if (skb_pfmemalloc(skb))
1213 gfp_mask |= __GFP_MEMALLOC;
1214 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1215 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (!data)
1217 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001218 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001221 * optimized for the cases when header is void.
1222 */
1223 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1224
1225 memcpy((struct skb_shared_info *)(data + size),
1226 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001227 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Alexander Duyck3e245912012-05-04 14:26:51 +00001229 /*
1230 * if shinfo is shared we must drop the old head gracefully, but if it
1231 * is not we can just drop the old head and let the existing refcount
1232 * be since all we did is relocate the values
1233 */
1234 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001235 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001236 if (skb_orphan_frags(skb, gfp_mask))
1237 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001238 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001239 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Eric Dumazet1fd63042010-09-02 23:09:32 +00001241 if (skb_has_frag_list(skb))
1242 skb_clone_fraglist(skb);
1243
1244 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001245 } else {
1246 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 off = (data + nhead) - skb->head;
1249
1250 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001251 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001253#ifdef NET_SKBUFF_DATA_USES_OFFSET
1254 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001255 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001256#else
1257 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001258#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001259 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001260 skb_headers_offset_update(skb, nhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001262 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 skb->nohdr = 0;
1264 atomic_set(&skb_shinfo(skb)->dataref, 1);
1265 return 0;
1266
Shirley Maa6686f22011-07-06 12:22:12 +00001267nofrags:
1268 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269nodata:
1270 return -ENOMEM;
1271}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001272EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274/* Make private copy of skb with writable head and some headroom */
1275
1276struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1277{
1278 struct sk_buff *skb2;
1279 int delta = headroom - skb_headroom(skb);
1280
1281 if (delta <= 0)
1282 skb2 = pskb_copy(skb, GFP_ATOMIC);
1283 else {
1284 skb2 = skb_clone(skb, GFP_ATOMIC);
1285 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1286 GFP_ATOMIC)) {
1287 kfree_skb(skb2);
1288 skb2 = NULL;
1289 }
1290 }
1291 return skb2;
1292}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001293EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295/**
1296 * skb_copy_expand - copy and expand sk_buff
1297 * @skb: buffer to copy
1298 * @newheadroom: new free bytes at head
1299 * @newtailroom: new free bytes at tail
1300 * @gfp_mask: allocation priority
1301 *
1302 * Make a copy of both an &sk_buff and its data and while doing so
1303 * allocate additional space.
1304 *
1305 * This is used when the caller wishes to modify the data and needs a
1306 * private copy of the data to alter as well as more space for new fields.
1307 * Returns %NULL on failure or the pointer to the buffer
1308 * on success. The returned buffer has a reference count of 1.
1309 *
1310 * You must pass %GFP_ATOMIC as the allocation priority if this function
1311 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 */
1313struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001314 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001315 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 /*
1318 * Allocate the copy buffer
1319 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001320 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1321 gfp_mask, skb_alloc_rx_flag(skb),
1322 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001323 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 int head_copy_len, head_copy_off;
1325
1326 if (!n)
1327 return NULL;
1328
1329 skb_reserve(n, newheadroom);
1330
1331 /* Set the tail pointer and length */
1332 skb_put(n, skb->len);
1333
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001334 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 head_copy_off = 0;
1336 if (newheadroom <= head_copy_len)
1337 head_copy_len = newheadroom;
1338 else
1339 head_copy_off = newheadroom - head_copy_len;
1340
1341 /* Copy the linear header and data. */
1342 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1343 skb->len + head_copy_len))
1344 BUG();
1345
1346 copy_skb_header(n, skb);
1347
Eric Dumazet030737b2013-10-19 11:42:54 -07001348 skb_headers_offset_update(n, newheadroom - oldheadroom);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return n;
1351}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001352EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354/**
1355 * skb_pad - zero pad the tail of an skb
1356 * @skb: buffer to pad
1357 * @pad: space to pad
1358 *
1359 * Ensure that a buffer is followed by a padding area that is zero
1360 * filled. Used by network drivers which may DMA or transfer data
1361 * beyond the buffer end onto the wire.
1362 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001363 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001365
Herbert Xu5b057c62006-06-23 02:06:41 -07001366int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Herbert Xu5b057c62006-06-23 02:06:41 -07001368 int err;
1369 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001372 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001376
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001377 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001378 if (likely(skb_cloned(skb) || ntail > 0)) {
1379 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1380 if (unlikely(err))
1381 goto free_skb;
1382 }
1383
1384 /* FIXME: The use of this function with non-linear skb's really needs
1385 * to be audited.
1386 */
1387 err = skb_linearize(skb);
1388 if (unlikely(err))
1389 goto free_skb;
1390
1391 memset(skb->data + skb->len, 0, pad);
1392 return 0;
1393
1394free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001396 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001397}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001398EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001399
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001400/**
Mathias Krause0c7ddf32013-11-07 14:18:24 +01001401 * pskb_put - add data to the tail of a potentially fragmented buffer
1402 * @skb: start of the buffer to use
1403 * @tail: tail fragment of the buffer to use
1404 * @len: amount of data to add
1405 *
1406 * This function extends the used data area of the potentially
1407 * fragmented buffer. @tail must be the last fragment of @skb -- or
1408 * @skb itself. If this would exceed the total buffer size the kernel
1409 * will panic. A pointer to the first byte of the extra data is
1410 * returned.
1411 */
1412
1413unsigned char *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len)
1414{
1415 if (tail != skb) {
1416 skb->data_len += len;
1417 skb->len += len;
1418 }
1419 return skb_put(tail, len);
1420}
1421EXPORT_SYMBOL_GPL(pskb_put);
1422
1423/**
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001424 * skb_put - add data to a buffer
1425 * @skb: buffer to use
1426 * @len: amount of data to add
1427 *
1428 * This function extends the used data area of the buffer. If this would
1429 * exceed the total buffer size the kernel will panic. A pointer to the
1430 * first byte of the extra data is returned.
1431 */
1432unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1433{
1434 unsigned char *tmp = skb_tail_pointer(skb);
1435 SKB_LINEAR_ASSERT(skb);
1436 skb->tail += len;
1437 skb->len += len;
1438 if (unlikely(skb->tail > skb->end))
1439 skb_over_panic(skb, len, __builtin_return_address(0));
1440 return tmp;
1441}
1442EXPORT_SYMBOL(skb_put);
1443
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001444/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001445 * skb_push - add data to the start of a buffer
1446 * @skb: buffer to use
1447 * @len: amount of data to add
1448 *
1449 * This function extends the used data area of the buffer at the buffer
1450 * start. If this would exceed the total buffer headroom the kernel will
1451 * panic. A pointer to the first byte of the extra data is returned.
1452 */
1453unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1454{
1455 skb->data -= len;
1456 skb->len += len;
1457 if (unlikely(skb->data<skb->head))
1458 skb_under_panic(skb, len, __builtin_return_address(0));
1459 return skb->data;
1460}
1461EXPORT_SYMBOL(skb_push);
1462
1463/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001464 * skb_pull - remove data from the start of a buffer
1465 * @skb: buffer to use
1466 * @len: amount of data to remove
1467 *
1468 * This function removes data from the start of a buffer, returning
1469 * the memory to the headroom. A pointer to the next data in the buffer
1470 * is returned. Once the data has been pulled future pushes will overwrite
1471 * the old data.
1472 */
1473unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1474{
David S. Miller47d29642010-05-02 02:21:44 -07001475 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001476}
1477EXPORT_SYMBOL(skb_pull);
1478
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001479/**
1480 * skb_trim - remove end from a buffer
1481 * @skb: buffer to alter
1482 * @len: new length
1483 *
1484 * Cut the length of a buffer down by removing data from the tail. If
1485 * the buffer is already under the length specified it is not modified.
1486 * The skb must be linear.
1487 */
1488void skb_trim(struct sk_buff *skb, unsigned int len)
1489{
1490 if (skb->len > len)
1491 __skb_trim(skb, len);
1492}
1493EXPORT_SYMBOL(skb_trim);
1494
Herbert Xu3cc0e872006-06-09 16:13:38 -07001495/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 */
1497
Herbert Xu3cc0e872006-06-09 16:13:38 -07001498int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Herbert Xu27b437c2006-07-13 19:26:39 -07001500 struct sk_buff **fragp;
1501 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 int offset = skb_headlen(skb);
1503 int nfrags = skb_shinfo(skb)->nr_frags;
1504 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001505 int err;
1506
1507 if (skb_cloned(skb) &&
1508 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1509 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001511 i = 0;
1512 if (offset >= len)
1513 goto drop_pages;
1514
1515 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001516 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001517
1518 if (end < len) {
1519 offset = end;
1520 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001522
Eric Dumazet9e903e02011-10-18 21:00:24 +00001523 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001524
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001525drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001526 skb_shinfo(skb)->nr_frags = i;
1527
1528 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001529 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001530
David S. Miller21dc3302010-08-23 00:13:46 -07001531 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001532 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001533 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
1535
Herbert Xu27b437c2006-07-13 19:26:39 -07001536 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1537 fragp = &frag->next) {
1538 int end = offset + frag->len;
1539
1540 if (skb_shared(frag)) {
1541 struct sk_buff *nfrag;
1542
1543 nfrag = skb_clone(frag, GFP_ATOMIC);
1544 if (unlikely(!nfrag))
1545 return -ENOMEM;
1546
1547 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001548 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001549 frag = nfrag;
1550 *fragp = frag;
1551 }
1552
1553 if (end < len) {
1554 offset = end;
1555 continue;
1556 }
1557
1558 if (end > len &&
1559 unlikely((err = pskb_trim(frag, len - offset))))
1560 return err;
1561
1562 if (frag->next)
1563 skb_drop_list(&frag->next);
1564 break;
1565 }
1566
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001567done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001568 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 skb->data_len -= skb->len - len;
1570 skb->len = len;
1571 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001572 skb->len = len;
1573 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001574 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
1576
1577 return 0;
1578}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001579EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Eric Dumazet791521e2018-10-10 12:30:11 -07001581/* Note : use pskb_trim_rcsum() instead of calling this directly
1582 */
1583int pskb_trim_rcsum_slow(struct sk_buff *skb, unsigned int len)
1584{
1585 if (skb->ip_summed == CHECKSUM_COMPLETE) {
1586 int delta = skb->len - len;
1587
Dimitris Michailidis0c49b5e2018-10-19 17:07:13 -07001588 skb->csum = csum_block_sub(skb->csum,
1589 skb_checksum(skb, len, delta, 0),
1590 len);
Eric Dumazet791521e2018-10-10 12:30:11 -07001591 }
1592 return __pskb_trim(skb, len);
1593}
1594EXPORT_SYMBOL(pskb_trim_rcsum_slow);
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596/**
1597 * __pskb_pull_tail - advance tail of skb header
1598 * @skb: buffer to reallocate
1599 * @delta: number of bytes to advance tail
1600 *
1601 * The function makes a sense only on a fragmented &sk_buff,
1602 * it expands header moving its tail forward and copying necessary
1603 * data from fragmented part.
1604 *
1605 * &sk_buff MUST have reference count of 1.
1606 *
1607 * Returns %NULL (and &sk_buff does not change) if pull failed
1608 * or value of new tail of skb in the case of success.
1609 *
1610 * All the pointers pointing into skb header may change and must be
1611 * reloaded after call to this function.
1612 */
1613
1614/* Moves tail of skb head forward, copying data from fragmented part,
1615 * when it is necessary.
1616 * 1. It may fail due to malloc failure.
1617 * 2. It may change skb pointers.
1618 *
1619 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1620 */
1621unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1622{
1623 /* If skb has not enough free space at tail, get new one
1624 * plus 128 bytes for future expansions. If we have enough
1625 * room at tail, reallocate without expansion only if skb is cloned.
1626 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001627 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 if (eat > 0 || skb_cloned(skb)) {
1630 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1631 GFP_ATOMIC))
1632 return NULL;
1633 }
1634
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001635 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 BUG();
1637
1638 /* Optimization: no fragments, no reasons to preestimate
1639 * size of pulled pages. Superb.
1640 */
David S. Miller21dc3302010-08-23 00:13:46 -07001641 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 goto pull_pages;
1643
1644 /* Estimate size of pulled pages. */
1645 eat = delta;
1646 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001647 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1648
1649 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001651 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653
1654 /* If we need update frag list, we are in troubles.
1655 * Certainly, it possible to add an offset to skb data,
1656 * but taking into account that pulling is expected to
1657 * be very rare operation, it is worth to fight against
1658 * further bloating skb head and crucify ourselves here instead.
1659 * Pure masohism, indeed. 8)8)
1660 */
1661 if (eat) {
1662 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1663 struct sk_buff *clone = NULL;
1664 struct sk_buff *insp = NULL;
1665
1666 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001667 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 if (list->len <= eat) {
1670 /* Eaten as whole. */
1671 eat -= list->len;
1672 list = list->next;
1673 insp = list;
1674 } else {
1675 /* Eaten partially. */
1676
1677 if (skb_shared(list)) {
1678 /* Sucks! We need to fork list. :-( */
1679 clone = skb_clone(list, GFP_ATOMIC);
1680 if (!clone)
1681 return NULL;
1682 insp = list->next;
1683 list = clone;
1684 } else {
1685 /* This may be pulled without
1686 * problems. */
1687 insp = list;
1688 }
1689 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001690 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 return NULL;
1692 }
1693 break;
1694 }
1695 } while (eat);
1696
1697 /* Free pulled out fragments. */
1698 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1699 skb_shinfo(skb)->frag_list = list->next;
1700 kfree_skb(list);
1701 }
1702 /* And insert new clone at head. */
1703 if (clone) {
1704 clone->next = list;
1705 skb_shinfo(skb)->frag_list = clone;
1706 }
1707 }
1708 /* Success! Now we may commit changes to skb data. */
1709
1710pull_pages:
1711 eat = delta;
1712 k = 0;
1713 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001714 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1715
1716 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001717 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001718 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 } else {
1720 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1721 if (eat) {
1722 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001723 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 eat = 0;
1725 }
1726 k++;
1727 }
1728 }
1729 skb_shinfo(skb)->nr_frags = k;
1730
1731 skb->tail += delta;
1732 skb->data_len -= delta;
1733
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001734 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001736EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Eric Dumazet22019b12011-07-29 18:37:31 +00001738/**
1739 * skb_copy_bits - copy bits from skb to kernel buffer
1740 * @skb: source skb
1741 * @offset: offset in source
1742 * @to: destination buffer
1743 * @len: number of bytes to copy
1744 *
1745 * Copy the specified number of bytes from the source skb to the
1746 * destination buffer.
1747 *
1748 * CAUTION ! :
1749 * If its prototype is ever changed,
1750 * check arch/{*}/net/{*}.S files,
1751 * since it is called from BPF assembly code.
1752 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1754{
David S. Miller1a028e52007-04-27 15:21:23 -07001755 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001756 struct sk_buff *frag_iter;
1757 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 if (offset > (int)skb->len - len)
1760 goto fault;
1761
1762 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001763 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (copy > len)
1765 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001766 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if ((len -= copy) == 0)
1768 return 0;
1769 offset += copy;
1770 to += copy;
1771 }
1772
1773 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001774 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001775 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001777 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001778
Eric Dumazet51c56b02012-04-05 11:35:15 +02001779 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if ((copy = end - offset) > 0) {
1781 u8 *vaddr;
1782
1783 if (copy > len)
1784 copy = len;
1785
Eric Dumazet51c56b02012-04-05 11:35:15 +02001786 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001788 vaddr + f->page_offset + offset - start,
1789 copy);
1790 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 if ((len -= copy) == 0)
1793 return 0;
1794 offset += copy;
1795 to += copy;
1796 }
David S. Miller1a028e52007-04-27 15:21:23 -07001797 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
David S. Millerfbb398a2009-06-09 00:18:59 -07001800 skb_walk_frags(skb, frag_iter) {
1801 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
David S. Millerfbb398a2009-06-09 00:18:59 -07001803 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
David S. Millerfbb398a2009-06-09 00:18:59 -07001805 end = start + frag_iter->len;
1806 if ((copy = end - offset) > 0) {
1807 if (copy > len)
1808 copy = len;
1809 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1810 goto fault;
1811 if ((len -= copy) == 0)
1812 return 0;
1813 offset += copy;
1814 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001816 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
Shirley Maa6686f22011-07-06 12:22:12 +00001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 if (!len)
1820 return 0;
1821
1822fault:
1823 return -EFAULT;
1824}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001825EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Jens Axboe9c55e012007-11-06 23:30:13 -08001827/*
1828 * Callback from splice_to_pipe(), if we need to release some pages
1829 * at the end of the spd in case we error'ed out in filling the pipe.
1830 */
1831static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1832{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001833 put_page(spd->pages[i]);
1834}
Jens Axboe9c55e012007-11-06 23:30:13 -08001835
David S. Millera108d5f2012-04-23 23:06:11 -04001836static struct page *linear_to_page(struct page *page, unsigned int *len,
1837 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001838 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001839{
Eric Dumazet5640f762012-09-23 23:04:42 +00001840 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001841
Eric Dumazet5640f762012-09-23 23:04:42 +00001842 if (!sk_page_frag_refill(sk, pfrag))
1843 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001844
Eric Dumazet5640f762012-09-23 23:04:42 +00001845 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001846
Eric Dumazet5640f762012-09-23 23:04:42 +00001847 memcpy(page_address(pfrag->page) + pfrag->offset,
1848 page_address(page) + *offset, *len);
1849 *offset = pfrag->offset;
1850 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001851
Eric Dumazet5640f762012-09-23 23:04:42 +00001852 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001853}
1854
Eric Dumazet41c73a02012-04-22 12:26:16 +00001855static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1856 struct page *page,
1857 unsigned int offset)
1858{
1859 return spd->nr_pages &&
1860 spd->pages[spd->nr_pages - 1] == page &&
1861 (spd->partial[spd->nr_pages - 1].offset +
1862 spd->partial[spd->nr_pages - 1].len == offset);
1863}
1864
Jens Axboe9c55e012007-11-06 23:30:13 -08001865/*
1866 * Fill page/offset/length into spd, if it can hold more pages.
1867 */
David S. Millera108d5f2012-04-23 23:06:11 -04001868static bool spd_fill_page(struct splice_pipe_desc *spd,
1869 struct pipe_inode_info *pipe, struct page *page,
1870 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001871 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001872 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001873{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001874 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001875 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001876
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001877 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001878 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001879 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001880 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001881 }
1882 if (spd_can_coalesce(spd, page, offset)) {
1883 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001884 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001885 }
1886 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001887 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001888 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001889 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001890 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001891
David S. Millera108d5f2012-04-23 23:06:11 -04001892 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001893}
1894
David S. Millera108d5f2012-04-23 23:06:11 -04001895static bool __splice_segment(struct page *page, unsigned int poff,
1896 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001897 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001898 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001899 struct sock *sk,
1900 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001901{
1902 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001903 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001904
1905 /* skip this segment if already processed */
1906 if (*off >= plen) {
1907 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001908 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001909 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001910
Octavian Purdila2870c432008-07-15 00:49:11 -07001911 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001912 poff += *off;
1913 plen -= *off;
1914 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001915
Eric Dumazet18aafc62013-01-11 14:46:37 +00001916 do {
1917 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001918
Eric Dumazet18aafc62013-01-11 14:46:37 +00001919 if (spd_fill_page(spd, pipe, page, &flen, poff,
1920 linear, sk))
1921 return true;
1922 poff += flen;
1923 plen -= flen;
1924 *len -= flen;
1925 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001926
David S. Millera108d5f2012-04-23 23:06:11 -04001927 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001928}
1929
1930/*
David S. Millera108d5f2012-04-23 23:06:11 -04001931 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001932 * pipe is full or if we already spliced the requested length.
1933 */
David S. Millera108d5f2012-04-23 23:06:11 -04001934static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1935 unsigned int *offset, unsigned int *len,
1936 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001937{
1938 int seg;
Tom Herbertfa9835e2016-03-07 14:11:04 -08001939 struct sk_buff *iter;
Octavian Purdila2870c432008-07-15 00:49:11 -07001940
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001941 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001942 * If skb->head_frag is set, this 'linear' part is backed by a
1943 * fragment, and if the head is not shared with any clones then
1944 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001945 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001946 if (__splice_segment(virt_to_page(skb->data),
1947 (unsigned long) skb->data & (PAGE_SIZE - 1),
1948 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001949 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001950 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001951 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001952 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001953
1954 /*
1955 * then map the fragments
1956 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001957 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1958 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1959
Ian Campbellea2ab692011-08-22 23:44:58 +00001960 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001961 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001962 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001963 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001964 }
1965
Tom Herbertfa9835e2016-03-07 14:11:04 -08001966 skb_walk_frags(skb, iter) {
1967 if (*offset >= iter->len) {
1968 *offset -= iter->len;
1969 continue;
1970 }
1971 /* __skb_splice_bits() only fails if the output has no room
1972 * left, so no point in going over the frag_list for the error
1973 * case.
1974 */
1975 if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
1976 return true;
1977 }
1978
David S. Millera108d5f2012-04-23 23:06:11 -04001979 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001980}
1981
1982/*
1983 * Map data from the skb to a pipe. Should handle both the linear part,
Tom Herbertfa9835e2016-03-07 14:11:04 -08001984 * the fragments, and the frag list.
Jens Axboe9c55e012007-11-06 23:30:13 -08001985 */
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02001986int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001987 struct pipe_inode_info *pipe, unsigned int tlen,
Al Viro25869262016-09-17 21:02:10 -04001988 unsigned int flags)
Jens Axboe9c55e012007-11-06 23:30:13 -08001989{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001990 struct partial_page partial[MAX_SKB_FRAGS];
1991 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001992 struct splice_pipe_desc spd = {
1993 .pages = pages,
1994 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001995 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001996 .flags = flags,
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001997 .ops = &nosteal_pipe_buf_ops,
Jens Axboe9c55e012007-11-06 23:30:13 -08001998 .spd_release = sock_spd_release,
1999 };
Jens Axboe35f3d142010-05-20 10:43:18 +02002000 int ret = 0;
2001
Tom Herbertfa9835e2016-03-07 14:11:04 -08002002 __skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08002003
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02002004 if (spd.nr_pages)
Al Viro25869262016-09-17 21:02:10 -04002005 ret = splice_to_pipe(pipe, &spd);
Jens Axboe9c55e012007-11-06 23:30:13 -08002006
Jens Axboe35f3d142010-05-20 10:43:18 +02002007 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08002008}
Hannes Frederic Sowa2b514572015-05-21 17:00:01 +02002009EXPORT_SYMBOL_GPL(skb_splice_bits);
Jens Axboe9c55e012007-11-06 23:30:13 -08002010
Herbert Xu357b40a2005-04-19 22:30:14 -07002011/**
2012 * skb_store_bits - store bits from kernel buffer to skb
2013 * @skb: destination buffer
2014 * @offset: offset in destination
2015 * @from: source buffer
2016 * @len: number of bytes to copy
2017 *
2018 * Copy the specified number of bytes from the source buffer to the
2019 * destination skb. This function handles all the messy bits of
2020 * traversing fragment lists and such.
2021 */
2022
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07002023int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07002024{
David S. Miller1a028e52007-04-27 15:21:23 -07002025 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07002026 struct sk_buff *frag_iter;
2027 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002028
2029 if (offset > (int)skb->len - len)
2030 goto fault;
2031
David S. Miller1a028e52007-04-27 15:21:23 -07002032 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07002033 if (copy > len)
2034 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002035 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07002036 if ((len -= copy) == 0)
2037 return 0;
2038 offset += copy;
2039 from += copy;
2040 }
2041
2042 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2043 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07002044 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002045
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002046 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002047
Eric Dumazet9e903e02011-10-18 21:00:24 +00002048 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07002049 if ((copy = end - offset) > 0) {
2050 u8 *vaddr;
2051
2052 if (copy > len)
2053 copy = len;
2054
Eric Dumazet51c56b02012-04-05 11:35:15 +02002055 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07002056 memcpy(vaddr + frag->page_offset + offset - start,
2057 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002058 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07002059
2060 if ((len -= copy) == 0)
2061 return 0;
2062 offset += copy;
2063 from += copy;
2064 }
David S. Miller1a028e52007-04-27 15:21:23 -07002065 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002066 }
2067
David S. Millerfbb398a2009-06-09 00:18:59 -07002068 skb_walk_frags(skb, frag_iter) {
2069 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002070
David S. Millerfbb398a2009-06-09 00:18:59 -07002071 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07002072
David S. Millerfbb398a2009-06-09 00:18:59 -07002073 end = start + frag_iter->len;
2074 if ((copy = end - offset) > 0) {
2075 if (copy > len)
2076 copy = len;
2077 if (skb_store_bits(frag_iter, offset - start,
2078 from, copy))
2079 goto fault;
2080 if ((len -= copy) == 0)
2081 return 0;
2082 offset += copy;
2083 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002084 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002085 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002086 }
2087 if (!len)
2088 return 0;
2089
2090fault:
2091 return -EFAULT;
2092}
Herbert Xu357b40a2005-04-19 22:30:14 -07002093EXPORT_SYMBOL(skb_store_bits);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01002096__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2097 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
David S. Miller1a028e52007-04-27 15:21:23 -07002099 int start = skb_headlen(skb);
2100 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002101 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 int pos = 0;
2103
2104 /* Checksum header. */
2105 if (copy > 0) {
2106 if (copy > len)
2107 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002108 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 if ((len -= copy) == 0)
2110 return csum;
2111 offset += copy;
2112 pos = copy;
2113 }
2114
2115 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002116 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002117 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002119 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002120
Eric Dumazet51c56b02012-04-05 11:35:15 +02002121 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08002123 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 if (copy > len)
2127 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002128 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01002129 csum2 = ops->update(vaddr + frag->page_offset +
2130 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002131 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01002132 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if (!(len -= copy))
2134 return csum;
2135 offset += copy;
2136 pos += copy;
2137 }
David S. Miller1a028e52007-04-27 15:21:23 -07002138 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
David S. Millerfbb398a2009-06-09 00:18:59 -07002141 skb_walk_frags(skb, frag_iter) {
2142 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
David S. Millerfbb398a2009-06-09 00:18:59 -07002144 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
David S. Millerfbb398a2009-06-09 00:18:59 -07002146 end = start + frag_iter->len;
2147 if ((copy = end - offset) > 0) {
2148 __wsum csum2;
2149 if (copy > len)
2150 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002151 csum2 = __skb_checksum(frag_iter, offset - start,
2152 copy, 0, ops);
2153 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07002154 if ((len -= copy) == 0)
2155 return csum;
2156 offset += copy;
2157 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002159 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002161 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 return csum;
2164}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002165EXPORT_SYMBOL(__skb_checksum);
2166
2167__wsum skb_checksum(const struct sk_buff *skb, int offset,
2168 int len, __wsum csum)
2169{
2170 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002171 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002172 .combine = csum_block_add_ext,
2173 };
2174
2175 return __skb_checksum(skb, offset, len, csum, &ops);
2176}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002177EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179/* Both of above in one bottle. */
2180
Al Viro81d77662006-11-14 21:37:33 -08002181__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2182 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
David S. Miller1a028e52007-04-27 15:21:23 -07002184 int start = skb_headlen(skb);
2185 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002186 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 int pos = 0;
2188
2189 /* Copy header. */
2190 if (copy > 0) {
2191 if (copy > len)
2192 copy = len;
2193 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2194 copy, csum);
2195 if ((len -= copy) == 0)
2196 return csum;
2197 offset += copy;
2198 to += copy;
2199 pos = copy;
2200 }
2201
2202 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002203 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002205 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002206
Eric Dumazet9e903e02011-10-18 21:00:24 +00002207 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002209 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 u8 *vaddr;
2211 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2212
2213 if (copy > len)
2214 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002215 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002217 frag->page_offset +
2218 offset - start, to,
2219 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002220 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 csum = csum_block_add(csum, csum2, pos);
2222 if (!(len -= copy))
2223 return csum;
2224 offset += copy;
2225 to += copy;
2226 pos += copy;
2227 }
David S. Miller1a028e52007-04-27 15:21:23 -07002228 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
2230
David S. Millerfbb398a2009-06-09 00:18:59 -07002231 skb_walk_frags(skb, frag_iter) {
2232 __wsum csum2;
2233 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
David S. Millerfbb398a2009-06-09 00:18:59 -07002235 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
David S. Millerfbb398a2009-06-09 00:18:59 -07002237 end = start + frag_iter->len;
2238 if ((copy = end - offset) > 0) {
2239 if (copy > len)
2240 copy = len;
2241 csum2 = skb_copy_and_csum_bits(frag_iter,
2242 offset - start,
2243 to, copy, 0);
2244 csum = csum_block_add(csum, csum2, pos);
2245 if ((len -= copy) == 0)
2246 return csum;
2247 offset += copy;
2248 to += copy;
2249 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002251 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002253 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return csum;
2255}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002256EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Thomas Grafaf2806f2013-12-13 15:22:17 +01002258 /**
2259 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2260 * @from: source buffer
2261 *
2262 * Calculates the amount of linear headroom needed in the 'to' skb passed
2263 * into skb_zerocopy().
2264 */
2265unsigned int
2266skb_zerocopy_headlen(const struct sk_buff *from)
2267{
2268 unsigned int hlen = 0;
2269
2270 if (!from->head_frag ||
2271 skb_headlen(from) < L1_CACHE_BYTES ||
2272 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2273 hlen = skb_headlen(from);
2274
2275 if (skb_has_frag_list(from))
2276 hlen = from->len;
2277
2278 return hlen;
2279}
2280EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2281
2282/**
2283 * skb_zerocopy - Zero copy skb to skb
2284 * @to: destination buffer
Masanari Iida7fceb4d2014-01-29 01:05:28 +09002285 * @from: source buffer
Thomas Grafaf2806f2013-12-13 15:22:17 +01002286 * @len: number of bytes to copy from source buffer
2287 * @hlen: size of linear headroom in destination buffer
2288 *
2289 * Copies up to `len` bytes from `from` to `to` by creating references
2290 * to the frags in the source buffer.
2291 *
2292 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2293 * headroom in the `to` buffer.
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002294 *
2295 * Return value:
2296 * 0: everything is OK
2297 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
2298 * -EFAULT: skb_copy_bits() found some problem with skb geometry
Thomas Grafaf2806f2013-12-13 15:22:17 +01002299 */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002300int
2301skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
Thomas Grafaf2806f2013-12-13 15:22:17 +01002302{
2303 int i, j = 0;
2304 int plen = 0; /* length of skb->head fragment */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002305 int ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002306 struct page *page;
2307 unsigned int offset;
2308
2309 BUG_ON(!from->head_frag && !hlen);
2310
2311 /* dont bother with small payloads */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002312 if (len <= skb_tailroom(to))
2313 return skb_copy_bits(from, 0, skb_put(to, len), len);
Thomas Grafaf2806f2013-12-13 15:22:17 +01002314
2315 if (hlen) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002316 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2317 if (unlikely(ret))
2318 return ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002319 len -= hlen;
2320 } else {
2321 plen = min_t(int, skb_headlen(from), len);
2322 if (plen) {
2323 page = virt_to_head_page(from->head);
2324 offset = from->data - (unsigned char *)page_address(page);
2325 __skb_fill_page_desc(to, 0, page, offset, plen);
2326 get_page(page);
2327 j = 1;
2328 len -= plen;
2329 }
2330 }
2331
2332 to->truesize += len + plen;
2333 to->len += len + plen;
2334 to->data_len += len + plen;
2335
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002336 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2337 skb_tx_error(from);
2338 return -ENOMEM;
2339 }
2340
Thomas Grafaf2806f2013-12-13 15:22:17 +01002341 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2342 if (!len)
2343 break;
2344 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2345 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2346 len -= skb_shinfo(to)->frags[j].size;
2347 skb_frag_ref(to, j);
2348 j++;
2349 }
2350 skb_shinfo(to)->nr_frags = j;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002351
2352 return 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002353}
2354EXPORT_SYMBOL_GPL(skb_zerocopy);
2355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2357{
Al Virod3bc23e2006-11-14 21:24:49 -08002358 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 long csstart;
2360
Patrick McHardy84fa7932006-08-29 16:44:56 -07002361 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002362 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 else
2364 csstart = skb_headlen(skb);
2365
Kris Katterjohn09a62662006-01-08 22:24:28 -08002366 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002368 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 csum = 0;
2371 if (csstart != skb->len)
2372 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2373 skb->len - csstart, 0);
2374
Patrick McHardy84fa7932006-08-29 16:44:56 -07002375 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002376 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Al Virod3bc23e2006-11-14 21:24:49 -08002378 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002381EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383/**
2384 * skb_dequeue - remove from the head of the queue
2385 * @list: list to dequeue from
2386 *
2387 * Remove the head of the list. The list lock is taken so the function
2388 * may be used safely with other locking list functions. The head item is
2389 * returned or %NULL if the list is empty.
2390 */
2391
2392struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2393{
2394 unsigned long flags;
2395 struct sk_buff *result;
2396
2397 spin_lock_irqsave(&list->lock, flags);
2398 result = __skb_dequeue(list);
2399 spin_unlock_irqrestore(&list->lock, flags);
2400 return result;
2401}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002402EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404/**
2405 * skb_dequeue_tail - remove from the tail of the queue
2406 * @list: list to dequeue from
2407 *
2408 * Remove the tail of the list. The list lock is taken so the function
2409 * may be used safely with other locking list functions. The tail item is
2410 * returned or %NULL if the list is empty.
2411 */
2412struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2413{
2414 unsigned long flags;
2415 struct sk_buff *result;
2416
2417 spin_lock_irqsave(&list->lock, flags);
2418 result = __skb_dequeue_tail(list);
2419 spin_unlock_irqrestore(&list->lock, flags);
2420 return result;
2421}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002422EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
2424/**
2425 * skb_queue_purge - empty a list
2426 * @list: list to empty
2427 *
2428 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2429 * the list and one reference dropped. This function takes the list
2430 * lock and is atomic with respect to other list locking functions.
2431 */
2432void skb_queue_purge(struct sk_buff_head *list)
2433{
2434 struct sk_buff *skb;
2435 while ((skb = skb_dequeue(list)) != NULL)
2436 kfree_skb(skb);
2437}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002438EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440/**
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002441 * skb_rbtree_purge - empty a skb rbtree
2442 * @root: root of the rbtree to empty
Peter Oskolkov87169592018-10-10 12:30:09 -07002443 * Return value: the sum of truesizes of all purged skbs.
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002444 *
2445 * Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
2446 * the list and one reference dropped. This function does not take
2447 * any lock. Synchronization should be handled by the caller (e.g., TCP
2448 * out-of-order queue is protected by the socket lock).
2449 */
Peter Oskolkov87169592018-10-10 12:30:09 -07002450unsigned int skb_rbtree_purge(struct rb_root *root)
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002451{
Eric Dumazetf5d17b52018-10-10 12:30:08 -07002452 struct rb_node *p = rb_first(root);
Peter Oskolkov87169592018-10-10 12:30:09 -07002453 unsigned int sum = 0;
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002454
Eric Dumazetf5d17b52018-10-10 12:30:08 -07002455 while (p) {
2456 struct sk_buff *skb = rb_entry(p, struct sk_buff, rbnode);
2457
2458 p = rb_next(p);
2459 rb_erase(&skb->rbnode, root);
Peter Oskolkov87169592018-10-10 12:30:09 -07002460 sum += skb->truesize;
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002461 kfree_skb(skb);
Eric Dumazetf5d17b52018-10-10 12:30:08 -07002462 }
Peter Oskolkov87169592018-10-10 12:30:09 -07002463 return sum;
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002464}
2465
2466/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 * skb_queue_head - queue a buffer at the list head
2468 * @list: list to use
2469 * @newsk: buffer to queue
2470 *
2471 * Queue a buffer at the start of the list. This function takes the
2472 * list lock and can be used safely with other locking &sk_buff functions
2473 * safely.
2474 *
2475 * A buffer cannot be placed on two lists at the same time.
2476 */
2477void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2478{
2479 unsigned long flags;
2480
2481 spin_lock_irqsave(&list->lock, flags);
2482 __skb_queue_head(list, newsk);
2483 spin_unlock_irqrestore(&list->lock, flags);
2484}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002485EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487/**
2488 * skb_queue_tail - queue a buffer at the list tail
2489 * @list: list to use
2490 * @newsk: buffer to queue
2491 *
2492 * Queue a buffer at the tail of the list. This function takes the
2493 * list lock and can be used safely with other locking &sk_buff functions
2494 * safely.
2495 *
2496 * A buffer cannot be placed on two lists at the same time.
2497 */
2498void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2499{
2500 unsigned long flags;
2501
2502 spin_lock_irqsave(&list->lock, flags);
2503 __skb_queue_tail(list, newsk);
2504 spin_unlock_irqrestore(&list->lock, flags);
2505}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002506EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508/**
2509 * skb_unlink - remove a buffer from a list
2510 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002511 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 *
David S. Miller8728b832005-08-09 19:25:21 -07002513 * Remove a packet from a list. The list locks are taken and this
2514 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 *
David S. Miller8728b832005-08-09 19:25:21 -07002516 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 */
David S. Miller8728b832005-08-09 19:25:21 -07002518void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
David S. Miller8728b832005-08-09 19:25:21 -07002520 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
David S. Miller8728b832005-08-09 19:25:21 -07002522 spin_lock_irqsave(&list->lock, flags);
2523 __skb_unlink(skb, list);
2524 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002526EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528/**
2529 * skb_append - append a buffer
2530 * @old: buffer to insert after
2531 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002532 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 *
2534 * Place a packet after a given packet in a list. The list locks are taken
2535 * and this function is atomic with respect to other list locked calls.
2536 * A buffer cannot be placed on two lists at the same time.
2537 */
David S. Miller8728b832005-08-09 19:25:21 -07002538void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
2540 unsigned long flags;
2541
David S. Miller8728b832005-08-09 19:25:21 -07002542 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002543 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002544 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002546EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548/**
2549 * skb_insert - insert a buffer
2550 * @old: buffer to insert before
2551 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002552 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 *
David S. Miller8728b832005-08-09 19:25:21 -07002554 * Place a packet before a given packet in a list. The list locks are
2555 * taken and this function is atomic with respect to other list locked
2556 * calls.
2557 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 * A buffer cannot be placed on two lists at the same time.
2559 */
David S. Miller8728b832005-08-09 19:25:21 -07002560void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
2562 unsigned long flags;
2563
David S. Miller8728b832005-08-09 19:25:21 -07002564 spin_lock_irqsave(&list->lock, flags);
2565 __skb_insert(newsk, old->prev, old, list);
2566 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002568EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570static inline void skb_split_inside_header(struct sk_buff *skb,
2571 struct sk_buff* skb1,
2572 const u32 len, const int pos)
2573{
2574 int i;
2575
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002576 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2577 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 /* And move data appendix as is. */
2579 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2580 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2581
2582 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2583 skb_shinfo(skb)->nr_frags = 0;
2584 skb1->data_len = skb->data_len;
2585 skb1->len += skb1->data_len;
2586 skb->data_len = 0;
2587 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002588 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
2590
2591static inline void skb_split_no_header(struct sk_buff *skb,
2592 struct sk_buff* skb1,
2593 const u32 len, int pos)
2594{
2595 int i, k = 0;
2596 const int nfrags = skb_shinfo(skb)->nr_frags;
2597
2598 skb_shinfo(skb)->nr_frags = 0;
2599 skb1->len = skb1->data_len = skb->len - len;
2600 skb->len = len;
2601 skb->data_len = len - pos;
2602
2603 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002604 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606 if (pos + size > len) {
2607 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2608
2609 if (pos < len) {
2610 /* Split frag.
2611 * We have two variants in this case:
2612 * 1. Move all the frag to the second
2613 * part, if it is possible. F.e.
2614 * this approach is mandatory for TUX,
2615 * where splitting is expensive.
2616 * 2. Split is accurately. We make this.
2617 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002618 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002620 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2621 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 skb_shinfo(skb)->nr_frags++;
2623 }
2624 k++;
2625 } else
2626 skb_shinfo(skb)->nr_frags++;
2627 pos += size;
2628 }
2629 skb_shinfo(skb1)->nr_frags = k;
2630}
2631
2632/**
2633 * skb_split - Split fragmented skb to two parts at length len.
2634 * @skb: the buffer to split
2635 * @skb1: the buffer to receive the second part
2636 * @len: new length for skb
2637 */
2638void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2639{
2640 int pos = skb_headlen(skb);
2641
Willem de Bruijnfcfb53c2017-06-08 11:35:03 -04002642 skb_shinfo(skb1)->tx_flags |= skb_shinfo(skb)->tx_flags &
2643 SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (len < pos) /* Split line is inside header. */
2645 skb_split_inside_header(skb, skb1, len, pos);
2646 else /* Second chunk has no header, nothing to copy. */
2647 skb_split_no_header(skb, skb1, len, pos);
2648}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002649EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002651/* Shifting from/to a cloned skb is a no-go.
2652 *
2653 * Caller cannot keep skb_shinfo related pointers past calling here!
2654 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002655static int skb_prepare_for_shift(struct sk_buff *skb)
2656{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002657 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002658}
2659
2660/**
2661 * skb_shift - Shifts paged data partially from skb to another
2662 * @tgt: buffer into which tail data gets added
2663 * @skb: buffer from which the paged data comes from
2664 * @shiftlen: shift up to this many bytes
2665 *
2666 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002667 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002668 * It's up to caller to free skb if everything was shifted.
2669 *
2670 * If @tgt runs out of frags, the whole operation is aborted.
2671 *
2672 * Skb cannot include anything else but paged data while tgt is allowed
2673 * to have non-paged data as well.
2674 *
2675 * TODO: full sized shift could be optimized but that would need
2676 * specialized skb free'er to handle frags without up-to-date nr_frags.
2677 */
2678int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2679{
2680 int from, to, merge, todo;
2681 struct skb_frag_struct *fragfrom, *fragto;
2682
2683 BUG_ON(shiftlen > skb->len);
2684 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2685
2686 todo = shiftlen;
2687 from = 0;
2688 to = skb_shinfo(tgt)->nr_frags;
2689 fragfrom = &skb_shinfo(skb)->frags[from];
2690
2691 /* Actual merge is delayed until the point when we know we can
2692 * commit all, so that we don't have to undo partial changes
2693 */
2694 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002695 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2696 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002697 merge = -1;
2698 } else {
2699 merge = to - 1;
2700
Eric Dumazet9e903e02011-10-18 21:00:24 +00002701 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002702 if (todo < 0) {
2703 if (skb_prepare_for_shift(skb) ||
2704 skb_prepare_for_shift(tgt))
2705 return 0;
2706
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002707 /* All previous frag pointers might be stale! */
2708 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002709 fragto = &skb_shinfo(tgt)->frags[merge];
2710
Eric Dumazet9e903e02011-10-18 21:00:24 +00002711 skb_frag_size_add(fragto, shiftlen);
2712 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002713 fragfrom->page_offset += shiftlen;
2714
2715 goto onlymerged;
2716 }
2717
2718 from++;
2719 }
2720
2721 /* Skip full, not-fitting skb to avoid expensive operations */
2722 if ((shiftlen == skb->len) &&
2723 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2724 return 0;
2725
2726 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2727 return 0;
2728
2729 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2730 if (to == MAX_SKB_FRAGS)
2731 return 0;
2732
2733 fragfrom = &skb_shinfo(skb)->frags[from];
2734 fragto = &skb_shinfo(tgt)->frags[to];
2735
Eric Dumazet9e903e02011-10-18 21:00:24 +00002736 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002737 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002738 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002739 from++;
2740 to++;
2741
2742 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002743 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002744 fragto->page = fragfrom->page;
2745 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002746 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002747
2748 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002749 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002750 todo = 0;
2751
2752 to++;
2753 break;
2754 }
2755 }
2756
2757 /* Ready to "commit" this state change to tgt */
2758 skb_shinfo(tgt)->nr_frags = to;
2759
2760 if (merge >= 0) {
2761 fragfrom = &skb_shinfo(skb)->frags[0];
2762 fragto = &skb_shinfo(tgt)->frags[merge];
2763
Eric Dumazet9e903e02011-10-18 21:00:24 +00002764 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002765 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002766 }
2767
2768 /* Reposition in the original skb */
2769 to = 0;
2770 while (from < skb_shinfo(skb)->nr_frags)
2771 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2772 skb_shinfo(skb)->nr_frags = to;
2773
2774 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2775
2776onlymerged:
2777 /* Most likely the tgt won't ever need its checksum anymore, skb on
2778 * the other hand might need it if it needs to be resent
2779 */
2780 tgt->ip_summed = CHECKSUM_PARTIAL;
2781 skb->ip_summed = CHECKSUM_PARTIAL;
2782
2783 /* Yak, is it really working this way? Some helper please? */
2784 skb->len -= shiftlen;
2785 skb->data_len -= shiftlen;
2786 skb->truesize -= shiftlen;
2787 tgt->len += shiftlen;
2788 tgt->data_len += shiftlen;
2789 tgt->truesize += shiftlen;
2790
2791 return shiftlen;
2792}
2793
Thomas Graf677e90e2005-06-23 20:59:51 -07002794/**
2795 * skb_prepare_seq_read - Prepare a sequential read of skb data
2796 * @skb: the buffer to read
2797 * @from: lower offset of data to be read
2798 * @to: upper offset of data to be read
2799 * @st: state variable
2800 *
2801 * Initializes the specified state variable. Must be called before
2802 * invoking skb_seq_read() for the first time.
2803 */
2804void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2805 unsigned int to, struct skb_seq_state *st)
2806{
2807 st->lower_offset = from;
2808 st->upper_offset = to;
2809 st->root_skb = st->cur_skb = skb;
2810 st->frag_idx = st->stepped_offset = 0;
2811 st->frag_data = NULL;
2812}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002813EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002814
2815/**
2816 * skb_seq_read - Sequentially read skb data
2817 * @consumed: number of bytes consumed by the caller so far
2818 * @data: destination pointer for data to be returned
2819 * @st: state variable
2820 *
Mathias Krausebc323832013-11-07 14:18:26 +01002821 * Reads a block of skb data at @consumed relative to the
Thomas Graf677e90e2005-06-23 20:59:51 -07002822 * lower offset specified to skb_prepare_seq_read(). Assigns
Mathias Krausebc323832013-11-07 14:18:26 +01002823 * the head of the data block to @data and returns the length
Thomas Graf677e90e2005-06-23 20:59:51 -07002824 * of the block or 0 if the end of the skb data or the upper
2825 * offset has been reached.
2826 *
2827 * The caller is not required to consume all of the data
Mathias Krausebc323832013-11-07 14:18:26 +01002828 * returned, i.e. @consumed is typically set to the number
Thomas Graf677e90e2005-06-23 20:59:51 -07002829 * of bytes already consumed and the next call to
2830 * skb_seq_read() will return the remaining part of the block.
2831 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002832 * Note 1: The size of each block of data returned can be arbitrary,
Masanari Iidae793c0f2014-09-04 23:44:36 +09002833 * this limitation is the cost for zerocopy sequential
Thomas Graf677e90e2005-06-23 20:59:51 -07002834 * reads of potentially non linear data.
2835 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002836 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002837 * at the moment, state->root_skb could be replaced with
2838 * a stack for this purpose.
2839 */
2840unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2841 struct skb_seq_state *st)
2842{
2843 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2844 skb_frag_t *frag;
2845
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002846 if (unlikely(abs_offset >= st->upper_offset)) {
2847 if (st->frag_data) {
2848 kunmap_atomic(st->frag_data);
2849 st->frag_data = NULL;
2850 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002851 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002852 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002853
2854next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002855 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002856
Thomas Chenault995b3372009-05-18 21:43:27 -07002857 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002858 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002859 return block_limit - abs_offset;
2860 }
2861
2862 if (st->frag_idx == 0 && !st->frag_data)
2863 st->stepped_offset += skb_headlen(st->cur_skb);
2864
2865 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2866 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002867 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002868
2869 if (abs_offset < block_limit) {
2870 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002871 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002872
2873 *data = (u8 *) st->frag_data + frag->page_offset +
2874 (abs_offset - st->stepped_offset);
2875
2876 return block_limit - abs_offset;
2877 }
2878
2879 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002880 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002881 st->frag_data = NULL;
2882 }
2883
2884 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002885 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002886 }
2887
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002888 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002889 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002890 st->frag_data = NULL;
2891 }
2892
David S. Miller21dc3302010-08-23 00:13:46 -07002893 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002894 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002895 st->frag_idx = 0;
2896 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002897 } else if (st->cur_skb->next) {
2898 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002899 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002900 goto next_skb;
2901 }
2902
2903 return 0;
2904}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002905EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002906
2907/**
2908 * skb_abort_seq_read - Abort a sequential read of skb data
2909 * @st: state variable
2910 *
2911 * Must be called if skb_seq_read() was not called until it
2912 * returned 0.
2913 */
2914void skb_abort_seq_read(struct skb_seq_state *st)
2915{
2916 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002917 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002918}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002919EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002920
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002921#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2922
2923static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2924 struct ts_config *conf,
2925 struct ts_state *state)
2926{
2927 return skb_seq_read(offset, text, TS_SKB_CB(state));
2928}
2929
2930static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2931{
2932 skb_abort_seq_read(TS_SKB_CB(state));
2933}
2934
2935/**
2936 * skb_find_text - Find a text pattern in skb data
2937 * @skb: the buffer to look in
2938 * @from: search offset
2939 * @to: search limit
2940 * @config: textsearch configuration
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002941 *
2942 * Finds a pattern in the skb data according to the specified
2943 * textsearch configuration. Use textsearch_next() to retrieve
2944 * subsequent occurrences of the pattern. Returns the offset
2945 * to the first occurrence or UINT_MAX if no match was found.
2946 */
2947unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
Bojan Prtvar059a2442015-02-22 11:46:35 +01002948 unsigned int to, struct ts_config *config)
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002949{
Bojan Prtvar059a2442015-02-22 11:46:35 +01002950 struct ts_state state;
Phil Oesterf72b9482006-06-26 00:00:57 -07002951 unsigned int ret;
2952
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002953 config->get_next_block = skb_ts_get_next_block;
2954 config->finish = skb_ts_finish;
2955
Bojan Prtvar059a2442015-02-22 11:46:35 +01002956 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002957
Bojan Prtvar059a2442015-02-22 11:46:35 +01002958 ret = textsearch_find(config, &state);
Phil Oesterf72b9482006-06-26 00:00:57 -07002959 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002960}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002961EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002962
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002963/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002964 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002965 * @sk: sock structure
Masanari Iidae793c0f2014-09-04 23:44:36 +09002966 * @skb: skb structure to be appended with user data.
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002967 * @getfrag: call back function to be used for getting the user data
2968 * @from: pointer to user message iov
2969 * @length: length of the iov message
2970 *
2971 * Description: This procedure append the user data in the fragment part
2972 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2973 */
2974int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002975 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002976 int len, int odd, struct sk_buff *skb),
2977 void *from, int length)
2978{
Eric Dumazetb2111722012-12-28 06:06:37 +00002979 int frg_cnt = skb_shinfo(skb)->nr_frags;
2980 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002981 int offset = 0;
2982 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002983 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002984
2985 do {
2986 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002987 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002988 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002989
Eric Dumazetb2111722012-12-28 06:06:37 +00002990 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002991 return -ENOMEM;
2992
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002993 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002994 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002995
Eric Dumazetb2111722012-12-28 06:06:37 +00002996 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2997 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002998 if (ret < 0)
2999 return -EFAULT;
3000
3001 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00003002 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
3003 copy);
3004 frg_cnt++;
3005 pfrag->offset += copy;
3006 get_page(pfrag->page);
3007
3008 skb->truesize += copy;
3009 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07003010 skb->len += copy;
3011 skb->data_len += copy;
3012 offset += copy;
3013 length -= copy;
3014
3015 } while (length > 0);
3016
3017 return 0;
3018}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003019EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07003020
Hannes Frederic Sowabe12a1f2015-05-21 16:59:58 +02003021int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3022 int offset, size_t size)
3023{
3024 int i = skb_shinfo(skb)->nr_frags;
3025
3026 if (skb_can_coalesce(skb, i, page, offset)) {
3027 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3028 } else if (i < MAX_SKB_FRAGS) {
3029 get_page(page);
3030 skb_fill_page_desc(skb, i, page, offset, size);
3031 } else {
3032 return -EMSGSIZE;
3033 }
3034
3035 return 0;
3036}
3037EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3038
Herbert Xucbb042f2006-03-20 22:43:56 -08003039/**
3040 * skb_pull_rcsum - pull skb and update receive checksum
3041 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08003042 * @len: length of data pulled
3043 *
3044 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08003045 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07003046 * receive path processing instead of skb_pull unless you know
3047 * that the checksum difference is zero (e.g., a valid IP header)
3048 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08003049 */
3050unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3051{
Pravin B Shelar31b33df2015-09-28 17:24:25 -07003052 unsigned char *data = skb->data;
3053
Herbert Xucbb042f2006-03-20 22:43:56 -08003054 BUG_ON(len > skb->len);
Pravin B Shelar31b33df2015-09-28 17:24:25 -07003055 __skb_pull(skb, len);
3056 skb_postpull_rcsum(skb, data, len);
3057 return skb->data;
Herbert Xucbb042f2006-03-20 22:43:56 -08003058}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08003059EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3060
Herbert Xuf4c50d92006-06-22 03:02:40 -07003061/**
3062 * skb_segment - Perform protocol segmentation on skb.
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003063 * @head_skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003064 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07003065 *
3066 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07003067 * a pointer to the first in a list of new skbs for the segments.
3068 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07003069 */
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003070struct sk_buff *skb_segment(struct sk_buff *head_skb,
3071 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07003072{
3073 struct sk_buff *segs = NULL;
3074 struct sk_buff *tail = NULL;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003075 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003076 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3077 unsigned int mss = skb_shinfo(head_skb)->gso_size;
3078 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003079 struct sk_buff *frag_skb = head_skb;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003080 unsigned int offset = doffset;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003081 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
Alexander Duyck802ab552016-04-10 21:45:03 -04003082 unsigned int partial_segs = 0;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003083 unsigned int headroom;
Alexander Duyck802ab552016-04-10 21:45:03 -04003084 unsigned int len = head_skb->len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003085 __be16 proto;
Alexander Duyck36c98382016-05-02 09:38:18 -07003086 bool csum, sg;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003087 int nfrags = skb_shinfo(head_skb)->nr_frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003088 int err = -ENOMEM;
3089 int i = 0;
3090 int pos;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003091 int dummy;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003092
Wei-Chun Chao5882a072014-06-08 23:48:54 -07003093 __skb_push(head_skb, doffset);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003094 proto = skb_network_protocol(head_skb, &dummy);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003095 if (unlikely(!proto))
3096 return ERR_PTR(-EINVAL);
3097
Alexander Duyck36c98382016-05-02 09:38:18 -07003098 sg = !!(features & NETIF_F_SG);
Alexander Duyckf245d072016-02-05 15:28:26 -08003099 csum = !!can_checksum_protocol(features, proto);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003100
Steffen Klassert07b26c92016-09-19 12:58:47 +02003101 if (sg && csum && (mss != GSO_BY_FRAGS)) {
3102 if (!(features & NETIF_F_GSO_PARTIAL)) {
3103 struct sk_buff *iter;
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003104 unsigned int frag_len;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003105
3106 if (!list_skb ||
3107 !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
3108 goto normal;
3109
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003110 /* If we get here then all the required
3111 * GSO features except frag_list are supported.
3112 * Try to split the SKB to multiple GSO SKBs
3113 * with no frag_list.
3114 * Currently we can do that only when the buffers don't
3115 * have a linear part and all the buffers except
3116 * the last are of the same length.
Steffen Klassert07b26c92016-09-19 12:58:47 +02003117 */
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003118 frag_len = list_skb->len;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003119 skb_walk_frags(head_skb, iter) {
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003120 if (frag_len != iter->len && iter->next)
3121 goto normal;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003122 if (skb_headlen(iter))
3123 goto normal;
3124
3125 len -= iter->len;
3126 }
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003127
3128 if (len != frag_len)
3129 goto normal;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003130 }
3131
3132 /* GSO partial only requires that we trim off any excess that
3133 * doesn't fit into an MSS sized block, so take care of that
3134 * now.
3135 */
Alexander Duyck802ab552016-04-10 21:45:03 -04003136 partial_segs = len / mss;
Alexander Duyckd7fb5a82016-05-02 09:38:12 -07003137 if (partial_segs > 1)
3138 mss *= partial_segs;
3139 else
3140 partial_segs = 0;
Alexander Duyck802ab552016-04-10 21:45:03 -04003141 }
3142
Steffen Klassert07b26c92016-09-19 12:58:47 +02003143normal:
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003144 headroom = skb_headroom(head_skb);
3145 pos = skb_headlen(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003146
3147 do {
3148 struct sk_buff *nskb;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003149 skb_frag_t *nskb_frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003150 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003151 int size;
3152
Marcelo Ricardo Leitner3953c462016-06-02 15:05:40 -03003153 if (unlikely(mss == GSO_BY_FRAGS)) {
3154 len = list_skb->len;
3155 } else {
3156 len = head_skb->len - offset;
3157 if (len > mss)
3158 len = mss;
3159 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003160
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003161 hsize = skb_headlen(head_skb) - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003162 if (hsize < 0)
3163 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003164 if (hsize > len || !sg)
3165 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003166
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003167 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3168 (skb_headlen(list_skb) == len || sg)) {
3169 BUG_ON(skb_headlen(list_skb) > len);
Herbert Xu89319d382008-12-15 23:26:06 -08003170
Herbert Xu9d8506c2013-11-21 11:10:04 -08003171 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003172 nfrags = skb_shinfo(list_skb)->nr_frags;
3173 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003174 frag_skb = list_skb;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003175 pos += skb_headlen(list_skb);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003176
3177 while (pos < offset + len) {
3178 BUG_ON(i >= nfrags);
3179
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003180 size = skb_frag_size(frag);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003181 if (pos + size > offset + len)
3182 break;
3183
3184 i++;
3185 pos += size;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003186 frag++;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003187 }
3188
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003189 nskb = skb_clone(list_skb, GFP_ATOMIC);
3190 list_skb = list_skb->next;
Herbert Xu89319d382008-12-15 23:26:06 -08003191
3192 if (unlikely(!nskb))
3193 goto err;
3194
Herbert Xu9d8506c2013-11-21 11:10:04 -08003195 if (unlikely(pskb_trim(nskb, len))) {
3196 kfree_skb(nskb);
3197 goto err;
3198 }
3199
Alexander Duyckec47ea82012-05-04 14:26:56 +00003200 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08003201 if (skb_cow_head(nskb, doffset + headroom)) {
3202 kfree_skb(nskb);
3203 goto err;
3204 }
3205
Alexander Duyckec47ea82012-05-04 14:26:56 +00003206 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08003207 skb_release_head_state(nskb);
3208 __skb_push(nskb, doffset);
3209 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07003210 nskb = __alloc_skb(hsize + doffset + headroom,
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003211 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
Mel Gormanc93bdd02012-07-31 16:44:19 -07003212 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08003213
3214 if (unlikely(!nskb))
3215 goto err;
3216
3217 skb_reserve(nskb, headroom);
3218 __skb_put(nskb, doffset);
3219 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003220
3221 if (segs)
3222 tail->next = nskb;
3223 else
3224 segs = nskb;
3225 tail = nskb;
3226
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003227 __copy_skb_header(nskb, head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003228
Eric Dumazet030737b2013-10-19 11:42:54 -07003229 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Vlad Yasevichfcdfe3a2014-07-31 10:33:06 -04003230 skb_reset_mac_len(nskb);
Pravin B Shelar68c33162013-02-14 14:02:41 +00003231
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003232 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
Pravin B Shelar68c33162013-02-14 14:02:41 +00003233 nskb->data - tnl_hlen,
3234 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08003235
Herbert Xu9d8506c2013-11-21 11:10:04 -08003236 if (nskb->len == len + doffset)
Simon Horman1cdbcb72013-05-19 15:46:49 +00003237 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08003238
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003239 if (!sg) {
3240 if (!nskb->remcsum_offload)
3241 nskb->ip_summed = CHECKSUM_NONE;
Alexander Duyck76443452016-02-05 15:27:37 -08003242 SKB_GSO_CB(nskb)->csum =
3243 skb_copy_and_csum_bits(head_skb, offset,
3244 skb_put(nskb, len),
3245 len, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003246 SKB_GSO_CB(nskb)->csum_start =
Alexander Duyck76443452016-02-05 15:27:37 -08003247 skb_headroom(nskb) + doffset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003248 continue;
3249 }
3250
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003251 nskb_frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003252
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003253 skb_copy_from_linear_data_offset(head_skb, offset,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003254 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003255
Willem de Bruijnfcfb53c2017-06-08 11:35:03 -04003256 skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
3257 SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00003258
Herbert Xu9d8506c2013-11-21 11:10:04 -08003259 while (pos < offset + len) {
3260 if (i >= nfrags) {
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003261 BUG_ON(skb_headlen(list_skb));
Herbert Xu9d8506c2013-11-21 11:10:04 -08003262
3263 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003264 nfrags = skb_shinfo(list_skb)->nr_frags;
3265 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003266 frag_skb = list_skb;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003267
3268 BUG_ON(!nfrags);
3269
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003270 list_skb = list_skb->next;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003271 }
3272
3273 if (unlikely(skb_shinfo(nskb)->nr_frags >=
3274 MAX_SKB_FRAGS)) {
3275 net_warn_ratelimited(
3276 "skb_segment: too many frags: %u %u\n",
3277 pos, mss);
Eric Dumazete2ffdd62018-07-19 16:04:38 -07003278 err = -EINVAL;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003279 goto err;
3280 }
3281
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003282 if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
3283 goto err;
3284
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003285 *nskb_frag = *frag;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003286 __skb_frag_ref(nskb_frag);
3287 size = skb_frag_size(nskb_frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003288
3289 if (pos < offset) {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003290 nskb_frag->page_offset += offset - pos;
3291 skb_frag_size_sub(nskb_frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003292 }
3293
Herbert Xu89319d382008-12-15 23:26:06 -08003294 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003295
3296 if (pos + size <= offset + len) {
3297 i++;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003298 frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003299 pos += size;
3300 } else {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003301 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08003302 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003303 }
3304
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003305 nskb_frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003306 }
3307
Herbert Xu89319d382008-12-15 23:26:06 -08003308skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07003309 nskb->data_len = len - hsize;
3310 nskb->len += nskb->data_len;
3311 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003312
Simon Horman1cdbcb72013-05-19 15:46:49 +00003313perform_csum_check:
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003314 if (!csum) {
Eric Dumazete2ffdd62018-07-19 16:04:38 -07003315 if (skb_has_shared_frag(nskb) &&
3316 __skb_linearize(nskb))
3317 goto err;
3318
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003319 if (!nskb->remcsum_offload)
3320 nskb->ip_summed = CHECKSUM_NONE;
Alexander Duyck76443452016-02-05 15:27:37 -08003321 SKB_GSO_CB(nskb)->csum =
3322 skb_checksum(nskb, doffset,
3323 nskb->len - doffset, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003324 SKB_GSO_CB(nskb)->csum_start =
Alexander Duyck76443452016-02-05 15:27:37 -08003325 skb_headroom(nskb) + doffset;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003326 }
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003327 } while ((offset += len) < head_skb->len);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003328
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003329 /* Some callers want to get the end of the list.
3330 * Put it in segs->prev to avoid walking the list.
3331 * (see validate_xmit_skb_list() for example)
3332 */
3333 segs->prev = tail;
Toshiaki Makita432c8562014-10-27 10:30:51 -07003334
Alexander Duyck802ab552016-04-10 21:45:03 -04003335 if (partial_segs) {
Steffen Klassert07b26c92016-09-19 12:58:47 +02003336 struct sk_buff *iter;
Alexander Duyck802ab552016-04-10 21:45:03 -04003337 int type = skb_shinfo(head_skb)->gso_type;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003338 unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
Alexander Duyck802ab552016-04-10 21:45:03 -04003339
3340 /* Update type to add partial and then remove dodgy if set */
Steffen Klassert07b26c92016-09-19 12:58:47 +02003341 type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
Alexander Duyck802ab552016-04-10 21:45:03 -04003342 type &= ~SKB_GSO_DODGY;
3343
3344 /* Update GSO info and prepare to start updating headers on
3345 * our way back down the stack of protocols.
3346 */
Steffen Klassert07b26c92016-09-19 12:58:47 +02003347 for (iter = segs; iter; iter = iter->next) {
3348 skb_shinfo(iter)->gso_size = gso_size;
3349 skb_shinfo(iter)->gso_segs = partial_segs;
3350 skb_shinfo(iter)->gso_type = type;
3351 SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
3352 }
3353
3354 if (tail->len - doffset <= gso_size)
3355 skb_shinfo(tail)->gso_size = 0;
3356 else if (tail != segs)
3357 skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
Alexander Duyck802ab552016-04-10 21:45:03 -04003358 }
3359
Toshiaki Makita432c8562014-10-27 10:30:51 -07003360 /* Following permits correct backpressure, for protocols
3361 * using skb_set_owner_w().
3362 * Idea is to tranfert ownership from head_skb to last segment.
3363 */
3364 if (head_skb->destructor == sock_wfree) {
3365 swap(tail->truesize, head_skb->truesize);
3366 swap(tail->destructor, head_skb->destructor);
3367 swap(tail->sk, head_skb->sk);
3368 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003369 return segs;
3370
3371err:
Eric Dumazet289dccb2013-12-20 14:29:08 -08003372 kfree_skb_list(segs);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003373 return ERR_PTR(err);
3374}
Herbert Xuf4c50d92006-06-22 03:02:40 -07003375EXPORT_SYMBOL_GPL(skb_segment);
3376
Herbert Xu71d93b32008-12-15 23:42:33 -08003377int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
3378{
Eric Dumazet8a291112013-10-08 09:02:23 -07003379 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00003380 unsigned int offset = skb_gro_offset(skb);
3381 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003382 unsigned int len = skb_gro_len(skb);
Eric Dumazet58025e42015-03-05 13:47:48 -08003383 struct sk_buff *lp, *p = *head;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003384 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003385
Eric Dumazet8a291112013-10-08 09:02:23 -07003386 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08003387 return -E2BIG;
3388
Eric Dumazet29e98242014-05-16 11:34:37 -07003389 lp = NAPI_GRO_CB(p)->last;
Eric Dumazet8a291112013-10-08 09:02:23 -07003390 pinfo = skb_shinfo(lp);
3391
3392 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00003393 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003394 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003395 int i = skbinfo->nr_frags;
3396 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00003397
Herbert Xu66e92fc2009-05-26 18:50:32 +00003398 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003399 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00003400
Eric Dumazet8a291112013-10-08 09:02:23 -07003401 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003402 pinfo->nr_frags = nr_frags;
3403 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08003404
Herbert Xu9aaa1562009-05-26 18:50:33 +00003405 frag = pinfo->frags + nr_frags;
3406 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003407 do {
3408 *--frag = *--frag2;
3409 } while (--i);
3410
3411 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003412 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00003413
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003414 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00003415 delta_truesize = skb->truesize -
3416 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003417
Herbert Xuf5572062009-01-14 20:40:03 -08003418 skb->truesize -= skb->data_len;
3419 skb->len -= skb->data_len;
3420 skb->data_len = 0;
3421
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003422 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08003423 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003424 } else if (skb->head_frag) {
3425 int nr_frags = pinfo->nr_frags;
3426 skb_frag_t *frag = pinfo->frags + nr_frags;
3427 struct page *page = virt_to_head_page(skb->head);
3428 unsigned int first_size = headlen - offset;
3429 unsigned int first_offset;
3430
3431 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003432 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003433
3434 first_offset = skb->data -
3435 (unsigned char *)page_address(page) +
3436 offset;
3437
3438 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3439
3440 frag->page.p = page;
3441 frag->page_offset = first_offset;
3442 skb_frag_size_set(frag, first_size);
3443
3444 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3445 /* We dont need to clear skbinfo->nr_frags here */
3446
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003447 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003448 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3449 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003450 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003451
3452merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003453 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003454 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003455 unsigned int eat = offset - headlen;
3456
3457 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003458 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003459 skb->data_len -= eat;
3460 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003461 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003462 }
3463
Herbert Xu67147ba2009-05-26 18:50:22 +00003464 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003465
Eric Dumazet29e98242014-05-16 11:34:37 -07003466 if (NAPI_GRO_CB(p)->last == p)
Eric Dumazet8a291112013-10-08 09:02:23 -07003467 skb_shinfo(p)->frag_list = skb;
3468 else
3469 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003470 NAPI_GRO_CB(p)->last = skb;
Eric Dumazetf4a775d2014-09-22 16:29:32 -07003471 __skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003472 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003473
Herbert Xu5d38a072009-01-04 16:13:40 -08003474done:
3475 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003476 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003477 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003478 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003479 if (lp != p) {
3480 lp->data_len += len;
3481 lp->truesize += delta_truesize;
3482 lp->len += len;
3483 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003484 NAPI_GRO_CB(skb)->same_flow = 1;
3485 return 0;
3486}
Marcelo Ricardo Leitner57c056502016-06-02 15:05:39 -03003487EXPORT_SYMBOL_GPL(skb_gro_receive);
Herbert Xu71d93b32008-12-15 23:42:33 -08003488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489void __init skb_init(void)
3490{
3491 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3492 sizeof(struct sk_buff),
3493 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003494 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003495 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003496 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07003497 sizeof(struct sk_buff_fclones),
David S. Millerd179cd12005-08-17 14:57:30 -07003498 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003499 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003500 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501}
3502
David S. Miller51c739d2007-10-30 21:29:29 -07003503static int
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003504__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
3505 unsigned int recursion_level)
David Howells716ea3a2007-04-02 20:19:53 -07003506{
David S. Miller1a028e52007-04-27 15:21:23 -07003507 int start = skb_headlen(skb);
3508 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003509 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003510 int elt = 0;
3511
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003512 if (unlikely(recursion_level >= 24))
3513 return -EMSGSIZE;
3514
David Howells716ea3a2007-04-02 20:19:53 -07003515 if (copy > 0) {
3516 if (copy > len)
3517 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003518 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003519 elt++;
3520 if ((len -= copy) == 0)
3521 return elt;
3522 offset += copy;
3523 }
3524
3525 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003526 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003527
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003528 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003529
Eric Dumazet9e903e02011-10-18 21:00:24 +00003530 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003531 if ((copy = end - offset) > 0) {
3532 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003533 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
3534 return -EMSGSIZE;
David Howells716ea3a2007-04-02 20:19:53 -07003535
3536 if (copy > len)
3537 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003538 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003539 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003540 elt++;
3541 if (!(len -= copy))
3542 return elt;
3543 offset += copy;
3544 }
David S. Miller1a028e52007-04-27 15:21:23 -07003545 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003546 }
3547
David S. Millerfbb398a2009-06-09 00:18:59 -07003548 skb_walk_frags(skb, frag_iter) {
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003549 int end, ret;
David Howells716ea3a2007-04-02 20:19:53 -07003550
David S. Millerfbb398a2009-06-09 00:18:59 -07003551 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003552
David S. Millerfbb398a2009-06-09 00:18:59 -07003553 end = start + frag_iter->len;
3554 if ((copy = end - offset) > 0) {
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003555 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
3556 return -EMSGSIZE;
3557
David S. Millerfbb398a2009-06-09 00:18:59 -07003558 if (copy > len)
3559 copy = len;
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003560 ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3561 copy, recursion_level + 1);
3562 if (unlikely(ret < 0))
3563 return ret;
3564 elt += ret;
David S. Millerfbb398a2009-06-09 00:18:59 -07003565 if ((len -= copy) == 0)
3566 return elt;
3567 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003568 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003569 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003570 }
3571 BUG_ON(len);
3572 return elt;
3573}
3574
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003575/**
3576 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3577 * @skb: Socket buffer containing the buffers to be mapped
3578 * @sg: The scatter-gather list to map into
3579 * @offset: The offset into the buffer's contents to start mapping
3580 * @len: Length of buffer space to be mapped
3581 *
3582 * Fill the specified scatter-gather list with mappings/pointers into a
3583 * region of the buffer space attached to a socket buffer. Returns either
3584 * the number of scatterlist items used, or -EMSGSIZE if the contents
3585 * could not fit.
3586 */
3587int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3588{
3589 int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
3590
3591 if (nsg <= 0)
3592 return nsg;
3593
3594 sg_mark_end(&sg[nsg - 1]);
3595
3596 return nsg;
3597}
3598EXPORT_SYMBOL_GPL(skb_to_sgvec);
3599
Fan Du25a91d82014-01-18 09:54:23 +08003600/* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
3601 * sglist without mark the sg which contain last skb data as the end.
3602 * So the caller can mannipulate sg list as will when padding new data after
3603 * the first call without calling sg_unmark_end to expend sg list.
3604 *
3605 * Scenario to use skb_to_sgvec_nomark:
3606 * 1. sg_init_table
3607 * 2. skb_to_sgvec_nomark(payload1)
3608 * 3. skb_to_sgvec_nomark(payload2)
3609 *
3610 * This is equivalent to:
3611 * 1. sg_init_table
3612 * 2. skb_to_sgvec(payload1)
3613 * 3. sg_unmark_end
3614 * 4. skb_to_sgvec(payload2)
3615 *
3616 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
3617 * is more preferable.
3618 */
3619int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
3620 int offset, int len)
3621{
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003622 return __skb_to_sgvec(skb, sg, offset, len, 0);
Fan Du25a91d82014-01-18 09:54:23 +08003623}
3624EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
3625
David S. Miller51c739d2007-10-30 21:29:29 -07003626
David S. Miller51c739d2007-10-30 21:29:29 -07003627
David Howells716ea3a2007-04-02 20:19:53 -07003628/**
3629 * skb_cow_data - Check that a socket buffer's data buffers are writable
3630 * @skb: The socket buffer to check.
3631 * @tailbits: Amount of trailing space to be added
3632 * @trailer: Returned pointer to the skb where the @tailbits space begins
3633 *
3634 * Make sure that the data buffers attached to a socket buffer are
3635 * writable. If they are not, private copies are made of the data buffers
3636 * and the socket buffer is set to use these instead.
3637 *
3638 * If @tailbits is given, make sure that there is space to write @tailbits
3639 * bytes of data beyond current end of socket buffer. @trailer will be
3640 * set to point to the skb in which this space begins.
3641 *
3642 * The number of scatterlist elements required to completely map the
3643 * COW'd and extended socket buffer will be returned.
3644 */
3645int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3646{
3647 int copyflag;
3648 int elt;
3649 struct sk_buff *skb1, **skb_p;
3650
3651 /* If skb is cloned or its head is paged, reallocate
3652 * head pulling out all the pages (pages are considered not writable
3653 * at the moment even if they are anonymous).
3654 */
3655 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3656 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3657 return -ENOMEM;
3658
3659 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003660 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003661 /* A little of trouble, not enough of space for trailer.
3662 * This should not happen, when stack is tuned to generate
3663 * good frames. OK, on miss we reallocate and reserve even more
3664 * space, 128 bytes is fair. */
3665
3666 if (skb_tailroom(skb) < tailbits &&
3667 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3668 return -ENOMEM;
3669
3670 /* Voila! */
3671 *trailer = skb;
3672 return 1;
3673 }
3674
3675 /* Misery. We are in troubles, going to mincer fragments... */
3676
3677 elt = 1;
3678 skb_p = &skb_shinfo(skb)->frag_list;
3679 copyflag = 0;
3680
3681 while ((skb1 = *skb_p) != NULL) {
3682 int ntail = 0;
3683
3684 /* The fragment is partially pulled by someone,
3685 * this can happen on input. Copy it and everything
3686 * after it. */
3687
3688 if (skb_shared(skb1))
3689 copyflag = 1;
3690
3691 /* If the skb is the last, worry about trailer. */
3692
3693 if (skb1->next == NULL && tailbits) {
3694 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003695 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003696 skb_tailroom(skb1) < tailbits)
3697 ntail = tailbits + 128;
3698 }
3699
3700 if (copyflag ||
3701 skb_cloned(skb1) ||
3702 ntail ||
3703 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003704 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003705 struct sk_buff *skb2;
3706
3707 /* Fuck, we are miserable poor guys... */
3708 if (ntail == 0)
3709 skb2 = skb_copy(skb1, GFP_ATOMIC);
3710 else
3711 skb2 = skb_copy_expand(skb1,
3712 skb_headroom(skb1),
3713 ntail,
3714 GFP_ATOMIC);
3715 if (unlikely(skb2 == NULL))
3716 return -ENOMEM;
3717
3718 if (skb1->sk)
3719 skb_set_owner_w(skb2, skb1->sk);
3720
3721 /* Looking around. Are we still alive?
3722 * OK, link new skb, drop old one */
3723
3724 skb2->next = skb1->next;
3725 *skb_p = skb2;
3726 kfree_skb(skb1);
3727 skb1 = skb2;
3728 }
3729 elt++;
3730 *trailer = skb1;
3731 skb_p = &skb1->next;
3732 }
3733
3734 return elt;
3735}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003736EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003737
Eric Dumazetb1faf562010-05-31 23:44:05 -07003738static void sock_rmem_free(struct sk_buff *skb)
3739{
3740 struct sock *sk = skb->sk;
3741
3742 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3743}
3744
3745/*
3746 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3747 */
3748int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3749{
3750 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003751 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003752 return -ENOMEM;
3753
3754 skb_orphan(skb);
3755 skb->sk = sk;
3756 skb->destructor = sock_rmem_free;
3757 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3758
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003759 /* before exiting rcu section, make sure dst is refcounted */
3760 skb_dst_force(skb);
3761
Eric Dumazetb1faf562010-05-31 23:44:05 -07003762 skb_queue_tail(&sk->sk_error_queue, skb);
3763 if (!sock_flag(sk, SOCK_DEAD))
Vinicius Costa Gomesd5862b02018-03-14 13:32:09 -07003764 sk->sk_error_report(sk);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003765 return 0;
3766}
3767EXPORT_SYMBOL(sock_queue_err_skb);
3768
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003769struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
3770{
3771 struct sk_buff_head *q = &sk->sk_error_queue;
3772 struct sk_buff *skb, *skb_next;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003773 unsigned long flags;
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003774 int err = 0;
3775
Eric Dumazet997d5c32015-02-18 05:47:55 -08003776 spin_lock_irqsave(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003777 skb = __skb_dequeue(q);
3778 if (skb && (skb_next = skb_peek(q)))
3779 err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003780 spin_unlock_irqrestore(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003781
3782 sk->sk_err = err;
3783 if (err)
3784 sk->sk_error_report(sk);
3785
3786 return skb;
3787}
3788EXPORT_SYMBOL(sock_dequeue_err_skb);
3789
Alexander Duyckcab41c42014-09-10 18:05:26 -04003790/**
3791 * skb_clone_sk - create clone of skb, and take reference to socket
3792 * @skb: the skb to clone
3793 *
3794 * This function creates a clone of a buffer that holds a reference on
3795 * sk_refcnt. Buffers created via this function are meant to be
3796 * returned using sock_queue_err_skb, or free via kfree_skb.
3797 *
3798 * When passing buffers allocated with this function to sock_queue_err_skb
3799 * it is necessary to wrap the call with sock_hold/sock_put in order to
3800 * prevent the socket from being released prior to being enqueued on
3801 * the sk_error_queue.
3802 */
Alexander Duyck62bccb82014-09-04 13:31:35 -04003803struct sk_buff *skb_clone_sk(struct sk_buff *skb)
3804{
3805 struct sock *sk = skb->sk;
3806 struct sk_buff *clone;
3807
3808 if (!sk || !atomic_inc_not_zero(&sk->sk_refcnt))
3809 return NULL;
3810
3811 clone = skb_clone(skb, GFP_ATOMIC);
3812 if (!clone) {
3813 sock_put(sk);
3814 return NULL;
3815 }
3816
3817 clone->sk = sk;
3818 clone->destructor = sock_efree;
3819
3820 return clone;
3821}
3822EXPORT_SYMBOL(skb_clone_sk);
3823
Alexander Duyck37846ef2014-09-04 13:31:10 -04003824static void __skb_complete_tx_timestamp(struct sk_buff *skb,
3825 struct sock *sk,
3826 int tstype)
Patrick Ohlyac45f602009-02-12 05:03:37 +00003827{
Patrick Ohlyac45f602009-02-12 05:03:37 +00003828 struct sock_exterr_skb *serr;
Patrick Ohlyac45f602009-02-12 05:03:37 +00003829 int err;
3830
Patrick Ohlyac45f602009-02-12 05:03:37 +00003831 serr = SKB_EXT_ERR(skb);
3832 memset(serr, 0, sizeof(*serr));
3833 serr->ee.ee_errno = ENOMSG;
3834 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003835 serr->ee.ee_info = tstype;
Willem de Bruijn8c04e2a2017-04-12 19:24:35 -04003836 serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003837 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
Willem de Bruijn09c2d252014-08-04 22:11:47 -04003838 serr->ee.ee_data = skb_shinfo(skb)->tskey;
WANG Congac5cc972015-12-16 23:39:04 -08003839 if (sk->sk_protocol == IPPROTO_TCP &&
3840 sk->sk_type == SOCK_STREAM)
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003841 serr->ee.ee_data -= sk->sk_tskey;
3842 }
Eric Dumazet29030372010-05-29 00:20:48 -07003843
Patrick Ohlyac45f602009-02-12 05:03:37 +00003844 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003845
Patrick Ohlyac45f602009-02-12 05:03:37 +00003846 if (err)
3847 kfree_skb(skb);
3848}
Alexander Duyck37846ef2014-09-04 13:31:10 -04003849
Willem de Bruijnb245be12015-01-30 13:29:32 -05003850static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
3851{
3852 bool ret;
3853
3854 if (likely(sysctl_tstamp_allow_data || tsonly))
3855 return true;
3856
3857 read_lock_bh(&sk->sk_callback_lock);
3858 ret = sk->sk_socket && sk->sk_socket->file &&
3859 file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
3860 read_unlock_bh(&sk->sk_callback_lock);
3861 return ret;
3862}
3863
Alexander Duyck37846ef2014-09-04 13:31:10 -04003864void skb_complete_tx_timestamp(struct sk_buff *skb,
3865 struct skb_shared_hwtstamps *hwtstamps)
3866{
3867 struct sock *sk = skb->sk;
3868
Willem de Bruijnb245be12015-01-30 13:29:32 -05003869 if (!skb_may_tx_timestamp(sk, false))
Willem de Bruijn58f6ebb2017-12-13 14:41:06 -05003870 goto err;
Willem de Bruijnb245be12015-01-30 13:29:32 -05003871
Eric Dumazetf157cc12017-03-03 21:01:03 -08003872 /* Take a reference to prevent skb_orphan() from freeing the socket,
3873 * but only if the socket refcount is not zero.
3874 */
3875 if (likely(atomic_inc_not_zero(&sk->sk_refcnt))) {
3876 *skb_hwtstamps(skb) = *hwtstamps;
3877 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND);
3878 sock_put(sk);
Willem de Bruijn58f6ebb2017-12-13 14:41:06 -05003879 return;
Eric Dumazetf157cc12017-03-03 21:01:03 -08003880 }
Willem de Bruijn58f6ebb2017-12-13 14:41:06 -05003881
3882err:
3883 kfree_skb(skb);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003884}
3885EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
3886
3887void __skb_tstamp_tx(struct sk_buff *orig_skb,
3888 struct skb_shared_hwtstamps *hwtstamps,
3889 struct sock *sk, int tstype)
3890{
3891 struct sk_buff *skb;
Willem de Bruijn3a8dd972015-03-11 15:43:55 -04003892 bool tsonly;
Alexander Duyck37846ef2014-09-04 13:31:10 -04003893
Willem de Bruijn3a8dd972015-03-11 15:43:55 -04003894 if (!sk)
3895 return;
3896
3897 tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
3898 if (!skb_may_tx_timestamp(sk, tsonly))
Alexander Duyck37846ef2014-09-04 13:31:10 -04003899 return;
3900
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003901 if (tsonly)
3902 skb = alloc_skb(0, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003903 else
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003904 skb = skb_clone(orig_skb, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003905 if (!skb)
3906 return;
3907
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003908 if (tsonly) {
Willem de Bruijnfcfb53c2017-06-08 11:35:03 -04003909 skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
3910 SKBTX_ANY_TSTAMP;
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003911 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
3912 }
3913
3914 if (hwtstamps)
3915 *skb_hwtstamps(skb) = *hwtstamps;
3916 else
3917 skb->tstamp = ktime_get_real();
3918
Alexander Duyck37846ef2014-09-04 13:31:10 -04003919 __skb_complete_tx_timestamp(skb, sk, tstype);
3920}
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003921EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
3922
3923void skb_tstamp_tx(struct sk_buff *orig_skb,
3924 struct skb_shared_hwtstamps *hwtstamps)
3925{
3926 return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
3927 SCM_TSTAMP_SND);
3928}
Patrick Ohlyac45f602009-02-12 05:03:37 +00003929EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3930
Johannes Berg6e3e9392011-11-09 10:15:42 +01003931void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3932{
3933 struct sock *sk = skb->sk;
3934 struct sock_exterr_skb *serr;
Eric Dumazet98fa3d22017-03-03 21:01:02 -08003935 int err = 1;
Johannes Berg6e3e9392011-11-09 10:15:42 +01003936
3937 skb->wifi_acked_valid = 1;
3938 skb->wifi_acked = acked;
3939
3940 serr = SKB_EXT_ERR(skb);
3941 memset(serr, 0, sizeof(*serr));
3942 serr->ee.ee_errno = ENOMSG;
3943 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3944
Eric Dumazet98fa3d22017-03-03 21:01:02 -08003945 /* Take a reference to prevent skb_orphan() from freeing the socket,
3946 * but only if the socket refcount is not zero.
3947 */
3948 if (likely(atomic_inc_not_zero(&sk->sk_refcnt))) {
3949 err = sock_queue_err_skb(sk, skb);
3950 sock_put(sk);
3951 }
Johannes Berg6e3e9392011-11-09 10:15:42 +01003952 if (err)
3953 kfree_skb(skb);
3954}
3955EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3956
Rusty Russellf35d9d82008-02-04 23:49:54 -05003957/**
3958 * skb_partial_csum_set - set up and verify partial csum values for packet
3959 * @skb: the skb to set
3960 * @start: the number of bytes after skb->data to start checksumming.
3961 * @off: the offset from start to place the checksum.
3962 *
3963 * For untrusted partially-checksummed packets, we need to make sure the values
3964 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3965 *
3966 * This function checks and sets those values and skb->ip_summed: if this
3967 * returns false you should drop the packet.
3968 */
3969bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3970{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003971 if (unlikely(start > skb_headlen(skb)) ||
3972 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003973 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3974 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003975 return false;
3976 }
3977 skb->ip_summed = CHECKSUM_PARTIAL;
3978 skb->csum_start = skb_headroom(skb) + start;
3979 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003980 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003981 return true;
3982}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003983EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003984
Paul Durranted1f50c2014-01-09 10:02:46 +00003985static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
3986 unsigned int max)
3987{
3988 if (skb_headlen(skb) >= len)
3989 return 0;
3990
3991 /* If we need to pullup then pullup to the max, so we
3992 * won't need to do it again.
3993 */
3994 if (max > skb->len)
3995 max = skb->len;
3996
3997 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
3998 return -ENOMEM;
3999
4000 if (skb_headlen(skb) < len)
4001 return -EPROTO;
4002
4003 return 0;
4004}
4005
Jan Beulichf9708b42014-03-11 13:56:05 +00004006#define MAX_TCP_HDR_LEN (15 * 4)
4007
4008static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
4009 typeof(IPPROTO_IP) proto,
4010 unsigned int off)
4011{
4012 switch (proto) {
4013 int err;
4014
4015 case IPPROTO_TCP:
4016 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
4017 off + MAX_TCP_HDR_LEN);
4018 if (!err && !skb_partial_csum_set(skb, off,
4019 offsetof(struct tcphdr,
4020 check)))
4021 err = -EPROTO;
4022 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4023
4024 case IPPROTO_UDP:
4025 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4026 off + sizeof(struct udphdr));
4027 if (!err && !skb_partial_csum_set(skb, off,
4028 offsetof(struct udphdr,
4029 check)))
4030 err = -EPROTO;
4031 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4032 }
4033
4034 return ERR_PTR(-EPROTO);
4035}
4036
Paul Durranted1f50c2014-01-09 10:02:46 +00004037/* This value should be large enough to cover a tagged ethernet header plus
4038 * maximally sized IP and TCP or UDP headers.
4039 */
4040#define MAX_IP_HDR_LEN 128
4041
Jan Beulichf9708b42014-03-11 13:56:05 +00004042static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
Paul Durranted1f50c2014-01-09 10:02:46 +00004043{
4044 unsigned int off;
4045 bool fragment;
Jan Beulichf9708b42014-03-11 13:56:05 +00004046 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00004047 int err;
4048
4049 fragment = false;
4050
4051 err = skb_maybe_pull_tail(skb,
4052 sizeof(struct iphdr),
4053 MAX_IP_HDR_LEN);
4054 if (err < 0)
4055 goto out;
4056
4057 if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
4058 fragment = true;
4059
4060 off = ip_hdrlen(skb);
4061
4062 err = -EPROTO;
4063
4064 if (fragment)
4065 goto out;
4066
Jan Beulichf9708b42014-03-11 13:56:05 +00004067 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4068 if (IS_ERR(csum))
4069 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00004070
Jan Beulichf9708b42014-03-11 13:56:05 +00004071 if (recalculate)
4072 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4073 ip_hdr(skb)->daddr,
4074 skb->len - off,
4075 ip_hdr(skb)->protocol, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00004076 err = 0;
4077
4078out:
4079 return err;
4080}
4081
4082/* This value should be large enough to cover a tagged ethernet header plus
4083 * an IPv6 header, all options, and a maximal TCP or UDP header.
4084 */
4085#define MAX_IPV6_HDR_LEN 256
4086
4087#define OPT_HDR(type, skb, off) \
4088 (type *)(skb_network_header(skb) + (off))
4089
4090static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4091{
4092 int err;
4093 u8 nexthdr;
4094 unsigned int off;
4095 unsigned int len;
4096 bool fragment;
4097 bool done;
Jan Beulichf9708b42014-03-11 13:56:05 +00004098 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00004099
4100 fragment = false;
4101 done = false;
4102
4103 off = sizeof(struct ipv6hdr);
4104
4105 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4106 if (err < 0)
4107 goto out;
4108
4109 nexthdr = ipv6_hdr(skb)->nexthdr;
4110
4111 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4112 while (off <= len && !done) {
4113 switch (nexthdr) {
4114 case IPPROTO_DSTOPTS:
4115 case IPPROTO_HOPOPTS:
4116 case IPPROTO_ROUTING: {
4117 struct ipv6_opt_hdr *hp;
4118
4119 err = skb_maybe_pull_tail(skb,
4120 off +
4121 sizeof(struct ipv6_opt_hdr),
4122 MAX_IPV6_HDR_LEN);
4123 if (err < 0)
4124 goto out;
4125
4126 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4127 nexthdr = hp->nexthdr;
4128 off += ipv6_optlen(hp);
4129 break;
4130 }
4131 case IPPROTO_AH: {
4132 struct ip_auth_hdr *hp;
4133
4134 err = skb_maybe_pull_tail(skb,
4135 off +
4136 sizeof(struct ip_auth_hdr),
4137 MAX_IPV6_HDR_LEN);
4138 if (err < 0)
4139 goto out;
4140
4141 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4142 nexthdr = hp->nexthdr;
4143 off += ipv6_authlen(hp);
4144 break;
4145 }
4146 case IPPROTO_FRAGMENT: {
4147 struct frag_hdr *hp;
4148
4149 err = skb_maybe_pull_tail(skb,
4150 off +
4151 sizeof(struct frag_hdr),
4152 MAX_IPV6_HDR_LEN);
4153 if (err < 0)
4154 goto out;
4155
4156 hp = OPT_HDR(struct frag_hdr, skb, off);
4157
4158 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
4159 fragment = true;
4160
4161 nexthdr = hp->nexthdr;
4162 off += sizeof(struct frag_hdr);
4163 break;
4164 }
4165 default:
4166 done = true;
4167 break;
4168 }
4169 }
4170
4171 err = -EPROTO;
4172
4173 if (!done || fragment)
4174 goto out;
4175
Jan Beulichf9708b42014-03-11 13:56:05 +00004176 csum = skb_checksum_setup_ip(skb, nexthdr, off);
4177 if (IS_ERR(csum))
4178 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00004179
Jan Beulichf9708b42014-03-11 13:56:05 +00004180 if (recalculate)
4181 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4182 &ipv6_hdr(skb)->daddr,
4183 skb->len - off, nexthdr, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00004184 err = 0;
4185
4186out:
4187 return err;
4188}
4189
4190/**
4191 * skb_checksum_setup - set up partial checksum offset
4192 * @skb: the skb to set up
4193 * @recalculate: if true the pseudo-header checksum will be recalculated
4194 */
4195int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4196{
4197 int err;
4198
4199 switch (skb->protocol) {
4200 case htons(ETH_P_IP):
Jan Beulichf9708b42014-03-11 13:56:05 +00004201 err = skb_checksum_setup_ipv4(skb, recalculate);
Paul Durranted1f50c2014-01-09 10:02:46 +00004202 break;
4203
4204 case htons(ETH_P_IPV6):
4205 err = skb_checksum_setup_ipv6(skb, recalculate);
4206 break;
4207
4208 default:
4209 err = -EPROTO;
4210 break;
4211 }
4212
4213 return err;
4214}
4215EXPORT_SYMBOL(skb_checksum_setup);
4216
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004217/**
4218 * skb_checksum_maybe_trim - maybe trims the given skb
4219 * @skb: the skb to check
4220 * @transport_len: the data length beyond the network header
4221 *
4222 * Checks whether the given skb has data beyond the given transport length.
4223 * If so, returns a cloned skb trimmed to this transport length.
4224 * Otherwise returns the provided skb. Returns NULL in error cases
4225 * (e.g. transport_len exceeds skb length or out-of-memory).
4226 *
Linus Lüssinga5169932015-08-13 05:54:07 +02004227 * Caller needs to set the skb transport header and free any returned skb if it
4228 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004229 */
4230static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
4231 unsigned int transport_len)
4232{
4233 struct sk_buff *skb_chk;
4234 unsigned int len = skb_transport_offset(skb) + transport_len;
4235 int ret;
4236
Linus Lüssinga5169932015-08-13 05:54:07 +02004237 if (skb->len < len)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004238 return NULL;
Linus Lüssinga5169932015-08-13 05:54:07 +02004239 else if (skb->len == len)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004240 return skb;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004241
4242 skb_chk = skb_clone(skb, GFP_ATOMIC);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004243 if (!skb_chk)
4244 return NULL;
4245
4246 ret = pskb_trim_rcsum(skb_chk, len);
4247 if (ret) {
4248 kfree_skb(skb_chk);
4249 return NULL;
4250 }
4251
4252 return skb_chk;
4253}
4254
4255/**
4256 * skb_checksum_trimmed - validate checksum of an skb
4257 * @skb: the skb to check
4258 * @transport_len: the data length beyond the network header
4259 * @skb_chkf: checksum function to use
4260 *
4261 * Applies the given checksum function skb_chkf to the provided skb.
4262 * Returns a checked and maybe trimmed skb. Returns NULL on error.
4263 *
4264 * If the skb has data beyond the given transport length, then a
4265 * trimmed & cloned skb is checked and returned.
4266 *
Linus Lüssinga5169932015-08-13 05:54:07 +02004267 * Caller needs to set the skb transport header and free any returned skb if it
4268 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004269 */
4270struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
4271 unsigned int transport_len,
4272 __sum16(*skb_chkf)(struct sk_buff *skb))
4273{
4274 struct sk_buff *skb_chk;
4275 unsigned int offset = skb_transport_offset(skb);
Linus Lüssingfcba67c2015-05-05 00:19:35 +02004276 __sum16 ret;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004277
4278 skb_chk = skb_checksum_maybe_trim(skb, transport_len);
4279 if (!skb_chk)
Linus Lüssinga5169932015-08-13 05:54:07 +02004280 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004281
Linus Lüssinga5169932015-08-13 05:54:07 +02004282 if (!pskb_may_pull(skb_chk, offset))
4283 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004284
Linus Lüssing9b368812016-02-24 04:21:42 +01004285 skb_pull_rcsum(skb_chk, offset);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004286 ret = skb_chkf(skb_chk);
Linus Lüssing9b368812016-02-24 04:21:42 +01004287 skb_push_rcsum(skb_chk, offset);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004288
Linus Lüssinga5169932015-08-13 05:54:07 +02004289 if (ret)
4290 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004291
4292 return skb_chk;
Linus Lüssinga5169932015-08-13 05:54:07 +02004293
4294err:
4295 if (skb_chk && skb_chk != skb)
4296 kfree_skb(skb_chk);
4297
4298 return NULL;
4299
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004300}
4301EXPORT_SYMBOL(skb_checksum_trimmed);
4302
Ben Hutchings4497b072008-06-19 16:22:28 -07004303void __skb_warn_lro_forwarding(const struct sk_buff *skb)
4304{
Joe Perchese87cc472012-05-13 21:56:26 +00004305 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4306 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07004307}
Ben Hutchings4497b072008-06-19 16:22:28 -07004308EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004309
4310void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4311{
Eric Dumazet3d861f62012-10-22 09:03:40 +00004312 if (head_stolen) {
4313 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004314 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004315 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004316 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004317 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004318}
4319EXPORT_SYMBOL(kfree_skb_partial);
4320
4321/**
4322 * skb_try_coalesce - try to merge skb to prior one
4323 * @to: prior buffer
4324 * @from: buffer to add
4325 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00004326 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004327 */
4328bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4329 bool *fragstolen, int *delta_truesize)
4330{
4331 int i, delta, len = from->len;
4332
4333 *fragstolen = false;
4334
4335 if (skb_cloned(to))
4336 return false;
4337
4338 if (len <= skb_tailroom(to)) {
Eric Dumazete93a0432014-09-15 04:19:52 -07004339 if (len)
4340 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004341 *delta_truesize = 0;
4342 return true;
4343 }
4344
4345 if (skb_has_frag_list(to) || skb_has_frag_list(from))
4346 return false;
4347
4348 if (skb_headlen(from) != 0) {
4349 struct page *page;
4350 unsigned int offset;
4351
4352 if (skb_shinfo(to)->nr_frags +
4353 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4354 return false;
4355
4356 if (skb_head_is_locked(from))
4357 return false;
4358
4359 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4360
4361 page = virt_to_head_page(from->head);
4362 offset = from->data - (unsigned char *)page_address(page);
4363
4364 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4365 page, offset, skb_headlen(from));
4366 *fragstolen = true;
4367 } else {
4368 if (skb_shinfo(to)->nr_frags +
4369 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4370 return false;
4371
Weiping Panf4b549a2012-09-28 20:15:30 +00004372 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004373 }
4374
4375 WARN_ON_ONCE(delta < len);
4376
4377 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4378 skb_shinfo(from)->frags,
4379 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4380 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4381
4382 if (!skb_cloned(from))
4383 skb_shinfo(from)->nr_frags = 0;
4384
Li RongQing8ea853f2012-09-18 16:53:21 +00004385 /* if the skb is not cloned this does nothing
4386 * since we set nr_frags to 0.
4387 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004388 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4389 skb_frag_ref(from, i);
4390
4391 to->truesize += delta;
4392 to->len += len;
4393 to->data_len += len;
4394
4395 *delta_truesize = delta;
4396 return true;
4397}
4398EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004399
4400/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004401 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004402 *
4403 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004404 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004405 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004406 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
4407 * into/from a tunnel. Some information have to be cleared during these
4408 * operations.
4409 * skb_scrub_packet can also be used to clean a skb before injecting it in
4410 * another namespace (@xnet == true). We have to clear all information in the
4411 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004412 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004413void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004414{
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004415 skb->tstamp.tv64 = 0;
4416 skb->pkt_type = PACKET_HOST;
4417 skb->skb_iif = 0;
WANG Cong60ff7462014-05-04 16:39:18 -07004418 skb->ignore_df = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004419 skb_dst_drop(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004420 secpath_reset(skb);
4421 nf_reset(skb);
4422 nf_reset_trace(skb);
Herbert Xu213dd742015-04-16 09:03:27 +08004423
Petr Machatad39ebd12018-11-20 11:39:56 +00004424#ifdef CONFIG_NET_SWITCHDEV
4425 skb->offload_fwd_mark = 0;
4426#endif
4427
Herbert Xu213dd742015-04-16 09:03:27 +08004428 if (!xnet)
4429 return;
4430
Ye Yinafd9fa62017-10-26 16:57:05 +08004431 ipvs_reset(skb);
Herbert Xu213dd742015-04-16 09:03:27 +08004432 skb_orphan(skb);
4433 skb->mark = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004434}
4435EXPORT_SYMBOL_GPL(skb_scrub_packet);
Florian Westphalde960aa2014-01-26 10:58:16 +01004436
4437/**
4438 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4439 *
4440 * @skb: GSO skb
4441 *
4442 * skb_gso_transport_seglen is used to determine the real size of the
4443 * individual segments, including Layer4 headers (TCP/UDP).
4444 *
4445 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4446 */
4447unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4448{
4449 const struct skb_shared_info *shinfo = skb_shinfo(skb);
Florian Westphalf993bc22014-10-20 13:49:18 +02004450 unsigned int thlen = 0;
Florian Westphalde960aa2014-01-26 10:58:16 +01004451
Florian Westphalf993bc22014-10-20 13:49:18 +02004452 if (skb->encapsulation) {
4453 thlen = skb_inner_transport_header(skb) -
4454 skb_transport_header(skb);
Florian Westphal6d39d582014-04-09 10:28:50 +02004455
Florian Westphalf993bc22014-10-20 13:49:18 +02004456 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4457 thlen += inner_tcp_hdrlen(skb);
4458 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4459 thlen = tcp_hdrlen(skb);
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004460 } else if (unlikely(shinfo->gso_type & SKB_GSO_SCTP)) {
4461 thlen = sizeof(struct sctphdr);
Florian Westphalf993bc22014-10-20 13:49:18 +02004462 }
Florian Westphal6d39d582014-04-09 10:28:50 +02004463 /* UFO sets gso_size to the size of the fragmentation
4464 * payload, i.e. the size of the L4 (UDP) header is already
4465 * accounted for.
4466 */
Florian Westphalf993bc22014-10-20 13:49:18 +02004467 return thlen + shinfo->gso_size;
Florian Westphalde960aa2014-01-26 10:58:16 +01004468}
4469EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004470
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -03004471/**
Daniel Axtens84d8c3a2019-02-14 11:31:17 +01004472 * skb_gso_size_check - check the skb size, considering GSO_BY_FRAGS
4473 *
4474 * There are a couple of instances where we have a GSO skb, and we
4475 * want to determine what size it would be after it is segmented.
4476 *
4477 * We might want to check:
4478 * - L3+L4+payload size (e.g. IP forwarding)
4479 * - L2+L3+L4+payload size (e.g. sanity check before passing to driver)
4480 *
4481 * This is a helper to do that correctly considering GSO_BY_FRAGS.
4482 *
4483 * @seg_len: The segmented length (from skb_gso_*_seglen). In the
4484 * GSO_BY_FRAGS case this will be [header sizes + GSO_BY_FRAGS].
4485 *
4486 * @max_len: The maximum permissible length.
4487 *
4488 * Returns true if the segmented length <= max length.
4489 */
4490static inline bool skb_gso_size_check(const struct sk_buff *skb,
4491 unsigned int seg_len,
4492 unsigned int max_len) {
4493 const struct skb_shared_info *shinfo = skb_shinfo(skb);
4494 const struct sk_buff *iter;
4495
4496 if (shinfo->gso_size != GSO_BY_FRAGS)
4497 return seg_len <= max_len;
4498
4499 /* Undo this so we can re-use header sizes */
4500 seg_len -= GSO_BY_FRAGS;
4501
4502 skb_walk_frags(skb, iter) {
4503 if (seg_len + skb_headlen(iter) > max_len)
4504 return false;
4505 }
4506
4507 return true;
4508}
4509
4510/**
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -03004511 * skb_gso_validate_mtu - Return in case such skb fits a given MTU
4512 *
4513 * @skb: GSO skb
David S. Miller76f21b92016-06-03 22:56:28 -07004514 * @mtu: MTU to validate against
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -03004515 *
4516 * skb_gso_validate_mtu validates if a given skb will fit a wanted MTU
4517 * once split.
4518 */
4519bool skb_gso_validate_mtu(const struct sk_buff *skb, unsigned int mtu)
4520{
Daniel Axtens84d8c3a2019-02-14 11:31:17 +01004521 return skb_gso_size_check(skb, skb_gso_network_seglen(skb), mtu);
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -03004522}
4523EXPORT_SYMBOL_GPL(skb_gso_validate_mtu);
4524
Daniel Axtens84d8c3a2019-02-14 11:31:17 +01004525/**
4526 * skb_gso_validate_mac_len - Will a split GSO skb fit in a given length?
4527 *
4528 * @skb: GSO skb
4529 * @len: length to validate against
4530 *
4531 * skb_gso_validate_mac_len validates if a given skb will fit a wanted
4532 * length once split, including L2, L3 and L4 headers and the payload.
4533 */
4534bool skb_gso_validate_mac_len(const struct sk_buff *skb, unsigned int len)
4535{
4536 return skb_gso_size_check(skb, skb_gso_mac_seglen(skb), len);
4537}
4538EXPORT_SYMBOL_GPL(skb_gso_validate_mac_len);
4539
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004540static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
4541{
Toshiaki Makita58df2892018-03-13 14:51:27 +09004542 int mac_len;
4543
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004544 if (skb_cow(skb, skb_headroom(skb)) < 0) {
4545 kfree_skb(skb);
4546 return NULL;
4547 }
4548
Toshiaki Makita58df2892018-03-13 14:51:27 +09004549 mac_len = skb->data - skb_mac_header(skb);
Toshiaki Makitab389e042018-03-29 19:05:29 +09004550 if (likely(mac_len > VLAN_HLEN + ETH_TLEN)) {
4551 memmove(skb_mac_header(skb) + VLAN_HLEN, skb_mac_header(skb),
4552 mac_len - VLAN_HLEN - ETH_TLEN);
4553 }
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004554 skb->mac_header += VLAN_HLEN;
4555 return skb;
4556}
4557
4558struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
4559{
4560 struct vlan_hdr *vhdr;
4561 u16 vlan_tci;
4562
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004563 if (unlikely(skb_vlan_tag_present(skb))) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004564 /* vlan_tci is already set-up so leave this for another time */
4565 return skb;
4566 }
4567
4568 skb = skb_share_check(skb, GFP_ATOMIC);
4569 if (unlikely(!skb))
4570 goto err_free;
4571
4572 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
4573 goto err_free;
4574
4575 vhdr = (struct vlan_hdr *)skb->data;
4576 vlan_tci = ntohs(vhdr->h_vlan_TCI);
4577 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
4578
4579 skb_pull_rcsum(skb, VLAN_HLEN);
4580 vlan_set_encap_proto(skb, vhdr);
4581
4582 skb = skb_reorder_vlan_header(skb);
4583 if (unlikely(!skb))
4584 goto err_free;
4585
4586 skb_reset_network_header(skb);
4587 skb_reset_transport_header(skb);
4588 skb_reset_mac_len(skb);
4589
4590 return skb;
4591
4592err_free:
4593 kfree_skb(skb);
4594 return NULL;
4595}
4596EXPORT_SYMBOL(skb_vlan_untag);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004597
Jiri Pirkoe2195122014-11-19 14:05:01 +01004598int skb_ensure_writable(struct sk_buff *skb, int write_len)
4599{
4600 if (!pskb_may_pull(skb, write_len))
4601 return -ENOMEM;
4602
4603 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
4604 return 0;
4605
4606 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4607}
4608EXPORT_SYMBOL(skb_ensure_writable);
4609
Shmulik Ladkanibfca4c52016-09-19 19:11:09 +03004610/* remove VLAN header from packet and update csum accordingly.
4611 * expects a non skb_vlan_tag_present skb with a vlan tag payload
4612 */
4613int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
Jiri Pirko93515d52014-11-19 14:05:02 +01004614{
4615 struct vlan_hdr *vhdr;
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004616 int offset = skb->data - skb_mac_header(skb);
Jiri Pirko93515d52014-11-19 14:05:02 +01004617 int err;
4618
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004619 if (WARN_ONCE(offset,
4620 "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
4621 offset)) {
4622 return -EINVAL;
4623 }
4624
Jiri Pirko93515d52014-11-19 14:05:02 +01004625 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
4626 if (unlikely(err))
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004627 return err;
Jiri Pirko93515d52014-11-19 14:05:02 +01004628
4629 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
4630
4631 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
4632 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
4633
4634 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
4635 __skb_pull(skb, VLAN_HLEN);
4636
4637 vlan_set_encap_proto(skb, vhdr);
4638 skb->mac_header += VLAN_HLEN;
4639
4640 if (skb_network_offset(skb) < ETH_HLEN)
4641 skb_set_network_header(skb, ETH_HLEN);
4642
4643 skb_reset_mac_len(skb);
Jiri Pirko93515d52014-11-19 14:05:02 +01004644
4645 return err;
4646}
Shmulik Ladkanibfca4c52016-09-19 19:11:09 +03004647EXPORT_SYMBOL(__skb_vlan_pop);
Jiri Pirko93515d52014-11-19 14:05:02 +01004648
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004649/* Pop a vlan tag either from hwaccel or from payload.
4650 * Expects skb->data at mac header.
4651 */
Jiri Pirko93515d52014-11-19 14:05:02 +01004652int skb_vlan_pop(struct sk_buff *skb)
4653{
4654 u16 vlan_tci;
4655 __be16 vlan_proto;
4656 int err;
4657
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004658 if (likely(skb_vlan_tag_present(skb))) {
Jiri Pirko93515d52014-11-19 14:05:02 +01004659 skb->vlan_tci = 0;
4660 } else {
Shmulik Ladkaniecf4ee42016-09-20 12:48:37 +03004661 if (unlikely(!eth_type_vlan(skb->protocol)))
Jiri Pirko93515d52014-11-19 14:05:02 +01004662 return 0;
4663
4664 err = __skb_vlan_pop(skb, &vlan_tci);
4665 if (err)
4666 return err;
4667 }
4668 /* move next vlan tag to hw accel tag */
Shmulik Ladkaniecf4ee42016-09-20 12:48:37 +03004669 if (likely(!eth_type_vlan(skb->protocol)))
Jiri Pirko93515d52014-11-19 14:05:02 +01004670 return 0;
4671
4672 vlan_proto = skb->protocol;
4673 err = __skb_vlan_pop(skb, &vlan_tci);
4674 if (unlikely(err))
4675 return err;
4676
4677 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4678 return 0;
4679}
4680EXPORT_SYMBOL(skb_vlan_pop);
4681
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004682/* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
4683 * Expects skb->data at mac header.
4684 */
Jiri Pirko93515d52014-11-19 14:05:02 +01004685int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
4686{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004687 if (skb_vlan_tag_present(skb)) {
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004688 int offset = skb->data - skb_mac_header(skb);
Jiri Pirko93515d52014-11-19 14:05:02 +01004689 int err;
4690
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004691 if (WARN_ONCE(offset,
4692 "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
4693 offset)) {
4694 return -EINVAL;
4695 }
4696
Jiri Pirko93515d52014-11-19 14:05:02 +01004697 err = __vlan_insert_tag(skb, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004698 skb_vlan_tag_get(skb));
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004699 if (err)
Jiri Pirko93515d52014-11-19 14:05:02 +01004700 return err;
Daniel Borkmann9241e2d2016-04-16 02:27:58 +02004701
Jiri Pirko93515d52014-11-19 14:05:02 +01004702 skb->protocol = skb->vlan_proto;
4703 skb->mac_len += VLAN_HLEN;
Jiri Pirko93515d52014-11-19 14:05:02 +01004704
Daniel Borkmann6b83d282016-02-20 00:29:30 +01004705 skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
Jiri Pirko93515d52014-11-19 14:05:02 +01004706 }
4707 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4708 return 0;
4709}
4710EXPORT_SYMBOL(skb_vlan_push);
4711
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004712/**
4713 * alloc_skb_with_frags - allocate skb with page frags
4714 *
Masanari Iidade3f0d02014-10-09 12:58:08 +09004715 * @header_len: size of linear part
4716 * @data_len: needed length in frags
4717 * @max_page_order: max page order desired.
4718 * @errcode: pointer to error code if any
4719 * @gfp_mask: allocation mask
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004720 *
4721 * This can be used to allocate a paged skb, given a maximal order for frags.
4722 */
4723struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
4724 unsigned long data_len,
4725 int max_page_order,
4726 int *errcode,
4727 gfp_t gfp_mask)
4728{
4729 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
4730 unsigned long chunk;
4731 struct sk_buff *skb;
4732 struct page *page;
4733 gfp_t gfp_head;
4734 int i;
4735
4736 *errcode = -EMSGSIZE;
4737 /* Note this test could be relaxed, if we succeed to allocate
4738 * high order pages...
4739 */
4740 if (npages > MAX_SKB_FRAGS)
4741 return NULL;
4742
4743 gfp_head = gfp_mask;
Mel Gormand0164ad2015-11-06 16:28:21 -08004744 if (gfp_head & __GFP_DIRECT_RECLAIM)
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004745 gfp_head |= __GFP_REPEAT;
4746
4747 *errcode = -ENOBUFS;
4748 skb = alloc_skb(header_len, gfp_head);
4749 if (!skb)
4750 return NULL;
4751
4752 skb->truesize += npages << PAGE_SHIFT;
4753
4754 for (i = 0; npages > 0; i++) {
4755 int order = max_page_order;
4756
4757 while (order) {
4758 if (npages >= 1 << order) {
Mel Gormand0164ad2015-11-06 16:28:21 -08004759 page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004760 __GFP_COMP |
4761 __GFP_NOWARN |
4762 __GFP_NORETRY,
4763 order);
4764 if (page)
4765 goto fill_page;
4766 /* Do not retry other high order allocations */
4767 order = 1;
4768 max_page_order = 0;
4769 }
4770 order--;
4771 }
4772 page = alloc_page(gfp_mask);
4773 if (!page)
4774 goto failure;
4775fill_page:
4776 chunk = min_t(unsigned long, data_len,
4777 PAGE_SIZE << order);
4778 skb_fill_page_desc(skb, i, page, 0, chunk);
4779 data_len -= chunk;
4780 npages -= 1 << order;
4781 }
4782 return skb;
4783
4784failure:
4785 kfree_skb(skb);
4786 return NULL;
4787}
4788EXPORT_SYMBOL(alloc_skb_with_frags);
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004789
4790/* carve out the first off bytes from skb when off < headlen */
4791static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
4792 const int headlen, gfp_t gfp_mask)
4793{
4794 int i;
4795 int size = skb_end_offset(skb);
4796 int new_hlen = headlen - off;
4797 u8 *data;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004798
4799 size = SKB_DATA_ALIGN(size);
4800
4801 if (skb_pfmemalloc(skb))
4802 gfp_mask |= __GFP_MEMALLOC;
4803 data = kmalloc_reserve(size +
4804 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
4805 gfp_mask, NUMA_NO_NODE, NULL);
4806 if (!data)
4807 return -ENOMEM;
4808
4809 size = SKB_WITH_OVERHEAD(ksize(data));
4810
4811 /* Copy real data, and all frags */
4812 skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
4813 skb->len -= off;
4814
4815 memcpy((struct skb_shared_info *)(data + size),
4816 skb_shinfo(skb),
4817 offsetof(struct skb_shared_info,
4818 frags[skb_shinfo(skb)->nr_frags]));
4819 if (skb_cloned(skb)) {
4820 /* drop the old head gracefully */
4821 if (skb_orphan_frags(skb, gfp_mask)) {
4822 kfree(data);
4823 return -ENOMEM;
4824 }
4825 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
4826 skb_frag_ref(skb, i);
4827 if (skb_has_frag_list(skb))
4828 skb_clone_fraglist(skb);
4829 skb_release_data(skb);
4830 } else {
4831 /* we can reuse existing recount- all we did was
4832 * relocate values
4833 */
4834 skb_free_head(skb);
4835 }
4836
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004837 skb->head = data;
4838 skb->data = data;
4839 skb->head_frag = 0;
4840#ifdef NET_SKBUFF_DATA_USES_OFFSET
4841 skb->end = size;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004842#else
4843 skb->end = skb->head + size;
4844#endif
4845 skb_set_tail_pointer(skb, skb_headlen(skb));
4846 skb_headers_offset_update(skb, 0);
4847 skb->cloned = 0;
4848 skb->hdr_len = 0;
4849 skb->nohdr = 0;
4850 atomic_set(&skb_shinfo(skb)->dataref, 1);
4851
4852 return 0;
4853}
4854
4855static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
4856
4857/* carve out the first eat bytes from skb's frag_list. May recurse into
4858 * pskb_carve()
4859 */
4860static int pskb_carve_frag_list(struct sk_buff *skb,
4861 struct skb_shared_info *shinfo, int eat,
4862 gfp_t gfp_mask)
4863{
4864 struct sk_buff *list = shinfo->frag_list;
4865 struct sk_buff *clone = NULL;
4866 struct sk_buff *insp = NULL;
4867
4868 do {
4869 if (!list) {
4870 pr_err("Not enough bytes to eat. Want %d\n", eat);
4871 return -EFAULT;
4872 }
4873 if (list->len <= eat) {
4874 /* Eaten as whole. */
4875 eat -= list->len;
4876 list = list->next;
4877 insp = list;
4878 } else {
4879 /* Eaten partially. */
4880 if (skb_shared(list)) {
4881 clone = skb_clone(list, gfp_mask);
4882 if (!clone)
4883 return -ENOMEM;
4884 insp = list->next;
4885 list = clone;
4886 } else {
4887 /* This may be pulled without problems. */
4888 insp = list;
4889 }
4890 if (pskb_carve(list, eat, gfp_mask) < 0) {
4891 kfree_skb(clone);
4892 return -ENOMEM;
4893 }
4894 break;
4895 }
4896 } while (eat);
4897
4898 /* Free pulled out fragments. */
4899 while ((list = shinfo->frag_list) != insp) {
4900 shinfo->frag_list = list->next;
4901 kfree_skb(list);
4902 }
4903 /* And insert new clone at head. */
4904 if (clone) {
4905 clone->next = list;
4906 shinfo->frag_list = clone;
4907 }
4908 return 0;
4909}
4910
4911/* carve off first len bytes from skb. Split line (off) is in the
4912 * non-linear part of skb
4913 */
4914static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
4915 int pos, gfp_t gfp_mask)
4916{
4917 int i, k = 0;
4918 int size = skb_end_offset(skb);
4919 u8 *data;
4920 const int nfrags = skb_shinfo(skb)->nr_frags;
4921 struct skb_shared_info *shinfo;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004922
4923 size = SKB_DATA_ALIGN(size);
4924
4925 if (skb_pfmemalloc(skb))
4926 gfp_mask |= __GFP_MEMALLOC;
4927 data = kmalloc_reserve(size +
4928 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
4929 gfp_mask, NUMA_NO_NODE, NULL);
4930 if (!data)
4931 return -ENOMEM;
4932
4933 size = SKB_WITH_OVERHEAD(ksize(data));
4934
4935 memcpy((struct skb_shared_info *)(data + size),
4936 skb_shinfo(skb), offsetof(struct skb_shared_info,
4937 frags[skb_shinfo(skb)->nr_frags]));
4938 if (skb_orphan_frags(skb, gfp_mask)) {
4939 kfree(data);
4940 return -ENOMEM;
4941 }
4942 shinfo = (struct skb_shared_info *)(data + size);
4943 for (i = 0; i < nfrags; i++) {
4944 int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
4945
4946 if (pos + fsize > off) {
4947 shinfo->frags[k] = skb_shinfo(skb)->frags[i];
4948
4949 if (pos < off) {
4950 /* Split frag.
4951 * We have two variants in this case:
4952 * 1. Move all the frag to the second
4953 * part, if it is possible. F.e.
4954 * this approach is mandatory for TUX,
4955 * where splitting is expensive.
4956 * 2. Split is accurately. We make this.
4957 */
4958 shinfo->frags[0].page_offset += off - pos;
4959 skb_frag_size_sub(&shinfo->frags[0], off - pos);
4960 }
4961 skb_frag_ref(skb, i);
4962 k++;
4963 }
4964 pos += fsize;
4965 }
4966 shinfo->nr_frags = k;
4967 if (skb_has_frag_list(skb))
4968 skb_clone_fraglist(skb);
4969
4970 if (k == 0) {
4971 /* split line is in frag list */
4972 pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask);
4973 }
4974 skb_release_data(skb);
4975
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004976 skb->head = data;
4977 skb->head_frag = 0;
4978 skb->data = data;
4979#ifdef NET_SKBUFF_DATA_USES_OFFSET
4980 skb->end = size;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004981#else
4982 skb->end = skb->head + size;
4983#endif
4984 skb_reset_tail_pointer(skb);
4985 skb_headers_offset_update(skb, 0);
4986 skb->cloned = 0;
4987 skb->hdr_len = 0;
4988 skb->nohdr = 0;
4989 skb->len -= off;
4990 skb->data_len = skb->len;
4991 atomic_set(&skb_shinfo(skb)->dataref, 1);
4992 return 0;
4993}
4994
4995/* remove len bytes from the beginning of the skb */
4996static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
4997{
4998 int headlen = skb_headlen(skb);
4999
5000 if (len < headlen)
5001 return pskb_carve_inside_header(skb, len, headlen, gfp);
5002 else
5003 return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
5004}
5005
5006/* Extract to_copy bytes starting at off from skb, and return this in
5007 * a new skb
5008 */
5009struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
5010 int to_copy, gfp_t gfp)
5011{
5012 struct sk_buff *clone = skb_clone(skb, gfp);
5013
5014 if (!clone)
5015 return NULL;
5016
5017 if (pskb_carve(clone, off, gfp) < 0 ||
5018 pskb_trim(clone, to_copy)) {
5019 kfree_skb(clone);
5020 return NULL;
5021 }
5022 return clone;
5023}
5024EXPORT_SYMBOL(pskb_extract);