blob: 20e02d2605ecb2f10f5f74ab6f00cbd8fb852615 [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>
50#include <linux/netdevice.h>
51#ifdef CONFIG_NET_CLS_ACT
52#include <net/pkt_sched.h>
53#endif
54#include <linux/string.h>
55#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080056#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/cache.h>
58#include <linux/rtnetlink.h>
59#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070060#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000061#include <linux/errqueue.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070062#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <net/protocol.h>
65#include <net/dst.h>
66#include <net/sock.h>
67#include <net/checksum.h>
68#include <net/xfrm.h>
69
70#include <asm/uaccess.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040071#include <trace/events/skb.h>
Eric Dumazet51c56b02012-04-05 11:35:15 +020072#include <linux/highmem.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040073
Eric Dumazetd7e88832012-04-30 08:10:34 +000074struct kmem_cache *skbuff_head_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080075static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jens Axboe9c55e012007-11-06 23:30:13 -080077static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
78 struct pipe_buffer *buf)
79{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080080 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080081}
82
83static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
84 struct pipe_buffer *buf)
85{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080086 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080087}
88
89static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
90 struct pipe_buffer *buf)
91{
92 return 1;
93}
94
95
96/* Pipe buffer operations for a socket. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -080097static const struct pipe_buf_operations sock_pipe_buf_ops = {
Jens Axboe9c55e012007-11-06 23:30:13 -080098 .can_merge = 0,
99 .map = generic_pipe_buf_map,
100 .unmap = generic_pipe_buf_unmap,
101 .confirm = generic_pipe_buf_confirm,
102 .release = sock_pipe_buf_release,
103 .steal = sock_pipe_buf_steal,
104 .get = sock_pipe_buf_get,
105};
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/**
Jean Sacrenf05de732013-02-11 13:30:38 +0000108 * skb_panic - private function for out-of-line support
109 * @skb: buffer
110 * @sz: size
111 * @addr: address
James Hogan99d58512013-02-13 11:20:27 +0000112 * @msg: skb_over_panic or skb_under_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
Jean Sacrenf05de732013-02-11 13:30:38 +0000114 * Out-of-line support for skb_put() and skb_push().
115 * Called via the wrapper skb_over_panic() or skb_under_panic().
116 * Keep out of line to prevent kernel bloat.
117 * __builtin_return_address is not used because it is not always reliable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Jean Sacrenf05de732013-02-11 13:30:38 +0000119static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
James Hogan99d58512013-02-13 11:20:27 +0000120 const char msg[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Joe Perchese005d192012-05-16 19:58:40 +0000122 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 +0000123 msg, addr, skb->len, sz, skb->head, skb->data,
Joe Perchese005d192012-05-16 19:58:40 +0000124 (unsigned long)skb->tail, (unsigned long)skb->end,
125 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 BUG();
127}
128
Jean Sacrenf05de732013-02-11 13:30:38 +0000129static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Jean Sacrenf05de732013-02-11 13:30:38 +0000131 skb_panic(skb, sz, addr, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Jean Sacrenf05de732013-02-11 13:30:38 +0000134static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
135{
136 skb_panic(skb, sz, addr, __func__);
137}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700138
139/*
140 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
141 * the caller if emergency pfmemalloc reserves are being used. If it is and
142 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
143 * may be used. Otherwise, the packet data may be discarded until enough
144 * memory is free
145 */
146#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
147 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
stephen hemminger61c5e882012-12-28 18:24:28 +0000148
149static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
150 unsigned long ip, bool *pfmemalloc)
Mel Gormanc93bdd02012-07-31 16:44:19 -0700151{
152 void *obj;
153 bool ret_pfmemalloc = false;
154
155 /*
156 * Try a regular allocation, when that fails and we're not entitled
157 * to the reserves, fail.
158 */
159 obj = kmalloc_node_track_caller(size,
160 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
161 node);
162 if (obj || !(gfp_pfmemalloc_allowed(flags)))
163 goto out;
164
165 /* Try again but now we are using pfmemalloc reserves */
166 ret_pfmemalloc = true;
167 obj = kmalloc_node_track_caller(size, flags, node);
168
169out:
170 if (pfmemalloc)
171 *pfmemalloc = ret_pfmemalloc;
172
173 return obj;
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* Allocate a new skbuff. We do this ourselves so we can fill in a few
177 * 'private' fields and also do memory statistics to find all the
178 * [BEEP] leaks.
179 *
180 */
181
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000182struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
183{
184 struct sk_buff *skb;
185
186 /* Get the HEAD */
187 skb = kmem_cache_alloc_node(skbuff_head_cache,
188 gfp_mask & ~__GFP_DMA, node);
189 if (!skb)
190 goto out;
191
192 /*
193 * Only clear those fields we need to clear, not those that we will
194 * actually initialise below. Hence, don't put any more fields after
195 * the tail pointer in struct sk_buff!
196 */
197 memset(skb, 0, offsetof(struct sk_buff, tail));
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000198 skb->head = NULL;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000199 skb->truesize = sizeof(struct sk_buff);
200 atomic_set(&skb->users, 1);
201
Cong Wang35d04612013-05-29 15:16:05 +0800202 skb->mac_header = (typeof(skb->mac_header))~0U;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000203out:
204 return skb;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/**
David S. Millerd179cd12005-08-17 14:57:30 -0700208 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * @size: size to allocate
210 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700211 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
212 * instead of head cache and allocate a cloned (child) skb.
213 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
214 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800215 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
217 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000218 * tail room of at least size bytes. The object has a reference count
219 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *
221 * Buffers may only be allocated from interrupts using a @gfp_mask of
222 * %GFP_ATOMIC.
223 */
Al Virodd0fc662005-10-07 07:46:04 +0100224struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700225 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Christoph Lametere18b8902006-12-06 20:33:20 -0800227 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800228 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct sk_buff *skb;
230 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700231 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Mel Gormanc93bdd02012-07-31 16:44:19 -0700233 cache = (flags & SKB_ALLOC_FCLONE)
234 ? skbuff_fclone_cache : skbuff_head_cache;
235
236 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
237 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800240 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!skb)
242 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700243 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000245 /* We do our best to align skb_shared_info on a separate cache
246 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
247 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
248 * Both skb->head and skb_shared_info are cache line aligned.
249 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000250 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000251 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700252 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (!data)
254 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000255 /* kmalloc(size) might give us more room than requested.
256 * Put skb_shared_info exactly at the end of allocated zone,
257 * to allow max possible filling before reallocation.
258 */
259 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700260 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300262 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700263 * Only clear those fields we need to clear, not those that we will
264 * actually initialise below. Hence, don't put any more fields after
265 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300266 */
267 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000268 /* Account for allocated memory : skb + skb->head */
269 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700270 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 atomic_set(&skb->users, 1);
272 skb->head = data;
273 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700274 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700275 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800276 skb->mac_header = (typeof(skb->mac_header))~0U;
277 skb->transport_header = (typeof(skb->transport_header))~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000278
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800279 /* make sure we initialize shinfo sequentially */
280 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700281 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800282 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000283 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800284
Mel Gormanc93bdd02012-07-31 16:44:19 -0700285 if (flags & SKB_ALLOC_FCLONE) {
David S. Millerd179cd12005-08-17 14:57:30 -0700286 struct sk_buff *child = skb + 1;
287 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200289 kmemcheck_annotate_bitfield(child, flags1);
290 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700291 skb->fclone = SKB_FCLONE_ORIG;
292 atomic_set(fclone_ref, 1);
293
294 child->fclone = SKB_FCLONE_UNAVAILABLE;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700295 child->pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297out:
298 return skb;
299nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800300 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 skb = NULL;
302 goto out;
303}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800304EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000307 * build_skb - build a network buffer
308 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000309 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000310 *
311 * Allocate a new &sk_buff. Caller provides space holding head and
312 * skb_shared_info. @data must have been allocated by kmalloc()
313 * The return is the new skb buffer.
314 * On a failure the return is %NULL, and @data is not freed.
315 * Notes :
316 * Before IO, driver allocates only data buffer where NIC put incoming frame
317 * Driver should add room at head (NET_SKB_PAD) and
318 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
319 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
320 * before giving packet to stack.
321 * RX rings only contains data buffers, not full skbs.
322 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000323struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000324{
325 struct skb_shared_info *shinfo;
326 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000327 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000328
329 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
330 if (!skb)
331 return NULL;
332
Eric Dumazetd3836f22012-04-27 00:33:38 +0000333 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000334
335 memset(skb, 0, offsetof(struct sk_buff, tail));
336 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000337 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000338 atomic_set(&skb->users, 1);
339 skb->head = data;
340 skb->data = data;
341 skb_reset_tail_pointer(skb);
342 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800343 skb->mac_header = (typeof(skb->mac_header))~0U;
344 skb->transport_header = (typeof(skb->transport_header))~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000345
346 /* make sure we initialize shinfo sequentially */
347 shinfo = skb_shinfo(skb);
348 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
349 atomic_set(&shinfo->dataref, 1);
350 kmemcheck_annotate_variable(shinfo->destructor_arg);
351
352 return skb;
353}
354EXPORT_SYMBOL(build_skb);
355
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000356struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000357 struct page_frag frag;
358 /* we maintain a pagecount bias, so that we dont dirty cache line
359 * containing page->_count every time we allocate a fragment.
360 */
361 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000362};
363static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
364
Mel Gormanc93bdd02012-07-31 16:44:19 -0700365static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000366{
367 struct netdev_alloc_cache *nc;
368 void *data = NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000369 int order;
Eric Dumazet6f532612012-05-18 05:12:12 +0000370 unsigned long flags;
371
372 local_irq_save(flags);
373 nc = &__get_cpu_var(netdev_alloc_cache);
Eric Dumazet69b08f62012-09-26 06:46:57 +0000374 if (unlikely(!nc->frag.page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000375refill:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000376 for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) {
377 gfp_t gfp = gfp_mask;
378
379 if (order)
380 gfp |= __GFP_COMP | __GFP_NOWARN;
381 nc->frag.page = alloc_pages(gfp, order);
382 if (likely(nc->frag.page))
383 break;
384 if (--order < 0)
385 goto end;
386 }
387 nc->frag.size = PAGE_SIZE << order;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000388recycle:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000389 atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS);
390 nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS;
391 nc->frag.offset = 0;
Eric Dumazet6f532612012-05-18 05:12:12 +0000392 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000393
Eric Dumazet69b08f62012-09-26 06:46:57 +0000394 if (nc->frag.offset + fragsz > nc->frag.size) {
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000395 /* avoid unnecessary locked operations if possible */
Eric Dumazet69b08f62012-09-26 06:46:57 +0000396 if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) ||
397 atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count))
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000398 goto recycle;
399 goto refill;
Eric Dumazet6f532612012-05-18 05:12:12 +0000400 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000401
Eric Dumazet69b08f62012-09-26 06:46:57 +0000402 data = page_address(nc->frag.page) + nc->frag.offset;
403 nc->frag.offset += fragsz;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000404 nc->pagecnt_bias--;
405end:
Eric Dumazet6f532612012-05-18 05:12:12 +0000406 local_irq_restore(flags);
407 return data;
408}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700409
410/**
411 * netdev_alloc_frag - allocate a page fragment
412 * @fragsz: fragment size
413 *
414 * Allocates a frag from a page for receive buffer.
415 * Uses GFP_ATOMIC allocations.
416 */
417void *netdev_alloc_frag(unsigned int fragsz)
418{
419 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
420}
Eric Dumazet6f532612012-05-18 05:12:12 +0000421EXPORT_SYMBOL(netdev_alloc_frag);
422
423/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700424 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
425 * @dev: network device to receive on
426 * @length: length to allocate
427 * @gfp_mask: get_free_pages mask, passed to alloc_skb
428 *
429 * Allocate a new &sk_buff and assign it a usage count of one. The
430 * buffer has unspecified headroom built in. Users should allocate
431 * the headroom they think they need without accounting for the
432 * built in space. The built in space is used for optimisations.
433 *
434 * %NULL is returned if there is no free memory.
435 */
436struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
Eric Dumazet6f532612012-05-18 05:12:12 +0000437 unsigned int length, gfp_t gfp_mask)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700438{
Eric Dumazet6f532612012-05-18 05:12:12 +0000439 struct sk_buff *skb = NULL;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000440 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
441 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700442
Eric Dumazet310e1582012-07-16 13:15:52 +0200443 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700444 void *data;
445
446 if (sk_memalloc_socks())
447 gfp_mask |= __GFP_MEMALLOC;
448
449 data = __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000450
Eric Dumazet6f532612012-05-18 05:12:12 +0000451 if (likely(data)) {
452 skb = build_skb(data, fragsz);
453 if (unlikely(!skb))
454 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000455 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000456 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700457 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
458 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000459 }
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700460 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700461 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700462 skb->dev = dev;
463 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700464 return skb;
465}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800466EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Peter Zijlstra654bed12008-10-07 14:22:33 -0700468void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000469 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700470{
471 skb_fill_page_desc(skb, i, page, off, size);
472 skb->len += size;
473 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000474 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700475}
476EXPORT_SYMBOL(skb_add_rx_frag);
477
Herbert Xu27b437c2006-07-13 19:26:39 -0700478static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700480 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700481 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Herbert Xu27b437c2006-07-13 19:26:39 -0700484static inline void skb_drop_fraglist(struct sk_buff *skb)
485{
486 skb_drop_list(&skb_shinfo(skb)->frag_list);
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static void skb_clone_fraglist(struct sk_buff *skb)
490{
491 struct sk_buff *list;
492
David S. Millerfbb398a2009-06-09 00:18:59 -0700493 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 skb_get(list);
495}
496
Eric Dumazetd3836f22012-04-27 00:33:38 +0000497static void skb_free_head(struct sk_buff *skb)
498{
499 if (skb->head_frag)
500 put_page(virt_to_head_page(skb->head));
501 else
502 kfree(skb->head);
503}
504
Adrian Bunk5bba1712006-06-29 13:02:35 -0700505static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 if (!skb->cloned ||
508 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
509 &skb_shinfo(skb)->dataref)) {
510 if (skb_shinfo(skb)->nr_frags) {
511 int i;
512 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000513 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
Shirley Maa6686f22011-07-06 12:22:12 +0000516 /*
517 * If skb buf is from userspace, we need to notify the caller
518 * the lower device DMA has done;
519 */
520 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
521 struct ubuf_info *uarg;
522
523 uarg = skb_shinfo(skb)->destructor_arg;
524 if (uarg->callback)
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000525 uarg->callback(uarg, true);
Shirley Maa6686f22011-07-06 12:22:12 +0000526 }
527
David S. Miller21dc3302010-08-23 00:13:46 -0700528 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 skb_drop_fraglist(skb);
530
Eric Dumazetd3836f22012-04-27 00:33:38 +0000531 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533}
534
535/*
536 * Free an skbuff by memory without cleaning the state.
537 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800538static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
David S. Millerd179cd12005-08-17 14:57:30 -0700540 struct sk_buff *other;
541 atomic_t *fclone_ref;
542
David S. Millerd179cd12005-08-17 14:57:30 -0700543 switch (skb->fclone) {
544 case SKB_FCLONE_UNAVAILABLE:
545 kmem_cache_free(skbuff_head_cache, skb);
546 break;
547
548 case SKB_FCLONE_ORIG:
549 fclone_ref = (atomic_t *) (skb + 2);
550 if (atomic_dec_and_test(fclone_ref))
551 kmem_cache_free(skbuff_fclone_cache, skb);
552 break;
553
554 case SKB_FCLONE_CLONE:
555 fclone_ref = (atomic_t *) (skb + 1);
556 other = skb - 1;
557
558 /* The clone portion is available for
559 * fast-cloning again.
560 */
561 skb->fclone = SKB_FCLONE_UNAVAILABLE;
562
563 if (atomic_dec_and_test(fclone_ref))
564 kmem_cache_free(skbuff_fclone_cache, other);
565 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700569static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Eric Dumazetadf30902009-06-02 05:19:30 +0000571 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572#ifdef CONFIG_XFRM
573 secpath_put(skb->sp);
574#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700575 if (skb->destructor) {
576 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 skb->destructor(skb);
578 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000579#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700580 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100581#endif
582#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800583 nf_conntrack_put_reasm(skb->nfct_reasm);
584#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#ifdef CONFIG_BRIDGE_NETFILTER
586 nf_bridge_put(skb->nf_bridge);
587#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/* XXX: IS this still necessary? - JHS */
589#ifdef CONFIG_NET_SCHED
590 skb->tc_index = 0;
591#ifdef CONFIG_NET_CLS_ACT
592 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#endif
594#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700595}
596
597/* Free everything but the sk_buff shell. */
598static void skb_release_all(struct sk_buff *skb)
599{
600 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000601 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000602 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800603}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Herbert Xu2d4baff2007-11-26 23:11:19 +0800605/**
606 * __kfree_skb - private function
607 * @skb: buffer
608 *
609 * Free an sk_buff. Release anything attached to the buffer.
610 * Clean the state. This is an internal helper function. Users should
611 * always call kfree_skb
612 */
613
614void __kfree_skb(struct sk_buff *skb)
615{
616 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 kfree_skbmem(skb);
618}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800619EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800622 * kfree_skb - free an sk_buff
623 * @skb: buffer to free
624 *
625 * Drop a reference to the buffer and free it if the usage count has
626 * hit zero.
627 */
628void kfree_skb(struct sk_buff *skb)
629{
630 if (unlikely(!skb))
631 return;
632 if (likely(atomic_read(&skb->users) == 1))
633 smp_rmb();
634 else if (likely(!atomic_dec_and_test(&skb->users)))
635 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000636 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800637 __kfree_skb(skb);
638}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800639EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800640
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700641void kfree_skb_list(struct sk_buff *segs)
642{
643 while (segs) {
644 struct sk_buff *next = segs->next;
645
646 kfree_skb(segs);
647 segs = next;
648 }
649}
650EXPORT_SYMBOL(kfree_skb_list);
651
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700652/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000653 * skb_tx_error - report an sk_buff xmit error
654 * @skb: buffer that triggered an error
655 *
656 * Report xmit error if a device callback is tracking this skb.
657 * skb must be freed afterwards.
658 */
659void skb_tx_error(struct sk_buff *skb)
660{
661 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
662 struct ubuf_info *uarg;
663
664 uarg = skb_shinfo(skb)->destructor_arg;
665 if (uarg->callback)
666 uarg->callback(uarg, false);
667 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
668 }
669}
670EXPORT_SYMBOL(skb_tx_error);
671
672/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000673 * consume_skb - free an skbuff
674 * @skb: buffer to free
675 *
676 * Drop a ref to the buffer and free it if the usage count has hit zero
677 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
678 * is being dropped after a failure and notes that
679 */
680void consume_skb(struct sk_buff *skb)
681{
682 if (unlikely(!skb))
683 return;
684 if (likely(atomic_read(&skb->users) == 1))
685 smp_rmb();
686 else if (likely(!atomic_dec_and_test(&skb->users)))
687 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900688 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000689 __kfree_skb(skb);
690}
691EXPORT_SYMBOL(consume_skb);
692
Herbert Xudec18812007-10-14 00:37:30 -0700693static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
694{
695 new->tstamp = old->tstamp;
696 new->dev = old->dev;
697 new->transport_header = old->transport_header;
698 new->network_header = old->network_header;
699 new->mac_header = old->mac_header;
Joe Stringer4bc41b82013-07-03 16:04:25 +0900700 new->inner_protocol = old->inner_protocol;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000701 new->inner_transport_header = old->inner_transport_header;
Pravin B Shelar92df9b22013-02-01 15:18:49 +0000702 new->inner_network_header = old->inner_network_header;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000703 new->inner_mac_header = old->inner_mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000704 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000705 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000706 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000707 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000708 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000709 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700710#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700711 new->sp = secpath_get(old->sp);
712#endif
713 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000714 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700715 new->local_df = old->local_df;
716 new->pkt_type = old->pkt_type;
717 new->ip_summed = old->ip_summed;
718 skb_copy_queue_mapping(new, old);
719 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000720#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700721 new->ipvs_property = old->ipvs_property;
722#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700723 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700724 new->protocol = old->protocol;
725 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800726 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700727 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000728#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700729 new->nf_trace = old->nf_trace;
730#endif
731#ifdef CONFIG_NET_SCHED
732 new->tc_index = old->tc_index;
733#ifdef CONFIG_NET_CLS_ACT
734 new->tc_verd = old->tc_verd;
735#endif
736#endif
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000737 new->vlan_proto = old->vlan_proto;
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700738 new->vlan_tci = old->vlan_tci;
739
Herbert Xudec18812007-10-14 00:37:30 -0700740 skb_copy_secmark(new, old);
Eliezer Tamir06021292013-06-10 11:39:50 +0300741
742#ifdef CONFIG_NET_LL_RX_POLL
743 new->napi_id = old->napi_id;
744#endif
Herbert Xudec18812007-10-14 00:37:30 -0700745}
746
Herbert Xu82c49a32009-05-22 22:11:37 +0000747/*
748 * You should not add any new code to this function. Add it to
749 * __copy_skb_header above instead.
750 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700751static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753#define C(x) n->x = skb->x
754
755 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700757 __copy_skb_header(n, skb);
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 C(len);
760 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700761 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700762 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800763 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 C(tail);
767 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800768 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000769 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800770 C(data);
771 C(truesize);
772 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 atomic_inc(&(skb_shinfo(skb)->dataref));
775 skb->cloned = 1;
776
777 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700778#undef C
779}
780
781/**
782 * skb_morph - morph one skb into another
783 * @dst: the skb to receive the contents
784 * @src: the skb to supply the contents
785 *
786 * This is identical to skb_clone except that the target skb is
787 * supplied by the user.
788 *
789 * The target skb is returned upon exit.
790 */
791struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
792{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800793 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700794 return __skb_clone(dst, src);
795}
796EXPORT_SYMBOL_GPL(skb_morph);
797
Ben Hutchings2c530402012-07-10 10:55:09 +0000798/**
799 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000800 * @skb: the skb to modify
801 * @gfp_mask: allocation priority
802 *
803 * This must be called on SKBTX_DEV_ZEROCOPY skb.
804 * It will copy all frags into kernel and drop the reference
805 * to userspace pages.
806 *
807 * If this function is called from an interrupt gfp_mask() must be
808 * %GFP_ATOMIC.
809 *
810 * Returns 0 on success or a negative error code on failure
811 * to allocate kernel memory to copy to.
812 */
813int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000814{
815 int i;
816 int num_frags = skb_shinfo(skb)->nr_frags;
817 struct page *page, *head = NULL;
818 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
819
820 for (i = 0; i < num_frags; i++) {
821 u8 *vaddr;
822 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
823
Krishna Kumar02756ed2012-07-17 02:05:29 +0000824 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000825 if (!page) {
826 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900827 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000828 put_page(head);
829 head = next;
830 }
831 return -ENOMEM;
832 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200833 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000834 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000835 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200836 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900837 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000838 head = page;
839 }
840
841 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000842 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000843 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000844
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000845 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000846
847 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000848 for (i = num_frags - 1; i >= 0; i--) {
849 __skb_fill_page_desc(skb, i, head, 0,
850 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900851 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000852 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000853
854 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000855 return 0;
856}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000857EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000858
Herbert Xue0053ec2007-10-14 00:37:52 -0700859/**
860 * skb_clone - duplicate an sk_buff
861 * @skb: buffer to clone
862 * @gfp_mask: allocation priority
863 *
864 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
865 * copies share the same packet data but not structure. The new
866 * buffer has a reference count of 1. If the allocation fails the
867 * function returns %NULL otherwise the new buffer is returned.
868 *
869 * If this function is called from an interrupt gfp_mask() must be
870 * %GFP_ATOMIC.
871 */
872
873struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
874{
875 struct sk_buff *n;
876
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000877 if (skb_orphan_frags(skb, gfp_mask))
878 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000879
Herbert Xue0053ec2007-10-14 00:37:52 -0700880 n = skb + 1;
881 if (skb->fclone == SKB_FCLONE_ORIG &&
882 n->fclone == SKB_FCLONE_UNAVAILABLE) {
883 atomic_t *fclone_ref = (atomic_t *) (n + 1);
884 n->fclone = SKB_FCLONE_CLONE;
885 atomic_inc(fclone_ref);
886 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700887 if (skb_pfmemalloc(skb))
888 gfp_mask |= __GFP_MEMALLOC;
889
Herbert Xue0053ec2007-10-14 00:37:52 -0700890 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
891 if (!n)
892 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200893
894 kmemcheck_annotate_bitfield(n, flags1);
895 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700896 n->fclone = SKB_FCLONE_UNAVAILABLE;
897 }
898
899 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800901EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000903static void skb_headers_offset_update(struct sk_buff *skb, int off)
904{
905 /* {transport,network,mac}_header and tail are relative to skb->head */
906 skb->transport_header += off;
907 skb->network_header += off;
908 if (skb_mac_header_was_set(skb))
909 skb->mac_header += off;
910 skb->inner_transport_header += off;
911 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000912 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
916{
Herbert Xudec18812007-10-14 00:37:30 -0700917 __copy_skb_header(new, old);
918
Herbert Xu79671682006-06-22 02:40:14 -0700919 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
920 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
921 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Mel Gormanc93bdd02012-07-31 16:44:19 -0700924static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
925{
926 if (skb_pfmemalloc(skb))
927 return SKB_ALLOC_RX;
928 return 0;
929}
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/**
932 * skb_copy - create private copy of an sk_buff
933 * @skb: buffer to copy
934 * @gfp_mask: allocation priority
935 *
936 * Make a copy of both an &sk_buff and its data. This is used when the
937 * caller wishes to modify the data and needs a private copy of the
938 * data to alter. Returns %NULL on failure or the pointer to the buffer
939 * on success. The returned buffer has a reference count of 1.
940 *
941 * As by-product this function converts non-linear &sk_buff to linear
942 * one, so that &sk_buff becomes completely private and caller is allowed
943 * to modify all the data of returned buffer. This means that this
944 * function is not recommended for use in circumstances when only
945 * header is going to be modified. Use pskb_copy() instead.
946 */
947
Al Virodd0fc662005-10-07 07:46:04 +0100948struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000950 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000951 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700952 struct sk_buff *n = __alloc_skb(size, gfp_mask,
953 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (!n)
956 return NULL;
957
958 /* Set the data pointer */
959 skb_reserve(n, headerlen);
960 /* Set the tail pointer and length */
961 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
964 BUG();
965
966 copy_skb_header(n, skb);
967 return n;
968}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800969EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000972 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000974 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 * @gfp_mask: allocation priority
976 *
977 * Make a copy of both an &sk_buff and part of its data, located
978 * in header. Fragmented data remain shared. This is used when
979 * the caller wishes to modify only header of &sk_buff and needs
980 * private copy of the header to alter. Returns %NULL on failure
981 * or the pointer to the buffer on success.
982 * The returned buffer has a reference count of 1.
983 */
984
Eric Dumazet117632e2011-12-03 21:39:53 +0000985struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Eric Dumazet117632e2011-12-03 21:39:53 +0000987 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700988 struct sk_buff *n = __alloc_skb(size, gfp_mask,
989 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (!n)
992 goto out;
993
994 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000995 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /* Set the tail pointer and length */
997 skb_put(n, skb_headlen(skb));
998 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300999 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Herbert Xu25f484a2006-11-07 14:57:15 -08001001 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 n->data_len = skb->data_len;
1003 n->len = skb->len;
1004
1005 if (skb_shinfo(skb)->nr_frags) {
1006 int i;
1007
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001008 if (skb_orphan_frags(skb, gfp_mask)) {
1009 kfree_skb(n);
1010 n = NULL;
1011 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1014 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001015 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017 skb_shinfo(n)->nr_frags = i;
1018 }
1019
David S. Miller21dc3302010-08-23 00:13:46 -07001020 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1022 skb_clone_fraglist(n);
1023 }
1024
1025 copy_skb_header(n, skb);
1026out:
1027 return n;
1028}
Eric Dumazet117632e2011-12-03 21:39:53 +00001029EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031/**
1032 * pskb_expand_head - reallocate header of &sk_buff
1033 * @skb: buffer to reallocate
1034 * @nhead: room to add at head
1035 * @ntail: room to add at tail
1036 * @gfp_mask: allocation priority
1037 *
1038 * Expands (or creates identical copy, if &nhead and &ntail are zero)
1039 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
1040 * reference count of 1. Returns zero in the case of success or error,
1041 * if expansion failed. In the last case, &sk_buff is not changed.
1042 *
1043 * All the pointers pointing into skb header may change and must be
1044 * reloaded after call to this function.
1045 */
1046
Victor Fusco86a76ca2005-07-08 14:57:47 -07001047int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001048 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
1050 int i;
1051 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001052 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 long off;
1054
Herbert Xu4edd87a2008-10-01 07:09:38 -07001055 BUG_ON(nhead < 0);
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (skb_shared(skb))
1058 BUG();
1059
1060 size = SKB_DATA_ALIGN(size);
1061
Mel Gormanc93bdd02012-07-31 16:44:19 -07001062 if (skb_pfmemalloc(skb))
1063 gfp_mask |= __GFP_MEMALLOC;
1064 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1065 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (!data)
1067 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001068 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001071 * optimized for the cases when header is void.
1072 */
1073 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1074
1075 memcpy((struct skb_shared_info *)(data + size),
1076 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001077 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Alexander Duyck3e245912012-05-04 14:26:51 +00001079 /*
1080 * if shinfo is shared we must drop the old head gracefully, but if it
1081 * is not we can just drop the old head and let the existing refcount
1082 * be since all we did is relocate the values
1083 */
1084 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001085 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001086 if (skb_orphan_frags(skb, gfp_mask))
1087 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001088 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001089 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Eric Dumazet1fd63042010-09-02 23:09:32 +00001091 if (skb_has_frag_list(skb))
1092 skb_clone_fraglist(skb);
1093
1094 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001095 } else {
1096 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 off = (data + nhead) - skb->head;
1099
1100 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001101 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001103#ifdef NET_SKBUFF_DATA_USES_OFFSET
1104 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001105 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001106#else
1107 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001108#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001109 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001110 skb_headers_offset_update(skb, nhead);
Andrea Shepard00c5a982010-07-22 09:12:35 +00001111 /* Only adjust this if it actually is csum_start rather than csum */
1112 if (skb->ip_summed == CHECKSUM_PARTIAL)
1113 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001115 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 skb->nohdr = 0;
1117 atomic_set(&skb_shinfo(skb)->dataref, 1);
1118 return 0;
1119
Shirley Maa6686f22011-07-06 12:22:12 +00001120nofrags:
1121 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122nodata:
1123 return -ENOMEM;
1124}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001125EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127/* Make private copy of skb with writable head and some headroom */
1128
1129struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1130{
1131 struct sk_buff *skb2;
1132 int delta = headroom - skb_headroom(skb);
1133
1134 if (delta <= 0)
1135 skb2 = pskb_copy(skb, GFP_ATOMIC);
1136 else {
1137 skb2 = skb_clone(skb, GFP_ATOMIC);
1138 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1139 GFP_ATOMIC)) {
1140 kfree_skb(skb2);
1141 skb2 = NULL;
1142 }
1143 }
1144 return skb2;
1145}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001146EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148/**
1149 * skb_copy_expand - copy and expand sk_buff
1150 * @skb: buffer to copy
1151 * @newheadroom: new free bytes at head
1152 * @newtailroom: new free bytes at tail
1153 * @gfp_mask: allocation priority
1154 *
1155 * Make a copy of both an &sk_buff and its data and while doing so
1156 * allocate additional space.
1157 *
1158 * This is used when the caller wishes to modify the data and needs a
1159 * private copy of the data to alter as well as more space for new fields.
1160 * Returns %NULL on failure or the pointer to the buffer
1161 * on success. The returned buffer has a reference count of 1.
1162 *
1163 * You must pass %GFP_ATOMIC as the allocation priority if this function
1164 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 */
1166struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001167 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001168 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
1170 /*
1171 * Allocate the copy buffer
1172 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001173 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1174 gfp_mask, skb_alloc_rx_flag(skb),
1175 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001176 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001178 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 if (!n)
1181 return NULL;
1182
1183 skb_reserve(n, newheadroom);
1184
1185 /* Set the tail pointer and length */
1186 skb_put(n, skb->len);
1187
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001188 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 head_copy_off = 0;
1190 if (newheadroom <= head_copy_len)
1191 head_copy_len = newheadroom;
1192 else
1193 head_copy_off = newheadroom - head_copy_len;
1194
1195 /* Copy the linear header and data. */
1196 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1197 skb->len + head_copy_len))
1198 BUG();
1199
1200 copy_skb_header(n, skb);
1201
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001202 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001203 if (n->ip_summed == CHECKSUM_PARTIAL)
1204 n->csum_start += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001205
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001206 skb_headers_offset_update(n, off);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return n;
1209}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001210EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212/**
1213 * skb_pad - zero pad the tail of an skb
1214 * @skb: buffer to pad
1215 * @pad: space to pad
1216 *
1217 * Ensure that a buffer is followed by a padding area that is zero
1218 * filled. Used by network drivers which may DMA or transfer data
1219 * beyond the buffer end onto the wire.
1220 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001221 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001223
Herbert Xu5b057c62006-06-23 02:06:41 -07001224int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Herbert Xu5b057c62006-06-23 02:06:41 -07001226 int err;
1227 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001230 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001234
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001235 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001236 if (likely(skb_cloned(skb) || ntail > 0)) {
1237 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1238 if (unlikely(err))
1239 goto free_skb;
1240 }
1241
1242 /* FIXME: The use of this function with non-linear skb's really needs
1243 * to be audited.
1244 */
1245 err = skb_linearize(skb);
1246 if (unlikely(err))
1247 goto free_skb;
1248
1249 memset(skb->data + skb->len, 0, pad);
1250 return 0;
1251
1252free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001254 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001255}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001256EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001257
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001258/**
1259 * skb_put - add data to a buffer
1260 * @skb: buffer to use
1261 * @len: amount of data to add
1262 *
1263 * This function extends the used data area of the buffer. If this would
1264 * exceed the total buffer size the kernel will panic. A pointer to the
1265 * first byte of the extra data is returned.
1266 */
1267unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1268{
1269 unsigned char *tmp = skb_tail_pointer(skb);
1270 SKB_LINEAR_ASSERT(skb);
1271 skb->tail += len;
1272 skb->len += len;
1273 if (unlikely(skb->tail > skb->end))
1274 skb_over_panic(skb, len, __builtin_return_address(0));
1275 return tmp;
1276}
1277EXPORT_SYMBOL(skb_put);
1278
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001279/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001280 * skb_push - add data to the start of a buffer
1281 * @skb: buffer to use
1282 * @len: amount of data to add
1283 *
1284 * This function extends the used data area of the buffer at the buffer
1285 * start. If this would exceed the total buffer headroom the kernel will
1286 * panic. A pointer to the first byte of the extra data is returned.
1287 */
1288unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1289{
1290 skb->data -= len;
1291 skb->len += len;
1292 if (unlikely(skb->data<skb->head))
1293 skb_under_panic(skb, len, __builtin_return_address(0));
1294 return skb->data;
1295}
1296EXPORT_SYMBOL(skb_push);
1297
1298/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001299 * skb_pull - remove data from the start of a buffer
1300 * @skb: buffer to use
1301 * @len: amount of data to remove
1302 *
1303 * This function removes data from the start of a buffer, returning
1304 * the memory to the headroom. A pointer to the next data in the buffer
1305 * is returned. Once the data has been pulled future pushes will overwrite
1306 * the old data.
1307 */
1308unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1309{
David S. Miller47d29642010-05-02 02:21:44 -07001310 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001311}
1312EXPORT_SYMBOL(skb_pull);
1313
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001314/**
1315 * skb_trim - remove end from a buffer
1316 * @skb: buffer to alter
1317 * @len: new length
1318 *
1319 * Cut the length of a buffer down by removing data from the tail. If
1320 * the buffer is already under the length specified it is not modified.
1321 * The skb must be linear.
1322 */
1323void skb_trim(struct sk_buff *skb, unsigned int len)
1324{
1325 if (skb->len > len)
1326 __skb_trim(skb, len);
1327}
1328EXPORT_SYMBOL(skb_trim);
1329
Herbert Xu3cc0e872006-06-09 16:13:38 -07001330/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 */
1332
Herbert Xu3cc0e872006-06-09 16:13:38 -07001333int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Herbert Xu27b437c2006-07-13 19:26:39 -07001335 struct sk_buff **fragp;
1336 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 int offset = skb_headlen(skb);
1338 int nfrags = skb_shinfo(skb)->nr_frags;
1339 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001340 int err;
1341
1342 if (skb_cloned(skb) &&
1343 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1344 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001346 i = 0;
1347 if (offset >= len)
1348 goto drop_pages;
1349
1350 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001351 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001352
1353 if (end < len) {
1354 offset = end;
1355 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001357
Eric Dumazet9e903e02011-10-18 21:00:24 +00001358 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001359
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001360drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001361 skb_shinfo(skb)->nr_frags = i;
1362
1363 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001364 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001365
David S. Miller21dc3302010-08-23 00:13:46 -07001366 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001367 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001368 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370
Herbert Xu27b437c2006-07-13 19:26:39 -07001371 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1372 fragp = &frag->next) {
1373 int end = offset + frag->len;
1374
1375 if (skb_shared(frag)) {
1376 struct sk_buff *nfrag;
1377
1378 nfrag = skb_clone(frag, GFP_ATOMIC);
1379 if (unlikely(!nfrag))
1380 return -ENOMEM;
1381
1382 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001383 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001384 frag = nfrag;
1385 *fragp = frag;
1386 }
1387
1388 if (end < len) {
1389 offset = end;
1390 continue;
1391 }
1392
1393 if (end > len &&
1394 unlikely((err = pskb_trim(frag, len - offset))))
1395 return err;
1396
1397 if (frag->next)
1398 skb_drop_list(&frag->next);
1399 break;
1400 }
1401
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001402done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001403 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 skb->data_len -= skb->len - len;
1405 skb->len = len;
1406 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001407 skb->len = len;
1408 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001409 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
1411
1412 return 0;
1413}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001414EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416/**
1417 * __pskb_pull_tail - advance tail of skb header
1418 * @skb: buffer to reallocate
1419 * @delta: number of bytes to advance tail
1420 *
1421 * The function makes a sense only on a fragmented &sk_buff,
1422 * it expands header moving its tail forward and copying necessary
1423 * data from fragmented part.
1424 *
1425 * &sk_buff MUST have reference count of 1.
1426 *
1427 * Returns %NULL (and &sk_buff does not change) if pull failed
1428 * or value of new tail of skb in the case of success.
1429 *
1430 * All the pointers pointing into skb header may change and must be
1431 * reloaded after call to this function.
1432 */
1433
1434/* Moves tail of skb head forward, copying data from fragmented part,
1435 * when it is necessary.
1436 * 1. It may fail due to malloc failure.
1437 * 2. It may change skb pointers.
1438 *
1439 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1440 */
1441unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1442{
1443 /* If skb has not enough free space at tail, get new one
1444 * plus 128 bytes for future expansions. If we have enough
1445 * room at tail, reallocate without expansion only if skb is cloned.
1446 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001447 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 if (eat > 0 || skb_cloned(skb)) {
1450 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1451 GFP_ATOMIC))
1452 return NULL;
1453 }
1454
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001455 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 BUG();
1457
1458 /* Optimization: no fragments, no reasons to preestimate
1459 * size of pulled pages. Superb.
1460 */
David S. Miller21dc3302010-08-23 00:13:46 -07001461 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 goto pull_pages;
1463
1464 /* Estimate size of pulled pages. */
1465 eat = delta;
1466 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001467 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1468
1469 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001471 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473
1474 /* If we need update frag list, we are in troubles.
1475 * Certainly, it possible to add an offset to skb data,
1476 * but taking into account that pulling is expected to
1477 * be very rare operation, it is worth to fight against
1478 * further bloating skb head and crucify ourselves here instead.
1479 * Pure masohism, indeed. 8)8)
1480 */
1481 if (eat) {
1482 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1483 struct sk_buff *clone = NULL;
1484 struct sk_buff *insp = NULL;
1485
1486 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001487 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 if (list->len <= eat) {
1490 /* Eaten as whole. */
1491 eat -= list->len;
1492 list = list->next;
1493 insp = list;
1494 } else {
1495 /* Eaten partially. */
1496
1497 if (skb_shared(list)) {
1498 /* Sucks! We need to fork list. :-( */
1499 clone = skb_clone(list, GFP_ATOMIC);
1500 if (!clone)
1501 return NULL;
1502 insp = list->next;
1503 list = clone;
1504 } else {
1505 /* This may be pulled without
1506 * problems. */
1507 insp = list;
1508 }
1509 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001510 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 return NULL;
1512 }
1513 break;
1514 }
1515 } while (eat);
1516
1517 /* Free pulled out fragments. */
1518 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1519 skb_shinfo(skb)->frag_list = list->next;
1520 kfree_skb(list);
1521 }
1522 /* And insert new clone at head. */
1523 if (clone) {
1524 clone->next = list;
1525 skb_shinfo(skb)->frag_list = clone;
1526 }
1527 }
1528 /* Success! Now we may commit changes to skb data. */
1529
1530pull_pages:
1531 eat = delta;
1532 k = 0;
1533 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001534 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1535
1536 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001537 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001538 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 } else {
1540 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1541 if (eat) {
1542 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001543 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 eat = 0;
1545 }
1546 k++;
1547 }
1548 }
1549 skb_shinfo(skb)->nr_frags = k;
1550
1551 skb->tail += delta;
1552 skb->data_len -= delta;
1553
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001554 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001556EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Eric Dumazet22019b12011-07-29 18:37:31 +00001558/**
1559 * skb_copy_bits - copy bits from skb to kernel buffer
1560 * @skb: source skb
1561 * @offset: offset in source
1562 * @to: destination buffer
1563 * @len: number of bytes to copy
1564 *
1565 * Copy the specified number of bytes from the source skb to the
1566 * destination buffer.
1567 *
1568 * CAUTION ! :
1569 * If its prototype is ever changed,
1570 * check arch/{*}/net/{*}.S files,
1571 * since it is called from BPF assembly code.
1572 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1574{
David S. Miller1a028e52007-04-27 15:21:23 -07001575 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001576 struct sk_buff *frag_iter;
1577 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 if (offset > (int)skb->len - len)
1580 goto fault;
1581
1582 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001583 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (copy > len)
1585 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001586 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if ((len -= copy) == 0)
1588 return 0;
1589 offset += copy;
1590 to += copy;
1591 }
1592
1593 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001594 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001595 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001597 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001598
Eric Dumazet51c56b02012-04-05 11:35:15 +02001599 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if ((copy = end - offset) > 0) {
1601 u8 *vaddr;
1602
1603 if (copy > len)
1604 copy = len;
1605
Eric Dumazet51c56b02012-04-05 11:35:15 +02001606 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001608 vaddr + f->page_offset + offset - start,
1609 copy);
1610 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 if ((len -= copy) == 0)
1613 return 0;
1614 offset += copy;
1615 to += copy;
1616 }
David S. Miller1a028e52007-04-27 15:21:23 -07001617 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
1619
David S. Millerfbb398a2009-06-09 00:18:59 -07001620 skb_walk_frags(skb, frag_iter) {
1621 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
David S. Millerfbb398a2009-06-09 00:18:59 -07001623 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
David S. Millerfbb398a2009-06-09 00:18:59 -07001625 end = start + frag_iter->len;
1626 if ((copy = end - offset) > 0) {
1627 if (copy > len)
1628 copy = len;
1629 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1630 goto fault;
1631 if ((len -= copy) == 0)
1632 return 0;
1633 offset += copy;
1634 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001636 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
Shirley Maa6686f22011-07-06 12:22:12 +00001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (!len)
1640 return 0;
1641
1642fault:
1643 return -EFAULT;
1644}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001645EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Jens Axboe9c55e012007-11-06 23:30:13 -08001647/*
1648 * Callback from splice_to_pipe(), if we need to release some pages
1649 * at the end of the spd in case we error'ed out in filling the pipe.
1650 */
1651static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1652{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001653 put_page(spd->pages[i]);
1654}
Jens Axboe9c55e012007-11-06 23:30:13 -08001655
David S. Millera108d5f2012-04-23 23:06:11 -04001656static struct page *linear_to_page(struct page *page, unsigned int *len,
1657 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001658 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001659{
Eric Dumazet5640f762012-09-23 23:04:42 +00001660 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001661
Eric Dumazet5640f762012-09-23 23:04:42 +00001662 if (!sk_page_frag_refill(sk, pfrag))
1663 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001664
Eric Dumazet5640f762012-09-23 23:04:42 +00001665 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001666
Eric Dumazet5640f762012-09-23 23:04:42 +00001667 memcpy(page_address(pfrag->page) + pfrag->offset,
1668 page_address(page) + *offset, *len);
1669 *offset = pfrag->offset;
1670 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001671
Eric Dumazet5640f762012-09-23 23:04:42 +00001672 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001673}
1674
Eric Dumazet41c73a02012-04-22 12:26:16 +00001675static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1676 struct page *page,
1677 unsigned int offset)
1678{
1679 return spd->nr_pages &&
1680 spd->pages[spd->nr_pages - 1] == page &&
1681 (spd->partial[spd->nr_pages - 1].offset +
1682 spd->partial[spd->nr_pages - 1].len == offset);
1683}
1684
Jens Axboe9c55e012007-11-06 23:30:13 -08001685/*
1686 * Fill page/offset/length into spd, if it can hold more pages.
1687 */
David S. Millera108d5f2012-04-23 23:06:11 -04001688static bool spd_fill_page(struct splice_pipe_desc *spd,
1689 struct pipe_inode_info *pipe, struct page *page,
1690 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001691 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001692 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001693{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001694 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001695 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001696
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001697 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001698 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001699 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001700 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001701 }
1702 if (spd_can_coalesce(spd, page, offset)) {
1703 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001704 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001705 }
1706 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001707 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001708 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001709 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001710 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001711
David S. Millera108d5f2012-04-23 23:06:11 -04001712 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001713}
1714
David S. Millera108d5f2012-04-23 23:06:11 -04001715static bool __splice_segment(struct page *page, unsigned int poff,
1716 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001717 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001718 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001719 struct sock *sk,
1720 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001721{
1722 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001723 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001724
1725 /* skip this segment if already processed */
1726 if (*off >= plen) {
1727 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001728 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001729 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001730
Octavian Purdila2870c432008-07-15 00:49:11 -07001731 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001732 poff += *off;
1733 plen -= *off;
1734 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001735
Eric Dumazet18aafc62013-01-11 14:46:37 +00001736 do {
1737 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001738
Eric Dumazet18aafc62013-01-11 14:46:37 +00001739 if (spd_fill_page(spd, pipe, page, &flen, poff,
1740 linear, sk))
1741 return true;
1742 poff += flen;
1743 plen -= flen;
1744 *len -= flen;
1745 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001746
David S. Millera108d5f2012-04-23 23:06:11 -04001747 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001748}
1749
1750/*
David S. Millera108d5f2012-04-23 23:06:11 -04001751 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001752 * pipe is full or if we already spliced the requested length.
1753 */
David S. Millera108d5f2012-04-23 23:06:11 -04001754static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1755 unsigned int *offset, unsigned int *len,
1756 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001757{
1758 int seg;
1759
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001760 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001761 * If skb->head_frag is set, this 'linear' part is backed by a
1762 * fragment, and if the head is not shared with any clones then
1763 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001764 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001765 if (__splice_segment(virt_to_page(skb->data),
1766 (unsigned long) skb->data & (PAGE_SIZE - 1),
1767 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001768 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001769 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001770 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001771 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001772
1773 /*
1774 * then map the fragments
1775 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001776 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1777 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1778
Ian Campbellea2ab692011-08-22 23:44:58 +00001779 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001780 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001781 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001782 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001783 }
1784
David S. Millera108d5f2012-04-23 23:06:11 -04001785 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001786}
1787
1788/*
1789 * Map data from the skb to a pipe. Should handle both the linear part,
1790 * the fragments, and the frag list. It does NOT handle frag lists within
1791 * the frag list, if such a thing exists. We'd probably need to recurse to
1792 * handle that cleanly.
1793 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001794int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001795 struct pipe_inode_info *pipe, unsigned int tlen,
1796 unsigned int flags)
1797{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001798 struct partial_page partial[MAX_SKB_FRAGS];
1799 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001800 struct splice_pipe_desc spd = {
1801 .pages = pages,
1802 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001803 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001804 .flags = flags,
1805 .ops = &sock_pipe_buf_ops,
1806 .spd_release = sock_spd_release,
1807 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001808 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001809 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001810 int ret = 0;
1811
Jens Axboe9c55e012007-11-06 23:30:13 -08001812 /*
1813 * __skb_splice_bits() only fails if the output has no room left,
1814 * so no point in going over the frag_list for the error case.
1815 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001816 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001817 goto done;
1818 else if (!tlen)
1819 goto done;
1820
1821 /*
1822 * now see if we have a frag_list to map
1823 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001824 skb_walk_frags(skb, frag_iter) {
1825 if (!tlen)
1826 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001827 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001828 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001829 }
1830
1831done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001832 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001833 /*
1834 * Drop the socket lock, otherwise we have reverse
1835 * locking dependencies between sk_lock and i_mutex
1836 * here as compared to sendfile(). We enter here
1837 * with the socket lock held, and splice_to_pipe() will
1838 * grab the pipe inode lock. For sendfile() emulation,
1839 * we call into ->sendpage() with the i_mutex lock held
1840 * and networking will grab the socket lock.
1841 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001842 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001843 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001844 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001845 }
1846
Jens Axboe35f3d142010-05-20 10:43:18 +02001847 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001848}
1849
Herbert Xu357b40a2005-04-19 22:30:14 -07001850/**
1851 * skb_store_bits - store bits from kernel buffer to skb
1852 * @skb: destination buffer
1853 * @offset: offset in destination
1854 * @from: source buffer
1855 * @len: number of bytes to copy
1856 *
1857 * Copy the specified number of bytes from the source buffer to the
1858 * destination skb. This function handles all the messy bits of
1859 * traversing fragment lists and such.
1860 */
1861
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001862int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001863{
David S. Miller1a028e52007-04-27 15:21:23 -07001864 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001865 struct sk_buff *frag_iter;
1866 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001867
1868 if (offset > (int)skb->len - len)
1869 goto fault;
1870
David S. Miller1a028e52007-04-27 15:21:23 -07001871 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001872 if (copy > len)
1873 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001874 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001875 if ((len -= copy) == 0)
1876 return 0;
1877 offset += copy;
1878 from += copy;
1879 }
1880
1881 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1882 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001883 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001884
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001885 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001886
Eric Dumazet9e903e02011-10-18 21:00:24 +00001887 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001888 if ((copy = end - offset) > 0) {
1889 u8 *vaddr;
1890
1891 if (copy > len)
1892 copy = len;
1893
Eric Dumazet51c56b02012-04-05 11:35:15 +02001894 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001895 memcpy(vaddr + frag->page_offset + offset - start,
1896 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001897 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001898
1899 if ((len -= copy) == 0)
1900 return 0;
1901 offset += copy;
1902 from += copy;
1903 }
David S. Miller1a028e52007-04-27 15:21:23 -07001904 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001905 }
1906
David S. Millerfbb398a2009-06-09 00:18:59 -07001907 skb_walk_frags(skb, frag_iter) {
1908 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001909
David S. Millerfbb398a2009-06-09 00:18:59 -07001910 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001911
David S. Millerfbb398a2009-06-09 00:18:59 -07001912 end = start + frag_iter->len;
1913 if ((copy = end - offset) > 0) {
1914 if (copy > len)
1915 copy = len;
1916 if (skb_store_bits(frag_iter, offset - start,
1917 from, copy))
1918 goto fault;
1919 if ((len -= copy) == 0)
1920 return 0;
1921 offset += copy;
1922 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001923 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001924 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001925 }
1926 if (!len)
1927 return 0;
1928
1929fault:
1930 return -EFAULT;
1931}
Herbert Xu357b40a2005-04-19 22:30:14 -07001932EXPORT_SYMBOL(skb_store_bits);
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934/* Checksum skb data. */
1935
Al Viro2bbbc862006-11-14 21:37:14 -08001936__wsum skb_checksum(const struct sk_buff *skb, int offset,
1937 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
David S. Miller1a028e52007-04-27 15:21:23 -07001939 int start = skb_headlen(skb);
1940 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001941 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 int pos = 0;
1943
1944 /* Checksum header. */
1945 if (copy > 0) {
1946 if (copy > len)
1947 copy = len;
1948 csum = csum_partial(skb->data + offset, copy, csum);
1949 if ((len -= copy) == 0)
1950 return csum;
1951 offset += copy;
1952 pos = copy;
1953 }
1954
1955 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001956 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001957 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001959 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001960
Eric Dumazet51c56b02012-04-05 11:35:15 +02001961 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001963 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 if (copy > len)
1967 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001968 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001969 csum2 = csum_partial(vaddr + frag->page_offset +
1970 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001971 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 csum = csum_block_add(csum, csum2, pos);
1973 if (!(len -= copy))
1974 return csum;
1975 offset += copy;
1976 pos += copy;
1977 }
David S. Miller1a028e52007-04-27 15:21:23 -07001978 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980
David S. Millerfbb398a2009-06-09 00:18:59 -07001981 skb_walk_frags(skb, frag_iter) {
1982 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
David S. Millerfbb398a2009-06-09 00:18:59 -07001984 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
David S. Millerfbb398a2009-06-09 00:18:59 -07001986 end = start + frag_iter->len;
1987 if ((copy = end - offset) > 0) {
1988 __wsum csum2;
1989 if (copy > len)
1990 copy = len;
1991 csum2 = skb_checksum(frag_iter, offset - start,
1992 copy, 0);
1993 csum = csum_block_add(csum, csum2, pos);
1994 if ((len -= copy) == 0)
1995 return csum;
1996 offset += copy;
1997 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001999 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002001 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 return csum;
2004}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002005EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007/* Both of above in one bottle. */
2008
Al Viro81d77662006-11-14 21:37:33 -08002009__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2010 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
David S. Miller1a028e52007-04-27 15:21:23 -07002012 int start = skb_headlen(skb);
2013 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002014 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 int pos = 0;
2016
2017 /* Copy header. */
2018 if (copy > 0) {
2019 if (copy > len)
2020 copy = len;
2021 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2022 copy, csum);
2023 if ((len -= copy) == 0)
2024 return csum;
2025 offset += copy;
2026 to += copy;
2027 pos = copy;
2028 }
2029
2030 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002031 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002033 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002034
Eric Dumazet9e903e02011-10-18 21:00:24 +00002035 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002037 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 u8 *vaddr;
2039 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2040
2041 if (copy > len)
2042 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002043 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002045 frag->page_offset +
2046 offset - start, to,
2047 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002048 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 csum = csum_block_add(csum, csum2, pos);
2050 if (!(len -= copy))
2051 return csum;
2052 offset += copy;
2053 to += copy;
2054 pos += copy;
2055 }
David S. Miller1a028e52007-04-27 15:21:23 -07002056 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058
David S. Millerfbb398a2009-06-09 00:18:59 -07002059 skb_walk_frags(skb, frag_iter) {
2060 __wsum csum2;
2061 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
David S. Millerfbb398a2009-06-09 00:18:59 -07002063 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
David S. Millerfbb398a2009-06-09 00:18:59 -07002065 end = start + frag_iter->len;
2066 if ((copy = end - offset) > 0) {
2067 if (copy > len)
2068 copy = len;
2069 csum2 = skb_copy_and_csum_bits(frag_iter,
2070 offset - start,
2071 to, copy, 0);
2072 csum = csum_block_add(csum, csum2, pos);
2073 if ((len -= copy) == 0)
2074 return csum;
2075 offset += copy;
2076 to += copy;
2077 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002079 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002081 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return csum;
2083}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002084EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2087{
Al Virod3bc23e2006-11-14 21:24:49 -08002088 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 long csstart;
2090
Patrick McHardy84fa7932006-08-29 16:44:56 -07002091 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002092 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 else
2094 csstart = skb_headlen(skb);
2095
Kris Katterjohn09a62662006-01-08 22:24:28 -08002096 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002098 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 csum = 0;
2101 if (csstart != skb->len)
2102 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2103 skb->len - csstart, 0);
2104
Patrick McHardy84fa7932006-08-29 16:44:56 -07002105 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002106 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Al Virod3bc23e2006-11-14 21:24:49 -08002108 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002111EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113/**
2114 * skb_dequeue - remove from the head of the queue
2115 * @list: list to dequeue from
2116 *
2117 * Remove the head of the list. The list lock is taken so the function
2118 * may be used safely with other locking list functions. The head item is
2119 * returned or %NULL if the list is empty.
2120 */
2121
2122struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2123{
2124 unsigned long flags;
2125 struct sk_buff *result;
2126
2127 spin_lock_irqsave(&list->lock, flags);
2128 result = __skb_dequeue(list);
2129 spin_unlock_irqrestore(&list->lock, flags);
2130 return result;
2131}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002132EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134/**
2135 * skb_dequeue_tail - remove from the tail of the queue
2136 * @list: list to dequeue from
2137 *
2138 * Remove the tail of the list. The list lock is taken so the function
2139 * may be used safely with other locking list functions. The tail item is
2140 * returned or %NULL if the list is empty.
2141 */
2142struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2143{
2144 unsigned long flags;
2145 struct sk_buff *result;
2146
2147 spin_lock_irqsave(&list->lock, flags);
2148 result = __skb_dequeue_tail(list);
2149 spin_unlock_irqrestore(&list->lock, flags);
2150 return result;
2151}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002152EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154/**
2155 * skb_queue_purge - empty a list
2156 * @list: list to empty
2157 *
2158 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2159 * the list and one reference dropped. This function takes the list
2160 * lock and is atomic with respect to other list locking functions.
2161 */
2162void skb_queue_purge(struct sk_buff_head *list)
2163{
2164 struct sk_buff *skb;
2165 while ((skb = skb_dequeue(list)) != NULL)
2166 kfree_skb(skb);
2167}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002168EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170/**
2171 * skb_queue_head - queue a buffer at the list head
2172 * @list: list to use
2173 * @newsk: buffer to queue
2174 *
2175 * Queue a buffer at the start of the list. This function takes the
2176 * list lock and can be used safely with other locking &sk_buff functions
2177 * safely.
2178 *
2179 * A buffer cannot be placed on two lists at the same time.
2180 */
2181void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2182{
2183 unsigned long flags;
2184
2185 spin_lock_irqsave(&list->lock, flags);
2186 __skb_queue_head(list, newsk);
2187 spin_unlock_irqrestore(&list->lock, flags);
2188}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002189EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191/**
2192 * skb_queue_tail - queue a buffer at the list tail
2193 * @list: list to use
2194 * @newsk: buffer to queue
2195 *
2196 * Queue a buffer at the tail of the list. This function takes the
2197 * list lock and can be used safely with other locking &sk_buff functions
2198 * safely.
2199 *
2200 * A buffer cannot be placed on two lists at the same time.
2201 */
2202void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2203{
2204 unsigned long flags;
2205
2206 spin_lock_irqsave(&list->lock, flags);
2207 __skb_queue_tail(list, newsk);
2208 spin_unlock_irqrestore(&list->lock, flags);
2209}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002210EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212/**
2213 * skb_unlink - remove a buffer from a list
2214 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002215 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 *
David S. Miller8728b832005-08-09 19:25:21 -07002217 * Remove a packet from a list. The list locks are taken and this
2218 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 *
David S. Miller8728b832005-08-09 19:25:21 -07002220 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 */
David S. Miller8728b832005-08-09 19:25:21 -07002222void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
David S. Miller8728b832005-08-09 19:25:21 -07002224 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
David S. Miller8728b832005-08-09 19:25:21 -07002226 spin_lock_irqsave(&list->lock, flags);
2227 __skb_unlink(skb, list);
2228 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002230EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232/**
2233 * skb_append - append a buffer
2234 * @old: buffer to insert after
2235 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002236 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 *
2238 * Place a packet after a given packet in a list. The list locks are taken
2239 * and this function is atomic with respect to other list locked calls.
2240 * A buffer cannot be placed on two lists at the same time.
2241 */
David S. Miller8728b832005-08-09 19:25:21 -07002242void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 unsigned long flags;
2245
David S. Miller8728b832005-08-09 19:25:21 -07002246 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002247 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002248 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002250EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252/**
2253 * skb_insert - insert a buffer
2254 * @old: buffer to insert before
2255 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002256 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 *
David S. Miller8728b832005-08-09 19:25:21 -07002258 * Place a packet before a given packet in a list. The list locks are
2259 * taken and this function is atomic with respect to other list locked
2260 * calls.
2261 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 * A buffer cannot be placed on two lists at the same time.
2263 */
David S. Miller8728b832005-08-09 19:25:21 -07002264void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
2266 unsigned long flags;
2267
David S. Miller8728b832005-08-09 19:25:21 -07002268 spin_lock_irqsave(&list->lock, flags);
2269 __skb_insert(newsk, old->prev, old, list);
2270 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002272EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274static inline void skb_split_inside_header(struct sk_buff *skb,
2275 struct sk_buff* skb1,
2276 const u32 len, const int pos)
2277{
2278 int i;
2279
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002280 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2281 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 /* And move data appendix as is. */
2283 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2284 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2285
2286 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2287 skb_shinfo(skb)->nr_frags = 0;
2288 skb1->data_len = skb->data_len;
2289 skb1->len += skb1->data_len;
2290 skb->data_len = 0;
2291 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002292 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293}
2294
2295static inline void skb_split_no_header(struct sk_buff *skb,
2296 struct sk_buff* skb1,
2297 const u32 len, int pos)
2298{
2299 int i, k = 0;
2300 const int nfrags = skb_shinfo(skb)->nr_frags;
2301
2302 skb_shinfo(skb)->nr_frags = 0;
2303 skb1->len = skb1->data_len = skb->len - len;
2304 skb->len = len;
2305 skb->data_len = len - pos;
2306
2307 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002308 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
2310 if (pos + size > len) {
2311 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2312
2313 if (pos < len) {
2314 /* Split frag.
2315 * We have two variants in this case:
2316 * 1. Move all the frag to the second
2317 * part, if it is possible. F.e.
2318 * this approach is mandatory for TUX,
2319 * where splitting is expensive.
2320 * 2. Split is accurately. We make this.
2321 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002322 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002324 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2325 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 skb_shinfo(skb)->nr_frags++;
2327 }
2328 k++;
2329 } else
2330 skb_shinfo(skb)->nr_frags++;
2331 pos += size;
2332 }
2333 skb_shinfo(skb1)->nr_frags = k;
2334}
2335
2336/**
2337 * skb_split - Split fragmented skb to two parts at length len.
2338 * @skb: the buffer to split
2339 * @skb1: the buffer to receive the second part
2340 * @len: new length for skb
2341 */
2342void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2343{
2344 int pos = skb_headlen(skb);
2345
Amerigo Wang68534c62013-02-19 22:51:30 +00002346 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (len < pos) /* Split line is inside header. */
2348 skb_split_inside_header(skb, skb1, len, pos);
2349 else /* Second chunk has no header, nothing to copy. */
2350 skb_split_no_header(skb, skb1, len, pos);
2351}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002352EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002354/* Shifting from/to a cloned skb is a no-go.
2355 *
2356 * Caller cannot keep skb_shinfo related pointers past calling here!
2357 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002358static int skb_prepare_for_shift(struct sk_buff *skb)
2359{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002360 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002361}
2362
2363/**
2364 * skb_shift - Shifts paged data partially from skb to another
2365 * @tgt: buffer into which tail data gets added
2366 * @skb: buffer from which the paged data comes from
2367 * @shiftlen: shift up to this many bytes
2368 *
2369 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002370 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002371 * It's up to caller to free skb if everything was shifted.
2372 *
2373 * If @tgt runs out of frags, the whole operation is aborted.
2374 *
2375 * Skb cannot include anything else but paged data while tgt is allowed
2376 * to have non-paged data as well.
2377 *
2378 * TODO: full sized shift could be optimized but that would need
2379 * specialized skb free'er to handle frags without up-to-date nr_frags.
2380 */
2381int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2382{
2383 int from, to, merge, todo;
2384 struct skb_frag_struct *fragfrom, *fragto;
2385
2386 BUG_ON(shiftlen > skb->len);
2387 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2388
2389 todo = shiftlen;
2390 from = 0;
2391 to = skb_shinfo(tgt)->nr_frags;
2392 fragfrom = &skb_shinfo(skb)->frags[from];
2393
2394 /* Actual merge is delayed until the point when we know we can
2395 * commit all, so that we don't have to undo partial changes
2396 */
2397 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002398 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2399 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002400 merge = -1;
2401 } else {
2402 merge = to - 1;
2403
Eric Dumazet9e903e02011-10-18 21:00:24 +00002404 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002405 if (todo < 0) {
2406 if (skb_prepare_for_shift(skb) ||
2407 skb_prepare_for_shift(tgt))
2408 return 0;
2409
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002410 /* All previous frag pointers might be stale! */
2411 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002412 fragto = &skb_shinfo(tgt)->frags[merge];
2413
Eric Dumazet9e903e02011-10-18 21:00:24 +00002414 skb_frag_size_add(fragto, shiftlen);
2415 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002416 fragfrom->page_offset += shiftlen;
2417
2418 goto onlymerged;
2419 }
2420
2421 from++;
2422 }
2423
2424 /* Skip full, not-fitting skb to avoid expensive operations */
2425 if ((shiftlen == skb->len) &&
2426 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2427 return 0;
2428
2429 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2430 return 0;
2431
2432 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2433 if (to == MAX_SKB_FRAGS)
2434 return 0;
2435
2436 fragfrom = &skb_shinfo(skb)->frags[from];
2437 fragto = &skb_shinfo(tgt)->frags[to];
2438
Eric Dumazet9e903e02011-10-18 21:00:24 +00002439 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002440 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002441 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002442 from++;
2443 to++;
2444
2445 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002446 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002447 fragto->page = fragfrom->page;
2448 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002449 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002450
2451 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002452 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002453 todo = 0;
2454
2455 to++;
2456 break;
2457 }
2458 }
2459
2460 /* Ready to "commit" this state change to tgt */
2461 skb_shinfo(tgt)->nr_frags = to;
2462
2463 if (merge >= 0) {
2464 fragfrom = &skb_shinfo(skb)->frags[0];
2465 fragto = &skb_shinfo(tgt)->frags[merge];
2466
Eric Dumazet9e903e02011-10-18 21:00:24 +00002467 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002468 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002469 }
2470
2471 /* Reposition in the original skb */
2472 to = 0;
2473 while (from < skb_shinfo(skb)->nr_frags)
2474 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2475 skb_shinfo(skb)->nr_frags = to;
2476
2477 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2478
2479onlymerged:
2480 /* Most likely the tgt won't ever need its checksum anymore, skb on
2481 * the other hand might need it if it needs to be resent
2482 */
2483 tgt->ip_summed = CHECKSUM_PARTIAL;
2484 skb->ip_summed = CHECKSUM_PARTIAL;
2485
2486 /* Yak, is it really working this way? Some helper please? */
2487 skb->len -= shiftlen;
2488 skb->data_len -= shiftlen;
2489 skb->truesize -= shiftlen;
2490 tgt->len += shiftlen;
2491 tgt->data_len += shiftlen;
2492 tgt->truesize += shiftlen;
2493
2494 return shiftlen;
2495}
2496
Thomas Graf677e90e2005-06-23 20:59:51 -07002497/**
2498 * skb_prepare_seq_read - Prepare a sequential read of skb data
2499 * @skb: the buffer to read
2500 * @from: lower offset of data to be read
2501 * @to: upper offset of data to be read
2502 * @st: state variable
2503 *
2504 * Initializes the specified state variable. Must be called before
2505 * invoking skb_seq_read() for the first time.
2506 */
2507void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2508 unsigned int to, struct skb_seq_state *st)
2509{
2510 st->lower_offset = from;
2511 st->upper_offset = to;
2512 st->root_skb = st->cur_skb = skb;
2513 st->frag_idx = st->stepped_offset = 0;
2514 st->frag_data = NULL;
2515}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002516EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002517
2518/**
2519 * skb_seq_read - Sequentially read skb data
2520 * @consumed: number of bytes consumed by the caller so far
2521 * @data: destination pointer for data to be returned
2522 * @st: state variable
2523 *
2524 * Reads a block of skb data at &consumed relative to the
2525 * lower offset specified to skb_prepare_seq_read(). Assigns
2526 * the head of the data block to &data and returns the length
2527 * of the block or 0 if the end of the skb data or the upper
2528 * offset has been reached.
2529 *
2530 * The caller is not required to consume all of the data
2531 * returned, i.e. &consumed is typically set to the number
2532 * of bytes already consumed and the next call to
2533 * skb_seq_read() will return the remaining part of the block.
2534 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002535 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002536 * this limitation is the cost for zerocopy seqeuental
2537 * reads of potentially non linear data.
2538 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002539 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002540 * at the moment, state->root_skb could be replaced with
2541 * a stack for this purpose.
2542 */
2543unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2544 struct skb_seq_state *st)
2545{
2546 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2547 skb_frag_t *frag;
2548
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002549 if (unlikely(abs_offset >= st->upper_offset)) {
2550 if (st->frag_data) {
2551 kunmap_atomic(st->frag_data);
2552 st->frag_data = NULL;
2553 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002554 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002555 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002556
2557next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002558 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002559
Thomas Chenault995b3372009-05-18 21:43:27 -07002560 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002561 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002562 return block_limit - abs_offset;
2563 }
2564
2565 if (st->frag_idx == 0 && !st->frag_data)
2566 st->stepped_offset += skb_headlen(st->cur_skb);
2567
2568 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2569 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002570 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002571
2572 if (abs_offset < block_limit) {
2573 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002574 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002575
2576 *data = (u8 *) st->frag_data + frag->page_offset +
2577 (abs_offset - st->stepped_offset);
2578
2579 return block_limit - abs_offset;
2580 }
2581
2582 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002583 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002584 st->frag_data = NULL;
2585 }
2586
2587 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002588 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002589 }
2590
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002591 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002592 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002593 st->frag_data = NULL;
2594 }
2595
David S. Miller21dc3302010-08-23 00:13:46 -07002596 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002597 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002598 st->frag_idx = 0;
2599 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002600 } else if (st->cur_skb->next) {
2601 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002602 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002603 goto next_skb;
2604 }
2605
2606 return 0;
2607}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002608EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002609
2610/**
2611 * skb_abort_seq_read - Abort a sequential read of skb data
2612 * @st: state variable
2613 *
2614 * Must be called if skb_seq_read() was not called until it
2615 * returned 0.
2616 */
2617void skb_abort_seq_read(struct skb_seq_state *st)
2618{
2619 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002620 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002621}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002622EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002623
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002624#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2625
2626static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2627 struct ts_config *conf,
2628 struct ts_state *state)
2629{
2630 return skb_seq_read(offset, text, TS_SKB_CB(state));
2631}
2632
2633static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2634{
2635 skb_abort_seq_read(TS_SKB_CB(state));
2636}
2637
2638/**
2639 * skb_find_text - Find a text pattern in skb data
2640 * @skb: the buffer to look in
2641 * @from: search offset
2642 * @to: search limit
2643 * @config: textsearch configuration
2644 * @state: uninitialized textsearch state variable
2645 *
2646 * Finds a pattern in the skb data according to the specified
2647 * textsearch configuration. Use textsearch_next() to retrieve
2648 * subsequent occurrences of the pattern. Returns the offset
2649 * to the first occurrence or UINT_MAX if no match was found.
2650 */
2651unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2652 unsigned int to, struct ts_config *config,
2653 struct ts_state *state)
2654{
Phil Oesterf72b9482006-06-26 00:00:57 -07002655 unsigned int ret;
2656
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002657 config->get_next_block = skb_ts_get_next_block;
2658 config->finish = skb_ts_finish;
2659
2660 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2661
Phil Oesterf72b9482006-06-26 00:00:57 -07002662 ret = textsearch_find(config, state);
2663 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002664}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002665EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002666
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002667/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002668 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002669 * @sk: sock structure
2670 * @skb: skb structure to be appened with user data.
2671 * @getfrag: call back function to be used for getting the user data
2672 * @from: pointer to user message iov
2673 * @length: length of the iov message
2674 *
2675 * Description: This procedure append the user data in the fragment part
2676 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2677 */
2678int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002679 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002680 int len, int odd, struct sk_buff *skb),
2681 void *from, int length)
2682{
Eric Dumazetb2111722012-12-28 06:06:37 +00002683 int frg_cnt = skb_shinfo(skb)->nr_frags;
2684 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002685 int offset = 0;
2686 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002687 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002688
2689 do {
2690 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002691 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002692 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002693
Eric Dumazetb2111722012-12-28 06:06:37 +00002694 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002695 return -ENOMEM;
2696
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002697 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002698 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002699
Eric Dumazetb2111722012-12-28 06:06:37 +00002700 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2701 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002702 if (ret < 0)
2703 return -EFAULT;
2704
2705 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002706 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2707 copy);
2708 frg_cnt++;
2709 pfrag->offset += copy;
2710 get_page(pfrag->page);
2711
2712 skb->truesize += copy;
2713 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002714 skb->len += copy;
2715 skb->data_len += copy;
2716 offset += copy;
2717 length -= copy;
2718
2719 } while (length > 0);
2720
2721 return 0;
2722}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002723EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002724
Herbert Xucbb042f2006-03-20 22:43:56 -08002725/**
2726 * skb_pull_rcsum - pull skb and update receive checksum
2727 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002728 * @len: length of data pulled
2729 *
2730 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002731 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002732 * receive path processing instead of skb_pull unless you know
2733 * that the checksum difference is zero (e.g., a valid IP header)
2734 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002735 */
2736unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2737{
2738 BUG_ON(len > skb->len);
2739 skb->len -= len;
2740 BUG_ON(skb->len < skb->data_len);
2741 skb_postpull_rcsum(skb, skb->data, len);
2742 return skb->data += len;
2743}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002744EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2745
Herbert Xuf4c50d92006-06-22 03:02:40 -07002746/**
2747 * skb_segment - Perform protocol segmentation on skb.
2748 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002749 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002750 *
2751 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002752 * a pointer to the first in a list of new skbs for the segments.
2753 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002754 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002755struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002756{
2757 struct sk_buff *segs = NULL;
2758 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002759 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002760 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002761 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002762 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002763 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002764 unsigned int headroom;
2765 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002766 __be16 proto;
2767 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002768 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002769 int nfrags = skb_shinfo(skb)->nr_frags;
2770 int err = -ENOMEM;
2771 int i = 0;
2772 int pos;
2773
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002774 proto = skb_network_protocol(skb);
2775 if (unlikely(!proto))
2776 return ERR_PTR(-EINVAL);
2777
2778 csum = !!can_checksum_protocol(features, proto);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002779 __skb_push(skb, doffset);
2780 headroom = skb_headroom(skb);
2781 pos = skb_headlen(skb);
2782
2783 do {
2784 struct sk_buff *nskb;
2785 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002786 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002787 int size;
2788
2789 len = skb->len - offset;
2790 if (len > mss)
2791 len = mss;
2792
2793 hsize = skb_headlen(skb) - offset;
2794 if (hsize < 0)
2795 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002796 if (hsize > len || !sg)
2797 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002798
Herbert Xu89319d382008-12-15 23:26:06 -08002799 if (!hsize && i >= nfrags) {
2800 BUG_ON(fskb->len != len);
2801
2802 pos += len;
2803 nskb = skb_clone(fskb, GFP_ATOMIC);
2804 fskb = fskb->next;
2805
2806 if (unlikely(!nskb))
2807 goto err;
2808
Alexander Duyckec47ea82012-05-04 14:26:56 +00002809 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002810 if (skb_cow_head(nskb, doffset + headroom)) {
2811 kfree_skb(nskb);
2812 goto err;
2813 }
2814
Alexander Duyckec47ea82012-05-04 14:26:56 +00002815 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002816 skb_release_head_state(nskb);
2817 __skb_push(nskb, doffset);
2818 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002819 nskb = __alloc_skb(hsize + doffset + headroom,
2820 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2821 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002822
2823 if (unlikely(!nskb))
2824 goto err;
2825
2826 skb_reserve(nskb, headroom);
2827 __skb_put(nskb, doffset);
2828 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002829
2830 if (segs)
2831 tail->next = nskb;
2832 else
2833 segs = nskb;
2834 tail = nskb;
2835
Herbert Xu6f85a122008-08-15 14:55:02 -07002836 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002837 nskb->mac_len = skb->mac_len;
2838
Eric Dumazet3d3be432010-09-01 00:50:51 +00002839 /* nskb and skb might have different headroom */
2840 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2841 nskb->csum_start += skb_headroom(nskb) - headroom;
2842
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002843 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002844 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002845 nskb->transport_header = (nskb->network_header +
2846 skb_network_header_len(skb));
Pravin B Shelar68c33162013-02-14 14:02:41 +00002847
2848 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2849 nskb->data - tnl_hlen,
2850 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002851
Herbert Xu2f181852009-03-28 23:39:18 -07002852 if (fskb != skb_shinfo(skb)->frag_list)
Simon Horman1cdbcb72013-05-19 15:46:49 +00002853 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08002854
Herbert Xuf4c50d92006-06-22 03:02:40 -07002855 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002856 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002857 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2858 skb_put(nskb, len),
2859 len, 0);
2860 continue;
2861 }
2862
2863 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002864
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002865 skb_copy_from_linear_data_offset(skb, offset,
2866 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002867
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002868 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002869
Herbert Xu89319d382008-12-15 23:26:06 -08002870 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002871 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002872 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002873 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002874
2875 if (pos < offset) {
2876 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002877 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002878 }
2879
Herbert Xu89319d382008-12-15 23:26:06 -08002880 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002881
2882 if (pos + size <= offset + len) {
2883 i++;
2884 pos += size;
2885 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002886 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002887 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002888 }
2889
2890 frag++;
2891 }
2892
Herbert Xu89319d382008-12-15 23:26:06 -08002893 if (pos < offset + len) {
2894 struct sk_buff *fskb2 = fskb;
2895
2896 BUG_ON(pos + fskb->len != offset + len);
2897
2898 pos += fskb->len;
2899 fskb = fskb->next;
2900
2901 if (fskb2->next) {
2902 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2903 if (!fskb2)
2904 goto err;
2905 } else
2906 skb_get(fskb2);
2907
David S. Millerfbb398a2009-06-09 00:18:59 -07002908 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002909 skb_shinfo(nskb)->frag_list = fskb2;
2910 }
2911
2912skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002913 nskb->data_len = len - hsize;
2914 nskb->len += nskb->data_len;
2915 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002916
Simon Horman1cdbcb72013-05-19 15:46:49 +00002917perform_csum_check:
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002918 if (!csum) {
2919 nskb->csum = skb_checksum(nskb, doffset,
2920 nskb->len - doffset, 0);
2921 nskb->ip_summed = CHECKSUM_NONE;
2922 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002923 } while ((offset += len) < skb->len);
2924
2925 return segs;
2926
2927err:
2928 while ((skb = segs)) {
2929 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002930 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002931 }
2932 return ERR_PTR(err);
2933}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002934EXPORT_SYMBOL_GPL(skb_segment);
2935
Herbert Xu71d93b32008-12-15 23:42:33 -08002936int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2937{
2938 struct sk_buff *p = *head;
2939 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002940 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2941 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002942 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002943 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002944 unsigned int offset = skb_gro_offset(skb);
2945 unsigned int headlen = skb_headlen(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002946 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002947
Herbert Xu86911732009-01-29 14:19:50 +00002948 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002949 return -E2BIG;
2950
Herbert Xu9aaa1562009-05-26 18:50:33 +00002951 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002952 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002953 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002954 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002955 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002956 int i = skbinfo->nr_frags;
2957 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002958
Herbert Xu66e92fc2009-05-26 18:50:32 +00002959 offset -= headlen;
2960
2961 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002962 return -E2BIG;
2963
Herbert Xu9aaa1562009-05-26 18:50:33 +00002964 pinfo->nr_frags = nr_frags;
2965 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002966
Herbert Xu9aaa1562009-05-26 18:50:33 +00002967 frag = pinfo->frags + nr_frags;
2968 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002969 do {
2970 *--frag = *--frag2;
2971 } while (--i);
2972
2973 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002974 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002975
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002976 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002977 delta_truesize = skb->truesize -
2978 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002979
Herbert Xuf5572062009-01-14 20:40:03 -08002980 skb->truesize -= skb->data_len;
2981 skb->len -= skb->data_len;
2982 skb->data_len = 0;
2983
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002984 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002985 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002986 } else if (skb->head_frag) {
2987 int nr_frags = pinfo->nr_frags;
2988 skb_frag_t *frag = pinfo->frags + nr_frags;
2989 struct page *page = virt_to_head_page(skb->head);
2990 unsigned int first_size = headlen - offset;
2991 unsigned int first_offset;
2992
2993 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
2994 return -E2BIG;
2995
2996 first_offset = skb->data -
2997 (unsigned char *)page_address(page) +
2998 offset;
2999
3000 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3001
3002 frag->page.p = page;
3003 frag->page_offset = first_offset;
3004 skb_frag_size_set(frag, first_size);
3005
3006 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3007 /* We dont need to clear skbinfo->nr_frags here */
3008
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003009 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003010 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3011 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08003012 } else if (skb_gro_len(p) != pinfo->gso_size)
3013 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08003014
3015 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00003016 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08003017 if (unlikely(!nskb))
3018 return -ENOMEM;
3019
3020 __copy_skb_header(nskb, p);
3021 nskb->mac_len = p->mac_len;
3022
3023 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00003024 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003025
Herbert Xu86911732009-01-29 14:19:50 +00003026 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003027 skb_set_network_header(nskb, skb_network_offset(p));
3028 skb_set_transport_header(nskb, skb_transport_offset(p));
3029
Herbert Xu86911732009-01-29 14:19:50 +00003030 __skb_pull(p, skb_gro_offset(p));
3031 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3032 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003033
Herbert Xu71d93b32008-12-15 23:42:33 -08003034 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003035 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003036 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003037 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003038 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003039
3040 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003041 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003042 nskb->len += p->len;
3043
3044 *head = nskb;
3045 nskb->next = p->next;
3046 p->next = NULL;
3047
3048 p = nskb;
3049
3050merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003051 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003052 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003053 unsigned int eat = offset - headlen;
3054
3055 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003056 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003057 skb->data_len -= eat;
3058 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003059 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003060 }
3061
Herbert Xu67147ba2009-05-26 18:50:22 +00003062 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003063
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003064 NAPI_GRO_CB(p)->last->next = skb;
3065 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003066 skb_header_release(skb);
3067
Herbert Xu5d38a072009-01-04 16:13:40 -08003068done:
3069 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003070 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003071 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003072 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08003073
3074 NAPI_GRO_CB(skb)->same_flow = 1;
3075 return 0;
3076}
3077EXPORT_SYMBOL_GPL(skb_gro_receive);
3078
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079void __init skb_init(void)
3080{
3081 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3082 sizeof(struct sk_buff),
3083 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003084 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003085 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003086 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3087 (2*sizeof(struct sk_buff)) +
3088 sizeof(atomic_t),
3089 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003090 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003091 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092}
3093
David Howells716ea3a2007-04-02 20:19:53 -07003094/**
3095 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3096 * @skb: Socket buffer containing the buffers to be mapped
3097 * @sg: The scatter-gather list to map into
3098 * @offset: The offset into the buffer's contents to start mapping
3099 * @len: Length of buffer space to be mapped
3100 *
3101 * Fill the specified scatter-gather list with mappings/pointers into a
3102 * region of the buffer space attached to a socket buffer.
3103 */
David S. Miller51c739d2007-10-30 21:29:29 -07003104static int
3105__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003106{
David S. Miller1a028e52007-04-27 15:21:23 -07003107 int start = skb_headlen(skb);
3108 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003109 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003110 int elt = 0;
3111
3112 if (copy > 0) {
3113 if (copy > len)
3114 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003115 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003116 elt++;
3117 if ((len -= copy) == 0)
3118 return elt;
3119 offset += copy;
3120 }
3121
3122 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003123 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003124
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003125 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003126
Eric Dumazet9e903e02011-10-18 21:00:24 +00003127 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003128 if ((copy = end - offset) > 0) {
3129 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3130
3131 if (copy > len)
3132 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003133 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003134 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003135 elt++;
3136 if (!(len -= copy))
3137 return elt;
3138 offset += copy;
3139 }
David S. Miller1a028e52007-04-27 15:21:23 -07003140 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003141 }
3142
David S. Millerfbb398a2009-06-09 00:18:59 -07003143 skb_walk_frags(skb, frag_iter) {
3144 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003145
David S. Millerfbb398a2009-06-09 00:18:59 -07003146 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003147
David S. Millerfbb398a2009-06-09 00:18:59 -07003148 end = start + frag_iter->len;
3149 if ((copy = end - offset) > 0) {
3150 if (copy > len)
3151 copy = len;
3152 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3153 copy);
3154 if ((len -= copy) == 0)
3155 return elt;
3156 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003157 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003158 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003159 }
3160 BUG_ON(len);
3161 return elt;
3162}
3163
David S. Miller51c739d2007-10-30 21:29:29 -07003164int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3165{
3166 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3167
Jens Axboec46f2332007-10-31 12:06:37 +01003168 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003169
3170 return nsg;
3171}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003172EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003173
David Howells716ea3a2007-04-02 20:19:53 -07003174/**
3175 * skb_cow_data - Check that a socket buffer's data buffers are writable
3176 * @skb: The socket buffer to check.
3177 * @tailbits: Amount of trailing space to be added
3178 * @trailer: Returned pointer to the skb where the @tailbits space begins
3179 *
3180 * Make sure that the data buffers attached to a socket buffer are
3181 * writable. If they are not, private copies are made of the data buffers
3182 * and the socket buffer is set to use these instead.
3183 *
3184 * If @tailbits is given, make sure that there is space to write @tailbits
3185 * bytes of data beyond current end of socket buffer. @trailer will be
3186 * set to point to the skb in which this space begins.
3187 *
3188 * The number of scatterlist elements required to completely map the
3189 * COW'd and extended socket buffer will be returned.
3190 */
3191int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3192{
3193 int copyflag;
3194 int elt;
3195 struct sk_buff *skb1, **skb_p;
3196
3197 /* If skb is cloned or its head is paged, reallocate
3198 * head pulling out all the pages (pages are considered not writable
3199 * at the moment even if they are anonymous).
3200 */
3201 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3202 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3203 return -ENOMEM;
3204
3205 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003206 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003207 /* A little of trouble, not enough of space for trailer.
3208 * This should not happen, when stack is tuned to generate
3209 * good frames. OK, on miss we reallocate and reserve even more
3210 * space, 128 bytes is fair. */
3211
3212 if (skb_tailroom(skb) < tailbits &&
3213 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3214 return -ENOMEM;
3215
3216 /* Voila! */
3217 *trailer = skb;
3218 return 1;
3219 }
3220
3221 /* Misery. We are in troubles, going to mincer fragments... */
3222
3223 elt = 1;
3224 skb_p = &skb_shinfo(skb)->frag_list;
3225 copyflag = 0;
3226
3227 while ((skb1 = *skb_p) != NULL) {
3228 int ntail = 0;
3229
3230 /* The fragment is partially pulled by someone,
3231 * this can happen on input. Copy it and everything
3232 * after it. */
3233
3234 if (skb_shared(skb1))
3235 copyflag = 1;
3236
3237 /* If the skb is the last, worry about trailer. */
3238
3239 if (skb1->next == NULL && tailbits) {
3240 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003241 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003242 skb_tailroom(skb1) < tailbits)
3243 ntail = tailbits + 128;
3244 }
3245
3246 if (copyflag ||
3247 skb_cloned(skb1) ||
3248 ntail ||
3249 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003250 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003251 struct sk_buff *skb2;
3252
3253 /* Fuck, we are miserable poor guys... */
3254 if (ntail == 0)
3255 skb2 = skb_copy(skb1, GFP_ATOMIC);
3256 else
3257 skb2 = skb_copy_expand(skb1,
3258 skb_headroom(skb1),
3259 ntail,
3260 GFP_ATOMIC);
3261 if (unlikely(skb2 == NULL))
3262 return -ENOMEM;
3263
3264 if (skb1->sk)
3265 skb_set_owner_w(skb2, skb1->sk);
3266
3267 /* Looking around. Are we still alive?
3268 * OK, link new skb, drop old one */
3269
3270 skb2->next = skb1->next;
3271 *skb_p = skb2;
3272 kfree_skb(skb1);
3273 skb1 = skb2;
3274 }
3275 elt++;
3276 *trailer = skb1;
3277 skb_p = &skb1->next;
3278 }
3279
3280 return elt;
3281}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003282EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003283
Eric Dumazetb1faf562010-05-31 23:44:05 -07003284static void sock_rmem_free(struct sk_buff *skb)
3285{
3286 struct sock *sk = skb->sk;
3287
3288 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3289}
3290
3291/*
3292 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3293 */
3294int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3295{
Eric Dumazet110c4332012-04-06 10:49:10 +02003296 int len = skb->len;
3297
Eric Dumazetb1faf562010-05-31 23:44:05 -07003298 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003299 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003300 return -ENOMEM;
3301
3302 skb_orphan(skb);
3303 skb->sk = sk;
3304 skb->destructor = sock_rmem_free;
3305 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3306
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003307 /* before exiting rcu section, make sure dst is refcounted */
3308 skb_dst_force(skb);
3309
Eric Dumazetb1faf562010-05-31 23:44:05 -07003310 skb_queue_tail(&sk->sk_error_queue, skb);
3311 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003312 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003313 return 0;
3314}
3315EXPORT_SYMBOL(sock_queue_err_skb);
3316
Patrick Ohlyac45f602009-02-12 05:03:37 +00003317void skb_tstamp_tx(struct sk_buff *orig_skb,
3318 struct skb_shared_hwtstamps *hwtstamps)
3319{
3320 struct sock *sk = orig_skb->sk;
3321 struct sock_exterr_skb *serr;
3322 struct sk_buff *skb;
3323 int err;
3324
3325 if (!sk)
3326 return;
3327
Patrick Ohlyac45f602009-02-12 05:03:37 +00003328 if (hwtstamps) {
Willem de Bruijn2e313962013-04-23 00:39:28 +00003329 *skb_hwtstamps(orig_skb) =
Patrick Ohlyac45f602009-02-12 05:03:37 +00003330 *hwtstamps;
3331 } else {
3332 /*
3333 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003334 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003335 * store software time stamp
3336 */
Willem de Bruijn2e313962013-04-23 00:39:28 +00003337 orig_skb->tstamp = ktime_get_real();
Patrick Ohlyac45f602009-02-12 05:03:37 +00003338 }
3339
Willem de Bruijn2e313962013-04-23 00:39:28 +00003340 skb = skb_clone(orig_skb, GFP_ATOMIC);
3341 if (!skb)
3342 return;
3343
Patrick Ohlyac45f602009-02-12 05:03:37 +00003344 serr = SKB_EXT_ERR(skb);
3345 memset(serr, 0, sizeof(*serr));
3346 serr->ee.ee_errno = ENOMSG;
3347 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003348
Patrick Ohlyac45f602009-02-12 05:03:37 +00003349 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003350
Patrick Ohlyac45f602009-02-12 05:03:37 +00003351 if (err)
3352 kfree_skb(skb);
3353}
3354EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3355
Johannes Berg6e3e9392011-11-09 10:15:42 +01003356void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3357{
3358 struct sock *sk = skb->sk;
3359 struct sock_exterr_skb *serr;
3360 int err;
3361
3362 skb->wifi_acked_valid = 1;
3363 skb->wifi_acked = acked;
3364
3365 serr = SKB_EXT_ERR(skb);
3366 memset(serr, 0, sizeof(*serr));
3367 serr->ee.ee_errno = ENOMSG;
3368 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3369
3370 err = sock_queue_err_skb(sk, skb);
3371 if (err)
3372 kfree_skb(skb);
3373}
3374EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3375
Patrick Ohlyac45f602009-02-12 05:03:37 +00003376
Rusty Russellf35d9d82008-02-04 23:49:54 -05003377/**
3378 * skb_partial_csum_set - set up and verify partial csum values for packet
3379 * @skb: the skb to set
3380 * @start: the number of bytes after skb->data to start checksumming.
3381 * @off: the offset from start to place the checksum.
3382 *
3383 * For untrusted partially-checksummed packets, we need to make sure the values
3384 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3385 *
3386 * This function checks and sets those values and skb->ip_summed: if this
3387 * returns false you should drop the packet.
3388 */
3389bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3390{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003391 if (unlikely(start > skb_headlen(skb)) ||
3392 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003393 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3394 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003395 return false;
3396 }
3397 skb->ip_summed = CHECKSUM_PARTIAL;
3398 skb->csum_start = skb_headroom(skb) + start;
3399 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003400 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003401 return true;
3402}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003403EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003404
Ben Hutchings4497b072008-06-19 16:22:28 -07003405void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3406{
Joe Perchese87cc472012-05-13 21:56:26 +00003407 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3408 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003409}
Ben Hutchings4497b072008-06-19 16:22:28 -07003410EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003411
3412void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3413{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003414 if (head_stolen) {
3415 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003416 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003417 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003418 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003419 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003420}
3421EXPORT_SYMBOL(kfree_skb_partial);
3422
3423/**
3424 * skb_try_coalesce - try to merge skb to prior one
3425 * @to: prior buffer
3426 * @from: buffer to add
3427 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003428 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003429 */
3430bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3431 bool *fragstolen, int *delta_truesize)
3432{
3433 int i, delta, len = from->len;
3434
3435 *fragstolen = false;
3436
3437 if (skb_cloned(to))
3438 return false;
3439
3440 if (len <= skb_tailroom(to)) {
3441 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3442 *delta_truesize = 0;
3443 return true;
3444 }
3445
3446 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3447 return false;
3448
3449 if (skb_headlen(from) != 0) {
3450 struct page *page;
3451 unsigned int offset;
3452
3453 if (skb_shinfo(to)->nr_frags +
3454 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3455 return false;
3456
3457 if (skb_head_is_locked(from))
3458 return false;
3459
3460 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3461
3462 page = virt_to_head_page(from->head);
3463 offset = from->data - (unsigned char *)page_address(page);
3464
3465 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3466 page, offset, skb_headlen(from));
3467 *fragstolen = true;
3468 } else {
3469 if (skb_shinfo(to)->nr_frags +
3470 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3471 return false;
3472
Weiping Panf4b549a2012-09-28 20:15:30 +00003473 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003474 }
3475
3476 WARN_ON_ONCE(delta < len);
3477
3478 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3479 skb_shinfo(from)->frags,
3480 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3481 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3482
3483 if (!skb_cloned(from))
3484 skb_shinfo(from)->nr_frags = 0;
3485
Li RongQing8ea853f2012-09-18 16:53:21 +00003486 /* if the skb is not cloned this does nothing
3487 * since we set nr_frags to 0.
3488 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003489 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3490 skb_frag_ref(from, i);
3491
3492 to->truesize += delta;
3493 to->len += len;
3494 to->data_len += len;
3495
3496 *delta_truesize = delta;
3497 return true;
3498}
3499EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003500
3501/**
3502 * skb_scrub_packet - scrub an skb before sending it to another netns
3503 *
3504 * @skb: buffer to clean
3505 *
3506 * skb_scrub_packet can be used to clean an skb before injecting it in
3507 * another namespace. We have to clear all information in the skb that
3508 * could impact namespace isolation.
3509 */
3510void skb_scrub_packet(struct sk_buff *skb)
3511{
3512 skb_orphan(skb);
3513 skb->tstamp.tv64 = 0;
3514 skb->pkt_type = PACKET_HOST;
3515 skb->skb_iif = 0;
3516 skb_dst_drop(skb);
3517 skb->mark = 0;
3518 secpath_reset(skb);
3519 nf_reset(skb);
3520 nf_reset_trace(skb);
3521}
3522EXPORT_SYMBOL_GPL(skb_scrub_packet);