blob: e4115597b38bdb1e1c16d2086aa2bb5df7e42450 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
Joe Perchese005d192012-05-16 19:58:40 +000039#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
42#include <linux/types.h>
43#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020044#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/mm.h>
46#include <linux/interrupt.h>
47#include <linux/in.h>
48#include <linux/inet.h>
49#include <linux/slab.h>
50#include <linux/netdevice.h>
51#ifdef CONFIG_NET_CLS_ACT
52#include <net/pkt_sched.h>
53#endif
54#include <linux/string.h>
55#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080056#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/cache.h>
58#include <linux/rtnetlink.h>
59#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070060#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000061#include <linux/errqueue.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070062#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#include <net/protocol.h>
65#include <net/dst.h>
66#include <net/sock.h>
67#include <net/checksum.h>
68#include <net/xfrm.h>
69
70#include <asm/uaccess.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040071#include <trace/events/skb.h>
Eric Dumazet51c56b02012-04-05 11:35:15 +020072#include <linux/highmem.h>
Al Viroa1f8e7f72006-10-19 16:08:53 -040073
Eric Dumazetd7e88832012-04-30 08:10:34 +000074struct kmem_cache *skbuff_head_cache __read_mostly;
Christoph Lametere18b8902006-12-06 20:33:20 -080075static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jens Axboe9c55e012007-11-06 23:30:13 -080077static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
78 struct pipe_buffer *buf)
79{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080080 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080081}
82
83static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
84 struct pipe_buffer *buf)
85{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080086 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080087}
88
89static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
90 struct pipe_buffer *buf)
91{
92 return 1;
93}
94
95
96/* Pipe buffer operations for a socket. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -080097static const struct pipe_buf_operations sock_pipe_buf_ops = {
Jens Axboe9c55e012007-11-06 23:30:13 -080098 .can_merge = 0,
99 .map = generic_pipe_buf_map,
100 .unmap = generic_pipe_buf_unmap,
101 .confirm = generic_pipe_buf_confirm,
102 .release = sock_pipe_buf_release,
103 .steal = sock_pipe_buf_steal,
104 .get = sock_pipe_buf_get,
105};
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/**
Jean Sacrenf05de732013-02-11 13:30:38 +0000108 * skb_panic - private function for out-of-line support
109 * @skb: buffer
110 * @sz: size
111 * @addr: address
James Hogan99d58512013-02-13 11:20:27 +0000112 * @msg: skb_over_panic or skb_under_panic
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
Jean Sacrenf05de732013-02-11 13:30:38 +0000114 * Out-of-line support for skb_put() and skb_push().
115 * Called via the wrapper skb_over_panic() or skb_under_panic().
116 * Keep out of line to prevent kernel bloat.
117 * __builtin_return_address is not used because it is not always reliable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
Jean Sacrenf05de732013-02-11 13:30:38 +0000119static void skb_panic(struct sk_buff *skb, unsigned int sz, void *addr,
James Hogan99d58512013-02-13 11:20:27 +0000120 const char msg[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Joe Perchese005d192012-05-16 19:58:40 +0000122 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
James Hogan99d58512013-02-13 11:20:27 +0000123 msg, addr, skb->len, sz, skb->head, skb->data,
Joe Perchese005d192012-05-16 19:58:40 +0000124 (unsigned long)skb->tail, (unsigned long)skb->end,
125 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 BUG();
127}
128
Jean Sacrenf05de732013-02-11 13:30:38 +0000129static void skb_over_panic(struct sk_buff *skb, unsigned int sz, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Jean Sacrenf05de732013-02-11 13:30:38 +0000131 skb_panic(skb, sz, addr, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Jean Sacrenf05de732013-02-11 13:30:38 +0000134static void skb_under_panic(struct sk_buff *skb, unsigned int sz, void *addr)
135{
136 skb_panic(skb, sz, addr, __func__);
137}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700138
139/*
140 * kmalloc_reserve is a wrapper around kmalloc_node_track_caller that tells
141 * the caller if emergency pfmemalloc reserves are being used. If it is and
142 * the socket is later found to be SOCK_MEMALLOC then PFMEMALLOC reserves
143 * may be used. Otherwise, the packet data may be discarded until enough
144 * memory is free
145 */
146#define kmalloc_reserve(size, gfp, node, pfmemalloc) \
147 __kmalloc_reserve(size, gfp, node, _RET_IP_, pfmemalloc)
stephen hemminger61c5e882012-12-28 18:24:28 +0000148
149static void *__kmalloc_reserve(size_t size, gfp_t flags, int node,
150 unsigned long ip, bool *pfmemalloc)
Mel Gormanc93bdd02012-07-31 16:44:19 -0700151{
152 void *obj;
153 bool ret_pfmemalloc = false;
154
155 /*
156 * Try a regular allocation, when that fails and we're not entitled
157 * to the reserves, fail.
158 */
159 obj = kmalloc_node_track_caller(size,
160 flags | __GFP_NOMEMALLOC | __GFP_NOWARN,
161 node);
162 if (obj || !(gfp_pfmemalloc_allowed(flags)))
163 goto out;
164
165 /* Try again but now we are using pfmemalloc reserves */
166 ret_pfmemalloc = true;
167 obj = kmalloc_node_track_caller(size, flags, node);
168
169out:
170 if (pfmemalloc)
171 *pfmemalloc = ret_pfmemalloc;
172
173 return obj;
174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/* Allocate a new skbuff. We do this ourselves so we can fill in a few
177 * 'private' fields and also do memory statistics to find all the
178 * [BEEP] leaks.
179 *
180 */
181
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000182struct sk_buff *__alloc_skb_head(gfp_t gfp_mask, int node)
183{
184 struct sk_buff *skb;
185
186 /* Get the HEAD */
187 skb = kmem_cache_alloc_node(skbuff_head_cache,
188 gfp_mask & ~__GFP_DMA, node);
189 if (!skb)
190 goto out;
191
192 /*
193 * Only clear those fields we need to clear, not those that we will
194 * actually initialise below. Hence, don't put any more fields after
195 * the tail pointer in struct sk_buff!
196 */
197 memset(skb, 0, offsetof(struct sk_buff, tail));
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000198 skb->head = NULL;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000199 skb->truesize = sizeof(struct sk_buff);
200 atomic_set(&skb->users, 1);
201
Cong Wang35d04612013-05-29 15:16:05 +0800202 skb->mac_header = (typeof(skb->mac_header))~0U;
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000203out:
204 return skb;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/**
David S. Millerd179cd12005-08-17 14:57:30 -0700208 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * @size: size to allocate
210 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700211 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
212 * instead of head cache and allocate a cloned (child) skb.
213 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
214 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800215 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
217 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000218 * tail room of at least size bytes. The object has a reference count
219 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 *
221 * Buffers may only be allocated from interrupts using a @gfp_mask of
222 * %GFP_ATOMIC.
223 */
Al Virodd0fc662005-10-07 07:46:04 +0100224struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700225 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Christoph Lametere18b8902006-12-06 20:33:20 -0800227 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800228 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct sk_buff *skb;
230 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700231 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Mel Gormanc93bdd02012-07-31 16:44:19 -0700233 cache = (flags & SKB_ALLOC_FCLONE)
234 ? skbuff_fclone_cache : skbuff_head_cache;
235
236 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
237 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800240 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!skb)
242 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700243 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000245 /* We do our best to align skb_shared_info on a separate cache
246 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
247 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
248 * Both skb->head and skb_shared_info are cache line aligned.
249 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000250 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000251 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700252 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (!data)
254 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000255 /* kmalloc(size) might give us more room than requested.
256 * Put skb_shared_info exactly at the end of allocated zone,
257 * to allow max possible filling before reallocation.
258 */
259 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700260 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300262 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700263 * Only clear those fields we need to clear, not those that we will
264 * actually initialise below. Hence, don't put any more fields after
265 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300266 */
267 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000268 /* Account for allocated memory : skb + skb->head */
269 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700270 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 atomic_set(&skb->users, 1);
272 skb->head = data;
273 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700274 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700275 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800276 skb->mac_header = (typeof(skb->mac_header))~0U;
277 skb->transport_header = (typeof(skb->transport_header))~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000278
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800279 /* make sure we initialize shinfo sequentially */
280 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700281 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800282 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000283 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800284
Mel Gormanc93bdd02012-07-31 16:44:19 -0700285 if (flags & SKB_ALLOC_FCLONE) {
David S. Millerd179cd12005-08-17 14:57:30 -0700286 struct sk_buff *child = skb + 1;
287 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200289 kmemcheck_annotate_bitfield(child, flags1);
290 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700291 skb->fclone = SKB_FCLONE_ORIG;
292 atomic_set(fclone_ref, 1);
293
294 child->fclone = SKB_FCLONE_UNAVAILABLE;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700295 child->pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297out:
298 return skb;
299nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800300 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 skb = NULL;
302 goto out;
303}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800304EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000307 * build_skb - build a network buffer
308 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000309 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000310 *
311 * Allocate a new &sk_buff. Caller provides space holding head and
Florian Fainellideceb4c2013-07-23 20:22:39 +0100312 * skb_shared_info. @data must have been allocated by kmalloc() only if
313 * @frag_size is 0, otherwise data should come from the page allocator.
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000314 * The return is the new skb buffer.
315 * On a failure the return is %NULL, and @data is not freed.
316 * Notes :
317 * Before IO, driver allocates only data buffer where NIC put incoming frame
318 * Driver should add room at head (NET_SKB_PAD) and
319 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
320 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
321 * before giving packet to stack.
322 * RX rings only contains data buffers, not full skbs.
323 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000324struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000325{
326 struct skb_shared_info *shinfo;
327 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000328 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000329
330 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
331 if (!skb)
332 return NULL;
333
Eric Dumazetd3836f22012-04-27 00:33:38 +0000334 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000335
336 memset(skb, 0, offsetof(struct sk_buff, tail));
337 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000338 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000339 atomic_set(&skb->users, 1);
340 skb->head = data;
341 skb->data = data;
342 skb_reset_tail_pointer(skb);
343 skb->end = skb->tail + size;
Cong Wang35d04612013-05-29 15:16:05 +0800344 skb->mac_header = (typeof(skb->mac_header))~0U;
345 skb->transport_header = (typeof(skb->transport_header))~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000346
347 /* make sure we initialize shinfo sequentially */
348 shinfo = skb_shinfo(skb);
349 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
350 atomic_set(&shinfo->dataref, 1);
351 kmemcheck_annotate_variable(shinfo->destructor_arg);
352
353 return skb;
354}
355EXPORT_SYMBOL(build_skb);
356
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000357struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000358 struct page_frag frag;
359 /* we maintain a pagecount bias, so that we dont dirty cache line
360 * containing page->_count every time we allocate a fragment.
361 */
362 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000363};
364static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
365
Mel Gormanc93bdd02012-07-31 16:44:19 -0700366static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000367{
368 struct netdev_alloc_cache *nc;
369 void *data = NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000370 int order;
Eric Dumazet6f532612012-05-18 05:12:12 +0000371 unsigned long flags;
372
373 local_irq_save(flags);
374 nc = &__get_cpu_var(netdev_alloc_cache);
Eric Dumazet69b08f62012-09-26 06:46:57 +0000375 if (unlikely(!nc->frag.page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000376refill:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000377 for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) {
378 gfp_t gfp = gfp_mask;
379
380 if (order)
381 gfp |= __GFP_COMP | __GFP_NOWARN;
382 nc->frag.page = alloc_pages(gfp, order);
383 if (likely(nc->frag.page))
384 break;
385 if (--order < 0)
386 goto end;
387 }
388 nc->frag.size = PAGE_SIZE << order;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000389recycle:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000390 atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS);
391 nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS;
392 nc->frag.offset = 0;
Eric Dumazet6f532612012-05-18 05:12:12 +0000393 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000394
Eric Dumazet69b08f62012-09-26 06:46:57 +0000395 if (nc->frag.offset + fragsz > nc->frag.size) {
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000396 /* avoid unnecessary locked operations if possible */
Eric Dumazet69b08f62012-09-26 06:46:57 +0000397 if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) ||
398 atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count))
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000399 goto recycle;
400 goto refill;
Eric Dumazet6f532612012-05-18 05:12:12 +0000401 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000402
Eric Dumazet69b08f62012-09-26 06:46:57 +0000403 data = page_address(nc->frag.page) + nc->frag.offset;
404 nc->frag.offset += fragsz;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000405 nc->pagecnt_bias--;
406end:
Eric Dumazet6f532612012-05-18 05:12:12 +0000407 local_irq_restore(flags);
408 return data;
409}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700410
411/**
412 * netdev_alloc_frag - allocate a page fragment
413 * @fragsz: fragment size
414 *
415 * Allocates a frag from a page for receive buffer.
416 * Uses GFP_ATOMIC allocations.
417 */
418void *netdev_alloc_frag(unsigned int fragsz)
419{
420 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
421}
Eric Dumazet6f532612012-05-18 05:12:12 +0000422EXPORT_SYMBOL(netdev_alloc_frag);
423
424/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700425 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
426 * @dev: network device to receive on
427 * @length: length to allocate
428 * @gfp_mask: get_free_pages mask, passed to alloc_skb
429 *
430 * Allocate a new &sk_buff and assign it a usage count of one. The
431 * buffer has unspecified headroom built in. Users should allocate
432 * the headroom they think they need without accounting for the
433 * built in space. The built in space is used for optimisations.
434 *
435 * %NULL is returned if there is no free memory.
436 */
437struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
Eric Dumazet6f532612012-05-18 05:12:12 +0000438 unsigned int length, gfp_t gfp_mask)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700439{
Eric Dumazet6f532612012-05-18 05:12:12 +0000440 struct sk_buff *skb = NULL;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000441 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
442 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700443
Eric Dumazet310e1582012-07-16 13:15:52 +0200444 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700445 void *data;
446
447 if (sk_memalloc_socks())
448 gfp_mask |= __GFP_MEMALLOC;
449
450 data = __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000451
Eric Dumazet6f532612012-05-18 05:12:12 +0000452 if (likely(data)) {
453 skb = build_skb(data, fragsz);
454 if (unlikely(!skb))
455 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000456 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000457 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700458 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
459 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000460 }
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700461 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700462 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700463 skb->dev = dev;
464 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700465 return skb;
466}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800467EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Peter Zijlstra654bed12008-10-07 14:22:33 -0700469void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000470 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700471{
472 skb_fill_page_desc(skb, i, page, off, size);
473 skb->len += size;
474 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000475 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700476}
477EXPORT_SYMBOL(skb_add_rx_frag);
478
Herbert Xu27b437c2006-07-13 19:26:39 -0700479static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700481 kfree_skb_list(*listp);
Herbert Xu27b437c2006-07-13 19:26:39 -0700482 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Herbert Xu27b437c2006-07-13 19:26:39 -0700485static inline void skb_drop_fraglist(struct sk_buff *skb)
486{
487 skb_drop_list(&skb_shinfo(skb)->frag_list);
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static void skb_clone_fraglist(struct sk_buff *skb)
491{
492 struct sk_buff *list;
493
David S. Millerfbb398a2009-06-09 00:18:59 -0700494 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 skb_get(list);
496}
497
Eric Dumazetd3836f22012-04-27 00:33:38 +0000498static void skb_free_head(struct sk_buff *skb)
499{
500 if (skb->head_frag)
501 put_page(virt_to_head_page(skb->head));
502 else
503 kfree(skb->head);
504}
505
Adrian Bunk5bba1712006-06-29 13:02:35 -0700506static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 if (!skb->cloned ||
509 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
510 &skb_shinfo(skb)->dataref)) {
511 if (skb_shinfo(skb)->nr_frags) {
512 int i;
513 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000514 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
Shirley Maa6686f22011-07-06 12:22:12 +0000517 /*
518 * If skb buf is from userspace, we need to notify the caller
519 * the lower device DMA has done;
520 */
521 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
522 struct ubuf_info *uarg;
523
524 uarg = skb_shinfo(skb)->destructor_arg;
525 if (uarg->callback)
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000526 uarg->callback(uarg, true);
Shirley Maa6686f22011-07-06 12:22:12 +0000527 }
528
David S. Miller21dc3302010-08-23 00:13:46 -0700529 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 skb_drop_fraglist(skb);
531
Eric Dumazetd3836f22012-04-27 00:33:38 +0000532 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534}
535
536/*
537 * Free an skbuff by memory without cleaning the state.
538 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800539static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
David S. Millerd179cd12005-08-17 14:57:30 -0700541 struct sk_buff *other;
542 atomic_t *fclone_ref;
543
David S. Millerd179cd12005-08-17 14:57:30 -0700544 switch (skb->fclone) {
545 case SKB_FCLONE_UNAVAILABLE:
546 kmem_cache_free(skbuff_head_cache, skb);
547 break;
548
549 case SKB_FCLONE_ORIG:
550 fclone_ref = (atomic_t *) (skb + 2);
551 if (atomic_dec_and_test(fclone_ref))
552 kmem_cache_free(skbuff_fclone_cache, skb);
553 break;
554
555 case SKB_FCLONE_CLONE:
556 fclone_ref = (atomic_t *) (skb + 1);
557 other = skb - 1;
558
559 /* The clone portion is available for
560 * fast-cloning again.
561 */
562 skb->fclone = SKB_FCLONE_UNAVAILABLE;
563
564 if (atomic_dec_and_test(fclone_ref))
565 kmem_cache_free(skbuff_fclone_cache, other);
566 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700570static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Eric Dumazetadf30902009-06-02 05:19:30 +0000572 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#ifdef CONFIG_XFRM
574 secpath_put(skb->sp);
575#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700576 if (skb->destructor) {
577 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 skb->destructor(skb);
579 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000580#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700581 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100582#endif
583#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800584 nf_conntrack_put_reasm(skb->nfct_reasm);
585#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586#ifdef CONFIG_BRIDGE_NETFILTER
587 nf_bridge_put(skb->nf_bridge);
588#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589/* XXX: IS this still necessary? - JHS */
590#ifdef CONFIG_NET_SCHED
591 skb->tc_index = 0;
592#ifdef CONFIG_NET_CLS_ACT
593 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594#endif
595#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700596}
597
598/* Free everything but the sk_buff shell. */
599static void skb_release_all(struct sk_buff *skb)
600{
601 skb_release_head_state(skb);
Pablo Neira5e71d9d2013-06-03 09:28:43 +0000602 if (likely(skb->head))
Patrick McHardy0ebd0ac2013-04-17 06:46:58 +0000603 skb_release_data(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800604}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Herbert Xu2d4baff2007-11-26 23:11:19 +0800606/**
607 * __kfree_skb - private function
608 * @skb: buffer
609 *
610 * Free an sk_buff. Release anything attached to the buffer.
611 * Clean the state. This is an internal helper function. Users should
612 * always call kfree_skb
613 */
614
615void __kfree_skb(struct sk_buff *skb)
616{
617 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 kfree_skbmem(skb);
619}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800620EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800623 * kfree_skb - free an sk_buff
624 * @skb: buffer to free
625 *
626 * Drop a reference to the buffer and free it if the usage count has
627 * hit zero.
628 */
629void kfree_skb(struct sk_buff *skb)
630{
631 if (unlikely(!skb))
632 return;
633 if (likely(atomic_read(&skb->users) == 1))
634 smp_rmb();
635 else if (likely(!atomic_dec_and_test(&skb->users)))
636 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000637 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800638 __kfree_skb(skb);
639}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800640EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800641
Eric Dumazetbd8a7032013-06-24 06:26:00 -0700642void kfree_skb_list(struct sk_buff *segs)
643{
644 while (segs) {
645 struct sk_buff *next = segs->next;
646
647 kfree_skb(segs);
648 segs = next;
649 }
650}
651EXPORT_SYMBOL(kfree_skb_list);
652
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700653/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000654 * skb_tx_error - report an sk_buff xmit error
655 * @skb: buffer that triggered an error
656 *
657 * Report xmit error if a device callback is tracking this skb.
658 * skb must be freed afterwards.
659 */
660void skb_tx_error(struct sk_buff *skb)
661{
662 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
663 struct ubuf_info *uarg;
664
665 uarg = skb_shinfo(skb)->destructor_arg;
666 if (uarg->callback)
667 uarg->callback(uarg, false);
668 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
669 }
670}
671EXPORT_SYMBOL(skb_tx_error);
672
673/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000674 * consume_skb - free an skbuff
675 * @skb: buffer to free
676 *
677 * Drop a ref to the buffer and free it if the usage count has hit zero
678 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
679 * is being dropped after a failure and notes that
680 */
681void consume_skb(struct sk_buff *skb)
682{
683 if (unlikely(!skb))
684 return;
685 if (likely(atomic_read(&skb->users) == 1))
686 smp_rmb();
687 else if (likely(!atomic_dec_and_test(&skb->users)))
688 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900689 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000690 __kfree_skb(skb);
691}
692EXPORT_SYMBOL(consume_skb);
693
Herbert Xudec18812007-10-14 00:37:30 -0700694static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
695{
696 new->tstamp = old->tstamp;
697 new->dev = old->dev;
698 new->transport_header = old->transport_header;
699 new->network_header = old->network_header;
700 new->mac_header = old->mac_header;
Joe Stringer4bc41b82013-07-03 16:04:25 +0900701 new->inner_protocol = old->inner_protocol;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000702 new->inner_transport_header = old->inner_transport_header;
Pravin B Shelar92df9b22013-02-01 15:18:49 +0000703 new->inner_network_header = old->inner_network_header;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000704 new->inner_mac_header = old->inner_mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000705 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000706 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000707 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000708 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000709 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000710 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700711#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700712 new->sp = secpath_get(old->sp);
713#endif
714 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000715 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700716 new->local_df = old->local_df;
717 new->pkt_type = old->pkt_type;
718 new->ip_summed = old->ip_summed;
719 skb_copy_queue_mapping(new, old);
720 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000721#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700722 new->ipvs_property = old->ipvs_property;
723#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700724 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700725 new->protocol = old->protocol;
726 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800727 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700728 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000729#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700730 new->nf_trace = old->nf_trace;
731#endif
732#ifdef CONFIG_NET_SCHED
733 new->tc_index = old->tc_index;
734#ifdef CONFIG_NET_CLS_ACT
735 new->tc_verd = old->tc_verd;
736#endif
737#endif
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000738 new->vlan_proto = old->vlan_proto;
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700739 new->vlan_tci = old->vlan_tci;
740
Herbert Xudec18812007-10-14 00:37:30 -0700741 skb_copy_secmark(new, old);
Eliezer Tamir06021292013-06-10 11:39:50 +0300742
Cong Wange0d10952013-08-01 11:10:25 +0800743#ifdef CONFIG_NET_RX_BUSY_POLL
Eliezer Tamir06021292013-06-10 11:39:50 +0300744 new->napi_id = old->napi_id;
745#endif
Herbert Xudec18812007-10-14 00:37:30 -0700746}
747
Herbert Xu82c49a32009-05-22 22:11:37 +0000748/*
749 * You should not add any new code to this function. Add it to
750 * __copy_skb_header above instead.
751 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700752static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754#define C(x) n->x = skb->x
755
756 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700758 __copy_skb_header(n, skb);
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 C(len);
761 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700762 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700763 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800764 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 C(tail);
768 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800769 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000770 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800771 C(data);
772 C(truesize);
773 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 atomic_inc(&(skb_shinfo(skb)->dataref));
776 skb->cloned = 1;
777
778 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700779#undef C
780}
781
782/**
783 * skb_morph - morph one skb into another
784 * @dst: the skb to receive the contents
785 * @src: the skb to supply the contents
786 *
787 * This is identical to skb_clone except that the target skb is
788 * supplied by the user.
789 *
790 * The target skb is returned upon exit.
791 */
792struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
793{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800794 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700795 return __skb_clone(dst, src);
796}
797EXPORT_SYMBOL_GPL(skb_morph);
798
Ben Hutchings2c530402012-07-10 10:55:09 +0000799/**
800 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000801 * @skb: the skb to modify
802 * @gfp_mask: allocation priority
803 *
804 * This must be called on SKBTX_DEV_ZEROCOPY skb.
805 * It will copy all frags into kernel and drop the reference
806 * to userspace pages.
807 *
808 * If this function is called from an interrupt gfp_mask() must be
809 * %GFP_ATOMIC.
810 *
811 * Returns 0 on success or a negative error code on failure
812 * to allocate kernel memory to copy to.
813 */
814int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000815{
816 int i;
817 int num_frags = skb_shinfo(skb)->nr_frags;
818 struct page *page, *head = NULL;
819 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
820
821 for (i = 0; i < num_frags; i++) {
822 u8 *vaddr;
823 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
824
Krishna Kumar02756ed2012-07-17 02:05:29 +0000825 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000826 if (!page) {
827 while (head) {
Sunghan Suh40dadff2013-07-12 16:17:23 +0900828 struct page *next = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000829 put_page(head);
830 head = next;
831 }
832 return -ENOMEM;
833 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200834 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000835 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000836 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200837 kunmap_atomic(vaddr);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900838 set_page_private(page, (unsigned long)head);
Shirley Maa6686f22011-07-06 12:22:12 +0000839 head = page;
840 }
841
842 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000843 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000844 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000845
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000846 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000847
848 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000849 for (i = num_frags - 1; i >= 0; i--) {
850 __skb_fill_page_desc(skb, i, head, 0,
851 skb_shinfo(skb)->frags[i].size);
Sunghan Suh40dadff2013-07-12 16:17:23 +0900852 head = (struct page *)page_private(head);
Shirley Maa6686f22011-07-06 12:22:12 +0000853 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000854
855 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000856 return 0;
857}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000858EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000859
Herbert Xue0053ec2007-10-14 00:37:52 -0700860/**
861 * skb_clone - duplicate an sk_buff
862 * @skb: buffer to clone
863 * @gfp_mask: allocation priority
864 *
865 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
866 * copies share the same packet data but not structure. The new
867 * buffer has a reference count of 1. If the allocation fails the
868 * function returns %NULL otherwise the new buffer is returned.
869 *
870 * If this function is called from an interrupt gfp_mask() must be
871 * %GFP_ATOMIC.
872 */
873
874struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
875{
876 struct sk_buff *n;
877
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000878 if (skb_orphan_frags(skb, gfp_mask))
879 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000880
Herbert Xue0053ec2007-10-14 00:37:52 -0700881 n = skb + 1;
882 if (skb->fclone == SKB_FCLONE_ORIG &&
883 n->fclone == SKB_FCLONE_UNAVAILABLE) {
884 atomic_t *fclone_ref = (atomic_t *) (n + 1);
885 n->fclone = SKB_FCLONE_CLONE;
886 atomic_inc(fclone_ref);
887 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700888 if (skb_pfmemalloc(skb))
889 gfp_mask |= __GFP_MEMALLOC;
890
Herbert Xue0053ec2007-10-14 00:37:52 -0700891 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
892 if (!n)
893 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200894
895 kmemcheck_annotate_bitfield(n, flags1);
896 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700897 n->fclone = SKB_FCLONE_UNAVAILABLE;
898 }
899
900 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800902EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000904static void skb_headers_offset_update(struct sk_buff *skb, int off)
905{
Eric Dumazet030737b2013-10-19 11:42:54 -0700906 /* Only adjust this if it actually is csum_start rather than csum */
907 if (skb->ip_summed == CHECKSUM_PARTIAL)
908 skb->csum_start += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000909 /* {transport,network,mac}_header and tail are relative to skb->head */
910 skb->transport_header += off;
911 skb->network_header += off;
912 if (skb_mac_header_was_set(skb))
913 skb->mac_header += off;
914 skb->inner_transport_header += off;
915 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000916 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000917}
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
920{
Herbert Xudec18812007-10-14 00:37:30 -0700921 __copy_skb_header(new, old);
922
Herbert Xu79671682006-06-22 02:40:14 -0700923 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
924 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
925 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Mel Gormanc93bdd02012-07-31 16:44:19 -0700928static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
929{
930 if (skb_pfmemalloc(skb))
931 return SKB_ALLOC_RX;
932 return 0;
933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/**
936 * skb_copy - create private copy of an sk_buff
937 * @skb: buffer to copy
938 * @gfp_mask: allocation priority
939 *
940 * Make a copy of both an &sk_buff and its data. This is used when the
941 * caller wishes to modify the data and needs a private copy of the
942 * data to alter. Returns %NULL on failure or the pointer to the buffer
943 * on success. The returned buffer has a reference count of 1.
944 *
945 * As by-product this function converts non-linear &sk_buff to linear
946 * one, so that &sk_buff becomes completely private and caller is allowed
947 * to modify all the data of returned buffer. This means that this
948 * function is not recommended for use in circumstances when only
949 * header is going to be modified. Use pskb_copy() instead.
950 */
951
Al Virodd0fc662005-10-07 07:46:04 +0100952struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000954 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000955 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700956 struct sk_buff *n = __alloc_skb(size, gfp_mask,
957 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (!n)
960 return NULL;
961
962 /* Set the data pointer */
963 skb_reserve(n, headerlen);
964 /* Set the tail pointer and length */
965 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
968 BUG();
969
970 copy_skb_header(n, skb);
971 return n;
972}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800973EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000976 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000978 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 * @gfp_mask: allocation priority
980 *
981 * Make a copy of both an &sk_buff and part of its data, located
982 * in header. Fragmented data remain shared. This is used when
983 * the caller wishes to modify only header of &sk_buff and needs
984 * private copy of the header to alter. Returns %NULL on failure
985 * or the pointer to the buffer on success.
986 * The returned buffer has a reference count of 1.
987 */
988
Eric Dumazet117632e2011-12-03 21:39:53 +0000989struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Eric Dumazet117632e2011-12-03 21:39:53 +0000991 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700992 struct sk_buff *n = __alloc_skb(size, gfp_mask,
993 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (!n)
996 goto out;
997
998 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000999 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /* Set the tail pointer and length */
1001 skb_put(n, skb_headlen(skb));
1002 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001003 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Herbert Xu25f484a2006-11-07 14:57:15 -08001005 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 n->data_len = skb->data_len;
1007 n->len = skb->len;
1008
1009 if (skb_shinfo(skb)->nr_frags) {
1010 int i;
1011
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001012 if (skb_orphan_frags(skb, gfp_mask)) {
1013 kfree_skb(n);
1014 n = NULL;
1015 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +00001016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1018 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00001019 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021 skb_shinfo(n)->nr_frags = i;
1022 }
1023
David S. Miller21dc3302010-08-23 00:13:46 -07001024 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1026 skb_clone_fraglist(n);
1027 }
1028
1029 copy_skb_header(n, skb);
1030out:
1031 return n;
1032}
Eric Dumazet117632e2011-12-03 21:39:53 +00001033EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035/**
1036 * pskb_expand_head - reallocate header of &sk_buff
1037 * @skb: buffer to reallocate
1038 * @nhead: room to add at head
1039 * @ntail: room to add at tail
1040 * @gfp_mask: allocation priority
1041 *
1042 * Expands (or creates identical copy, if &nhead and &ntail are zero)
1043 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
1044 * reference count of 1. Returns zero in the case of success or error,
1045 * if expansion failed. In the last case, &sk_buff is not changed.
1046 *
1047 * All the pointers pointing into skb header may change and must be
1048 * reloaded after call to this function.
1049 */
1050
Victor Fusco86a76ca2005-07-08 14:57:47 -07001051int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001052 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 int i;
1055 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001056 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 long off;
1058
Herbert Xu4edd87a2008-10-01 07:09:38 -07001059 BUG_ON(nhead < 0);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (skb_shared(skb))
1062 BUG();
1063
1064 size = SKB_DATA_ALIGN(size);
1065
Mel Gormanc93bdd02012-07-31 16:44:19 -07001066 if (skb_pfmemalloc(skb))
1067 gfp_mask |= __GFP_MEMALLOC;
1068 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1069 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (!data)
1071 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001072 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001075 * optimized for the cases when header is void.
1076 */
1077 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1078
1079 memcpy((struct skb_shared_info *)(data + size),
1080 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001081 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Alexander Duyck3e245912012-05-04 14:26:51 +00001083 /*
1084 * if shinfo is shared we must drop the old head gracefully, but if it
1085 * is not we can just drop the old head and let the existing refcount
1086 * be since all we did is relocate the values
1087 */
1088 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001089 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001090 if (skb_orphan_frags(skb, gfp_mask))
1091 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001092 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001093 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Eric Dumazet1fd63042010-09-02 23:09:32 +00001095 if (skb_has_frag_list(skb))
1096 skb_clone_fraglist(skb);
1097
1098 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001099 } else {
1100 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 off = (data + nhead) - skb->head;
1103
1104 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001105 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001107#ifdef NET_SKBUFF_DATA_USES_OFFSET
1108 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001109 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001110#else
1111 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001112#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001113 skb->tail += off;
Peter Pan(潘卫平)b41abb42013-06-06 21:27:21 +08001114 skb_headers_offset_update(skb, nhead);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001116 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 skb->nohdr = 0;
1118 atomic_set(&skb_shinfo(skb)->dataref, 1);
1119 return 0;
1120
Shirley Maa6686f22011-07-06 12:22:12 +00001121nofrags:
1122 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123nodata:
1124 return -ENOMEM;
1125}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001126EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128/* Make private copy of skb with writable head and some headroom */
1129
1130struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1131{
1132 struct sk_buff *skb2;
1133 int delta = headroom - skb_headroom(skb);
1134
1135 if (delta <= 0)
1136 skb2 = pskb_copy(skb, GFP_ATOMIC);
1137 else {
1138 skb2 = skb_clone(skb, GFP_ATOMIC);
1139 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1140 GFP_ATOMIC)) {
1141 kfree_skb(skb2);
1142 skb2 = NULL;
1143 }
1144 }
1145 return skb2;
1146}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001147EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149/**
1150 * skb_copy_expand - copy and expand sk_buff
1151 * @skb: buffer to copy
1152 * @newheadroom: new free bytes at head
1153 * @newtailroom: new free bytes at tail
1154 * @gfp_mask: allocation priority
1155 *
1156 * Make a copy of both an &sk_buff and its data and while doing so
1157 * allocate additional space.
1158 *
1159 * This is used when the caller wishes to modify the data and needs a
1160 * private copy of the data to alter as well as more space for new fields.
1161 * Returns %NULL on failure or the pointer to the buffer
1162 * on success. The returned buffer has a reference count of 1.
1163 *
1164 * You must pass %GFP_ATOMIC as the allocation priority if this function
1165 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 */
1167struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001168 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001169 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 /*
1172 * Allocate the copy buffer
1173 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001174 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1175 gfp_mask, skb_alloc_rx_flag(skb),
1176 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001177 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 int head_copy_len, head_copy_off;
1179
1180 if (!n)
1181 return NULL;
1182
1183 skb_reserve(n, newheadroom);
1184
1185 /* Set the tail pointer and length */
1186 skb_put(n, skb->len);
1187
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001188 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 head_copy_off = 0;
1190 if (newheadroom <= head_copy_len)
1191 head_copy_len = newheadroom;
1192 else
1193 head_copy_off = newheadroom - head_copy_len;
1194
1195 /* Copy the linear header and data. */
1196 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1197 skb->len + head_copy_len))
1198 BUG();
1199
1200 copy_skb_header(n, skb);
1201
Eric Dumazet030737b2013-10-19 11:42:54 -07001202 skb_headers_offset_update(n, newheadroom - oldheadroom);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return n;
1205}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001206EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208/**
1209 * skb_pad - zero pad the tail of an skb
1210 * @skb: buffer to pad
1211 * @pad: space to pad
1212 *
1213 * Ensure that a buffer is followed by a padding area that is zero
1214 * filled. Used by network drivers which may DMA or transfer data
1215 * beyond the buffer end onto the wire.
1216 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001217 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001219
Herbert Xu5b057c62006-06-23 02:06:41 -07001220int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Herbert Xu5b057c62006-06-23 02:06:41 -07001222 int err;
1223 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001226 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001230
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001231 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001232 if (likely(skb_cloned(skb) || ntail > 0)) {
1233 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1234 if (unlikely(err))
1235 goto free_skb;
1236 }
1237
1238 /* FIXME: The use of this function with non-linear skb's really needs
1239 * to be audited.
1240 */
1241 err = skb_linearize(skb);
1242 if (unlikely(err))
1243 goto free_skb;
1244
1245 memset(skb->data + skb->len, 0, pad);
1246 return 0;
1247
1248free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001250 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001251}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001252EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001253
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001254/**
1255 * skb_put - add data to a buffer
1256 * @skb: buffer to use
1257 * @len: amount of data to add
1258 *
1259 * This function extends the used data area of the buffer. If this would
1260 * exceed the total buffer size the kernel will panic. A pointer to the
1261 * first byte of the extra data is returned.
1262 */
1263unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1264{
1265 unsigned char *tmp = skb_tail_pointer(skb);
1266 SKB_LINEAR_ASSERT(skb);
1267 skb->tail += len;
1268 skb->len += len;
1269 if (unlikely(skb->tail > skb->end))
1270 skb_over_panic(skb, len, __builtin_return_address(0));
1271 return tmp;
1272}
1273EXPORT_SYMBOL(skb_put);
1274
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001275/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001276 * skb_push - add data to the start of a buffer
1277 * @skb: buffer to use
1278 * @len: amount of data to add
1279 *
1280 * This function extends the used data area of the buffer at the buffer
1281 * start. If this would exceed the total buffer headroom the kernel will
1282 * panic. A pointer to the first byte of the extra data is returned.
1283 */
1284unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1285{
1286 skb->data -= len;
1287 skb->len += len;
1288 if (unlikely(skb->data<skb->head))
1289 skb_under_panic(skb, len, __builtin_return_address(0));
1290 return skb->data;
1291}
1292EXPORT_SYMBOL(skb_push);
1293
1294/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001295 * skb_pull - remove data from the start of a buffer
1296 * @skb: buffer to use
1297 * @len: amount of data to remove
1298 *
1299 * This function removes data from the start of a buffer, returning
1300 * the memory to the headroom. A pointer to the next data in the buffer
1301 * is returned. Once the data has been pulled future pushes will overwrite
1302 * the old data.
1303 */
1304unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1305{
David S. Miller47d29642010-05-02 02:21:44 -07001306 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001307}
1308EXPORT_SYMBOL(skb_pull);
1309
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001310/**
1311 * skb_trim - remove end from a buffer
1312 * @skb: buffer to alter
1313 * @len: new length
1314 *
1315 * Cut the length of a buffer down by removing data from the tail. If
1316 * the buffer is already under the length specified it is not modified.
1317 * The skb must be linear.
1318 */
1319void skb_trim(struct sk_buff *skb, unsigned int len)
1320{
1321 if (skb->len > len)
1322 __skb_trim(skb, len);
1323}
1324EXPORT_SYMBOL(skb_trim);
1325
Herbert Xu3cc0e872006-06-09 16:13:38 -07001326/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
1328
Herbert Xu3cc0e872006-06-09 16:13:38 -07001329int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Herbert Xu27b437c2006-07-13 19:26:39 -07001331 struct sk_buff **fragp;
1332 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int offset = skb_headlen(skb);
1334 int nfrags = skb_shinfo(skb)->nr_frags;
1335 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001336 int err;
1337
1338 if (skb_cloned(skb) &&
1339 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1340 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001342 i = 0;
1343 if (offset >= len)
1344 goto drop_pages;
1345
1346 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001347 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001348
1349 if (end < len) {
1350 offset = end;
1351 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001353
Eric Dumazet9e903e02011-10-18 21:00:24 +00001354 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001355
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001356drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001357 skb_shinfo(skb)->nr_frags = i;
1358
1359 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001360 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001361
David S. Miller21dc3302010-08-23 00:13:46 -07001362 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001363 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001364 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366
Herbert Xu27b437c2006-07-13 19:26:39 -07001367 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1368 fragp = &frag->next) {
1369 int end = offset + frag->len;
1370
1371 if (skb_shared(frag)) {
1372 struct sk_buff *nfrag;
1373
1374 nfrag = skb_clone(frag, GFP_ATOMIC);
1375 if (unlikely(!nfrag))
1376 return -ENOMEM;
1377
1378 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001379 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001380 frag = nfrag;
1381 *fragp = frag;
1382 }
1383
1384 if (end < len) {
1385 offset = end;
1386 continue;
1387 }
1388
1389 if (end > len &&
1390 unlikely((err = pskb_trim(frag, len - offset))))
1391 return err;
1392
1393 if (frag->next)
1394 skb_drop_list(&frag->next);
1395 break;
1396 }
1397
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001398done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001399 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 skb->data_len -= skb->len - len;
1401 skb->len = len;
1402 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001403 skb->len = len;
1404 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001405 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407
1408 return 0;
1409}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001410EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412/**
1413 * __pskb_pull_tail - advance tail of skb header
1414 * @skb: buffer to reallocate
1415 * @delta: number of bytes to advance tail
1416 *
1417 * The function makes a sense only on a fragmented &sk_buff,
1418 * it expands header moving its tail forward and copying necessary
1419 * data from fragmented part.
1420 *
1421 * &sk_buff MUST have reference count of 1.
1422 *
1423 * Returns %NULL (and &sk_buff does not change) if pull failed
1424 * or value of new tail of skb in the case of success.
1425 *
1426 * All the pointers pointing into skb header may change and must be
1427 * reloaded after call to this function.
1428 */
1429
1430/* Moves tail of skb head forward, copying data from fragmented part,
1431 * when it is necessary.
1432 * 1. It may fail due to malloc failure.
1433 * 2. It may change skb pointers.
1434 *
1435 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1436 */
1437unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1438{
1439 /* If skb has not enough free space at tail, get new one
1440 * plus 128 bytes for future expansions. If we have enough
1441 * room at tail, reallocate without expansion only if skb is cloned.
1442 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001443 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 if (eat > 0 || skb_cloned(skb)) {
1446 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1447 GFP_ATOMIC))
1448 return NULL;
1449 }
1450
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001451 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 BUG();
1453
1454 /* Optimization: no fragments, no reasons to preestimate
1455 * size of pulled pages. Superb.
1456 */
David S. Miller21dc3302010-08-23 00:13:46 -07001457 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 goto pull_pages;
1459
1460 /* Estimate size of pulled pages. */
1461 eat = delta;
1462 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001463 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1464
1465 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001467 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469
1470 /* If we need update frag list, we are in troubles.
1471 * Certainly, it possible to add an offset to skb data,
1472 * but taking into account that pulling is expected to
1473 * be very rare operation, it is worth to fight against
1474 * further bloating skb head and crucify ourselves here instead.
1475 * Pure masohism, indeed. 8)8)
1476 */
1477 if (eat) {
1478 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1479 struct sk_buff *clone = NULL;
1480 struct sk_buff *insp = NULL;
1481
1482 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001483 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 if (list->len <= eat) {
1486 /* Eaten as whole. */
1487 eat -= list->len;
1488 list = list->next;
1489 insp = list;
1490 } else {
1491 /* Eaten partially. */
1492
1493 if (skb_shared(list)) {
1494 /* Sucks! We need to fork list. :-( */
1495 clone = skb_clone(list, GFP_ATOMIC);
1496 if (!clone)
1497 return NULL;
1498 insp = list->next;
1499 list = clone;
1500 } else {
1501 /* This may be pulled without
1502 * problems. */
1503 insp = list;
1504 }
1505 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001506 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return NULL;
1508 }
1509 break;
1510 }
1511 } while (eat);
1512
1513 /* Free pulled out fragments. */
1514 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1515 skb_shinfo(skb)->frag_list = list->next;
1516 kfree_skb(list);
1517 }
1518 /* And insert new clone at head. */
1519 if (clone) {
1520 clone->next = list;
1521 skb_shinfo(skb)->frag_list = clone;
1522 }
1523 }
1524 /* Success! Now we may commit changes to skb data. */
1525
1526pull_pages:
1527 eat = delta;
1528 k = 0;
1529 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001530 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1531
1532 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001533 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001534 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 } else {
1536 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1537 if (eat) {
1538 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001539 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 eat = 0;
1541 }
1542 k++;
1543 }
1544 }
1545 skb_shinfo(skb)->nr_frags = k;
1546
1547 skb->tail += delta;
1548 skb->data_len -= delta;
1549
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001550 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001552EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Eric Dumazet22019b12011-07-29 18:37:31 +00001554/**
1555 * skb_copy_bits - copy bits from skb to kernel buffer
1556 * @skb: source skb
1557 * @offset: offset in source
1558 * @to: destination buffer
1559 * @len: number of bytes to copy
1560 *
1561 * Copy the specified number of bytes from the source skb to the
1562 * destination buffer.
1563 *
1564 * CAUTION ! :
1565 * If its prototype is ever changed,
1566 * check arch/{*}/net/{*}.S files,
1567 * since it is called from BPF assembly code.
1568 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1570{
David S. Miller1a028e52007-04-27 15:21:23 -07001571 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001572 struct sk_buff *frag_iter;
1573 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 if (offset > (int)skb->len - len)
1576 goto fault;
1577
1578 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001579 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (copy > len)
1581 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001582 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if ((len -= copy) == 0)
1584 return 0;
1585 offset += copy;
1586 to += copy;
1587 }
1588
1589 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001590 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001591 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001593 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001594
Eric Dumazet51c56b02012-04-05 11:35:15 +02001595 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if ((copy = end - offset) > 0) {
1597 u8 *vaddr;
1598
1599 if (copy > len)
1600 copy = len;
1601
Eric Dumazet51c56b02012-04-05 11:35:15 +02001602 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001604 vaddr + f->page_offset + offset - start,
1605 copy);
1606 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 if ((len -= copy) == 0)
1609 return 0;
1610 offset += copy;
1611 to += copy;
1612 }
David S. Miller1a028e52007-04-27 15:21:23 -07001613 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615
David S. Millerfbb398a2009-06-09 00:18:59 -07001616 skb_walk_frags(skb, frag_iter) {
1617 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
David S. Millerfbb398a2009-06-09 00:18:59 -07001619 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
David S. Millerfbb398a2009-06-09 00:18:59 -07001621 end = start + frag_iter->len;
1622 if ((copy = end - offset) > 0) {
1623 if (copy > len)
1624 copy = len;
1625 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1626 goto fault;
1627 if ((len -= copy) == 0)
1628 return 0;
1629 offset += copy;
1630 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001632 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
Shirley Maa6686f22011-07-06 12:22:12 +00001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (!len)
1636 return 0;
1637
1638fault:
1639 return -EFAULT;
1640}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001641EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Jens Axboe9c55e012007-11-06 23:30:13 -08001643/*
1644 * Callback from splice_to_pipe(), if we need to release some pages
1645 * at the end of the spd in case we error'ed out in filling the pipe.
1646 */
1647static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1648{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001649 put_page(spd->pages[i]);
1650}
Jens Axboe9c55e012007-11-06 23:30:13 -08001651
David S. Millera108d5f2012-04-23 23:06:11 -04001652static struct page *linear_to_page(struct page *page, unsigned int *len,
1653 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001654 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001655{
Eric Dumazet5640f762012-09-23 23:04:42 +00001656 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001657
Eric Dumazet5640f762012-09-23 23:04:42 +00001658 if (!sk_page_frag_refill(sk, pfrag))
1659 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001660
Eric Dumazet5640f762012-09-23 23:04:42 +00001661 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001662
Eric Dumazet5640f762012-09-23 23:04:42 +00001663 memcpy(page_address(pfrag->page) + pfrag->offset,
1664 page_address(page) + *offset, *len);
1665 *offset = pfrag->offset;
1666 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001667
Eric Dumazet5640f762012-09-23 23:04:42 +00001668 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001669}
1670
Eric Dumazet41c73a02012-04-22 12:26:16 +00001671static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1672 struct page *page,
1673 unsigned int offset)
1674{
1675 return spd->nr_pages &&
1676 spd->pages[spd->nr_pages - 1] == page &&
1677 (spd->partial[spd->nr_pages - 1].offset +
1678 spd->partial[spd->nr_pages - 1].len == offset);
1679}
1680
Jens Axboe9c55e012007-11-06 23:30:13 -08001681/*
1682 * Fill page/offset/length into spd, if it can hold more pages.
1683 */
David S. Millera108d5f2012-04-23 23:06:11 -04001684static bool spd_fill_page(struct splice_pipe_desc *spd,
1685 struct pipe_inode_info *pipe, struct page *page,
1686 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001687 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001688 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001689{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001690 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001691 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001692
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001693 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001694 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001695 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001696 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001697 }
1698 if (spd_can_coalesce(spd, page, offset)) {
1699 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001700 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001701 }
1702 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001703 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001704 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001705 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001706 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001707
David S. Millera108d5f2012-04-23 23:06:11 -04001708 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001709}
1710
David S. Millera108d5f2012-04-23 23:06:11 -04001711static bool __splice_segment(struct page *page, unsigned int poff,
1712 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001713 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001714 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001715 struct sock *sk,
1716 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001717{
1718 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001719 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001720
1721 /* skip this segment if already processed */
1722 if (*off >= plen) {
1723 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001724 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001725 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001726
Octavian Purdila2870c432008-07-15 00:49:11 -07001727 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001728 poff += *off;
1729 plen -= *off;
1730 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001731
Eric Dumazet18aafc62013-01-11 14:46:37 +00001732 do {
1733 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001734
Eric Dumazet18aafc62013-01-11 14:46:37 +00001735 if (spd_fill_page(spd, pipe, page, &flen, poff,
1736 linear, sk))
1737 return true;
1738 poff += flen;
1739 plen -= flen;
1740 *len -= flen;
1741 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001742
David S. Millera108d5f2012-04-23 23:06:11 -04001743 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001744}
1745
1746/*
David S. Millera108d5f2012-04-23 23:06:11 -04001747 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001748 * pipe is full or if we already spliced the requested length.
1749 */
David S. Millera108d5f2012-04-23 23:06:11 -04001750static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1751 unsigned int *offset, unsigned int *len,
1752 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001753{
1754 int seg;
1755
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001756 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001757 * If skb->head_frag is set, this 'linear' part is backed by a
1758 * fragment, and if the head is not shared with any clones then
1759 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001760 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001761 if (__splice_segment(virt_to_page(skb->data),
1762 (unsigned long) skb->data & (PAGE_SIZE - 1),
1763 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001764 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001765 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001766 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001767 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001768
1769 /*
1770 * then map the fragments
1771 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001772 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1773 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1774
Ian Campbellea2ab692011-08-22 23:44:58 +00001775 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001776 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001777 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001778 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001779 }
1780
David S. Millera108d5f2012-04-23 23:06:11 -04001781 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001782}
1783
1784/*
1785 * Map data from the skb to a pipe. Should handle both the linear part,
1786 * the fragments, and the frag list. It does NOT handle frag lists within
1787 * the frag list, if such a thing exists. We'd probably need to recurse to
1788 * handle that cleanly.
1789 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001790int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001791 struct pipe_inode_info *pipe, unsigned int tlen,
1792 unsigned int flags)
1793{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001794 struct partial_page partial[MAX_SKB_FRAGS];
1795 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001796 struct splice_pipe_desc spd = {
1797 .pages = pages,
1798 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001799 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001800 .flags = flags,
1801 .ops = &sock_pipe_buf_ops,
1802 .spd_release = sock_spd_release,
1803 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001804 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001805 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001806 int ret = 0;
1807
Jens Axboe9c55e012007-11-06 23:30:13 -08001808 /*
1809 * __skb_splice_bits() only fails if the output has no room left,
1810 * so no point in going over the frag_list for the error case.
1811 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001812 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001813 goto done;
1814 else if (!tlen)
1815 goto done;
1816
1817 /*
1818 * now see if we have a frag_list to map
1819 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001820 skb_walk_frags(skb, frag_iter) {
1821 if (!tlen)
1822 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001823 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001824 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001825 }
1826
1827done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001828 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001829 /*
1830 * Drop the socket lock, otherwise we have reverse
1831 * locking dependencies between sk_lock and i_mutex
1832 * here as compared to sendfile(). We enter here
1833 * with the socket lock held, and splice_to_pipe() will
1834 * grab the pipe inode lock. For sendfile() emulation,
1835 * we call into ->sendpage() with the i_mutex lock held
1836 * and networking will grab the socket lock.
1837 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001838 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001839 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001840 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001841 }
1842
Jens Axboe35f3d142010-05-20 10:43:18 +02001843 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001844}
1845
Herbert Xu357b40a2005-04-19 22:30:14 -07001846/**
1847 * skb_store_bits - store bits from kernel buffer to skb
1848 * @skb: destination buffer
1849 * @offset: offset in destination
1850 * @from: source buffer
1851 * @len: number of bytes to copy
1852 *
1853 * Copy the specified number of bytes from the source buffer to the
1854 * destination skb. This function handles all the messy bits of
1855 * traversing fragment lists and such.
1856 */
1857
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001858int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001859{
David S. Miller1a028e52007-04-27 15:21:23 -07001860 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001861 struct sk_buff *frag_iter;
1862 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001863
1864 if (offset > (int)skb->len - len)
1865 goto fault;
1866
David S. Miller1a028e52007-04-27 15:21:23 -07001867 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001868 if (copy > len)
1869 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001870 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001871 if ((len -= copy) == 0)
1872 return 0;
1873 offset += copy;
1874 from += copy;
1875 }
1876
1877 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1878 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001879 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001880
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001881 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001882
Eric Dumazet9e903e02011-10-18 21:00:24 +00001883 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001884 if ((copy = end - offset) > 0) {
1885 u8 *vaddr;
1886
1887 if (copy > len)
1888 copy = len;
1889
Eric Dumazet51c56b02012-04-05 11:35:15 +02001890 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001891 memcpy(vaddr + frag->page_offset + offset - start,
1892 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001893 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001894
1895 if ((len -= copy) == 0)
1896 return 0;
1897 offset += copy;
1898 from += copy;
1899 }
David S. Miller1a028e52007-04-27 15:21:23 -07001900 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001901 }
1902
David S. Millerfbb398a2009-06-09 00:18:59 -07001903 skb_walk_frags(skb, frag_iter) {
1904 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001905
David S. Millerfbb398a2009-06-09 00:18:59 -07001906 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001907
David S. Millerfbb398a2009-06-09 00:18:59 -07001908 end = start + frag_iter->len;
1909 if ((copy = end - offset) > 0) {
1910 if (copy > len)
1911 copy = len;
1912 if (skb_store_bits(frag_iter, offset - start,
1913 from, copy))
1914 goto fault;
1915 if ((len -= copy) == 0)
1916 return 0;
1917 offset += copy;
1918 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001919 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001920 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001921 }
1922 if (!len)
1923 return 0;
1924
1925fault:
1926 return -EFAULT;
1927}
Herbert Xu357b40a2005-04-19 22:30:14 -07001928EXPORT_SYMBOL(skb_store_bits);
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930/* Checksum skb data. */
Daniel Borkmann2817a332013-10-30 11:50:51 +01001931__wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
1932 __wsum csum, const struct skb_checksum_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
David S. Miller1a028e52007-04-27 15:21:23 -07001934 int start = skb_headlen(skb);
1935 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001936 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 int pos = 0;
1938
1939 /* Checksum header. */
1940 if (copy > 0) {
1941 if (copy > len)
1942 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01001943 csum = ops->update(skb->data + offset, copy, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if ((len -= copy) == 0)
1945 return csum;
1946 offset += copy;
1947 pos = copy;
1948 }
1949
1950 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001951 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001952 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001954 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001955
Eric Dumazet51c56b02012-04-05 11:35:15 +02001956 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001958 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 if (copy > len)
1962 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001963 vaddr = kmap_atomic(skb_frag_page(frag));
Daniel Borkmann2817a332013-10-30 11:50:51 +01001964 csum2 = ops->update(vaddr + frag->page_offset +
1965 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001966 kunmap_atomic(vaddr);
Daniel Borkmann2817a332013-10-30 11:50:51 +01001967 csum = ops->combine(csum, csum2, pos, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 if (!(len -= copy))
1969 return csum;
1970 offset += copy;
1971 pos += copy;
1972 }
David S. Miller1a028e52007-04-27 15:21:23 -07001973 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 }
1975
David S. Millerfbb398a2009-06-09 00:18:59 -07001976 skb_walk_frags(skb, frag_iter) {
1977 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
David S. Millerfbb398a2009-06-09 00:18:59 -07001979 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
David S. Millerfbb398a2009-06-09 00:18:59 -07001981 end = start + frag_iter->len;
1982 if ((copy = end - offset) > 0) {
1983 __wsum csum2;
1984 if (copy > len)
1985 copy = len;
Daniel Borkmann2817a332013-10-30 11:50:51 +01001986 csum2 = __skb_checksum(frag_iter, offset - start,
1987 copy, 0, ops);
1988 csum = ops->combine(csum, csum2, pos, copy);
David S. Millerfbb398a2009-06-09 00:18:59 -07001989 if ((len -= copy) == 0)
1990 return csum;
1991 offset += copy;
1992 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001994 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001996 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 return csum;
1999}
Daniel Borkmann2817a332013-10-30 11:50:51 +01002000EXPORT_SYMBOL(__skb_checksum);
2001
2002__wsum skb_checksum(const struct sk_buff *skb, int offset,
2003 int len, __wsum csum)
2004{
2005 const struct skb_checksum_ops ops = {
Daniel Borkmanncea80ea2013-11-04 17:10:25 +01002006 .update = csum_partial_ext,
Daniel Borkmann2817a332013-10-30 11:50:51 +01002007 .combine = csum_block_add_ext,
2008 };
2009
2010 return __skb_checksum(skb, offset, len, csum, &ops);
2011}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002012EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014/* Both of above in one bottle. */
2015
Al Viro81d77662006-11-14 21:37:33 -08002016__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
2017 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
David S. Miller1a028e52007-04-27 15:21:23 -07002019 int start = skb_headlen(skb);
2020 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002021 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 int pos = 0;
2023
2024 /* Copy header. */
2025 if (copy > 0) {
2026 if (copy > len)
2027 copy = len;
2028 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2029 copy, csum);
2030 if ((len -= copy) == 0)
2031 return csum;
2032 offset += copy;
2033 to += copy;
2034 pos = copy;
2035 }
2036
2037 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002038 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002040 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002041
Eric Dumazet9e903e02011-10-18 21:00:24 +00002042 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002044 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 u8 *vaddr;
2046 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2047
2048 if (copy > len)
2049 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002050 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002052 frag->page_offset +
2053 offset - start, to,
2054 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002055 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 csum = csum_block_add(csum, csum2, pos);
2057 if (!(len -= copy))
2058 return csum;
2059 offset += copy;
2060 to += copy;
2061 pos += copy;
2062 }
David S. Miller1a028e52007-04-27 15:21:23 -07002063 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065
David S. Millerfbb398a2009-06-09 00:18:59 -07002066 skb_walk_frags(skb, frag_iter) {
2067 __wsum csum2;
2068 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
David S. Millerfbb398a2009-06-09 00:18:59 -07002070 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
David S. Millerfbb398a2009-06-09 00:18:59 -07002072 end = start + frag_iter->len;
2073 if ((copy = end - offset) > 0) {
2074 if (copy > len)
2075 copy = len;
2076 csum2 = skb_copy_and_csum_bits(frag_iter,
2077 offset - start,
2078 to, copy, 0);
2079 csum = csum_block_add(csum, csum2, pos);
2080 if ((len -= copy) == 0)
2081 return csum;
2082 offset += copy;
2083 to += copy;
2084 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002086 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002088 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return csum;
2090}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002091EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2094{
Al Virod3bc23e2006-11-14 21:24:49 -08002095 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 long csstart;
2097
Patrick McHardy84fa7932006-08-29 16:44:56 -07002098 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002099 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 else
2101 csstart = skb_headlen(skb);
2102
Kris Katterjohn09a62662006-01-08 22:24:28 -08002103 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002105 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 csum = 0;
2108 if (csstart != skb->len)
2109 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2110 skb->len - csstart, 0);
2111
Patrick McHardy84fa7932006-08-29 16:44:56 -07002112 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002113 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Al Virod3bc23e2006-11-14 21:24:49 -08002115 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002118EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120/**
2121 * skb_dequeue - remove from the head of the queue
2122 * @list: list to dequeue from
2123 *
2124 * Remove the head of the list. The list lock is taken so the function
2125 * may be used safely with other locking list functions. The head item is
2126 * returned or %NULL if the list is empty.
2127 */
2128
2129struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2130{
2131 unsigned long flags;
2132 struct sk_buff *result;
2133
2134 spin_lock_irqsave(&list->lock, flags);
2135 result = __skb_dequeue(list);
2136 spin_unlock_irqrestore(&list->lock, flags);
2137 return result;
2138}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002139EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141/**
2142 * skb_dequeue_tail - remove from the tail of the queue
2143 * @list: list to dequeue from
2144 *
2145 * Remove the tail of the list. The list lock is taken so the function
2146 * may be used safely with other locking list functions. The tail item is
2147 * returned or %NULL if the list is empty.
2148 */
2149struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2150{
2151 unsigned long flags;
2152 struct sk_buff *result;
2153
2154 spin_lock_irqsave(&list->lock, flags);
2155 result = __skb_dequeue_tail(list);
2156 spin_unlock_irqrestore(&list->lock, flags);
2157 return result;
2158}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002159EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161/**
2162 * skb_queue_purge - empty a list
2163 * @list: list to empty
2164 *
2165 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2166 * the list and one reference dropped. This function takes the list
2167 * lock and is atomic with respect to other list locking functions.
2168 */
2169void skb_queue_purge(struct sk_buff_head *list)
2170{
2171 struct sk_buff *skb;
2172 while ((skb = skb_dequeue(list)) != NULL)
2173 kfree_skb(skb);
2174}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002175EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177/**
2178 * skb_queue_head - queue a buffer at the list head
2179 * @list: list to use
2180 * @newsk: buffer to queue
2181 *
2182 * Queue a buffer at the start of the list. This function takes the
2183 * list lock and can be used safely with other locking &sk_buff functions
2184 * safely.
2185 *
2186 * A buffer cannot be placed on two lists at the same time.
2187 */
2188void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2189{
2190 unsigned long flags;
2191
2192 spin_lock_irqsave(&list->lock, flags);
2193 __skb_queue_head(list, newsk);
2194 spin_unlock_irqrestore(&list->lock, flags);
2195}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002196EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198/**
2199 * skb_queue_tail - queue a buffer at the list tail
2200 * @list: list to use
2201 * @newsk: buffer to queue
2202 *
2203 * Queue a buffer at the tail of the list. This function takes the
2204 * list lock and can be used safely with other locking &sk_buff functions
2205 * safely.
2206 *
2207 * A buffer cannot be placed on two lists at the same time.
2208 */
2209void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2210{
2211 unsigned long flags;
2212
2213 spin_lock_irqsave(&list->lock, flags);
2214 __skb_queue_tail(list, newsk);
2215 spin_unlock_irqrestore(&list->lock, flags);
2216}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002217EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219/**
2220 * skb_unlink - remove a buffer from a list
2221 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002222 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 *
David S. Miller8728b832005-08-09 19:25:21 -07002224 * Remove a packet from a list. The list locks are taken and this
2225 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 *
David S. Miller8728b832005-08-09 19:25:21 -07002227 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 */
David S. Miller8728b832005-08-09 19:25:21 -07002229void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
David S. Miller8728b832005-08-09 19:25:21 -07002231 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
David S. Miller8728b832005-08-09 19:25:21 -07002233 spin_lock_irqsave(&list->lock, flags);
2234 __skb_unlink(skb, list);
2235 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002237EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239/**
2240 * skb_append - append a buffer
2241 * @old: buffer to insert after
2242 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002243 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 *
2245 * Place a packet after a given packet in a list. The list locks are taken
2246 * and this function is atomic with respect to other list locked calls.
2247 * A buffer cannot be placed on two lists at the same time.
2248 */
David S. Miller8728b832005-08-09 19:25:21 -07002249void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 unsigned long flags;
2252
David S. Miller8728b832005-08-09 19:25:21 -07002253 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002254 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002255 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002257EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259/**
2260 * skb_insert - insert a buffer
2261 * @old: buffer to insert before
2262 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002263 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 *
David S. Miller8728b832005-08-09 19:25:21 -07002265 * Place a packet before a given packet in a list. The list locks are
2266 * taken and this function is atomic with respect to other list locked
2267 * calls.
2268 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 * A buffer cannot be placed on two lists at the same time.
2270 */
David S. Miller8728b832005-08-09 19:25:21 -07002271void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
2273 unsigned long flags;
2274
David S. Miller8728b832005-08-09 19:25:21 -07002275 spin_lock_irqsave(&list->lock, flags);
2276 __skb_insert(newsk, old->prev, old, list);
2277 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002279EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281static inline void skb_split_inside_header(struct sk_buff *skb,
2282 struct sk_buff* skb1,
2283 const u32 len, const int pos)
2284{
2285 int i;
2286
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002287 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2288 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 /* And move data appendix as is. */
2290 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2291 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2292
2293 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2294 skb_shinfo(skb)->nr_frags = 0;
2295 skb1->data_len = skb->data_len;
2296 skb1->len += skb1->data_len;
2297 skb->data_len = 0;
2298 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002299 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300}
2301
2302static inline void skb_split_no_header(struct sk_buff *skb,
2303 struct sk_buff* skb1,
2304 const u32 len, int pos)
2305{
2306 int i, k = 0;
2307 const int nfrags = skb_shinfo(skb)->nr_frags;
2308
2309 skb_shinfo(skb)->nr_frags = 0;
2310 skb1->len = skb1->data_len = skb->len - len;
2311 skb->len = len;
2312 skb->data_len = len - pos;
2313
2314 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002315 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 if (pos + size > len) {
2318 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2319
2320 if (pos < len) {
2321 /* Split frag.
2322 * We have two variants in this case:
2323 * 1. Move all the frag to the second
2324 * part, if it is possible. F.e.
2325 * this approach is mandatory for TUX,
2326 * where splitting is expensive.
2327 * 2. Split is accurately. We make this.
2328 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002329 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002331 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2332 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 skb_shinfo(skb)->nr_frags++;
2334 }
2335 k++;
2336 } else
2337 skb_shinfo(skb)->nr_frags++;
2338 pos += size;
2339 }
2340 skb_shinfo(skb1)->nr_frags = k;
2341}
2342
2343/**
2344 * skb_split - Split fragmented skb to two parts at length len.
2345 * @skb: the buffer to split
2346 * @skb1: the buffer to receive the second part
2347 * @len: new length for skb
2348 */
2349void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2350{
2351 int pos = skb_headlen(skb);
2352
Amerigo Wang68534c62013-02-19 22:51:30 +00002353 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (len < pos) /* Split line is inside header. */
2355 skb_split_inside_header(skb, skb1, len, pos);
2356 else /* Second chunk has no header, nothing to copy. */
2357 skb_split_no_header(skb, skb1, len, pos);
2358}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002359EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002361/* Shifting from/to a cloned skb is a no-go.
2362 *
2363 * Caller cannot keep skb_shinfo related pointers past calling here!
2364 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002365static int skb_prepare_for_shift(struct sk_buff *skb)
2366{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002367 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002368}
2369
2370/**
2371 * skb_shift - Shifts paged data partially from skb to another
2372 * @tgt: buffer into which tail data gets added
2373 * @skb: buffer from which the paged data comes from
2374 * @shiftlen: shift up to this many bytes
2375 *
2376 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002377 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002378 * It's up to caller to free skb if everything was shifted.
2379 *
2380 * If @tgt runs out of frags, the whole operation is aborted.
2381 *
2382 * Skb cannot include anything else but paged data while tgt is allowed
2383 * to have non-paged data as well.
2384 *
2385 * TODO: full sized shift could be optimized but that would need
2386 * specialized skb free'er to handle frags without up-to-date nr_frags.
2387 */
2388int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2389{
2390 int from, to, merge, todo;
2391 struct skb_frag_struct *fragfrom, *fragto;
2392
2393 BUG_ON(shiftlen > skb->len);
2394 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2395
2396 todo = shiftlen;
2397 from = 0;
2398 to = skb_shinfo(tgt)->nr_frags;
2399 fragfrom = &skb_shinfo(skb)->frags[from];
2400
2401 /* Actual merge is delayed until the point when we know we can
2402 * commit all, so that we don't have to undo partial changes
2403 */
2404 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002405 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2406 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002407 merge = -1;
2408 } else {
2409 merge = to - 1;
2410
Eric Dumazet9e903e02011-10-18 21:00:24 +00002411 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002412 if (todo < 0) {
2413 if (skb_prepare_for_shift(skb) ||
2414 skb_prepare_for_shift(tgt))
2415 return 0;
2416
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002417 /* All previous frag pointers might be stale! */
2418 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002419 fragto = &skb_shinfo(tgt)->frags[merge];
2420
Eric Dumazet9e903e02011-10-18 21:00:24 +00002421 skb_frag_size_add(fragto, shiftlen);
2422 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002423 fragfrom->page_offset += shiftlen;
2424
2425 goto onlymerged;
2426 }
2427
2428 from++;
2429 }
2430
2431 /* Skip full, not-fitting skb to avoid expensive operations */
2432 if ((shiftlen == skb->len) &&
2433 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2434 return 0;
2435
2436 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2437 return 0;
2438
2439 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2440 if (to == MAX_SKB_FRAGS)
2441 return 0;
2442
2443 fragfrom = &skb_shinfo(skb)->frags[from];
2444 fragto = &skb_shinfo(tgt)->frags[to];
2445
Eric Dumazet9e903e02011-10-18 21:00:24 +00002446 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002447 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002448 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002449 from++;
2450 to++;
2451
2452 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002453 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002454 fragto->page = fragfrom->page;
2455 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002456 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002457
2458 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002459 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002460 todo = 0;
2461
2462 to++;
2463 break;
2464 }
2465 }
2466
2467 /* Ready to "commit" this state change to tgt */
2468 skb_shinfo(tgt)->nr_frags = to;
2469
2470 if (merge >= 0) {
2471 fragfrom = &skb_shinfo(skb)->frags[0];
2472 fragto = &skb_shinfo(tgt)->frags[merge];
2473
Eric Dumazet9e903e02011-10-18 21:00:24 +00002474 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002475 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002476 }
2477
2478 /* Reposition in the original skb */
2479 to = 0;
2480 while (from < skb_shinfo(skb)->nr_frags)
2481 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2482 skb_shinfo(skb)->nr_frags = to;
2483
2484 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2485
2486onlymerged:
2487 /* Most likely the tgt won't ever need its checksum anymore, skb on
2488 * the other hand might need it if it needs to be resent
2489 */
2490 tgt->ip_summed = CHECKSUM_PARTIAL;
2491 skb->ip_summed = CHECKSUM_PARTIAL;
2492
2493 /* Yak, is it really working this way? Some helper please? */
2494 skb->len -= shiftlen;
2495 skb->data_len -= shiftlen;
2496 skb->truesize -= shiftlen;
2497 tgt->len += shiftlen;
2498 tgt->data_len += shiftlen;
2499 tgt->truesize += shiftlen;
2500
2501 return shiftlen;
2502}
2503
Thomas Graf677e90e2005-06-23 20:59:51 -07002504/**
2505 * skb_prepare_seq_read - Prepare a sequential read of skb data
2506 * @skb: the buffer to read
2507 * @from: lower offset of data to be read
2508 * @to: upper offset of data to be read
2509 * @st: state variable
2510 *
2511 * Initializes the specified state variable. Must be called before
2512 * invoking skb_seq_read() for the first time.
2513 */
2514void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2515 unsigned int to, struct skb_seq_state *st)
2516{
2517 st->lower_offset = from;
2518 st->upper_offset = to;
2519 st->root_skb = st->cur_skb = skb;
2520 st->frag_idx = st->stepped_offset = 0;
2521 st->frag_data = NULL;
2522}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002523EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002524
2525/**
2526 * skb_seq_read - Sequentially read skb data
2527 * @consumed: number of bytes consumed by the caller so far
2528 * @data: destination pointer for data to be returned
2529 * @st: state variable
2530 *
2531 * Reads a block of skb data at &consumed relative to the
2532 * lower offset specified to skb_prepare_seq_read(). Assigns
2533 * the head of the data block to &data and returns the length
2534 * of the block or 0 if the end of the skb data or the upper
2535 * offset has been reached.
2536 *
2537 * The caller is not required to consume all of the data
2538 * returned, i.e. &consumed is typically set to the number
2539 * of bytes already consumed and the next call to
2540 * skb_seq_read() will return the remaining part of the block.
2541 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002542 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002543 * this limitation is the cost for zerocopy seqeuental
2544 * reads of potentially non linear data.
2545 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002546 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002547 * at the moment, state->root_skb could be replaced with
2548 * a stack for this purpose.
2549 */
2550unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2551 struct skb_seq_state *st)
2552{
2553 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2554 skb_frag_t *frag;
2555
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002556 if (unlikely(abs_offset >= st->upper_offset)) {
2557 if (st->frag_data) {
2558 kunmap_atomic(st->frag_data);
2559 st->frag_data = NULL;
2560 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002561 return 0;
Wedson Almeida Filhoaeb193e2013-06-23 23:33:48 -07002562 }
Thomas Graf677e90e2005-06-23 20:59:51 -07002563
2564next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002565 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002566
Thomas Chenault995b3372009-05-18 21:43:27 -07002567 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002568 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002569 return block_limit - abs_offset;
2570 }
2571
2572 if (st->frag_idx == 0 && !st->frag_data)
2573 st->stepped_offset += skb_headlen(st->cur_skb);
2574
2575 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2576 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002577 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002578
2579 if (abs_offset < block_limit) {
2580 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002581 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002582
2583 *data = (u8 *) st->frag_data + frag->page_offset +
2584 (abs_offset - st->stepped_offset);
2585
2586 return block_limit - abs_offset;
2587 }
2588
2589 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002590 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002591 st->frag_data = NULL;
2592 }
2593
2594 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002595 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002596 }
2597
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002598 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002599 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002600 st->frag_data = NULL;
2601 }
2602
David S. Miller21dc3302010-08-23 00:13:46 -07002603 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002604 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002605 st->frag_idx = 0;
2606 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002607 } else if (st->cur_skb->next) {
2608 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002609 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002610 goto next_skb;
2611 }
2612
2613 return 0;
2614}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002615EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002616
2617/**
2618 * skb_abort_seq_read - Abort a sequential read of skb data
2619 * @st: state variable
2620 *
2621 * Must be called if skb_seq_read() was not called until it
2622 * returned 0.
2623 */
2624void skb_abort_seq_read(struct skb_seq_state *st)
2625{
2626 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002627 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002628}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002629EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002630
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002631#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2632
2633static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2634 struct ts_config *conf,
2635 struct ts_state *state)
2636{
2637 return skb_seq_read(offset, text, TS_SKB_CB(state));
2638}
2639
2640static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2641{
2642 skb_abort_seq_read(TS_SKB_CB(state));
2643}
2644
2645/**
2646 * skb_find_text - Find a text pattern in skb data
2647 * @skb: the buffer to look in
2648 * @from: search offset
2649 * @to: search limit
2650 * @config: textsearch configuration
2651 * @state: uninitialized textsearch state variable
2652 *
2653 * Finds a pattern in the skb data according to the specified
2654 * textsearch configuration. Use textsearch_next() to retrieve
2655 * subsequent occurrences of the pattern. Returns the offset
2656 * to the first occurrence or UINT_MAX if no match was found.
2657 */
2658unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2659 unsigned int to, struct ts_config *config,
2660 struct ts_state *state)
2661{
Phil Oesterf72b9482006-06-26 00:00:57 -07002662 unsigned int ret;
2663
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002664 config->get_next_block = skb_ts_get_next_block;
2665 config->finish = skb_ts_finish;
2666
2667 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2668
Phil Oesterf72b9482006-06-26 00:00:57 -07002669 ret = textsearch_find(config, state);
2670 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002671}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002672EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002673
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002674/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002675 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002676 * @sk: sock structure
2677 * @skb: skb structure to be appened with user data.
2678 * @getfrag: call back function to be used for getting the user data
2679 * @from: pointer to user message iov
2680 * @length: length of the iov message
2681 *
2682 * Description: This procedure append the user data in the fragment part
2683 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2684 */
2685int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002686 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002687 int len, int odd, struct sk_buff *skb),
2688 void *from, int length)
2689{
Eric Dumazetb2111722012-12-28 06:06:37 +00002690 int frg_cnt = skb_shinfo(skb)->nr_frags;
2691 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002692 int offset = 0;
2693 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002694 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002695
2696 do {
2697 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002698 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002699 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002700
Eric Dumazetb2111722012-12-28 06:06:37 +00002701 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002702 return -ENOMEM;
2703
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002704 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002705 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002706
Eric Dumazetb2111722012-12-28 06:06:37 +00002707 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2708 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002709 if (ret < 0)
2710 return -EFAULT;
2711
2712 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002713 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2714 copy);
2715 frg_cnt++;
2716 pfrag->offset += copy;
2717 get_page(pfrag->page);
2718
2719 skb->truesize += copy;
2720 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002721 skb->len += copy;
2722 skb->data_len += copy;
2723 offset += copy;
2724 length -= copy;
2725
2726 } while (length > 0);
2727
2728 return 0;
2729}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002730EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002731
Herbert Xucbb042f2006-03-20 22:43:56 -08002732/**
2733 * skb_pull_rcsum - pull skb and update receive checksum
2734 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002735 * @len: length of data pulled
2736 *
2737 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002738 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002739 * receive path processing instead of skb_pull unless you know
2740 * that the checksum difference is zero (e.g., a valid IP header)
2741 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002742 */
2743unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2744{
2745 BUG_ON(len > skb->len);
2746 skb->len -= len;
2747 BUG_ON(skb->len < skb->data_len);
2748 skb_postpull_rcsum(skb, skb->data, len);
2749 return skb->data += len;
2750}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002751EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2752
Herbert Xuf4c50d92006-06-22 03:02:40 -07002753/**
2754 * skb_segment - Perform protocol segmentation on skb.
2755 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002756 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002757 *
2758 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002759 * a pointer to the first in a list of new skbs for the segments.
2760 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002761 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002762struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002763{
2764 struct sk_buff *segs = NULL;
2765 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002766 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002767 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002768 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002769 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002770 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002771 unsigned int headroom;
2772 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002773 __be16 proto;
2774 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002775 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002776 int nfrags = skb_shinfo(skb)->nr_frags;
2777 int err = -ENOMEM;
2778 int i = 0;
2779 int pos;
2780
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002781 proto = skb_network_protocol(skb);
2782 if (unlikely(!proto))
2783 return ERR_PTR(-EINVAL);
2784
2785 csum = !!can_checksum_protocol(features, proto);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002786 __skb_push(skb, doffset);
2787 headroom = skb_headroom(skb);
2788 pos = skb_headlen(skb);
2789
2790 do {
2791 struct sk_buff *nskb;
2792 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002793 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002794 int size;
2795
2796 len = skb->len - offset;
2797 if (len > mss)
2798 len = mss;
2799
2800 hsize = skb_headlen(skb) - offset;
2801 if (hsize < 0)
2802 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002803 if (hsize > len || !sg)
2804 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002805
Herbert Xu89319d382008-12-15 23:26:06 -08002806 if (!hsize && i >= nfrags) {
2807 BUG_ON(fskb->len != len);
2808
2809 pos += len;
2810 nskb = skb_clone(fskb, GFP_ATOMIC);
2811 fskb = fskb->next;
2812
2813 if (unlikely(!nskb))
2814 goto err;
2815
Alexander Duyckec47ea82012-05-04 14:26:56 +00002816 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002817 if (skb_cow_head(nskb, doffset + headroom)) {
2818 kfree_skb(nskb);
2819 goto err;
2820 }
2821
Alexander Duyckec47ea82012-05-04 14:26:56 +00002822 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002823 skb_release_head_state(nskb);
2824 __skb_push(nskb, doffset);
2825 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002826 nskb = __alloc_skb(hsize + doffset + headroom,
2827 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2828 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002829
2830 if (unlikely(!nskb))
2831 goto err;
2832
2833 skb_reserve(nskb, headroom);
2834 __skb_put(nskb, doffset);
2835 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002836
2837 if (segs)
2838 tail->next = nskb;
2839 else
2840 segs = nskb;
2841 tail = nskb;
2842
Herbert Xu6f85a122008-08-15 14:55:02 -07002843 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002844 nskb->mac_len = skb->mac_len;
2845
Eric Dumazet030737b2013-10-19 11:42:54 -07002846 skb_headers_offset_update(nskb, skb_headroom(nskb) - headroom);
Pravin B Shelar68c33162013-02-14 14:02:41 +00002847
2848 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2849 nskb->data - tnl_hlen,
2850 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002851
Herbert Xu2f181852009-03-28 23:39:18 -07002852 if (fskb != skb_shinfo(skb)->frag_list)
Simon Horman1cdbcb72013-05-19 15:46:49 +00002853 goto perform_csum_check;
Herbert Xu89319d382008-12-15 23:26:06 -08002854
Herbert Xuf4c50d92006-06-22 03:02:40 -07002855 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002856 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002857 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2858 skb_put(nskb, len),
2859 len, 0);
2860 continue;
2861 }
2862
2863 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002864
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002865 skb_copy_from_linear_data_offset(skb, offset,
2866 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002867
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002868 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002869
Herbert Xu89319d382008-12-15 23:26:06 -08002870 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002871 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002872 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002873 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002874
2875 if (pos < offset) {
2876 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002877 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002878 }
2879
Herbert Xu89319d382008-12-15 23:26:06 -08002880 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002881
2882 if (pos + size <= offset + len) {
2883 i++;
2884 pos += size;
2885 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002886 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002887 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002888 }
2889
2890 frag++;
2891 }
2892
Herbert Xu89319d382008-12-15 23:26:06 -08002893 if (pos < offset + len) {
2894 struct sk_buff *fskb2 = fskb;
2895
2896 BUG_ON(pos + fskb->len != offset + len);
2897
2898 pos += fskb->len;
2899 fskb = fskb->next;
2900
2901 if (fskb2->next) {
2902 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2903 if (!fskb2)
2904 goto err;
2905 } else
2906 skb_get(fskb2);
2907
David S. Millerfbb398a2009-06-09 00:18:59 -07002908 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002909 skb_shinfo(nskb)->frag_list = fskb2;
2910 }
2911
2912skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002913 nskb->data_len = len - hsize;
2914 nskb->len += nskb->data_len;
2915 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002916
Simon Horman1cdbcb72013-05-19 15:46:49 +00002917perform_csum_check:
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002918 if (!csum) {
2919 nskb->csum = skb_checksum(nskb, doffset,
2920 nskb->len - doffset, 0);
2921 nskb->ip_summed = CHECKSUM_NONE;
2922 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002923 } while ((offset += len) < skb->len);
2924
2925 return segs;
2926
2927err:
2928 while ((skb = segs)) {
2929 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002930 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002931 }
2932 return ERR_PTR(err);
2933}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002934EXPORT_SYMBOL_GPL(skb_segment);
2935
Herbert Xu71d93b32008-12-15 23:42:33 -08002936int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2937{
Eric Dumazet8a291112013-10-08 09:02:23 -07002938 struct skb_shared_info *pinfo, *skbinfo = skb_shinfo(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002939 unsigned int offset = skb_gro_offset(skb);
2940 unsigned int headlen = skb_headlen(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07002941 struct sk_buff *nskb, *lp, *p = *head;
2942 unsigned int len = skb_gro_len(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002943 unsigned int delta_truesize;
Eric Dumazet8a291112013-10-08 09:02:23 -07002944 unsigned int headroom;
Herbert Xu71d93b32008-12-15 23:42:33 -08002945
Eric Dumazet8a291112013-10-08 09:02:23 -07002946 if (unlikely(p->len + len >= 65536))
Herbert Xu71d93b32008-12-15 23:42:33 -08002947 return -E2BIG;
2948
Eric Dumazet8a291112013-10-08 09:02:23 -07002949 lp = NAPI_GRO_CB(p)->last ?: p;
2950 pinfo = skb_shinfo(lp);
2951
2952 if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002953 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002954 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002955 int i = skbinfo->nr_frags;
2956 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002957
Herbert Xu66e92fc2009-05-26 18:50:32 +00002958 if (nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07002959 goto merge;
Herbert Xu81705ad2009-01-29 14:19:51 +00002960
Eric Dumazet8a291112013-10-08 09:02:23 -07002961 offset -= headlen;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002962 pinfo->nr_frags = nr_frags;
2963 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002964
Herbert Xu9aaa1562009-05-26 18:50:33 +00002965 frag = pinfo->frags + nr_frags;
2966 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002967 do {
2968 *--frag = *--frag2;
2969 } while (--i);
2970
2971 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002972 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002973
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002974 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002975 delta_truesize = skb->truesize -
2976 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002977
Herbert Xuf5572062009-01-14 20:40:03 -08002978 skb->truesize -= skb->data_len;
2979 skb->len -= skb->data_len;
2980 skb->data_len = 0;
2981
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002982 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002983 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002984 } else if (skb->head_frag) {
2985 int nr_frags = pinfo->nr_frags;
2986 skb_frag_t *frag = pinfo->frags + nr_frags;
2987 struct page *page = virt_to_head_page(skb->head);
2988 unsigned int first_size = headlen - offset;
2989 unsigned int first_offset;
2990
2991 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
Eric Dumazet8a291112013-10-08 09:02:23 -07002992 goto merge;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002993
2994 first_offset = skb->data -
2995 (unsigned char *)page_address(page) +
2996 offset;
2997
2998 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
2999
3000 frag->page.p = page;
3001 frag->page_offset = first_offset;
3002 skb_frag_size_set(frag, first_size);
3003
3004 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
3005 /* We dont need to clear skbinfo->nr_frags here */
3006
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003007 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00003008 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
3009 goto done;
Eric Dumazet8a291112013-10-08 09:02:23 -07003010 }
3011 if (pinfo->frag_list)
3012 goto merge;
3013 if (skb_gro_len(p) != pinfo->gso_size)
Herbert Xu69c0cab2009-11-17 05:18:18 -08003014 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08003015
3016 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00003017 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08003018 if (unlikely(!nskb))
3019 return -ENOMEM;
3020
3021 __copy_skb_header(nskb, p);
3022 nskb->mac_len = p->mac_len;
3023
3024 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00003025 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003026
Herbert Xu86911732009-01-29 14:19:50 +00003027 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003028 skb_set_network_header(nskb, skb_network_offset(p));
3029 skb_set_transport_header(nskb, skb_transport_offset(p));
3030
Herbert Xu86911732009-01-29 14:19:50 +00003031 __skb_pull(p, skb_gro_offset(p));
3032 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3033 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003034
Herbert Xu71d93b32008-12-15 23:42:33 -08003035 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003036 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003037 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003038 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003039 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003040
3041 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003042 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003043 nskb->len += p->len;
3044
3045 *head = nskb;
3046 nskb->next = p->next;
3047 p->next = NULL;
3048
3049 p = nskb;
3050
3051merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003052 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003053 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003054 unsigned int eat = offset - headlen;
3055
3056 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003057 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003058 skb->data_len -= eat;
3059 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003060 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003061 }
3062
Herbert Xu67147ba2009-05-26 18:50:22 +00003063 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003064
Eric Dumazet8a291112013-10-08 09:02:23 -07003065 if (!NAPI_GRO_CB(p)->last)
3066 skb_shinfo(p)->frag_list = skb;
3067 else
3068 NAPI_GRO_CB(p)->last->next = skb;
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003069 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003070 skb_header_release(skb);
Eric Dumazet8a291112013-10-08 09:02:23 -07003071 lp = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003072
Herbert Xu5d38a072009-01-04 16:13:40 -08003073done:
3074 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003075 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003076 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003077 p->len += len;
Eric Dumazet8a291112013-10-08 09:02:23 -07003078 if (lp != p) {
3079 lp->data_len += len;
3080 lp->truesize += delta_truesize;
3081 lp->len += len;
3082 }
Herbert Xu71d93b32008-12-15 23:42:33 -08003083 NAPI_GRO_CB(skb)->same_flow = 1;
3084 return 0;
3085}
3086EXPORT_SYMBOL_GPL(skb_gro_receive);
3087
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088void __init skb_init(void)
3089{
3090 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3091 sizeof(struct sk_buff),
3092 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003093 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003094 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003095 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3096 (2*sizeof(struct sk_buff)) +
3097 sizeof(atomic_t),
3098 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003099 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003100 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101}
3102
David Howells716ea3a2007-04-02 20:19:53 -07003103/**
3104 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3105 * @skb: Socket buffer containing the buffers to be mapped
3106 * @sg: The scatter-gather list to map into
3107 * @offset: The offset into the buffer's contents to start mapping
3108 * @len: Length of buffer space to be mapped
3109 *
3110 * Fill the specified scatter-gather list with mappings/pointers into a
3111 * region of the buffer space attached to a socket buffer.
3112 */
David S. Miller51c739d2007-10-30 21:29:29 -07003113static int
3114__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003115{
David S. Miller1a028e52007-04-27 15:21:23 -07003116 int start = skb_headlen(skb);
3117 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003118 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003119 int elt = 0;
3120
3121 if (copy > 0) {
3122 if (copy > len)
3123 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003124 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003125 elt++;
3126 if ((len -= copy) == 0)
3127 return elt;
3128 offset += copy;
3129 }
3130
3131 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003132 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003133
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003134 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003135
Eric Dumazet9e903e02011-10-18 21:00:24 +00003136 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003137 if ((copy = end - offset) > 0) {
3138 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3139
3140 if (copy > len)
3141 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003142 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003143 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003144 elt++;
3145 if (!(len -= copy))
3146 return elt;
3147 offset += copy;
3148 }
David S. Miller1a028e52007-04-27 15:21:23 -07003149 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003150 }
3151
David S. Millerfbb398a2009-06-09 00:18:59 -07003152 skb_walk_frags(skb, frag_iter) {
3153 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003154
David S. Millerfbb398a2009-06-09 00:18:59 -07003155 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003156
David S. Millerfbb398a2009-06-09 00:18:59 -07003157 end = start + frag_iter->len;
3158 if ((copy = end - offset) > 0) {
3159 if (copy > len)
3160 copy = len;
3161 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3162 copy);
3163 if ((len -= copy) == 0)
3164 return elt;
3165 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003166 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003167 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003168 }
3169 BUG_ON(len);
3170 return elt;
3171}
3172
David S. Miller51c739d2007-10-30 21:29:29 -07003173int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3174{
3175 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3176
Jens Axboec46f2332007-10-31 12:06:37 +01003177 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003178
3179 return nsg;
3180}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003181EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003182
David Howells716ea3a2007-04-02 20:19:53 -07003183/**
3184 * skb_cow_data - Check that a socket buffer's data buffers are writable
3185 * @skb: The socket buffer to check.
3186 * @tailbits: Amount of trailing space to be added
3187 * @trailer: Returned pointer to the skb where the @tailbits space begins
3188 *
3189 * Make sure that the data buffers attached to a socket buffer are
3190 * writable. If they are not, private copies are made of the data buffers
3191 * and the socket buffer is set to use these instead.
3192 *
3193 * If @tailbits is given, make sure that there is space to write @tailbits
3194 * bytes of data beyond current end of socket buffer. @trailer will be
3195 * set to point to the skb in which this space begins.
3196 *
3197 * The number of scatterlist elements required to completely map the
3198 * COW'd and extended socket buffer will be returned.
3199 */
3200int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3201{
3202 int copyflag;
3203 int elt;
3204 struct sk_buff *skb1, **skb_p;
3205
3206 /* If skb is cloned or its head is paged, reallocate
3207 * head pulling out all the pages (pages are considered not writable
3208 * at the moment even if they are anonymous).
3209 */
3210 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3211 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3212 return -ENOMEM;
3213
3214 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003215 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003216 /* A little of trouble, not enough of space for trailer.
3217 * This should not happen, when stack is tuned to generate
3218 * good frames. OK, on miss we reallocate and reserve even more
3219 * space, 128 bytes is fair. */
3220
3221 if (skb_tailroom(skb) < tailbits &&
3222 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3223 return -ENOMEM;
3224
3225 /* Voila! */
3226 *trailer = skb;
3227 return 1;
3228 }
3229
3230 /* Misery. We are in troubles, going to mincer fragments... */
3231
3232 elt = 1;
3233 skb_p = &skb_shinfo(skb)->frag_list;
3234 copyflag = 0;
3235
3236 while ((skb1 = *skb_p) != NULL) {
3237 int ntail = 0;
3238
3239 /* The fragment is partially pulled by someone,
3240 * this can happen on input. Copy it and everything
3241 * after it. */
3242
3243 if (skb_shared(skb1))
3244 copyflag = 1;
3245
3246 /* If the skb is the last, worry about trailer. */
3247
3248 if (skb1->next == NULL && tailbits) {
3249 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003250 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003251 skb_tailroom(skb1) < tailbits)
3252 ntail = tailbits + 128;
3253 }
3254
3255 if (copyflag ||
3256 skb_cloned(skb1) ||
3257 ntail ||
3258 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003259 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003260 struct sk_buff *skb2;
3261
3262 /* Fuck, we are miserable poor guys... */
3263 if (ntail == 0)
3264 skb2 = skb_copy(skb1, GFP_ATOMIC);
3265 else
3266 skb2 = skb_copy_expand(skb1,
3267 skb_headroom(skb1),
3268 ntail,
3269 GFP_ATOMIC);
3270 if (unlikely(skb2 == NULL))
3271 return -ENOMEM;
3272
3273 if (skb1->sk)
3274 skb_set_owner_w(skb2, skb1->sk);
3275
3276 /* Looking around. Are we still alive?
3277 * OK, link new skb, drop old one */
3278
3279 skb2->next = skb1->next;
3280 *skb_p = skb2;
3281 kfree_skb(skb1);
3282 skb1 = skb2;
3283 }
3284 elt++;
3285 *trailer = skb1;
3286 skb_p = &skb1->next;
3287 }
3288
3289 return elt;
3290}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003291EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003292
Eric Dumazetb1faf562010-05-31 23:44:05 -07003293static void sock_rmem_free(struct sk_buff *skb)
3294{
3295 struct sock *sk = skb->sk;
3296
3297 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3298}
3299
3300/*
3301 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3302 */
3303int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3304{
Eric Dumazet110c4332012-04-06 10:49:10 +02003305 int len = skb->len;
3306
Eric Dumazetb1faf562010-05-31 23:44:05 -07003307 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003308 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003309 return -ENOMEM;
3310
3311 skb_orphan(skb);
3312 skb->sk = sk;
3313 skb->destructor = sock_rmem_free;
3314 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3315
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003316 /* before exiting rcu section, make sure dst is refcounted */
3317 skb_dst_force(skb);
3318
Eric Dumazetb1faf562010-05-31 23:44:05 -07003319 skb_queue_tail(&sk->sk_error_queue, skb);
3320 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003321 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003322 return 0;
3323}
3324EXPORT_SYMBOL(sock_queue_err_skb);
3325
Patrick Ohlyac45f602009-02-12 05:03:37 +00003326void skb_tstamp_tx(struct sk_buff *orig_skb,
3327 struct skb_shared_hwtstamps *hwtstamps)
3328{
3329 struct sock *sk = orig_skb->sk;
3330 struct sock_exterr_skb *serr;
3331 struct sk_buff *skb;
3332 int err;
3333
3334 if (!sk)
3335 return;
3336
Patrick Ohlyac45f602009-02-12 05:03:37 +00003337 if (hwtstamps) {
Willem de Bruijn2e313962013-04-23 00:39:28 +00003338 *skb_hwtstamps(orig_skb) =
Patrick Ohlyac45f602009-02-12 05:03:37 +00003339 *hwtstamps;
3340 } else {
3341 /*
3342 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003343 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003344 * store software time stamp
3345 */
Willem de Bruijn2e313962013-04-23 00:39:28 +00003346 orig_skb->tstamp = ktime_get_real();
Patrick Ohlyac45f602009-02-12 05:03:37 +00003347 }
3348
Willem de Bruijn2e313962013-04-23 00:39:28 +00003349 skb = skb_clone(orig_skb, GFP_ATOMIC);
3350 if (!skb)
3351 return;
3352
Patrick Ohlyac45f602009-02-12 05:03:37 +00003353 serr = SKB_EXT_ERR(skb);
3354 memset(serr, 0, sizeof(*serr));
3355 serr->ee.ee_errno = ENOMSG;
3356 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003357
Patrick Ohlyac45f602009-02-12 05:03:37 +00003358 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003359
Patrick Ohlyac45f602009-02-12 05:03:37 +00003360 if (err)
3361 kfree_skb(skb);
3362}
3363EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3364
Johannes Berg6e3e9392011-11-09 10:15:42 +01003365void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3366{
3367 struct sock *sk = skb->sk;
3368 struct sock_exterr_skb *serr;
3369 int err;
3370
3371 skb->wifi_acked_valid = 1;
3372 skb->wifi_acked = acked;
3373
3374 serr = SKB_EXT_ERR(skb);
3375 memset(serr, 0, sizeof(*serr));
3376 serr->ee.ee_errno = ENOMSG;
3377 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3378
3379 err = sock_queue_err_skb(sk, skb);
3380 if (err)
3381 kfree_skb(skb);
3382}
3383EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3384
Patrick Ohlyac45f602009-02-12 05:03:37 +00003385
Rusty Russellf35d9d82008-02-04 23:49:54 -05003386/**
3387 * skb_partial_csum_set - set up and verify partial csum values for packet
3388 * @skb: the skb to set
3389 * @start: the number of bytes after skb->data to start checksumming.
3390 * @off: the offset from start to place the checksum.
3391 *
3392 * For untrusted partially-checksummed packets, we need to make sure the values
3393 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3394 *
3395 * This function checks and sets those values and skb->ip_summed: if this
3396 * returns false you should drop the packet.
3397 */
3398bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3399{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003400 if (unlikely(start > skb_headlen(skb)) ||
3401 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003402 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3403 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003404 return false;
3405 }
3406 skb->ip_summed = CHECKSUM_PARTIAL;
3407 skb->csum_start = skb_headroom(skb) + start;
3408 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003409 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003410 return true;
3411}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003412EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003413
Ben Hutchings4497b072008-06-19 16:22:28 -07003414void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3415{
Joe Perchese87cc472012-05-13 21:56:26 +00003416 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3417 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003418}
Ben Hutchings4497b072008-06-19 16:22:28 -07003419EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003420
3421void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3422{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003423 if (head_stolen) {
3424 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003425 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003426 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003427 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003428 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003429}
3430EXPORT_SYMBOL(kfree_skb_partial);
3431
3432/**
3433 * skb_try_coalesce - try to merge skb to prior one
3434 * @to: prior buffer
3435 * @from: buffer to add
3436 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003437 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003438 */
3439bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3440 bool *fragstolen, int *delta_truesize)
3441{
3442 int i, delta, len = from->len;
3443
3444 *fragstolen = false;
3445
3446 if (skb_cloned(to))
3447 return false;
3448
3449 if (len <= skb_tailroom(to)) {
3450 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3451 *delta_truesize = 0;
3452 return true;
3453 }
3454
3455 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3456 return false;
3457
3458 if (skb_headlen(from) != 0) {
3459 struct page *page;
3460 unsigned int offset;
3461
3462 if (skb_shinfo(to)->nr_frags +
3463 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3464 return false;
3465
3466 if (skb_head_is_locked(from))
3467 return false;
3468
3469 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3470
3471 page = virt_to_head_page(from->head);
3472 offset = from->data - (unsigned char *)page_address(page);
3473
3474 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3475 page, offset, skb_headlen(from));
3476 *fragstolen = true;
3477 } else {
3478 if (skb_shinfo(to)->nr_frags +
3479 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3480 return false;
3481
Weiping Panf4b549a2012-09-28 20:15:30 +00003482 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003483 }
3484
3485 WARN_ON_ONCE(delta < len);
3486
3487 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3488 skb_shinfo(from)->frags,
3489 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3490 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3491
3492 if (!skb_cloned(from))
3493 skb_shinfo(from)->nr_frags = 0;
3494
Li RongQing8ea853f2012-09-18 16:53:21 +00003495 /* if the skb is not cloned this does nothing
3496 * since we set nr_frags to 0.
3497 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003498 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3499 skb_frag_ref(from, i);
3500
3501 to->truesize += delta;
3502 to->len += len;
3503 to->data_len += len;
3504
3505 *delta_truesize = delta;
3506 return true;
3507}
3508EXPORT_SYMBOL(skb_try_coalesce);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003509
3510/**
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003511 * skb_scrub_packet - scrub an skb
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003512 *
3513 * @skb: buffer to clean
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003514 * @xnet: packet is crossing netns
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003515 *
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003516 * skb_scrub_packet can be used after encapsulating or decapsulting a packet
3517 * into/from a tunnel. Some information have to be cleared during these
3518 * operations.
3519 * skb_scrub_packet can also be used to clean a skb before injecting it in
3520 * another namespace (@xnet == true). We have to clear all information in the
3521 * skb that could impact namespace isolation.
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003522 */
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003523void skb_scrub_packet(struct sk_buff *skb, bool xnet)
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003524{
Nicolas Dichtel8b27f272013-09-02 15:34:56 +02003525 if (xnet)
3526 skb_orphan(skb);
Nicolas Dichtel621e84d2013-06-26 16:11:27 +02003527 skb->tstamp.tv64 = 0;
3528 skb->pkt_type = PACKET_HOST;
3529 skb->skb_iif = 0;
3530 skb_dst_drop(skb);
3531 skb->mark = 0;
3532 secpath_reset(skb);
3533 nf_reset(skb);
3534 nf_reset_trace(skb);
3535}
3536EXPORT_SYMBOL_GPL(skb_scrub_packet);