blob: a92d9e7d10f7fc6baa7cf96c12b29d8075042fcc [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
182/**
David S. Millerd179cd12005-08-17 14:57:30 -0700183 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * @size: size to allocate
185 * @gfp_mask: allocation mask
Mel Gormanc93bdd02012-07-31 16:44:19 -0700186 * @flags: If SKB_ALLOC_FCLONE is set, allocate from fclone cache
187 * instead of head cache and allocate a cloned (child) skb.
188 * If SKB_ALLOC_RX is set, __GFP_MEMALLOC will be used for
189 * allocations in case the data is required for writeback
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800190 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 *
192 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000193 * tail room of at least size bytes. The object has a reference count
194 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *
196 * Buffers may only be allocated from interrupts using a @gfp_mask of
197 * %GFP_ATOMIC.
198 */
Al Virodd0fc662005-10-07 07:46:04 +0100199struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Mel Gormanc93bdd02012-07-31 16:44:19 -0700200 int flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Christoph Lametere18b8902006-12-06 20:33:20 -0800202 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800203 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct sk_buff *skb;
205 u8 *data;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700206 bool pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Mel Gormanc93bdd02012-07-31 16:44:19 -0700208 cache = (flags & SKB_ALLOC_FCLONE)
209 ? skbuff_fclone_cache : skbuff_head_cache;
210
211 if (sk_memalloc_socks() && (flags & SKB_ALLOC_RX))
212 gfp_mask |= __GFP_MEMALLOC;
Herbert Xu8798b3f2006-01-23 16:32:45 -0800213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800215 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (!skb)
217 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700218 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000220 /* We do our best to align skb_shared_info on a separate cache
221 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
222 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
223 * Both skb->head and skb_shared_info are cache line aligned.
224 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000225 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000226 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Mel Gormanc93bdd02012-07-31 16:44:19 -0700227 data = kmalloc_reserve(size, gfp_mask, node, &pfmemalloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (!data)
229 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000230 /* kmalloc(size) might give us more room than requested.
231 * Put skb_shared_info exactly at the end of allocated zone,
232 * to allow max possible filling before reallocation.
233 */
234 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700235 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300237 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700238 * Only clear those fields we need to clear, not those that we will
239 * actually initialise below. Hence, don't put any more fields after
240 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300241 */
242 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000243 /* Account for allocated memory : skb + skb->head */
244 skb->truesize = SKB_TRUESIZE(size);
Mel Gormanc93bdd02012-07-31 16:44:19 -0700245 skb->pfmemalloc = pfmemalloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 atomic_set(&skb->users, 1);
247 skb->head = data;
248 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700249 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700250 skb->end = skb->tail + size;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000251#ifdef NET_SKBUFF_DATA_USES_OFFSET
252 skb->mac_header = ~0U;
Eric Dumazetfda55ec2013-01-07 09:28:21 +0000253 skb->transport_header = ~0U;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000254#endif
255
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800256 /* make sure we initialize shinfo sequentially */
257 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700258 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800259 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000260 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800261
Mel Gormanc93bdd02012-07-31 16:44:19 -0700262 if (flags & SKB_ALLOC_FCLONE) {
David S. Millerd179cd12005-08-17 14:57:30 -0700263 struct sk_buff *child = skb + 1;
264 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200266 kmemcheck_annotate_bitfield(child, flags1);
267 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700268 skb->fclone = SKB_FCLONE_ORIG;
269 atomic_set(fclone_ref, 1);
270
271 child->fclone = SKB_FCLONE_UNAVAILABLE;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700272 child->pfmemalloc = pfmemalloc;
David S. Millerd179cd12005-08-17 14:57:30 -0700273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274out:
275 return skb;
276nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800277 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 skb = NULL;
279 goto out;
280}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800281EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000284 * build_skb - build a network buffer
285 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000286 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000287 *
288 * Allocate a new &sk_buff. Caller provides space holding head and
289 * skb_shared_info. @data must have been allocated by kmalloc()
290 * The return is the new skb buffer.
291 * On a failure the return is %NULL, and @data is not freed.
292 * Notes :
293 * Before IO, driver allocates only data buffer where NIC put incoming frame
294 * Driver should add room at head (NET_SKB_PAD) and
295 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
296 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
297 * before giving packet to stack.
298 * RX rings only contains data buffers, not full skbs.
299 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000300struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000301{
302 struct skb_shared_info *shinfo;
303 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000304 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000305
306 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
307 if (!skb)
308 return NULL;
309
Eric Dumazetd3836f22012-04-27 00:33:38 +0000310 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000311
312 memset(skb, 0, offsetof(struct sk_buff, tail));
313 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000314 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000315 atomic_set(&skb->users, 1);
316 skb->head = data;
317 skb->data = data;
318 skb_reset_tail_pointer(skb);
319 skb->end = skb->tail + size;
320#ifdef NET_SKBUFF_DATA_USES_OFFSET
321 skb->mac_header = ~0U;
Eric Dumazetfda55ec2013-01-07 09:28:21 +0000322 skb->transport_header = ~0U;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000323#endif
324
325 /* make sure we initialize shinfo sequentially */
326 shinfo = skb_shinfo(skb);
327 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
328 atomic_set(&shinfo->dataref, 1);
329 kmemcheck_annotate_variable(shinfo->destructor_arg);
330
331 return skb;
332}
333EXPORT_SYMBOL(build_skb);
334
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000335struct netdev_alloc_cache {
Eric Dumazet69b08f62012-09-26 06:46:57 +0000336 struct page_frag frag;
337 /* we maintain a pagecount bias, so that we dont dirty cache line
338 * containing page->_count every time we allocate a fragment.
339 */
340 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000341};
342static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
343
Mel Gormanc93bdd02012-07-31 16:44:19 -0700344static void *__netdev_alloc_frag(unsigned int fragsz, gfp_t gfp_mask)
Eric Dumazet6f532612012-05-18 05:12:12 +0000345{
346 struct netdev_alloc_cache *nc;
347 void *data = NULL;
Eric Dumazet69b08f62012-09-26 06:46:57 +0000348 int order;
Eric Dumazet6f532612012-05-18 05:12:12 +0000349 unsigned long flags;
350
351 local_irq_save(flags);
352 nc = &__get_cpu_var(netdev_alloc_cache);
Eric Dumazet69b08f62012-09-26 06:46:57 +0000353 if (unlikely(!nc->frag.page)) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000354refill:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000355 for (order = NETDEV_FRAG_PAGE_MAX_ORDER; ;) {
356 gfp_t gfp = gfp_mask;
357
358 if (order)
359 gfp |= __GFP_COMP | __GFP_NOWARN;
360 nc->frag.page = alloc_pages(gfp, order);
361 if (likely(nc->frag.page))
362 break;
363 if (--order < 0)
364 goto end;
365 }
366 nc->frag.size = PAGE_SIZE << order;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000367recycle:
Eric Dumazet69b08f62012-09-26 06:46:57 +0000368 atomic_set(&nc->frag.page->_count, NETDEV_PAGECNT_MAX_BIAS);
369 nc->pagecnt_bias = NETDEV_PAGECNT_MAX_BIAS;
370 nc->frag.offset = 0;
Eric Dumazet6f532612012-05-18 05:12:12 +0000371 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000372
Eric Dumazet69b08f62012-09-26 06:46:57 +0000373 if (nc->frag.offset + fragsz > nc->frag.size) {
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000374 /* avoid unnecessary locked operations if possible */
Eric Dumazet69b08f62012-09-26 06:46:57 +0000375 if ((atomic_read(&nc->frag.page->_count) == nc->pagecnt_bias) ||
376 atomic_sub_and_test(nc->pagecnt_bias, &nc->frag.page->_count))
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000377 goto recycle;
378 goto refill;
Eric Dumazet6f532612012-05-18 05:12:12 +0000379 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000380
Eric Dumazet69b08f62012-09-26 06:46:57 +0000381 data = page_address(nc->frag.page) + nc->frag.offset;
382 nc->frag.offset += fragsz;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000383 nc->pagecnt_bias--;
384end:
Eric Dumazet6f532612012-05-18 05:12:12 +0000385 local_irq_restore(flags);
386 return data;
387}
Mel Gormanc93bdd02012-07-31 16:44:19 -0700388
389/**
390 * netdev_alloc_frag - allocate a page fragment
391 * @fragsz: fragment size
392 *
393 * Allocates a frag from a page for receive buffer.
394 * Uses GFP_ATOMIC allocations.
395 */
396void *netdev_alloc_frag(unsigned int fragsz)
397{
398 return __netdev_alloc_frag(fragsz, GFP_ATOMIC | __GFP_COLD);
399}
Eric Dumazet6f532612012-05-18 05:12:12 +0000400EXPORT_SYMBOL(netdev_alloc_frag);
401
402/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700403 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
404 * @dev: network device to receive on
405 * @length: length to allocate
406 * @gfp_mask: get_free_pages mask, passed to alloc_skb
407 *
408 * Allocate a new &sk_buff and assign it a usage count of one. The
409 * buffer has unspecified headroom built in. Users should allocate
410 * the headroom they think they need without accounting for the
411 * built in space. The built in space is used for optimisations.
412 *
413 * %NULL is returned if there is no free memory.
414 */
415struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
Eric Dumazet6f532612012-05-18 05:12:12 +0000416 unsigned int length, gfp_t gfp_mask)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700417{
Eric Dumazet6f532612012-05-18 05:12:12 +0000418 struct sk_buff *skb = NULL;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000419 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
420 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700421
Eric Dumazet310e1582012-07-16 13:15:52 +0200422 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700423 void *data;
424
425 if (sk_memalloc_socks())
426 gfp_mask |= __GFP_MEMALLOC;
427
428 data = __netdev_alloc_frag(fragsz, gfp_mask);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000429
Eric Dumazet6f532612012-05-18 05:12:12 +0000430 if (likely(data)) {
431 skb = build_skb(data, fragsz);
432 if (unlikely(!skb))
433 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000434 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000435 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700436 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask,
437 SKB_ALLOC_RX, NUMA_NO_NODE);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000438 }
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700439 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700440 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700441 skb->dev = dev;
442 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700443 return skb;
444}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800445EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Peter Zijlstra654bed12008-10-07 14:22:33 -0700447void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000448 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700449{
450 skb_fill_page_desc(skb, i, page, off, size);
451 skb->len += size;
452 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000453 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700454}
455EXPORT_SYMBOL(skb_add_rx_frag);
456
Herbert Xu27b437c2006-07-13 19:26:39 -0700457static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Herbert Xu27b437c2006-07-13 19:26:39 -0700459 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Herbert Xu27b437c2006-07-13 19:26:39 -0700461 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 do {
464 struct sk_buff *this = list;
465 list = list->next;
466 kfree_skb(this);
467 } while (list);
468}
469
Herbert Xu27b437c2006-07-13 19:26:39 -0700470static inline void skb_drop_fraglist(struct sk_buff *skb)
471{
472 skb_drop_list(&skb_shinfo(skb)->frag_list);
473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475static void skb_clone_fraglist(struct sk_buff *skb)
476{
477 struct sk_buff *list;
478
David S. Millerfbb398a2009-06-09 00:18:59 -0700479 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 skb_get(list);
481}
482
Eric Dumazetd3836f22012-04-27 00:33:38 +0000483static void skb_free_head(struct sk_buff *skb)
484{
485 if (skb->head_frag)
486 put_page(virt_to_head_page(skb->head));
487 else
488 kfree(skb->head);
489}
490
Adrian Bunk5bba1712006-06-29 13:02:35 -0700491static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 if (!skb->cloned ||
494 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
495 &skb_shinfo(skb)->dataref)) {
496 if (skb_shinfo(skb)->nr_frags) {
497 int i;
498 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000499 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501
Shirley Maa6686f22011-07-06 12:22:12 +0000502 /*
503 * If skb buf is from userspace, we need to notify the caller
504 * the lower device DMA has done;
505 */
506 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
507 struct ubuf_info *uarg;
508
509 uarg = skb_shinfo(skb)->destructor_arg;
510 if (uarg->callback)
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000511 uarg->callback(uarg, true);
Shirley Maa6686f22011-07-06 12:22:12 +0000512 }
513
David S. Miller21dc3302010-08-23 00:13:46 -0700514 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 skb_drop_fraglist(skb);
516
Eric Dumazetd3836f22012-04-27 00:33:38 +0000517 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519}
520
521/*
522 * Free an skbuff by memory without cleaning the state.
523 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800524static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
David S. Millerd179cd12005-08-17 14:57:30 -0700526 struct sk_buff *other;
527 atomic_t *fclone_ref;
528
David S. Millerd179cd12005-08-17 14:57:30 -0700529 switch (skb->fclone) {
530 case SKB_FCLONE_UNAVAILABLE:
531 kmem_cache_free(skbuff_head_cache, skb);
532 break;
533
534 case SKB_FCLONE_ORIG:
535 fclone_ref = (atomic_t *) (skb + 2);
536 if (atomic_dec_and_test(fclone_ref))
537 kmem_cache_free(skbuff_fclone_cache, skb);
538 break;
539
540 case SKB_FCLONE_CLONE:
541 fclone_ref = (atomic_t *) (skb + 1);
542 other = skb - 1;
543
544 /* The clone portion is available for
545 * fast-cloning again.
546 */
547 skb->fclone = SKB_FCLONE_UNAVAILABLE;
548
549 if (atomic_dec_and_test(fclone_ref))
550 kmem_cache_free(skbuff_fclone_cache, other);
551 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700555static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Eric Dumazetadf30902009-06-02 05:19:30 +0000557 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#ifdef CONFIG_XFRM
559 secpath_put(skb->sp);
560#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700561 if (skb->destructor) {
562 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 skb->destructor(skb);
564 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000565#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700566 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100567#endif
568#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800569 nf_conntrack_put_reasm(skb->nfct_reasm);
570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571#ifdef CONFIG_BRIDGE_NETFILTER
572 nf_bridge_put(skb->nf_bridge);
573#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574/* XXX: IS this still necessary? - JHS */
575#ifdef CONFIG_NET_SCHED
576 skb->tc_index = 0;
577#ifdef CONFIG_NET_CLS_ACT
578 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579#endif
580#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700581}
582
583/* Free everything but the sk_buff shell. */
584static void skb_release_all(struct sk_buff *skb)
585{
586 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800587 skb_release_data(skb);
588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Herbert Xu2d4baff2007-11-26 23:11:19 +0800590/**
591 * __kfree_skb - private function
592 * @skb: buffer
593 *
594 * Free an sk_buff. Release anything attached to the buffer.
595 * Clean the state. This is an internal helper function. Users should
596 * always call kfree_skb
597 */
598
599void __kfree_skb(struct sk_buff *skb)
600{
601 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 kfree_skbmem(skb);
603}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800604EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800607 * kfree_skb - free an sk_buff
608 * @skb: buffer to free
609 *
610 * Drop a reference to the buffer and free it if the usage count has
611 * hit zero.
612 */
613void kfree_skb(struct sk_buff *skb)
614{
615 if (unlikely(!skb))
616 return;
617 if (likely(atomic_read(&skb->users) == 1))
618 smp_rmb();
619 else if (likely(!atomic_dec_and_test(&skb->users)))
620 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000621 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800622 __kfree_skb(skb);
623}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800624EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800625
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700626/**
Michael S. Tsirkin25121172012-11-01 09:16:28 +0000627 * skb_tx_error - report an sk_buff xmit error
628 * @skb: buffer that triggered an error
629 *
630 * Report xmit error if a device callback is tracking this skb.
631 * skb must be freed afterwards.
632 */
633void skb_tx_error(struct sk_buff *skb)
634{
635 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
636 struct ubuf_info *uarg;
637
638 uarg = skb_shinfo(skb)->destructor_arg;
639 if (uarg->callback)
640 uarg->callback(uarg, false);
641 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
642 }
643}
644EXPORT_SYMBOL(skb_tx_error);
645
646/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000647 * consume_skb - free an skbuff
648 * @skb: buffer to free
649 *
650 * Drop a ref to the buffer and free it if the usage count has hit zero
651 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
652 * is being dropped after a failure and notes that
653 */
654void consume_skb(struct sk_buff *skb)
655{
656 if (unlikely(!skb))
657 return;
658 if (likely(atomic_read(&skb->users) == 1))
659 smp_rmb();
660 else if (likely(!atomic_dec_and_test(&skb->users)))
661 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900662 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000663 __kfree_skb(skb);
664}
665EXPORT_SYMBOL(consume_skb);
666
Herbert Xudec18812007-10-14 00:37:30 -0700667static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
668{
669 new->tstamp = old->tstamp;
670 new->dev = old->dev;
671 new->transport_header = old->transport_header;
672 new->network_header = old->network_header;
673 new->mac_header = old->mac_header;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000674 new->inner_transport_header = old->inner_transport_header;
Pravin B Shelar92df9b22013-02-01 15:18:49 +0000675 new->inner_network_header = old->inner_network_header;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000676 new->inner_mac_header = old->inner_mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000677 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000678 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000679 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000680 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000681 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000682 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700683#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700684 new->sp = secpath_get(old->sp);
685#endif
686 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000687 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700688 new->local_df = old->local_df;
689 new->pkt_type = old->pkt_type;
690 new->ip_summed = old->ip_summed;
691 skb_copy_queue_mapping(new, old);
692 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000693#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700694 new->ipvs_property = old->ipvs_property;
695#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700696 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700697 new->protocol = old->protocol;
698 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800699 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700700 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000701#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700702 new->nf_trace = old->nf_trace;
703#endif
704#ifdef CONFIG_NET_SCHED
705 new->tc_index = old->tc_index;
706#ifdef CONFIG_NET_CLS_ACT
707 new->tc_verd = old->tc_verd;
708#endif
709#endif
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000710 new->vlan_proto = old->vlan_proto;
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700711 new->vlan_tci = old->vlan_tci;
712
Herbert Xudec18812007-10-14 00:37:30 -0700713 skb_copy_secmark(new, old);
714}
715
Herbert Xu82c49a32009-05-22 22:11:37 +0000716/*
717 * You should not add any new code to this function. Add it to
718 * __copy_skb_header above instead.
719 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700720static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#define C(x) n->x = skb->x
723
724 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700726 __copy_skb_header(n, skb);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 C(len);
729 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700730 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700731 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800732 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 C(tail);
736 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800737 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000738 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800739 C(data);
740 C(truesize);
741 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 atomic_inc(&(skb_shinfo(skb)->dataref));
744 skb->cloned = 1;
745
746 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700747#undef C
748}
749
750/**
751 * skb_morph - morph one skb into another
752 * @dst: the skb to receive the contents
753 * @src: the skb to supply the contents
754 *
755 * This is identical to skb_clone except that the target skb is
756 * supplied by the user.
757 *
758 * The target skb is returned upon exit.
759 */
760struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
761{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800762 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700763 return __skb_clone(dst, src);
764}
765EXPORT_SYMBOL_GPL(skb_morph);
766
Ben Hutchings2c530402012-07-10 10:55:09 +0000767/**
768 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000769 * @skb: the skb to modify
770 * @gfp_mask: allocation priority
771 *
772 * This must be called on SKBTX_DEV_ZEROCOPY skb.
773 * It will copy all frags into kernel and drop the reference
774 * to userspace pages.
775 *
776 * If this function is called from an interrupt gfp_mask() must be
777 * %GFP_ATOMIC.
778 *
779 * Returns 0 on success or a negative error code on failure
780 * to allocate kernel memory to copy to.
781 */
782int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000783{
784 int i;
785 int num_frags = skb_shinfo(skb)->nr_frags;
786 struct page *page, *head = NULL;
787 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
788
789 for (i = 0; i < num_frags; i++) {
790 u8 *vaddr;
791 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
792
Krishna Kumar02756ed2012-07-17 02:05:29 +0000793 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000794 if (!page) {
795 while (head) {
796 struct page *next = (struct page *)head->private;
797 put_page(head);
798 head = next;
799 }
800 return -ENOMEM;
801 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200802 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000803 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000804 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200805 kunmap_atomic(vaddr);
Shirley Maa6686f22011-07-06 12:22:12 +0000806 page->private = (unsigned long)head;
807 head = page;
808 }
809
810 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000811 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000812 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000813
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000814 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000815
816 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000817 for (i = num_frags - 1; i >= 0; i--) {
818 __skb_fill_page_desc(skb, i, head, 0,
819 skb_shinfo(skb)->frags[i].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000820 head = (struct page *)head->private;
821 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000822
823 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000824 return 0;
825}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000826EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000827
Herbert Xue0053ec2007-10-14 00:37:52 -0700828/**
829 * skb_clone - duplicate an sk_buff
830 * @skb: buffer to clone
831 * @gfp_mask: allocation priority
832 *
833 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
834 * copies share the same packet data but not structure. The new
835 * buffer has a reference count of 1. If the allocation fails the
836 * function returns %NULL otherwise the new buffer is returned.
837 *
838 * If this function is called from an interrupt gfp_mask() must be
839 * %GFP_ATOMIC.
840 */
841
842struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
843{
844 struct sk_buff *n;
845
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000846 if (skb_orphan_frags(skb, gfp_mask))
847 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000848
Herbert Xue0053ec2007-10-14 00:37:52 -0700849 n = skb + 1;
850 if (skb->fclone == SKB_FCLONE_ORIG &&
851 n->fclone == SKB_FCLONE_UNAVAILABLE) {
852 atomic_t *fclone_ref = (atomic_t *) (n + 1);
853 n->fclone = SKB_FCLONE_CLONE;
854 atomic_inc(fclone_ref);
855 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700856 if (skb_pfmemalloc(skb))
857 gfp_mask |= __GFP_MEMALLOC;
858
Herbert Xue0053ec2007-10-14 00:37:52 -0700859 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
860 if (!n)
861 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200862
863 kmemcheck_annotate_bitfield(n, flags1);
864 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700865 n->fclone = SKB_FCLONE_UNAVAILABLE;
866 }
867
868 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800870EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000872static void skb_headers_offset_update(struct sk_buff *skb, int off)
873{
874 /* {transport,network,mac}_header and tail are relative to skb->head */
875 skb->transport_header += off;
876 skb->network_header += off;
877 if (skb_mac_header_was_set(skb))
878 skb->mac_header += off;
879 skb->inner_transport_header += off;
880 skb->inner_network_header += off;
Pravin B Shelaraefbd2b2013-03-07 13:21:46 +0000881 skb->inner_mac_header += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000882}
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
885{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700886#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
888 * Shift between the two data areas in bytes
889 */
890 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700891#endif
Herbert Xudec18812007-10-14 00:37:30 -0700892
893 __copy_skb_header(new, old);
894
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700895#ifndef NET_SKBUFF_DATA_USES_OFFSET
Pravin B Shelarf5b17292013-03-07 13:21:40 +0000896 skb_headers_offset_update(new, offset);
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700897#endif
Herbert Xu79671682006-06-22 02:40:14 -0700898 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
899 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
900 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Mel Gormanc93bdd02012-07-31 16:44:19 -0700903static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
904{
905 if (skb_pfmemalloc(skb))
906 return SKB_ALLOC_RX;
907 return 0;
908}
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910/**
911 * skb_copy - create private copy of an sk_buff
912 * @skb: buffer to copy
913 * @gfp_mask: allocation priority
914 *
915 * Make a copy of both an &sk_buff and its data. This is used when the
916 * caller wishes to modify the data and needs a private copy of the
917 * data to alter. Returns %NULL on failure or the pointer to the buffer
918 * on success. The returned buffer has a reference count of 1.
919 *
920 * As by-product this function converts non-linear &sk_buff to linear
921 * one, so that &sk_buff becomes completely private and caller is allowed
922 * to modify all the data of returned buffer. This means that this
923 * function is not recommended for use in circumstances when only
924 * header is going to be modified. Use pskb_copy() instead.
925 */
926
Al Virodd0fc662005-10-07 07:46:04 +0100927struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000929 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000930 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700931 struct sk_buff *n = __alloc_skb(size, gfp_mask,
932 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (!n)
935 return NULL;
936
937 /* Set the data pointer */
938 skb_reserve(n, headerlen);
939 /* Set the tail pointer and length */
940 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
943 BUG();
944
945 copy_skb_header(n, skb);
946 return n;
947}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800948EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000951 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000953 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * @gfp_mask: allocation priority
955 *
956 * Make a copy of both an &sk_buff and part of its data, located
957 * in header. Fragmented data remain shared. This is used when
958 * the caller wishes to modify only header of &sk_buff and needs
959 * private copy of the header to alter. Returns %NULL on failure
960 * or the pointer to the buffer on success.
961 * The returned buffer has a reference count of 1.
962 */
963
Eric Dumazet117632e2011-12-03 21:39:53 +0000964struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Eric Dumazet117632e2011-12-03 21:39:53 +0000966 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700967 struct sk_buff *n = __alloc_skb(size, gfp_mask,
968 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (!n)
971 goto out;
972
973 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000974 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* Set the tail pointer and length */
976 skb_put(n, skb_headlen(skb));
977 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300978 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Herbert Xu25f484a2006-11-07 14:57:15 -0800980 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 n->data_len = skb->data_len;
982 n->len = skb->len;
983
984 if (skb_shinfo(skb)->nr_frags) {
985 int i;
986
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000987 if (skb_orphan_frags(skb, gfp_mask)) {
988 kfree_skb(n);
989 n = NULL;
990 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +0000991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
993 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +0000994 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996 skb_shinfo(n)->nr_frags = i;
997 }
998
David S. Miller21dc3302010-08-23 00:13:46 -0700999 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
1001 skb_clone_fraglist(n);
1002 }
1003
1004 copy_skb_header(n, skb);
1005out:
1006 return n;
1007}
Eric Dumazet117632e2011-12-03 21:39:53 +00001008EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010/**
1011 * pskb_expand_head - reallocate header of &sk_buff
1012 * @skb: buffer to reallocate
1013 * @nhead: room to add at head
1014 * @ntail: room to add at tail
1015 * @gfp_mask: allocation priority
1016 *
1017 * Expands (or creates identical copy, if &nhead and &ntail are zero)
1018 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
1019 * reference count of 1. Returns zero in the case of success or error,
1020 * if expansion failed. In the last case, &sk_buff is not changed.
1021 *
1022 * All the pointers pointing into skb header may change and must be
1023 * reloaded after call to this function.
1024 */
1025
Victor Fusco86a76ca2005-07-08 14:57:47 -07001026int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001027 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 int i;
1030 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001031 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 long off;
1033
Herbert Xu4edd87a2008-10-01 07:09:38 -07001034 BUG_ON(nhead < 0);
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (skb_shared(skb))
1037 BUG();
1038
1039 size = SKB_DATA_ALIGN(size);
1040
Mel Gormanc93bdd02012-07-31 16:44:19 -07001041 if (skb_pfmemalloc(skb))
1042 gfp_mask |= __GFP_MEMALLOC;
1043 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1044 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (!data)
1046 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001047 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001050 * optimized for the cases when header is void.
1051 */
1052 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1053
1054 memcpy((struct skb_shared_info *)(data + size),
1055 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001056 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Alexander Duyck3e245912012-05-04 14:26:51 +00001058 /*
1059 * if shinfo is shared we must drop the old head gracefully, but if it
1060 * is not we can just drop the old head and let the existing refcount
1061 * be since all we did is relocate the values
1062 */
1063 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001064 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001065 if (skb_orphan_frags(skb, gfp_mask))
1066 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001067 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001068 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Eric Dumazet1fd63042010-09-02 23:09:32 +00001070 if (skb_has_frag_list(skb))
1071 skb_clone_fraglist(skb);
1072
1073 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001074 } else {
1075 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 off = (data + nhead) - skb->head;
1078
1079 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001080 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001082#ifdef NET_SKBUFF_DATA_USES_OFFSET
1083 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001084 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001085#else
1086 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001087#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001088 skb->tail += off;
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001089 skb_headers_offset_update(skb, off);
Andrea Shepard00c5a982010-07-22 09:12:35 +00001090 /* Only adjust this if it actually is csum_start rather than csum */
1091 if (skb->ip_summed == CHECKSUM_PARTIAL)
1092 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001094 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 skb->nohdr = 0;
1096 atomic_set(&skb_shinfo(skb)->dataref, 1);
1097 return 0;
1098
Shirley Maa6686f22011-07-06 12:22:12 +00001099nofrags:
1100 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101nodata:
1102 return -ENOMEM;
1103}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001104EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106/* Make private copy of skb with writable head and some headroom */
1107
1108struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1109{
1110 struct sk_buff *skb2;
1111 int delta = headroom - skb_headroom(skb);
1112
1113 if (delta <= 0)
1114 skb2 = pskb_copy(skb, GFP_ATOMIC);
1115 else {
1116 skb2 = skb_clone(skb, GFP_ATOMIC);
1117 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1118 GFP_ATOMIC)) {
1119 kfree_skb(skb2);
1120 skb2 = NULL;
1121 }
1122 }
1123 return skb2;
1124}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001125EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127/**
1128 * skb_copy_expand - copy and expand sk_buff
1129 * @skb: buffer to copy
1130 * @newheadroom: new free bytes at head
1131 * @newtailroom: new free bytes at tail
1132 * @gfp_mask: allocation priority
1133 *
1134 * Make a copy of both an &sk_buff and its data and while doing so
1135 * allocate additional space.
1136 *
1137 * This is used when the caller wishes to modify the data and needs a
1138 * private copy of the data to alter as well as more space for new fields.
1139 * Returns %NULL on failure or the pointer to the buffer
1140 * on success. The returned buffer has a reference count of 1.
1141 *
1142 * You must pass %GFP_ATOMIC as the allocation priority if this function
1143 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 */
1145struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001146 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001147 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 /*
1150 * Allocate the copy buffer
1151 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001152 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1153 gfp_mask, skb_alloc_rx_flag(skb),
1154 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001155 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001157 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 if (!n)
1160 return NULL;
1161
1162 skb_reserve(n, newheadroom);
1163
1164 /* Set the tail pointer and length */
1165 skb_put(n, skb->len);
1166
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001167 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 head_copy_off = 0;
1169 if (newheadroom <= head_copy_len)
1170 head_copy_len = newheadroom;
1171 else
1172 head_copy_off = newheadroom - head_copy_len;
1173
1174 /* Copy the linear header and data. */
1175 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1176 skb->len + head_copy_len))
1177 BUG();
1178
1179 copy_skb_header(n, skb);
1180
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001181 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001182 if (n->ip_summed == CHECKSUM_PARTIAL)
1183 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001184#ifdef NET_SKBUFF_DATA_USES_OFFSET
Pravin B Shelarf5b17292013-03-07 13:21:40 +00001185 skb_headers_offset_update(n, off);
Herbert Xu52886052007-09-16 16:32:11 -07001186#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return n;
1189}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001190EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192/**
1193 * skb_pad - zero pad the tail of an skb
1194 * @skb: buffer to pad
1195 * @pad: space to pad
1196 *
1197 * Ensure that a buffer is followed by a padding area that is zero
1198 * filled. Used by network drivers which may DMA or transfer data
1199 * beyond the buffer end onto the wire.
1200 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001201 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001203
Herbert Xu5b057c62006-06-23 02:06:41 -07001204int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Herbert Xu5b057c62006-06-23 02:06:41 -07001206 int err;
1207 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001210 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001214
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001215 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001216 if (likely(skb_cloned(skb) || ntail > 0)) {
1217 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1218 if (unlikely(err))
1219 goto free_skb;
1220 }
1221
1222 /* FIXME: The use of this function with non-linear skb's really needs
1223 * to be audited.
1224 */
1225 err = skb_linearize(skb);
1226 if (unlikely(err))
1227 goto free_skb;
1228
1229 memset(skb->data + skb->len, 0, pad);
1230 return 0;
1231
1232free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001234 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001235}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001236EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001237
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001238/**
1239 * skb_put - add data to a buffer
1240 * @skb: buffer to use
1241 * @len: amount of data to add
1242 *
1243 * This function extends the used data area of the buffer. If this would
1244 * exceed the total buffer size the kernel will panic. A pointer to the
1245 * first byte of the extra data is returned.
1246 */
1247unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1248{
1249 unsigned char *tmp = skb_tail_pointer(skb);
1250 SKB_LINEAR_ASSERT(skb);
1251 skb->tail += len;
1252 skb->len += len;
1253 if (unlikely(skb->tail > skb->end))
1254 skb_over_panic(skb, len, __builtin_return_address(0));
1255 return tmp;
1256}
1257EXPORT_SYMBOL(skb_put);
1258
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001259/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001260 * skb_push - add data to the start of a buffer
1261 * @skb: buffer to use
1262 * @len: amount of data to add
1263 *
1264 * This function extends the used data area of the buffer at the buffer
1265 * start. If this would exceed the total buffer headroom the kernel will
1266 * panic. A pointer to the first byte of the extra data is returned.
1267 */
1268unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1269{
1270 skb->data -= len;
1271 skb->len += len;
1272 if (unlikely(skb->data<skb->head))
1273 skb_under_panic(skb, len, __builtin_return_address(0));
1274 return skb->data;
1275}
1276EXPORT_SYMBOL(skb_push);
1277
1278/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001279 * skb_pull - remove data from the start of a buffer
1280 * @skb: buffer to use
1281 * @len: amount of data to remove
1282 *
1283 * This function removes data from the start of a buffer, returning
1284 * the memory to the headroom. A pointer to the next data in the buffer
1285 * is returned. Once the data has been pulled future pushes will overwrite
1286 * the old data.
1287 */
1288unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1289{
David S. Miller47d29642010-05-02 02:21:44 -07001290 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001291}
1292EXPORT_SYMBOL(skb_pull);
1293
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001294/**
1295 * skb_trim - remove end from a buffer
1296 * @skb: buffer to alter
1297 * @len: new length
1298 *
1299 * Cut the length of a buffer down by removing data from the tail. If
1300 * the buffer is already under the length specified it is not modified.
1301 * The skb must be linear.
1302 */
1303void skb_trim(struct sk_buff *skb, unsigned int len)
1304{
1305 if (skb->len > len)
1306 __skb_trim(skb, len);
1307}
1308EXPORT_SYMBOL(skb_trim);
1309
Herbert Xu3cc0e872006-06-09 16:13:38 -07001310/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 */
1312
Herbert Xu3cc0e872006-06-09 16:13:38 -07001313int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Herbert Xu27b437c2006-07-13 19:26:39 -07001315 struct sk_buff **fragp;
1316 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 int offset = skb_headlen(skb);
1318 int nfrags = skb_shinfo(skb)->nr_frags;
1319 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001320 int err;
1321
1322 if (skb_cloned(skb) &&
1323 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1324 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001326 i = 0;
1327 if (offset >= len)
1328 goto drop_pages;
1329
1330 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001331 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001332
1333 if (end < len) {
1334 offset = end;
1335 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001337
Eric Dumazet9e903e02011-10-18 21:00:24 +00001338 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001339
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001340drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001341 skb_shinfo(skb)->nr_frags = i;
1342
1343 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001344 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001345
David S. Miller21dc3302010-08-23 00:13:46 -07001346 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001347 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001348 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 }
1350
Herbert Xu27b437c2006-07-13 19:26:39 -07001351 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1352 fragp = &frag->next) {
1353 int end = offset + frag->len;
1354
1355 if (skb_shared(frag)) {
1356 struct sk_buff *nfrag;
1357
1358 nfrag = skb_clone(frag, GFP_ATOMIC);
1359 if (unlikely(!nfrag))
1360 return -ENOMEM;
1361
1362 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001363 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001364 frag = nfrag;
1365 *fragp = frag;
1366 }
1367
1368 if (end < len) {
1369 offset = end;
1370 continue;
1371 }
1372
1373 if (end > len &&
1374 unlikely((err = pskb_trim(frag, len - offset))))
1375 return err;
1376
1377 if (frag->next)
1378 skb_drop_list(&frag->next);
1379 break;
1380 }
1381
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001382done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001383 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 skb->data_len -= skb->len - len;
1385 skb->len = len;
1386 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001387 skb->len = len;
1388 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001389 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391
1392 return 0;
1393}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001394EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396/**
1397 * __pskb_pull_tail - advance tail of skb header
1398 * @skb: buffer to reallocate
1399 * @delta: number of bytes to advance tail
1400 *
1401 * The function makes a sense only on a fragmented &sk_buff,
1402 * it expands header moving its tail forward and copying necessary
1403 * data from fragmented part.
1404 *
1405 * &sk_buff MUST have reference count of 1.
1406 *
1407 * Returns %NULL (and &sk_buff does not change) if pull failed
1408 * or value of new tail of skb in the case of success.
1409 *
1410 * All the pointers pointing into skb header may change and must be
1411 * reloaded after call to this function.
1412 */
1413
1414/* Moves tail of skb head forward, copying data from fragmented part,
1415 * when it is necessary.
1416 * 1. It may fail due to malloc failure.
1417 * 2. It may change skb pointers.
1418 *
1419 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1420 */
1421unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1422{
1423 /* If skb has not enough free space at tail, get new one
1424 * plus 128 bytes for future expansions. If we have enough
1425 * room at tail, reallocate without expansion only if skb is cloned.
1426 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001427 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 if (eat > 0 || skb_cloned(skb)) {
1430 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1431 GFP_ATOMIC))
1432 return NULL;
1433 }
1434
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001435 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 BUG();
1437
1438 /* Optimization: no fragments, no reasons to preestimate
1439 * size of pulled pages. Superb.
1440 */
David S. Miller21dc3302010-08-23 00:13:46 -07001441 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto pull_pages;
1443
1444 /* Estimate size of pulled pages. */
1445 eat = delta;
1446 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001447 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1448
1449 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001451 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453
1454 /* If we need update frag list, we are in troubles.
1455 * Certainly, it possible to add an offset to skb data,
1456 * but taking into account that pulling is expected to
1457 * be very rare operation, it is worth to fight against
1458 * further bloating skb head and crucify ourselves here instead.
1459 * Pure masohism, indeed. 8)8)
1460 */
1461 if (eat) {
1462 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1463 struct sk_buff *clone = NULL;
1464 struct sk_buff *insp = NULL;
1465
1466 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001467 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 if (list->len <= eat) {
1470 /* Eaten as whole. */
1471 eat -= list->len;
1472 list = list->next;
1473 insp = list;
1474 } else {
1475 /* Eaten partially. */
1476
1477 if (skb_shared(list)) {
1478 /* Sucks! We need to fork list. :-( */
1479 clone = skb_clone(list, GFP_ATOMIC);
1480 if (!clone)
1481 return NULL;
1482 insp = list->next;
1483 list = clone;
1484 } else {
1485 /* This may be pulled without
1486 * problems. */
1487 insp = list;
1488 }
1489 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001490 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return NULL;
1492 }
1493 break;
1494 }
1495 } while (eat);
1496
1497 /* Free pulled out fragments. */
1498 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1499 skb_shinfo(skb)->frag_list = list->next;
1500 kfree_skb(list);
1501 }
1502 /* And insert new clone at head. */
1503 if (clone) {
1504 clone->next = list;
1505 skb_shinfo(skb)->frag_list = clone;
1506 }
1507 }
1508 /* Success! Now we may commit changes to skb data. */
1509
1510pull_pages:
1511 eat = delta;
1512 k = 0;
1513 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001514 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1515
1516 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001517 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001518 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 } else {
1520 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1521 if (eat) {
1522 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001523 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 eat = 0;
1525 }
1526 k++;
1527 }
1528 }
1529 skb_shinfo(skb)->nr_frags = k;
1530
1531 skb->tail += delta;
1532 skb->data_len -= delta;
1533
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001534 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001536EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Eric Dumazet22019b12011-07-29 18:37:31 +00001538/**
1539 * skb_copy_bits - copy bits from skb to kernel buffer
1540 * @skb: source skb
1541 * @offset: offset in source
1542 * @to: destination buffer
1543 * @len: number of bytes to copy
1544 *
1545 * Copy the specified number of bytes from the source skb to the
1546 * destination buffer.
1547 *
1548 * CAUTION ! :
1549 * If its prototype is ever changed,
1550 * check arch/{*}/net/{*}.S files,
1551 * since it is called from BPF assembly code.
1552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1554{
David S. Miller1a028e52007-04-27 15:21:23 -07001555 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001556 struct sk_buff *frag_iter;
1557 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 if (offset > (int)skb->len - len)
1560 goto fault;
1561
1562 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001563 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (copy > len)
1565 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001566 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if ((len -= copy) == 0)
1568 return 0;
1569 offset += copy;
1570 to += copy;
1571 }
1572
1573 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001574 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001575 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001577 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001578
Eric Dumazet51c56b02012-04-05 11:35:15 +02001579 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if ((copy = end - offset) > 0) {
1581 u8 *vaddr;
1582
1583 if (copy > len)
1584 copy = len;
1585
Eric Dumazet51c56b02012-04-05 11:35:15 +02001586 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001588 vaddr + f->page_offset + offset - start,
1589 copy);
1590 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 if ((len -= copy) == 0)
1593 return 0;
1594 offset += copy;
1595 to += copy;
1596 }
David S. Miller1a028e52007-04-27 15:21:23 -07001597 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
David S. Millerfbb398a2009-06-09 00:18:59 -07001600 skb_walk_frags(skb, frag_iter) {
1601 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
David S. Millerfbb398a2009-06-09 00:18:59 -07001603 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
David S. Millerfbb398a2009-06-09 00:18:59 -07001605 end = start + frag_iter->len;
1606 if ((copy = end - offset) > 0) {
1607 if (copy > len)
1608 copy = len;
1609 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1610 goto fault;
1611 if ((len -= copy) == 0)
1612 return 0;
1613 offset += copy;
1614 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001616 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
Shirley Maa6686f22011-07-06 12:22:12 +00001618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 if (!len)
1620 return 0;
1621
1622fault:
1623 return -EFAULT;
1624}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001625EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Jens Axboe9c55e012007-11-06 23:30:13 -08001627/*
1628 * Callback from splice_to_pipe(), if we need to release some pages
1629 * at the end of the spd in case we error'ed out in filling the pipe.
1630 */
1631static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1632{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001633 put_page(spd->pages[i]);
1634}
Jens Axboe9c55e012007-11-06 23:30:13 -08001635
David S. Millera108d5f2012-04-23 23:06:11 -04001636static struct page *linear_to_page(struct page *page, unsigned int *len,
1637 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001638 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001639{
Eric Dumazet5640f762012-09-23 23:04:42 +00001640 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001641
Eric Dumazet5640f762012-09-23 23:04:42 +00001642 if (!sk_page_frag_refill(sk, pfrag))
1643 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001644
Eric Dumazet5640f762012-09-23 23:04:42 +00001645 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001646
Eric Dumazet5640f762012-09-23 23:04:42 +00001647 memcpy(page_address(pfrag->page) + pfrag->offset,
1648 page_address(page) + *offset, *len);
1649 *offset = pfrag->offset;
1650 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001651
Eric Dumazet5640f762012-09-23 23:04:42 +00001652 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001653}
1654
Eric Dumazet41c73a02012-04-22 12:26:16 +00001655static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1656 struct page *page,
1657 unsigned int offset)
1658{
1659 return spd->nr_pages &&
1660 spd->pages[spd->nr_pages - 1] == page &&
1661 (spd->partial[spd->nr_pages - 1].offset +
1662 spd->partial[spd->nr_pages - 1].len == offset);
1663}
1664
Jens Axboe9c55e012007-11-06 23:30:13 -08001665/*
1666 * Fill page/offset/length into spd, if it can hold more pages.
1667 */
David S. Millera108d5f2012-04-23 23:06:11 -04001668static bool spd_fill_page(struct splice_pipe_desc *spd,
1669 struct pipe_inode_info *pipe, struct page *page,
1670 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001671 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001672 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001673{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001674 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001675 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001676
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001677 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001678 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001679 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001680 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001681 }
1682 if (spd_can_coalesce(spd, page, offset)) {
1683 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001684 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001685 }
1686 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001687 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001688 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001689 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001690 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001691
David S. Millera108d5f2012-04-23 23:06:11 -04001692 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001693}
1694
David S. Millera108d5f2012-04-23 23:06:11 -04001695static bool __splice_segment(struct page *page, unsigned int poff,
1696 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001697 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001698 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001699 struct sock *sk,
1700 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001701{
1702 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001703 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001704
1705 /* skip this segment if already processed */
1706 if (*off >= plen) {
1707 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001708 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001709 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001710
Octavian Purdila2870c432008-07-15 00:49:11 -07001711 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001712 poff += *off;
1713 plen -= *off;
1714 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001715
Eric Dumazet18aafc62013-01-11 14:46:37 +00001716 do {
1717 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001718
Eric Dumazet18aafc62013-01-11 14:46:37 +00001719 if (spd_fill_page(spd, pipe, page, &flen, poff,
1720 linear, sk))
1721 return true;
1722 poff += flen;
1723 plen -= flen;
1724 *len -= flen;
1725 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001726
David S. Millera108d5f2012-04-23 23:06:11 -04001727 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001728}
1729
1730/*
David S. Millera108d5f2012-04-23 23:06:11 -04001731 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001732 * pipe is full or if we already spliced the requested length.
1733 */
David S. Millera108d5f2012-04-23 23:06:11 -04001734static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1735 unsigned int *offset, unsigned int *len,
1736 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001737{
1738 int seg;
1739
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001740 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001741 * If skb->head_frag is set, this 'linear' part is backed by a
1742 * fragment, and if the head is not shared with any clones then
1743 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001744 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001745 if (__splice_segment(virt_to_page(skb->data),
1746 (unsigned long) skb->data & (PAGE_SIZE - 1),
1747 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001748 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001749 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001750 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001751 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001752
1753 /*
1754 * then map the fragments
1755 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001756 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1757 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1758
Ian Campbellea2ab692011-08-22 23:44:58 +00001759 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001760 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001761 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001762 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001763 }
1764
David S. Millera108d5f2012-04-23 23:06:11 -04001765 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001766}
1767
1768/*
1769 * Map data from the skb to a pipe. Should handle both the linear part,
1770 * the fragments, and the frag list. It does NOT handle frag lists within
1771 * the frag list, if such a thing exists. We'd probably need to recurse to
1772 * handle that cleanly.
1773 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001774int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001775 struct pipe_inode_info *pipe, unsigned int tlen,
1776 unsigned int flags)
1777{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001778 struct partial_page partial[MAX_SKB_FRAGS];
1779 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001780 struct splice_pipe_desc spd = {
1781 .pages = pages,
1782 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001783 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001784 .flags = flags,
1785 .ops = &sock_pipe_buf_ops,
1786 .spd_release = sock_spd_release,
1787 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001788 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001789 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001790 int ret = 0;
1791
Jens Axboe9c55e012007-11-06 23:30:13 -08001792 /*
1793 * __skb_splice_bits() only fails if the output has no room left,
1794 * so no point in going over the frag_list for the error case.
1795 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001796 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001797 goto done;
1798 else if (!tlen)
1799 goto done;
1800
1801 /*
1802 * now see if we have a frag_list to map
1803 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001804 skb_walk_frags(skb, frag_iter) {
1805 if (!tlen)
1806 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001807 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001808 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001809 }
1810
1811done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001812 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001813 /*
1814 * Drop the socket lock, otherwise we have reverse
1815 * locking dependencies between sk_lock and i_mutex
1816 * here as compared to sendfile(). We enter here
1817 * with the socket lock held, and splice_to_pipe() will
1818 * grab the pipe inode lock. For sendfile() emulation,
1819 * we call into ->sendpage() with the i_mutex lock held
1820 * and networking will grab the socket lock.
1821 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001822 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001823 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001824 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001825 }
1826
Jens Axboe35f3d142010-05-20 10:43:18 +02001827 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001828}
1829
Herbert Xu357b40a2005-04-19 22:30:14 -07001830/**
1831 * skb_store_bits - store bits from kernel buffer to skb
1832 * @skb: destination buffer
1833 * @offset: offset in destination
1834 * @from: source buffer
1835 * @len: number of bytes to copy
1836 *
1837 * Copy the specified number of bytes from the source buffer to the
1838 * destination skb. This function handles all the messy bits of
1839 * traversing fragment lists and such.
1840 */
1841
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001842int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001843{
David S. Miller1a028e52007-04-27 15:21:23 -07001844 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001845 struct sk_buff *frag_iter;
1846 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001847
1848 if (offset > (int)skb->len - len)
1849 goto fault;
1850
David S. Miller1a028e52007-04-27 15:21:23 -07001851 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001852 if (copy > len)
1853 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001854 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001855 if ((len -= copy) == 0)
1856 return 0;
1857 offset += copy;
1858 from += copy;
1859 }
1860
1861 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1862 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001863 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001864
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001865 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001866
Eric Dumazet9e903e02011-10-18 21:00:24 +00001867 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001868 if ((copy = end - offset) > 0) {
1869 u8 *vaddr;
1870
1871 if (copy > len)
1872 copy = len;
1873
Eric Dumazet51c56b02012-04-05 11:35:15 +02001874 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001875 memcpy(vaddr + frag->page_offset + offset - start,
1876 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001877 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001878
1879 if ((len -= copy) == 0)
1880 return 0;
1881 offset += copy;
1882 from += copy;
1883 }
David S. Miller1a028e52007-04-27 15:21:23 -07001884 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001885 }
1886
David S. Millerfbb398a2009-06-09 00:18:59 -07001887 skb_walk_frags(skb, frag_iter) {
1888 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001889
David S. Millerfbb398a2009-06-09 00:18:59 -07001890 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001891
David S. Millerfbb398a2009-06-09 00:18:59 -07001892 end = start + frag_iter->len;
1893 if ((copy = end - offset) > 0) {
1894 if (copy > len)
1895 copy = len;
1896 if (skb_store_bits(frag_iter, offset - start,
1897 from, copy))
1898 goto fault;
1899 if ((len -= copy) == 0)
1900 return 0;
1901 offset += copy;
1902 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001903 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001904 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001905 }
1906 if (!len)
1907 return 0;
1908
1909fault:
1910 return -EFAULT;
1911}
Herbert Xu357b40a2005-04-19 22:30:14 -07001912EXPORT_SYMBOL(skb_store_bits);
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914/* Checksum skb data. */
1915
Al Viro2bbbc862006-11-14 21:37:14 -08001916__wsum skb_checksum(const struct sk_buff *skb, int offset,
1917 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
David S. Miller1a028e52007-04-27 15:21:23 -07001919 int start = skb_headlen(skb);
1920 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001921 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 int pos = 0;
1923
1924 /* Checksum header. */
1925 if (copy > 0) {
1926 if (copy > len)
1927 copy = len;
1928 csum = csum_partial(skb->data + offset, copy, csum);
1929 if ((len -= copy) == 0)
1930 return csum;
1931 offset += copy;
1932 pos = copy;
1933 }
1934
1935 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001936 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001937 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001939 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001940
Eric Dumazet51c56b02012-04-05 11:35:15 +02001941 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001943 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 if (copy > len)
1947 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001948 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001949 csum2 = csum_partial(vaddr + frag->page_offset +
1950 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001951 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 csum = csum_block_add(csum, csum2, pos);
1953 if (!(len -= copy))
1954 return csum;
1955 offset += copy;
1956 pos += copy;
1957 }
David S. Miller1a028e52007-04-27 15:21:23 -07001958 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960
David S. Millerfbb398a2009-06-09 00:18:59 -07001961 skb_walk_frags(skb, frag_iter) {
1962 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
David S. Millerfbb398a2009-06-09 00:18:59 -07001964 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
David S. Millerfbb398a2009-06-09 00:18:59 -07001966 end = start + frag_iter->len;
1967 if ((copy = end - offset) > 0) {
1968 __wsum csum2;
1969 if (copy > len)
1970 copy = len;
1971 csum2 = skb_checksum(frag_iter, offset - start,
1972 copy, 0);
1973 csum = csum_block_add(csum, csum2, pos);
1974 if ((len -= copy) == 0)
1975 return csum;
1976 offset += copy;
1977 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001979 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001981 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 return csum;
1984}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001985EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987/* Both of above in one bottle. */
1988
Al Viro81d77662006-11-14 21:37:33 -08001989__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1990 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
David S. Miller1a028e52007-04-27 15:21:23 -07001992 int start = skb_headlen(skb);
1993 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001994 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 int pos = 0;
1996
1997 /* Copy header. */
1998 if (copy > 0) {
1999 if (copy > len)
2000 copy = len;
2001 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2002 copy, csum);
2003 if ((len -= copy) == 0)
2004 return csum;
2005 offset += copy;
2006 to += copy;
2007 pos = copy;
2008 }
2009
2010 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002011 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002013 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002014
Eric Dumazet9e903e02011-10-18 21:00:24 +00002015 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002017 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 u8 *vaddr;
2019 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2020
2021 if (copy > len)
2022 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002023 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002025 frag->page_offset +
2026 offset - start, to,
2027 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002028 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 csum = csum_block_add(csum, csum2, pos);
2030 if (!(len -= copy))
2031 return csum;
2032 offset += copy;
2033 to += copy;
2034 pos += copy;
2035 }
David S. Miller1a028e52007-04-27 15:21:23 -07002036 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
David S. Millerfbb398a2009-06-09 00:18:59 -07002039 skb_walk_frags(skb, frag_iter) {
2040 __wsum csum2;
2041 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
David S. Millerfbb398a2009-06-09 00:18:59 -07002043 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
David S. Millerfbb398a2009-06-09 00:18:59 -07002045 end = start + frag_iter->len;
2046 if ((copy = end - offset) > 0) {
2047 if (copy > len)
2048 copy = len;
2049 csum2 = skb_copy_and_csum_bits(frag_iter,
2050 offset - start,
2051 to, copy, 0);
2052 csum = csum_block_add(csum, csum2, pos);
2053 if ((len -= copy) == 0)
2054 return csum;
2055 offset += copy;
2056 to += copy;
2057 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002059 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002061 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 return csum;
2063}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002064EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2067{
Al Virod3bc23e2006-11-14 21:24:49 -08002068 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 long csstart;
2070
Patrick McHardy84fa7932006-08-29 16:44:56 -07002071 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002072 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 else
2074 csstart = skb_headlen(skb);
2075
Kris Katterjohn09a62662006-01-08 22:24:28 -08002076 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002078 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 csum = 0;
2081 if (csstart != skb->len)
2082 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2083 skb->len - csstart, 0);
2084
Patrick McHardy84fa7932006-08-29 16:44:56 -07002085 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002086 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Al Virod3bc23e2006-11-14 21:24:49 -08002088 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002091EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093/**
2094 * skb_dequeue - remove from the head of the queue
2095 * @list: list to dequeue from
2096 *
2097 * Remove the head of the list. The list lock is taken so the function
2098 * may be used safely with other locking list functions. The head item is
2099 * returned or %NULL if the list is empty.
2100 */
2101
2102struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2103{
2104 unsigned long flags;
2105 struct sk_buff *result;
2106
2107 spin_lock_irqsave(&list->lock, flags);
2108 result = __skb_dequeue(list);
2109 spin_unlock_irqrestore(&list->lock, flags);
2110 return result;
2111}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002112EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114/**
2115 * skb_dequeue_tail - remove from the tail of the queue
2116 * @list: list to dequeue from
2117 *
2118 * Remove the tail of the list. The list lock is taken so the function
2119 * may be used safely with other locking list functions. The tail item is
2120 * returned or %NULL if the list is empty.
2121 */
2122struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2123{
2124 unsigned long flags;
2125 struct sk_buff *result;
2126
2127 spin_lock_irqsave(&list->lock, flags);
2128 result = __skb_dequeue_tail(list);
2129 spin_unlock_irqrestore(&list->lock, flags);
2130 return result;
2131}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002132EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134/**
2135 * skb_queue_purge - empty a list
2136 * @list: list to empty
2137 *
2138 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2139 * the list and one reference dropped. This function takes the list
2140 * lock and is atomic with respect to other list locking functions.
2141 */
2142void skb_queue_purge(struct sk_buff_head *list)
2143{
2144 struct sk_buff *skb;
2145 while ((skb = skb_dequeue(list)) != NULL)
2146 kfree_skb(skb);
2147}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002148EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150/**
2151 * skb_queue_head - queue a buffer at the list head
2152 * @list: list to use
2153 * @newsk: buffer to queue
2154 *
2155 * Queue a buffer at the start of the list. This function takes the
2156 * list lock and can be used safely with other locking &sk_buff functions
2157 * safely.
2158 *
2159 * A buffer cannot be placed on two lists at the same time.
2160 */
2161void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2162{
2163 unsigned long flags;
2164
2165 spin_lock_irqsave(&list->lock, flags);
2166 __skb_queue_head(list, newsk);
2167 spin_unlock_irqrestore(&list->lock, flags);
2168}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002169EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171/**
2172 * skb_queue_tail - queue a buffer at the list tail
2173 * @list: list to use
2174 * @newsk: buffer to queue
2175 *
2176 * Queue a buffer at the tail of the list. This function takes the
2177 * list lock and can be used safely with other locking &sk_buff functions
2178 * safely.
2179 *
2180 * A buffer cannot be placed on two lists at the same time.
2181 */
2182void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2183{
2184 unsigned long flags;
2185
2186 spin_lock_irqsave(&list->lock, flags);
2187 __skb_queue_tail(list, newsk);
2188 spin_unlock_irqrestore(&list->lock, flags);
2189}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002190EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002191
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192/**
2193 * skb_unlink - remove a buffer from a list
2194 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002195 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 *
David S. Miller8728b832005-08-09 19:25:21 -07002197 * Remove a packet from a list. The list locks are taken and this
2198 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 *
David S. Miller8728b832005-08-09 19:25:21 -07002200 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 */
David S. Miller8728b832005-08-09 19:25:21 -07002202void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
David S. Miller8728b832005-08-09 19:25:21 -07002204 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
David S. Miller8728b832005-08-09 19:25:21 -07002206 spin_lock_irqsave(&list->lock, flags);
2207 __skb_unlink(skb, list);
2208 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002210EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212/**
2213 * skb_append - append a buffer
2214 * @old: buffer to insert after
2215 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002216 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 *
2218 * Place a packet after a given packet in a list. The list locks are taken
2219 * and this function is atomic with respect to other list locked calls.
2220 * A buffer cannot be placed on two lists at the same time.
2221 */
David S. Miller8728b832005-08-09 19:25:21 -07002222void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 unsigned long flags;
2225
David S. Miller8728b832005-08-09 19:25:21 -07002226 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002227 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002228 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002230EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232/**
2233 * skb_insert - insert a buffer
2234 * @old: buffer to insert before
2235 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002236 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 *
David S. Miller8728b832005-08-09 19:25:21 -07002238 * Place a packet before a given packet in a list. The list locks are
2239 * taken and this function is atomic with respect to other list locked
2240 * calls.
2241 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 * A buffer cannot be placed on two lists at the same time.
2243 */
David S. Miller8728b832005-08-09 19:25:21 -07002244void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
2246 unsigned long flags;
2247
David S. Miller8728b832005-08-09 19:25:21 -07002248 spin_lock_irqsave(&list->lock, flags);
2249 __skb_insert(newsk, old->prev, old, list);
2250 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002252EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254static inline void skb_split_inside_header(struct sk_buff *skb,
2255 struct sk_buff* skb1,
2256 const u32 len, const int pos)
2257{
2258 int i;
2259
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002260 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2261 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 /* And move data appendix as is. */
2263 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2264 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2265
2266 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2267 skb_shinfo(skb)->nr_frags = 0;
2268 skb1->data_len = skb->data_len;
2269 skb1->len += skb1->data_len;
2270 skb->data_len = 0;
2271 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002272 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
2275static inline void skb_split_no_header(struct sk_buff *skb,
2276 struct sk_buff* skb1,
2277 const u32 len, int pos)
2278{
2279 int i, k = 0;
2280 const int nfrags = skb_shinfo(skb)->nr_frags;
2281
2282 skb_shinfo(skb)->nr_frags = 0;
2283 skb1->len = skb1->data_len = skb->len - len;
2284 skb->len = len;
2285 skb->data_len = len - pos;
2286
2287 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002288 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290 if (pos + size > len) {
2291 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2292
2293 if (pos < len) {
2294 /* Split frag.
2295 * We have two variants in this case:
2296 * 1. Move all the frag to the second
2297 * part, if it is possible. F.e.
2298 * this approach is mandatory for TUX,
2299 * where splitting is expensive.
2300 * 2. Split is accurately. We make this.
2301 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002302 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002304 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2305 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 skb_shinfo(skb)->nr_frags++;
2307 }
2308 k++;
2309 } else
2310 skb_shinfo(skb)->nr_frags++;
2311 pos += size;
2312 }
2313 skb_shinfo(skb1)->nr_frags = k;
2314}
2315
2316/**
2317 * skb_split - Split fragmented skb to two parts at length len.
2318 * @skb: the buffer to split
2319 * @skb1: the buffer to receive the second part
2320 * @len: new length for skb
2321 */
2322void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2323{
2324 int pos = skb_headlen(skb);
2325
Amerigo Wang68534c62013-02-19 22:51:30 +00002326 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 if (len < pos) /* Split line is inside header. */
2328 skb_split_inside_header(skb, skb1, len, pos);
2329 else /* Second chunk has no header, nothing to copy. */
2330 skb_split_no_header(skb, skb1, len, pos);
2331}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002332EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002334/* Shifting from/to a cloned skb is a no-go.
2335 *
2336 * Caller cannot keep skb_shinfo related pointers past calling here!
2337 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002338static int skb_prepare_for_shift(struct sk_buff *skb)
2339{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002340 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002341}
2342
2343/**
2344 * skb_shift - Shifts paged data partially from skb to another
2345 * @tgt: buffer into which tail data gets added
2346 * @skb: buffer from which the paged data comes from
2347 * @shiftlen: shift up to this many bytes
2348 *
2349 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002350 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002351 * It's up to caller to free skb if everything was shifted.
2352 *
2353 * If @tgt runs out of frags, the whole operation is aborted.
2354 *
2355 * Skb cannot include anything else but paged data while tgt is allowed
2356 * to have non-paged data as well.
2357 *
2358 * TODO: full sized shift could be optimized but that would need
2359 * specialized skb free'er to handle frags without up-to-date nr_frags.
2360 */
2361int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2362{
2363 int from, to, merge, todo;
2364 struct skb_frag_struct *fragfrom, *fragto;
2365
2366 BUG_ON(shiftlen > skb->len);
2367 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2368
2369 todo = shiftlen;
2370 from = 0;
2371 to = skb_shinfo(tgt)->nr_frags;
2372 fragfrom = &skb_shinfo(skb)->frags[from];
2373
2374 /* Actual merge is delayed until the point when we know we can
2375 * commit all, so that we don't have to undo partial changes
2376 */
2377 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002378 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2379 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002380 merge = -1;
2381 } else {
2382 merge = to - 1;
2383
Eric Dumazet9e903e02011-10-18 21:00:24 +00002384 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002385 if (todo < 0) {
2386 if (skb_prepare_for_shift(skb) ||
2387 skb_prepare_for_shift(tgt))
2388 return 0;
2389
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002390 /* All previous frag pointers might be stale! */
2391 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002392 fragto = &skb_shinfo(tgt)->frags[merge];
2393
Eric Dumazet9e903e02011-10-18 21:00:24 +00002394 skb_frag_size_add(fragto, shiftlen);
2395 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002396 fragfrom->page_offset += shiftlen;
2397
2398 goto onlymerged;
2399 }
2400
2401 from++;
2402 }
2403
2404 /* Skip full, not-fitting skb to avoid expensive operations */
2405 if ((shiftlen == skb->len) &&
2406 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2407 return 0;
2408
2409 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2410 return 0;
2411
2412 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2413 if (to == MAX_SKB_FRAGS)
2414 return 0;
2415
2416 fragfrom = &skb_shinfo(skb)->frags[from];
2417 fragto = &skb_shinfo(tgt)->frags[to];
2418
Eric Dumazet9e903e02011-10-18 21:00:24 +00002419 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002420 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002421 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002422 from++;
2423 to++;
2424
2425 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002426 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002427 fragto->page = fragfrom->page;
2428 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002429 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002430
2431 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002432 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002433 todo = 0;
2434
2435 to++;
2436 break;
2437 }
2438 }
2439
2440 /* Ready to "commit" this state change to tgt */
2441 skb_shinfo(tgt)->nr_frags = to;
2442
2443 if (merge >= 0) {
2444 fragfrom = &skb_shinfo(skb)->frags[0];
2445 fragto = &skb_shinfo(tgt)->frags[merge];
2446
Eric Dumazet9e903e02011-10-18 21:00:24 +00002447 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002448 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002449 }
2450
2451 /* Reposition in the original skb */
2452 to = 0;
2453 while (from < skb_shinfo(skb)->nr_frags)
2454 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2455 skb_shinfo(skb)->nr_frags = to;
2456
2457 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2458
2459onlymerged:
2460 /* Most likely the tgt won't ever need its checksum anymore, skb on
2461 * the other hand might need it if it needs to be resent
2462 */
2463 tgt->ip_summed = CHECKSUM_PARTIAL;
2464 skb->ip_summed = CHECKSUM_PARTIAL;
2465
2466 /* Yak, is it really working this way? Some helper please? */
2467 skb->len -= shiftlen;
2468 skb->data_len -= shiftlen;
2469 skb->truesize -= shiftlen;
2470 tgt->len += shiftlen;
2471 tgt->data_len += shiftlen;
2472 tgt->truesize += shiftlen;
2473
2474 return shiftlen;
2475}
2476
Thomas Graf677e90e2005-06-23 20:59:51 -07002477/**
2478 * skb_prepare_seq_read - Prepare a sequential read of skb data
2479 * @skb: the buffer to read
2480 * @from: lower offset of data to be read
2481 * @to: upper offset of data to be read
2482 * @st: state variable
2483 *
2484 * Initializes the specified state variable. Must be called before
2485 * invoking skb_seq_read() for the first time.
2486 */
2487void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2488 unsigned int to, struct skb_seq_state *st)
2489{
2490 st->lower_offset = from;
2491 st->upper_offset = to;
2492 st->root_skb = st->cur_skb = skb;
2493 st->frag_idx = st->stepped_offset = 0;
2494 st->frag_data = NULL;
2495}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002496EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002497
2498/**
2499 * skb_seq_read - Sequentially read skb data
2500 * @consumed: number of bytes consumed by the caller so far
2501 * @data: destination pointer for data to be returned
2502 * @st: state variable
2503 *
2504 * Reads a block of skb data at &consumed relative to the
2505 * lower offset specified to skb_prepare_seq_read(). Assigns
2506 * the head of the data block to &data and returns the length
2507 * of the block or 0 if the end of the skb data or the upper
2508 * offset has been reached.
2509 *
2510 * The caller is not required to consume all of the data
2511 * returned, i.e. &consumed is typically set to the number
2512 * of bytes already consumed and the next call to
2513 * skb_seq_read() will return the remaining part of the block.
2514 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002515 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002516 * this limitation is the cost for zerocopy seqeuental
2517 * reads of potentially non linear data.
2518 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002519 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002520 * at the moment, state->root_skb could be replaced with
2521 * a stack for this purpose.
2522 */
2523unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2524 struct skb_seq_state *st)
2525{
2526 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2527 skb_frag_t *frag;
2528
2529 if (unlikely(abs_offset >= st->upper_offset))
2530 return 0;
2531
2532next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002533 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002534
Thomas Chenault995b3372009-05-18 21:43:27 -07002535 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002536 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002537 return block_limit - abs_offset;
2538 }
2539
2540 if (st->frag_idx == 0 && !st->frag_data)
2541 st->stepped_offset += skb_headlen(st->cur_skb);
2542
2543 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2544 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002545 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002546
2547 if (abs_offset < block_limit) {
2548 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002549 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002550
2551 *data = (u8 *) st->frag_data + frag->page_offset +
2552 (abs_offset - st->stepped_offset);
2553
2554 return block_limit - abs_offset;
2555 }
2556
2557 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002558 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002559 st->frag_data = NULL;
2560 }
2561
2562 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002563 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002564 }
2565
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002566 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002567 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002568 st->frag_data = NULL;
2569 }
2570
David S. Miller21dc3302010-08-23 00:13:46 -07002571 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002572 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002573 st->frag_idx = 0;
2574 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002575 } else if (st->cur_skb->next) {
2576 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002577 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002578 goto next_skb;
2579 }
2580
2581 return 0;
2582}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002583EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002584
2585/**
2586 * skb_abort_seq_read - Abort a sequential read of skb data
2587 * @st: state variable
2588 *
2589 * Must be called if skb_seq_read() was not called until it
2590 * returned 0.
2591 */
2592void skb_abort_seq_read(struct skb_seq_state *st)
2593{
2594 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002595 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002596}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002597EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002598
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002599#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2600
2601static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2602 struct ts_config *conf,
2603 struct ts_state *state)
2604{
2605 return skb_seq_read(offset, text, TS_SKB_CB(state));
2606}
2607
2608static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2609{
2610 skb_abort_seq_read(TS_SKB_CB(state));
2611}
2612
2613/**
2614 * skb_find_text - Find a text pattern in skb data
2615 * @skb: the buffer to look in
2616 * @from: search offset
2617 * @to: search limit
2618 * @config: textsearch configuration
2619 * @state: uninitialized textsearch state variable
2620 *
2621 * Finds a pattern in the skb data according to the specified
2622 * textsearch configuration. Use textsearch_next() to retrieve
2623 * subsequent occurrences of the pattern. Returns the offset
2624 * to the first occurrence or UINT_MAX if no match was found.
2625 */
2626unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2627 unsigned int to, struct ts_config *config,
2628 struct ts_state *state)
2629{
Phil Oesterf72b9482006-06-26 00:00:57 -07002630 unsigned int ret;
2631
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002632 config->get_next_block = skb_ts_get_next_block;
2633 config->finish = skb_ts_finish;
2634
2635 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2636
Phil Oesterf72b9482006-06-26 00:00:57 -07002637 ret = textsearch_find(config, state);
2638 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002639}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002640EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002641
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002642/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002643 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002644 * @sk: sock structure
2645 * @skb: skb structure to be appened with user data.
2646 * @getfrag: call back function to be used for getting the user data
2647 * @from: pointer to user message iov
2648 * @length: length of the iov message
2649 *
2650 * Description: This procedure append the user data in the fragment part
2651 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2652 */
2653int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002654 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002655 int len, int odd, struct sk_buff *skb),
2656 void *from, int length)
2657{
Eric Dumazetb2111722012-12-28 06:06:37 +00002658 int frg_cnt = skb_shinfo(skb)->nr_frags;
2659 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002660 int offset = 0;
2661 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002662 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002663
2664 do {
2665 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002666 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002667 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002668
Eric Dumazetb2111722012-12-28 06:06:37 +00002669 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002670 return -ENOMEM;
2671
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002672 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002673 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002674
Eric Dumazetb2111722012-12-28 06:06:37 +00002675 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2676 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002677 if (ret < 0)
2678 return -EFAULT;
2679
2680 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002681 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2682 copy);
2683 frg_cnt++;
2684 pfrag->offset += copy;
2685 get_page(pfrag->page);
2686
2687 skb->truesize += copy;
2688 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002689 skb->len += copy;
2690 skb->data_len += copy;
2691 offset += copy;
2692 length -= copy;
2693
2694 } while (length > 0);
2695
2696 return 0;
2697}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002698EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002699
Herbert Xucbb042f2006-03-20 22:43:56 -08002700/**
2701 * skb_pull_rcsum - pull skb and update receive checksum
2702 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002703 * @len: length of data pulled
2704 *
2705 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002706 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002707 * receive path processing instead of skb_pull unless you know
2708 * that the checksum difference is zero (e.g., a valid IP header)
2709 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002710 */
2711unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2712{
2713 BUG_ON(len > skb->len);
2714 skb->len -= len;
2715 BUG_ON(skb->len < skb->data_len);
2716 skb_postpull_rcsum(skb, skb->data, len);
2717 return skb->data += len;
2718}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002719EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2720
Herbert Xuf4c50d92006-06-22 03:02:40 -07002721/**
2722 * skb_segment - Perform protocol segmentation on skb.
2723 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002724 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002725 *
2726 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002727 * a pointer to the first in a list of new skbs for the segments.
2728 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002729 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002730struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002731{
2732 struct sk_buff *segs = NULL;
2733 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002734 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002735 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002736 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002737 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002738 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002739 unsigned int headroom;
2740 unsigned int len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002741 __be16 proto;
2742 bool csum;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002743 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002744 int nfrags = skb_shinfo(skb)->nr_frags;
2745 int err = -ENOMEM;
2746 int i = 0;
2747 int pos;
2748
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002749 proto = skb_network_protocol(skb);
2750 if (unlikely(!proto))
2751 return ERR_PTR(-EINVAL);
2752
2753 csum = !!can_checksum_protocol(features, proto);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002754 __skb_push(skb, doffset);
2755 headroom = skb_headroom(skb);
2756 pos = skb_headlen(skb);
2757
2758 do {
2759 struct sk_buff *nskb;
2760 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002761 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002762 int size;
2763
2764 len = skb->len - offset;
2765 if (len > mss)
2766 len = mss;
2767
2768 hsize = skb_headlen(skb) - offset;
2769 if (hsize < 0)
2770 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002771 if (hsize > len || !sg)
2772 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002773
Herbert Xu89319d382008-12-15 23:26:06 -08002774 if (!hsize && i >= nfrags) {
2775 BUG_ON(fskb->len != len);
2776
2777 pos += len;
2778 nskb = skb_clone(fskb, GFP_ATOMIC);
2779 fskb = fskb->next;
2780
2781 if (unlikely(!nskb))
2782 goto err;
2783
Alexander Duyckec47ea82012-05-04 14:26:56 +00002784 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002785 if (skb_cow_head(nskb, doffset + headroom)) {
2786 kfree_skb(nskb);
2787 goto err;
2788 }
2789
Alexander Duyckec47ea82012-05-04 14:26:56 +00002790 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002791 skb_release_head_state(nskb);
2792 __skb_push(nskb, doffset);
2793 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002794 nskb = __alloc_skb(hsize + doffset + headroom,
2795 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2796 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002797
2798 if (unlikely(!nskb))
2799 goto err;
2800
2801 skb_reserve(nskb, headroom);
2802 __skb_put(nskb, doffset);
2803 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002804
2805 if (segs)
2806 tail->next = nskb;
2807 else
2808 segs = nskb;
2809 tail = nskb;
2810
Herbert Xu6f85a122008-08-15 14:55:02 -07002811 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002812 nskb->mac_len = skb->mac_len;
2813
Eric Dumazet3d3be432010-09-01 00:50:51 +00002814 /* nskb and skb might have different headroom */
2815 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2816 nskb->csum_start += skb_headroom(nskb) - headroom;
2817
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002818 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002819 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002820 nskb->transport_header = (nskb->network_header +
2821 skb_network_header_len(skb));
Pravin B Shelar68c33162013-02-14 14:02:41 +00002822
2823 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2824 nskb->data - tnl_hlen,
2825 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002826
Herbert Xu2f181852009-03-28 23:39:18 -07002827 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002828 continue;
2829
Herbert Xuf4c50d92006-06-22 03:02:40 -07002830 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002831 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002832 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2833 skb_put(nskb, len),
2834 len, 0);
2835 continue;
2836 }
2837
2838 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002839
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002840 skb_copy_from_linear_data_offset(skb, offset,
2841 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002842
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002843 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002844
Herbert Xu89319d382008-12-15 23:26:06 -08002845 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002846 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002847 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002848 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002849
2850 if (pos < offset) {
2851 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002852 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002853 }
2854
Herbert Xu89319d382008-12-15 23:26:06 -08002855 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002856
2857 if (pos + size <= offset + len) {
2858 i++;
2859 pos += size;
2860 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002861 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002862 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002863 }
2864
2865 frag++;
2866 }
2867
Herbert Xu89319d382008-12-15 23:26:06 -08002868 if (pos < offset + len) {
2869 struct sk_buff *fskb2 = fskb;
2870
2871 BUG_ON(pos + fskb->len != offset + len);
2872
2873 pos += fskb->len;
2874 fskb = fskb->next;
2875
2876 if (fskb2->next) {
2877 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2878 if (!fskb2)
2879 goto err;
2880 } else
2881 skb_get(fskb2);
2882
David S. Millerfbb398a2009-06-09 00:18:59 -07002883 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002884 skb_shinfo(nskb)->frag_list = fskb2;
2885 }
2886
2887skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002888 nskb->data_len = len - hsize;
2889 nskb->len += nskb->data_len;
2890 nskb->truesize += nskb->data_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002891
2892 if (!csum) {
2893 nskb->csum = skb_checksum(nskb, doffset,
2894 nskb->len - doffset, 0);
2895 nskb->ip_summed = CHECKSUM_NONE;
2896 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002897 } while ((offset += len) < skb->len);
2898
2899 return segs;
2900
2901err:
2902 while ((skb = segs)) {
2903 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002904 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002905 }
2906 return ERR_PTR(err);
2907}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002908EXPORT_SYMBOL_GPL(skb_segment);
2909
Herbert Xu71d93b32008-12-15 23:42:33 -08002910int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2911{
2912 struct sk_buff *p = *head;
2913 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002914 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2915 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002916 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002917 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002918 unsigned int offset = skb_gro_offset(skb);
2919 unsigned int headlen = skb_headlen(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002920 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002921
Herbert Xu86911732009-01-29 14:19:50 +00002922 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002923 return -E2BIG;
2924
Herbert Xu9aaa1562009-05-26 18:50:33 +00002925 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002926 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002927 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002928 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002929 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002930 int i = skbinfo->nr_frags;
2931 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002932
Herbert Xu66e92fc2009-05-26 18:50:32 +00002933 offset -= headlen;
2934
2935 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002936 return -E2BIG;
2937
Herbert Xu9aaa1562009-05-26 18:50:33 +00002938 pinfo->nr_frags = nr_frags;
2939 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002940
Herbert Xu9aaa1562009-05-26 18:50:33 +00002941 frag = pinfo->frags + nr_frags;
2942 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002943 do {
2944 *--frag = *--frag2;
2945 } while (--i);
2946
2947 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002948 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002949
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002950 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002951 delta_truesize = skb->truesize -
2952 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002953
Herbert Xuf5572062009-01-14 20:40:03 -08002954 skb->truesize -= skb->data_len;
2955 skb->len -= skb->data_len;
2956 skb->data_len = 0;
2957
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002958 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002959 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002960 } else if (skb->head_frag) {
2961 int nr_frags = pinfo->nr_frags;
2962 skb_frag_t *frag = pinfo->frags + nr_frags;
2963 struct page *page = virt_to_head_page(skb->head);
2964 unsigned int first_size = headlen - offset;
2965 unsigned int first_offset;
2966
2967 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
2968 return -E2BIG;
2969
2970 first_offset = skb->data -
2971 (unsigned char *)page_address(page) +
2972 offset;
2973
2974 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
2975
2976 frag->page.p = page;
2977 frag->page_offset = first_offset;
2978 skb_frag_size_set(frag, first_size);
2979
2980 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
2981 /* We dont need to clear skbinfo->nr_frags here */
2982
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002983 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00002984 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
2985 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002986 } else if (skb_gro_len(p) != pinfo->gso_size)
2987 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002988
2989 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002990 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002991 if (unlikely(!nskb))
2992 return -ENOMEM;
2993
2994 __copy_skb_header(nskb, p);
2995 nskb->mac_len = p->mac_len;
2996
2997 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002998 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002999
Herbert Xu86911732009-01-29 14:19:50 +00003000 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08003001 skb_set_network_header(nskb, skb_network_offset(p));
3002 skb_set_transport_header(nskb, skb_transport_offset(p));
3003
Herbert Xu86911732009-01-29 14:19:50 +00003004 __skb_pull(p, skb_gro_offset(p));
3005 memcpy(skb_mac_header(nskb), skb_mac_header(p),
3006 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08003007
Herbert Xu71d93b32008-12-15 23:42:33 -08003008 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00003009 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003010 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003011 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003012 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003013
3014 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003015 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003016 nskb->len += p->len;
3017
3018 *head = nskb;
3019 nskb->next = p->next;
3020 p->next = NULL;
3021
3022 p = nskb;
3023
3024merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003025 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003026 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003027 unsigned int eat = offset - headlen;
3028
3029 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003030 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003031 skb->data_len -= eat;
3032 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003033 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003034 }
3035
Herbert Xu67147ba2009-05-26 18:50:22 +00003036 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003037
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003038 NAPI_GRO_CB(p)->last->next = skb;
3039 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003040 skb_header_release(skb);
3041
Herbert Xu5d38a072009-01-04 16:13:40 -08003042done:
3043 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003044 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003045 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003046 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08003047
3048 NAPI_GRO_CB(skb)->same_flow = 1;
3049 return 0;
3050}
3051EXPORT_SYMBOL_GPL(skb_gro_receive);
3052
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053void __init skb_init(void)
3054{
3055 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3056 sizeof(struct sk_buff),
3057 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003058 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003059 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003060 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3061 (2*sizeof(struct sk_buff)) +
3062 sizeof(atomic_t),
3063 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003064 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003065 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
David Howells716ea3a2007-04-02 20:19:53 -07003068/**
3069 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3070 * @skb: Socket buffer containing the buffers to be mapped
3071 * @sg: The scatter-gather list to map into
3072 * @offset: The offset into the buffer's contents to start mapping
3073 * @len: Length of buffer space to be mapped
3074 *
3075 * Fill the specified scatter-gather list with mappings/pointers into a
3076 * region of the buffer space attached to a socket buffer.
3077 */
David S. Miller51c739d2007-10-30 21:29:29 -07003078static int
3079__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003080{
David S. Miller1a028e52007-04-27 15:21:23 -07003081 int start = skb_headlen(skb);
3082 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003083 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003084 int elt = 0;
3085
3086 if (copy > 0) {
3087 if (copy > len)
3088 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003089 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003090 elt++;
3091 if ((len -= copy) == 0)
3092 return elt;
3093 offset += copy;
3094 }
3095
3096 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003097 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003098
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003099 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003100
Eric Dumazet9e903e02011-10-18 21:00:24 +00003101 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003102 if ((copy = end - offset) > 0) {
3103 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3104
3105 if (copy > len)
3106 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003107 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003108 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003109 elt++;
3110 if (!(len -= copy))
3111 return elt;
3112 offset += copy;
3113 }
David S. Miller1a028e52007-04-27 15:21:23 -07003114 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003115 }
3116
David S. Millerfbb398a2009-06-09 00:18:59 -07003117 skb_walk_frags(skb, frag_iter) {
3118 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003119
David S. Millerfbb398a2009-06-09 00:18:59 -07003120 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003121
David S. Millerfbb398a2009-06-09 00:18:59 -07003122 end = start + frag_iter->len;
3123 if ((copy = end - offset) > 0) {
3124 if (copy > len)
3125 copy = len;
3126 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3127 copy);
3128 if ((len -= copy) == 0)
3129 return elt;
3130 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003131 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003132 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003133 }
3134 BUG_ON(len);
3135 return elt;
3136}
3137
David S. Miller51c739d2007-10-30 21:29:29 -07003138int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3139{
3140 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3141
Jens Axboec46f2332007-10-31 12:06:37 +01003142 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003143
3144 return nsg;
3145}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003146EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003147
David Howells716ea3a2007-04-02 20:19:53 -07003148/**
3149 * skb_cow_data - Check that a socket buffer's data buffers are writable
3150 * @skb: The socket buffer to check.
3151 * @tailbits: Amount of trailing space to be added
3152 * @trailer: Returned pointer to the skb where the @tailbits space begins
3153 *
3154 * Make sure that the data buffers attached to a socket buffer are
3155 * writable. If they are not, private copies are made of the data buffers
3156 * and the socket buffer is set to use these instead.
3157 *
3158 * If @tailbits is given, make sure that there is space to write @tailbits
3159 * bytes of data beyond current end of socket buffer. @trailer will be
3160 * set to point to the skb in which this space begins.
3161 *
3162 * The number of scatterlist elements required to completely map the
3163 * COW'd and extended socket buffer will be returned.
3164 */
3165int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3166{
3167 int copyflag;
3168 int elt;
3169 struct sk_buff *skb1, **skb_p;
3170
3171 /* If skb is cloned or its head is paged, reallocate
3172 * head pulling out all the pages (pages are considered not writable
3173 * at the moment even if they are anonymous).
3174 */
3175 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3176 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3177 return -ENOMEM;
3178
3179 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003180 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003181 /* A little of trouble, not enough of space for trailer.
3182 * This should not happen, when stack is tuned to generate
3183 * good frames. OK, on miss we reallocate and reserve even more
3184 * space, 128 bytes is fair. */
3185
3186 if (skb_tailroom(skb) < tailbits &&
3187 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3188 return -ENOMEM;
3189
3190 /* Voila! */
3191 *trailer = skb;
3192 return 1;
3193 }
3194
3195 /* Misery. We are in troubles, going to mincer fragments... */
3196
3197 elt = 1;
3198 skb_p = &skb_shinfo(skb)->frag_list;
3199 copyflag = 0;
3200
3201 while ((skb1 = *skb_p) != NULL) {
3202 int ntail = 0;
3203
3204 /* The fragment is partially pulled by someone,
3205 * this can happen on input. Copy it and everything
3206 * after it. */
3207
3208 if (skb_shared(skb1))
3209 copyflag = 1;
3210
3211 /* If the skb is the last, worry about trailer. */
3212
3213 if (skb1->next == NULL && tailbits) {
3214 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003215 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003216 skb_tailroom(skb1) < tailbits)
3217 ntail = tailbits + 128;
3218 }
3219
3220 if (copyflag ||
3221 skb_cloned(skb1) ||
3222 ntail ||
3223 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003224 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003225 struct sk_buff *skb2;
3226
3227 /* Fuck, we are miserable poor guys... */
3228 if (ntail == 0)
3229 skb2 = skb_copy(skb1, GFP_ATOMIC);
3230 else
3231 skb2 = skb_copy_expand(skb1,
3232 skb_headroom(skb1),
3233 ntail,
3234 GFP_ATOMIC);
3235 if (unlikely(skb2 == NULL))
3236 return -ENOMEM;
3237
3238 if (skb1->sk)
3239 skb_set_owner_w(skb2, skb1->sk);
3240
3241 /* Looking around. Are we still alive?
3242 * OK, link new skb, drop old one */
3243
3244 skb2->next = skb1->next;
3245 *skb_p = skb2;
3246 kfree_skb(skb1);
3247 skb1 = skb2;
3248 }
3249 elt++;
3250 *trailer = skb1;
3251 skb_p = &skb1->next;
3252 }
3253
3254 return elt;
3255}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003256EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003257
Eric Dumazetb1faf562010-05-31 23:44:05 -07003258static void sock_rmem_free(struct sk_buff *skb)
3259{
3260 struct sock *sk = skb->sk;
3261
3262 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3263}
3264
3265/*
3266 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3267 */
3268int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3269{
Eric Dumazet110c4332012-04-06 10:49:10 +02003270 int len = skb->len;
3271
Eric Dumazetb1faf562010-05-31 23:44:05 -07003272 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003273 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003274 return -ENOMEM;
3275
3276 skb_orphan(skb);
3277 skb->sk = sk;
3278 skb->destructor = sock_rmem_free;
3279 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3280
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003281 /* before exiting rcu section, make sure dst is refcounted */
3282 skb_dst_force(skb);
3283
Eric Dumazetb1faf562010-05-31 23:44:05 -07003284 skb_queue_tail(&sk->sk_error_queue, skb);
3285 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003286 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003287 return 0;
3288}
3289EXPORT_SYMBOL(sock_queue_err_skb);
3290
Patrick Ohlyac45f602009-02-12 05:03:37 +00003291void skb_tstamp_tx(struct sk_buff *orig_skb,
3292 struct skb_shared_hwtstamps *hwtstamps)
3293{
3294 struct sock *sk = orig_skb->sk;
3295 struct sock_exterr_skb *serr;
3296 struct sk_buff *skb;
3297 int err;
3298
3299 if (!sk)
3300 return;
3301
3302 skb = skb_clone(orig_skb, GFP_ATOMIC);
3303 if (!skb)
3304 return;
3305
3306 if (hwtstamps) {
3307 *skb_hwtstamps(skb) =
3308 *hwtstamps;
3309 } else {
3310 /*
3311 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003312 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003313 * store software time stamp
3314 */
3315 skb->tstamp = ktime_get_real();
3316 }
3317
3318 serr = SKB_EXT_ERR(skb);
3319 memset(serr, 0, sizeof(*serr));
3320 serr->ee.ee_errno = ENOMSG;
3321 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003322
Patrick Ohlyac45f602009-02-12 05:03:37 +00003323 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003324
Patrick Ohlyac45f602009-02-12 05:03:37 +00003325 if (err)
3326 kfree_skb(skb);
3327}
3328EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3329
Johannes Berg6e3e9392011-11-09 10:15:42 +01003330void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3331{
3332 struct sock *sk = skb->sk;
3333 struct sock_exterr_skb *serr;
3334 int err;
3335
3336 skb->wifi_acked_valid = 1;
3337 skb->wifi_acked = acked;
3338
3339 serr = SKB_EXT_ERR(skb);
3340 memset(serr, 0, sizeof(*serr));
3341 serr->ee.ee_errno = ENOMSG;
3342 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3343
3344 err = sock_queue_err_skb(sk, skb);
3345 if (err)
3346 kfree_skb(skb);
3347}
3348EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3349
Patrick Ohlyac45f602009-02-12 05:03:37 +00003350
Rusty Russellf35d9d82008-02-04 23:49:54 -05003351/**
3352 * skb_partial_csum_set - set up and verify partial csum values for packet
3353 * @skb: the skb to set
3354 * @start: the number of bytes after skb->data to start checksumming.
3355 * @off: the offset from start to place the checksum.
3356 *
3357 * For untrusted partially-checksummed packets, we need to make sure the values
3358 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3359 *
3360 * This function checks and sets those values and skb->ip_summed: if this
3361 * returns false you should drop the packet.
3362 */
3363bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3364{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003365 if (unlikely(start > skb_headlen(skb)) ||
3366 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003367 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3368 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003369 return false;
3370 }
3371 skb->ip_summed = CHECKSUM_PARTIAL;
3372 skb->csum_start = skb_headroom(skb) + start;
3373 skb->csum_offset = off;
Jason Wange5d5dec2013-03-26 23:11:20 +00003374 skb_set_transport_header(skb, start);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003375 return true;
3376}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003377EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003378
Ben Hutchings4497b072008-06-19 16:22:28 -07003379void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3380{
Joe Perchese87cc472012-05-13 21:56:26 +00003381 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3382 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003383}
Ben Hutchings4497b072008-06-19 16:22:28 -07003384EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003385
3386void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3387{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003388 if (head_stolen) {
3389 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003390 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003391 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003392 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003393 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003394}
3395EXPORT_SYMBOL(kfree_skb_partial);
3396
3397/**
3398 * skb_try_coalesce - try to merge skb to prior one
3399 * @to: prior buffer
3400 * @from: buffer to add
3401 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003402 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003403 */
3404bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3405 bool *fragstolen, int *delta_truesize)
3406{
3407 int i, delta, len = from->len;
3408
3409 *fragstolen = false;
3410
3411 if (skb_cloned(to))
3412 return false;
3413
3414 if (len <= skb_tailroom(to)) {
3415 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3416 *delta_truesize = 0;
3417 return true;
3418 }
3419
3420 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3421 return false;
3422
3423 if (skb_headlen(from) != 0) {
3424 struct page *page;
3425 unsigned int offset;
3426
3427 if (skb_shinfo(to)->nr_frags +
3428 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3429 return false;
3430
3431 if (skb_head_is_locked(from))
3432 return false;
3433
3434 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3435
3436 page = virt_to_head_page(from->head);
3437 offset = from->data - (unsigned char *)page_address(page);
3438
3439 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3440 page, offset, skb_headlen(from));
3441 *fragstolen = true;
3442 } else {
3443 if (skb_shinfo(to)->nr_frags +
3444 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3445 return false;
3446
Weiping Panf4b549a2012-09-28 20:15:30 +00003447 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003448 }
3449
3450 WARN_ON_ONCE(delta < len);
3451
3452 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3453 skb_shinfo(from)->frags,
3454 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3455 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3456
3457 if (!skb_cloned(from))
3458 skb_shinfo(from)->nr_frags = 0;
3459
Li RongQing8ea853f2012-09-18 16:53:21 +00003460 /* if the skb is not cloned this does nothing
3461 * since we set nr_frags to 0.
3462 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003463 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3464 skb_frag_ref(from, i);
3465
3466 to->truesize += delta;
3467 to->len += len;
3468 to->data_len += len;
3469
3470 *delta_truesize = delta;
3471 return true;
3472}
3473EXPORT_SYMBOL(skb_try_coalesce);