blob: cfd777bd6bd0cea8023cfe32e431488727982225 [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
202#ifdef NET_SKBUFF_DATA_USES_OFFSET
203 skb->mac_header = ~0U;
204#endif
205out:
206 return skb;
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/**
David S. Millerd179cd12005-08-17 14:57:30 -0700210 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * @size: size to allocate
212 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700213 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
214 * instead of head cache and allocate a cloned (child) skb.
215 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
216 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800217 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *
219 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000220 * tail room of at least size bytes. The object has a reference count
221 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 *
223 * Buffers may only be allocated from interrupts using a @gfp_mask of
224 * %GFP_ATOMIC.
225 */
Al Virodd0fc662005-10-07 07:46:04 +0100226struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700227 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Christoph Lametere18b8902006-12-06 20:33:20 -0800229 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800230 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct sk_buff *skb;
232 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700233 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Mel Gormanc93bdd02012-07-31 16:44:19 -0700235 cache = (flags & SKB_ALLOC_FCLONE)
236 ? skbuff_fclone_cache : skbuff_head_cache;
237
238 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
239 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800242 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (!skb)
244 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700245 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000247 /* We do our best to align skb_shared_info on a separate cache
248 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
249 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
250 * Both skb->head and skb_shared_info are cache line aligned.
251 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000252 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000253 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700254 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!data)
256 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000257 /* kmalloc(size) might give us more room than requested.
258 * Put skb_shared_info exactly at the end of allocated zone,
259 * to allow max possible filling before reallocation.
260 */
261 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700262 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300264 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700265 * Only clear those fields we need to clear, not those that we will
266 * actually initialise below. Hence, don't put any more fields after
267 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300268 */
269 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000270 /* Account for allocated memory : skb + skb->head */
271 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700272 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 atomic_set(&skb->users, 1);
274 skb->head = data;
275 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700276 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700277 skb->end = skb->tail + size;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000278#ifdef NET_SKBUFF_DATA_USES_OFFSET
279 skb->mac_header = ~0U;
Eric Dumazetfda55ec2013-01-07 09:28:21 +0000280 skb->transport_header = ~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000281#endif
282
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800283 /* make sure we initialize shinfo sequentially */
284 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700285 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800286 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000287 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800288
Mel Gormanc93bdd02012-07-31 16:44:19 -0700289 if (flags & SKB_ALLOC_FCLONE) {
David S. Millerd179cd12005-08-17 14:57:30 -0700290 struct sk_buff *child = skb + 1;
291 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200293 kmemcheck_annotate_bitfield(child, flags1);
294 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700295 skb->fclone = SKB_FCLONE_ORIG;
296 atomic_set(fclone_ref, 1);
297
298 child->fclone = SKB_FCLONE_UNAVAILABLE;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700299 child->pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301out:
302 return skb;
303nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800304 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 skb = NULL;
306 goto out;
307}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800308EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000311 * build_skb - build a network buffer
312 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000313 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000314 *
315 * Allocate a new &sk_buff. Caller provides space holding head and
316 * skb_shared_info. @data must have been allocated by kmalloc()
317 * The return is the new skb buffer.
318 * On a failure the return is %NULL, and @data is not freed.
319 * Notes :
320 * Before IO, driver allocates only data buffer where NIC put incoming frame
321 * Driver should add room at head (NET_SKB_PAD) and
322 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
323 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
324 * before giving packet to stack.
325 * RX rings only contains data buffers, not full skbs.
326 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000327struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000328{
329 struct skb_shared_info *shinfo;
330 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000331 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000332
333 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
334 if (!skb)
335 return NULL;
336
Eric Dumazetd3836f22012-04-27 00:33:38 +0000337 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000338
339 memset(skb, 0, offsetof(struct sk_buff, tail));
340 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000341 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000342 atomic_set(&skb->users, 1);
343 skb->head = data;
344 skb->data = data;
345 skb_reset_tail_pointer(skb);
346 skb->end = skb->tail + size;
347#ifdef NET_SKBUFF_DATA_USES_OFFSET
348 skb->mac_header = ~0U;
Eric Dumazetfda55ec2013-01-07 09:28:21 +0000349 skb->transport_header = ~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000350#endif
351
352 /* make sure we initialize shinfo sequentially */
353 shinfo = skb_shinfo(skb);
354 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
355 atomic_set(&shinfo->dataref, 1);
356 kmemcheck_annotate_variable(shinfo->destructor_arg);
357
358 return skb;
359}
360EXPORT_SYMBOL(build_skb);
361
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000362struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000363 struct page_frag frag;
364 /* we maintain a pagecount bias, so that we dont dirty cache line
365 * containing page->_count every time we allocate a fragment.
366 */
367 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000368};
369static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
370
Mel Gormanc93bdd02012-07-31 16:44:19 -0700371static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000372{
373 struct netdev_alloc_cache *nc;
374 void *data = NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000375 int order;
Eric Dumazet6f532612012-05-18 05:12:12 +0000376 unsigned long flags;
377
378 local_irq_save(flags);
379 nc = &__get_cpu_var(netdev_alloc_cache);
Eric Dumazet69b08f62012-09-26 06:46:57 +0000380 if (unlikely(!nc->frag.page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000381refill:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000382 for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) {
383 gfp_t gfp = gfp_mask;
384
385 if (order)
386 gfp |= __GFP_COMP | __GFP_NOWARN;
387 nc->frag.page = alloc_pages(gfp, order);
388 if (likely(nc->frag.page))
389 break;
390 if (--order < 0)
391 goto end;
392 }
393 nc->frag.size = PAGE_SIZE << order;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000394recycle:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000395 atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS);
396 nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS;
397 nc->frag.offset = 0;
Eric Dumazet6f532612012-05-18 05:12:12 +0000398 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000399
Eric Dumazet69b08f62012-09-26 06:46:57 +0000400 if (nc->frag.offset + fragsz > nc->frag.size) {
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000401 /* avoid unnecessary locked operations if possible */
Eric Dumazet69b08f62012-09-26 06:46:57 +0000402 if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) ||
403 atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count))
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000404 goto recycle;
405 goto refill;
Eric Dumazet6f532612012-05-18 05:12:12 +0000406 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000407
Eric Dumazet69b08f62012-09-26 06:46:57 +0000408 data = page_address(nc->frag.page) + nc->frag.offset;
409 nc->frag.offset += fragsz;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000410 nc->pagecnt_bias--;
411end:
Eric Dumazet6f532612012-05-18 05:12:12 +0000412 local_irq_restore(flags);
413 return data;
414}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700415
416/**
417 * netdev_alloc_frag - allocate a page fragment
418 * @fragsz: fragment size
419 *
420 * Allocates a frag from a page for receive buffer.
421 * Uses GFP_ATOMIC allocations.
422 */
423void *netdev_alloc_frag(unsigned int fragsz)
424{
425 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
426}
Eric Dumazet6f532612012-05-18 05:12:12 +0000427EXPORT_SYMBOL(netdev_alloc_frag);
428
429/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700430 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
431 * @dev: network device to receive on
432 * @length: length to allocate
433 * @gfp_mask: get_free_pages mask, passed to alloc_skb
434 *
435 * Allocate a new &sk_buff and assign it a usage count of one. The
436 * buffer has unspecified headroom built in. Users should allocate
437 * the headroom they think they need without accounting for the
438 * built in space. The built in space is used for optimisations.
439 *
440 * %NULL is returned if there is no free memory.
441 */
442struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
Eric Dumazet6f532612012-05-18 05:12:12 +0000443 unsigned int length, gfp_t gfp_mask)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700444{
Eric Dumazet6f532612012-05-18 05:12:12 +0000445 struct sk_buff *skb = NULL;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000446 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
447 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700448
Eric Dumazet310e1582012-07-16 13:15:52 +0200449 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700450 void *data;
451
452 if (sk_memalloc_socks())
453 gfp_mask |= __GFP_MEMALLOC;
454
455 data = __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000456
Eric Dumazet6f532612012-05-18 05:12:12 +0000457 if (likely(data)) {
458 skb = build_skb(data, fragsz);
459 if (unlikely(!skb))
460 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000461 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000462 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700463 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
464 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000465 }
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700466 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700467 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700468 skb->dev = dev;
469 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700470 return skb;
471}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800472EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Peter Zijlstra654bed12008-10-07 14:22:33 -0700474void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000475 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700476{
477 skb_fill_page_desc(skb, i, page, off, size);
478 skb->len += size;
479 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000480 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700481}
482EXPORT_SYMBOL(skb_add_rx_frag);
483
Herbert Xu27b437c2006-07-13 19:26:39 -0700484static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Herbert Xu27b437c2006-07-13 19:26:39 -0700486 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Herbert Xu27b437c2006-07-13 19:26:39 -0700488 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 do {
491 struct sk_buff *this = list;
492 list = list->next;
493 kfree_skb(this);
494 } while (list);
495}
496
Herbert Xu27b437c2006-07-13 19:26:39 -0700497static inline void skb_drop_fraglist(struct sk_buff *skb)
498{
499 skb_drop_list(&skb_shinfo(skb)->frag_list);
500}
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502static void skb_clone_fraglist(struct sk_buff *skb)
503{
504 struct sk_buff *list;
505
David S. Millerfbb398a2009-06-09 00:18:59 -0700506 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 skb_get(list);
508}
509
Eric Dumazetd3836f22012-04-27 00:33:38 +0000510static void skb_free_head(struct sk_buff *skb)
511{
512 if (skb->head_frag)
513 put_page(virt_to_head_page(skb->head));
514 else
515 kfree(skb->head);
516}
517
Adrian Bunk5bba1712006-06-29 13:02:35 -0700518static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 if (!skb->cloned ||
521 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
522 &skb_shinfo(skb)->dataref)) {
523 if (skb_shinfo(skb)->nr_frags) {
524 int i;
525 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000526 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
Shirley Maa6686f22011-07-06 12:22:12 +0000529 /*
530 * If skb buf is from userspace, we need to notify the caller
531 * the lower device DMA has done;
532 */
533 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
534 struct ubuf_info *uarg;
535
536 uarg = skb_shinfo(skb)->destructor_arg;
537 if (uarg->callback)
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000538 uarg->callback(uarg, true);
Shirley Maa6686f22011-07-06 12:22:12 +0000539 }
540
David S. Miller21dc3302010-08-23 00:13:46 -0700541 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 skb_drop_fraglist(skb);
543
Eric Dumazetd3836f22012-04-27 00:33:38 +0000544 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546}
547
548/*
549 * Free an skbuff by memory without cleaning the state.
550 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800551static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
David S. Millerd179cd12005-08-17 14:57:30 -0700553 struct sk_buff *other;
554 atomic_t *fclone_ref;
555
David S. Millerd179cd12005-08-17 14:57:30 -0700556 switch (skb->fclone) {
557 case SKB_FCLONE_UNAVAILABLE:
558 kmem_cache_free(skbuff_head_cache, skb);
559 break;
560
561 case SKB_FCLONE_ORIG:
562 fclone_ref = (atomic_t *) (skb + 2);
563 if (atomic_dec_and_test(fclone_ref))
564 kmem_cache_free(skbuff_fclone_cache, skb);
565 break;
566
567 case SKB_FCLONE_CLONE:
568 fclone_ref = (atomic_t *) (skb + 1);
569 other = skb - 1;
570
571 /* The clone portion is available for
572 * fast-cloning again.
573 */
574 skb->fclone = SKB_FCLONE_UNAVAILABLE;
575
576 if (atomic_dec_and_test(fclone_ref))
577 kmem_cache_free(skbuff_fclone_cache, other);
578 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700582static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Eric Dumazetadf30902009-06-02 05:19:30 +0000584 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#ifdef CONFIG_XFRM
586 secpath_put(skb->sp);
587#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700588 if (skb->destructor) {
589 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 skb->destructor(skb);
591 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000592#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700593 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100594#endif
595#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800596 nf_conntrack_put_reasm(skb->nfct_reasm);
597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598#ifdef CONFIG_BRIDGE_NETFILTER
599 nf_bridge_put(skb->nf_bridge);
600#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/* XXX: IS this still necessary? - JHS */
602#ifdef CONFIG_NET_SCHED
603 skb->tc_index = 0;
604#ifdef CONFIG_NET_CLS_ACT
605 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606#endif
607#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700608}
609
610/* Free everything but the sk_buff shell. */
611static void skb_release_all(struct sk_buff *skb)
612{
613 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000614 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000615 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800616}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Herbert Xu2d4baff2007-11-26 23:11:19 +0800618/**
619 * __kfree_skb - private function
620 * @skb: buffer
621 *
622 * Free an sk_buff. Release anything attached to the buffer.
623 * Clean the state. This is an internal helper function. Users should
624 * always call kfree_skb
625 */
626
627void __kfree_skb(struct sk_buff *skb)
628{
629 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 kfree_skbmem(skb);
631}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800632EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800635 * kfree_skb - free an sk_buff
636 * @skb: buffer to free
637 *
638 * Drop a reference to the buffer and free it if the usage count has
639 * hit zero.
640 */
641void kfree_skb(struct sk_buff *skb)
642{
643 if (unlikely(!skb))
644 return;
645 if (likely(atomic_read(&skb->users) == 1))
646 smp_rmb();
647 else if (likely(!atomic_dec_and_test(&skb->users)))
648 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000649 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800650 __kfree_skb(skb);
651}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800652EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800653
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700654/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000655 * skb_tx_error - report an sk_buff xmit error
656 * @skb: buffer that triggered an error
657 *
658 * Report xmit error if a device callback is tracking this skb.
659 * skb must be freed afterwards.
660 */
661void skb_tx_error(struct sk_buff *skb)
662{
663 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
664 struct ubuf_info *uarg;
665
666 uarg = skb_shinfo(skb)->destructor_arg;
667 if (uarg->callback)
668 uarg->callback(uarg, false);
669 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
670 }
671}
672EXPORT_SYMBOL(skb_tx_error);
673
674/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000675 * consume_skb - free an skbuff
676 * @skb: buffer to free
677 *
678 * Drop a ref to the buffer and free it if the usage count has hit zero
679 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
680 * is being dropped after a failure and notes that
681 */
682void consume_skb(struct sk_buff *skb)
683{
684 if (unlikely(!skb))
685 return;
686 if (likely(atomic_read(&skb->users) == 1))
687 smp_rmb();
688 else if (likely(!atomic_dec_and_test(&skb->users)))
689 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900690 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000691 __kfree_skb(skb);
692}
693EXPORT_SYMBOL(consume_skb);
694
Herbert Xudec18812007-10-14 00:37:30 -0700695static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
696{
697 new->tstamp = old->tstamp;
698 new->dev = old->dev;
699 new->transport_header = old->transport_header;
700 new->network_header = old->network_header;
701 new->mac_header = old->mac_header;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000702 new->inner_transport_header = old->inner_transport_header;
Pravin B Shelar92df9b22013-02-01 15:18:49 +0000703 new->inner_network_header = old->inner_network_header;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000704 new->inner_mac_header = old->inner_mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000705 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000706 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000707 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000708 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000709 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000710 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700711#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700712 new->sp = secpath_get(old->sp);
713#endif
714 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000715 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700716 new->local_df = old->local_df;
717 new->pkt_type = old->pkt_type;
718 new->ip_summed = old->ip_summed;
719 skb_copy_queue_mapping(new, old);
720 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000721#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700722 new->ipvs_property = old->ipvs_property;
723#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700724 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700725 new->protocol = old->protocol;
726 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800727 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700728 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000729#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700730 new->nf_trace = old->nf_trace;
731#endif
732#ifdef CONFIG_NET_SCHED
733 new->tc_index = old->tc_index;
734#ifdef CONFIG_NET_CLS_ACT
735 new->tc_verd = old->tc_verd;
736#endif
737#endif
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000738 new->vlan_proto = old->vlan_proto;
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700739 new->vlan_tci = old->vlan_tci;
740
Herbert Xudec18812007-10-14 00:37:30 -0700741 skb_copy_secmark(new, old);
742}
743
Herbert Xu82c49a32009-05-22 22:11:37 +0000744/*
745 * You should not add any new code to this function. Add it to
746 * __copy_skb_header above instead.
747 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700748static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#define C(x) n->x = skb->x
751
752 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700754 __copy_skb_header(n, skb);
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 C(len);
757 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700758 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700759 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800760 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 C(tail);
764 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800765 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000766 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800767 C(data);
768 C(truesize);
769 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 atomic_inc(&(skb_shinfo(skb)->dataref));
772 skb->cloned = 1;
773
774 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700775#undef C
776}
777
778/**
779 * skb_morph - morph one skb into another
780 * @dst: the skb to receive the contents
781 * @src: the skb to supply the contents
782 *
783 * This is identical to skb_clone except that the target skb is
784 * supplied by the user.
785 *
786 * The target skb is returned upon exit.
787 */
788struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
789{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800790 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700791 return __skb_clone(dst, src);
792}
793EXPORT_SYMBOL_GPL(skb_morph);
794
Ben Hutchings2c530402012-07-10 10:55:09 +0000795/**
796 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000797 * @skb: the skb to modify
798 * @gfp_mask: allocation priority
799 *
800 * This must be called on SKBTX_DEV_ZEROCOPY skb.
801 * It will copy all frags into kernel and drop the reference
802 * to userspace pages.
803 *
804 * If this function is called from an interrupt gfp_mask() must be
805 * %GFP_ATOMIC.
806 *
807 * Returns 0 on success or a negative error code on failure
808 * to allocate kernel memory to copy to.
809 */
810int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000811{
812 int i;
813 int num_frags = skb_shinfo(skb)->nr_frags;
814 struct page *page, *head = NULL;
815 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
816
817 for (i = 0; i < num_frags; i++) {
818 u8 *vaddr;
819 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
820
Krishna Kumar02756ed2012-07-17 02:05:29 +0000821 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000822 if (!page) {
823 while (head) {
824 struct page *next = (struct page *)head->private;
825 put_page(head);
826 head = next;
827 }
828 return -ENOMEM;
829 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200830 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000831 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000832 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200833 kunmap_atomic(vaddr);
Shirley Maa6686f22011-07-06 12:22:12 +0000834 page->private = (unsigned long)head;
835 head = page;
836 }
837
838 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000839 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000840 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000841
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000842 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000843
844 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000845 for (i = num_frags - 1; i >= 0; i--) {
846 __skb_fill_page_desc(skb, i, head, 0,
847 skb_shinfo(skb)->frags[i].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000848 head = (struct page *)head->private;
849 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000850
851 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000852 return 0;
853}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000854EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000855
Herbert Xue0053ec2007-10-14 00:37:52 -0700856/**
857 * skb_clone - duplicate an sk_buff
858 * @skb: buffer to clone
859 * @gfp_mask: allocation priority
860 *
861 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
862 * copies share the same packet data but not structure. The new
863 * buffer has a reference count of 1. If the allocation fails the
864 * function returns %NULL otherwise the new buffer is returned.
865 *
866 * If this function is called from an interrupt gfp_mask() must be
867 * %GFP_ATOMIC.
868 */
869
870struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
871{
872 struct sk_buff *n;
873
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000874 if (skb_orphan_frags(skb, gfp_mask))
875 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000876
Herbert Xue0053ec2007-10-14 00:37:52 -0700877 n = skb + 1;
878 if (skb->fclone == SKB_FCLONE_ORIG &&
879 n->fclone == SKB_FCLONE_UNAVAILABLE) {
880 atomic_t *fclone_ref = (atomic_t *) (n + 1);
881 n->fclone = SKB_FCLONE_CLONE;
882 atomic_inc(fclone_ref);
883 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700884 if (skb_pfmemalloc(skb))
885 gfp_mask |= __GFP_MEMALLOC;
886
Herbert Xue0053ec2007-10-14 00:37:52 -0700887 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
888 if (!n)
889 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200890
891 kmemcheck_annotate_bitfield(n, flags1);
892 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700893 n->fclone = SKB_FCLONE_UNAVAILABLE;
894 }
895
896 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800898EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000900static void skb_headers_offset_update(struct sk_buff *skb, int off)
901{
902 /* {transport,network,mac}_header and tail are relative to skb->head */
903 skb->transport_header += off;
904 skb->network_header += off;
905 if (skb_mac_header_was_set(skb))
906 skb->mac_header += off;
907 skb->inner_transport_header += off;
908 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000909 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
913{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700914#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 /*
916 * Shift between the two data areas in bytes
917 */
918 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700919#endif
Herbert Xudec18812007-10-14 00:37:30 -0700920
921 __copy_skb_header(new, old);
922
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700923#ifndef NET_SKBUFF_DATA_USES_OFFSET
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000924 skb_headers_offset_update(new, offset);
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700925#endif
Herbert Xu79671682006-06-22 02:40:14 -0700926 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
927 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
928 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Mel Gormanc93bdd02012-07-31 16:44:19 -0700931static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
932{
933 if (skb_pfmemalloc(skb))
934 return SKB_ALLOC_RX;
935 return 0;
936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/**
939 * skb_copy - create private copy of an sk_buff
940 * @skb: buffer to copy
941 * @gfp_mask: allocation priority
942 *
943 * Make a copy of both an &sk_buff and its data. This is used when the
944 * caller wishes to modify the data and needs a private copy of the
945 * data to alter. Returns %NULL on failure or the pointer to the buffer
946 * on success. The returned buffer has a reference count of 1.
947 *
948 * As by-product this function converts non-linear &sk_buff to linear
949 * one, so that &sk_buff becomes completely private and caller is allowed
950 * to modify all the data of returned buffer. This means that this
951 * function is not recommended for use in circumstances when only
952 * header is going to be modified. Use pskb_copy() instead.
953 */
954
Al Virodd0fc662005-10-07 07:46:04 +0100955struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000957 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000958 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700959 struct sk_buff *n = __alloc_skb(size, gfp_mask,
960 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!n)
963 return NULL;
964
965 /* Set the data pointer */
966 skb_reserve(n, headerlen);
967 /* Set the tail pointer and length */
968 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
971 BUG();
972
973 copy_skb_header(n, skb);
974 return n;
975}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800976EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000979 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000981 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 * @gfp_mask: allocation priority
983 *
984 * Make a copy of both an &sk_buff and part of its data, located
985 * in header. Fragmented data remain shared. This is used when
986 * the caller wishes to modify only header of &sk_buff and needs
987 * private copy of the header to alter. Returns %NULL on failure
988 * or the pointer to the buffer on success.
989 * The returned buffer has a reference count of 1.
990 */
991
Eric Dumazet117632e2011-12-03 21:39:53 +0000992struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Eric Dumazet117632e2011-12-03 21:39:53 +0000994 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700995 struct sk_buff *n = __alloc_skb(size, gfp_mask,
996 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (!n)
999 goto out;
1000
1001 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +00001002 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 /* Set the tail pointer and length */
1004 skb_put(n, skb_headlen(skb));
1005 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001006 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Herbert Xu25f484a2006-11-07 14:57:15 -08001008 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 n->data_len = skb->data_len;
1010 n->len = skb->len;
1011
1012 if (skb_shinfo(skb)->nr_frags) {
1013 int i;
1014
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001015 if (skb_orphan_frags(skb, gfp_mask)) {
1016 kfree_skb(n);
1017 n = NULL;
1018 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1021 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001022 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024 skb_shinfo(n)->nr_frags = i;
1025 }
1026
David S. Miller21dc3302010-08-23 00:13:46 -07001027 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1029 skb_clone_fraglist(n);
1030 }
1031
1032 copy_skb_header(n, skb);
1033out:
1034 return n;
1035}
Eric Dumazet117632e2011-12-03 21:39:53 +00001036EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038/**
1039 * pskb_expand_head - reallocate header of &sk_buff
1040 * @skb: buffer to reallocate
1041 * @nhead: room to add at head
1042 * @ntail: room to add at tail
1043 * @gfp_mask: allocation priority
1044 *
1045 * Expands (or creates identical copy, if &nhead and &ntail are zero)
1046 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
1047 * reference count of 1. Returns zero in the case of success or error,
1048 * if expansion failed. In the last case, &sk_buff is not changed.
1049 *
1050 * All the pointers pointing into skb header may change and must be
1051 * reloaded after call to this function.
1052 */
1053
Victor Fusco86a76ca2005-07-08 14:57:47 -07001054int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001055 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 int i;
1058 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001059 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 long off;
1061
Herbert Xu4edd87a2008-10-01 07:09:38 -07001062 BUG_ON(nhead < 0);
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (skb_shared(skb))
1065 BUG();
1066
1067 size = SKB_DATA_ALIGN(size);
1068
Mel Gormanc93bdd02012-07-31 16:44:19 -07001069 if (skb_pfmemalloc(skb))
1070 gfp_mask |= __GFP_MEMALLOC;
1071 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1072 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (!data)
1074 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001075 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001078 * optimized for the cases when header is void.
1079 */
1080 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1081
1082 memcpy((struct skb_shared_info *)(data + size),
1083 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001084 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Alexander Duyck3e245912012-05-04 14:26:51 +00001086 /*
1087 * if shinfo is shared we must drop the old head gracefully, but if it
1088 * is not we can just drop the old head and let the existing refcount
1089 * be since all we did is relocate the values
1090 */
1091 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001092 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001093 if (skb_orphan_frags(skb, gfp_mask))
1094 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001095 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001096 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Eric Dumazet1fd63042010-09-02 23:09:32 +00001098 if (skb_has_frag_list(skb))
1099 skb_clone_fraglist(skb);
1100
1101 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001102 } else {
1103 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 off = (data + nhead) - skb->head;
1106
1107 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001108 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001110#ifdef NET_SKBUFF_DATA_USES_OFFSET
1111 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001112 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001113#else
1114 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001115#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001116 skb->tail += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001117 skb_headers_offset_update(skb, off);
Andrea Shepard00c5a982010-07-22 09:12:35 +00001118 /* Only adjust this if it actually is csum_start rather than csum */
1119 if (skb->ip_summed == CHECKSUM_PARTIAL)
1120 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001122 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 skb->nohdr = 0;
1124 atomic_set(&skb_shinfo(skb)->dataref, 1);
1125 return 0;
1126
Shirley Maa6686f22011-07-06 12:22:12 +00001127nofrags:
1128 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129nodata:
1130 return -ENOMEM;
1131}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001132EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
1134/* Make private copy of skb with writable head and some headroom */
1135
1136struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1137{
1138 struct sk_buff *skb2;
1139 int delta = headroom - skb_headroom(skb);
1140
1141 if (delta <= 0)
1142 skb2 = pskb_copy(skb, GFP_ATOMIC);
1143 else {
1144 skb2 = skb_clone(skb, GFP_ATOMIC);
1145 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1146 GFP_ATOMIC)) {
1147 kfree_skb(skb2);
1148 skb2 = NULL;
1149 }
1150 }
1151 return skb2;
1152}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001153EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155/**
1156 * skb_copy_expand - copy and expand sk_buff
1157 * @skb: buffer to copy
1158 * @newheadroom: new free bytes at head
1159 * @newtailroom: new free bytes at tail
1160 * @gfp_mask: allocation priority
1161 *
1162 * Make a copy of both an &sk_buff and its data and while doing so
1163 * allocate additional space.
1164 *
1165 * This is used when the caller wishes to modify the data and needs a
1166 * private copy of the data to alter as well as more space for new fields.
1167 * Returns %NULL on failure or the pointer to the buffer
1168 * on success. The returned buffer has a reference count of 1.
1169 *
1170 * You must pass %GFP_ATOMIC as the allocation priority if this function
1171 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 */
1173struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001174 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001175 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 /*
1178 * Allocate the copy buffer
1179 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001180 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1181 gfp_mask, skb_alloc_rx_flag(skb),
1182 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001183 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001185 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 if (!n)
1188 return NULL;
1189
1190 skb_reserve(n, newheadroom);
1191
1192 /* Set the tail pointer and length */
1193 skb_put(n, skb->len);
1194
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001195 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 head_copy_off = 0;
1197 if (newheadroom <= head_copy_len)
1198 head_copy_len = newheadroom;
1199 else
1200 head_copy_off = newheadroom - head_copy_len;
1201
1202 /* Copy the linear header and data. */
1203 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1204 skb->len + head_copy_len))
1205 BUG();
1206
1207 copy_skb_header(n, skb);
1208
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001209 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001210 if (n->ip_summed == CHECKSUM_PARTIAL)
1211 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001212#ifdef NET_SKBUFF_DATA_USES_OFFSET
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001213 skb_headers_offset_update(n, off);
Herbert Xu52886052007-09-16 16:32:11 -07001214#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 return n;
1217}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001218EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220/**
1221 * skb_pad - zero pad the tail of an skb
1222 * @skb: buffer to pad
1223 * @pad: space to pad
1224 *
1225 * Ensure that a buffer is followed by a padding area that is zero
1226 * filled. Used by network drivers which may DMA or transfer data
1227 * beyond the buffer end onto the wire.
1228 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001229 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001231
Herbert Xu5b057c62006-06-23 02:06:41 -07001232int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Herbert Xu5b057c62006-06-23 02:06:41 -07001234 int err;
1235 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001238 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001242
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001243 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001244 if (likely(skb_cloned(skb) || ntail > 0)) {
1245 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1246 if (unlikely(err))
1247 goto free_skb;
1248 }
1249
1250 /* FIXME: The use of this function with non-linear skb's really needs
1251 * to be audited.
1252 */
1253 err = skb_linearize(skb);
1254 if (unlikely(err))
1255 goto free_skb;
1256
1257 memset(skb->data + skb->len, 0, pad);
1258 return 0;
1259
1260free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001262 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001263}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001264EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001265
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001266/**
1267 * skb_put - add data to a buffer
1268 * @skb: buffer to use
1269 * @len: amount of data to add
1270 *
1271 * This function extends the used data area of the buffer. If this would
1272 * exceed the total buffer size the kernel will panic. A pointer to the
1273 * first byte of the extra data is returned.
1274 */
1275unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1276{
1277 unsigned char *tmp = skb_tail_pointer(skb);
1278 SKB_LINEAR_ASSERT(skb);
1279 skb->tail += len;
1280 skb->len += len;
1281 if (unlikely(skb->tail > skb->end))
1282 skb_over_panic(skb, len, __builtin_return_address(0));
1283 return tmp;
1284}
1285EXPORT_SYMBOL(skb_put);
1286
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001287/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001288 * skb_push - add data to the start of a buffer
1289 * @skb: buffer to use
1290 * @len: amount of data to add
1291 *
1292 * This function extends the used data area of the buffer at the buffer
1293 * start. If this would exceed the total buffer headroom the kernel will
1294 * panic. A pointer to the first byte of the extra data is returned.
1295 */
1296unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1297{
1298 skb->data -= len;
1299 skb->len += len;
1300 if (unlikely(skb->data<skb->head))
1301 skb_under_panic(skb, len, __builtin_return_address(0));
1302 return skb->data;
1303}
1304EXPORT_SYMBOL(skb_push);
1305
1306/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001307 * skb_pull - remove data from the start of a buffer
1308 * @skb: buffer to use
1309 * @len: amount of data to remove
1310 *
1311 * This function removes data from the start of a buffer, returning
1312 * the memory to the headroom. A pointer to the next data in the buffer
1313 * is returned. Once the data has been pulled future pushes will overwrite
1314 * the old data.
1315 */
1316unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1317{
David S. Miller47d29642010-05-02 02:21:44 -07001318 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001319}
1320EXPORT_SYMBOL(skb_pull);
1321
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001322/**
1323 * skb_trim - remove end from a buffer
1324 * @skb: buffer to alter
1325 * @len: new length
1326 *
1327 * Cut the length of a buffer down by removing data from the tail. If
1328 * the buffer is already under the length specified it is not modified.
1329 * The skb must be linear.
1330 */
1331void skb_trim(struct sk_buff *skb, unsigned int len)
1332{
1333 if (skb->len > len)
1334 __skb_trim(skb, len);
1335}
1336EXPORT_SYMBOL(skb_trim);
1337
Herbert Xu3cc0e872006-06-09 16:13:38 -07001338/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
1340
Herbert Xu3cc0e872006-06-09 16:13:38 -07001341int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Herbert Xu27b437c2006-07-13 19:26:39 -07001343 struct sk_buff **fragp;
1344 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 int offset = skb_headlen(skb);
1346 int nfrags = skb_shinfo(skb)->nr_frags;
1347 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001348 int err;
1349
1350 if (skb_cloned(skb) &&
1351 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1352 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001354 i = 0;
1355 if (offset >= len)
1356 goto drop_pages;
1357
1358 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001359 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001360
1361 if (end < len) {
1362 offset = end;
1363 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001365
Eric Dumazet9e903e02011-10-18 21:00:24 +00001366 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001367
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001368drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001369 skb_shinfo(skb)->nr_frags = i;
1370
1371 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001372 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001373
David S. Miller21dc3302010-08-23 00:13:46 -07001374 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001375 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001376 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378
Herbert Xu27b437c2006-07-13 19:26:39 -07001379 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1380 fragp = &frag->next) {
1381 int end = offset + frag->len;
1382
1383 if (skb_shared(frag)) {
1384 struct sk_buff *nfrag;
1385
1386 nfrag = skb_clone(frag, GFP_ATOMIC);
1387 if (unlikely(!nfrag))
1388 return -ENOMEM;
1389
1390 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001391 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001392 frag = nfrag;
1393 *fragp = frag;
1394 }
1395
1396 if (end < len) {
1397 offset = end;
1398 continue;
1399 }
1400
1401 if (end > len &&
1402 unlikely((err = pskb_trim(frag, len - offset))))
1403 return err;
1404
1405 if (frag->next)
1406 skb_drop_list(&frag->next);
1407 break;
1408 }
1409
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001410done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001411 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 skb->data_len -= skb->len - len;
1413 skb->len = len;
1414 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001415 skb->len = len;
1416 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001417 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419
1420 return 0;
1421}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001422EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424/**
1425 * __pskb_pull_tail - advance tail of skb header
1426 * @skb: buffer to reallocate
1427 * @delta: number of bytes to advance tail
1428 *
1429 * The function makes a sense only on a fragmented &sk_buff,
1430 * it expands header moving its tail forward and copying necessary
1431 * data from fragmented part.
1432 *
1433 * &sk_buff MUST have reference count of 1.
1434 *
1435 * Returns %NULL (and &sk_buff does not change) if pull failed
1436 * or value of new tail of skb in the case of success.
1437 *
1438 * All the pointers pointing into skb header may change and must be
1439 * reloaded after call to this function.
1440 */
1441
1442/* Moves tail of skb head forward, copying data from fragmented part,
1443 * when it is necessary.
1444 * 1. It may fail due to malloc failure.
1445 * 2. It may change skb pointers.
1446 *
1447 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1448 */
1449unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1450{
1451 /* If skb has not enough free space at tail, get new one
1452 * plus 128 bytes for future expansions. If we have enough
1453 * room at tail, reallocate without expansion only if skb is cloned.
1454 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001455 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 if (eat > 0 || skb_cloned(skb)) {
1458 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1459 GFP_ATOMIC))
1460 return NULL;
1461 }
1462
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001463 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 BUG();
1465
1466 /* Optimization: no fragments, no reasons to preestimate
1467 * size of pulled pages. Superb.
1468 */
David S. Miller21dc3302010-08-23 00:13:46 -07001469 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 goto pull_pages;
1471
1472 /* Estimate size of pulled pages. */
1473 eat = delta;
1474 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001475 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1476
1477 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001479 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481
1482 /* If we need update frag list, we are in troubles.
1483 * Certainly, it possible to add an offset to skb data,
1484 * but taking into account that pulling is expected to
1485 * be very rare operation, it is worth to fight against
1486 * further bloating skb head and crucify ourselves here instead.
1487 * Pure masohism, indeed. 8)8)
1488 */
1489 if (eat) {
1490 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1491 struct sk_buff *clone = NULL;
1492 struct sk_buff *insp = NULL;
1493
1494 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001495 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 if (list->len <= eat) {
1498 /* Eaten as whole. */
1499 eat -= list->len;
1500 list = list->next;
1501 insp = list;
1502 } else {
1503 /* Eaten partially. */
1504
1505 if (skb_shared(list)) {
1506 /* Sucks! We need to fork list. :-( */
1507 clone = skb_clone(list, GFP_ATOMIC);
1508 if (!clone)
1509 return NULL;
1510 insp = list->next;
1511 list = clone;
1512 } else {
1513 /* This may be pulled without
1514 * problems. */
1515 insp = list;
1516 }
1517 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001518 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return NULL;
1520 }
1521 break;
1522 }
1523 } while (eat);
1524
1525 /* Free pulled out fragments. */
1526 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1527 skb_shinfo(skb)->frag_list = list->next;
1528 kfree_skb(list);
1529 }
1530 /* And insert new clone at head. */
1531 if (clone) {
1532 clone->next = list;
1533 skb_shinfo(skb)->frag_list = clone;
1534 }
1535 }
1536 /* Success! Now we may commit changes to skb data. */
1537
1538pull_pages:
1539 eat = delta;
1540 k = 0;
1541 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001542 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1543
1544 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001545 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001546 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 } else {
1548 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1549 if (eat) {
1550 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001551 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 eat = 0;
1553 }
1554 k++;
1555 }
1556 }
1557 skb_shinfo(skb)->nr_frags = k;
1558
1559 skb->tail += delta;
1560 skb->data_len -= delta;
1561
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001562 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001564EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Eric Dumazet22019b12011-07-29 18:37:31 +00001566/**
1567 * skb_copy_bits - copy bits from skb to kernel buffer
1568 * @skb: source skb
1569 * @offset: offset in source
1570 * @to: destination buffer
1571 * @len: number of bytes to copy
1572 *
1573 * Copy the specified number of bytes from the source skb to the
1574 * destination buffer.
1575 *
1576 * CAUTION ! :
1577 * If its prototype is ever changed,
1578 * check arch/{*}/net/{*}.S files,
1579 * since it is called from BPF assembly code.
1580 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1582{
David S. Miller1a028e52007-04-27 15:21:23 -07001583 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001584 struct sk_buff *frag_iter;
1585 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 if (offset > (int)skb->len - len)
1588 goto fault;
1589
1590 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001591 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (copy > len)
1593 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001594 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if ((len -= copy) == 0)
1596 return 0;
1597 offset += copy;
1598 to += copy;
1599 }
1600
1601 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001602 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001603 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001605 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001606
Eric Dumazet51c56b02012-04-05 11:35:15 +02001607 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if ((copy = end - offset) > 0) {
1609 u8 *vaddr;
1610
1611 if (copy > len)
1612 copy = len;
1613
Eric Dumazet51c56b02012-04-05 11:35:15 +02001614 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001616 vaddr + f->page_offset + offset - start,
1617 copy);
1618 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620 if ((len -= copy) == 0)
1621 return 0;
1622 offset += copy;
1623 to += copy;
1624 }
David S. Miller1a028e52007-04-27 15:21:23 -07001625 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
1627
David S. Millerfbb398a2009-06-09 00:18:59 -07001628 skb_walk_frags(skb, frag_iter) {
1629 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
David S. Millerfbb398a2009-06-09 00:18:59 -07001631 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
David S. Millerfbb398a2009-06-09 00:18:59 -07001633 end = start + frag_iter->len;
1634 if ((copy = end - offset) > 0) {
1635 if (copy > len)
1636 copy = len;
1637 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1638 goto fault;
1639 if ((len -= copy) == 0)
1640 return 0;
1641 offset += copy;
1642 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001644 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Shirley Maa6686f22011-07-06 12:22:12 +00001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (!len)
1648 return 0;
1649
1650fault:
1651 return -EFAULT;
1652}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001653EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Jens Axboe9c55e012007-11-06 23:30:13 -08001655/*
1656 * Callback from splice_to_pipe(), if we need to release some pages
1657 * at the end of the spd in case we error'ed out in filling the pipe.
1658 */
1659static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1660{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001661 put_page(spd->pages[i]);
1662}
Jens Axboe9c55e012007-11-06 23:30:13 -08001663
David S. Millera108d5f2012-04-23 23:06:11 -04001664static struct page *linear_to_page(struct page *page, unsigned int *len,
1665 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001666 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001667{
Eric Dumazet5640f762012-09-23 23:04:42 +00001668 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001669
Eric Dumazet5640f762012-09-23 23:04:42 +00001670 if (!sk_page_frag_refill(sk, pfrag))
1671 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001672
Eric Dumazet5640f762012-09-23 23:04:42 +00001673 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001674
Eric Dumazet5640f762012-09-23 23:04:42 +00001675 memcpy(page_address(pfrag->page) + pfrag->offset,
1676 page_address(page) + *offset, *len);
1677 *offset = pfrag->offset;
1678 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001679
Eric Dumazet5640f762012-09-23 23:04:42 +00001680 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001681}
1682
Eric Dumazet41c73a02012-04-22 12:26:16 +00001683static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1684 struct page *page,
1685 unsigned int offset)
1686{
1687 return spd->nr_pages &&
1688 spd->pages[spd->nr_pages - 1] == page &&
1689 (spd->partial[spd->nr_pages - 1].offset +
1690 spd->partial[spd->nr_pages - 1].len == offset);
1691}
1692
Jens Axboe9c55e012007-11-06 23:30:13 -08001693/*
1694 * Fill page/offset/length into spd, if it can hold more pages.
1695 */
David S. Millera108d5f2012-04-23 23:06:11 -04001696static bool spd_fill_page(struct splice_pipe_desc *spd,
1697 struct pipe_inode_info *pipe, struct page *page,
1698 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001699 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001700 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001701{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001702 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001703 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001704
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001705 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001706 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001707 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001708 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001709 }
1710 if (spd_can_coalesce(spd, page, offset)) {
1711 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001712 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001713 }
1714 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001715 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001716 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001717 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001718 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001719
David S. Millera108d5f2012-04-23 23:06:11 -04001720 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001721}
1722
David S. Millera108d5f2012-04-23 23:06:11 -04001723static bool __splice_segment(struct page *page, unsigned int poff,
1724 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001725 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001726 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001727 struct sock *sk,
1728 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001729{
1730 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001731 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001732
1733 /* skip this segment if already processed */
1734 if (*off >= plen) {
1735 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001736 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001737 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001738
Octavian Purdila2870c432008-07-15 00:49:11 -07001739 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001740 poff += *off;
1741 plen -= *off;
1742 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001743
Eric Dumazet18aafc62013-01-11 14:46:37 +00001744 do {
1745 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001746
Eric Dumazet18aafc62013-01-11 14:46:37 +00001747 if (spd_fill_page(spd, pipe, page, &flen, poff,
1748 linear, sk))
1749 return true;
1750 poff += flen;
1751 plen -= flen;
1752 *len -= flen;
1753 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001754
David S. Millera108d5f2012-04-23 23:06:11 -04001755 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001756}
1757
1758/*
David S. Millera108d5f2012-04-23 23:06:11 -04001759 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001760 * pipe is full or if we already spliced the requested length.
1761 */
David S. Millera108d5f2012-04-23 23:06:11 -04001762static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1763 unsigned int *offset, unsigned int *len,
1764 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001765{
1766 int seg;
1767
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001768 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001769 * If skb->head_frag is set, this 'linear' part is backed by a
1770 * fragment, and if the head is not shared with any clones then
1771 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001772 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001773 if (__splice_segment(virt_to_page(skb->data),
1774 (unsigned long) skb->data & (PAGE_SIZE - 1),
1775 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001776 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001777 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001778 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001779 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001780
1781 /*
1782 * then map the fragments
1783 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001784 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1785 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1786
Ian Campbellea2ab692011-08-22 23:44:58 +00001787 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001788 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001789 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001790 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001791 }
1792
David S. Millera108d5f2012-04-23 23:06:11 -04001793 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001794}
1795
1796/*
1797 * Map data from the skb to a pipe. Should handle both the linear part,
1798 * the fragments, and the frag list. It does NOT handle frag lists within
1799 * the frag list, if such a thing exists. We'd probably need to recurse to
1800 * handle that cleanly.
1801 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001802int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001803 struct pipe_inode_info *pipe, unsigned int tlen,
1804 unsigned int flags)
1805{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001806 struct partial_page partial[MAX_SKB_FRAGS];
1807 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001808 struct splice_pipe_desc spd = {
1809 .pages = pages,
1810 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001811 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001812 .flags = flags,
1813 .ops = &sock_pipe_buf_ops,
1814 .spd_release = sock_spd_release,
1815 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001816 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001817 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001818 int ret = 0;
1819
Jens Axboe9c55e012007-11-06 23:30:13 -08001820 /*
1821 * __skb_splice_bits() only fails if the output has no room left,
1822 * so no point in going over the frag_list for the error case.
1823 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001824 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001825 goto done;
1826 else if (!tlen)
1827 goto done;
1828
1829 /*
1830 * now see if we have a frag_list to map
1831 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001832 skb_walk_frags(skb, frag_iter) {
1833 if (!tlen)
1834 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001835 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001836 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001837 }
1838
1839done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001840 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001841 /*
1842 * Drop the socket lock, otherwise we have reverse
1843 * locking dependencies between sk_lock and i_mutex
1844 * here as compared to sendfile(). We enter here
1845 * with the socket lock held, and splice_to_pipe() will
1846 * grab the pipe inode lock. For sendfile() emulation,
1847 * we call into ->sendpage() with the i_mutex lock held
1848 * and networking will grab the socket lock.
1849 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001850 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001851 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001852 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001853 }
1854
Jens Axboe35f3d142010-05-20 10:43:18 +02001855 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001856}
1857
Herbert Xu357b40a2005-04-19 22:30:14 -07001858/**
1859 * skb_store_bits - store bits from kernel buffer to skb
1860 * @skb: destination buffer
1861 * @offset: offset in destination
1862 * @from: source buffer
1863 * @len: number of bytes to copy
1864 *
1865 * Copy the specified number of bytes from the source buffer to the
1866 * destination skb. This function handles all the messy bits of
1867 * traversing fragment lists and such.
1868 */
1869
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001870int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001871{
David S. Miller1a028e52007-04-27 15:21:23 -07001872 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001873 struct sk_buff *frag_iter;
1874 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001875
1876 if (offset > (int)skb->len - len)
1877 goto fault;
1878
David S. Miller1a028e52007-04-27 15:21:23 -07001879 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001880 if (copy > len)
1881 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001882 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001883 if ((len -= copy) == 0)
1884 return 0;
1885 offset += copy;
1886 from += copy;
1887 }
1888
1889 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1890 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001891 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001892
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001893 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001894
Eric Dumazet9e903e02011-10-18 21:00:24 +00001895 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001896 if ((copy = end - offset) > 0) {
1897 u8 *vaddr;
1898
1899 if (copy > len)
1900 copy = len;
1901
Eric Dumazet51c56b02012-04-05 11:35:15 +02001902 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001903 memcpy(vaddr + frag->page_offset + offset - start,
1904 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001905 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001906
1907 if ((len -= copy) == 0)
1908 return 0;
1909 offset += copy;
1910 from += copy;
1911 }
David S. Miller1a028e52007-04-27 15:21:23 -07001912 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001913 }
1914
David S. Millerfbb398a2009-06-09 00:18:59 -07001915 skb_walk_frags(skb, frag_iter) {
1916 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001917
David S. Millerfbb398a2009-06-09 00:18:59 -07001918 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001919
David S. Millerfbb398a2009-06-09 00:18:59 -07001920 end = start + frag_iter->len;
1921 if ((copy = end - offset) > 0) {
1922 if (copy > len)
1923 copy = len;
1924 if (skb_store_bits(frag_iter, offset - start,
1925 from, copy))
1926 goto fault;
1927 if ((len -= copy) == 0)
1928 return 0;
1929 offset += copy;
1930 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001931 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001932 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001933 }
1934 if (!len)
1935 return 0;
1936
1937fault:
1938 return -EFAULT;
1939}
Herbert Xu357b40a2005-04-19 22:30:14 -07001940EXPORT_SYMBOL(skb_store_bits);
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942/* Checksum skb data. */
1943
Al Viro2bbbc862006-11-14 21:37:14 -08001944__wsum skb_checksum(const struct sk_buff *skb, int offset,
1945 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
David S. Miller1a028e52007-04-27 15:21:23 -07001947 int start = skb_headlen(skb);
1948 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001949 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 int pos = 0;
1951
1952 /* Checksum header. */
1953 if (copy > 0) {
1954 if (copy > len)
1955 copy = len;
1956 csum = csum_partial(skb->data + offset, copy, csum);
1957 if ((len -= copy) == 0)
1958 return csum;
1959 offset += copy;
1960 pos = copy;
1961 }
1962
1963 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001964 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001965 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001967 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001968
Eric Dumazet51c56b02012-04-05 11:35:15 +02001969 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001971 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 if (copy > len)
1975 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001976 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001977 csum2 = csum_partial(vaddr + frag->page_offset +
1978 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001979 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 csum = csum_block_add(csum, csum2, pos);
1981 if (!(len -= copy))
1982 return csum;
1983 offset += copy;
1984 pos += copy;
1985 }
David S. Miller1a028e52007-04-27 15:21:23 -07001986 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988
David S. Millerfbb398a2009-06-09 00:18:59 -07001989 skb_walk_frags(skb, frag_iter) {
1990 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
David S. Millerfbb398a2009-06-09 00:18:59 -07001992 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
David S. Millerfbb398a2009-06-09 00:18:59 -07001994 end = start + frag_iter->len;
1995 if ((copy = end - offset) > 0) {
1996 __wsum csum2;
1997 if (copy > len)
1998 copy = len;
1999 csum2 = skb_checksum(frag_iter, offset - start,
2000 copy, 0);
2001 csum = csum_block_add(csum, csum2, pos);
2002 if ((len -= copy) == 0)
2003 return csum;
2004 offset += copy;
2005 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002007 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002009 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 return csum;
2012}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002013EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015/* Both of above in one bottle. */
2016
Al Viro81d77662006-11-14 21:37:33 -08002017__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2018 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
David S. Miller1a028e52007-04-27 15:21:23 -07002020 int start = skb_headlen(skb);
2021 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002022 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 int pos = 0;
2024
2025 /* Copy header. */
2026 if (copy > 0) {
2027 if (copy > len)
2028 copy = len;
2029 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2030 copy, csum);
2031 if ((len -= copy) == 0)
2032 return csum;
2033 offset += copy;
2034 to += copy;
2035 pos = copy;
2036 }
2037
2038 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002039 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002041 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002042
Eric Dumazet9e903e02011-10-18 21:00:24 +00002043 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002045 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 u8 *vaddr;
2047 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2048
2049 if (copy > len)
2050 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002051 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002053 frag->page_offset +
2054 offset - start, to,
2055 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002056 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 csum = csum_block_add(csum, csum2, pos);
2058 if (!(len -= copy))
2059 return csum;
2060 offset += copy;
2061 to += copy;
2062 pos += copy;
2063 }
David S. Miller1a028e52007-04-27 15:21:23 -07002064 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066
David S. Millerfbb398a2009-06-09 00:18:59 -07002067 skb_walk_frags(skb, frag_iter) {
2068 __wsum csum2;
2069 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
David S. Millerfbb398a2009-06-09 00:18:59 -07002071 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
David S. Millerfbb398a2009-06-09 00:18:59 -07002073 end = start + frag_iter->len;
2074 if ((copy = end - offset) > 0) {
2075 if (copy > len)
2076 copy = len;
2077 csum2 = skb_copy_and_csum_bits(frag_iter,
2078 offset - start,
2079 to, copy, 0);
2080 csum = csum_block_add(csum, csum2, pos);
2081 if ((len -= copy) == 0)
2082 return csum;
2083 offset += copy;
2084 to += copy;
2085 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002087 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002089 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return csum;
2091}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002092EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
2094void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2095{
Al Virod3bc23e2006-11-14 21:24:49 -08002096 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 long csstart;
2098
Patrick McHardy84fa7932006-08-29 16:44:56 -07002099 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002100 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 else
2102 csstart = skb_headlen(skb);
2103
Kris Katterjohn09a62662006-01-08 22:24:28 -08002104 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002106 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 csum = 0;
2109 if (csstart != skb->len)
2110 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2111 skb->len - csstart, 0);
2112
Patrick McHardy84fa7932006-08-29 16:44:56 -07002113 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002114 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Al Virod3bc23e2006-11-14 21:24:49 -08002116 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002119EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121/**
2122 * skb_dequeue - remove from the head of the queue
2123 * @list: list to dequeue from
2124 *
2125 * Remove the head of the list. The list lock is taken so the function
2126 * may be used safely with other locking list functions. The head item is
2127 * returned or %NULL if the list is empty.
2128 */
2129
2130struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2131{
2132 unsigned long flags;
2133 struct sk_buff *result;
2134
2135 spin_lock_irqsave(&list->lock, flags);
2136 result = __skb_dequeue(list);
2137 spin_unlock_irqrestore(&list->lock, flags);
2138 return result;
2139}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002140EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142/**
2143 * skb_dequeue_tail - remove from the tail of the queue
2144 * @list: list to dequeue from
2145 *
2146 * Remove the tail of the list. The list lock is taken so the function
2147 * may be used safely with other locking list functions. The tail item is
2148 * returned or %NULL if the list is empty.
2149 */
2150struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2151{
2152 unsigned long flags;
2153 struct sk_buff *result;
2154
2155 spin_lock_irqsave(&list->lock, flags);
2156 result = __skb_dequeue_tail(list);
2157 spin_unlock_irqrestore(&list->lock, flags);
2158 return result;
2159}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002160EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162/**
2163 * skb_queue_purge - empty a list
2164 * @list: list to empty
2165 *
2166 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2167 * the list and one reference dropped. This function takes the list
2168 * lock and is atomic with respect to other list locking functions.
2169 */
2170void skb_queue_purge(struct sk_buff_head *list)
2171{
2172 struct sk_buff *skb;
2173 while ((skb = skb_dequeue(list)) != NULL)
2174 kfree_skb(skb);
2175}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002176EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
2178/**
2179 * skb_queue_head - queue a buffer at the list head
2180 * @list: list to use
2181 * @newsk: buffer to queue
2182 *
2183 * Queue a buffer at the start of the list. This function takes the
2184 * list lock and can be used safely with other locking &sk_buff functions
2185 * safely.
2186 *
2187 * A buffer cannot be placed on two lists at the same time.
2188 */
2189void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2190{
2191 unsigned long flags;
2192
2193 spin_lock_irqsave(&list->lock, flags);
2194 __skb_queue_head(list, newsk);
2195 spin_unlock_irqrestore(&list->lock, flags);
2196}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002197EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199/**
2200 * skb_queue_tail - queue a buffer at the list tail
2201 * @list: list to use
2202 * @newsk: buffer to queue
2203 *
2204 * Queue a buffer at the tail of the list. This function takes the
2205 * list lock and can be used safely with other locking &sk_buff functions
2206 * safely.
2207 *
2208 * A buffer cannot be placed on two lists at the same time.
2209 */
2210void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2211{
2212 unsigned long flags;
2213
2214 spin_lock_irqsave(&list->lock, flags);
2215 __skb_queue_tail(list, newsk);
2216 spin_unlock_irqrestore(&list->lock, flags);
2217}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002218EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220/**
2221 * skb_unlink - remove a buffer from a list
2222 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002223 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 *
David S. Miller8728b832005-08-09 19:25:21 -07002225 * Remove a packet from a list. The list locks are taken and this
2226 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 *
David S. Miller8728b832005-08-09 19:25:21 -07002228 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 */
David S. Miller8728b832005-08-09 19:25:21 -07002230void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
David S. Miller8728b832005-08-09 19:25:21 -07002232 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
David S. Miller8728b832005-08-09 19:25:21 -07002234 spin_lock_irqsave(&list->lock, flags);
2235 __skb_unlink(skb, list);
2236 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002238EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240/**
2241 * skb_append - append a buffer
2242 * @old: buffer to insert after
2243 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002244 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 *
2246 * Place a packet after a given packet in a list. The list locks are taken
2247 * and this function is atomic with respect to other list locked calls.
2248 * A buffer cannot be placed on two lists at the same time.
2249 */
David S. Miller8728b832005-08-09 19:25:21 -07002250void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
2252 unsigned long flags;
2253
David S. Miller8728b832005-08-09 19:25:21 -07002254 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002255 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002256 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002258EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260/**
2261 * skb_insert - insert a buffer
2262 * @old: buffer to insert before
2263 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002264 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 *
David S. Miller8728b832005-08-09 19:25:21 -07002266 * Place a packet before a given packet in a list. The list locks are
2267 * taken and this function is atomic with respect to other list locked
2268 * calls.
2269 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 * A buffer cannot be placed on two lists at the same time.
2271 */
David S. Miller8728b832005-08-09 19:25:21 -07002272void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 unsigned long flags;
2275
David S. Miller8728b832005-08-09 19:25:21 -07002276 spin_lock_irqsave(&list->lock, flags);
2277 __skb_insert(newsk, old->prev, old, list);
2278 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002280EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282static inline void skb_split_inside_header(struct sk_buff *skb,
2283 struct sk_buff* skb1,
2284 const u32 len, const int pos)
2285{
2286 int i;
2287
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002288 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2289 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 /* And move data appendix as is. */
2291 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2292 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2293
2294 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2295 skb_shinfo(skb)->nr_frags = 0;
2296 skb1->data_len = skb->data_len;
2297 skb1->len += skb1->data_len;
2298 skb->data_len = 0;
2299 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002300 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303static inline void skb_split_no_header(struct sk_buff *skb,
2304 struct sk_buff* skb1,
2305 const u32 len, int pos)
2306{
2307 int i, k = 0;
2308 const int nfrags = skb_shinfo(skb)->nr_frags;
2309
2310 skb_shinfo(skb)->nr_frags = 0;
2311 skb1->len = skb1->data_len = skb->len - len;
2312 skb->len = len;
2313 skb->data_len = len - pos;
2314
2315 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002316 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 if (pos + size > len) {
2319 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2320
2321 if (pos < len) {
2322 /* Split frag.
2323 * We have two variants in this case:
2324 * 1. Move all the frag to the second
2325 * part, if it is possible. F.e.
2326 * this approach is mandatory for TUX,
2327 * where splitting is expensive.
2328 * 2. Split is accurately. We make this.
2329 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002330 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002332 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2333 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 skb_shinfo(skb)->nr_frags++;
2335 }
2336 k++;
2337 } else
2338 skb_shinfo(skb)->nr_frags++;
2339 pos += size;
2340 }
2341 skb_shinfo(skb1)->nr_frags = k;
2342}
2343
2344/**
2345 * skb_split - Split fragmented skb to two parts at length len.
2346 * @skb: the buffer to split
2347 * @skb1: the buffer to receive the second part
2348 * @len: new length for skb
2349 */
2350void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2351{
2352 int pos = skb_headlen(skb);
2353
Amerigo Wang68534c62013-02-19 22:51:30 +00002354 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (len < pos) /* Split line is inside header. */
2356 skb_split_inside_header(skb, skb1, len, pos);
2357 else /* Second chunk has no header, nothing to copy. */
2358 skb_split_no_header(skb, skb1, len, pos);
2359}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002360EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002362/* Shifting from/to a cloned skb is a no-go.
2363 *
2364 * Caller cannot keep skb_shinfo related pointers past calling here!
2365 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002366static int skb_prepare_for_shift(struct sk_buff *skb)
2367{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002368 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002369}
2370
2371/**
2372 * skb_shift - Shifts paged data partially from skb to another
2373 * @tgt: buffer into which tail data gets added
2374 * @skb: buffer from which the paged data comes from
2375 * @shiftlen: shift up to this many bytes
2376 *
2377 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002378 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002379 * It's up to caller to free skb if everything was shifted.
2380 *
2381 * If @tgt runs out of frags, the whole operation is aborted.
2382 *
2383 * Skb cannot include anything else but paged data while tgt is allowed
2384 * to have non-paged data as well.
2385 *
2386 * TODO: full sized shift could be optimized but that would need
2387 * specialized skb free'er to handle frags without up-to-date nr_frags.
2388 */
2389int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2390{
2391 int from, to, merge, todo;
2392 struct skb_frag_struct *fragfrom, *fragto;
2393
2394 BUG_ON(shiftlen > skb->len);
2395 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2396
2397 todo = shiftlen;
2398 from = 0;
2399 to = skb_shinfo(tgt)->nr_frags;
2400 fragfrom = &skb_shinfo(skb)->frags[from];
2401
2402 /* Actual merge is delayed until the point when we know we can
2403 * commit all, so that we don't have to undo partial changes
2404 */
2405 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002406 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2407 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002408 merge = -1;
2409 } else {
2410 merge = to - 1;
2411
Eric Dumazet9e903e02011-10-18 21:00:24 +00002412 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002413 if (todo < 0) {
2414 if (skb_prepare_for_shift(skb) ||
2415 skb_prepare_for_shift(tgt))
2416 return 0;
2417
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002418 /* All previous frag pointers might be stale! */
2419 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002420 fragto = &skb_shinfo(tgt)->frags[merge];
2421
Eric Dumazet9e903e02011-10-18 21:00:24 +00002422 skb_frag_size_add(fragto, shiftlen);
2423 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002424 fragfrom->page_offset += shiftlen;
2425
2426 goto onlymerged;
2427 }
2428
2429 from++;
2430 }
2431
2432 /* Skip full, not-fitting skb to avoid expensive operations */
2433 if ((shiftlen == skb->len) &&
2434 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2435 return 0;
2436
2437 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2438 return 0;
2439
2440 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2441 if (to == MAX_SKB_FRAGS)
2442 return 0;
2443
2444 fragfrom = &skb_shinfo(skb)->frags[from];
2445 fragto = &skb_shinfo(tgt)->frags[to];
2446
Eric Dumazet9e903e02011-10-18 21:00:24 +00002447 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002448 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002449 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002450 from++;
2451 to++;
2452
2453 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002454 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002455 fragto->page = fragfrom->page;
2456 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002457 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002458
2459 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002460 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002461 todo = 0;
2462
2463 to++;
2464 break;
2465 }
2466 }
2467
2468 /* Ready to "commit" this state change to tgt */
2469 skb_shinfo(tgt)->nr_frags = to;
2470
2471 if (merge >= 0) {
2472 fragfrom = &skb_shinfo(skb)->frags[0];
2473 fragto = &skb_shinfo(tgt)->frags[merge];
2474
Eric Dumazet9e903e02011-10-18 21:00:24 +00002475 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002476 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002477 }
2478
2479 /* Reposition in the original skb */
2480 to = 0;
2481 while (from < skb_shinfo(skb)->nr_frags)
2482 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2483 skb_shinfo(skb)->nr_frags = to;
2484
2485 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2486
2487onlymerged:
2488 /* Most likely the tgt won't ever need its checksum anymore, skb on
2489 * the other hand might need it if it needs to be resent
2490 */
2491 tgt->ip_summed = CHECKSUM_PARTIAL;
2492 skb->ip_summed = CHECKSUM_PARTIAL;
2493
2494 /* Yak, is it really working this way? Some helper please? */
2495 skb->len -= shiftlen;
2496 skb->data_len -= shiftlen;
2497 skb->truesize -= shiftlen;
2498 tgt->len += shiftlen;
2499 tgt->data_len += shiftlen;
2500 tgt->truesize += shiftlen;
2501
2502 return shiftlen;
2503}
2504
Thomas Graf677e90e2005-06-23 20:59:51 -07002505/**
2506 * skb_prepare_seq_read - Prepare a sequential read of skb data
2507 * @skb: the buffer to read
2508 * @from: lower offset of data to be read
2509 * @to: upper offset of data to be read
2510 * @st: state variable
2511 *
2512 * Initializes the specified state variable. Must be called before
2513 * invoking skb_seq_read() for the first time.
2514 */
2515void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2516 unsigned int to, struct skb_seq_state *st)
2517{
2518 st->lower_offset = from;
2519 st->upper_offset = to;
2520 st->root_skb = st->cur_skb = skb;
2521 st->frag_idx = st->stepped_offset = 0;
2522 st->frag_data = NULL;
2523}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002524EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002525
2526/**
2527 * skb_seq_read - Sequentially read skb data
2528 * @consumed: number of bytes consumed by the caller so far
2529 * @data: destination pointer for data to be returned
2530 * @st: state variable
2531 *
2532 * Reads a block of skb data at &consumed relative to the
2533 * lower offset specified to skb_prepare_seq_read(). Assigns
2534 * the head of the data block to &data and returns the length
2535 * of the block or 0 if the end of the skb data or the upper
2536 * offset has been reached.
2537 *
2538 * The caller is not required to consume all of the data
2539 * returned, i.e. &consumed is typically set to the number
2540 * of bytes already consumed and the next call to
2541 * skb_seq_read() will return the remaining part of the block.
2542 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002543 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002544 * this limitation is the cost for zerocopy seqeuental
2545 * reads of potentially non linear data.
2546 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002547 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002548 * at the moment, state->root_skb could be replaced with
2549 * a stack for this purpose.
2550 */
2551unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2552 struct skb_seq_state *st)
2553{
2554 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2555 skb_frag_t *frag;
2556
2557 if (unlikely(abs_offset >= st->upper_offset))
2558 return 0;
2559
2560next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002561 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002562
Thomas Chenault995b3372009-05-18 21:43:27 -07002563 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002564 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002565 return block_limit - abs_offset;
2566 }
2567
2568 if (st->frag_idx == 0 && !st->frag_data)
2569 st->stepped_offset += skb_headlen(st->cur_skb);
2570
2571 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2572 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002573 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002574
2575 if (abs_offset < block_limit) {
2576 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002577 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002578
2579 *data = (u8 *) st->frag_data + frag->page_offset +
2580 (abs_offset - st->stepped_offset);
2581
2582 return block_limit - abs_offset;
2583 }
2584
2585 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002586 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002587 st->frag_data = NULL;
2588 }
2589
2590 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002591 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002592 }
2593
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002594 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002595 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002596 st->frag_data = NULL;
2597 }
2598
David S. Miller21dc3302010-08-23 00:13:46 -07002599 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002600 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002601 st->frag_idx = 0;
2602 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002603 } else if (st->cur_skb->next) {
2604 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002605 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002606 goto next_skb;
2607 }
2608
2609 return 0;
2610}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002611EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002612
2613/**
2614 * skb_abort_seq_read - Abort a sequential read of skb data
2615 * @st: state variable
2616 *
2617 * Must be called if skb_seq_read() was not called until it
2618 * returned 0.
2619 */
2620void skb_abort_seq_read(struct skb_seq_state *st)
2621{
2622 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002623 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002624}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002625EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002626
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002627#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2628
2629static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2630 struct ts_config *conf,
2631 struct ts_state *state)
2632{
2633 return skb_seq_read(offset, text, TS_SKB_CB(state));
2634}
2635
2636static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2637{
2638 skb_abort_seq_read(TS_SKB_CB(state));
2639}
2640
2641/**
2642 * skb_find_text - Find a text pattern in skb data
2643 * @skb: the buffer to look in
2644 * @from: search offset
2645 * @to: search limit
2646 * @config: textsearch configuration
2647 * @state: uninitialized textsearch state variable
2648 *
2649 * Finds a pattern in the skb data according to the specified
2650 * textsearch configuration. Use textsearch_next() to retrieve
2651 * subsequent occurrences of the pattern. Returns the offset
2652 * to the first occurrence or UINT_MAX if no match was found.
2653 */
2654unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2655 unsigned int to, struct ts_config *config,
2656 struct ts_state *state)
2657{
Phil Oesterf72b9482006-06-26 00:00:57 -07002658 unsigned int ret;
2659
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002660 config->get_next_block = skb_ts_get_next_block;
2661 config->finish = skb_ts_finish;
2662
2663 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2664
Phil Oesterf72b9482006-06-26 00:00:57 -07002665 ret = textsearch_find(config, state);
2666 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002667}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002668EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002669
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002670/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002671 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002672 * @sk: sock structure
2673 * @skb: skb structure to be appened with user data.
2674 * @getfrag: call back function to be used for getting the user data
2675 * @from: pointer to user message iov
2676 * @length: length of the iov message
2677 *
2678 * Description: This procedure append the user data in the fragment part
2679 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2680 */
2681int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002682 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002683 int len, int odd, struct sk_buff *skb),
2684 void *from, int length)
2685{
Eric Dumazetb2111722012-12-28 06:06:37 +00002686 int frg_cnt = skb_shinfo(skb)->nr_frags;
2687 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002688 int offset = 0;
2689 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002690 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002691
2692 do {
2693 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002694 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002695 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002696
Eric Dumazetb2111722012-12-28 06:06:37 +00002697 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002698 return -ENOMEM;
2699
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002700 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002701 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002702
Eric Dumazetb2111722012-12-28 06:06:37 +00002703 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2704 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002705 if (ret < 0)
2706 return -EFAULT;
2707
2708 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002709 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2710 copy);
2711 frg_cnt++;
2712 pfrag->offset += copy;
2713 get_page(pfrag->page);
2714
2715 skb->truesize += copy;
2716 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002717 skb->len += copy;
2718 skb->data_len += copy;
2719 offset += copy;
2720 length -= copy;
2721
2722 } while (length > 0);
2723
2724 return 0;
2725}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002726EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002727
Herbert Xucbb042f2006-03-20 22:43:56 -08002728/**
2729 * skb_pull_rcsum - pull skb and update receive checksum
2730 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002731 * @len: length of data pulled
2732 *
2733 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002734 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002735 * receive path processing instead of skb_pull unless you know
2736 * that the checksum difference is zero (e.g., a valid IP header)
2737 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002738 */
2739unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2740{
2741 BUG_ON(len > skb->len);
2742 skb->len -= len;
2743 BUG_ON(skb->len < skb->data_len);
2744 skb_postpull_rcsum(skb, skb->data, len);
2745 return skb->data += len;
2746}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002747EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2748
Herbert Xuf4c50d92006-06-22 03:02:40 -07002749/**
2750 * skb_segment - Perform protocol segmentation on skb.
2751 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002752 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002753 *
2754 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002755 * a pointer to the first in a list of new skbs for the segments.
2756 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002757 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002758struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002759{
2760 struct sk_buff *segs = NULL;
2761 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002762 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002763 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002764 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002765 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002766 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002767 unsigned int headroom;
2768 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002769 __be16 proto;
2770 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002771 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002772 int nfrags = skb_shinfo(skb)->nr_frags;
2773 int err = -ENOMEM;
2774 int i = 0;
2775 int pos;
2776
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002777 proto = skb_network_protocol(skb);
2778 if (unlikely(!proto))
2779 return ERR_PTR(-EINVAL);
2780
2781 csum = !!can_checksum_protocol(features, proto);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002782 __skb_push(skb, doffset);
2783 headroom = skb_headroom(skb);
2784 pos = skb_headlen(skb);
2785
2786 do {
2787 struct sk_buff *nskb;
2788 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002789 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002790 int size;
2791
2792 len = skb->len - offset;
2793 if (len > mss)
2794 len = mss;
2795
2796 hsize = skb_headlen(skb) - offset;
2797 if (hsize < 0)
2798 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002799 if (hsize > len || !sg)
2800 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002801
Herbert Xu89319d382008-12-15 23:26:06 -08002802 if (!hsize && i >= nfrags) {
2803 BUG_ON(fskb->len != len);
2804
2805 pos += len;
2806 nskb = skb_clone(fskb, GFP_ATOMIC);
2807 fskb = fskb->next;
2808
2809 if (unlikely(!nskb))
2810 goto err;
2811
Alexander Duyckec47ea82012-05-04 14:26:56 +00002812 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002813 if (skb_cow_head(nskb, doffset + headroom)) {
2814 kfree_skb(nskb);
2815 goto err;
2816 }
2817
Alexander Duyckec47ea82012-05-04 14:26:56 +00002818 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002819 skb_release_head_state(nskb);
2820 __skb_push(nskb, doffset);
2821 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002822 nskb = __alloc_skb(hsize + doffset + headroom,
2823 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2824 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002825
2826 if (unlikely(!nskb))
2827 goto err;
2828
2829 skb_reserve(nskb, headroom);
2830 __skb_put(nskb, doffset);
2831 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002832
2833 if (segs)
2834 tail->next = nskb;
2835 else
2836 segs = nskb;
2837 tail = nskb;
2838
Herbert Xu6f85a122008-08-15 14:55:02 -07002839 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002840 nskb->mac_len = skb->mac_len;
2841
Eric Dumazet3d3be432010-09-01 00:50:51 +00002842 /* nskb and skb might have different headroom */
2843 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2844 nskb->csum_start += skb_headroom(nskb) - headroom;
2845
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002846 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002847 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002848 nskb->transport_header = (nskb->network_header +
2849 skb_network_header_len(skb));
Pravin B Shelar68c33162013-02-14 14:02:41 +00002850
2851 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2852 nskb->data - tnl_hlen,
2853 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002854
Herbert Xu2f181852009-03-28 23:39:18 -07002855 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002856 continue;
2857
Herbert Xuf4c50d92006-06-22 03:02:40 -07002858 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002859 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002860 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2861 skb_put(nskb, len),
2862 len, 0);
2863 continue;
2864 }
2865
2866 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002867
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002868 skb_copy_from_linear_data_offset(skb, offset,
2869 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002870
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002871 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002872
Herbert Xu89319d382008-12-15 23:26:06 -08002873 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002874 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002875 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002876 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002877
2878 if (pos < offset) {
2879 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002880 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002881 }
2882
Herbert Xu89319d382008-12-15 23:26:06 -08002883 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002884
2885 if (pos + size <= offset + len) {
2886 i++;
2887 pos += size;
2888 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002889 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002890 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002891 }
2892
2893 frag++;
2894 }
2895
Herbert Xu89319d382008-12-15 23:26:06 -08002896 if (pos < offset + len) {
2897 struct sk_buff *fskb2 = fskb;
2898
2899 BUG_ON(pos + fskb->len != offset + len);
2900
2901 pos += fskb->len;
2902 fskb = fskb->next;
2903
2904 if (fskb2->next) {
2905 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2906 if (!fskb2)
2907 goto err;
2908 } else
2909 skb_get(fskb2);
2910
David S. Millerfbb398a2009-06-09 00:18:59 -07002911 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002912 skb_shinfo(nskb)->frag_list = fskb2;
2913 }
2914
2915skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002916 nskb->data_len = len - hsize;
2917 nskb->len += nskb->data_len;
2918 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002919
2920 if (!csum) {
2921 nskb->csum = skb_checksum(nskb, doffset,
2922 nskb->len - doffset, 0);
2923 nskb->ip_summed = CHECKSUM_NONE;
2924 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002925 } while ((offset += len) < skb->len);
2926
2927 return segs;
2928
2929err:
2930 while ((skb = segs)) {
2931 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002932 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002933 }
2934 return ERR_PTR(err);
2935}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002936EXPORT_SYMBOL_GPL(skb_segment);
2937
Herbert Xu71d93b32008-12-15 23:42:33 -08002938int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2939{
2940 struct sk_buff *p = *head;
2941 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002942 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2943 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002944 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002945 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002946 unsigned int offset = skb_gro_offset(skb);
2947 unsigned int headlen = skb_headlen(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002948 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002949
Herbert Xu86911732009-01-29 14:19:50 +00002950 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002951 return -E2BIG;
2952
Herbert Xu9aaa1562009-05-26 18:50:33 +00002953 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002954 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002955 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002956 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002957 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002958 int i = skbinfo->nr_frags;
2959 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002960
Herbert Xu66e92fc2009-05-26 18:50:32 +00002961 offset -= headlen;
2962
2963 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002964 return -E2BIG;
2965
Herbert Xu9aaa1562009-05-26 18:50:33 +00002966 pinfo->nr_frags = nr_frags;
2967 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002968
Herbert Xu9aaa1562009-05-26 18:50:33 +00002969 frag = pinfo->frags + nr_frags;
2970 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002971 do {
2972 *--frag = *--frag2;
2973 } while (--i);
2974
2975 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002976 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002977
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002978 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002979 delta_truesize = skb->truesize -
2980 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002981
Herbert Xuf5572062009-01-14 20:40:03 -08002982 skb->truesize -= skb->data_len;
2983 skb->len -= skb->data_len;
2984 skb->data_len = 0;
2985
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002986 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002987 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002988 } else if (skb->head_frag) {
2989 int nr_frags = pinfo->nr_frags;
2990 skb_frag_t *frag = pinfo->frags + nr_frags;
2991 struct page *page = virt_to_head_page(skb->head);
2992 unsigned int first_size = headlen - offset;
2993 unsigned int first_offset;
2994
2995 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
2996 return -E2BIG;
2997
2998 first_offset = skb->data -
2999 (unsigned char *)page_address(page) +
3000 offset;
3001
3002 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3003
3004 frag->page.p = page;
3005 frag->page_offset = first_offset;
3006 skb_frag_size_set(frag, first_size);
3007
3008 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3009 /* We dont need to clear skbinfo->nr_frags here */
3010
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003011 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003012 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3013 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08003014 } else if (skb_gro_len(p) != pinfo->gso_size)
3015 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08003016
3017 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00003018 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08003019 if (unlikely(!nskb))
3020 return -ENOMEM;
3021
3022 __copy_skb_header(nskb, p);
3023 nskb->mac_len = p->mac_len;
3024
3025 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00003026 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003027
Herbert Xu86911732009-01-29 14:19:50 +00003028 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003029 skb_set_network_header(nskb, skb_network_offset(p));
3030 skb_set_transport_header(nskb, skb_transport_offset(p));
3031
Herbert Xu86911732009-01-29 14:19:50 +00003032 __skb_pull(p, skb_gro_offset(p));
3033 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3034 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003035
Herbert Xu71d93b32008-12-15 23:42:33 -08003036 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003037 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003038 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003039 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003040 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003041
3042 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003043 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003044 nskb->len += p->len;
3045
3046 *head = nskb;
3047 nskb->next = p->next;
3048 p->next = NULL;
3049
3050 p = nskb;
3051
3052merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003053 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003054 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003055 unsigned int eat = offset - headlen;
3056
3057 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003058 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003059 skb->data_len -= eat;
3060 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003061 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003062 }
3063
Herbert Xu67147ba2009-05-26 18:50:22 +00003064 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003065
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003066 NAPI_GRO_CB(p)->last->next = skb;
3067 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003068 skb_header_release(skb);
3069
Herbert Xu5d38a072009-01-04 16:13:40 -08003070done:
3071 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003072 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003073 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003074 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08003075
3076 NAPI_GRO_CB(skb)->same_flow = 1;
3077 return 0;
3078}
3079EXPORT_SYMBOL_GPL(skb_gro_receive);
3080
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081void __init skb_init(void)
3082{
3083 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3084 sizeof(struct sk_buff),
3085 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003086 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003087 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003088 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3089 (2*sizeof(struct sk_buff)) +
3090 sizeof(atomic_t),
3091 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003092 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003093 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095
David Howells716ea3a2007-04-02 20:19:53 -07003096/**
3097 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3098 * @skb: Socket buffer containing the buffers to be mapped
3099 * @sg: The scatter-gather list to map into
3100 * @offset: The offset into the buffer's contents to start mapping
3101 * @len: Length of buffer space to be mapped
3102 *
3103 * Fill the specified scatter-gather list with mappings/pointers into a
3104 * region of the buffer space attached to a socket buffer.
3105 */
David S. Miller51c739d2007-10-30 21:29:29 -07003106static int
3107__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003108{
David S. Miller1a028e52007-04-27 15:21:23 -07003109 int start = skb_headlen(skb);
3110 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003111 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003112 int elt = 0;
3113
3114 if (copy > 0) {
3115 if (copy > len)
3116 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003117 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003118 elt++;
3119 if ((len -= copy) == 0)
3120 return elt;
3121 offset += copy;
3122 }
3123
3124 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003125 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003126
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003127 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003128
Eric Dumazet9e903e02011-10-18 21:00:24 +00003129 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003130 if ((copy = end - offset) > 0) {
3131 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3132
3133 if (copy > len)
3134 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003135 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003136 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003137 elt++;
3138 if (!(len -= copy))
3139 return elt;
3140 offset += copy;
3141 }
David S. Miller1a028e52007-04-27 15:21:23 -07003142 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003143 }
3144
David S. Millerfbb398a2009-06-09 00:18:59 -07003145 skb_walk_frags(skb, frag_iter) {
3146 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003147
David S. Millerfbb398a2009-06-09 00:18:59 -07003148 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003149
David S. Millerfbb398a2009-06-09 00:18:59 -07003150 end = start + frag_iter->len;
3151 if ((copy = end - offset) > 0) {
3152 if (copy > len)
3153 copy = len;
3154 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3155 copy);
3156 if ((len -= copy) == 0)
3157 return elt;
3158 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003159 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003160 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003161 }
3162 BUG_ON(len);
3163 return elt;
3164}
3165
David S. Miller51c739d2007-10-30 21:29:29 -07003166int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3167{
3168 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3169
Jens Axboec46f2332007-10-31 12:06:37 +01003170 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003171
3172 return nsg;
3173}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003174EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003175
David Howells716ea3a2007-04-02 20:19:53 -07003176/**
3177 * skb_cow_data - Check that a socket buffer's data buffers are writable
3178 * @skb: The socket buffer to check.
3179 * @tailbits: Amount of trailing space to be added
3180 * @trailer: Returned pointer to the skb where the @tailbits space begins
3181 *
3182 * Make sure that the data buffers attached to a socket buffer are
3183 * writable. If they are not, private copies are made of the data buffers
3184 * and the socket buffer is set to use these instead.
3185 *
3186 * If @tailbits is given, make sure that there is space to write @tailbits
3187 * bytes of data beyond current end of socket buffer. @trailer will be
3188 * set to point to the skb in which this space begins.
3189 *
3190 * The number of scatterlist elements required to completely map the
3191 * COW'd and extended socket buffer will be returned.
3192 */
3193int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3194{
3195 int copyflag;
3196 int elt;
3197 struct sk_buff *skb1, **skb_p;
3198
3199 /* If skb is cloned or its head is paged, reallocate
3200 * head pulling out all the pages (pages are considered not writable
3201 * at the moment even if they are anonymous).
3202 */
3203 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3204 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3205 return -ENOMEM;
3206
3207 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003208 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003209 /* A little of trouble, not enough of space for trailer.
3210 * This should not happen, when stack is tuned to generate
3211 * good frames. OK, on miss we reallocate and reserve even more
3212 * space, 128 bytes is fair. */
3213
3214 if (skb_tailroom(skb) < tailbits &&
3215 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3216 return -ENOMEM;
3217
3218 /* Voila! */
3219 *trailer = skb;
3220 return 1;
3221 }
3222
3223 /* Misery. We are in troubles, going to mincer fragments... */
3224
3225 elt = 1;
3226 skb_p = &skb_shinfo(skb)->frag_list;
3227 copyflag = 0;
3228
3229 while ((skb1 = *skb_p) != NULL) {
3230 int ntail = 0;
3231
3232 /* The fragment is partially pulled by someone,
3233 * this can happen on input. Copy it and everything
3234 * after it. */
3235
3236 if (skb_shared(skb1))
3237 copyflag = 1;
3238
3239 /* If the skb is the last, worry about trailer. */
3240
3241 if (skb1->next == NULL && tailbits) {
3242 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003243 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003244 skb_tailroom(skb1) < tailbits)
3245 ntail = tailbits + 128;
3246 }
3247
3248 if (copyflag ||
3249 skb_cloned(skb1) ||
3250 ntail ||
3251 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003252 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003253 struct sk_buff *skb2;
3254
3255 /* Fuck, we are miserable poor guys... */
3256 if (ntail == 0)
3257 skb2 = skb_copy(skb1, GFP_ATOMIC);
3258 else
3259 skb2 = skb_copy_expand(skb1,
3260 skb_headroom(skb1),
3261 ntail,
3262 GFP_ATOMIC);
3263 if (unlikely(skb2 == NULL))
3264 return -ENOMEM;
3265
3266 if (skb1->sk)
3267 skb_set_owner_w(skb2, skb1->sk);
3268
3269 /* Looking around. Are we still alive?
3270 * OK, link new skb, drop old one */
3271
3272 skb2->next = skb1->next;
3273 *skb_p = skb2;
3274 kfree_skb(skb1);
3275 skb1 = skb2;
3276 }
3277 elt++;
3278 *trailer = skb1;
3279 skb_p = &skb1->next;
3280 }
3281
3282 return elt;
3283}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003284EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003285
Eric Dumazetb1faf562010-05-31 23:44:05 -07003286static void sock_rmem_free(struct sk_buff *skb)
3287{
3288 struct sock *sk = skb->sk;
3289
3290 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3291}
3292
3293/*
3294 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3295 */
3296int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3297{
Eric Dumazet110c4332012-04-06 10:49:10 +02003298 int len = skb->len;
3299
Eric Dumazetb1faf562010-05-31 23:44:05 -07003300 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003301 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003302 return -ENOMEM;
3303
3304 skb_orphan(skb);
3305 skb->sk = sk;
3306 skb->destructor = sock_rmem_free;
3307 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3308
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003309 /* before exiting rcu section, make sure dst is refcounted */
3310 skb_dst_force(skb);
3311
Eric Dumazetb1faf562010-05-31 23:44:05 -07003312 skb_queue_tail(&sk->sk_error_queue, skb);
3313 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003314 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003315 return 0;
3316}
3317EXPORT_SYMBOL(sock_queue_err_skb);
3318
Patrick Ohlyac45f602009-02-12 05:03:37 +00003319void skb_tstamp_tx(struct sk_buff *orig_skb,
3320 struct skb_shared_hwtstamps *hwtstamps)
3321{
3322 struct sock *sk = orig_skb->sk;
3323 struct sock_exterr_skb *serr;
3324 struct sk_buff *skb;
3325 int err;
3326
3327 if (!sk)
3328 return;
3329
Patrick Ohlyac45f602009-02-12 05:03:37 +00003330 if (hwtstamps) {
Willem de Bruijn2e313962013-04-23 00:39:28 +00003331 *skb_hwtstamps(orig_skb) =
Patrick Ohlyac45f602009-02-12 05:03:37 +00003332 *hwtstamps;
3333 } else {
3334 /*
3335 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003336 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003337 * store software time stamp
3338 */
Willem de Bruijn2e313962013-04-23 00:39:28 +00003339 orig_skb->tstamp = ktime_get_real();
Patrick Ohlyac45f602009-02-12 05:03:37 +00003340 }
3341
Willem de Bruijn2e313962013-04-23 00:39:28 +00003342 skb = skb_clone(orig_skb, GFP_ATOMIC);
3343 if (!skb)
3344 return;
3345
Patrick Ohlyac45f602009-02-12 05:03:37 +00003346 serr = SKB_EXT_ERR(skb);
3347 memset(serr, 0, sizeof(*serr));
3348 serr->ee.ee_errno = ENOMSG;
3349 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003350
Patrick Ohlyac45f602009-02-12 05:03:37 +00003351 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003352
Patrick Ohlyac45f602009-02-12 05:03:37 +00003353 if (err)
3354 kfree_skb(skb);
3355}
3356EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3357
Johannes Berg6e3e9392011-11-09 10:15:42 +01003358void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3359{
3360 struct sock *sk = skb->sk;
3361 struct sock_exterr_skb *serr;
3362 int err;
3363
3364 skb->wifi_acked_valid = 1;
3365 skb->wifi_acked = acked;
3366
3367 serr = SKB_EXT_ERR(skb);
3368 memset(serr, 0, sizeof(*serr));
3369 serr->ee.ee_errno = ENOMSG;
3370 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3371
3372 err = sock_queue_err_skb(sk, skb);
3373 if (err)
3374 kfree_skb(skb);
3375}
3376EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3377
Patrick Ohlyac45f602009-02-12 05:03:37 +00003378
Rusty Russellf35d9d82008-02-04 23:49:54 -05003379/**
3380 * skb_partial_csum_set - set up and verify partial csum values for packet
3381 * @skb: the skb to set
3382 * @start: the number of bytes after skb->data to start checksumming.
3383 * @off: the offset from start to place the checksum.
3384 *
3385 * For untrusted partially-checksummed packets, we need to make sure the values
3386 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3387 *
3388 * This function checks and sets those values and skb->ip_summed: if this
3389 * returns false you should drop the packet.
3390 */
3391bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3392{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003393 if (unlikely(start > skb_headlen(skb)) ||
3394 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003395 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3396 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003397 return false;
3398 }
3399 skb->ip_summed = CHECKSUM_PARTIAL;
3400 skb->csum_start = skb_headroom(skb) + start;
3401 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003402 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003403 return true;
3404}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003405EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003406
Ben Hutchings4497b072008-06-19 16:22:28 -07003407void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3408{
Joe Perchese87cc472012-05-13 21:56:26 +00003409 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3410 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003411}
Ben Hutchings4497b072008-06-19 16:22:28 -07003412EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003413
3414void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3415{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003416 if (head_stolen) {
3417 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003418 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003419 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003420 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003421 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003422}
3423EXPORT_SYMBOL(kfree_skb_partial);
3424
3425/**
3426 * skb_try_coalesce - try to merge skb to prior one
3427 * @to: prior buffer
3428 * @from: buffer to add
3429 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003430 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003431 */
3432bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3433 bool *fragstolen, int *delta_truesize)
3434{
3435 int i, delta, len = from->len;
3436
3437 *fragstolen = false;
3438
3439 if (skb_cloned(to))
3440 return false;
3441
3442 if (len <= skb_tailroom(to)) {
3443 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3444 *delta_truesize = 0;
3445 return true;
3446 }
3447
3448 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3449 return false;
3450
3451 if (skb_headlen(from) != 0) {
3452 struct page *page;
3453 unsigned int offset;
3454
3455 if (skb_shinfo(to)->nr_frags +
3456 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3457 return false;
3458
3459 if (skb_head_is_locked(from))
3460 return false;
3461
3462 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3463
3464 page = virt_to_head_page(from->head);
3465 offset = from->data - (unsigned char *)page_address(page);
3466
3467 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3468 page, offset, skb_headlen(from));
3469 *fragstolen = true;
3470 } else {
3471 if (skb_shinfo(to)->nr_frags +
3472 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3473 return false;
3474
Weiping Panf4b549a2012-09-28 20:15:30 +00003475 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003476 }
3477
3478 WARN_ON_ONCE(delta < len);
3479
3480 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3481 skb_shinfo(from)->frags,
3482 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3483 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3484
3485 if (!skb_cloned(from))
3486 skb_shinfo(from)->nr_frags = 0;
3487
Li RongQing8ea853f2012-09-18 16:53:21 +00003488 /* if the skb is not cloned this does nothing
3489 * since we set nr_frags to 0.
3490 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003491 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3492 skb_frag_ref(from, i);
3493
3494 to->truesize += delta;
3495 to->len += len;
3496 to->data_len += len;
3497
3498 *delta_truesize = delta;
3499 return true;
3500}
3501EXPORT_SYMBOL(skb_try_coalesce);