blob: c35b81b80fe208bbc5109cb3217755d48b0f3d31 [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{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700486 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700487 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Herbert Xu27b437c2006-07-13 19:26:39 -0700490static inline void skb_drop_fraglist(struct sk_buff *skb)
491{
492 skb_drop_list(&skb_shinfo(skb)->frag_list);
493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static void skb_clone_fraglist(struct sk_buff *skb)
496{
497 struct sk_buff *list;
498
David S. Millerfbb398a2009-06-09 00:18:59 -0700499 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 skb_get(list);
501}
502
Eric Dumazetd3836f22012-04-27 00:33:38 +0000503static void skb_free_head(struct sk_buff *skb)
504{
505 if (skb->head_frag)
506 put_page(virt_to_head_page(skb->head));
507 else
508 kfree(skb->head);
509}
510
Adrian Bunk5bba1712006-06-29 13:02:35 -0700511static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 if (!skb->cloned ||
514 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
515 &skb_shinfo(skb)->dataref)) {
516 if (skb_shinfo(skb)->nr_frags) {
517 int i;
518 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000519 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
Shirley Maa6686f22011-07-06 12:22:12 +0000522 /*
523 * If skb buf is from userspace, we need to notify the caller
524 * the lower device DMA has done;
525 */
526 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
527 struct ubuf_info *uarg;
528
529 uarg = skb_shinfo(skb)->destructor_arg;
530 if (uarg->callback)
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000531 uarg->callback(uarg, true);
Shirley Maa6686f22011-07-06 12:22:12 +0000532 }
533
David S. Miller21dc3302010-08-23 00:13:46 -0700534 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 skb_drop_fraglist(skb);
536
Eric Dumazetd3836f22012-04-27 00:33:38 +0000537 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539}
540
541/*
542 * Free an skbuff by memory without cleaning the state.
543 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800544static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
David S. Millerd179cd12005-08-17 14:57:30 -0700546 struct sk_buff *other;
547 atomic_t *fclone_ref;
548
David S. Millerd179cd12005-08-17 14:57:30 -0700549 switch (skb->fclone) {
550 case SKB_FCLONE_UNAVAILABLE:
551 kmem_cache_free(skbuff_head_cache, skb);
552 break;
553
554 case SKB_FCLONE_ORIG:
555 fclone_ref = (atomic_t *) (skb + 2);
556 if (atomic_dec_and_test(fclone_ref))
557 kmem_cache_free(skbuff_fclone_cache, skb);
558 break;
559
560 case SKB_FCLONE_CLONE:
561 fclone_ref = (atomic_t *) (skb + 1);
562 other = skb - 1;
563
564 /* The clone portion is available for
565 * fast-cloning again.
566 */
567 skb->fclone = SKB_FCLONE_UNAVAILABLE;
568
569 if (atomic_dec_and_test(fclone_ref))
570 kmem_cache_free(skbuff_fclone_cache, other);
571 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700575static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Eric Dumazetadf30902009-06-02 05:19:30 +0000577 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578#ifdef CONFIG_XFRM
579 secpath_put(skb->sp);
580#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700581 if (skb->destructor) {
582 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 skb->destructor(skb);
584 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000585#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700586 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100587#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#ifdef CONFIG_BRIDGE_NETFILTER
589 nf_bridge_put(skb->nf_bridge);
590#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/* XXX: IS this still necessary? - JHS */
592#ifdef CONFIG_NET_SCHED
593 skb->tc_index = 0;
594#ifdef CONFIG_NET_CLS_ACT
595 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596#endif
597#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700598}
599
600/* Free everything but the sk_buff shell. */
601static void skb_release_all(struct sk_buff *skb)
602{
603 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000604 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000605 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800606}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Herbert Xu2d4baff2007-11-26 23:11:19 +0800608/**
609 * __kfree_skb - private function
610 * @skb: buffer
611 *
612 * Free an sk_buff. Release anything attached to the buffer.
613 * Clean the state. This is an internal helper function. Users should
614 * always call kfree_skb
615 */
616
617void __kfree_skb(struct sk_buff *skb)
618{
619 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 kfree_skbmem(skb);
621}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800622EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800625 * kfree_skb - free an sk_buff
626 * @skb: buffer to free
627 *
628 * Drop a reference to the buffer and free it if the usage count has
629 * hit zero.
630 */
631void kfree_skb(struct sk_buff *skb)
632{
633 if (unlikely(!skb))
634 return;
635 if (likely(atomic_read(&skb->users) == 1))
636 smp_rmb();
637 else if (likely(!atomic_dec_and_test(&skb->users)))
638 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000639 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800640 __kfree_skb(skb);
641}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800642EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800643
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700644void kfree_skb_list(struct sk_buff *segs)
645{
646 while (segs) {
647 struct sk_buff *next = segs->next;
648
649 kfree_skb(segs);
650 segs = next;
651 }
652}
653EXPORT_SYMBOL(kfree_skb_list);
654
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700655/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000656 * skb_tx_error - report an sk_buff xmit error
657 * @skb: buffer that triggered an error
658 *
659 * Report xmit error if a device callback is tracking this skb.
660 * skb must be freed afterwards.
661 */
662void skb_tx_error(struct sk_buff *skb)
663{
664 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
665 struct ubuf_info *uarg;
666
667 uarg = skb_shinfo(skb)->destructor_arg;
668 if (uarg->callback)
669 uarg->callback(uarg, false);
670 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
671 }
672}
673EXPORT_SYMBOL(skb_tx_error);
674
675/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000676 * consume_skb - free an skbuff
677 * @skb: buffer to free
678 *
679 * Drop a ref to the buffer and free it if the usage count has hit zero
680 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
681 * is being dropped after a failure and notes that
682 */
683void consume_skb(struct sk_buff *skb)
684{
685 if (unlikely(!skb))
686 return;
687 if (likely(atomic_read(&skb->users) == 1))
688 smp_rmb();
689 else if (likely(!atomic_dec_and_test(&skb->users)))
690 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900691 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000692 __kfree_skb(skb);
693}
694EXPORT_SYMBOL(consume_skb);
695
Herbert Xudec18812007-10-14 00:37:30 -0700696static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
697{
698 new->tstamp = old->tstamp;
699 new->dev = old->dev;
700 new->transport_header = old->transport_header;
701 new->network_header = old->network_header;
702 new->mac_header = old->mac_header;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000703 new->inner_transport_header = old->inner_transport_header;
Pravin B Shelar92df9b22013-02-01 15:18:49 +0000704 new->inner_network_header = old->inner_network_header;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000705 new->inner_mac_header = old->inner_mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000706 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000707 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000708 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000709 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000710 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000711 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700712#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700713 new->sp = secpath_get(old->sp);
714#endif
715 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000716 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700717 new->local_df = old->local_df;
718 new->pkt_type = old->pkt_type;
719 new->ip_summed = old->ip_summed;
720 skb_copy_queue_mapping(new, old);
721 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000722#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700723 new->ipvs_property = old->ipvs_property;
724#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700725 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700726 new->protocol = old->protocol;
727 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800728 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700729 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000730#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700731 new->nf_trace = old->nf_trace;
732#endif
733#ifdef CONFIG_NET_SCHED
734 new->tc_index = old->tc_index;
735#ifdef CONFIG_NET_CLS_ACT
736 new->tc_verd = old->tc_verd;
737#endif
738#endif
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000739 new->vlan_proto = old->vlan_proto;
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700740 new->vlan_tci = old->vlan_tci;
741
Herbert Xudec18812007-10-14 00:37:30 -0700742 skb_copy_secmark(new, old);
743}
744
Herbert Xu82c49a32009-05-22 22:11:37 +0000745/*
746 * You should not add any new code to this function. Add it to
747 * __copy_skb_header above instead.
748 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700749static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#define C(x) n->x = skb->x
752
753 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700755 __copy_skb_header(n, skb);
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 C(len);
758 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700759 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700760 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800761 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 C(tail);
765 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800766 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000767 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800768 C(data);
769 C(truesize);
770 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 atomic_inc(&(skb_shinfo(skb)->dataref));
773 skb->cloned = 1;
774
775 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700776#undef C
777}
778
779/**
780 * skb_morph - morph one skb into another
781 * @dst: the skb to receive the contents
782 * @src: the skb to supply the contents
783 *
784 * This is identical to skb_clone except that the target skb is
785 * supplied by the user.
786 *
787 * The target skb is returned upon exit.
788 */
789struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
790{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800791 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700792 return __skb_clone(dst, src);
793}
794EXPORT_SYMBOL_GPL(skb_morph);
795
Ben Hutchings2c530402012-07-10 10:55:09 +0000796/**
797 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000798 * @skb: the skb to modify
799 * @gfp_mask: allocation priority
800 *
801 * This must be called on SKBTX_DEV_ZEROCOPY skb.
802 * It will copy all frags into kernel and drop the reference
803 * to userspace pages.
804 *
805 * If this function is called from an interrupt gfp_mask() must be
806 * %GFP_ATOMIC.
807 *
808 * Returns 0 on success or a negative error code on failure
809 * to allocate kernel memory to copy to.
810 */
811int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000812{
813 int i;
814 int num_frags = skb_shinfo(skb)->nr_frags;
815 struct page *page, *head = NULL;
816 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
817
818 for (i = 0; i < num_frags; i++) {
819 u8 *vaddr;
820 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
821
Krishna Kumar02756ed2012-07-17 02:05:29 +0000822 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000823 if (!page) {
824 while (head) {
825 struct page *next = (struct page *)head->private;
826 put_page(head);
827 head = next;
828 }
829 return -ENOMEM;
830 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200831 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000832 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000833 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200834 kunmap_atomic(vaddr);
Shirley Maa6686f22011-07-06 12:22:12 +0000835 page->private = (unsigned long)head;
836 head = page;
837 }
838
839 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000840 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000841 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000842
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000843 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000844
845 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000846 for (i = num_frags - 1; i >= 0; i--) {
847 __skb_fill_page_desc(skb, i, head, 0,
848 skb_shinfo(skb)->frags[i].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000849 head = (struct page *)head->private;
850 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000851
852 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000853 return 0;
854}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000855EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000856
Herbert Xue0053ec2007-10-14 00:37:52 -0700857/**
858 * skb_clone - duplicate an sk_buff
859 * @skb: buffer to clone
860 * @gfp_mask: allocation priority
861 *
862 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
863 * copies share the same packet data but not structure. The new
864 * buffer has a reference count of 1. If the allocation fails the
865 * function returns %NULL otherwise the new buffer is returned.
866 *
867 * If this function is called from an interrupt gfp_mask() must be
868 * %GFP_ATOMIC.
869 */
870
871struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
872{
873 struct sk_buff *n;
874
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000875 if (skb_orphan_frags(skb, gfp_mask))
876 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000877
Herbert Xue0053ec2007-10-14 00:37:52 -0700878 n = skb + 1;
879 if (skb->fclone == SKB_FCLONE_ORIG &&
880 n->fclone == SKB_FCLONE_UNAVAILABLE) {
881 atomic_t *fclone_ref = (atomic_t *) (n + 1);
882 n->fclone = SKB_FCLONE_CLONE;
883 atomic_inc(fclone_ref);
884 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700885 if (skb_pfmemalloc(skb))
886 gfp_mask |= __GFP_MEMALLOC;
887
Herbert Xue0053ec2007-10-14 00:37:52 -0700888 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
889 if (!n)
890 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200891
892 kmemcheck_annotate_bitfield(n, flags1);
893 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700894 n->fclone = SKB_FCLONE_UNAVAILABLE;
895 }
896
897 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800899EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000901static void skb_headers_offset_update(struct sk_buff *skb, int off)
902{
903 /* {transport,network,mac}_header and tail are relative to skb->head */
904 skb->transport_header += off;
905 skb->network_header += off;
906 if (skb_mac_header_was_set(skb))
907 skb->mac_header += off;
908 skb->inner_transport_header += off;
909 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000910 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
914{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700915#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /*
917 * Shift between the two data areas in bytes
918 */
919 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700920#endif
Herbert Xudec18812007-10-14 00:37:30 -0700921
922 __copy_skb_header(new, old);
923
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700924#ifndef NET_SKBUFF_DATA_USES_OFFSET
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000925 skb_headers_offset_update(new, offset);
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700926#endif
Herbert Xu79671682006-06-22 02:40:14 -0700927 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
928 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
929 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Mel Gormanc93bdd02012-07-31 16:44:19 -0700932static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
933{
934 if (skb_pfmemalloc(skb))
935 return SKB_ALLOC_RX;
936 return 0;
937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/**
940 * skb_copy - create private copy of an sk_buff
941 * @skb: buffer to copy
942 * @gfp_mask: allocation priority
943 *
944 * Make a copy of both an &sk_buff and its data. This is used when the
945 * caller wishes to modify the data and needs a private copy of the
946 * data to alter. Returns %NULL on failure or the pointer to the buffer
947 * on success. The returned buffer has a reference count of 1.
948 *
949 * As by-product this function converts non-linear &sk_buff to linear
950 * one, so that &sk_buff becomes completely private and caller is allowed
951 * to modify all the data of returned buffer. This means that this
952 * function is not recommended for use in circumstances when only
953 * header is going to be modified. Use pskb_copy() instead.
954 */
955
Al Virodd0fc662005-10-07 07:46:04 +0100956struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000958 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000959 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700960 struct sk_buff *n = __alloc_skb(size, gfp_mask,
961 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (!n)
964 return NULL;
965
966 /* Set the data pointer */
967 skb_reserve(n, headerlen);
968 /* Set the tail pointer and length */
969 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
972 BUG();
973
974 copy_skb_header(n, skb);
975 return n;
976}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800977EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000980 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000982 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 * @gfp_mask: allocation priority
984 *
985 * Make a copy of both an &sk_buff and part of its data, located
986 * in header. Fragmented data remain shared. This is used when
987 * the caller wishes to modify only header of &sk_buff and needs
988 * private copy of the header to alter. Returns %NULL on failure
989 * or the pointer to the buffer on success.
990 * The returned buffer has a reference count of 1.
991 */
992
Eric Dumazet117632e2011-12-03 21:39:53 +0000993struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Eric Dumazet117632e2011-12-03 21:39:53 +0000995 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700996 struct sk_buff *n = __alloc_skb(size, gfp_mask,
997 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (!n)
1000 goto out;
1001
1002 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +00001003 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 /* Set the tail pointer and length */
1005 skb_put(n, skb_headlen(skb));
1006 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001007 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Herbert Xu25f484a2006-11-07 14:57:15 -08001009 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 n->data_len = skb->data_len;
1011 n->len = skb->len;
1012
1013 if (skb_shinfo(skb)->nr_frags) {
1014 int i;
1015
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001016 if (skb_orphan_frags(skb, gfp_mask)) {
1017 kfree_skb(n);
1018 n = NULL;
1019 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1022 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001023 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025 skb_shinfo(n)->nr_frags = i;
1026 }
1027
David S. Miller21dc3302010-08-23 00:13:46 -07001028 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1030 skb_clone_fraglist(n);
1031 }
1032
1033 copy_skb_header(n, skb);
1034out:
1035 return n;
1036}
Eric Dumazet117632e2011-12-03 21:39:53 +00001037EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039/**
1040 * pskb_expand_head - reallocate header of &sk_buff
1041 * @skb: buffer to reallocate
1042 * @nhead: room to add at head
1043 * @ntail: room to add at tail
1044 * @gfp_mask: allocation priority
1045 *
1046 * Expands (or creates identical copy, if &nhead and &ntail are zero)
1047 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
1048 * reference count of 1. Returns zero in the case of success or error,
1049 * if expansion failed. In the last case, &sk_buff is not changed.
1050 *
1051 * All the pointers pointing into skb header may change and must be
1052 * reloaded after call to this function.
1053 */
1054
Victor Fusco86a76ca2005-07-08 14:57:47 -07001055int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001056 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 int i;
1059 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001060 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 long off;
1062
Herbert Xu4edd87a2008-10-01 07:09:38 -07001063 BUG_ON(nhead < 0);
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (skb_shared(skb))
1066 BUG();
1067
1068 size = SKB_DATA_ALIGN(size);
1069
Mel Gormanc93bdd02012-07-31 16:44:19 -07001070 if (skb_pfmemalloc(skb))
1071 gfp_mask |= __GFP_MEMALLOC;
1072 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1073 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (!data)
1075 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001076 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001079 * optimized for the cases when header is void.
1080 */
1081 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1082
1083 memcpy((struct skb_shared_info *)(data + size),
1084 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001085 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Alexander Duyck3e245912012-05-04 14:26:51 +00001087 /*
1088 * if shinfo is shared we must drop the old head gracefully, but if it
1089 * is not we can just drop the old head and let the existing refcount
1090 * be since all we did is relocate the values
1091 */
1092 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001093 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001094 if (skb_orphan_frags(skb, gfp_mask))
1095 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001096 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001097 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Eric Dumazet1fd63042010-09-02 23:09:32 +00001099 if (skb_has_frag_list(skb))
1100 skb_clone_fraglist(skb);
1101
1102 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001103 } else {
1104 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 off = (data + nhead) - skb->head;
1107
1108 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001109 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001111#ifdef NET_SKBUFF_DATA_USES_OFFSET
1112 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001113 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001114#else
1115 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001116#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001117 skb->tail += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001118 skb_headers_offset_update(skb, off);
Andrea Shepard00c5a982010-07-22 09:12:35 +00001119 /* Only adjust this if it actually is csum_start rather than csum */
1120 if (skb->ip_summed == CHECKSUM_PARTIAL)
1121 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001123 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 skb->nohdr = 0;
1125 atomic_set(&skb_shinfo(skb)->dataref, 1);
1126 return 0;
1127
Shirley Maa6686f22011-07-06 12:22:12 +00001128nofrags:
1129 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130nodata:
1131 return -ENOMEM;
1132}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001133EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135/* Make private copy of skb with writable head and some headroom */
1136
1137struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1138{
1139 struct sk_buff *skb2;
1140 int delta = headroom - skb_headroom(skb);
1141
1142 if (delta <= 0)
1143 skb2 = pskb_copy(skb, GFP_ATOMIC);
1144 else {
1145 skb2 = skb_clone(skb, GFP_ATOMIC);
1146 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1147 GFP_ATOMIC)) {
1148 kfree_skb(skb2);
1149 skb2 = NULL;
1150 }
1151 }
1152 return skb2;
1153}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001154EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156/**
1157 * skb_copy_expand - copy and expand sk_buff
1158 * @skb: buffer to copy
1159 * @newheadroom: new free bytes at head
1160 * @newtailroom: new free bytes at tail
1161 * @gfp_mask: allocation priority
1162 *
1163 * Make a copy of both an &sk_buff and its data and while doing so
1164 * allocate additional space.
1165 *
1166 * This is used when the caller wishes to modify the data and needs a
1167 * private copy of the data to alter as well as more space for new fields.
1168 * Returns %NULL on failure or the pointer to the buffer
1169 * on success. The returned buffer has a reference count of 1.
1170 *
1171 * You must pass %GFP_ATOMIC as the allocation priority if this function
1172 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 */
1174struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001175 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001176 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
1178 /*
1179 * Allocate the copy buffer
1180 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001181 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1182 gfp_mask, skb_alloc_rx_flag(skb),
1183 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001184 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001186 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 if (!n)
1189 return NULL;
1190
1191 skb_reserve(n, newheadroom);
1192
1193 /* Set the tail pointer and length */
1194 skb_put(n, skb->len);
1195
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001196 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 head_copy_off = 0;
1198 if (newheadroom <= head_copy_len)
1199 head_copy_len = newheadroom;
1200 else
1201 head_copy_off = newheadroom - head_copy_len;
1202
1203 /* Copy the linear header and data. */
1204 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1205 skb->len + head_copy_len))
1206 BUG();
1207
1208 copy_skb_header(n, skb);
1209
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001210 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001211 if (n->ip_summed == CHECKSUM_PARTIAL)
1212 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001213#ifdef NET_SKBUFF_DATA_USES_OFFSET
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001214 skb_headers_offset_update(n, off);
Herbert Xu52886052007-09-16 16:32:11 -07001215#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return n;
1218}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001219EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221/**
1222 * skb_pad - zero pad the tail of an skb
1223 * @skb: buffer to pad
1224 * @pad: space to pad
1225 *
1226 * Ensure that a buffer is followed by a padding area that is zero
1227 * filled. Used by network drivers which may DMA or transfer data
1228 * beyond the buffer end onto the wire.
1229 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001230 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001232
Herbert Xu5b057c62006-06-23 02:06:41 -07001233int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Herbert Xu5b057c62006-06-23 02:06:41 -07001235 int err;
1236 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001239 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001243
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001244 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001245 if (likely(skb_cloned(skb) || ntail > 0)) {
1246 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1247 if (unlikely(err))
1248 goto free_skb;
1249 }
1250
1251 /* FIXME: The use of this function with non-linear skb's really needs
1252 * to be audited.
1253 */
1254 err = skb_linearize(skb);
1255 if (unlikely(err))
1256 goto free_skb;
1257
1258 memset(skb->data + skb->len, 0, pad);
1259 return 0;
1260
1261free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001263 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001264}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001265EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001266
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001267/**
1268 * skb_put - add data to a buffer
1269 * @skb: buffer to use
1270 * @len: amount of data to add
1271 *
1272 * This function extends the used data area of the buffer. If this would
1273 * exceed the total buffer size the kernel will panic. A pointer to the
1274 * first byte of the extra data is returned.
1275 */
1276unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1277{
1278 unsigned char *tmp = skb_tail_pointer(skb);
1279 SKB_LINEAR_ASSERT(skb);
1280 skb->tail += len;
1281 skb->len += len;
1282 if (unlikely(skb->tail > skb->end))
1283 skb_over_panic(skb, len, __builtin_return_address(0));
1284 return tmp;
1285}
1286EXPORT_SYMBOL(skb_put);
1287
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001288/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001289 * skb_push - add data to the start of a buffer
1290 * @skb: buffer to use
1291 * @len: amount of data to add
1292 *
1293 * This function extends the used data area of the buffer at the buffer
1294 * start. If this would exceed the total buffer headroom the kernel will
1295 * panic. A pointer to the first byte of the extra data is returned.
1296 */
1297unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1298{
1299 skb->data -= len;
1300 skb->len += len;
1301 if (unlikely(skb->data<skb->head))
1302 skb_under_panic(skb, len, __builtin_return_address(0));
1303 return skb->data;
1304}
1305EXPORT_SYMBOL(skb_push);
1306
1307/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001308 * skb_pull - remove data from the start of a buffer
1309 * @skb: buffer to use
1310 * @len: amount of data to remove
1311 *
1312 * This function removes data from the start of a buffer, returning
1313 * the memory to the headroom. A pointer to the next data in the buffer
1314 * is returned. Once the data has been pulled future pushes will overwrite
1315 * the old data.
1316 */
1317unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1318{
David S. Miller47d29642010-05-02 02:21:44 -07001319 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001320}
1321EXPORT_SYMBOL(skb_pull);
1322
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001323/**
1324 * skb_trim - remove end from a buffer
1325 * @skb: buffer to alter
1326 * @len: new length
1327 *
1328 * Cut the length of a buffer down by removing data from the tail. If
1329 * the buffer is already under the length specified it is not modified.
1330 * The skb must be linear.
1331 */
1332void skb_trim(struct sk_buff *skb, unsigned int len)
1333{
1334 if (skb->len > len)
1335 __skb_trim(skb, len);
1336}
1337EXPORT_SYMBOL(skb_trim);
1338
Herbert Xu3cc0e872006-06-09 16:13:38 -07001339/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 */
1341
Herbert Xu3cc0e872006-06-09 16:13:38 -07001342int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Herbert Xu27b437c2006-07-13 19:26:39 -07001344 struct sk_buff **fragp;
1345 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 int offset = skb_headlen(skb);
1347 int nfrags = skb_shinfo(skb)->nr_frags;
1348 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001349 int err;
1350
1351 if (skb_cloned(skb) &&
1352 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1353 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001355 i = 0;
1356 if (offset >= len)
1357 goto drop_pages;
1358
1359 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001360 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001361
1362 if (end < len) {
1363 offset = end;
1364 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001366
Eric Dumazet9e903e02011-10-18 21:00:24 +00001367 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001368
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001369drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001370 skb_shinfo(skb)->nr_frags = i;
1371
1372 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001373 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001374
David S. Miller21dc3302010-08-23 00:13:46 -07001375 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001376 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001377 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379
Herbert Xu27b437c2006-07-13 19:26:39 -07001380 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1381 fragp = &frag->next) {
1382 int end = offset + frag->len;
1383
1384 if (skb_shared(frag)) {
1385 struct sk_buff *nfrag;
1386
1387 nfrag = skb_clone(frag, GFP_ATOMIC);
1388 if (unlikely(!nfrag))
1389 return -ENOMEM;
1390
1391 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001392 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001393 frag = nfrag;
1394 *fragp = frag;
1395 }
1396
1397 if (end < len) {
1398 offset = end;
1399 continue;
1400 }
1401
1402 if (end > len &&
1403 unlikely((err = pskb_trim(frag, len - offset))))
1404 return err;
1405
1406 if (frag->next)
1407 skb_drop_list(&frag->next);
1408 break;
1409 }
1410
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001411done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001412 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 skb->data_len -= skb->len - len;
1414 skb->len = len;
1415 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001416 skb->len = len;
1417 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001418 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420
1421 return 0;
1422}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001423EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425/**
1426 * __pskb_pull_tail - advance tail of skb header
1427 * @skb: buffer to reallocate
1428 * @delta: number of bytes to advance tail
1429 *
1430 * The function makes a sense only on a fragmented &sk_buff,
1431 * it expands header moving its tail forward and copying necessary
1432 * data from fragmented part.
1433 *
1434 * &sk_buff MUST have reference count of 1.
1435 *
1436 * Returns %NULL (and &sk_buff does not change) if pull failed
1437 * or value of new tail of skb in the case of success.
1438 *
1439 * All the pointers pointing into skb header may change and must be
1440 * reloaded after call to this function.
1441 */
1442
1443/* Moves tail of skb head forward, copying data from fragmented part,
1444 * when it is necessary.
1445 * 1. It may fail due to malloc failure.
1446 * 2. It may change skb pointers.
1447 *
1448 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1449 */
1450unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1451{
1452 /* If skb has not enough free space at tail, get new one
1453 * plus 128 bytes for future expansions. If we have enough
1454 * room at tail, reallocate without expansion only if skb is cloned.
1455 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001456 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 if (eat > 0 || skb_cloned(skb)) {
1459 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1460 GFP_ATOMIC))
1461 return NULL;
1462 }
1463
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001464 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 BUG();
1466
1467 /* Optimization: no fragments, no reasons to preestimate
1468 * size of pulled pages. Superb.
1469 */
David S. Miller21dc3302010-08-23 00:13:46 -07001470 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 goto pull_pages;
1472
1473 /* Estimate size of pulled pages. */
1474 eat = delta;
1475 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001476 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1477
1478 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001480 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
1482
1483 /* If we need update frag list, we are in troubles.
1484 * Certainly, it possible to add an offset to skb data,
1485 * but taking into account that pulling is expected to
1486 * be very rare operation, it is worth to fight against
1487 * further bloating skb head and crucify ourselves here instead.
1488 * Pure masohism, indeed. 8)8)
1489 */
1490 if (eat) {
1491 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1492 struct sk_buff *clone = NULL;
1493 struct sk_buff *insp = NULL;
1494
1495 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001496 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (list->len <= eat) {
1499 /* Eaten as whole. */
1500 eat -= list->len;
1501 list = list->next;
1502 insp = list;
1503 } else {
1504 /* Eaten partially. */
1505
1506 if (skb_shared(list)) {
1507 /* Sucks! We need to fork list. :-( */
1508 clone = skb_clone(list, GFP_ATOMIC);
1509 if (!clone)
1510 return NULL;
1511 insp = list->next;
1512 list = clone;
1513 } else {
1514 /* This may be pulled without
1515 * problems. */
1516 insp = list;
1517 }
1518 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001519 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return NULL;
1521 }
1522 break;
1523 }
1524 } while (eat);
1525
1526 /* Free pulled out fragments. */
1527 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1528 skb_shinfo(skb)->frag_list = list->next;
1529 kfree_skb(list);
1530 }
1531 /* And insert new clone at head. */
1532 if (clone) {
1533 clone->next = list;
1534 skb_shinfo(skb)->frag_list = clone;
1535 }
1536 }
1537 /* Success! Now we may commit changes to skb data. */
1538
1539pull_pages:
1540 eat = delta;
1541 k = 0;
1542 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001543 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1544
1545 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001546 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001547 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 } else {
1549 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1550 if (eat) {
1551 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001552 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 eat = 0;
1554 }
1555 k++;
1556 }
1557 }
1558 skb_shinfo(skb)->nr_frags = k;
1559
1560 skb->tail += delta;
1561 skb->data_len -= delta;
1562
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001563 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001565EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Eric Dumazet22019b12011-07-29 18:37:31 +00001567/**
1568 * skb_copy_bits - copy bits from skb to kernel buffer
1569 * @skb: source skb
1570 * @offset: offset in source
1571 * @to: destination buffer
1572 * @len: number of bytes to copy
1573 *
1574 * Copy the specified number of bytes from the source skb to the
1575 * destination buffer.
1576 *
1577 * CAUTION ! :
1578 * If its prototype is ever changed,
1579 * check arch/{*}/net/{*}.S files,
1580 * since it is called from BPF assembly code.
1581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1583{
David S. Miller1a028e52007-04-27 15:21:23 -07001584 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001585 struct sk_buff *frag_iter;
1586 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 if (offset > (int)skb->len - len)
1589 goto fault;
1590
1591 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001592 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (copy > len)
1594 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001595 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if ((len -= copy) == 0)
1597 return 0;
1598 offset += copy;
1599 to += copy;
1600 }
1601
1602 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001603 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001604 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001606 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001607
Eric Dumazet51c56b02012-04-05 11:35:15 +02001608 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if ((copy = end - offset) > 0) {
1610 u8 *vaddr;
1611
1612 if (copy > len)
1613 copy = len;
1614
Eric Dumazet51c56b02012-04-05 11:35:15 +02001615 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001617 vaddr + f->page_offset + offset - start,
1618 copy);
1619 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 if ((len -= copy) == 0)
1622 return 0;
1623 offset += copy;
1624 to += copy;
1625 }
David S. Miller1a028e52007-04-27 15:21:23 -07001626 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
David S. Millerfbb398a2009-06-09 00:18:59 -07001629 skb_walk_frags(skb, frag_iter) {
1630 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
David S. Millerfbb398a2009-06-09 00:18:59 -07001632 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
David S. Millerfbb398a2009-06-09 00:18:59 -07001634 end = start + frag_iter->len;
1635 if ((copy = end - offset) > 0) {
1636 if (copy > len)
1637 copy = len;
1638 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1639 goto fault;
1640 if ((len -= copy) == 0)
1641 return 0;
1642 offset += copy;
1643 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001645 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 }
Shirley Maa6686f22011-07-06 12:22:12 +00001647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (!len)
1649 return 0;
1650
1651fault:
1652 return -EFAULT;
1653}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001654EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Jens Axboe9c55e012007-11-06 23:30:13 -08001656/*
1657 * Callback from splice_to_pipe(), if we need to release some pages
1658 * at the end of the spd in case we error'ed out in filling the pipe.
1659 */
1660static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1661{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001662 put_page(spd->pages[i]);
1663}
Jens Axboe9c55e012007-11-06 23:30:13 -08001664
David S. Millera108d5f2012-04-23 23:06:11 -04001665static struct page *linear_to_page(struct page *page, unsigned int *len,
1666 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001667 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001668{
Eric Dumazet5640f762012-09-23 23:04:42 +00001669 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001670
Eric Dumazet5640f762012-09-23 23:04:42 +00001671 if (!sk_page_frag_refill(sk, pfrag))
1672 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001673
Eric Dumazet5640f762012-09-23 23:04:42 +00001674 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001675
Eric Dumazet5640f762012-09-23 23:04:42 +00001676 memcpy(page_address(pfrag->page) + pfrag->offset,
1677 page_address(page) + *offset, *len);
1678 *offset = pfrag->offset;
1679 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001680
Eric Dumazet5640f762012-09-23 23:04:42 +00001681 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001682}
1683
Eric Dumazet41c73a02012-04-22 12:26:16 +00001684static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1685 struct page *page,
1686 unsigned int offset)
1687{
1688 return spd->nr_pages &&
1689 spd->pages[spd->nr_pages - 1] == page &&
1690 (spd->partial[spd->nr_pages - 1].offset +
1691 spd->partial[spd->nr_pages - 1].len == offset);
1692}
1693
Jens Axboe9c55e012007-11-06 23:30:13 -08001694/*
1695 * Fill page/offset/length into spd, if it can hold more pages.
1696 */
David S. Millera108d5f2012-04-23 23:06:11 -04001697static bool spd_fill_page(struct splice_pipe_desc *spd,
1698 struct pipe_inode_info *pipe, struct page *page,
1699 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001700 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001701 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001702{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001703 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001704 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001705
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001706 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001707 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001708 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001709 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001710 }
1711 if (spd_can_coalesce(spd, page, offset)) {
1712 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001713 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001714 }
1715 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001716 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001717 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001718 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001719 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001720
David S. Millera108d5f2012-04-23 23:06:11 -04001721 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001722}
1723
David S. Millera108d5f2012-04-23 23:06:11 -04001724static bool __splice_segment(struct page *page, unsigned int poff,
1725 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001726 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001727 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001728 struct sock *sk,
1729 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001730{
1731 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001732 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001733
1734 /* skip this segment if already processed */
1735 if (*off >= plen) {
1736 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001737 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001738 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001739
Octavian Purdila2870c432008-07-15 00:49:11 -07001740 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001741 poff += *off;
1742 plen -= *off;
1743 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001744
Eric Dumazet18aafc62013-01-11 14:46:37 +00001745 do {
1746 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001747
Eric Dumazet18aafc62013-01-11 14:46:37 +00001748 if (spd_fill_page(spd, pipe, page, &flen, poff,
1749 linear, sk))
1750 return true;
1751 poff += flen;
1752 plen -= flen;
1753 *len -= flen;
1754 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001755
David S. Millera108d5f2012-04-23 23:06:11 -04001756 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001757}
1758
1759/*
David S. Millera108d5f2012-04-23 23:06:11 -04001760 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001761 * pipe is full or if we already spliced the requested length.
1762 */
David S. Millera108d5f2012-04-23 23:06:11 -04001763static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1764 unsigned int *offset, unsigned int *len,
1765 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001766{
1767 int seg;
1768
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001769 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001770 * If skb->head_frag is set, this 'linear' part is backed by a
1771 * fragment, and if the head is not shared with any clones then
1772 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001773 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001774 if (__splice_segment(virt_to_page(skb->data),
1775 (unsigned long) skb->data & (PAGE_SIZE - 1),
1776 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001777 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001778 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001779 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001780 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001781
1782 /*
1783 * then map the fragments
1784 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001785 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1786 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1787
Ian Campbellea2ab692011-08-22 23:44:58 +00001788 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001789 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001790 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001791 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001792 }
1793
David S. Millera108d5f2012-04-23 23:06:11 -04001794 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001795}
1796
1797/*
1798 * Map data from the skb to a pipe. Should handle both the linear part,
1799 * the fragments, and the frag list. It does NOT handle frag lists within
1800 * the frag list, if such a thing exists. We'd probably need to recurse to
1801 * handle that cleanly.
1802 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001803int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001804 struct pipe_inode_info *pipe, unsigned int tlen,
1805 unsigned int flags)
1806{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001807 struct partial_page partial[MAX_SKB_FRAGS];
1808 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001809 struct splice_pipe_desc spd = {
1810 .pages = pages,
1811 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001812 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001813 .flags = flags,
1814 .ops = &sock_pipe_buf_ops,
1815 .spd_release = sock_spd_release,
1816 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001817 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001818 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001819 int ret = 0;
1820
Jens Axboe9c55e012007-11-06 23:30:13 -08001821 /*
1822 * __skb_splice_bits() only fails if the output has no room left,
1823 * so no point in going over the frag_list for the error case.
1824 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001825 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001826 goto done;
1827 else if (!tlen)
1828 goto done;
1829
1830 /*
1831 * now see if we have a frag_list to map
1832 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001833 skb_walk_frags(skb, frag_iter) {
1834 if (!tlen)
1835 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001836 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001837 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001838 }
1839
1840done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001841 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001842 /*
1843 * Drop the socket lock, otherwise we have reverse
1844 * locking dependencies between sk_lock and i_mutex
1845 * here as compared to sendfile(). We enter here
1846 * with the socket lock held, and splice_to_pipe() will
1847 * grab the pipe inode lock. For sendfile() emulation,
1848 * we call into ->sendpage() with the i_mutex lock held
1849 * and networking will grab the socket lock.
1850 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001851 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001852 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001853 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001854 }
1855
Jens Axboe35f3d142010-05-20 10:43:18 +02001856 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001857}
1858
Herbert Xu357b40a2005-04-19 22:30:14 -07001859/**
1860 * skb_store_bits - store bits from kernel buffer to skb
1861 * @skb: destination buffer
1862 * @offset: offset in destination
1863 * @from: source buffer
1864 * @len: number of bytes to copy
1865 *
1866 * Copy the specified number of bytes from the source buffer to the
1867 * destination skb. This function handles all the messy bits of
1868 * traversing fragment lists and such.
1869 */
1870
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001871int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001872{
David S. Miller1a028e52007-04-27 15:21:23 -07001873 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001874 struct sk_buff *frag_iter;
1875 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001876
1877 if (offset > (int)skb->len - len)
1878 goto fault;
1879
David S. Miller1a028e52007-04-27 15:21:23 -07001880 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001881 if (copy > len)
1882 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001883 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001884 if ((len -= copy) == 0)
1885 return 0;
1886 offset += copy;
1887 from += copy;
1888 }
1889
1890 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1891 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001892 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001893
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001894 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001895
Eric Dumazet9e903e02011-10-18 21:00:24 +00001896 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001897 if ((copy = end - offset) > 0) {
1898 u8 *vaddr;
1899
1900 if (copy > len)
1901 copy = len;
1902
Eric Dumazet51c56b02012-04-05 11:35:15 +02001903 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001904 memcpy(vaddr + frag->page_offset + offset - start,
1905 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001906 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001907
1908 if ((len -= copy) == 0)
1909 return 0;
1910 offset += copy;
1911 from += copy;
1912 }
David S. Miller1a028e52007-04-27 15:21:23 -07001913 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001914 }
1915
David S. Millerfbb398a2009-06-09 00:18:59 -07001916 skb_walk_frags(skb, frag_iter) {
1917 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001918
David S. Millerfbb398a2009-06-09 00:18:59 -07001919 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001920
David S. Millerfbb398a2009-06-09 00:18:59 -07001921 end = start + frag_iter->len;
1922 if ((copy = end - offset) > 0) {
1923 if (copy > len)
1924 copy = len;
1925 if (skb_store_bits(frag_iter, offset - start,
1926 from, copy))
1927 goto fault;
1928 if ((len -= copy) == 0)
1929 return 0;
1930 offset += copy;
1931 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001932 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001933 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001934 }
1935 if (!len)
1936 return 0;
1937
1938fault:
1939 return -EFAULT;
1940}
Herbert Xu357b40a2005-04-19 22:30:14 -07001941EXPORT_SYMBOL(skb_store_bits);
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943/* Checksum skb data. */
1944
Al Viro2bbbc862006-11-14 21:37:14 -08001945__wsum skb_checksum(const struct sk_buff *skb, int offset,
1946 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
David S. Miller1a028e52007-04-27 15:21:23 -07001948 int start = skb_headlen(skb);
1949 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001950 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 int pos = 0;
1952
1953 /* Checksum header. */
1954 if (copy > 0) {
1955 if (copy > len)
1956 copy = len;
1957 csum = csum_partial(skb->data + offset, copy, csum);
1958 if ((len -= copy) == 0)
1959 return csum;
1960 offset += copy;
1961 pos = copy;
1962 }
1963
1964 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001965 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001966 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001968 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001969
Eric Dumazet51c56b02012-04-05 11:35:15 +02001970 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001972 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 if (copy > len)
1976 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001977 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001978 csum2 = csum_partial(vaddr + frag->page_offset +
1979 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001980 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 csum = csum_block_add(csum, csum2, pos);
1982 if (!(len -= copy))
1983 return csum;
1984 offset += copy;
1985 pos += copy;
1986 }
David S. Miller1a028e52007-04-27 15:21:23 -07001987 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989
David S. Millerfbb398a2009-06-09 00:18:59 -07001990 skb_walk_frags(skb, frag_iter) {
1991 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
David S. Millerfbb398a2009-06-09 00:18:59 -07001993 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
David S. Millerfbb398a2009-06-09 00:18:59 -07001995 end = start + frag_iter->len;
1996 if ((copy = end - offset) > 0) {
1997 __wsum csum2;
1998 if (copy > len)
1999 copy = len;
2000 csum2 = skb_checksum(frag_iter, offset - start,
2001 copy, 0);
2002 csum = csum_block_add(csum, csum2, pos);
2003 if ((len -= copy) == 0)
2004 return csum;
2005 offset += copy;
2006 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002008 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002010 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 return csum;
2013}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002014EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016/* Both of above in one bottle. */
2017
Al Viro81d77662006-11-14 21:37:33 -08002018__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2019 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
David S. Miller1a028e52007-04-27 15:21:23 -07002021 int start = skb_headlen(skb);
2022 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002023 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 int pos = 0;
2025
2026 /* Copy header. */
2027 if (copy > 0) {
2028 if (copy > len)
2029 copy = len;
2030 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2031 copy, csum);
2032 if ((len -= copy) == 0)
2033 return csum;
2034 offset += copy;
2035 to += copy;
2036 pos = copy;
2037 }
2038
2039 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002040 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002042 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002043
Eric Dumazet9e903e02011-10-18 21:00:24 +00002044 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002046 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 u8 *vaddr;
2048 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2049
2050 if (copy > len)
2051 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002052 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002054 frag->page_offset +
2055 offset - start, to,
2056 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002057 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 csum = csum_block_add(csum, csum2, pos);
2059 if (!(len -= copy))
2060 return csum;
2061 offset += copy;
2062 to += copy;
2063 pos += copy;
2064 }
David S. Miller1a028e52007-04-27 15:21:23 -07002065 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
2067
David S. Millerfbb398a2009-06-09 00:18:59 -07002068 skb_walk_frags(skb, frag_iter) {
2069 __wsum csum2;
2070 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
David S. Millerfbb398a2009-06-09 00:18:59 -07002072 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
David S. Millerfbb398a2009-06-09 00:18:59 -07002074 end = start + frag_iter->len;
2075 if ((copy = end - offset) > 0) {
2076 if (copy > len)
2077 copy = len;
2078 csum2 = skb_copy_and_csum_bits(frag_iter,
2079 offset - start,
2080 to, copy, 0);
2081 csum = csum_block_add(csum, csum2, pos);
2082 if ((len -= copy) == 0)
2083 return csum;
2084 offset += copy;
2085 to += copy;
2086 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002088 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002090 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return csum;
2092}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002093EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2096{
Al Virod3bc23e2006-11-14 21:24:49 -08002097 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 long csstart;
2099
Patrick McHardy84fa7932006-08-29 16:44:56 -07002100 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002101 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 else
2103 csstart = skb_headlen(skb);
2104
Kris Katterjohn09a62662006-01-08 22:24:28 -08002105 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002107 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 csum = 0;
2110 if (csstart != skb->len)
2111 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2112 skb->len - csstart, 0);
2113
Patrick McHardy84fa7932006-08-29 16:44:56 -07002114 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002115 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Al Virod3bc23e2006-11-14 21:24:49 -08002117 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002120EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122/**
2123 * skb_dequeue - remove from the head of the queue
2124 * @list: list to dequeue from
2125 *
2126 * Remove the head of the list. The list lock is taken so the function
2127 * may be used safely with other locking list functions. The head item is
2128 * returned or %NULL if the list is empty.
2129 */
2130
2131struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2132{
2133 unsigned long flags;
2134 struct sk_buff *result;
2135
2136 spin_lock_irqsave(&list->lock, flags);
2137 result = __skb_dequeue(list);
2138 spin_unlock_irqrestore(&list->lock, flags);
2139 return result;
2140}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002141EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143/**
2144 * skb_dequeue_tail - remove from the tail of the queue
2145 * @list: list to dequeue from
2146 *
2147 * Remove the tail of the list. The list lock is taken so the function
2148 * may be used safely with other locking list functions. The tail item is
2149 * returned or %NULL if the list is empty.
2150 */
2151struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2152{
2153 unsigned long flags;
2154 struct sk_buff *result;
2155
2156 spin_lock_irqsave(&list->lock, flags);
2157 result = __skb_dequeue_tail(list);
2158 spin_unlock_irqrestore(&list->lock, flags);
2159 return result;
2160}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002161EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163/**
2164 * skb_queue_purge - empty a list
2165 * @list: list to empty
2166 *
2167 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2168 * the list and one reference dropped. This function takes the list
2169 * lock and is atomic with respect to other list locking functions.
2170 */
2171void skb_queue_purge(struct sk_buff_head *list)
2172{
2173 struct sk_buff *skb;
2174 while ((skb = skb_dequeue(list)) != NULL)
2175 kfree_skb(skb);
2176}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002177EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179/**
2180 * skb_queue_head - queue a buffer at the list head
2181 * @list: list to use
2182 * @newsk: buffer to queue
2183 *
2184 * Queue a buffer at the start of the list. This function takes the
2185 * list lock and can be used safely with other locking &sk_buff functions
2186 * safely.
2187 *
2188 * A buffer cannot be placed on two lists at the same time.
2189 */
2190void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2191{
2192 unsigned long flags;
2193
2194 spin_lock_irqsave(&list->lock, flags);
2195 __skb_queue_head(list, newsk);
2196 spin_unlock_irqrestore(&list->lock, flags);
2197}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002198EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200/**
2201 * skb_queue_tail - queue a buffer at the list tail
2202 * @list: list to use
2203 * @newsk: buffer to queue
2204 *
2205 * Queue a buffer at the tail of the list. This function takes the
2206 * list lock and can be used safely with other locking &sk_buff functions
2207 * safely.
2208 *
2209 * A buffer cannot be placed on two lists at the same time.
2210 */
2211void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2212{
2213 unsigned long flags;
2214
2215 spin_lock_irqsave(&list->lock, flags);
2216 __skb_queue_tail(list, newsk);
2217 spin_unlock_irqrestore(&list->lock, flags);
2218}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002219EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221/**
2222 * skb_unlink - remove a buffer from a list
2223 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002224 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 *
David S. Miller8728b832005-08-09 19:25:21 -07002226 * Remove a packet from a list. The list locks are taken and this
2227 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 *
David S. Miller8728b832005-08-09 19:25:21 -07002229 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 */
David S. Miller8728b832005-08-09 19:25:21 -07002231void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
David S. Miller8728b832005-08-09 19:25:21 -07002233 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
David S. Miller8728b832005-08-09 19:25:21 -07002235 spin_lock_irqsave(&list->lock, flags);
2236 __skb_unlink(skb, list);
2237 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002239EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241/**
2242 * skb_append - append a buffer
2243 * @old: buffer to insert after
2244 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002245 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
2247 * Place a packet after a given packet in a list. The list locks are taken
2248 * and this function is atomic with respect to other list locked calls.
2249 * A buffer cannot be placed on two lists at the same time.
2250 */
David S. Miller8728b832005-08-09 19:25:21 -07002251void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 unsigned long flags;
2254
David S. Miller8728b832005-08-09 19:25:21 -07002255 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002256 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002257 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002259EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261/**
2262 * skb_insert - insert a buffer
2263 * @old: buffer to insert before
2264 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002265 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 *
David S. Miller8728b832005-08-09 19:25:21 -07002267 * Place a packet before a given packet in a list. The list locks are
2268 * taken and this function is atomic with respect to other list locked
2269 * calls.
2270 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 * A buffer cannot be placed on two lists at the same time.
2272 */
David S. Miller8728b832005-08-09 19:25:21 -07002273void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 unsigned long flags;
2276
David S. Miller8728b832005-08-09 19:25:21 -07002277 spin_lock_irqsave(&list->lock, flags);
2278 __skb_insert(newsk, old->prev, old, list);
2279 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002281EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283static inline void skb_split_inside_header(struct sk_buff *skb,
2284 struct sk_buff* skb1,
2285 const u32 len, const int pos)
2286{
2287 int i;
2288
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002289 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2290 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 /* And move data appendix as is. */
2292 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2293 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2294
2295 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2296 skb_shinfo(skb)->nr_frags = 0;
2297 skb1->data_len = skb->data_len;
2298 skb1->len += skb1->data_len;
2299 skb->data_len = 0;
2300 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002301 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
2304static inline void skb_split_no_header(struct sk_buff *skb,
2305 struct sk_buff* skb1,
2306 const u32 len, int pos)
2307{
2308 int i, k = 0;
2309 const int nfrags = skb_shinfo(skb)->nr_frags;
2310
2311 skb_shinfo(skb)->nr_frags = 0;
2312 skb1->len = skb1->data_len = skb->len - len;
2313 skb->len = len;
2314 skb->data_len = len - pos;
2315
2316 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002317 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 if (pos + size > len) {
2320 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2321
2322 if (pos < len) {
2323 /* Split frag.
2324 * We have two variants in this case:
2325 * 1. Move all the frag to the second
2326 * part, if it is possible. F.e.
2327 * this approach is mandatory for TUX,
2328 * where splitting is expensive.
2329 * 2. Split is accurately. We make this.
2330 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002331 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002333 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2334 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 skb_shinfo(skb)->nr_frags++;
2336 }
2337 k++;
2338 } else
2339 skb_shinfo(skb)->nr_frags++;
2340 pos += size;
2341 }
2342 skb_shinfo(skb1)->nr_frags = k;
2343}
2344
2345/**
2346 * skb_split - Split fragmented skb to two parts at length len.
2347 * @skb: the buffer to split
2348 * @skb1: the buffer to receive the second part
2349 * @len: new length for skb
2350 */
2351void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2352{
2353 int pos = skb_headlen(skb);
2354
Amerigo Wang68534c62013-02-19 22:51:30 +00002355 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (len < pos) /* Split line is inside header. */
2357 skb_split_inside_header(skb, skb1, len, pos);
2358 else /* Second chunk has no header, nothing to copy. */
2359 skb_split_no_header(skb, skb1, len, pos);
2360}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002361EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002363/* Shifting from/to a cloned skb is a no-go.
2364 *
2365 * Caller cannot keep skb_shinfo related pointers past calling here!
2366 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002367static int skb_prepare_for_shift(struct sk_buff *skb)
2368{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002369 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002370}
2371
2372/**
2373 * skb_shift - Shifts paged data partially from skb to another
2374 * @tgt: buffer into which tail data gets added
2375 * @skb: buffer from which the paged data comes from
2376 * @shiftlen: shift up to this many bytes
2377 *
2378 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002379 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002380 * It's up to caller to free skb if everything was shifted.
2381 *
2382 * If @tgt runs out of frags, the whole operation is aborted.
2383 *
2384 * Skb cannot include anything else but paged data while tgt is allowed
2385 * to have non-paged data as well.
2386 *
2387 * TODO: full sized shift could be optimized but that would need
2388 * specialized skb free'er to handle frags without up-to-date nr_frags.
2389 */
2390int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2391{
2392 int from, to, merge, todo;
2393 struct skb_frag_struct *fragfrom, *fragto;
2394
2395 BUG_ON(shiftlen > skb->len);
2396 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2397
2398 todo = shiftlen;
2399 from = 0;
2400 to = skb_shinfo(tgt)->nr_frags;
2401 fragfrom = &skb_shinfo(skb)->frags[from];
2402
2403 /* Actual merge is delayed until the point when we know we can
2404 * commit all, so that we don't have to undo partial changes
2405 */
2406 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002407 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2408 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002409 merge = -1;
2410 } else {
2411 merge = to - 1;
2412
Eric Dumazet9e903e02011-10-18 21:00:24 +00002413 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002414 if (todo < 0) {
2415 if (skb_prepare_for_shift(skb) ||
2416 skb_prepare_for_shift(tgt))
2417 return 0;
2418
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002419 /* All previous frag pointers might be stale! */
2420 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002421 fragto = &skb_shinfo(tgt)->frags[merge];
2422
Eric Dumazet9e903e02011-10-18 21:00:24 +00002423 skb_frag_size_add(fragto, shiftlen);
2424 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002425 fragfrom->page_offset += shiftlen;
2426
2427 goto onlymerged;
2428 }
2429
2430 from++;
2431 }
2432
2433 /* Skip full, not-fitting skb to avoid expensive operations */
2434 if ((shiftlen == skb->len) &&
2435 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2436 return 0;
2437
2438 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2439 return 0;
2440
2441 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2442 if (to == MAX_SKB_FRAGS)
2443 return 0;
2444
2445 fragfrom = &skb_shinfo(skb)->frags[from];
2446 fragto = &skb_shinfo(tgt)->frags[to];
2447
Eric Dumazet9e903e02011-10-18 21:00:24 +00002448 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002449 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002450 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002451 from++;
2452 to++;
2453
2454 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002455 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002456 fragto->page = fragfrom->page;
2457 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002458 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002459
2460 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002461 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002462 todo = 0;
2463
2464 to++;
2465 break;
2466 }
2467 }
2468
2469 /* Ready to "commit" this state change to tgt */
2470 skb_shinfo(tgt)->nr_frags = to;
2471
2472 if (merge >= 0) {
2473 fragfrom = &skb_shinfo(skb)->frags[0];
2474 fragto = &skb_shinfo(tgt)->frags[merge];
2475
Eric Dumazet9e903e02011-10-18 21:00:24 +00002476 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002477 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002478 }
2479
2480 /* Reposition in the original skb */
2481 to = 0;
2482 while (from < skb_shinfo(skb)->nr_frags)
2483 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2484 skb_shinfo(skb)->nr_frags = to;
2485
2486 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2487
2488onlymerged:
2489 /* Most likely the tgt won't ever need its checksum anymore, skb on
2490 * the other hand might need it if it needs to be resent
2491 */
2492 tgt->ip_summed = CHECKSUM_PARTIAL;
2493 skb->ip_summed = CHECKSUM_PARTIAL;
2494
2495 /* Yak, is it really working this way? Some helper please? */
2496 skb->len -= shiftlen;
2497 skb->data_len -= shiftlen;
2498 skb->truesize -= shiftlen;
2499 tgt->len += shiftlen;
2500 tgt->data_len += shiftlen;
2501 tgt->truesize += shiftlen;
2502
2503 return shiftlen;
2504}
2505
Thomas Graf677e90e2005-06-23 20:59:51 -07002506/**
2507 * skb_prepare_seq_read - Prepare a sequential read of skb data
2508 * @skb: the buffer to read
2509 * @from: lower offset of data to be read
2510 * @to: upper offset of data to be read
2511 * @st: state variable
2512 *
2513 * Initializes the specified state variable. Must be called before
2514 * invoking skb_seq_read() for the first time.
2515 */
2516void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2517 unsigned int to, struct skb_seq_state *st)
2518{
2519 st->lower_offset = from;
2520 st->upper_offset = to;
2521 st->root_skb = st->cur_skb = skb;
2522 st->frag_idx = st->stepped_offset = 0;
2523 st->frag_data = NULL;
2524}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002525EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002526
2527/**
2528 * skb_seq_read - Sequentially read skb data
2529 * @consumed: number of bytes consumed by the caller so far
2530 * @data: destination pointer for data to be returned
2531 * @st: state variable
2532 *
2533 * Reads a block of skb data at &consumed relative to the
2534 * lower offset specified to skb_prepare_seq_read(). Assigns
2535 * the head of the data block to &data and returns the length
2536 * of the block or 0 if the end of the skb data or the upper
2537 * offset has been reached.
2538 *
2539 * The caller is not required to consume all of the data
2540 * returned, i.e. &consumed is typically set to the number
2541 * of bytes already consumed and the next call to
2542 * skb_seq_read() will return the remaining part of the block.
2543 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002544 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002545 * this limitation is the cost for zerocopy seqeuental
2546 * reads of potentially non linear data.
2547 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002548 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002549 * at the moment, state->root_skb could be replaced with
2550 * a stack for this purpose.
2551 */
2552unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2553 struct skb_seq_state *st)
2554{
2555 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2556 skb_frag_t *frag;
2557
2558 if (unlikely(abs_offset >= st->upper_offset))
2559 return 0;
2560
2561next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002562 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002563
Thomas Chenault995b3372009-05-18 21:43:27 -07002564 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002565 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002566 return block_limit - abs_offset;
2567 }
2568
2569 if (st->frag_idx == 0 && !st->frag_data)
2570 st->stepped_offset += skb_headlen(st->cur_skb);
2571
2572 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2573 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002574 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002575
2576 if (abs_offset < block_limit) {
2577 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002578 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002579
2580 *data = (u8 *) st->frag_data + frag->page_offset +
2581 (abs_offset - st->stepped_offset);
2582
2583 return block_limit - abs_offset;
2584 }
2585
2586 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002587 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002588 st->frag_data = NULL;
2589 }
2590
2591 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002592 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002593 }
2594
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002595 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002596 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002597 st->frag_data = NULL;
2598 }
2599
David S. Miller21dc3302010-08-23 00:13:46 -07002600 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002601 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002602 st->frag_idx = 0;
2603 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002604 } else if (st->cur_skb->next) {
2605 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002606 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002607 goto next_skb;
2608 }
2609
2610 return 0;
2611}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002612EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002613
2614/**
2615 * skb_abort_seq_read - Abort a sequential read of skb data
2616 * @st: state variable
2617 *
2618 * Must be called if skb_seq_read() was not called until it
2619 * returned 0.
2620 */
2621void skb_abort_seq_read(struct skb_seq_state *st)
2622{
2623 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002624 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002625}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002626EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002627
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002628#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2629
2630static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2631 struct ts_config *conf,
2632 struct ts_state *state)
2633{
2634 return skb_seq_read(offset, text, TS_SKB_CB(state));
2635}
2636
2637static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2638{
2639 skb_abort_seq_read(TS_SKB_CB(state));
2640}
2641
2642/**
2643 * skb_find_text - Find a text pattern in skb data
2644 * @skb: the buffer to look in
2645 * @from: search offset
2646 * @to: search limit
2647 * @config: textsearch configuration
2648 * @state: uninitialized textsearch state variable
2649 *
2650 * Finds a pattern in the skb data according to the specified
2651 * textsearch configuration. Use textsearch_next() to retrieve
2652 * subsequent occurrences of the pattern. Returns the offset
2653 * to the first occurrence or UINT_MAX if no match was found.
2654 */
2655unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2656 unsigned int to, struct ts_config *config,
2657 struct ts_state *state)
2658{
Phil Oesterf72b9482006-06-26 00:00:57 -07002659 unsigned int ret;
2660
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002661 config->get_next_block = skb_ts_get_next_block;
2662 config->finish = skb_ts_finish;
2663
2664 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2665
Phil Oesterf72b9482006-06-26 00:00:57 -07002666 ret = textsearch_find(config, state);
2667 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002668}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002669EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002670
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002671/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002672 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002673 * @sk: sock structure
2674 * @skb: skb structure to be appened with user data.
2675 * @getfrag: call back function to be used for getting the user data
2676 * @from: pointer to user message iov
2677 * @length: length of the iov message
2678 *
2679 * Description: This procedure append the user data in the fragment part
2680 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2681 */
2682int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002683 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002684 int len, int odd, struct sk_buff *skb),
2685 void *from, int length)
2686{
Eric Dumazetb2111722012-12-28 06:06:37 +00002687 int frg_cnt = skb_shinfo(skb)->nr_frags;
2688 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002689 int offset = 0;
2690 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002691 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002692
2693 do {
2694 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002695 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002696 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002697
Eric Dumazetb2111722012-12-28 06:06:37 +00002698 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002699 return -ENOMEM;
2700
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002701 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002702 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002703
Eric Dumazetb2111722012-12-28 06:06:37 +00002704 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2705 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002706 if (ret < 0)
2707 return -EFAULT;
2708
2709 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002710 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2711 copy);
2712 frg_cnt++;
2713 pfrag->offset += copy;
2714 get_page(pfrag->page);
2715
2716 skb->truesize += copy;
2717 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002718 skb->len += copy;
2719 skb->data_len += copy;
2720 offset += copy;
2721 length -= copy;
2722
2723 } while (length > 0);
2724
2725 return 0;
2726}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002727EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002728
Herbert Xucbb042f2006-03-20 22:43:56 -08002729/**
2730 * skb_pull_rcsum - pull skb and update receive checksum
2731 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002732 * @len: length of data pulled
2733 *
2734 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002735 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002736 * receive path processing instead of skb_pull unless you know
2737 * that the checksum difference is zero (e.g., a valid IP header)
2738 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002739 */
2740unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2741{
2742 BUG_ON(len > skb->len);
2743 skb->len -= len;
2744 BUG_ON(skb->len < skb->data_len);
2745 skb_postpull_rcsum(skb, skb->data, len);
2746 return skb->data += len;
2747}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002748EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2749
Herbert Xuf4c50d92006-06-22 03:02:40 -07002750/**
2751 * skb_segment - Perform protocol segmentation on skb.
2752 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002753 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002754 *
2755 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002756 * a pointer to the first in a list of new skbs for the segments.
2757 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002758 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002759struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002760{
2761 struct sk_buff *segs = NULL;
2762 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002763 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002764 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002765 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002766 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002767 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002768 unsigned int headroom;
2769 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002770 __be16 proto;
2771 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002772 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002773 int nfrags = skb_shinfo(skb)->nr_frags;
2774 int err = -ENOMEM;
2775 int i = 0;
2776 int pos;
2777
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002778 proto = skb_network_protocol(skb);
2779 if (unlikely(!proto))
2780 return ERR_PTR(-EINVAL);
2781
2782 csum = !!can_checksum_protocol(features, proto);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002783 __skb_push(skb, doffset);
2784 headroom = skb_headroom(skb);
2785 pos = skb_headlen(skb);
2786
2787 do {
2788 struct sk_buff *nskb;
2789 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002790 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002791 int size;
2792
2793 len = skb->len - offset;
2794 if (len > mss)
2795 len = mss;
2796
2797 hsize = skb_headlen(skb) - offset;
2798 if (hsize < 0)
2799 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002800 if (hsize > len || !sg)
2801 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002802
Herbert Xu89319d382008-12-15 23:26:06 -08002803 if (!hsize && i >= nfrags) {
2804 BUG_ON(fskb->len != len);
2805
2806 pos += len;
2807 nskb = skb_clone(fskb, GFP_ATOMIC);
2808 fskb = fskb->next;
2809
2810 if (unlikely(!nskb))
2811 goto err;
2812
Alexander Duyckec47ea82012-05-04 14:26:56 +00002813 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002814 if (skb_cow_head(nskb, doffset + headroom)) {
2815 kfree_skb(nskb);
2816 goto err;
2817 }
2818
Alexander Duyckec47ea82012-05-04 14:26:56 +00002819 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002820 skb_release_head_state(nskb);
2821 __skb_push(nskb, doffset);
2822 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002823 nskb = __alloc_skb(hsize + doffset + headroom,
2824 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2825 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002826
2827 if (unlikely(!nskb))
2828 goto err;
2829
2830 skb_reserve(nskb, headroom);
2831 __skb_put(nskb, doffset);
2832 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002833
2834 if (segs)
2835 tail->next = nskb;
2836 else
2837 segs = nskb;
2838 tail = nskb;
2839
Herbert Xu6f85a122008-08-15 14:55:02 -07002840 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002841 nskb->mac_len = skb->mac_len;
2842
Eric Dumazet3d3be432010-09-01 00:50:51 +00002843 /* nskb and skb might have different headroom */
2844 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2845 nskb->csum_start += skb_headroom(nskb) - headroom;
2846
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002847 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002848 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002849 nskb->transport_header = (nskb->network_header +
2850 skb_network_header_len(skb));
Pravin B Shelar68c33162013-02-14 14:02:41 +00002851
2852 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2853 nskb->data - tnl_hlen,
2854 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002855
Herbert Xu2f181852009-03-28 23:39:18 -07002856 if (fskb != skb_shinfo(skb)->frag_list)
Simon Horman1e42fa02013-05-19 15:46:49 +00002857 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08002858
Herbert Xuf4c50d92006-06-22 03:02:40 -07002859 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002860 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002861 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2862 skb_put(nskb, len),
2863 len, 0);
2864 continue;
2865 }
2866
2867 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002868
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002869 skb_copy_from_linear_data_offset(skb, offset,
2870 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002871
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002872 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002873
Herbert Xu89319d382008-12-15 23:26:06 -08002874 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002875 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002876 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002877 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002878
2879 if (pos < offset) {
2880 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002881 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002882 }
2883
Herbert Xu89319d382008-12-15 23:26:06 -08002884 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002885
2886 if (pos + size <= offset + len) {
2887 i++;
2888 pos += size;
2889 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002890 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002891 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002892 }
2893
2894 frag++;
2895 }
2896
Herbert Xu89319d382008-12-15 23:26:06 -08002897 if (pos < offset + len) {
2898 struct sk_buff *fskb2 = fskb;
2899
2900 BUG_ON(pos + fskb->len != offset + len);
2901
2902 pos += fskb->len;
2903 fskb = fskb->next;
2904
2905 if (fskb2->next) {
2906 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2907 if (!fskb2)
2908 goto err;
2909 } else
2910 skb_get(fskb2);
2911
David S. Millerfbb398a2009-06-09 00:18:59 -07002912 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002913 skb_shinfo(nskb)->frag_list = fskb2;
2914 }
2915
2916skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002917 nskb->data_len = len - hsize;
2918 nskb->len += nskb->data_len;
2919 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002920
Simon Horman1e42fa02013-05-19 15:46:49 +00002921perform_csum_check:
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002922 if (!csum) {
2923 nskb->csum = skb_checksum(nskb, doffset,
2924 nskb->len - doffset, 0);
2925 nskb->ip_summed = CHECKSUM_NONE;
2926 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002927 } while ((offset += len) < skb->len);
2928
2929 return segs;
2930
2931err:
2932 while ((skb = segs)) {
2933 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002934 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002935 }
2936 return ERR_PTR(err);
2937}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002938EXPORT_SYMBOL_GPL(skb_segment);
2939
Herbert Xu71d93b32008-12-15 23:42:33 -08002940int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2941{
2942 struct sk_buff *p = *head;
2943 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002944 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2945 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002946 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002947 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002948 unsigned int offset = skb_gro_offset(skb);
2949 unsigned int headlen = skb_headlen(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002950 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002951
Herbert Xu86911732009-01-29 14:19:50 +00002952 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002953 return -E2BIG;
2954
Herbert Xu9aaa1562009-05-26 18:50:33 +00002955 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002956 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002957 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002958 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002959 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002960 int i = skbinfo->nr_frags;
2961 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002962
Herbert Xu66e92fc2009-05-26 18:50:32 +00002963 offset -= headlen;
2964
2965 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002966 return -E2BIG;
2967
Herbert Xu9aaa1562009-05-26 18:50:33 +00002968 pinfo->nr_frags = nr_frags;
2969 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002970
Herbert Xu9aaa1562009-05-26 18:50:33 +00002971 frag = pinfo->frags + nr_frags;
2972 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002973 do {
2974 *--frag = *--frag2;
2975 } while (--i);
2976
2977 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002978 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002979
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002980 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002981 delta_truesize = skb->truesize -
2982 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002983
Herbert Xuf5572062009-01-14 20:40:03 -08002984 skb->truesize -= skb->data_len;
2985 skb->len -= skb->data_len;
2986 skb->data_len = 0;
2987
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002988 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002989 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002990 } else if (skb->head_frag) {
2991 int nr_frags = pinfo->nr_frags;
2992 skb_frag_t *frag = pinfo->frags + nr_frags;
2993 struct page *page = virt_to_head_page(skb->head);
2994 unsigned int first_size = headlen - offset;
2995 unsigned int first_offset;
2996
2997 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
2998 return -E2BIG;
2999
3000 first_offset = skb->data -
3001 (unsigned char *)page_address(page) +
3002 offset;
3003
3004 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
3005
3006 frag->page.p = page;
3007 frag->page_offset = first_offset;
3008 skb_frag_size_set(frag, first_size);
3009
3010 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3011 /* We dont need to clear skbinfo->nr_frags here */
3012
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003013 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003014 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3015 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08003016 } else if (skb_gro_len(p) != pinfo->gso_size)
3017 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08003018
3019 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00003020 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08003021 if (unlikely(!nskb))
3022 return -ENOMEM;
3023
3024 __copy_skb_header(nskb, p);
3025 nskb->mac_len = p->mac_len;
3026
3027 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00003028 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003029
Herbert Xu86911732009-01-29 14:19:50 +00003030 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003031 skb_set_network_header(nskb, skb_network_offset(p));
3032 skb_set_transport_header(nskb, skb_transport_offset(p));
3033
Herbert Xu86911732009-01-29 14:19:50 +00003034 __skb_pull(p, skb_gro_offset(p));
3035 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3036 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003037
Herbert Xu71d93b32008-12-15 23:42:33 -08003038 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003039 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003040 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003041 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003042 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003043
3044 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003045 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003046 nskb->len += p->len;
3047
3048 *head = nskb;
3049 nskb->next = p->next;
3050 p->next = NULL;
3051
3052 p = nskb;
3053
3054merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003055 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003056 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003057 unsigned int eat = offset - headlen;
3058
3059 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003060 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003061 skb->data_len -= eat;
3062 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003063 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003064 }
3065
Herbert Xu67147ba2009-05-26 18:50:22 +00003066 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003067
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003068 NAPI_GRO_CB(p)->last->next = skb;
3069 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003070 skb_header_release(skb);
3071
Herbert Xu5d38a072009-01-04 16:13:40 -08003072done:
3073 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003074 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003075 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003076 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08003077
3078 NAPI_GRO_CB(skb)->same_flow = 1;
3079 return 0;
3080}
3081EXPORT_SYMBOL_GPL(skb_gro_receive);
3082
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083void __init skb_init(void)
3084{
3085 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3086 sizeof(struct sk_buff),
3087 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003088 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003089 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003090 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3091 (2*sizeof(struct sk_buff)) +
3092 sizeof(atomic_t),
3093 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003094 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003095 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096}
3097
David Howells716ea3a2007-04-02 20:19:53 -07003098/**
3099 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3100 * @skb: Socket buffer containing the buffers to be mapped
3101 * @sg: The scatter-gather list to map into
3102 * @offset: The offset into the buffer's contents to start mapping
3103 * @len: Length of buffer space to be mapped
3104 *
3105 * Fill the specified scatter-gather list with mappings/pointers into a
3106 * region of the buffer space attached to a socket buffer.
3107 */
David S. Miller51c739d2007-10-30 21:29:29 -07003108static int
3109__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003110{
David S. Miller1a028e52007-04-27 15:21:23 -07003111 int start = skb_headlen(skb);
3112 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003113 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003114 int elt = 0;
3115
3116 if (copy > 0) {
3117 if (copy > len)
3118 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003119 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003120 elt++;
3121 if ((len -= copy) == 0)
3122 return elt;
3123 offset += copy;
3124 }
3125
3126 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003127 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003128
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003129 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003130
Eric Dumazet9e903e02011-10-18 21:00:24 +00003131 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003132 if ((copy = end - offset) > 0) {
3133 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3134
3135 if (copy > len)
3136 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003137 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003138 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003139 elt++;
3140 if (!(len -= copy))
3141 return elt;
3142 offset += copy;
3143 }
David S. Miller1a028e52007-04-27 15:21:23 -07003144 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003145 }
3146
David S. Millerfbb398a2009-06-09 00:18:59 -07003147 skb_walk_frags(skb, frag_iter) {
3148 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003149
David S. Millerfbb398a2009-06-09 00:18:59 -07003150 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003151
David S. Millerfbb398a2009-06-09 00:18:59 -07003152 end = start + frag_iter->len;
3153 if ((copy = end - offset) > 0) {
3154 if (copy > len)
3155 copy = len;
3156 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3157 copy);
3158 if ((len -= copy) == 0)
3159 return elt;
3160 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003161 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003162 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003163 }
3164 BUG_ON(len);
3165 return elt;
3166}
3167
David S. Miller51c739d2007-10-30 21:29:29 -07003168int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3169{
3170 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3171
Jens Axboec46f2332007-10-31 12:06:37 +01003172 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003173
3174 return nsg;
3175}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003176EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003177
David Howells716ea3a2007-04-02 20:19:53 -07003178/**
3179 * skb_cow_data - Check that a socket buffer's data buffers are writable
3180 * @skb: The socket buffer to check.
3181 * @tailbits: Amount of trailing space to be added
3182 * @trailer: Returned pointer to the skb where the @tailbits space begins
3183 *
3184 * Make sure that the data buffers attached to a socket buffer are
3185 * writable. If they are not, private copies are made of the data buffers
3186 * and the socket buffer is set to use these instead.
3187 *
3188 * If @tailbits is given, make sure that there is space to write @tailbits
3189 * bytes of data beyond current end of socket buffer. @trailer will be
3190 * set to point to the skb in which this space begins.
3191 *
3192 * The number of scatterlist elements required to completely map the
3193 * COW'd and extended socket buffer will be returned.
3194 */
3195int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3196{
3197 int copyflag;
3198 int elt;
3199 struct sk_buff *skb1, **skb_p;
3200
3201 /* If skb is cloned or its head is paged, reallocate
3202 * head pulling out all the pages (pages are considered not writable
3203 * at the moment even if they are anonymous).
3204 */
3205 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3206 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3207 return -ENOMEM;
3208
3209 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003210 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003211 /* A little of trouble, not enough of space for trailer.
3212 * This should not happen, when stack is tuned to generate
3213 * good frames. OK, on miss we reallocate and reserve even more
3214 * space, 128 bytes is fair. */
3215
3216 if (skb_tailroom(skb) < tailbits &&
3217 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3218 return -ENOMEM;
3219
3220 /* Voila! */
3221 *trailer = skb;
3222 return 1;
3223 }
3224
3225 /* Misery. We are in troubles, going to mincer fragments... */
3226
3227 elt = 1;
3228 skb_p = &skb_shinfo(skb)->frag_list;
3229 copyflag = 0;
3230
3231 while ((skb1 = *skb_p) != NULL) {
3232 int ntail = 0;
3233
3234 /* The fragment is partially pulled by someone,
3235 * this can happen on input. Copy it and everything
3236 * after it. */
3237
3238 if (skb_shared(skb1))
3239 copyflag = 1;
3240
3241 /* If the skb is the last, worry about trailer. */
3242
3243 if (skb1->next == NULL && tailbits) {
3244 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003245 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003246 skb_tailroom(skb1) < tailbits)
3247 ntail = tailbits + 128;
3248 }
3249
3250 if (copyflag ||
3251 skb_cloned(skb1) ||
3252 ntail ||
3253 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003254 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003255 struct sk_buff *skb2;
3256
3257 /* Fuck, we are miserable poor guys... */
3258 if (ntail == 0)
3259 skb2 = skb_copy(skb1, GFP_ATOMIC);
3260 else
3261 skb2 = skb_copy_expand(skb1,
3262 skb_headroom(skb1),
3263 ntail,
3264 GFP_ATOMIC);
3265 if (unlikely(skb2 == NULL))
3266 return -ENOMEM;
3267
3268 if (skb1->sk)
3269 skb_set_owner_w(skb2, skb1->sk);
3270
3271 /* Looking around. Are we still alive?
3272 * OK, link new skb, drop old one */
3273
3274 skb2->next = skb1->next;
3275 *skb_p = skb2;
3276 kfree_skb(skb1);
3277 skb1 = skb2;
3278 }
3279 elt++;
3280 *trailer = skb1;
3281 skb_p = &skb1->next;
3282 }
3283
3284 return elt;
3285}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003286EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003287
Eric Dumazetb1faf562010-05-31 23:44:05 -07003288static void sock_rmem_free(struct sk_buff *skb)
3289{
3290 struct sock *sk = skb->sk;
3291
3292 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3293}
3294
3295/*
3296 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3297 */
3298int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3299{
Eric Dumazet110c4332012-04-06 10:49:10 +02003300 int len = skb->len;
3301
Eric Dumazetb1faf562010-05-31 23:44:05 -07003302 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003303 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003304 return -ENOMEM;
3305
3306 skb_orphan(skb);
3307 skb->sk = sk;
3308 skb->destructor = sock_rmem_free;
3309 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3310
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003311 /* before exiting rcu section, make sure dst is refcounted */
3312 skb_dst_force(skb);
3313
Eric Dumazetb1faf562010-05-31 23:44:05 -07003314 skb_queue_tail(&sk->sk_error_queue, skb);
3315 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003316 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003317 return 0;
3318}
3319EXPORT_SYMBOL(sock_queue_err_skb);
3320
Patrick Ohlyac45f602009-02-12 05:03:37 +00003321void skb_tstamp_tx(struct sk_buff *orig_skb,
3322 struct skb_shared_hwtstamps *hwtstamps)
3323{
3324 struct sock *sk = orig_skb->sk;
3325 struct sock_exterr_skb *serr;
3326 struct sk_buff *skb;
3327 int err;
3328
3329 if (!sk)
3330 return;
3331
Patrick Ohlyac45f602009-02-12 05:03:37 +00003332 if (hwtstamps) {
Willem de Bruijn2e313962013-04-23 00:39:28 +00003333 *skb_hwtstamps(orig_skb) =
Patrick Ohlyac45f602009-02-12 05:03:37 +00003334 *hwtstamps;
3335 } else {
3336 /*
3337 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003338 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003339 * store software time stamp
3340 */
Willem de Bruijn2e313962013-04-23 00:39:28 +00003341 orig_skb->tstamp = ktime_get_real();
Patrick Ohlyac45f602009-02-12 05:03:37 +00003342 }
3343
Willem de Bruijn2e313962013-04-23 00:39:28 +00003344 skb = skb_clone(orig_skb, GFP_ATOMIC);
3345 if (!skb)
3346 return;
3347
Patrick Ohlyac45f602009-02-12 05:03:37 +00003348 serr = SKB_EXT_ERR(skb);
3349 memset(serr, 0, sizeof(*serr));
3350 serr->ee.ee_errno = ENOMSG;
3351 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003352
Patrick Ohlyac45f602009-02-12 05:03:37 +00003353 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003354
Patrick Ohlyac45f602009-02-12 05:03:37 +00003355 if (err)
3356 kfree_skb(skb);
3357}
3358EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3359
Johannes Berg6e3e9392011-11-09 10:15:42 +01003360void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3361{
3362 struct sock *sk = skb->sk;
3363 struct sock_exterr_skb *serr;
3364 int err;
3365
3366 skb->wifi_acked_valid = 1;
3367 skb->wifi_acked = acked;
3368
3369 serr = SKB_EXT_ERR(skb);
3370 memset(serr, 0, sizeof(*serr));
3371 serr->ee.ee_errno = ENOMSG;
3372 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3373
3374 err = sock_queue_err_skb(sk, skb);
3375 if (err)
3376 kfree_skb(skb);
3377}
3378EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3379
Patrick Ohlyac45f602009-02-12 05:03:37 +00003380
Rusty Russellf35d9d82008-02-04 23:49:54 -05003381/**
3382 * skb_partial_csum_set - set up and verify partial csum values for packet
3383 * @skb: the skb to set
3384 * @start: the number of bytes after skb->data to start checksumming.
3385 * @off: the offset from start to place the checksum.
3386 *
3387 * For untrusted partially-checksummed packets, we need to make sure the values
3388 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3389 *
3390 * This function checks and sets those values and skb->ip_summed: if this
3391 * returns false you should drop the packet.
3392 */
3393bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3394{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003395 if (unlikely(start > skb_headlen(skb)) ||
3396 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003397 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3398 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003399 return false;
3400 }
3401 skb->ip_summed = CHECKSUM_PARTIAL;
3402 skb->csum_start = skb_headroom(skb) + start;
3403 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003404 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003405 return true;
3406}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003407EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003408
Ben Hutchings4497b072008-06-19 16:22:28 -07003409void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3410{
Joe Perchese87cc472012-05-13 21:56:26 +00003411 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3412 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003413}
Ben Hutchings4497b072008-06-19 16:22:28 -07003414EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003415
3416void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3417{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003418 if (head_stolen) {
3419 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003420 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003421 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003422 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003423 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003424}
3425EXPORT_SYMBOL(kfree_skb_partial);
3426
3427/**
3428 * skb_try_coalesce - try to merge skb to prior one
3429 * @to: prior buffer
3430 * @from: buffer to add
3431 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003432 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003433 */
3434bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3435 bool *fragstolen, int *delta_truesize)
3436{
3437 int i, delta, len = from->len;
3438
3439 *fragstolen = false;
3440
3441 if (skb_cloned(to))
3442 return false;
3443
3444 if (len <= skb_tailroom(to)) {
3445 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3446 *delta_truesize = 0;
3447 return true;
3448 }
3449
3450 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3451 return false;
3452
3453 if (skb_headlen(from) != 0) {
3454 struct page *page;
3455 unsigned int offset;
3456
3457 if (skb_shinfo(to)->nr_frags +
3458 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3459 return false;
3460
3461 if (skb_head_is_locked(from))
3462 return false;
3463
3464 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3465
3466 page = virt_to_head_page(from->head);
3467 offset = from->data - (unsigned char *)page_address(page);
3468
3469 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3470 page, offset, skb_headlen(from));
3471 *fragstolen = true;
3472 } else {
3473 if (skb_shinfo(to)->nr_frags +
3474 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3475 return false;
3476
Weiping Panf4b549a2012-09-28 20:15:30 +00003477 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003478 }
3479
3480 WARN_ON_ONCE(delta < len);
3481
3482 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3483 skb_shinfo(from)->frags,
3484 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3485 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3486
3487 if (!skb_cloned(from))
3488 skb_shinfo(from)->nr_frags = 0;
3489
Li RongQing8ea853f2012-09-18 16:53:21 +00003490 /* if the skb is not cloned this does nothing
3491 * since we set nr_frags to 0.
3492 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003493 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3494 skb_frag_ref(from, i);
3495
3496 to->truesize += delta;
3497 to->len += len;
3498 to->data_len += len;
3499
3500 *delta_truesize = delta;
3501 return true;
3502}
3503EXPORT_SYMBOL(skb_try_coalesce);