blob: 8cae7aa4a4ec592a42d3937ccf054b72be0c0fcc [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
1581/**
1582 * __pskb_pull_tail - advance tail of skb header
1583 * @skb: buffer to reallocate
1584 * @delta: number of bytes to advance tail
1585 *
1586 * The function makes a sense only on a fragmented &sk_buff,
1587 * it expands header moving its tail forward and copying necessary
1588 * data from fragmented part.
1589 *
1590 * &sk_buff MUST have reference count of 1.
1591 *
1592 * Returns %NULL (and &sk_buff does not change) if pull failed
1593 * or value of new tail of skb in the case of success.
1594 *
1595 * All the pointers pointing into skb header may change and must be
1596 * reloaded after call to this function.
1597 */
1598
1599/* Moves tail of skb head forward, copying data from fragmented part,
1600 * when it is necessary.
1601 * 1. It may fail due to malloc failure.
1602 * 2. It may change skb pointers.
1603 *
1604 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1605 */
1606unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1607{
1608 /* If skb has not enough free space at tail, get new one
1609 * plus 128 bytes for future expansions. If we have enough
1610 * room at tail, reallocate without expansion only if skb is cloned.
1611 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001612 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 if (eat > 0 || skb_cloned(skb)) {
1615 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1616 GFP_ATOMIC))
1617 return NULL;
1618 }
1619
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001620 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 BUG();
1622
1623 /* Optimization: no fragments, no reasons to preestimate
1624 * size of pulled pages. Superb.
1625 */
David S. Miller21dc3302010-08-23 00:13:46 -07001626 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 goto pull_pages;
1628
1629 /* Estimate size of pulled pages. */
1630 eat = delta;
1631 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001632 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1633
1634 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001636 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
1639 /* If we need update frag list, we are in troubles.
1640 * Certainly, it possible to add an offset to skb data,
1641 * but taking into account that pulling is expected to
1642 * be very rare operation, it is worth to fight against
1643 * further bloating skb head and crucify ourselves here instead.
1644 * Pure masohism, indeed. 8)8)
1645 */
1646 if (eat) {
1647 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1648 struct sk_buff *clone = NULL;
1649 struct sk_buff *insp = NULL;
1650
1651 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001652 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 if (list->len <= eat) {
1655 /* Eaten as whole. */
1656 eat -= list->len;
1657 list = list->next;
1658 insp = list;
1659 } else {
1660 /* Eaten partially. */
1661
1662 if (skb_shared(list)) {
1663 /* Sucks! We need to fork list. :-( */
1664 clone = skb_clone(list, GFP_ATOMIC);
1665 if (!clone)
1666 return NULL;
1667 insp = list->next;
1668 list = clone;
1669 } else {
1670 /* This may be pulled without
1671 * problems. */
1672 insp = list;
1673 }
1674 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001675 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return NULL;
1677 }
1678 break;
1679 }
1680 } while (eat);
1681
1682 /* Free pulled out fragments. */
1683 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1684 skb_shinfo(skb)->frag_list = list->next;
1685 kfree_skb(list);
1686 }
1687 /* And insert new clone at head. */
1688 if (clone) {
1689 clone->next = list;
1690 skb_shinfo(skb)->frag_list = clone;
1691 }
1692 }
1693 /* Success! Now we may commit changes to skb data. */
1694
1695pull_pages:
1696 eat = delta;
1697 k = 0;
1698 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001699 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1700
1701 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001702 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001703 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 } else {
1705 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1706 if (eat) {
1707 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001708 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 eat = 0;
1710 }
1711 k++;
1712 }
1713 }
1714 skb_shinfo(skb)->nr_frags = k;
1715
1716 skb->tail += delta;
1717 skb->data_len -= delta;
1718
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001719 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001721EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Eric Dumazet22019b12011-07-29 18:37:31 +00001723/**
1724 * skb_copy_bits - copy bits from skb to kernel buffer
1725 * @skb: source skb
1726 * @offset: offset in source
1727 * @to: destination buffer
1728 * @len: number of bytes to copy
1729 *
1730 * Copy the specified number of bytes from the source skb to the
1731 * destination buffer.
1732 *
1733 * CAUTION ! :
1734 * If its prototype is ever changed,
1735 * check arch/{*}/net/{*}.S files,
1736 * since it is called from BPF assembly code.
1737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1739{
David S. Miller1a028e52007-04-27 15:21:23 -07001740 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001741 struct sk_buff *frag_iter;
1742 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 if (offset > (int)skb->len - len)
1745 goto fault;
1746
1747 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001748 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (copy > len)
1750 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001751 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if ((len -= copy) == 0)
1753 return 0;
1754 offset += copy;
1755 to += copy;
1756 }
1757
1758 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001759 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001760 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001762 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001763
Eric Dumazet51c56b02012-04-05 11:35:15 +02001764 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if ((copy = end - offset) > 0) {
1766 u8 *vaddr;
1767
1768 if (copy > len)
1769 copy = len;
1770
Eric Dumazet51c56b02012-04-05 11:35:15 +02001771 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001773 vaddr + f->page_offset + offset - start,
1774 copy);
1775 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 if ((len -= copy) == 0)
1778 return 0;
1779 offset += copy;
1780 to += copy;
1781 }
David S. Miller1a028e52007-04-27 15:21:23 -07001782 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784
David S. Millerfbb398a2009-06-09 00:18:59 -07001785 skb_walk_frags(skb, frag_iter) {
1786 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
David S. Millerfbb398a2009-06-09 00:18:59 -07001788 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
David S. Millerfbb398a2009-06-09 00:18:59 -07001790 end = start + frag_iter->len;
1791 if ((copy = end - offset) > 0) {
1792 if (copy > len)
1793 copy = len;
1794 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1795 goto fault;
1796 if ((len -= copy) == 0)
1797 return 0;
1798 offset += copy;
1799 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001801 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Shirley Maa6686f22011-07-06 12:22:12 +00001803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 if (!len)
1805 return 0;
1806
1807fault:
1808 return -EFAULT;
1809}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001810EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Jens Axboe9c55e012007-11-06 23:30:13 -08001812/*
1813 * Callback from splice_to_pipe(), if we need to release some pages
1814 * at the end of the spd in case we error'ed out in filling the pipe.
1815 */
1816static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1817{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001818 put_page(spd->pages[i]);
1819}
Jens Axboe9c55e012007-11-06 23:30:13 -08001820
David S. Millera108d5f2012-04-23 23:06:11 -04001821static struct page *linear_to_page(struct page *page, unsigned int *len,
1822 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001823 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001824{
Eric Dumazet5640f762012-09-23 23:04:42 +00001825 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001826
Eric Dumazet5640f762012-09-23 23:04:42 +00001827 if (!sk_page_frag_refill(sk, pfrag))
1828 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001829
Eric Dumazet5640f762012-09-23 23:04:42 +00001830 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001831
Eric Dumazet5640f762012-09-23 23:04:42 +00001832 memcpy(page_address(pfrag->page) + pfrag->offset,
1833 page_address(page) + *offset, *len);
1834 *offset = pfrag->offset;
1835 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001836
Eric Dumazet5640f762012-09-23 23:04:42 +00001837 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001838}
1839
Eric Dumazet41c73a02012-04-22 12:26:16 +00001840static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1841 struct page *page,
1842 unsigned int offset)
1843{
1844 return spd->nr_pages &&
1845 spd->pages[spd->nr_pages - 1] == page &&
1846 (spd->partial[spd->nr_pages - 1].offset +
1847 spd->partial[spd->nr_pages - 1].len == offset);
1848}
1849
Jens Axboe9c55e012007-11-06 23:30:13 -08001850/*
1851 * Fill page/offset/length into spd, if it can hold more pages.
1852 */
David S. Millera108d5f2012-04-23 23:06:11 -04001853static bool spd_fill_page(struct splice_pipe_desc *spd,
1854 struct pipe_inode_info *pipe, struct page *page,
1855 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001856 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001857 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001858{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001859 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001860 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001861
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001862 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001863 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001864 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001865 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001866 }
1867 if (spd_can_coalesce(spd, page, offset)) {
1868 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001869 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001870 }
1871 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001872 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001873 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001874 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001875 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001876
David S. Millera108d5f2012-04-23 23:06:11 -04001877 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001878}
1879
David S. Millera108d5f2012-04-23 23:06:11 -04001880static bool __splice_segment(struct page *page, unsigned int poff,
1881 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001882 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001883 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001884 struct sock *sk,
1885 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001886{
1887 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001888 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001889
1890 /* skip this segment if already processed */
1891 if (*off >= plen) {
1892 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001893 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001894 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001895
Octavian Purdila2870c432008-07-15 00:49:11 -07001896 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001897 poff += *off;
1898 plen -= *off;
1899 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001900
Eric Dumazet18aafc62013-01-11 14:46:37 +00001901 do {
1902 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001903
Eric Dumazet18aafc62013-01-11 14:46:37 +00001904 if (spd_fill_page(spd, pipe, page, &flen, poff,
1905 linear, sk))
1906 return true;
1907 poff += flen;
1908 plen -= flen;
1909 *len -= flen;
1910 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001911
David S. Millera108d5f2012-04-23 23:06:11 -04001912 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001913}
1914
1915/*
David S. Millera108d5f2012-04-23 23:06:11 -04001916 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001917 * pipe is full or if we already spliced the requested length.
1918 */
David S. Millera108d5f2012-04-23 23:06:11 -04001919static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1920 unsigned int *offset, unsigned int *len,
1921 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001922{
1923 int seg;
Tom Herbertfa9835e2016-03-07 14:11:04 -08001924 struct sk_buff *iter;
Octavian Purdila2870c432008-07-15 00:49:11 -07001925
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001926 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001927 * If skb->head_frag is set, this 'linear' part is backed by a
1928 * fragment, and if the head is not shared with any clones then
1929 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001930 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001931 if (__splice_segment(virt_to_page(skb->data),
1932 (unsigned long) skb->data & (PAGE_SIZE - 1),
1933 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001934 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001935 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001936 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001937 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001938
1939 /*
1940 * then map the fragments
1941 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001942 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1943 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1944
Ian Campbellea2ab692011-08-22 23:44:58 +00001945 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001946 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001947 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001948 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001949 }
1950
Tom Herbertfa9835e2016-03-07 14:11:04 -08001951 skb_walk_frags(skb, iter) {
1952 if (*offset >= iter->len) {
1953 *offset -= iter->len;
1954 continue;
1955 }
1956 /* __skb_splice_bits() only fails if the output has no room
1957 * left, so no point in going over the frag_list for the error
1958 * case.
1959 */
1960 if (__skb_splice_bits(iter, pipe, offset, len, spd, sk))
1961 return true;
1962 }
1963
David S. Millera108d5f2012-04-23 23:06:11 -04001964 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001965}
1966
1967/*
1968 * Map data from the skb to a pipe. Should handle both the linear part,
Tom Herbertfa9835e2016-03-07 14:11:04 -08001969 * the fragments, and the frag list.
Jens Axboe9c55e012007-11-06 23:30:13 -08001970 */
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02001971int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001972 struct pipe_inode_info *pipe, unsigned int tlen,
Al Viro25869262016-09-17 21:02:10 -04001973 unsigned int flags)
Jens Axboe9c55e012007-11-06 23:30:13 -08001974{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001975 struct partial_page partial[MAX_SKB_FRAGS];
1976 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001977 struct splice_pipe_desc spd = {
1978 .pages = pages,
1979 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001980 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001981 .flags = flags,
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001982 .ops = &nosteal_pipe_buf_ops,
Jens Axboe9c55e012007-11-06 23:30:13 -08001983 .spd_release = sock_spd_release,
1984 };
Jens Axboe35f3d142010-05-20 10:43:18 +02001985 int ret = 0;
1986
Tom Herbertfa9835e2016-03-07 14:11:04 -08001987 __skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001988
Hannes Frederic Sowaa60e3cc2015-05-21 17:00:00 +02001989 if (spd.nr_pages)
Al Viro25869262016-09-17 21:02:10 -04001990 ret = splice_to_pipe(pipe, &spd);
Jens Axboe9c55e012007-11-06 23:30:13 -08001991
Jens Axboe35f3d142010-05-20 10:43:18 +02001992 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001993}
Hannes Frederic Sowa2b514572015-05-21 17:00:01 +02001994EXPORT_SYMBOL_GPL(skb_splice_bits);
Jens Axboe9c55e012007-11-06 23:30:13 -08001995
Herbert Xu357b40a2005-04-19 22:30:14 -07001996/**
1997 * skb_store_bits - store bits from kernel buffer to skb
1998 * @skb: destination buffer
1999 * @offset: offset in destination
2000 * @from: source buffer
2001 * @len: number of bytes to copy
2002 *
2003 * Copy the specified number of bytes from the source buffer to the
2004 * destination skb. This function handles all the messy bits of
2005 * traversing fragment lists and such.
2006 */
2007
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07002008int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07002009{
David S. Miller1a028e52007-04-27 15:21:23 -07002010 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07002011 struct sk_buff *frag_iter;
2012 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002013
2014 if (offset > (int)skb->len - len)
2015 goto fault;
2016
David S. Miller1a028e52007-04-27 15:21:23 -07002017 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07002018 if (copy > len)
2019 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002020 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07002021 if ((len -= copy) == 0)
2022 return 0;
2023 offset += copy;
2024 from += copy;
2025 }
2026
2027 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2028 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07002029 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002030
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002031 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002032
Eric Dumazet9e903e02011-10-18 21:00:24 +00002033 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07002034 if ((copy = end - offset) > 0) {
2035 u8 *vaddr;
2036
2037 if (copy > len)
2038 copy = len;
2039
Eric Dumazet51c56b02012-04-05 11:35:15 +02002040 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07002041 memcpy(vaddr + frag->page_offset + offset - start,
2042 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002043 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07002044
2045 if ((len -= copy) == 0)
2046 return 0;
2047 offset += copy;
2048 from += copy;
2049 }
David S. Miller1a028e52007-04-27 15:21:23 -07002050 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002051 }
2052
David S. Millerfbb398a2009-06-09 00:18:59 -07002053 skb_walk_frags(skb, frag_iter) {
2054 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002055
David S. Millerfbb398a2009-06-09 00:18:59 -07002056 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07002057
David S. Millerfbb398a2009-06-09 00:18:59 -07002058 end = start + frag_iter->len;
2059 if ((copy = end - offset) > 0) {
2060 if (copy > len)
2061 copy = len;
2062 if (skb_store_bits(frag_iter, offset - start,
2063 from, copy))
2064 goto fault;
2065 if ((len -= copy) == 0)
2066 return 0;
2067 offset += copy;
2068 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07002069 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002070 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07002071 }
2072 if (!len)
2073 return 0;
2074
2075fault:
2076 return -EFAULT;
2077}
Herbert Xu357b40a2005-04-19 22:30:14 -07002078EXPORT_SYMBOL(skb_store_bits);
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01002081__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
2082 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
David S. Miller1a028e52007-04-27 15:21:23 -07002084 int start = skb_headlen(skb);
2085 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002086 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 int pos = 0;
2088
2089 /* Checksum header. */
2090 if (copy > 0) {
2091 if (copy > len)
2092 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002093 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if ((len -= copy) == 0)
2095 return csum;
2096 offset += copy;
2097 pos = copy;
2098 }
2099
2100 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002101 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002102 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002104 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002105
Eric Dumazet51c56b02012-04-05 11:35:15 +02002106 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08002108 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 if (copy > len)
2112 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002113 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01002114 csum2 = ops->update(vaddr + frag->page_offset +
2115 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002116 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01002117 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (!(len -= copy))
2119 return csum;
2120 offset += copy;
2121 pos += copy;
2122 }
David S. Miller1a028e52007-04-27 15:21:23 -07002123 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
2125
David S. Millerfbb398a2009-06-09 00:18:59 -07002126 skb_walk_frags(skb, frag_iter) {
2127 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
David S. Millerfbb398a2009-06-09 00:18:59 -07002129 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
David S. Millerfbb398a2009-06-09 00:18:59 -07002131 end = start + frag_iter->len;
2132 if ((copy = end - offset) > 0) {
2133 __wsum csum2;
2134 if (copy > len)
2135 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01002136 csum2 = __skb_checksum(frag_iter, offset - start,
2137 copy, 0, ops);
2138 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07002139 if ((len -= copy) == 0)
2140 return csum;
2141 offset += copy;
2142 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002144 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002146 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 return csum;
2149}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002150EXPORT_SYMBOL(__skb_checksum);
2151
2152__wsum skb_checksum(const struct sk_buff *skb, int offset,
2153 int len, __wsum csum)
2154{
2155 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002156 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002157 .combine = csum_block_add_ext,
2158 };
2159
2160 return __skb_checksum(skb, offset, len, csum, &ops);
2161}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002162EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164/* Both of above in one bottle. */
2165
Al Viro81d77662006-11-14 21:37:33 -08002166__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2167 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
David S. Miller1a028e52007-04-27 15:21:23 -07002169 int start = skb_headlen(skb);
2170 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002171 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 int pos = 0;
2173
2174 /* Copy header. */
2175 if (copy > 0) {
2176 if (copy > len)
2177 copy = len;
2178 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2179 copy, csum);
2180 if ((len -= copy) == 0)
2181 return csum;
2182 offset += copy;
2183 to += copy;
2184 pos = copy;
2185 }
2186
2187 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002188 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002190 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002191
Eric Dumazet9e903e02011-10-18 21:00:24 +00002192 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002194 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 u8 *vaddr;
2196 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2197
2198 if (copy > len)
2199 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002200 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002202 frag->page_offset +
2203 offset - start, to,
2204 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002205 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 csum = csum_block_add(csum, csum2, pos);
2207 if (!(len -= copy))
2208 return csum;
2209 offset += copy;
2210 to += copy;
2211 pos += copy;
2212 }
David S. Miller1a028e52007-04-27 15:21:23 -07002213 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215
David S. Millerfbb398a2009-06-09 00:18:59 -07002216 skb_walk_frags(skb, frag_iter) {
2217 __wsum csum2;
2218 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
David S. Millerfbb398a2009-06-09 00:18:59 -07002220 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
David S. Millerfbb398a2009-06-09 00:18:59 -07002222 end = start + frag_iter->len;
2223 if ((copy = end - offset) > 0) {
2224 if (copy > len)
2225 copy = len;
2226 csum2 = skb_copy_and_csum_bits(frag_iter,
2227 offset - start,
2228 to, copy, 0);
2229 csum = csum_block_add(csum, csum2, pos);
2230 if ((len -= copy) == 0)
2231 return csum;
2232 offset += copy;
2233 to += copy;
2234 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002236 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002238 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 return csum;
2240}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002241EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Thomas Grafaf2806f2013-12-13 15:22:17 +01002243 /**
2244 * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy()
2245 * @from: source buffer
2246 *
2247 * Calculates the amount of linear headroom needed in the 'to' skb passed
2248 * into skb_zerocopy().
2249 */
2250unsigned int
2251skb_zerocopy_headlen(const struct sk_buff *from)
2252{
2253 unsigned int hlen = 0;
2254
2255 if (!from->head_frag ||
2256 skb_headlen(from) < L1_CACHE_BYTES ||
2257 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
2258 hlen = skb_headlen(from);
2259
2260 if (skb_has_frag_list(from))
2261 hlen = from->len;
2262
2263 return hlen;
2264}
2265EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
2266
2267/**
2268 * skb_zerocopy - Zero copy skb to skb
2269 * @to: destination buffer
Masanari Iida7fceb4d2014-01-29 01:05:28 +09002270 * @from: source buffer
Thomas Grafaf2806f2013-12-13 15:22:17 +01002271 * @len: number of bytes to copy from source buffer
2272 * @hlen: size of linear headroom in destination buffer
2273 *
2274 * Copies up to `len` bytes from `from` to `to` by creating references
2275 * to the frags in the source buffer.
2276 *
2277 * The `hlen` as calculated by skb_zerocopy_headlen() specifies the
2278 * headroom in the `to` buffer.
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002279 *
2280 * Return value:
2281 * 0: everything is OK
2282 * -ENOMEM: couldn't orphan frags of @from due to lack of memory
2283 * -EFAULT: skb_copy_bits() found some problem with skb geometry
Thomas Grafaf2806f2013-12-13 15:22:17 +01002284 */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002285int
2286skb_zerocopy(struct sk_buff *to, struct sk_buff *from, int len, int hlen)
Thomas Grafaf2806f2013-12-13 15:22:17 +01002287{
2288 int i, j = 0;
2289 int plen = 0; /* length of skb->head fragment */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002290 int ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002291 struct page *page;
2292 unsigned int offset;
2293
2294 BUG_ON(!from->head_frag && !hlen);
2295
2296 /* dont bother with small payloads */
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002297 if (len <= skb_tailroom(to))
2298 return skb_copy_bits(from, 0, skb_put(to, len), len);
Thomas Grafaf2806f2013-12-13 15:22:17 +01002299
2300 if (hlen) {
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002301 ret = skb_copy_bits(from, 0, skb_put(to, hlen), hlen);
2302 if (unlikely(ret))
2303 return ret;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002304 len -= hlen;
2305 } else {
2306 plen = min_t(int, skb_headlen(from), len);
2307 if (plen) {
2308 page = virt_to_head_page(from->head);
2309 offset = from->data - (unsigned char *)page_address(page);
2310 __skb_fill_page_desc(to, 0, page, offset, plen);
2311 get_page(page);
2312 j = 1;
2313 len -= plen;
2314 }
2315 }
2316
2317 to->truesize += len + plen;
2318 to->len += len + plen;
2319 to->data_len += len + plen;
2320
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002321 if (unlikely(skb_orphan_frags(from, GFP_ATOMIC))) {
2322 skb_tx_error(from);
2323 return -ENOMEM;
2324 }
2325
Thomas Grafaf2806f2013-12-13 15:22:17 +01002326 for (i = 0; i < skb_shinfo(from)->nr_frags; i++) {
2327 if (!len)
2328 break;
2329 skb_shinfo(to)->frags[j] = skb_shinfo(from)->frags[i];
2330 skb_shinfo(to)->frags[j].size = min_t(int, skb_shinfo(to)->frags[j].size, len);
2331 len -= skb_shinfo(to)->frags[j].size;
2332 skb_frag_ref(to, j);
2333 j++;
2334 }
2335 skb_shinfo(to)->nr_frags = j;
Zoltan Kiss36d5fe62014-03-26 22:37:45 +00002336
2337 return 0;
Thomas Grafaf2806f2013-12-13 15:22:17 +01002338}
2339EXPORT_SYMBOL_GPL(skb_zerocopy);
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2342{
Al Virod3bc23e2006-11-14 21:24:49 -08002343 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 long csstart;
2345
Patrick McHardy84fa7932006-08-29 16:44:56 -07002346 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002347 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 else
2349 csstart = skb_headlen(skb);
2350
Kris Katterjohn09a62662006-01-08 22:24:28 -08002351 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002353 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 csum = 0;
2356 if (csstart != skb->len)
2357 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2358 skb->len - csstart, 0);
2359
Patrick McHardy84fa7932006-08-29 16:44:56 -07002360 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002361 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Al Virod3bc23e2006-11-14 21:24:49 -08002363 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
2365}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002366EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368/**
2369 * skb_dequeue - remove from the head of the queue
2370 * @list: list to dequeue from
2371 *
2372 * Remove the head of the list. The list lock is taken so the function
2373 * may be used safely with other locking list functions. The head item is
2374 * returned or %NULL if the list is empty.
2375 */
2376
2377struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2378{
2379 unsigned long flags;
2380 struct sk_buff *result;
2381
2382 spin_lock_irqsave(&list->lock, flags);
2383 result = __skb_dequeue(list);
2384 spin_unlock_irqrestore(&list->lock, flags);
2385 return result;
2386}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002387EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389/**
2390 * skb_dequeue_tail - remove from the tail of the queue
2391 * @list: list to dequeue from
2392 *
2393 * Remove the tail of the list. The list lock is taken so the function
2394 * may be used safely with other locking list functions. The tail item is
2395 * returned or %NULL if the list is empty.
2396 */
2397struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2398{
2399 unsigned long flags;
2400 struct sk_buff *result;
2401
2402 spin_lock_irqsave(&list->lock, flags);
2403 result = __skb_dequeue_tail(list);
2404 spin_unlock_irqrestore(&list->lock, flags);
2405 return result;
2406}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002407EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
2409/**
2410 * skb_queue_purge - empty a list
2411 * @list: list to empty
2412 *
2413 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2414 * the list and one reference dropped. This function takes the list
2415 * lock and is atomic with respect to other list locking functions.
2416 */
2417void skb_queue_purge(struct sk_buff_head *list)
2418{
2419 struct sk_buff *skb;
2420 while ((skb = skb_dequeue(list)) != NULL)
2421 kfree_skb(skb);
2422}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002423EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425/**
Yaogong Wang9f5afea2016-09-07 14:49:28 -07002426 * skb_rbtree_purge - empty a skb rbtree
2427 * @root: root of the rbtree to empty
2428 *
2429 * Delete all buffers on an &sk_buff rbtree. Each buffer is removed from
2430 * the list and one reference dropped. This function does not take
2431 * any lock. Synchronization should be handled by the caller (e.g., TCP
2432 * out-of-order queue is protected by the socket lock).
2433 */
2434void skb_rbtree_purge(struct rb_root *root)
2435{
2436 struct sk_buff *skb, *next;
2437
2438 rbtree_postorder_for_each_entry_safe(skb, next, root, rbnode)
2439 kfree_skb(skb);
2440
2441 *root = RB_ROOT;
2442}
2443
2444/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 * skb_queue_head - queue a buffer at the list head
2446 * @list: list to use
2447 * @newsk: buffer to queue
2448 *
2449 * Queue a buffer at the start of the list. This function takes the
2450 * list lock and can be used safely with other locking &sk_buff functions
2451 * safely.
2452 *
2453 * A buffer cannot be placed on two lists at the same time.
2454 */
2455void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2456{
2457 unsigned long flags;
2458
2459 spin_lock_irqsave(&list->lock, flags);
2460 __skb_queue_head(list, newsk);
2461 spin_unlock_irqrestore(&list->lock, flags);
2462}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002463EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465/**
2466 * skb_queue_tail - queue a buffer at the list tail
2467 * @list: list to use
2468 * @newsk: buffer to queue
2469 *
2470 * Queue a buffer at the tail of the list. This function takes the
2471 * list lock and can be used safely with other locking &sk_buff functions
2472 * safely.
2473 *
2474 * A buffer cannot be placed on two lists at the same time.
2475 */
2476void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2477{
2478 unsigned long flags;
2479
2480 spin_lock_irqsave(&list->lock, flags);
2481 __skb_queue_tail(list, newsk);
2482 spin_unlock_irqrestore(&list->lock, flags);
2483}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002484EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486/**
2487 * skb_unlink - remove a buffer from a list
2488 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002489 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 *
David S. Miller8728b832005-08-09 19:25:21 -07002491 * Remove a packet from a list. The list locks are taken and this
2492 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 *
David S. Miller8728b832005-08-09 19:25:21 -07002494 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 */
David S. Miller8728b832005-08-09 19:25:21 -07002496void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
David S. Miller8728b832005-08-09 19:25:21 -07002498 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
David S. Miller8728b832005-08-09 19:25:21 -07002500 spin_lock_irqsave(&list->lock, flags);
2501 __skb_unlink(skb, list);
2502 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002504EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506/**
2507 * skb_append - append a buffer
2508 * @old: buffer to insert after
2509 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002510 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 *
2512 * Place a packet after a given packet in a list. The list locks are taken
2513 * and this function is atomic with respect to other list locked calls.
2514 * A buffer cannot be placed on two lists at the same time.
2515 */
David S. Miller8728b832005-08-09 19:25:21 -07002516void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
2518 unsigned long flags;
2519
David S. Miller8728b832005-08-09 19:25:21 -07002520 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002521 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002522 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002524EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526/**
2527 * skb_insert - insert a buffer
2528 * @old: buffer to insert before
2529 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002530 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 *
David S. Miller8728b832005-08-09 19:25:21 -07002532 * Place a packet before a given packet in a list. The list locks are
2533 * taken and this function is atomic with respect to other list locked
2534 * calls.
2535 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 * A buffer cannot be placed on two lists at the same time.
2537 */
David S. Miller8728b832005-08-09 19:25:21 -07002538void skb_insert(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);
2543 __skb_insert(newsk, old->prev, old, list);
2544 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_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548static inline void skb_split_inside_header(struct sk_buff *skb,
2549 struct sk_buff* skb1,
2550 const u32 len, const int pos)
2551{
2552 int i;
2553
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002554 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2555 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 /* And move data appendix as is. */
2557 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2558 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2559
2560 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2561 skb_shinfo(skb)->nr_frags = 0;
2562 skb1->data_len = skb->data_len;
2563 skb1->len += skb1->data_len;
2564 skb->data_len = 0;
2565 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002566 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
2568
2569static inline void skb_split_no_header(struct sk_buff *skb,
2570 struct sk_buff* skb1,
2571 const u32 len, int pos)
2572{
2573 int i, k = 0;
2574 const int nfrags = skb_shinfo(skb)->nr_frags;
2575
2576 skb_shinfo(skb)->nr_frags = 0;
2577 skb1->len = skb1->data_len = skb->len - len;
2578 skb->len = len;
2579 skb->data_len = len - pos;
2580
2581 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002582 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 if (pos + size > len) {
2585 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2586
2587 if (pos < len) {
2588 /* Split frag.
2589 * We have two variants in this case:
2590 * 1. Move all the frag to the second
2591 * part, if it is possible. F.e.
2592 * this approach is mandatory for TUX,
2593 * where splitting is expensive.
2594 * 2. Split is accurately. We make this.
2595 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002596 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002598 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2599 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 skb_shinfo(skb)->nr_frags++;
2601 }
2602 k++;
2603 } else
2604 skb_shinfo(skb)->nr_frags++;
2605 pos += size;
2606 }
2607 skb_shinfo(skb1)->nr_frags = k;
2608}
2609
2610/**
2611 * skb_split - Split fragmented skb to two parts at length len.
2612 * @skb: the buffer to split
2613 * @skb1: the buffer to receive the second part
2614 * @len: new length for skb
2615 */
2616void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2617{
2618 int pos = skb_headlen(skb);
2619
Willem de Bruijnfcfb53c2017-06-08 11:35:03 -04002620 skb_shinfo(skb1)->tx_flags |= skb_shinfo(skb)->tx_flags &
2621 SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (len < pos) /* Split line is inside header. */
2623 skb_split_inside_header(skb, skb1, len, pos);
2624 else /* Second chunk has no header, nothing to copy. */
2625 skb_split_no_header(skb, skb1, len, pos);
2626}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002627EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002629/* Shifting from/to a cloned skb is a no-go.
2630 *
2631 * Caller cannot keep skb_shinfo related pointers past calling here!
2632 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002633static int skb_prepare_for_shift(struct sk_buff *skb)
2634{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002635 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002636}
2637
2638/**
2639 * skb_shift - Shifts paged data partially from skb to another
2640 * @tgt: buffer into which tail data gets added
2641 * @skb: buffer from which the paged data comes from
2642 * @shiftlen: shift up to this many bytes
2643 *
2644 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002645 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002646 * It's up to caller to free skb if everything was shifted.
2647 *
2648 * If @tgt runs out of frags, the whole operation is aborted.
2649 *
2650 * Skb cannot include anything else but paged data while tgt is allowed
2651 * to have non-paged data as well.
2652 *
2653 * TODO: full sized shift could be optimized but that would need
2654 * specialized skb free'er to handle frags without up-to-date nr_frags.
2655 */
2656int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2657{
2658 int from, to, merge, todo;
2659 struct skb_frag_struct *fragfrom, *fragto;
2660
2661 BUG_ON(shiftlen > skb->len);
2662 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2663
2664 todo = shiftlen;
2665 from = 0;
2666 to = skb_shinfo(tgt)->nr_frags;
2667 fragfrom = &skb_shinfo(skb)->frags[from];
2668
2669 /* Actual merge is delayed until the point when we know we can
2670 * commit all, so that we don't have to undo partial changes
2671 */
2672 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002673 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2674 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002675 merge = -1;
2676 } else {
2677 merge = to - 1;
2678
Eric Dumazet9e903e02011-10-18 21:00:24 +00002679 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002680 if (todo < 0) {
2681 if (skb_prepare_for_shift(skb) ||
2682 skb_prepare_for_shift(tgt))
2683 return 0;
2684
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002685 /* All previous frag pointers might be stale! */
2686 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002687 fragto = &skb_shinfo(tgt)->frags[merge];
2688
Eric Dumazet9e903e02011-10-18 21:00:24 +00002689 skb_frag_size_add(fragto, shiftlen);
2690 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002691 fragfrom->page_offset += shiftlen;
2692
2693 goto onlymerged;
2694 }
2695
2696 from++;
2697 }
2698
2699 /* Skip full, not-fitting skb to avoid expensive operations */
2700 if ((shiftlen == skb->len) &&
2701 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2702 return 0;
2703
2704 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2705 return 0;
2706
2707 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2708 if (to == MAX_SKB_FRAGS)
2709 return 0;
2710
2711 fragfrom = &skb_shinfo(skb)->frags[from];
2712 fragto = &skb_shinfo(tgt)->frags[to];
2713
Eric Dumazet9e903e02011-10-18 21:00:24 +00002714 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002715 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002716 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002717 from++;
2718 to++;
2719
2720 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002721 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002722 fragto->page = fragfrom->page;
2723 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002724 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002725
2726 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002727 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002728 todo = 0;
2729
2730 to++;
2731 break;
2732 }
2733 }
2734
2735 /* Ready to "commit" this state change to tgt */
2736 skb_shinfo(tgt)->nr_frags = to;
2737
2738 if (merge >= 0) {
2739 fragfrom = &skb_shinfo(skb)->frags[0];
2740 fragto = &skb_shinfo(tgt)->frags[merge];
2741
Eric Dumazet9e903e02011-10-18 21:00:24 +00002742 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002743 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002744 }
2745
2746 /* Reposition in the original skb */
2747 to = 0;
2748 while (from < skb_shinfo(skb)->nr_frags)
2749 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2750 skb_shinfo(skb)->nr_frags = to;
2751
2752 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2753
2754onlymerged:
2755 /* Most likely the tgt won't ever need its checksum anymore, skb on
2756 * the other hand might need it if it needs to be resent
2757 */
2758 tgt->ip_summed = CHECKSUM_PARTIAL;
2759 skb->ip_summed = CHECKSUM_PARTIAL;
2760
2761 /* Yak, is it really working this way? Some helper please? */
2762 skb->len -= shiftlen;
2763 skb->data_len -= shiftlen;
2764 skb->truesize -= shiftlen;
2765 tgt->len += shiftlen;
2766 tgt->data_len += shiftlen;
2767 tgt->truesize += shiftlen;
2768
2769 return shiftlen;
2770}
2771
Thomas Graf677e90e2005-06-23 20:59:51 -07002772/**
2773 * skb_prepare_seq_read - Prepare a sequential read of skb data
2774 * @skb: the buffer to read
2775 * @from: lower offset of data to be read
2776 * @to: upper offset of data to be read
2777 * @st: state variable
2778 *
2779 * Initializes the specified state variable. Must be called before
2780 * invoking skb_seq_read() for the first time.
2781 */
2782void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2783 unsigned int to, struct skb_seq_state *st)
2784{
2785 st->lower_offset = from;
2786 st->upper_offset = to;
2787 st->root_skb = st->cur_skb = skb;
2788 st->frag_idx = st->stepped_offset = 0;
2789 st->frag_data = NULL;
2790}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002791EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002792
2793/**
2794 * skb_seq_read - Sequentially read skb data
2795 * @consumed: number of bytes consumed by the caller so far
2796 * @data: destination pointer for data to be returned
2797 * @st: state variable
2798 *
Mathias Krausebc323832013-11-07 14:18:26 +01002799 * Reads a block of skb data at @consumed relative to the
Thomas Graf677e90e2005-06-23 20:59:51 -07002800 * lower offset specified to skb_prepare_seq_read(). Assigns
Mathias Krausebc323832013-11-07 14:18:26 +01002801 * the head of the data block to @data and returns the length
Thomas Graf677e90e2005-06-23 20:59:51 -07002802 * of the block or 0 if the end of the skb data or the upper
2803 * offset has been reached.
2804 *
2805 * The caller is not required to consume all of the data
Mathias Krausebc323832013-11-07 14:18:26 +01002806 * returned, i.e. @consumed is typically set to the number
Thomas Graf677e90e2005-06-23 20:59:51 -07002807 * of bytes already consumed and the next call to
2808 * skb_seq_read() will return the remaining part of the block.
2809 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002810 * Note 1: The size of each block of data returned can be arbitrary,
Masanari Iidae793c0f2014-09-04 23:44:36 +09002811 * this limitation is the cost for zerocopy sequential
Thomas Graf677e90e2005-06-23 20:59:51 -07002812 * reads of potentially non linear data.
2813 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002814 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002815 * at the moment, state->root_skb could be replaced with
2816 * a stack for this purpose.
2817 */
2818unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2819 struct skb_seq_state *st)
2820{
2821 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2822 skb_frag_t *frag;
2823
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002824 if (unlikely(abs_offset >= st->upper_offset)) {
2825 if (st->frag_data) {
2826 kunmap_atomic(st->frag_data);
2827 st->frag_data = NULL;
2828 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002829 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002830 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002831
2832next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002833 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002834
Thomas Chenault995b3372009-05-18 21:43:27 -07002835 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002836 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002837 return block_limit - abs_offset;
2838 }
2839
2840 if (st->frag_idx == 0 && !st->frag_data)
2841 st->stepped_offset += skb_headlen(st->cur_skb);
2842
2843 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2844 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002845 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002846
2847 if (abs_offset < block_limit) {
2848 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002849 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002850
2851 *data = (u8 *) st->frag_data + frag->page_offset +
2852 (abs_offset - st->stepped_offset);
2853
2854 return block_limit - abs_offset;
2855 }
2856
2857 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002858 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002859 st->frag_data = NULL;
2860 }
2861
2862 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002863 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002864 }
2865
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002866 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002867 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002868 st->frag_data = NULL;
2869 }
2870
David S. Miller21dc3302010-08-23 00:13:46 -07002871 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002872 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002873 st->frag_idx = 0;
2874 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002875 } else if (st->cur_skb->next) {
2876 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002877 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002878 goto next_skb;
2879 }
2880
2881 return 0;
2882}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002883EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002884
2885/**
2886 * skb_abort_seq_read - Abort a sequential read of skb data
2887 * @st: state variable
2888 *
2889 * Must be called if skb_seq_read() was not called until it
2890 * returned 0.
2891 */
2892void skb_abort_seq_read(struct skb_seq_state *st)
2893{
2894 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002895 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002896}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002897EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002898
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002899#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2900
2901static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2902 struct ts_config *conf,
2903 struct ts_state *state)
2904{
2905 return skb_seq_read(offset, text, TS_SKB_CB(state));
2906}
2907
2908static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2909{
2910 skb_abort_seq_read(TS_SKB_CB(state));
2911}
2912
2913/**
2914 * skb_find_text - Find a text pattern in skb data
2915 * @skb: the buffer to look in
2916 * @from: search offset
2917 * @to: search limit
2918 * @config: textsearch configuration
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002919 *
2920 * Finds a pattern in the skb data according to the specified
2921 * textsearch configuration. Use textsearch_next() to retrieve
2922 * subsequent occurrences of the pattern. Returns the offset
2923 * to the first occurrence or UINT_MAX if no match was found.
2924 */
2925unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
Bojan Prtvar059a2442015-02-22 11:46:35 +01002926 unsigned int to, struct ts_config *config)
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002927{
Bojan Prtvar059a2442015-02-22 11:46:35 +01002928 struct ts_state state;
Phil Oesterf72b9482006-06-26 00:00:57 -07002929 unsigned int ret;
2930
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002931 config->get_next_block = skb_ts_get_next_block;
2932 config->finish = skb_ts_finish;
2933
Bojan Prtvar059a2442015-02-22 11:46:35 +01002934 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(&state));
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002935
Bojan Prtvar059a2442015-02-22 11:46:35 +01002936 ret = textsearch_find(config, &state);
Phil Oesterf72b9482006-06-26 00:00:57 -07002937 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002938}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002939EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002940
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002941/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002942 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002943 * @sk: sock structure
Masanari Iidae793c0f2014-09-04 23:44:36 +09002944 * @skb: skb structure to be appended with user data.
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002945 * @getfrag: call back function to be used for getting the user data
2946 * @from: pointer to user message iov
2947 * @length: length of the iov message
2948 *
2949 * Description: This procedure append the user data in the fragment part
2950 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2951 */
2952int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002953 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002954 int len, int odd, struct sk_buff *skb),
2955 void *from, int length)
2956{
Eric Dumazetb2111722012-12-28 06:06:37 +00002957 int frg_cnt = skb_shinfo(skb)->nr_frags;
2958 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002959 int offset = 0;
2960 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002961 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002962
2963 do {
2964 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002965 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002966 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002967
Eric Dumazetb2111722012-12-28 06:06:37 +00002968 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002969 return -ENOMEM;
2970
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002971 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002972 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002973
Eric Dumazetb2111722012-12-28 06:06:37 +00002974 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2975 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002976 if (ret < 0)
2977 return -EFAULT;
2978
2979 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002980 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2981 copy);
2982 frg_cnt++;
2983 pfrag->offset += copy;
2984 get_page(pfrag->page);
2985
2986 skb->truesize += copy;
2987 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002988 skb->len += copy;
2989 skb->data_len += copy;
2990 offset += copy;
2991 length -= copy;
2992
2993 } while (length > 0);
2994
2995 return 0;
2996}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002997EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002998
Hannes Frederic Sowabe12a1f2015-05-21 16:59:58 +02002999int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
3000 int offset, size_t size)
3001{
3002 int i = skb_shinfo(skb)->nr_frags;
3003
3004 if (skb_can_coalesce(skb, i, page, offset)) {
3005 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
3006 } else if (i < MAX_SKB_FRAGS) {
3007 get_page(page);
3008 skb_fill_page_desc(skb, i, page, offset, size);
3009 } else {
3010 return -EMSGSIZE;
3011 }
3012
3013 return 0;
3014}
3015EXPORT_SYMBOL_GPL(skb_append_pagefrags);
3016
Herbert Xucbb042f2006-03-20 22:43:56 -08003017/**
3018 * skb_pull_rcsum - pull skb and update receive checksum
3019 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08003020 * @len: length of data pulled
3021 *
3022 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08003023 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07003024 * receive path processing instead of skb_pull unless you know
3025 * that the checksum difference is zero (e.g., a valid IP header)
3026 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08003027 */
3028unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
3029{
Pravin B Shelar31b33df2015-09-28 17:24:25 -07003030 unsigned char *data = skb->data;
3031
Herbert Xucbb042f2006-03-20 22:43:56 -08003032 BUG_ON(len > skb->len);
Pravin B Shelar31b33df2015-09-28 17:24:25 -07003033 __skb_pull(skb, len);
3034 skb_postpull_rcsum(skb, data, len);
3035 return skb->data;
Herbert Xucbb042f2006-03-20 22:43:56 -08003036}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08003037EXPORT_SYMBOL_GPL(skb_pull_rcsum);
3038
Herbert Xuf4c50d92006-06-22 03:02:40 -07003039/**
3040 * skb_segment - Perform protocol segmentation on skb.
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003041 * @head_skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003042 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07003043 *
3044 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07003045 * a pointer to the first in a list of new skbs for the segments.
3046 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07003047 */
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003048struct sk_buff *skb_segment(struct sk_buff *head_skb,
3049 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07003050{
3051 struct sk_buff *segs = NULL;
3052 struct sk_buff *tail = NULL;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003053 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003054 skb_frag_t *frag = skb_shinfo(head_skb)->frags;
3055 unsigned int mss = skb_shinfo(head_skb)->gso_size;
3056 unsigned int doffset = head_skb->data - skb_mac_header(head_skb);
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003057 struct sk_buff *frag_skb = head_skb;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003058 unsigned int offset = doffset;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003059 unsigned int tnl_hlen = skb_tnl_header_len(head_skb);
Alexander Duyck802ab552016-04-10 21:45:03 -04003060 unsigned int partial_segs = 0;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003061 unsigned int headroom;
Alexander Duyck802ab552016-04-10 21:45:03 -04003062 unsigned int len = head_skb->len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003063 __be16 proto;
Alexander Duyck36c98382016-05-02 09:38:18 -07003064 bool csum, sg;
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003065 int nfrags = skb_shinfo(head_skb)->nr_frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003066 int err = -ENOMEM;
3067 int i = 0;
3068 int pos;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003069 int dummy;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003070
Wei-Chun Chao5882a072014-06-08 23:48:54 -07003071 __skb_push(head_skb, doffset);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003072 proto = skb_network_protocol(head_skb, &dummy);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003073 if (unlikely(!proto))
3074 return ERR_PTR(-EINVAL);
3075
Alexander Duyck36c98382016-05-02 09:38:18 -07003076 sg = !!(features & NETIF_F_SG);
Alexander Duyckf245d072016-02-05 15:28:26 -08003077 csum = !!can_checksum_protocol(features, proto);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003078
Steffen Klassert07b26c92016-09-19 12:58:47 +02003079 if (sg && csum && (mss != GSO_BY_FRAGS)) {
3080 if (!(features & NETIF_F_GSO_PARTIAL)) {
3081 struct sk_buff *iter;
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003082 unsigned int frag_len;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003083
3084 if (!list_skb ||
3085 !net_gso_ok(features, skb_shinfo(head_skb)->gso_type))
3086 goto normal;
3087
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003088 /* If we get here then all the required
3089 * GSO features except frag_list are supported.
3090 * Try to split the SKB to multiple GSO SKBs
3091 * with no frag_list.
3092 * Currently we can do that only when the buffers don't
3093 * have a linear part and all the buffers except
3094 * the last are of the same length.
Steffen Klassert07b26c92016-09-19 12:58:47 +02003095 */
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003096 frag_len = list_skb->len;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003097 skb_walk_frags(head_skb, iter) {
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003098 if (frag_len != iter->len && iter->next)
3099 goto normal;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003100 if (skb_headlen(iter))
3101 goto normal;
3102
3103 len -= iter->len;
3104 }
Ilan Tayari7ab89b1762017-04-19 21:26:07 +03003105
3106 if (len != frag_len)
3107 goto normal;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003108 }
3109
3110 /* GSO partial only requires that we trim off any excess that
3111 * doesn't fit into an MSS sized block, so take care of that
3112 * now.
3113 */
Alexander Duyck802ab552016-04-10 21:45:03 -04003114 partial_segs = len / mss;
Alexander Duyckd7fb5a82016-05-02 09:38:12 -07003115 if (partial_segs > 1)
3116 mss *= partial_segs;
3117 else
3118 partial_segs = 0;
Alexander Duyck802ab552016-04-10 21:45:03 -04003119 }
3120
Steffen Klassert07b26c92016-09-19 12:58:47 +02003121normal:
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003122 headroom = skb_headroom(head_skb);
3123 pos = skb_headlen(head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003124
3125 do {
3126 struct sk_buff *nskb;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003127 skb_frag_t *nskb_frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003128 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003129 int size;
3130
Marcelo Ricardo Leitner3953c462016-06-02 15:05:40 -03003131 if (unlikely(mss == GSO_BY_FRAGS)) {
3132 len = list_skb->len;
3133 } else {
3134 len = head_skb->len - offset;
3135 if (len > mss)
3136 len = mss;
3137 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003138
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003139 hsize = skb_headlen(head_skb) - offset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003140 if (hsize < 0)
3141 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08003142 if (hsize > len || !sg)
3143 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003144
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003145 if (!hsize && i >= nfrags && skb_headlen(list_skb) &&
3146 (skb_headlen(list_skb) == len || sg)) {
3147 BUG_ON(skb_headlen(list_skb) > len);
Herbert Xu89319d382008-12-15 23:26:06 -08003148
Herbert Xu9d8506c2013-11-21 11:10:04 -08003149 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003150 nfrags = skb_shinfo(list_skb)->nr_frags;
3151 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003152 frag_skb = list_skb;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003153 pos += skb_headlen(list_skb);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003154
3155 while (pos < offset + len) {
3156 BUG_ON(i >= nfrags);
3157
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003158 size = skb_frag_size(frag);
Herbert Xu9d8506c2013-11-21 11:10:04 -08003159 if (pos + size > offset + len)
3160 break;
3161
3162 i++;
3163 pos += size;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003164 frag++;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003165 }
3166
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003167 nskb = skb_clone(list_skb, GFP_ATOMIC);
3168 list_skb = list_skb->next;
Herbert Xu89319d382008-12-15 23:26:06 -08003169
3170 if (unlikely(!nskb))
3171 goto err;
3172
Herbert Xu9d8506c2013-11-21 11:10:04 -08003173 if (unlikely(pskb_trim(nskb, len))) {
3174 kfree_skb(nskb);
3175 goto err;
3176 }
3177
Alexander Duyckec47ea82012-05-04 14:26:56 +00003178 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08003179 if (skb_cow_head(nskb, doffset + headroom)) {
3180 kfree_skb(nskb);
3181 goto err;
3182 }
3183
Alexander Duyckec47ea82012-05-04 14:26:56 +00003184 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08003185 skb_release_head_state(nskb);
3186 __skb_push(nskb, doffset);
3187 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07003188 nskb = __alloc_skb(hsize + doffset + headroom,
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003189 GFP_ATOMIC, skb_alloc_rx_flag(head_skb),
Mel Gormanc93bdd02012-07-31 16:44:19 -07003190 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08003191
3192 if (unlikely(!nskb))
3193 goto err;
3194
3195 skb_reserve(nskb, headroom);
3196 __skb_put(nskb, doffset);
3197 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003198
3199 if (segs)
3200 tail->next = nskb;
3201 else
3202 segs = nskb;
3203 tail = nskb;
3204
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003205 __copy_skb_header(nskb, head_skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003206
Eric Dumazet030737b2013-10-19 11:42:54 -07003207 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Vlad Yasevichfcdfe3a2014-07-31 10:33:06 -04003208 skb_reset_mac_len(nskb);
Pravin B Shelar68c33162013-02-14 14:02:41 +00003209
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003210 skb_copy_from_linear_data_offset(head_skb, -tnl_hlen,
Pravin B Shelar68c33162013-02-14 14:02:41 +00003211 nskb->data - tnl_hlen,
3212 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08003213
Herbert Xu9d8506c2013-11-21 11:10:04 -08003214 if (nskb->len == len + doffset)
Simon Horman1cdbcb72013-05-19 15:46:49 +00003215 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08003216
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003217 if (!sg) {
3218 if (!nskb->remcsum_offload)
3219 nskb->ip_summed = CHECKSUM_NONE;
Alexander Duyck76443452016-02-05 15:27:37 -08003220 SKB_GSO_CB(nskb)->csum =
3221 skb_copy_and_csum_bits(head_skb, offset,
3222 skb_put(nskb, len),
3223 len, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003224 SKB_GSO_CB(nskb)->csum_start =
Alexander Duyck76443452016-02-05 15:27:37 -08003225 skb_headroom(nskb) + doffset;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003226 continue;
3227 }
3228
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003229 nskb_frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003230
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003231 skb_copy_from_linear_data_offset(head_skb, offset,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03003232 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003233
Willem de Bruijnfcfb53c2017-06-08 11:35:03 -04003234 skb_shinfo(nskb)->tx_flags |= skb_shinfo(head_skb)->tx_flags &
3235 SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00003236
Herbert Xu9d8506c2013-11-21 11:10:04 -08003237 while (pos < offset + len) {
3238 if (i >= nfrags) {
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003239 BUG_ON(skb_headlen(list_skb));
Herbert Xu9d8506c2013-11-21 11:10:04 -08003240
3241 i = 0;
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003242 nfrags = skb_shinfo(list_skb)->nr_frags;
3243 frag = skb_shinfo(list_skb)->frags;
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003244 frag_skb = list_skb;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003245
3246 BUG_ON(!nfrags);
3247
Michael S. Tsirkin1a4ceda2014-03-10 19:27:59 +02003248 list_skb = list_skb->next;
Herbert Xu9d8506c2013-11-21 11:10:04 -08003249 }
3250
3251 if (unlikely(skb_shinfo(nskb)->nr_frags >=
3252 MAX_SKB_FRAGS)) {
3253 net_warn_ratelimited(
3254 "skb_segment: too many frags: %u %u\n",
3255 pos, mss);
3256 goto err;
3257 }
3258
Michael S. Tsirkin1fd819e2014-03-10 19:28:08 +02003259 if (unlikely(skb_orphan_frags(frag_skb, GFP_ATOMIC)))
3260 goto err;
3261
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003262 *nskb_frag = *frag;
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003263 __skb_frag_ref(nskb_frag);
3264 size = skb_frag_size(nskb_frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003265
3266 if (pos < offset) {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003267 nskb_frag->page_offset += offset - pos;
3268 skb_frag_size_sub(nskb_frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003269 }
3270
Herbert Xu89319d382008-12-15 23:26:06 -08003271 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003272
3273 if (pos + size <= offset + len) {
3274 i++;
Michael S. Tsirkin4e1beba2014-03-10 18:29:14 +02003275 frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003276 pos += size;
3277 } else {
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003278 skb_frag_size_sub(nskb_frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08003279 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003280 }
3281
Michael S. Tsirkin8cb19902014-03-10 18:29:04 +02003282 nskb_frag++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07003283 }
3284
Herbert Xu89319d382008-12-15 23:26:06 -08003285skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07003286 nskb->data_len = len - hsize;
3287 nskb->len += nskb->data_len;
3288 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003289
Simon Horman1cdbcb72013-05-19 15:46:49 +00003290perform_csum_check:
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003291 if (!csum) {
Alexander Duyckddff00d2016-02-05 15:27:55 -08003292 if (skb_has_shared_frag(nskb)) {
3293 err = __skb_linearize(nskb);
3294 if (err)
3295 goto err;
3296 }
Alexander Duyck7fbeffe2016-02-05 15:27:43 -08003297 if (!nskb->remcsum_offload)
3298 nskb->ip_summed = CHECKSUM_NONE;
Alexander Duyck76443452016-02-05 15:27:37 -08003299 SKB_GSO_CB(nskb)->csum =
3300 skb_checksum(nskb, doffset,
3301 nskb->len - doffset, 0);
Tom Herbert7e2b10c2014-06-04 17:20:02 -07003302 SKB_GSO_CB(nskb)->csum_start =
Alexander Duyck76443452016-02-05 15:27:37 -08003303 skb_headroom(nskb) + doffset;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003304 }
Michael S. Tsirkindf5771f2014-03-10 18:29:19 +02003305 } while ((offset += len) < head_skb->len);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003306
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003307 /* Some callers want to get the end of the list.
3308 * Put it in segs->prev to avoid walking the list.
3309 * (see validate_xmit_skb_list() for example)
3310 */
3311 segs->prev = tail;
Toshiaki Makita432c8562014-10-27 10:30:51 -07003312
Alexander Duyck802ab552016-04-10 21:45:03 -04003313 if (partial_segs) {
Steffen Klassert07b26c92016-09-19 12:58:47 +02003314 struct sk_buff *iter;
Alexander Duyck802ab552016-04-10 21:45:03 -04003315 int type = skb_shinfo(head_skb)->gso_type;
Steffen Klassert07b26c92016-09-19 12:58:47 +02003316 unsigned short gso_size = skb_shinfo(head_skb)->gso_size;
Alexander Duyck802ab552016-04-10 21:45:03 -04003317
3318 /* Update type to add partial and then remove dodgy if set */
Steffen Klassert07b26c92016-09-19 12:58:47 +02003319 type |= (features & NETIF_F_GSO_PARTIAL) / NETIF_F_GSO_PARTIAL * SKB_GSO_PARTIAL;
Alexander Duyck802ab552016-04-10 21:45:03 -04003320 type &= ~SKB_GSO_DODGY;
3321
3322 /* Update GSO info and prepare to start updating headers on
3323 * our way back down the stack of protocols.
3324 */
Steffen Klassert07b26c92016-09-19 12:58:47 +02003325 for (iter = segs; iter; iter = iter->next) {
3326 skb_shinfo(iter)->gso_size = gso_size;
3327 skb_shinfo(iter)->gso_segs = partial_segs;
3328 skb_shinfo(iter)->gso_type = type;
3329 SKB_GSO_CB(iter)->data_offset = skb_headroom(iter) + doffset;
3330 }
3331
3332 if (tail->len - doffset <= gso_size)
3333 skb_shinfo(tail)->gso_size = 0;
3334 else if (tail != segs)
3335 skb_shinfo(tail)->gso_segs = DIV_ROUND_UP(tail->len - doffset, gso_size);
Alexander Duyck802ab552016-04-10 21:45:03 -04003336 }
3337
Toshiaki Makita432c8562014-10-27 10:30:51 -07003338 /* Following permits correct backpressure, for protocols
3339 * using skb_set_owner_w().
3340 * Idea is to tranfert ownership from head_skb to last segment.
3341 */
3342 if (head_skb->destructor == sock_wfree) {
3343 swap(tail->truesize, head_skb->truesize);
3344 swap(tail->destructor, head_skb->destructor);
3345 swap(tail->sk, head_skb->sk);
3346 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07003347 return segs;
3348
3349err:
Eric Dumazet289dccb2013-12-20 14:29:08 -08003350 kfree_skb_list(segs);
Herbert Xuf4c50d92006-06-22 03:02:40 -07003351 return ERR_PTR(err);
3352}
Herbert Xuf4c50d92006-06-22 03:02:40 -07003353EXPORT_SYMBOL_GPL(skb_segment);
3354
Herbert Xu71d93b32008-12-15 23:42:33 -08003355int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
3356{
Eric Dumazet8a291112013-10-08 09:02:23 -07003357 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00003358 unsigned int offset = skb_gro_offset(skb);
3359 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003360 unsigned int len = skb_gro_len(skb);
Eric Dumazet58025e42015-03-05 13:47:48 -08003361 struct sk_buff *lp, *p = *head;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003362 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003363
Eric Dumazet8a291112013-10-08 09:02:23 -07003364 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08003365 return -E2BIG;
3366
Eric Dumazet29e98242014-05-16 11:34:37 -07003367 lp = NAPI_GRO_CB(p)->last;
Eric Dumazet8a291112013-10-08 09:02:23 -07003368 pinfo = skb_shinfo(lp);
3369
3370 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00003371 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003372 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003373 int i = skbinfo->nr_frags;
3374 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00003375
Herbert Xu66e92fc2009-05-26 18:50:32 +00003376 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003377 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00003378
Eric Dumazet8a291112013-10-08 09:02:23 -07003379 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003380 pinfo->nr_frags = nr_frags;
3381 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08003382
Herbert Xu9aaa1562009-05-26 18:50:33 +00003383 frag = pinfo->frags + nr_frags;
3384 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00003385 do {
3386 *--frag = *--frag2;
3387 } while (--i);
3388
3389 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003390 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00003391
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003392 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00003393 delta_truesize = skb->truesize -
3394 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003395
Herbert Xuf5572062009-01-14 20:40:03 -08003396 skb->truesize -= skb->data_len;
3397 skb->len -= skb->data_len;
3398 skb->data_len = 0;
3399
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003400 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08003401 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003402 } else if (skb->head_frag) {
3403 int nr_frags = pinfo->nr_frags;
3404 skb_frag_t *frag = pinfo->frags + nr_frags;
3405 struct page *page = virt_to_head_page(skb->head);
3406 unsigned int first_size = headlen - offset;
3407 unsigned int first_offset;
3408
3409 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07003410 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00003411
3412 first_offset = skb->data -
3413 (unsigned char *)page_address(page) +
3414 offset;
3415
3416 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3417
3418 frag->page.p = page;
3419 frag->page_offset = first_offset;
3420 skb_frag_size_set(frag, first_size);
3421
3422 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3423 /* We dont need to clear skbinfo->nr_frags here */
3424
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003425 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003426 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3427 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003428 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003429
3430merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003431 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003432 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003433 unsigned int eat = offset - headlen;
3434
3435 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003436 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003437 skb->data_len -= eat;
3438 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003439 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003440 }
3441
Herbert Xu67147ba2009-05-26 18:50:22 +00003442 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003443
Eric Dumazet29e98242014-05-16 11:34:37 -07003444 if (NAPI_GRO_CB(p)->last == p)
Eric Dumazet8a291112013-10-08 09:02:23 -07003445 skb_shinfo(p)->frag_list = skb;
3446 else
3447 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003448 NAPI_GRO_CB(p)->last = skb;
Eric Dumazetf4a775d2014-09-22 16:29:32 -07003449 __skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003450 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003451
Herbert Xu5d38a072009-01-04 16:13:40 -08003452done:
3453 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003454 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003455 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003456 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003457 if (lp != p) {
3458 lp->data_len += len;
3459 lp->truesize += delta_truesize;
3460 lp->len += len;
3461 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003462 NAPI_GRO_CB(skb)->same_flow = 1;
3463 return 0;
3464}
Marcelo Ricardo Leitner57c056502016-06-02 15:05:39 -03003465EXPORT_SYMBOL_GPL(skb_gro_receive);
Herbert Xu71d93b32008-12-15 23:42:33 -08003466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467void __init skb_init(void)
3468{
3469 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3470 sizeof(struct sk_buff),
3471 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003472 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003473 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003474 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
Eric Dumazetd0bf4a92014-09-29 13:29:15 -07003475 sizeof(struct sk_buff_fclones),
David S. Millerd179cd12005-08-17 14:57:30 -07003476 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003477 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003478 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479}
3480
David S. Miller51c739d2007-10-30 21:29:29 -07003481static int
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003482__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len,
3483 unsigned int recursion_level)
David Howells716ea3a2007-04-02 20:19:53 -07003484{
David S. Miller1a028e52007-04-27 15:21:23 -07003485 int start = skb_headlen(skb);
3486 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003487 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003488 int elt = 0;
3489
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003490 if (unlikely(recursion_level >= 24))
3491 return -EMSGSIZE;
3492
David Howells716ea3a2007-04-02 20:19:53 -07003493 if (copy > 0) {
3494 if (copy > len)
3495 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003496 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003497 elt++;
3498 if ((len -= copy) == 0)
3499 return elt;
3500 offset += copy;
3501 }
3502
3503 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003504 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003505
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003506 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003507
Eric Dumazet9e903e02011-10-18 21:00:24 +00003508 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003509 if ((copy = end - offset) > 0) {
3510 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003511 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
3512 return -EMSGSIZE;
David Howells716ea3a2007-04-02 20:19:53 -07003513
3514 if (copy > len)
3515 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003516 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003517 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003518 elt++;
3519 if (!(len -= copy))
3520 return elt;
3521 offset += copy;
3522 }
David S. Miller1a028e52007-04-27 15:21:23 -07003523 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003524 }
3525
David S. Millerfbb398a2009-06-09 00:18:59 -07003526 skb_walk_frags(skb, frag_iter) {
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003527 int end, ret;
David Howells716ea3a2007-04-02 20:19:53 -07003528
David S. Millerfbb398a2009-06-09 00:18:59 -07003529 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003530
David S. Millerfbb398a2009-06-09 00:18:59 -07003531 end = start + frag_iter->len;
3532 if ((copy = end - offset) > 0) {
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003533 if (unlikely(elt && sg_is_last(&sg[elt - 1])))
3534 return -EMSGSIZE;
3535
David S. Millerfbb398a2009-06-09 00:18:59 -07003536 if (copy > len)
3537 copy = len;
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003538 ret = __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3539 copy, recursion_level + 1);
3540 if (unlikely(ret < 0))
3541 return ret;
3542 elt += ret;
David S. Millerfbb398a2009-06-09 00:18:59 -07003543 if ((len -= copy) == 0)
3544 return elt;
3545 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003546 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003547 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003548 }
3549 BUG_ON(len);
3550 return elt;
3551}
3552
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003553/**
3554 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3555 * @skb: Socket buffer containing the buffers to be mapped
3556 * @sg: The scatter-gather list to map into
3557 * @offset: The offset into the buffer's contents to start mapping
3558 * @len: Length of buffer space to be mapped
3559 *
3560 * Fill the specified scatter-gather list with mappings/pointers into a
3561 * region of the buffer space attached to a socket buffer. Returns either
3562 * the number of scatterlist items used, or -EMSGSIZE if the contents
3563 * could not fit.
3564 */
3565int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3566{
3567 int nsg = __skb_to_sgvec(skb, sg, offset, len, 0);
3568
3569 if (nsg <= 0)
3570 return nsg;
3571
3572 sg_mark_end(&sg[nsg - 1]);
3573
3574 return nsg;
3575}
3576EXPORT_SYMBOL_GPL(skb_to_sgvec);
3577
Fan Du25a91d82014-01-18 09:54:23 +08003578/* As compared with skb_to_sgvec, skb_to_sgvec_nomark only map skb to given
3579 * sglist without mark the sg which contain last skb data as the end.
3580 * So the caller can mannipulate sg list as will when padding new data after
3581 * the first call without calling sg_unmark_end to expend sg list.
3582 *
3583 * Scenario to use skb_to_sgvec_nomark:
3584 * 1. sg_init_table
3585 * 2. skb_to_sgvec_nomark(payload1)
3586 * 3. skb_to_sgvec_nomark(payload2)
3587 *
3588 * This is equivalent to:
3589 * 1. sg_init_table
3590 * 2. skb_to_sgvec(payload1)
3591 * 3. sg_unmark_end
3592 * 4. skb_to_sgvec(payload2)
3593 *
3594 * When mapping mutilple payload conditionally, skb_to_sgvec_nomark
3595 * is more preferable.
3596 */
3597int skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
3598 int offset, int len)
3599{
Jason A. Donenfeld2cd3aa52017-06-04 04:16:22 +02003600 return __skb_to_sgvec(skb, sg, offset, len, 0);
Fan Du25a91d82014-01-18 09:54:23 +08003601}
3602EXPORT_SYMBOL_GPL(skb_to_sgvec_nomark);
3603
David S. Miller51c739d2007-10-30 21:29:29 -07003604
David S. Miller51c739d2007-10-30 21:29:29 -07003605
David Howells716ea3a2007-04-02 20:19:53 -07003606/**
3607 * skb_cow_data - Check that a socket buffer's data buffers are writable
3608 * @skb: The socket buffer to check.
3609 * @tailbits: Amount of trailing space to be added
3610 * @trailer: Returned pointer to the skb where the @tailbits space begins
3611 *
3612 * Make sure that the data buffers attached to a socket buffer are
3613 * writable. If they are not, private copies are made of the data buffers
3614 * and the socket buffer is set to use these instead.
3615 *
3616 * If @tailbits is given, make sure that there is space to write @tailbits
3617 * bytes of data beyond current end of socket buffer. @trailer will be
3618 * set to point to the skb in which this space begins.
3619 *
3620 * The number of scatterlist elements required to completely map the
3621 * COW'd and extended socket buffer will be returned.
3622 */
3623int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3624{
3625 int copyflag;
3626 int elt;
3627 struct sk_buff *skb1, **skb_p;
3628
3629 /* If skb is cloned or its head is paged, reallocate
3630 * head pulling out all the pages (pages are considered not writable
3631 * at the moment even if they are anonymous).
3632 */
3633 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3634 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3635 return -ENOMEM;
3636
3637 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003638 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003639 /* A little of trouble, not enough of space for trailer.
3640 * This should not happen, when stack is tuned to generate
3641 * good frames. OK, on miss we reallocate and reserve even more
3642 * space, 128 bytes is fair. */
3643
3644 if (skb_tailroom(skb) < tailbits &&
3645 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3646 return -ENOMEM;
3647
3648 /* Voila! */
3649 *trailer = skb;
3650 return 1;
3651 }
3652
3653 /* Misery. We are in troubles, going to mincer fragments... */
3654
3655 elt = 1;
3656 skb_p = &skb_shinfo(skb)->frag_list;
3657 copyflag = 0;
3658
3659 while ((skb1 = *skb_p) != NULL) {
3660 int ntail = 0;
3661
3662 /* The fragment is partially pulled by someone,
3663 * this can happen on input. Copy it and everything
3664 * after it. */
3665
3666 if (skb_shared(skb1))
3667 copyflag = 1;
3668
3669 /* If the skb is the last, worry about trailer. */
3670
3671 if (skb1->next == NULL && tailbits) {
3672 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003673 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003674 skb_tailroom(skb1) < tailbits)
3675 ntail = tailbits + 128;
3676 }
3677
3678 if (copyflag ||
3679 skb_cloned(skb1) ||
3680 ntail ||
3681 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003682 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003683 struct sk_buff *skb2;
3684
3685 /* Fuck, we are miserable poor guys... */
3686 if (ntail == 0)
3687 skb2 = skb_copy(skb1, GFP_ATOMIC);
3688 else
3689 skb2 = skb_copy_expand(skb1,
3690 skb_headroom(skb1),
3691 ntail,
3692 GFP_ATOMIC);
3693 if (unlikely(skb2 == NULL))
3694 return -ENOMEM;
3695
3696 if (skb1->sk)
3697 skb_set_owner_w(skb2, skb1->sk);
3698
3699 /* Looking around. Are we still alive?
3700 * OK, link new skb, drop old one */
3701
3702 skb2->next = skb1->next;
3703 *skb_p = skb2;
3704 kfree_skb(skb1);
3705 skb1 = skb2;
3706 }
3707 elt++;
3708 *trailer = skb1;
3709 skb_p = &skb1->next;
3710 }
3711
3712 return elt;
3713}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003714EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003715
Eric Dumazetb1faf562010-05-31 23:44:05 -07003716static void sock_rmem_free(struct sk_buff *skb)
3717{
3718 struct sock *sk = skb->sk;
3719
3720 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3721}
3722
3723/*
3724 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3725 */
3726int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3727{
3728 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003729 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003730 return -ENOMEM;
3731
3732 skb_orphan(skb);
3733 skb->sk = sk;
3734 skb->destructor = sock_rmem_free;
3735 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3736
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003737 /* before exiting rcu section, make sure dst is refcounted */
3738 skb_dst_force(skb);
3739
Eric Dumazetb1faf562010-05-31 23:44:05 -07003740 skb_queue_tail(&sk->sk_error_queue, skb);
3741 if (!sock_flag(sk, SOCK_DEAD))
Vinicius Costa Gomesd5862b02018-03-14 13:32:09 -07003742 sk->sk_error_report(sk);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003743 return 0;
3744}
3745EXPORT_SYMBOL(sock_queue_err_skb);
3746
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003747struct sk_buff *sock_dequeue_err_skb(struct sock *sk)
3748{
3749 struct sk_buff_head *q = &sk->sk_error_queue;
3750 struct sk_buff *skb, *skb_next;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003751 unsigned long flags;
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003752 int err = 0;
3753
Eric Dumazet997d5c32015-02-18 05:47:55 -08003754 spin_lock_irqsave(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003755 skb = __skb_dequeue(q);
3756 if (skb && (skb_next = skb_peek(q)))
3757 err = SKB_EXT_ERR(skb_next)->ee.ee_errno;
Eric Dumazet997d5c32015-02-18 05:47:55 -08003758 spin_unlock_irqrestore(&q->lock, flags);
Willem de Bruijn364a9e92014-08-31 21:30:27 -04003759
3760 sk->sk_err = err;
3761 if (err)
3762 sk->sk_error_report(sk);
3763
3764 return skb;
3765}
3766EXPORT_SYMBOL(sock_dequeue_err_skb);
3767
Alexander Duyckcab41c42014-09-10 18:05:26 -04003768/**
3769 * skb_clone_sk - create clone of skb, and take reference to socket
3770 * @skb: the skb to clone
3771 *
3772 * This function creates a clone of a buffer that holds a reference on
3773 * sk_refcnt. Buffers created via this function are meant to be
3774 * returned using sock_queue_err_skb, or free via kfree_skb.
3775 *
3776 * When passing buffers allocated with this function to sock_queue_err_skb
3777 * it is necessary to wrap the call with sock_hold/sock_put in order to
3778 * prevent the socket from being released prior to being enqueued on
3779 * the sk_error_queue.
3780 */
Alexander Duyck62bccb82014-09-04 13:31:35 -04003781struct sk_buff *skb_clone_sk(struct sk_buff *skb)
3782{
3783 struct sock *sk = skb->sk;
3784 struct sk_buff *clone;
3785
3786 if (!sk || !atomic_inc_not_zero(&sk->sk_refcnt))
3787 return NULL;
3788
3789 clone = skb_clone(skb, GFP_ATOMIC);
3790 if (!clone) {
3791 sock_put(sk);
3792 return NULL;
3793 }
3794
3795 clone->sk = sk;
3796 clone->destructor = sock_efree;
3797
3798 return clone;
3799}
3800EXPORT_SYMBOL(skb_clone_sk);
3801
Alexander Duyck37846ef2014-09-04 13:31:10 -04003802static void __skb_complete_tx_timestamp(struct sk_buff *skb,
3803 struct sock *sk,
3804 int tstype)
Patrick Ohlyac45f602009-02-12 05:03:37 +00003805{
Patrick Ohlyac45f602009-02-12 05:03:37 +00003806 struct sock_exterr_skb *serr;
Patrick Ohlyac45f602009-02-12 05:03:37 +00003807 int err;
3808
Patrick Ohlyac45f602009-02-12 05:03:37 +00003809 serr = SKB_EXT_ERR(skb);
3810 memset(serr, 0, sizeof(*serr));
3811 serr->ee.ee_errno = ENOMSG;
3812 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003813 serr->ee.ee_info = tstype;
Willem de Bruijn8c04e2a2017-04-12 19:24:35 -04003814 serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0;
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003815 if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) {
Willem de Bruijn09c2d252014-08-04 22:11:47 -04003816 serr->ee.ee_data = skb_shinfo(skb)->tskey;
WANG Congac5cc972015-12-16 23:39:04 -08003817 if (sk->sk_protocol == IPPROTO_TCP &&
3818 sk->sk_type == SOCK_STREAM)
Willem de Bruijn4ed2d762014-08-04 22:11:49 -04003819 serr->ee.ee_data -= sk->sk_tskey;
3820 }
Eric Dumazet29030372010-05-29 00:20:48 -07003821
Patrick Ohlyac45f602009-02-12 05:03:37 +00003822 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003823
Patrick Ohlyac45f602009-02-12 05:03:37 +00003824 if (err)
3825 kfree_skb(skb);
3826}
Alexander Duyck37846ef2014-09-04 13:31:10 -04003827
Willem de Bruijnb245be12015-01-30 13:29:32 -05003828static bool skb_may_tx_timestamp(struct sock *sk, bool tsonly)
3829{
3830 bool ret;
3831
3832 if (likely(sysctl_tstamp_allow_data || tsonly))
3833 return true;
3834
3835 read_lock_bh(&sk->sk_callback_lock);
3836 ret = sk->sk_socket && sk->sk_socket->file &&
3837 file_ns_capable(sk->sk_socket->file, &init_user_ns, CAP_NET_RAW);
3838 read_unlock_bh(&sk->sk_callback_lock);
3839 return ret;
3840}
3841
Alexander Duyck37846ef2014-09-04 13:31:10 -04003842void skb_complete_tx_timestamp(struct sk_buff *skb,
3843 struct skb_shared_hwtstamps *hwtstamps)
3844{
3845 struct sock *sk = skb->sk;
3846
Willem de Bruijnb245be12015-01-30 13:29:32 -05003847 if (!skb_may_tx_timestamp(sk, false))
Willem de Bruijn58f6ebb2017-12-13 14:41:06 -05003848 goto err;
Willem de Bruijnb245be12015-01-30 13:29:32 -05003849
Eric Dumazetf157cc12017-03-03 21:01:03 -08003850 /* Take a reference to prevent skb_orphan() from freeing the socket,
3851 * but only if the socket refcount is not zero.
3852 */
3853 if (likely(atomic_inc_not_zero(&sk->sk_refcnt))) {
3854 *skb_hwtstamps(skb) = *hwtstamps;
3855 __skb_complete_tx_timestamp(skb, sk, SCM_TSTAMP_SND);
3856 sock_put(sk);
Willem de Bruijn58f6ebb2017-12-13 14:41:06 -05003857 return;
Eric Dumazetf157cc12017-03-03 21:01:03 -08003858 }
Willem de Bruijn58f6ebb2017-12-13 14:41:06 -05003859
3860err:
3861 kfree_skb(skb);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003862}
3863EXPORT_SYMBOL_GPL(skb_complete_tx_timestamp);
3864
3865void __skb_tstamp_tx(struct sk_buff *orig_skb,
3866 struct skb_shared_hwtstamps *hwtstamps,
3867 struct sock *sk, int tstype)
3868{
3869 struct sk_buff *skb;
Willem de Bruijn3a8dd972015-03-11 15:43:55 -04003870 bool tsonly;
Alexander Duyck37846ef2014-09-04 13:31:10 -04003871
Willem de Bruijn3a8dd972015-03-11 15:43:55 -04003872 if (!sk)
3873 return;
3874
3875 tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY;
3876 if (!skb_may_tx_timestamp(sk, tsonly))
Alexander Duyck37846ef2014-09-04 13:31:10 -04003877 return;
3878
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003879 if (tsonly)
3880 skb = alloc_skb(0, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003881 else
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003882 skb = skb_clone(orig_skb, GFP_ATOMIC);
Alexander Duyck37846ef2014-09-04 13:31:10 -04003883 if (!skb)
3884 return;
3885
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003886 if (tsonly) {
Willem de Bruijnfcfb53c2017-06-08 11:35:03 -04003887 skb_shinfo(skb)->tx_flags |= skb_shinfo(orig_skb)->tx_flags &
3888 SKBTX_ANY_TSTAMP;
Willem de Bruijn49ca0d82015-01-30 13:29:31 -05003889 skb_shinfo(skb)->tskey = skb_shinfo(orig_skb)->tskey;
3890 }
3891
3892 if (hwtstamps)
3893 *skb_hwtstamps(skb) = *hwtstamps;
3894 else
3895 skb->tstamp = ktime_get_real();
3896
Alexander Duyck37846ef2014-09-04 13:31:10 -04003897 __skb_complete_tx_timestamp(skb, sk, tstype);
3898}
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003899EXPORT_SYMBOL_GPL(__skb_tstamp_tx);
3900
3901void skb_tstamp_tx(struct sk_buff *orig_skb,
3902 struct skb_shared_hwtstamps *hwtstamps)
3903{
3904 return __skb_tstamp_tx(orig_skb, hwtstamps, orig_skb->sk,
3905 SCM_TSTAMP_SND);
3906}
Patrick Ohlyac45f602009-02-12 05:03:37 +00003907EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3908
Johannes Berg6e3e9392011-11-09 10:15:42 +01003909void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3910{
3911 struct sock *sk = skb->sk;
3912 struct sock_exterr_skb *serr;
Eric Dumazet98fa3d22017-03-03 21:01:02 -08003913 int err = 1;
Johannes Berg6e3e9392011-11-09 10:15:42 +01003914
3915 skb->wifi_acked_valid = 1;
3916 skb->wifi_acked = acked;
3917
3918 serr = SKB_EXT_ERR(skb);
3919 memset(serr, 0, sizeof(*serr));
3920 serr->ee.ee_errno = ENOMSG;
3921 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3922
Eric Dumazet98fa3d22017-03-03 21:01:02 -08003923 /* Take a reference to prevent skb_orphan() from freeing the socket,
3924 * but only if the socket refcount is not zero.
3925 */
3926 if (likely(atomic_inc_not_zero(&sk->sk_refcnt))) {
3927 err = sock_queue_err_skb(sk, skb);
3928 sock_put(sk);
3929 }
Johannes Berg6e3e9392011-11-09 10:15:42 +01003930 if (err)
3931 kfree_skb(skb);
3932}
3933EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3934
Rusty Russellf35d9d82008-02-04 23:49:54 -05003935/**
3936 * skb_partial_csum_set - set up and verify partial csum values for packet
3937 * @skb: the skb to set
3938 * @start: the number of bytes after skb->data to start checksumming.
3939 * @off: the offset from start to place the checksum.
3940 *
3941 * For untrusted partially-checksummed packets, we need to make sure the values
3942 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3943 *
3944 * This function checks and sets those values and skb->ip_summed: if this
3945 * returns false you should drop the packet.
3946 */
3947bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3948{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003949 if (unlikely(start > skb_headlen(skb)) ||
3950 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003951 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3952 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003953 return false;
3954 }
3955 skb->ip_summed = CHECKSUM_PARTIAL;
3956 skb->csum_start = skb_headroom(skb) + start;
3957 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003958 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003959 return true;
3960}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003961EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003962
Paul Durranted1f50c2014-01-09 10:02:46 +00003963static int skb_maybe_pull_tail(struct sk_buff *skb, unsigned int len,
3964 unsigned int max)
3965{
3966 if (skb_headlen(skb) >= len)
3967 return 0;
3968
3969 /* If we need to pullup then pullup to the max, so we
3970 * won't need to do it again.
3971 */
3972 if (max > skb->len)
3973 max = skb->len;
3974
3975 if (__pskb_pull_tail(skb, max - skb_headlen(skb)) == NULL)
3976 return -ENOMEM;
3977
3978 if (skb_headlen(skb) < len)
3979 return -EPROTO;
3980
3981 return 0;
3982}
3983
Jan Beulichf9708b42014-03-11 13:56:05 +00003984#define MAX_TCP_HDR_LEN (15 * 4)
3985
3986static __sum16 *skb_checksum_setup_ip(struct sk_buff *skb,
3987 typeof(IPPROTO_IP) proto,
3988 unsigned int off)
3989{
3990 switch (proto) {
3991 int err;
3992
3993 case IPPROTO_TCP:
3994 err = skb_maybe_pull_tail(skb, off + sizeof(struct tcphdr),
3995 off + MAX_TCP_HDR_LEN);
3996 if (!err && !skb_partial_csum_set(skb, off,
3997 offsetof(struct tcphdr,
3998 check)))
3999 err = -EPROTO;
4000 return err ? ERR_PTR(err) : &tcp_hdr(skb)->check;
4001
4002 case IPPROTO_UDP:
4003 err = skb_maybe_pull_tail(skb, off + sizeof(struct udphdr),
4004 off + sizeof(struct udphdr));
4005 if (!err && !skb_partial_csum_set(skb, off,
4006 offsetof(struct udphdr,
4007 check)))
4008 err = -EPROTO;
4009 return err ? ERR_PTR(err) : &udp_hdr(skb)->check;
4010 }
4011
4012 return ERR_PTR(-EPROTO);
4013}
4014
Paul Durranted1f50c2014-01-09 10:02:46 +00004015/* This value should be large enough to cover a tagged ethernet header plus
4016 * maximally sized IP and TCP or UDP headers.
4017 */
4018#define MAX_IP_HDR_LEN 128
4019
Jan Beulichf9708b42014-03-11 13:56:05 +00004020static int skb_checksum_setup_ipv4(struct sk_buff *skb, bool recalculate)
Paul Durranted1f50c2014-01-09 10:02:46 +00004021{
4022 unsigned int off;
4023 bool fragment;
Jan Beulichf9708b42014-03-11 13:56:05 +00004024 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00004025 int err;
4026
4027 fragment = false;
4028
4029 err = skb_maybe_pull_tail(skb,
4030 sizeof(struct iphdr),
4031 MAX_IP_HDR_LEN);
4032 if (err < 0)
4033 goto out;
4034
4035 if (ip_hdr(skb)->frag_off & htons(IP_OFFSET | IP_MF))
4036 fragment = true;
4037
4038 off = ip_hdrlen(skb);
4039
4040 err = -EPROTO;
4041
4042 if (fragment)
4043 goto out;
4044
Jan Beulichf9708b42014-03-11 13:56:05 +00004045 csum = skb_checksum_setup_ip(skb, ip_hdr(skb)->protocol, off);
4046 if (IS_ERR(csum))
4047 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00004048
Jan Beulichf9708b42014-03-11 13:56:05 +00004049 if (recalculate)
4050 *csum = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
4051 ip_hdr(skb)->daddr,
4052 skb->len - off,
4053 ip_hdr(skb)->protocol, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00004054 err = 0;
4055
4056out:
4057 return err;
4058}
4059
4060/* This value should be large enough to cover a tagged ethernet header plus
4061 * an IPv6 header, all options, and a maximal TCP or UDP header.
4062 */
4063#define MAX_IPV6_HDR_LEN 256
4064
4065#define OPT_HDR(type, skb, off) \
4066 (type *)(skb_network_header(skb) + (off))
4067
4068static int skb_checksum_setup_ipv6(struct sk_buff *skb, bool recalculate)
4069{
4070 int err;
4071 u8 nexthdr;
4072 unsigned int off;
4073 unsigned int len;
4074 bool fragment;
4075 bool done;
Jan Beulichf9708b42014-03-11 13:56:05 +00004076 __sum16 *csum;
Paul Durranted1f50c2014-01-09 10:02:46 +00004077
4078 fragment = false;
4079 done = false;
4080
4081 off = sizeof(struct ipv6hdr);
4082
4083 err = skb_maybe_pull_tail(skb, off, MAX_IPV6_HDR_LEN);
4084 if (err < 0)
4085 goto out;
4086
4087 nexthdr = ipv6_hdr(skb)->nexthdr;
4088
4089 len = sizeof(struct ipv6hdr) + ntohs(ipv6_hdr(skb)->payload_len);
4090 while (off <= len && !done) {
4091 switch (nexthdr) {
4092 case IPPROTO_DSTOPTS:
4093 case IPPROTO_HOPOPTS:
4094 case IPPROTO_ROUTING: {
4095 struct ipv6_opt_hdr *hp;
4096
4097 err = skb_maybe_pull_tail(skb,
4098 off +
4099 sizeof(struct ipv6_opt_hdr),
4100 MAX_IPV6_HDR_LEN);
4101 if (err < 0)
4102 goto out;
4103
4104 hp = OPT_HDR(struct ipv6_opt_hdr, skb, off);
4105 nexthdr = hp->nexthdr;
4106 off += ipv6_optlen(hp);
4107 break;
4108 }
4109 case IPPROTO_AH: {
4110 struct ip_auth_hdr *hp;
4111
4112 err = skb_maybe_pull_tail(skb,
4113 off +
4114 sizeof(struct ip_auth_hdr),
4115 MAX_IPV6_HDR_LEN);
4116 if (err < 0)
4117 goto out;
4118
4119 hp = OPT_HDR(struct ip_auth_hdr, skb, off);
4120 nexthdr = hp->nexthdr;
4121 off += ipv6_authlen(hp);
4122 break;
4123 }
4124 case IPPROTO_FRAGMENT: {
4125 struct frag_hdr *hp;
4126
4127 err = skb_maybe_pull_tail(skb,
4128 off +
4129 sizeof(struct frag_hdr),
4130 MAX_IPV6_HDR_LEN);
4131 if (err < 0)
4132 goto out;
4133
4134 hp = OPT_HDR(struct frag_hdr, skb, off);
4135
4136 if (hp->frag_off & htons(IP6_OFFSET | IP6_MF))
4137 fragment = true;
4138
4139 nexthdr = hp->nexthdr;
4140 off += sizeof(struct frag_hdr);
4141 break;
4142 }
4143 default:
4144 done = true;
4145 break;
4146 }
4147 }
4148
4149 err = -EPROTO;
4150
4151 if (!done || fragment)
4152 goto out;
4153
Jan Beulichf9708b42014-03-11 13:56:05 +00004154 csum = skb_checksum_setup_ip(skb, nexthdr, off);
4155 if (IS_ERR(csum))
4156 return PTR_ERR(csum);
Paul Durranted1f50c2014-01-09 10:02:46 +00004157
Jan Beulichf9708b42014-03-11 13:56:05 +00004158 if (recalculate)
4159 *csum = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
4160 &ipv6_hdr(skb)->daddr,
4161 skb->len - off, nexthdr, 0);
Paul Durranted1f50c2014-01-09 10:02:46 +00004162 err = 0;
4163
4164out:
4165 return err;
4166}
4167
4168/**
4169 * skb_checksum_setup - set up partial checksum offset
4170 * @skb: the skb to set up
4171 * @recalculate: if true the pseudo-header checksum will be recalculated
4172 */
4173int skb_checksum_setup(struct sk_buff *skb, bool recalculate)
4174{
4175 int err;
4176
4177 switch (skb->protocol) {
4178 case htons(ETH_P_IP):
Jan Beulichf9708b42014-03-11 13:56:05 +00004179 err = skb_checksum_setup_ipv4(skb, recalculate);
Paul Durranted1f50c2014-01-09 10:02:46 +00004180 break;
4181
4182 case htons(ETH_P_IPV6):
4183 err = skb_checksum_setup_ipv6(skb, recalculate);
4184 break;
4185
4186 default:
4187 err = -EPROTO;
4188 break;
4189 }
4190
4191 return err;
4192}
4193EXPORT_SYMBOL(skb_checksum_setup);
4194
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004195/**
4196 * skb_checksum_maybe_trim - maybe trims the given skb
4197 * @skb: the skb to check
4198 * @transport_len: the data length beyond the network header
4199 *
4200 * Checks whether the given skb has data beyond the given transport length.
4201 * If so, returns a cloned skb trimmed to this transport length.
4202 * Otherwise returns the provided skb. Returns NULL in error cases
4203 * (e.g. transport_len exceeds skb length or out-of-memory).
4204 *
Linus Lüssinga5169932015-08-13 05:54:07 +02004205 * Caller needs to set the skb transport header and free any returned skb if it
4206 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004207 */
4208static struct sk_buff *skb_checksum_maybe_trim(struct sk_buff *skb,
4209 unsigned int transport_len)
4210{
4211 struct sk_buff *skb_chk;
4212 unsigned int len = skb_transport_offset(skb) + transport_len;
4213 int ret;
4214
Linus Lüssinga5169932015-08-13 05:54:07 +02004215 if (skb->len < len)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004216 return NULL;
Linus Lüssinga5169932015-08-13 05:54:07 +02004217 else if (skb->len == len)
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004218 return skb;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004219
4220 skb_chk = skb_clone(skb, GFP_ATOMIC);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004221 if (!skb_chk)
4222 return NULL;
4223
4224 ret = pskb_trim_rcsum(skb_chk, len);
4225 if (ret) {
4226 kfree_skb(skb_chk);
4227 return NULL;
4228 }
4229
4230 return skb_chk;
4231}
4232
4233/**
4234 * skb_checksum_trimmed - validate checksum of an skb
4235 * @skb: the skb to check
4236 * @transport_len: the data length beyond the network header
4237 * @skb_chkf: checksum function to use
4238 *
4239 * Applies the given checksum function skb_chkf to the provided skb.
4240 * Returns a checked and maybe trimmed skb. Returns NULL on error.
4241 *
4242 * If the skb has data beyond the given transport length, then a
4243 * trimmed & cloned skb is checked and returned.
4244 *
Linus Lüssinga5169932015-08-13 05:54:07 +02004245 * Caller needs to set the skb transport header and free any returned skb if it
4246 * differs from the provided skb.
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004247 */
4248struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
4249 unsigned int transport_len,
4250 __sum16(*skb_chkf)(struct sk_buff *skb))
4251{
4252 struct sk_buff *skb_chk;
4253 unsigned int offset = skb_transport_offset(skb);
Linus Lüssingfcba67c2015-05-05 00:19:35 +02004254 __sum16 ret;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004255
4256 skb_chk = skb_checksum_maybe_trim(skb, transport_len);
4257 if (!skb_chk)
Linus Lüssinga5169932015-08-13 05:54:07 +02004258 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004259
Linus Lüssinga5169932015-08-13 05:54:07 +02004260 if (!pskb_may_pull(skb_chk, offset))
4261 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004262
Linus Lüssing9b368812016-02-24 04:21:42 +01004263 skb_pull_rcsum(skb_chk, offset);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004264 ret = skb_chkf(skb_chk);
Linus Lüssing9b368812016-02-24 04:21:42 +01004265 skb_push_rcsum(skb_chk, offset);
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004266
Linus Lüssinga5169932015-08-13 05:54:07 +02004267 if (ret)
4268 goto err;
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004269
4270 return skb_chk;
Linus Lüssinga5169932015-08-13 05:54:07 +02004271
4272err:
4273 if (skb_chk && skb_chk != skb)
4274 kfree_skb(skb_chk);
4275
4276 return NULL;
4277
Linus Lüssing9afd85c2015-05-02 14:01:07 +02004278}
4279EXPORT_SYMBOL(skb_checksum_trimmed);
4280
Ben Hutchings4497b072008-06-19 16:22:28 -07004281void __skb_warn_lro_forwarding(const struct sk_buff *skb)
4282{
Joe Perchese87cc472012-05-13 21:56:26 +00004283 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
4284 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07004285}
Ben Hutchings4497b072008-06-19 16:22:28 -07004286EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004287
4288void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
4289{
Eric Dumazet3d861f62012-10-22 09:03:40 +00004290 if (head_stolen) {
4291 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004292 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004293 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004294 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00004295 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004296}
4297EXPORT_SYMBOL(kfree_skb_partial);
4298
4299/**
4300 * skb_try_coalesce - try to merge skb to prior one
4301 * @to: prior buffer
4302 * @from: buffer to add
4303 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00004304 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004305 */
4306bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
4307 bool *fragstolen, int *delta_truesize)
4308{
4309 int i, delta, len = from->len;
4310
4311 *fragstolen = false;
4312
4313 if (skb_cloned(to))
4314 return false;
4315
4316 if (len <= skb_tailroom(to)) {
Eric Dumazete93a0432014-09-15 04:19:52 -07004317 if (len)
4318 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004319 *delta_truesize = 0;
4320 return true;
4321 }
4322
4323 if (skb_has_frag_list(to) || skb_has_frag_list(from))
4324 return false;
4325
4326 if (skb_headlen(from) != 0) {
4327 struct page *page;
4328 unsigned int offset;
4329
4330 if (skb_shinfo(to)->nr_frags +
4331 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
4332 return false;
4333
4334 if (skb_head_is_locked(from))
4335 return false;
4336
4337 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
4338
4339 page = virt_to_head_page(from->head);
4340 offset = from->data - (unsigned char *)page_address(page);
4341
4342 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
4343 page, offset, skb_headlen(from));
4344 *fragstolen = true;
4345 } else {
4346 if (skb_shinfo(to)->nr_frags +
4347 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
4348 return false;
4349
Weiping Panf4b549a2012-09-28 20:15:30 +00004350 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004351 }
4352
4353 WARN_ON_ONCE(delta < len);
4354
4355 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
4356 skb_shinfo(from)->frags,
4357 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
4358 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
4359
4360 if (!skb_cloned(from))
4361 skb_shinfo(from)->nr_frags = 0;
4362
Li RongQing8ea853f2012-09-18 16:53:21 +00004363 /* if the skb is not cloned this does nothing
4364 * since we set nr_frags to 0.
4365 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00004366 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
4367 skb_frag_ref(from, i);
4368
4369 to->truesize += delta;
4370 to->len += len;
4371 to->data_len += len;
4372
4373 *delta_truesize = delta;
4374 return true;
4375}
4376EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004377
4378/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004379 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004380 *
4381 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004382 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004383 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004384 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
4385 * into/from a tunnel. Some information have to be cleared during these
4386 * operations.
4387 * skb_scrub_packet can also be used to clean a skb before injecting it in
4388 * another namespace (@xnet == true). We have to clear all information in the
4389 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004390 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02004391void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004392{
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004393 skb->tstamp.tv64 = 0;
4394 skb->pkt_type = PACKET_HOST;
4395 skb->skb_iif = 0;
WANG Cong60ff7462014-05-04 16:39:18 -07004396 skb->ignore_df = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004397 skb_dst_drop(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004398 secpath_reset(skb);
4399 nf_reset(skb);
4400 nf_reset_trace(skb);
Herbert Xu213dd742015-04-16 09:03:27 +08004401
4402 if (!xnet)
4403 return;
4404
Ye Yinafd9fa62017-10-26 16:57:05 +08004405 ipvs_reset(skb);
Herbert Xu213dd742015-04-16 09:03:27 +08004406 skb_orphan(skb);
4407 skb->mark = 0;
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02004408}
4409EXPORT_SYMBOL_GPL(skb_scrub_packet);
Florian Westphalde960aa2014-01-26 10:58:16 +01004410
4411/**
4412 * skb_gso_transport_seglen - Return length of individual segments of a gso packet
4413 *
4414 * @skb: GSO skb
4415 *
4416 * skb_gso_transport_seglen is used to determine the real size of the
4417 * individual segments, including Layer4 headers (TCP/UDP).
4418 *
4419 * The MAC/L2 or network (IP, IPv6) headers are not accounted for.
4420 */
4421unsigned int skb_gso_transport_seglen(const struct sk_buff *skb)
4422{
4423 const struct skb_shared_info *shinfo = skb_shinfo(skb);
Florian Westphalf993bc22014-10-20 13:49:18 +02004424 unsigned int thlen = 0;
Florian Westphalde960aa2014-01-26 10:58:16 +01004425
Florian Westphalf993bc22014-10-20 13:49:18 +02004426 if (skb->encapsulation) {
4427 thlen = skb_inner_transport_header(skb) -
4428 skb_transport_header(skb);
Florian Westphal6d39d582014-04-09 10:28:50 +02004429
Florian Westphalf993bc22014-10-20 13:49:18 +02004430 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
4431 thlen += inner_tcp_hdrlen(skb);
4432 } else if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4433 thlen = tcp_hdrlen(skb);
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03004434 } else if (unlikely(shinfo->gso_type & SKB_GSO_SCTP)) {
4435 thlen = sizeof(struct sctphdr);
Florian Westphalf993bc22014-10-20 13:49:18 +02004436 }
Florian Westphal6d39d582014-04-09 10:28:50 +02004437 /* UFO sets gso_size to the size of the fragmentation
4438 * payload, i.e. the size of the L4 (UDP) header is already
4439 * accounted for.
4440 */
Florian Westphalf993bc22014-10-20 13:49:18 +02004441 return thlen + shinfo->gso_size;
Florian Westphalde960aa2014-01-26 10:58:16 +01004442}
4443EXPORT_SYMBOL_GPL(skb_gso_transport_seglen);
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004444
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -03004445/**
4446 * skb_gso_validate_mtu - Return in case such skb fits a given MTU
4447 *
4448 * @skb: GSO skb
David S. Miller76f21b92016-06-03 22:56:28 -07004449 * @mtu: MTU to validate against
Marcelo Ricardo Leitnerae7ef812016-06-02 15:05:41 -03004450 *
4451 * skb_gso_validate_mtu validates if a given skb will fit a wanted MTU
4452 * once split.
4453 */
4454bool skb_gso_validate_mtu(const struct sk_buff *skb, unsigned int mtu)
4455{
4456 const struct skb_shared_info *shinfo = skb_shinfo(skb);
4457 const struct sk_buff *iter;
4458 unsigned int hlen;
4459
4460 hlen = skb_gso_network_seglen(skb);
4461
4462 if (shinfo->gso_size != GSO_BY_FRAGS)
4463 return hlen <= mtu;
4464
4465 /* Undo this so we can re-use header sizes */
4466 hlen -= GSO_BY_FRAGS;
4467
4468 skb_walk_frags(skb, iter) {
4469 if (hlen + skb_headlen(iter) > mtu)
4470 return false;
4471 }
4472
4473 return true;
4474}
4475EXPORT_SYMBOL_GPL(skb_gso_validate_mtu);
4476
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004477static struct sk_buff *skb_reorder_vlan_header(struct sk_buff *skb)
4478{
Toshiaki Makita58df2892018-03-13 14:51:27 +09004479 int mac_len;
4480
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004481 if (skb_cow(skb, skb_headroom(skb)) < 0) {
4482 kfree_skb(skb);
4483 return NULL;
4484 }
4485
Toshiaki Makita58df2892018-03-13 14:51:27 +09004486 mac_len = skb->data - skb_mac_header(skb);
Toshiaki Makitab389e042018-03-29 19:05:29 +09004487 if (likely(mac_len > VLAN_HLEN + ETH_TLEN)) {
4488 memmove(skb_mac_header(skb) + VLAN_HLEN, skb_mac_header(skb),
4489 mac_len - VLAN_HLEN - ETH_TLEN);
4490 }
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004491 skb->mac_header += VLAN_HLEN;
4492 return skb;
4493}
4494
4495struct sk_buff *skb_vlan_untag(struct sk_buff *skb)
4496{
4497 struct vlan_hdr *vhdr;
4498 u16 vlan_tci;
4499
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004500 if (unlikely(skb_vlan_tag_present(skb))) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004501 /* vlan_tci is already set-up so leave this for another time */
4502 return skb;
4503 }
4504
4505 skb = skb_share_check(skb, GFP_ATOMIC);
4506 if (unlikely(!skb))
4507 goto err_free;
4508
4509 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
4510 goto err_free;
4511
4512 vhdr = (struct vlan_hdr *)skb->data;
4513 vlan_tci = ntohs(vhdr->h_vlan_TCI);
4514 __vlan_hwaccel_put_tag(skb, skb->protocol, vlan_tci);
4515
4516 skb_pull_rcsum(skb, VLAN_HLEN);
4517 vlan_set_encap_proto(skb, vhdr);
4518
4519 skb = skb_reorder_vlan_header(skb);
4520 if (unlikely(!skb))
4521 goto err_free;
4522
4523 skb_reset_network_header(skb);
4524 skb_reset_transport_header(skb);
4525 skb_reset_mac_len(skb);
4526
4527 return skb;
4528
4529err_free:
4530 kfree_skb(skb);
4531 return NULL;
4532}
4533EXPORT_SYMBOL(skb_vlan_untag);
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004534
Jiri Pirkoe2195122014-11-19 14:05:01 +01004535int skb_ensure_writable(struct sk_buff *skb, int write_len)
4536{
4537 if (!pskb_may_pull(skb, write_len))
4538 return -ENOMEM;
4539
4540 if (!skb_cloned(skb) || skb_clone_writable(skb, write_len))
4541 return 0;
4542
4543 return pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
4544}
4545EXPORT_SYMBOL(skb_ensure_writable);
4546
Shmulik Ladkanibfca4c52016-09-19 19:11:09 +03004547/* remove VLAN header from packet and update csum accordingly.
4548 * expects a non skb_vlan_tag_present skb with a vlan tag payload
4549 */
4550int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci)
Jiri Pirko93515d52014-11-19 14:05:02 +01004551{
4552 struct vlan_hdr *vhdr;
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004553 int offset = skb->data - skb_mac_header(skb);
Jiri Pirko93515d52014-11-19 14:05:02 +01004554 int err;
4555
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004556 if (WARN_ONCE(offset,
4557 "__skb_vlan_pop got skb with skb->data not at mac header (offset %d)\n",
4558 offset)) {
4559 return -EINVAL;
4560 }
4561
Jiri Pirko93515d52014-11-19 14:05:02 +01004562 err = skb_ensure_writable(skb, VLAN_ETH_HLEN);
4563 if (unlikely(err))
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004564 return err;
Jiri Pirko93515d52014-11-19 14:05:02 +01004565
4566 skb_postpull_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
4567
4568 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
4569 *vlan_tci = ntohs(vhdr->h_vlan_TCI);
4570
4571 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
4572 __skb_pull(skb, VLAN_HLEN);
4573
4574 vlan_set_encap_proto(skb, vhdr);
4575 skb->mac_header += VLAN_HLEN;
4576
4577 if (skb_network_offset(skb) < ETH_HLEN)
4578 skb_set_network_header(skb, ETH_HLEN);
4579
4580 skb_reset_mac_len(skb);
Jiri Pirko93515d52014-11-19 14:05:02 +01004581
4582 return err;
4583}
Shmulik Ladkanibfca4c52016-09-19 19:11:09 +03004584EXPORT_SYMBOL(__skb_vlan_pop);
Jiri Pirko93515d52014-11-19 14:05:02 +01004585
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004586/* Pop a vlan tag either from hwaccel or from payload.
4587 * Expects skb->data at mac header.
4588 */
Jiri Pirko93515d52014-11-19 14:05:02 +01004589int skb_vlan_pop(struct sk_buff *skb)
4590{
4591 u16 vlan_tci;
4592 __be16 vlan_proto;
4593 int err;
4594
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004595 if (likely(skb_vlan_tag_present(skb))) {
Jiri Pirko93515d52014-11-19 14:05:02 +01004596 skb->vlan_tci = 0;
4597 } else {
Shmulik Ladkaniecf4ee42016-09-20 12:48:37 +03004598 if (unlikely(!eth_type_vlan(skb->protocol)))
Jiri Pirko93515d52014-11-19 14:05:02 +01004599 return 0;
4600
4601 err = __skb_vlan_pop(skb, &vlan_tci);
4602 if (err)
4603 return err;
4604 }
4605 /* move next vlan tag to hw accel tag */
Shmulik Ladkaniecf4ee42016-09-20 12:48:37 +03004606 if (likely(!eth_type_vlan(skb->protocol)))
Jiri Pirko93515d52014-11-19 14:05:02 +01004607 return 0;
4608
4609 vlan_proto = skb->protocol;
4610 err = __skb_vlan_pop(skb, &vlan_tci);
4611 if (unlikely(err))
4612 return err;
4613
4614 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4615 return 0;
4616}
4617EXPORT_SYMBOL(skb_vlan_pop);
4618
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004619/* Push a vlan tag either into hwaccel or into payload (if hwaccel tag present).
4620 * Expects skb->data at mac header.
4621 */
Jiri Pirko93515d52014-11-19 14:05:02 +01004622int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci)
4623{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004624 if (skb_vlan_tag_present(skb)) {
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004625 int offset = skb->data - skb_mac_header(skb);
Jiri Pirko93515d52014-11-19 14:05:02 +01004626 int err;
4627
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004628 if (WARN_ONCE(offset,
4629 "skb_vlan_push got skb with skb->data not at mac header (offset %d)\n",
4630 offset)) {
4631 return -EINVAL;
4632 }
4633
Jiri Pirko93515d52014-11-19 14:05:02 +01004634 err = __vlan_insert_tag(skb, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004635 skb_vlan_tag_get(skb));
Shmulik Ladkanib6a79202016-09-29 12:10:41 +03004636 if (err)
Jiri Pirko93515d52014-11-19 14:05:02 +01004637 return err;
Daniel Borkmann9241e2d2016-04-16 02:27:58 +02004638
Jiri Pirko93515d52014-11-19 14:05:02 +01004639 skb->protocol = skb->vlan_proto;
4640 skb->mac_len += VLAN_HLEN;
Jiri Pirko93515d52014-11-19 14:05:02 +01004641
Daniel Borkmann6b83d282016-02-20 00:29:30 +01004642 skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN);
Jiri Pirko93515d52014-11-19 14:05:02 +01004643 }
4644 __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci);
4645 return 0;
4646}
4647EXPORT_SYMBOL(skb_vlan_push);
4648
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004649/**
4650 * alloc_skb_with_frags - allocate skb with page frags
4651 *
Masanari Iidade3f0d02014-10-09 12:58:08 +09004652 * @header_len: size of linear part
4653 * @data_len: needed length in frags
4654 * @max_page_order: max page order desired.
4655 * @errcode: pointer to error code if any
4656 * @gfp_mask: allocation mask
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004657 *
4658 * This can be used to allocate a paged skb, given a maximal order for frags.
4659 */
4660struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
4661 unsigned long data_len,
4662 int max_page_order,
4663 int *errcode,
4664 gfp_t gfp_mask)
4665{
4666 int npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
4667 unsigned long chunk;
4668 struct sk_buff *skb;
4669 struct page *page;
4670 gfp_t gfp_head;
4671 int i;
4672
4673 *errcode = -EMSGSIZE;
4674 /* Note this test could be relaxed, if we succeed to allocate
4675 * high order pages...
4676 */
4677 if (npages > MAX_SKB_FRAGS)
4678 return NULL;
4679
4680 gfp_head = gfp_mask;
Mel Gormand0164ad2015-11-06 16:28:21 -08004681 if (gfp_head & __GFP_DIRECT_RECLAIM)
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004682 gfp_head |= __GFP_REPEAT;
4683
4684 *errcode = -ENOBUFS;
4685 skb = alloc_skb(header_len, gfp_head);
4686 if (!skb)
4687 return NULL;
4688
4689 skb->truesize += npages << PAGE_SHIFT;
4690
4691 for (i = 0; npages > 0; i++) {
4692 int order = max_page_order;
4693
4694 while (order) {
4695 if (npages >= 1 << order) {
Mel Gormand0164ad2015-11-06 16:28:21 -08004696 page = alloc_pages((gfp_mask & ~__GFP_DIRECT_RECLAIM) |
Eric Dumazet2e4e4412014-09-17 04:49:49 -07004697 __GFP_COMP |
4698 __GFP_NOWARN |
4699 __GFP_NORETRY,
4700 order);
4701 if (page)
4702 goto fill_page;
4703 /* Do not retry other high order allocations */
4704 order = 1;
4705 max_page_order = 0;
4706 }
4707 order--;
4708 }
4709 page = alloc_page(gfp_mask);
4710 if (!page)
4711 goto failure;
4712fill_page:
4713 chunk = min_t(unsigned long, data_len,
4714 PAGE_SIZE << order);
4715 skb_fill_page_desc(skb, i, page, 0, chunk);
4716 data_len -= chunk;
4717 npages -= 1 << order;
4718 }
4719 return skb;
4720
4721failure:
4722 kfree_skb(skb);
4723 return NULL;
4724}
4725EXPORT_SYMBOL(alloc_skb_with_frags);
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004726
4727/* carve out the first off bytes from skb when off < headlen */
4728static int pskb_carve_inside_header(struct sk_buff *skb, const u32 off,
4729 const int headlen, gfp_t gfp_mask)
4730{
4731 int i;
4732 int size = skb_end_offset(skb);
4733 int new_hlen = headlen - off;
4734 u8 *data;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004735
4736 size = SKB_DATA_ALIGN(size);
4737
4738 if (skb_pfmemalloc(skb))
4739 gfp_mask |= __GFP_MEMALLOC;
4740 data = kmalloc_reserve(size +
4741 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
4742 gfp_mask, NUMA_NO_NODE, NULL);
4743 if (!data)
4744 return -ENOMEM;
4745
4746 size = SKB_WITH_OVERHEAD(ksize(data));
4747
4748 /* Copy real data, and all frags */
4749 skb_copy_from_linear_data_offset(skb, off, data, new_hlen);
4750 skb->len -= off;
4751
4752 memcpy((struct skb_shared_info *)(data + size),
4753 skb_shinfo(skb),
4754 offsetof(struct skb_shared_info,
4755 frags[skb_shinfo(skb)->nr_frags]));
4756 if (skb_cloned(skb)) {
4757 /* drop the old head gracefully */
4758 if (skb_orphan_frags(skb, gfp_mask)) {
4759 kfree(data);
4760 return -ENOMEM;
4761 }
4762 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
4763 skb_frag_ref(skb, i);
4764 if (skb_has_frag_list(skb))
4765 skb_clone_fraglist(skb);
4766 skb_release_data(skb);
4767 } else {
4768 /* we can reuse existing recount- all we did was
4769 * relocate values
4770 */
4771 skb_free_head(skb);
4772 }
4773
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004774 skb->head = data;
4775 skb->data = data;
4776 skb->head_frag = 0;
4777#ifdef NET_SKBUFF_DATA_USES_OFFSET
4778 skb->end = size;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004779#else
4780 skb->end = skb->head + size;
4781#endif
4782 skb_set_tail_pointer(skb, skb_headlen(skb));
4783 skb_headers_offset_update(skb, 0);
4784 skb->cloned = 0;
4785 skb->hdr_len = 0;
4786 skb->nohdr = 0;
4787 atomic_set(&skb_shinfo(skb)->dataref, 1);
4788
4789 return 0;
4790}
4791
4792static int pskb_carve(struct sk_buff *skb, const u32 off, gfp_t gfp);
4793
4794/* carve out the first eat bytes from skb's frag_list. May recurse into
4795 * pskb_carve()
4796 */
4797static int pskb_carve_frag_list(struct sk_buff *skb,
4798 struct skb_shared_info *shinfo, int eat,
4799 gfp_t gfp_mask)
4800{
4801 struct sk_buff *list = shinfo->frag_list;
4802 struct sk_buff *clone = NULL;
4803 struct sk_buff *insp = NULL;
4804
4805 do {
4806 if (!list) {
4807 pr_err("Not enough bytes to eat. Want %d\n", eat);
4808 return -EFAULT;
4809 }
4810 if (list->len <= eat) {
4811 /* Eaten as whole. */
4812 eat -= list->len;
4813 list = list->next;
4814 insp = list;
4815 } else {
4816 /* Eaten partially. */
4817 if (skb_shared(list)) {
4818 clone = skb_clone(list, gfp_mask);
4819 if (!clone)
4820 return -ENOMEM;
4821 insp = list->next;
4822 list = clone;
4823 } else {
4824 /* This may be pulled without problems. */
4825 insp = list;
4826 }
4827 if (pskb_carve(list, eat, gfp_mask) < 0) {
4828 kfree_skb(clone);
4829 return -ENOMEM;
4830 }
4831 break;
4832 }
4833 } while (eat);
4834
4835 /* Free pulled out fragments. */
4836 while ((list = shinfo->frag_list) != insp) {
4837 shinfo->frag_list = list->next;
4838 kfree_skb(list);
4839 }
4840 /* And insert new clone at head. */
4841 if (clone) {
4842 clone->next = list;
4843 shinfo->frag_list = clone;
4844 }
4845 return 0;
4846}
4847
4848/* carve off first len bytes from skb. Split line (off) is in the
4849 * non-linear part of skb
4850 */
4851static int pskb_carve_inside_nonlinear(struct sk_buff *skb, const u32 off,
4852 int pos, gfp_t gfp_mask)
4853{
4854 int i, k = 0;
4855 int size = skb_end_offset(skb);
4856 u8 *data;
4857 const int nfrags = skb_shinfo(skb)->nr_frags;
4858 struct skb_shared_info *shinfo;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004859
4860 size = SKB_DATA_ALIGN(size);
4861
4862 if (skb_pfmemalloc(skb))
4863 gfp_mask |= __GFP_MEMALLOC;
4864 data = kmalloc_reserve(size +
4865 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
4866 gfp_mask, NUMA_NO_NODE, NULL);
4867 if (!data)
4868 return -ENOMEM;
4869
4870 size = SKB_WITH_OVERHEAD(ksize(data));
4871
4872 memcpy((struct skb_shared_info *)(data + size),
4873 skb_shinfo(skb), offsetof(struct skb_shared_info,
4874 frags[skb_shinfo(skb)->nr_frags]));
4875 if (skb_orphan_frags(skb, gfp_mask)) {
4876 kfree(data);
4877 return -ENOMEM;
4878 }
4879 shinfo = (struct skb_shared_info *)(data + size);
4880 for (i = 0; i < nfrags; i++) {
4881 int fsize = skb_frag_size(&skb_shinfo(skb)->frags[i]);
4882
4883 if (pos + fsize > off) {
4884 shinfo->frags[k] = skb_shinfo(skb)->frags[i];
4885
4886 if (pos < off) {
4887 /* Split frag.
4888 * We have two variants in this case:
4889 * 1. Move all the frag to the second
4890 * part, if it is possible. F.e.
4891 * this approach is mandatory for TUX,
4892 * where splitting is expensive.
4893 * 2. Split is accurately. We make this.
4894 */
4895 shinfo->frags[0].page_offset += off - pos;
4896 skb_frag_size_sub(&shinfo->frags[0], off - pos);
4897 }
4898 skb_frag_ref(skb, i);
4899 k++;
4900 }
4901 pos += fsize;
4902 }
4903 shinfo->nr_frags = k;
4904 if (skb_has_frag_list(skb))
4905 skb_clone_fraglist(skb);
4906
4907 if (k == 0) {
4908 /* split line is in frag list */
4909 pskb_carve_frag_list(skb, shinfo, off - pos, gfp_mask);
4910 }
4911 skb_release_data(skb);
4912
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004913 skb->head = data;
4914 skb->head_frag = 0;
4915 skb->data = data;
4916#ifdef NET_SKBUFF_DATA_USES_OFFSET
4917 skb->end = size;
Sowmini Varadhan6fa01cc2016-04-22 18:36:35 -07004918#else
4919 skb->end = skb->head + size;
4920#endif
4921 skb_reset_tail_pointer(skb);
4922 skb_headers_offset_update(skb, 0);
4923 skb->cloned = 0;
4924 skb->hdr_len = 0;
4925 skb->nohdr = 0;
4926 skb->len -= off;
4927 skb->data_len = skb->len;
4928 atomic_set(&skb_shinfo(skb)->dataref, 1);
4929 return 0;
4930}
4931
4932/* remove len bytes from the beginning of the skb */
4933static int pskb_carve(struct sk_buff *skb, const u32 len, gfp_t gfp)
4934{
4935 int headlen = skb_headlen(skb);
4936
4937 if (len < headlen)
4938 return pskb_carve_inside_header(skb, len, headlen, gfp);
4939 else
4940 return pskb_carve_inside_nonlinear(skb, len, headlen, gfp);
4941}
4942
4943/* Extract to_copy bytes starting at off from skb, and return this in
4944 * a new skb
4945 */
4946struct sk_buff *pskb_extract(struct sk_buff *skb, int off,
4947 int to_copy, gfp_t gfp)
4948{
4949 struct sk_buff *clone = skb_clone(skb, gfp);
4950
4951 if (!clone)
4952 return NULL;
4953
4954 if (pskb_carve(clone, off, gfp) < 0 ||
4955 pskb_trim(clone, to_copy)) {
4956 kfree_skb(clone);
4957 return NULL;
4958 }
4959 return clone;
4960}
4961EXPORT_SYMBOL(pskb_extract);