blob: 33245ef54c3bd6982abed459cc6c0ef7935cb21f [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;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000676 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000677 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000678 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000679 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000680 new->no_fcs = old->no_fcs;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000681 new->encapsulation = old->encapsulation;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700682#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700683 new->sp = secpath_get(old->sp);
684#endif
685 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000686 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700687 new->local_df = old->local_df;
688 new->pkt_type = old->pkt_type;
689 new->ip_summed = old->ip_summed;
690 skb_copy_queue_mapping(new, old);
691 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000692#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700693 new->ipvs_property = old->ipvs_property;
694#endif
Mel Gormanc93bdd02012-07-31 16:44:19 -0700695 new->pfmemalloc = old->pfmemalloc;
Herbert Xudec18812007-10-14 00:37:30 -0700696 new->protocol = old->protocol;
697 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800698 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700699 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000700#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700701 new->nf_trace = old->nf_trace;
702#endif
703#ifdef CONFIG_NET_SCHED
704 new->tc_index = old->tc_index;
705#ifdef CONFIG_NET_CLS_ACT
706 new->tc_verd = old->tc_verd;
707#endif
708#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700709 new->vlan_tci = old->vlan_tci;
710
Herbert Xudec18812007-10-14 00:37:30 -0700711 skb_copy_secmark(new, old);
712}
713
Herbert Xu82c49a32009-05-22 22:11:37 +0000714/*
715 * You should not add any new code to this function. Add it to
716 * __copy_skb_header above instead.
717 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700718static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#define C(x) n->x = skb->x
721
722 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700724 __copy_skb_header(n, skb);
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 C(len);
727 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700728 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700729 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800730 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 C(tail);
734 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800735 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000736 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800737 C(data);
738 C(truesize);
739 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 atomic_inc(&(skb_shinfo(skb)->dataref));
742 skb->cloned = 1;
743
744 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700745#undef C
746}
747
748/**
749 * skb_morph - morph one skb into another
750 * @dst: the skb to receive the contents
751 * @src: the skb to supply the contents
752 *
753 * This is identical to skb_clone except that the target skb is
754 * supplied by the user.
755 *
756 * The target skb is returned upon exit.
757 */
758struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
759{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800760 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700761 return __skb_clone(dst, src);
762}
763EXPORT_SYMBOL_GPL(skb_morph);
764
Ben Hutchings2c530402012-07-10 10:55:09 +0000765/**
766 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000767 * @skb: the skb to modify
768 * @gfp_mask: allocation priority
769 *
770 * This must be called on SKBTX_DEV_ZEROCOPY skb.
771 * It will copy all frags into kernel and drop the reference
772 * to userspace pages.
773 *
774 * If this function is called from an interrupt gfp_mask() must be
775 * %GFP_ATOMIC.
776 *
777 * Returns 0 on success or a negative error code on failure
778 * to allocate kernel memory to copy to.
779 */
780int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000781{
782 int i;
783 int num_frags = skb_shinfo(skb)->nr_frags;
784 struct page *page, *head = NULL;
785 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
786
787 for (i = 0; i < num_frags; i++) {
788 u8 *vaddr;
789 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
790
Krishna Kumar02756ed2012-07-17 02:05:29 +0000791 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000792 if (!page) {
793 while (head) {
794 struct page *next = (struct page *)head->private;
795 put_page(head);
796 head = next;
797 }
798 return -ENOMEM;
799 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200800 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000801 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000802 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200803 kunmap_atomic(vaddr);
Shirley Maa6686f22011-07-06 12:22:12 +0000804 page->private = (unsigned long)head;
805 head = page;
806 }
807
808 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000809 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000810 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000811
Michael S. Tsirkine19d6762012-11-01 09:16:22 +0000812 uarg->callback(uarg, false);
Shirley Maa6686f22011-07-06 12:22:12 +0000813
814 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000815 for (i = num_frags - 1; i >= 0; i--) {
816 __skb_fill_page_desc(skb, i, head, 0,
817 skb_shinfo(skb)->frags[i].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000818 head = (struct page *)head->private;
819 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000820
821 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000822 return 0;
823}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000824EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000825
Herbert Xue0053ec2007-10-14 00:37:52 -0700826/**
827 * skb_clone - duplicate an sk_buff
828 * @skb: buffer to clone
829 * @gfp_mask: allocation priority
830 *
831 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
832 * copies share the same packet data but not structure. The new
833 * buffer has a reference count of 1. If the allocation fails the
834 * function returns %NULL otherwise the new buffer is returned.
835 *
836 * If this function is called from an interrupt gfp_mask() must be
837 * %GFP_ATOMIC.
838 */
839
840struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
841{
842 struct sk_buff *n;
843
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000844 if (skb_orphan_frags(skb, gfp_mask))
845 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000846
Herbert Xue0053ec2007-10-14 00:37:52 -0700847 n = skb + 1;
848 if (skb->fclone == SKB_FCLONE_ORIG &&
849 n->fclone == SKB_FCLONE_UNAVAILABLE) {
850 atomic_t *fclone_ref = (atomic_t *) (n + 1);
851 n->fclone = SKB_FCLONE_CLONE;
852 atomic_inc(fclone_ref);
853 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -0700854 if (skb_pfmemalloc(skb))
855 gfp_mask |= __GFP_MEMALLOC;
856
Herbert Xue0053ec2007-10-14 00:37:52 -0700857 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
858 if (!n)
859 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200860
861 kmemcheck_annotate_bitfield(n, flags1);
862 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700863 n->fclone = SKB_FCLONE_UNAVAILABLE;
864 }
865
866 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800868EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
871{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700872#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /*
874 * Shift between the two data areas in bytes
875 */
876 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700877#endif
Herbert Xudec18812007-10-14 00:37:30 -0700878
879 __copy_skb_header(new, old);
880
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700881#ifndef NET_SKBUFF_DATA_USES_OFFSET
882 /* {transport,network,mac}_header are relative to skb->head */
883 new->transport_header += offset;
884 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000885 if (skb_mac_header_was_set(new))
886 new->mac_header += offset;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +0000887 new->inner_transport_header += offset;
888 new->inner_network_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700889#endif
Herbert Xu79671682006-06-22 02:40:14 -0700890 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
891 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
892 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Mel Gormanc93bdd02012-07-31 16:44:19 -0700895static inline int skb_alloc_rx_flag(const struct sk_buff *skb)
896{
897 if (skb_pfmemalloc(skb))
898 return SKB_ALLOC_RX;
899 return 0;
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/**
903 * skb_copy - create private copy of an sk_buff
904 * @skb: buffer to copy
905 * @gfp_mask: allocation priority
906 *
907 * Make a copy of both an &sk_buff and its data. This is used when the
908 * caller wishes to modify the data and needs a private copy of the
909 * data to alter. Returns %NULL on failure or the pointer to the buffer
910 * on success. The returned buffer has a reference count of 1.
911 *
912 * As by-product this function converts non-linear &sk_buff to linear
913 * one, so that &sk_buff becomes completely private and caller is allowed
914 * to modify all the data of returned buffer. This means that this
915 * function is not recommended for use in circumstances when only
916 * header is going to be modified. Use pskb_copy() instead.
917 */
918
Al Virodd0fc662005-10-07 07:46:04 +0100919struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000921 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000922 unsigned int size = skb_end_offset(skb) + skb->data_len;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700923 struct sk_buff *n = __alloc_skb(size, gfp_mask,
924 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (!n)
927 return NULL;
928
929 /* Set the data pointer */
930 skb_reserve(n, headerlen);
931 /* Set the tail pointer and length */
932 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
935 BUG();
936
937 copy_skb_header(n, skb);
938 return n;
939}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800940EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000943 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000945 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 * @gfp_mask: allocation priority
947 *
948 * Make a copy of both an &sk_buff and part of its data, located
949 * in header. Fragmented data remain shared. This is used when
950 * the caller wishes to modify only header of &sk_buff and needs
951 * private copy of the header to alter. Returns %NULL on failure
952 * or the pointer to the buffer on success.
953 * The returned buffer has a reference count of 1.
954 */
955
Eric Dumazet117632e2011-12-03 21:39:53 +0000956struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Eric Dumazet117632e2011-12-03 21:39:53 +0000958 unsigned int size = skb_headlen(skb) + headroom;
Mel Gormanc93bdd02012-07-31 16:44:19 -0700959 struct sk_buff *n = __alloc_skb(size, gfp_mask,
960 skb_alloc_rx_flag(skb), NUMA_NO_NODE);
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (!n)
963 goto out;
964
965 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000966 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 /* Set the tail pointer and length */
968 skb_put(n, skb_headlen(skb));
969 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300970 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Herbert Xu25f484a2006-11-07 14:57:15 -0800972 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 n->data_len = skb->data_len;
974 n->len = skb->len;
975
976 if (skb_shinfo(skb)->nr_frags) {
977 int i;
978
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000979 if (skb_orphan_frags(skb, gfp_mask)) {
980 kfree_skb(n);
981 n = NULL;
982 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +0000983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
985 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +0000986 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988 skb_shinfo(n)->nr_frags = i;
989 }
990
David S. Miller21dc3302010-08-23 00:13:46 -0700991 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
993 skb_clone_fraglist(n);
994 }
995
996 copy_skb_header(n, skb);
997out:
998 return n;
999}
Eric Dumazet117632e2011-12-03 21:39:53 +00001000EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002/**
1003 * pskb_expand_head - reallocate header of &sk_buff
1004 * @skb: buffer to reallocate
1005 * @nhead: room to add at head
1006 * @ntail: room to add at tail
1007 * @gfp_mask: allocation priority
1008 *
1009 * Expands (or creates identical copy, if &nhead and &ntail are zero)
1010 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
1011 * reference count of 1. Returns zero in the case of success or error,
1012 * if expansion failed. In the last case, &sk_buff is not changed.
1013 *
1014 * All the pointers pointing into skb header may change and must be
1015 * reloaded after call to this function.
1016 */
1017
Victor Fusco86a76ca2005-07-08 14:57:47 -07001018int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +01001019 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 int i;
1022 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +00001023 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 long off;
1025
Herbert Xu4edd87a2008-10-01 07:09:38 -07001026 BUG_ON(nhead < 0);
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (skb_shared(skb))
1029 BUG();
1030
1031 size = SKB_DATA_ALIGN(size);
1032
Mel Gormanc93bdd02012-07-31 16:44:19 -07001033 if (skb_pfmemalloc(skb))
1034 gfp_mask |= __GFP_MEMALLOC;
1035 data = kmalloc_reserve(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
1036 gfp_mask, NUMA_NO_NODE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (!data)
1038 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +00001039 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +00001042 * optimized for the cases when header is void.
1043 */
1044 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
1045
1046 memcpy((struct skb_shared_info *)(data + size),
1047 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +00001048 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Alexander Duyck3e245912012-05-04 14:26:51 +00001050 /*
1051 * if shinfo is shared we must drop the old head gracefully, but if it
1052 * is not we can just drop the old head and let the existing refcount
1053 * be since all we did is relocate the values
1054 */
1055 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001056 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001057 if (skb_orphan_frags(skb, gfp_mask))
1058 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001059 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001060 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Eric Dumazet1fd63042010-09-02 23:09:32 +00001062 if (skb_has_frag_list(skb))
1063 skb_clone_fraglist(skb);
1064
1065 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001066 } else {
1067 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 off = (data + nhead) - skb->head;
1070
1071 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001072 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001074#ifdef NET_SKBUFF_DATA_USES_OFFSET
1075 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001076 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001077#else
1078 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001079#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001080 /* {transport,network,mac}_header and tail are relative to skb->head */
1081 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001082 skb->transport_header += off;
1083 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001084 if (skb_mac_header_was_set(skb))
1085 skb->mac_header += off;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +00001086 skb->inner_transport_header += off;
1087 skb->inner_network_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +00001088 /* Only adjust this if it actually is csum_start rather than csum */
1089 if (skb->ip_summed == CHECKSUM_PARTIAL)
1090 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001092 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 skb->nohdr = 0;
1094 atomic_set(&skb_shinfo(skb)->dataref, 1);
1095 return 0;
1096
Shirley Maa6686f22011-07-06 12:22:12 +00001097nofrags:
1098 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099nodata:
1100 return -ENOMEM;
1101}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001102EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104/* Make private copy of skb with writable head and some headroom */
1105
1106struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1107{
1108 struct sk_buff *skb2;
1109 int delta = headroom - skb_headroom(skb);
1110
1111 if (delta <= 0)
1112 skb2 = pskb_copy(skb, GFP_ATOMIC);
1113 else {
1114 skb2 = skb_clone(skb, GFP_ATOMIC);
1115 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1116 GFP_ATOMIC)) {
1117 kfree_skb(skb2);
1118 skb2 = NULL;
1119 }
1120 }
1121 return skb2;
1122}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001123EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125/**
1126 * skb_copy_expand - copy and expand sk_buff
1127 * @skb: buffer to copy
1128 * @newheadroom: new free bytes at head
1129 * @newtailroom: new free bytes at tail
1130 * @gfp_mask: allocation priority
1131 *
1132 * Make a copy of both an &sk_buff and its data and while doing so
1133 * allocate additional space.
1134 *
1135 * This is used when the caller wishes to modify the data and needs a
1136 * private copy of the data to alter as well as more space for new fields.
1137 * Returns %NULL on failure or the pointer to the buffer
1138 * on success. The returned buffer has a reference count of 1.
1139 *
1140 * You must pass %GFP_ATOMIC as the allocation priority if this function
1141 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 */
1143struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001144 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001145 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 /*
1148 * Allocate the copy buffer
1149 */
Mel Gormanc93bdd02012-07-31 16:44:19 -07001150 struct sk_buff *n = __alloc_skb(newheadroom + skb->len + newtailroom,
1151 gfp_mask, skb_alloc_rx_flag(skb),
1152 NUMA_NO_NODE);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001153 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001155 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 if (!n)
1158 return NULL;
1159
1160 skb_reserve(n, newheadroom);
1161
1162 /* Set the tail pointer and length */
1163 skb_put(n, skb->len);
1164
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001165 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 head_copy_off = 0;
1167 if (newheadroom <= head_copy_len)
1168 head_copy_len = newheadroom;
1169 else
1170 head_copy_off = newheadroom - head_copy_len;
1171
1172 /* Copy the linear header and data. */
1173 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1174 skb->len + head_copy_len))
1175 BUG();
1176
1177 copy_skb_header(n, skb);
1178
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001179 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001180 if (n->ip_summed == CHECKSUM_PARTIAL)
1181 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001182#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001183 n->transport_header += off;
1184 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001185 if (skb_mac_header_was_set(skb))
1186 n->mac_header += off;
Joseph Gasparakis6a674e92012-12-07 14:14:14 +00001187 n->inner_transport_header += off;
1188 n->inner_network_header += off;
Herbert Xu52886052007-09-16 16:32:11 -07001189#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return n;
1192}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001193EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195/**
1196 * skb_pad - zero pad the tail of an skb
1197 * @skb: buffer to pad
1198 * @pad: space to pad
1199 *
1200 * Ensure that a buffer is followed by a padding area that is zero
1201 * filled. Used by network drivers which may DMA or transfer data
1202 * beyond the buffer end onto the wire.
1203 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001204 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001206
Herbert Xu5b057c62006-06-23 02:06:41 -07001207int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Herbert Xu5b057c62006-06-23 02:06:41 -07001209 int err;
1210 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001213 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001217
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001218 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001219 if (likely(skb_cloned(skb) || ntail > 0)) {
1220 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1221 if (unlikely(err))
1222 goto free_skb;
1223 }
1224
1225 /* FIXME: The use of this function with non-linear skb's really needs
1226 * to be audited.
1227 */
1228 err = skb_linearize(skb);
1229 if (unlikely(err))
1230 goto free_skb;
1231
1232 memset(skb->data + skb->len, 0, pad);
1233 return 0;
1234
1235free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001237 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001238}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001239EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001240
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001241/**
1242 * skb_put - add data to a buffer
1243 * @skb: buffer to use
1244 * @len: amount of data to add
1245 *
1246 * This function extends the used data area of the buffer. If this would
1247 * exceed the total buffer size the kernel will panic. A pointer to the
1248 * first byte of the extra data is returned.
1249 */
1250unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1251{
1252 unsigned char *tmp = skb_tail_pointer(skb);
1253 SKB_LINEAR_ASSERT(skb);
1254 skb->tail += len;
1255 skb->len += len;
1256 if (unlikely(skb->tail > skb->end))
1257 skb_over_panic(skb, len, __builtin_return_address(0));
1258 return tmp;
1259}
1260EXPORT_SYMBOL(skb_put);
1261
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001262/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001263 * skb_push - add data to the start of a buffer
1264 * @skb: buffer to use
1265 * @len: amount of data to add
1266 *
1267 * This function extends the used data area of the buffer at the buffer
1268 * start. If this would exceed the total buffer headroom the kernel will
1269 * panic. A pointer to the first byte of the extra data is returned.
1270 */
1271unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1272{
1273 skb->data -= len;
1274 skb->len += len;
1275 if (unlikely(skb->data<skb->head))
1276 skb_under_panic(skb, len, __builtin_return_address(0));
1277 return skb->data;
1278}
1279EXPORT_SYMBOL(skb_push);
1280
1281/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001282 * skb_pull - remove data from the start of a buffer
1283 * @skb: buffer to use
1284 * @len: amount of data to remove
1285 *
1286 * This function removes data from the start of a buffer, returning
1287 * the memory to the headroom. A pointer to the next data in the buffer
1288 * is returned. Once the data has been pulled future pushes will overwrite
1289 * the old data.
1290 */
1291unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1292{
David S. Miller47d29642010-05-02 02:21:44 -07001293 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001294}
1295EXPORT_SYMBOL(skb_pull);
1296
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001297/**
1298 * skb_trim - remove end from a buffer
1299 * @skb: buffer to alter
1300 * @len: new length
1301 *
1302 * Cut the length of a buffer down by removing data from the tail. If
1303 * the buffer is already under the length specified it is not modified.
1304 * The skb must be linear.
1305 */
1306void skb_trim(struct sk_buff *skb, unsigned int len)
1307{
1308 if (skb->len > len)
1309 __skb_trim(skb, len);
1310}
1311EXPORT_SYMBOL(skb_trim);
1312
Herbert Xu3cc0e872006-06-09 16:13:38 -07001313/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 */
1315
Herbert Xu3cc0e872006-06-09 16:13:38 -07001316int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Herbert Xu27b437c2006-07-13 19:26:39 -07001318 struct sk_buff **fragp;
1319 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 int offset = skb_headlen(skb);
1321 int nfrags = skb_shinfo(skb)->nr_frags;
1322 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001323 int err;
1324
1325 if (skb_cloned(skb) &&
1326 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1327 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001329 i = 0;
1330 if (offset >= len)
1331 goto drop_pages;
1332
1333 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001334 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001335
1336 if (end < len) {
1337 offset = end;
1338 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001340
Eric Dumazet9e903e02011-10-18 21:00:24 +00001341 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001342
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001343drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001344 skb_shinfo(skb)->nr_frags = i;
1345
1346 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001347 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001348
David S. Miller21dc3302010-08-23 00:13:46 -07001349 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001350 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001351 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
1353
Herbert Xu27b437c2006-07-13 19:26:39 -07001354 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1355 fragp = &frag->next) {
1356 int end = offset + frag->len;
1357
1358 if (skb_shared(frag)) {
1359 struct sk_buff *nfrag;
1360
1361 nfrag = skb_clone(frag, GFP_ATOMIC);
1362 if (unlikely(!nfrag))
1363 return -ENOMEM;
1364
1365 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001366 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001367 frag = nfrag;
1368 *fragp = frag;
1369 }
1370
1371 if (end < len) {
1372 offset = end;
1373 continue;
1374 }
1375
1376 if (end > len &&
1377 unlikely((err = pskb_trim(frag, len - offset))))
1378 return err;
1379
1380 if (frag->next)
1381 skb_drop_list(&frag->next);
1382 break;
1383 }
1384
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001385done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001386 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 skb->data_len -= skb->len - len;
1388 skb->len = len;
1389 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001390 skb->len = len;
1391 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001392 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
1395 return 0;
1396}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001397EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399/**
1400 * __pskb_pull_tail - advance tail of skb header
1401 * @skb: buffer to reallocate
1402 * @delta: number of bytes to advance tail
1403 *
1404 * The function makes a sense only on a fragmented &sk_buff,
1405 * it expands header moving its tail forward and copying necessary
1406 * data from fragmented part.
1407 *
1408 * &sk_buff MUST have reference count of 1.
1409 *
1410 * Returns %NULL (and &sk_buff does not change) if pull failed
1411 * or value of new tail of skb in the case of success.
1412 *
1413 * All the pointers pointing into skb header may change and must be
1414 * reloaded after call to this function.
1415 */
1416
1417/* Moves tail of skb head forward, copying data from fragmented part,
1418 * when it is necessary.
1419 * 1. It may fail due to malloc failure.
1420 * 2. It may change skb pointers.
1421 *
1422 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1423 */
1424unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1425{
1426 /* If skb has not enough free space at tail, get new one
1427 * plus 128 bytes for future expansions. If we have enough
1428 * room at tail, reallocate without expansion only if skb is cloned.
1429 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001430 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 if (eat > 0 || skb_cloned(skb)) {
1433 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1434 GFP_ATOMIC))
1435 return NULL;
1436 }
1437
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001438 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 BUG();
1440
1441 /* Optimization: no fragments, no reasons to preestimate
1442 * size of pulled pages. Superb.
1443 */
David S. Miller21dc3302010-08-23 00:13:46 -07001444 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 goto pull_pages;
1446
1447 /* Estimate size of pulled pages. */
1448 eat = delta;
1449 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001450 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1451
1452 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001454 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
1457 /* If we need update frag list, we are in troubles.
1458 * Certainly, it possible to add an offset to skb data,
1459 * but taking into account that pulling is expected to
1460 * be very rare operation, it is worth to fight against
1461 * further bloating skb head and crucify ourselves here instead.
1462 * Pure masohism, indeed. 8)8)
1463 */
1464 if (eat) {
1465 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1466 struct sk_buff *clone = NULL;
1467 struct sk_buff *insp = NULL;
1468
1469 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001470 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 if (list->len <= eat) {
1473 /* Eaten as whole. */
1474 eat -= list->len;
1475 list = list->next;
1476 insp = list;
1477 } else {
1478 /* Eaten partially. */
1479
1480 if (skb_shared(list)) {
1481 /* Sucks! We need to fork list. :-( */
1482 clone = skb_clone(list, GFP_ATOMIC);
1483 if (!clone)
1484 return NULL;
1485 insp = list->next;
1486 list = clone;
1487 } else {
1488 /* This may be pulled without
1489 * problems. */
1490 insp = list;
1491 }
1492 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001493 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return NULL;
1495 }
1496 break;
1497 }
1498 } while (eat);
1499
1500 /* Free pulled out fragments. */
1501 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1502 skb_shinfo(skb)->frag_list = list->next;
1503 kfree_skb(list);
1504 }
1505 /* And insert new clone at head. */
1506 if (clone) {
1507 clone->next = list;
1508 skb_shinfo(skb)->frag_list = clone;
1509 }
1510 }
1511 /* Success! Now we may commit changes to skb data. */
1512
1513pull_pages:
1514 eat = delta;
1515 k = 0;
1516 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001517 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1518
1519 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001520 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001521 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 } else {
1523 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1524 if (eat) {
1525 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001526 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 eat = 0;
1528 }
1529 k++;
1530 }
1531 }
1532 skb_shinfo(skb)->nr_frags = k;
1533
1534 skb->tail += delta;
1535 skb->data_len -= delta;
1536
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001537 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001539EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Eric Dumazet22019b12011-07-29 18:37:31 +00001541/**
1542 * skb_copy_bits - copy bits from skb to kernel buffer
1543 * @skb: source skb
1544 * @offset: offset in source
1545 * @to: destination buffer
1546 * @len: number of bytes to copy
1547 *
1548 * Copy the specified number of bytes from the source skb to the
1549 * destination buffer.
1550 *
1551 * CAUTION ! :
1552 * If its prototype is ever changed,
1553 * check arch/{*}/net/{*}.S files,
1554 * since it is called from BPF assembly code.
1555 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1557{
David S. Miller1a028e52007-04-27 15:21:23 -07001558 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001559 struct sk_buff *frag_iter;
1560 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 if (offset > (int)skb->len - len)
1563 goto fault;
1564
1565 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001566 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (copy > len)
1568 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001569 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if ((len -= copy) == 0)
1571 return 0;
1572 offset += copy;
1573 to += copy;
1574 }
1575
1576 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001577 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001578 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001580 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001581
Eric Dumazet51c56b02012-04-05 11:35:15 +02001582 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if ((copy = end - offset) > 0) {
1584 u8 *vaddr;
1585
1586 if (copy > len)
1587 copy = len;
1588
Eric Dumazet51c56b02012-04-05 11:35:15 +02001589 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001591 vaddr + f->page_offset + offset - start,
1592 copy);
1593 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 if ((len -= copy) == 0)
1596 return 0;
1597 offset += copy;
1598 to += copy;
1599 }
David S. Miller1a028e52007-04-27 15:21:23 -07001600 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602
David S. Millerfbb398a2009-06-09 00:18:59 -07001603 skb_walk_frags(skb, frag_iter) {
1604 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
David S. Millerfbb398a2009-06-09 00:18:59 -07001606 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
David S. Millerfbb398a2009-06-09 00:18:59 -07001608 end = start + frag_iter->len;
1609 if ((copy = end - offset) > 0) {
1610 if (copy > len)
1611 copy = len;
1612 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1613 goto fault;
1614 if ((len -= copy) == 0)
1615 return 0;
1616 offset += copy;
1617 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001619 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Shirley Maa6686f22011-07-06 12:22:12 +00001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (!len)
1623 return 0;
1624
1625fault:
1626 return -EFAULT;
1627}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001628EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Jens Axboe9c55e012007-11-06 23:30:13 -08001630/*
1631 * Callback from splice_to_pipe(), if we need to release some pages
1632 * at the end of the spd in case we error'ed out in filling the pipe.
1633 */
1634static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1635{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001636 put_page(spd->pages[i]);
1637}
Jens Axboe9c55e012007-11-06 23:30:13 -08001638
David S. Millera108d5f2012-04-23 23:06:11 -04001639static struct page *linear_to_page(struct page *page, unsigned int *len,
1640 unsigned int *offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001641 struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001642{
Eric Dumazet5640f762012-09-23 23:04:42 +00001643 struct page_frag *pfrag = sk_page_frag(sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001644
Eric Dumazet5640f762012-09-23 23:04:42 +00001645 if (!sk_page_frag_refill(sk, pfrag))
1646 return NULL;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001647
Eric Dumazet5640f762012-09-23 23:04:42 +00001648 *len = min_t(unsigned int, *len, pfrag->size - pfrag->offset);
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001649
Eric Dumazet5640f762012-09-23 23:04:42 +00001650 memcpy(page_address(pfrag->page) + pfrag->offset,
1651 page_address(page) + *offset, *len);
1652 *offset = pfrag->offset;
1653 pfrag->offset += *len;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001654
Eric Dumazet5640f762012-09-23 23:04:42 +00001655 return pfrag->page;
Jens Axboe9c55e012007-11-06 23:30:13 -08001656}
1657
Eric Dumazet41c73a02012-04-22 12:26:16 +00001658static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1659 struct page *page,
1660 unsigned int offset)
1661{
1662 return spd->nr_pages &&
1663 spd->pages[spd->nr_pages - 1] == page &&
1664 (spd->partial[spd->nr_pages - 1].offset +
1665 spd->partial[spd->nr_pages - 1].len == offset);
1666}
1667
Jens Axboe9c55e012007-11-06 23:30:13 -08001668/*
1669 * Fill page/offset/length into spd, if it can hold more pages.
1670 */
David S. Millera108d5f2012-04-23 23:06:11 -04001671static bool spd_fill_page(struct splice_pipe_desc *spd,
1672 struct pipe_inode_info *pipe, struct page *page,
1673 unsigned int *len, unsigned int offset,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001674 bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001675 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001676{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001677 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001678 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001679
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001680 if (linear) {
Eric Dumazet18aafc62013-01-11 14:46:37 +00001681 page = linear_to_page(page, len, &offset, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001682 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001683 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001684 }
1685 if (spd_can_coalesce(spd, page, offset)) {
1686 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001687 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001688 }
1689 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001690 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001691 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001692 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001693 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001694
David S. Millera108d5f2012-04-23 23:06:11 -04001695 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001696}
1697
David S. Millera108d5f2012-04-23 23:06:11 -04001698static bool __splice_segment(struct page *page, unsigned int poff,
1699 unsigned int plen, unsigned int *off,
Eric Dumazet18aafc62013-01-11 14:46:37 +00001700 unsigned int *len,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001701 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001702 struct sock *sk,
1703 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001704{
1705 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001706 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001707
1708 /* skip this segment if already processed */
1709 if (*off >= plen) {
1710 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001711 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001712 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001713
Octavian Purdila2870c432008-07-15 00:49:11 -07001714 /* ignore any bits we already processed */
Eric Dumazet9ca1b222013-01-05 21:31:18 +00001715 poff += *off;
1716 plen -= *off;
1717 *off = 0;
Octavian Purdila2870c432008-07-15 00:49:11 -07001718
Eric Dumazet18aafc62013-01-11 14:46:37 +00001719 do {
1720 unsigned int flen = min(*len, plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001721
Eric Dumazet18aafc62013-01-11 14:46:37 +00001722 if (spd_fill_page(spd, pipe, page, &flen, poff,
1723 linear, sk))
1724 return true;
1725 poff += flen;
1726 plen -= flen;
1727 *len -= flen;
1728 } while (*len && plen);
Octavian Purdila2870c432008-07-15 00:49:11 -07001729
David S. Millera108d5f2012-04-23 23:06:11 -04001730 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001731}
1732
1733/*
David S. Millera108d5f2012-04-23 23:06:11 -04001734 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001735 * pipe is full or if we already spliced the requested length.
1736 */
David S. Millera108d5f2012-04-23 23:06:11 -04001737static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1738 unsigned int *offset, unsigned int *len,
1739 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001740{
1741 int seg;
1742
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001743 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001744 * If skb->head_frag is set, this 'linear' part is backed by a
1745 * fragment, and if the head is not shared with any clones then
1746 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001747 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001748 if (__splice_segment(virt_to_page(skb->data),
1749 (unsigned long) skb->data & (PAGE_SIZE - 1),
1750 skb_headlen(skb),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001751 offset, len, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001752 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001753 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001754 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001755
1756 /*
1757 * then map the fragments
1758 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001759 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1760 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1761
Ian Campbellea2ab692011-08-22 23:44:58 +00001762 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001763 f->page_offset, skb_frag_size(f),
Eric Dumazet18aafc62013-01-11 14:46:37 +00001764 offset, len, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001765 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001766 }
1767
David S. Millera108d5f2012-04-23 23:06:11 -04001768 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001769}
1770
1771/*
1772 * Map data from the skb to a pipe. Should handle both the linear part,
1773 * the fragments, and the frag list. It does NOT handle frag lists within
1774 * the frag list, if such a thing exists. We'd probably need to recurse to
1775 * handle that cleanly.
1776 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001777int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001778 struct pipe_inode_info *pipe, unsigned int tlen,
1779 unsigned int flags)
1780{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001781 struct partial_page partial[MAX_SKB_FRAGS];
1782 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001783 struct splice_pipe_desc spd = {
1784 .pages = pages,
1785 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001786 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001787 .flags = flags,
1788 .ops = &sock_pipe_buf_ops,
1789 .spd_release = sock_spd_release,
1790 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001791 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001792 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001793 int ret = 0;
1794
Jens Axboe9c55e012007-11-06 23:30:13 -08001795 /*
1796 * __skb_splice_bits() only fails if the output has no room left,
1797 * so no point in going over the frag_list for the error case.
1798 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001799 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001800 goto done;
1801 else if (!tlen)
1802 goto done;
1803
1804 /*
1805 * now see if we have a frag_list to map
1806 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001807 skb_walk_frags(skb, frag_iter) {
1808 if (!tlen)
1809 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001810 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001811 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001812 }
1813
1814done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001815 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001816 /*
1817 * Drop the socket lock, otherwise we have reverse
1818 * locking dependencies between sk_lock and i_mutex
1819 * here as compared to sendfile(). We enter here
1820 * with the socket lock held, and splice_to_pipe() will
1821 * grab the pipe inode lock. For sendfile() emulation,
1822 * we call into ->sendpage() with the i_mutex lock held
1823 * and networking will grab the socket lock.
1824 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001825 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001826 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001827 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001828 }
1829
Jens Axboe35f3d142010-05-20 10:43:18 +02001830 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001831}
1832
Herbert Xu357b40a2005-04-19 22:30:14 -07001833/**
1834 * skb_store_bits - store bits from kernel buffer to skb
1835 * @skb: destination buffer
1836 * @offset: offset in destination
1837 * @from: source buffer
1838 * @len: number of bytes to copy
1839 *
1840 * Copy the specified number of bytes from the source buffer to the
1841 * destination skb. This function handles all the messy bits of
1842 * traversing fragment lists and such.
1843 */
1844
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001845int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001846{
David S. Miller1a028e52007-04-27 15:21:23 -07001847 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001848 struct sk_buff *frag_iter;
1849 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001850
1851 if (offset > (int)skb->len - len)
1852 goto fault;
1853
David S. Miller1a028e52007-04-27 15:21:23 -07001854 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001855 if (copy > len)
1856 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001857 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001858 if ((len -= copy) == 0)
1859 return 0;
1860 offset += copy;
1861 from += copy;
1862 }
1863
1864 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1865 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001866 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001867
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001868 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001869
Eric Dumazet9e903e02011-10-18 21:00:24 +00001870 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001871 if ((copy = end - offset) > 0) {
1872 u8 *vaddr;
1873
1874 if (copy > len)
1875 copy = len;
1876
Eric Dumazet51c56b02012-04-05 11:35:15 +02001877 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001878 memcpy(vaddr + frag->page_offset + offset - start,
1879 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001880 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001881
1882 if ((len -= copy) == 0)
1883 return 0;
1884 offset += copy;
1885 from += copy;
1886 }
David S. Miller1a028e52007-04-27 15:21:23 -07001887 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001888 }
1889
David S. Millerfbb398a2009-06-09 00:18:59 -07001890 skb_walk_frags(skb, frag_iter) {
1891 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001892
David S. Millerfbb398a2009-06-09 00:18:59 -07001893 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001894
David S. Millerfbb398a2009-06-09 00:18:59 -07001895 end = start + frag_iter->len;
1896 if ((copy = end - offset) > 0) {
1897 if (copy > len)
1898 copy = len;
1899 if (skb_store_bits(frag_iter, offset - start,
1900 from, copy))
1901 goto fault;
1902 if ((len -= copy) == 0)
1903 return 0;
1904 offset += copy;
1905 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001906 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001907 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001908 }
1909 if (!len)
1910 return 0;
1911
1912fault:
1913 return -EFAULT;
1914}
Herbert Xu357b40a2005-04-19 22:30:14 -07001915EXPORT_SYMBOL(skb_store_bits);
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917/* Checksum skb data. */
1918
Al Viro2bbbc862006-11-14 21:37:14 -08001919__wsum skb_checksum(const struct sk_buff *skb, int offset,
1920 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
David S. Miller1a028e52007-04-27 15:21:23 -07001922 int start = skb_headlen(skb);
1923 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001924 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 int pos = 0;
1926
1927 /* Checksum header. */
1928 if (copy > 0) {
1929 if (copy > len)
1930 copy = len;
1931 csum = csum_partial(skb->data + offset, copy, csum);
1932 if ((len -= copy) == 0)
1933 return csum;
1934 offset += copy;
1935 pos = copy;
1936 }
1937
1938 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001939 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001940 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001942 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001943
Eric Dumazet51c56b02012-04-05 11:35:15 +02001944 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001946 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 if (copy > len)
1950 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001951 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001952 csum2 = csum_partial(vaddr + frag->page_offset +
1953 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001954 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 csum = csum_block_add(csum, csum2, pos);
1956 if (!(len -= copy))
1957 return csum;
1958 offset += copy;
1959 pos += copy;
1960 }
David S. Miller1a028e52007-04-27 15:21:23 -07001961 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963
David S. Millerfbb398a2009-06-09 00:18:59 -07001964 skb_walk_frags(skb, frag_iter) {
1965 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
David S. Millerfbb398a2009-06-09 00:18:59 -07001967 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
David S. Millerfbb398a2009-06-09 00:18:59 -07001969 end = start + frag_iter->len;
1970 if ((copy = end - offset) > 0) {
1971 __wsum csum2;
1972 if (copy > len)
1973 copy = len;
1974 csum2 = skb_checksum(frag_iter, offset - start,
1975 copy, 0);
1976 csum = csum_block_add(csum, csum2, pos);
1977 if ((len -= copy) == 0)
1978 return csum;
1979 offset += copy;
1980 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001982 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001984 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 return csum;
1987}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001988EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990/* Both of above in one bottle. */
1991
Al Viro81d77662006-11-14 21:37:33 -08001992__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1993 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994{
David S. Miller1a028e52007-04-27 15:21:23 -07001995 int start = skb_headlen(skb);
1996 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001997 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 int pos = 0;
1999
2000 /* Copy header. */
2001 if (copy > 0) {
2002 if (copy > len)
2003 copy = len;
2004 csum = csum_partial_copy_nocheck(skb->data + offset, to,
2005 copy, csum);
2006 if ((len -= copy) == 0)
2007 return csum;
2008 offset += copy;
2009 to += copy;
2010 pos = copy;
2011 }
2012
2013 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002014 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002016 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002017
Eric Dumazet9e903e02011-10-18 21:00:24 +00002018 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08002020 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 u8 *vaddr;
2022 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2023
2024 if (copy > len)
2025 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002026 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002028 frag->page_offset +
2029 offset - start, to,
2030 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002031 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 csum = csum_block_add(csum, csum2, pos);
2033 if (!(len -= copy))
2034 return csum;
2035 offset += copy;
2036 to += copy;
2037 pos += copy;
2038 }
David S. Miller1a028e52007-04-27 15:21:23 -07002039 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041
David S. Millerfbb398a2009-06-09 00:18:59 -07002042 skb_walk_frags(skb, frag_iter) {
2043 __wsum csum2;
2044 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
David S. Millerfbb398a2009-06-09 00:18:59 -07002046 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
David S. Millerfbb398a2009-06-09 00:18:59 -07002048 end = start + frag_iter->len;
2049 if ((copy = end - offset) > 0) {
2050 if (copy > len)
2051 copy = len;
2052 csum2 = skb_copy_and_csum_bits(frag_iter,
2053 offset - start,
2054 to, copy, 0);
2055 csum = csum_block_add(csum, csum2, pos);
2056 if ((len -= copy) == 0)
2057 return csum;
2058 offset += copy;
2059 to += copy;
2060 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002062 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002064 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return csum;
2066}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002067EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2070{
Al Virod3bc23e2006-11-14 21:24:49 -08002071 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 long csstart;
2073
Patrick McHardy84fa7932006-08-29 16:44:56 -07002074 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002075 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 else
2077 csstart = skb_headlen(skb);
2078
Kris Katterjohn09a62662006-01-08 22:24:28 -08002079 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002081 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 csum = 0;
2084 if (csstart != skb->len)
2085 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2086 skb->len - csstart, 0);
2087
Patrick McHardy84fa7932006-08-29 16:44:56 -07002088 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002089 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Al Virod3bc23e2006-11-14 21:24:49 -08002091 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
2093}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002094EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096/**
2097 * skb_dequeue - remove from the head of the queue
2098 * @list: list to dequeue from
2099 *
2100 * Remove the head of the list. The list lock is taken so the function
2101 * may be used safely with other locking list functions. The head item is
2102 * returned or %NULL if the list is empty.
2103 */
2104
2105struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2106{
2107 unsigned long flags;
2108 struct sk_buff *result;
2109
2110 spin_lock_irqsave(&list->lock, flags);
2111 result = __skb_dequeue(list);
2112 spin_unlock_irqrestore(&list->lock, flags);
2113 return result;
2114}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002115EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117/**
2118 * skb_dequeue_tail - remove from the tail of the queue
2119 * @list: list to dequeue from
2120 *
2121 * Remove the tail of the list. The list lock is taken so the function
2122 * may be used safely with other locking list functions. The tail item is
2123 * returned or %NULL if the list is empty.
2124 */
2125struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2126{
2127 unsigned long flags;
2128 struct sk_buff *result;
2129
2130 spin_lock_irqsave(&list->lock, flags);
2131 result = __skb_dequeue_tail(list);
2132 spin_unlock_irqrestore(&list->lock, flags);
2133 return result;
2134}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002135EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137/**
2138 * skb_queue_purge - empty a list
2139 * @list: list to empty
2140 *
2141 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2142 * the list and one reference dropped. This function takes the list
2143 * lock and is atomic with respect to other list locking functions.
2144 */
2145void skb_queue_purge(struct sk_buff_head *list)
2146{
2147 struct sk_buff *skb;
2148 while ((skb = skb_dequeue(list)) != NULL)
2149 kfree_skb(skb);
2150}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002151EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153/**
2154 * skb_queue_head - queue a buffer at the list head
2155 * @list: list to use
2156 * @newsk: buffer to queue
2157 *
2158 * Queue a buffer at the start of the list. This function takes the
2159 * list lock and can be used safely with other locking &sk_buff functions
2160 * safely.
2161 *
2162 * A buffer cannot be placed on two lists at the same time.
2163 */
2164void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2165{
2166 unsigned long flags;
2167
2168 spin_lock_irqsave(&list->lock, flags);
2169 __skb_queue_head(list, newsk);
2170 spin_unlock_irqrestore(&list->lock, flags);
2171}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002172EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174/**
2175 * skb_queue_tail - queue a buffer at the list tail
2176 * @list: list to use
2177 * @newsk: buffer to queue
2178 *
2179 * Queue a buffer at the tail of the list. This function takes the
2180 * list lock and can be used safely with other locking &sk_buff functions
2181 * safely.
2182 *
2183 * A buffer cannot be placed on two lists at the same time.
2184 */
2185void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2186{
2187 unsigned long flags;
2188
2189 spin_lock_irqsave(&list->lock, flags);
2190 __skb_queue_tail(list, newsk);
2191 spin_unlock_irqrestore(&list->lock, flags);
2192}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002193EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195/**
2196 * skb_unlink - remove a buffer from a list
2197 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002198 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 *
David S. Miller8728b832005-08-09 19:25:21 -07002200 * Remove a packet from a list. The list locks are taken and this
2201 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
David S. Miller8728b832005-08-09 19:25:21 -07002203 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 */
David S. Miller8728b832005-08-09 19:25:21 -07002205void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
David S. Miller8728b832005-08-09 19:25:21 -07002207 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
David S. Miller8728b832005-08-09 19:25:21 -07002209 spin_lock_irqsave(&list->lock, flags);
2210 __skb_unlink(skb, list);
2211 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002213EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215/**
2216 * skb_append - append a buffer
2217 * @old: buffer to insert after
2218 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002219 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 *
2221 * Place a packet after a given packet in a list. The list locks are taken
2222 * and this function is atomic with respect to other list locked calls.
2223 * A buffer cannot be placed on two lists at the same time.
2224 */
David S. Miller8728b832005-08-09 19:25:21 -07002225void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
2227 unsigned long flags;
2228
David S. Miller8728b832005-08-09 19:25:21 -07002229 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002230 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002231 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002233EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235/**
2236 * skb_insert - insert a buffer
2237 * @old: buffer to insert before
2238 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002239 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 *
David S. Miller8728b832005-08-09 19:25:21 -07002241 * Place a packet before a given packet in a list. The list locks are
2242 * taken and this function is atomic with respect to other list locked
2243 * calls.
2244 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 * A buffer cannot be placed on two lists at the same time.
2246 */
David S. Miller8728b832005-08-09 19:25:21 -07002247void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
2249 unsigned long flags;
2250
David S. Miller8728b832005-08-09 19:25:21 -07002251 spin_lock_irqsave(&list->lock, flags);
2252 __skb_insert(newsk, old->prev, old, list);
2253 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002255EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257static inline void skb_split_inside_header(struct sk_buff *skb,
2258 struct sk_buff* skb1,
2259 const u32 len, const int pos)
2260{
2261 int i;
2262
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002263 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2264 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 /* And move data appendix as is. */
2266 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2267 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2268
2269 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2270 skb_shinfo(skb)->nr_frags = 0;
2271 skb1->data_len = skb->data_len;
2272 skb1->len += skb1->data_len;
2273 skb->data_len = 0;
2274 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002275 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278static inline void skb_split_no_header(struct sk_buff *skb,
2279 struct sk_buff* skb1,
2280 const u32 len, int pos)
2281{
2282 int i, k = 0;
2283 const int nfrags = skb_shinfo(skb)->nr_frags;
2284
2285 skb_shinfo(skb)->nr_frags = 0;
2286 skb1->len = skb1->data_len = skb->len - len;
2287 skb->len = len;
2288 skb->data_len = len - pos;
2289
2290 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002291 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 if (pos + size > len) {
2294 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2295
2296 if (pos < len) {
2297 /* Split frag.
2298 * We have two variants in this case:
2299 * 1. Move all the frag to the second
2300 * part, if it is possible. F.e.
2301 * this approach is mandatory for TUX,
2302 * where splitting is expensive.
2303 * 2. Split is accurately. We make this.
2304 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002305 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002307 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2308 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 skb_shinfo(skb)->nr_frags++;
2310 }
2311 k++;
2312 } else
2313 skb_shinfo(skb)->nr_frags++;
2314 pos += size;
2315 }
2316 skb_shinfo(skb1)->nr_frags = k;
2317}
2318
2319/**
2320 * skb_split - Split fragmented skb to two parts at length len.
2321 * @skb: the buffer to split
2322 * @skb1: the buffer to receive the second part
2323 * @len: new length for skb
2324 */
2325void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2326{
2327 int pos = skb_headlen(skb);
2328
Amerigo Wang68534c62013-02-19 22:51:30 +00002329 skb_shinfo(skb1)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 if (len < pos) /* Split line is inside header. */
2331 skb_split_inside_header(skb, skb1, len, pos);
2332 else /* Second chunk has no header, nothing to copy. */
2333 skb_split_no_header(skb, skb1, len, pos);
2334}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002335EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002337/* Shifting from/to a cloned skb is a no-go.
2338 *
2339 * Caller cannot keep skb_shinfo related pointers past calling here!
2340 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002341static int skb_prepare_for_shift(struct sk_buff *skb)
2342{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002343 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002344}
2345
2346/**
2347 * skb_shift - Shifts paged data partially from skb to another
2348 * @tgt: buffer into which tail data gets added
2349 * @skb: buffer from which the paged data comes from
2350 * @shiftlen: shift up to this many bytes
2351 *
2352 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002353 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002354 * It's up to caller to free skb if everything was shifted.
2355 *
2356 * If @tgt runs out of frags, the whole operation is aborted.
2357 *
2358 * Skb cannot include anything else but paged data while tgt is allowed
2359 * to have non-paged data as well.
2360 *
2361 * TODO: full sized shift could be optimized but that would need
2362 * specialized skb free'er to handle frags without up-to-date nr_frags.
2363 */
2364int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2365{
2366 int from, to, merge, todo;
2367 struct skb_frag_struct *fragfrom, *fragto;
2368
2369 BUG_ON(shiftlen > skb->len);
2370 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2371
2372 todo = shiftlen;
2373 from = 0;
2374 to = skb_shinfo(tgt)->nr_frags;
2375 fragfrom = &skb_shinfo(skb)->frags[from];
2376
2377 /* Actual merge is delayed until the point when we know we can
2378 * commit all, so that we don't have to undo partial changes
2379 */
2380 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002381 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2382 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002383 merge = -1;
2384 } else {
2385 merge = to - 1;
2386
Eric Dumazet9e903e02011-10-18 21:00:24 +00002387 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002388 if (todo < 0) {
2389 if (skb_prepare_for_shift(skb) ||
2390 skb_prepare_for_shift(tgt))
2391 return 0;
2392
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002393 /* All previous frag pointers might be stale! */
2394 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002395 fragto = &skb_shinfo(tgt)->frags[merge];
2396
Eric Dumazet9e903e02011-10-18 21:00:24 +00002397 skb_frag_size_add(fragto, shiftlen);
2398 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002399 fragfrom->page_offset += shiftlen;
2400
2401 goto onlymerged;
2402 }
2403
2404 from++;
2405 }
2406
2407 /* Skip full, not-fitting skb to avoid expensive operations */
2408 if ((shiftlen == skb->len) &&
2409 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2410 return 0;
2411
2412 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2413 return 0;
2414
2415 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2416 if (to == MAX_SKB_FRAGS)
2417 return 0;
2418
2419 fragfrom = &skb_shinfo(skb)->frags[from];
2420 fragto = &skb_shinfo(tgt)->frags[to];
2421
Eric Dumazet9e903e02011-10-18 21:00:24 +00002422 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002423 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002424 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002425 from++;
2426 to++;
2427
2428 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002429 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002430 fragto->page = fragfrom->page;
2431 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002432 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002433
2434 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002435 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002436 todo = 0;
2437
2438 to++;
2439 break;
2440 }
2441 }
2442
2443 /* Ready to "commit" this state change to tgt */
2444 skb_shinfo(tgt)->nr_frags = to;
2445
2446 if (merge >= 0) {
2447 fragfrom = &skb_shinfo(skb)->frags[0];
2448 fragto = &skb_shinfo(tgt)->frags[merge];
2449
Eric Dumazet9e903e02011-10-18 21:00:24 +00002450 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002451 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002452 }
2453
2454 /* Reposition in the original skb */
2455 to = 0;
2456 while (from < skb_shinfo(skb)->nr_frags)
2457 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2458 skb_shinfo(skb)->nr_frags = to;
2459
2460 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2461
2462onlymerged:
2463 /* Most likely the tgt won't ever need its checksum anymore, skb on
2464 * the other hand might need it if it needs to be resent
2465 */
2466 tgt->ip_summed = CHECKSUM_PARTIAL;
2467 skb->ip_summed = CHECKSUM_PARTIAL;
2468
2469 /* Yak, is it really working this way? Some helper please? */
2470 skb->len -= shiftlen;
2471 skb->data_len -= shiftlen;
2472 skb->truesize -= shiftlen;
2473 tgt->len += shiftlen;
2474 tgt->data_len += shiftlen;
2475 tgt->truesize += shiftlen;
2476
2477 return shiftlen;
2478}
2479
Thomas Graf677e90e2005-06-23 20:59:51 -07002480/**
2481 * skb_prepare_seq_read - Prepare a sequential read of skb data
2482 * @skb: the buffer to read
2483 * @from: lower offset of data to be read
2484 * @to: upper offset of data to be read
2485 * @st: state variable
2486 *
2487 * Initializes the specified state variable. Must be called before
2488 * invoking skb_seq_read() for the first time.
2489 */
2490void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2491 unsigned int to, struct skb_seq_state *st)
2492{
2493 st->lower_offset = from;
2494 st->upper_offset = to;
2495 st->root_skb = st->cur_skb = skb;
2496 st->frag_idx = st->stepped_offset = 0;
2497 st->frag_data = NULL;
2498}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002499EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002500
2501/**
2502 * skb_seq_read - Sequentially read skb data
2503 * @consumed: number of bytes consumed by the caller so far
2504 * @data: destination pointer for data to be returned
2505 * @st: state variable
2506 *
2507 * Reads a block of skb data at &consumed relative to the
2508 * lower offset specified to skb_prepare_seq_read(). Assigns
2509 * the head of the data block to &data and returns the length
2510 * of the block or 0 if the end of the skb data or the upper
2511 * offset has been reached.
2512 *
2513 * The caller is not required to consume all of the data
2514 * returned, i.e. &consumed is typically set to the number
2515 * of bytes already consumed and the next call to
2516 * skb_seq_read() will return the remaining part of the block.
2517 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002518 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002519 * this limitation is the cost for zerocopy seqeuental
2520 * reads of potentially non linear data.
2521 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002522 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002523 * at the moment, state->root_skb could be replaced with
2524 * a stack for this purpose.
2525 */
2526unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2527 struct skb_seq_state *st)
2528{
2529 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2530 skb_frag_t *frag;
2531
2532 if (unlikely(abs_offset >= st->upper_offset))
2533 return 0;
2534
2535next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002536 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002537
Thomas Chenault995b3372009-05-18 21:43:27 -07002538 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002539 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002540 return block_limit - abs_offset;
2541 }
2542
2543 if (st->frag_idx == 0 && !st->frag_data)
2544 st->stepped_offset += skb_headlen(st->cur_skb);
2545
2546 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2547 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002548 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002549
2550 if (abs_offset < block_limit) {
2551 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002552 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002553
2554 *data = (u8 *) st->frag_data + frag->page_offset +
2555 (abs_offset - st->stepped_offset);
2556
2557 return block_limit - abs_offset;
2558 }
2559
2560 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002561 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002562 st->frag_data = NULL;
2563 }
2564
2565 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002566 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002567 }
2568
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002569 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002570 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002571 st->frag_data = NULL;
2572 }
2573
David S. Miller21dc3302010-08-23 00:13:46 -07002574 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002575 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002576 st->frag_idx = 0;
2577 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002578 } else if (st->cur_skb->next) {
2579 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002580 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002581 goto next_skb;
2582 }
2583
2584 return 0;
2585}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002586EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002587
2588/**
2589 * skb_abort_seq_read - Abort a sequential read of skb data
2590 * @st: state variable
2591 *
2592 * Must be called if skb_seq_read() was not called until it
2593 * returned 0.
2594 */
2595void skb_abort_seq_read(struct skb_seq_state *st)
2596{
2597 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002598 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002599}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002600EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002601
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002602#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2603
2604static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2605 struct ts_config *conf,
2606 struct ts_state *state)
2607{
2608 return skb_seq_read(offset, text, TS_SKB_CB(state));
2609}
2610
2611static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2612{
2613 skb_abort_seq_read(TS_SKB_CB(state));
2614}
2615
2616/**
2617 * skb_find_text - Find a text pattern in skb data
2618 * @skb: the buffer to look in
2619 * @from: search offset
2620 * @to: search limit
2621 * @config: textsearch configuration
2622 * @state: uninitialized textsearch state variable
2623 *
2624 * Finds a pattern in the skb data according to the specified
2625 * textsearch configuration. Use textsearch_next() to retrieve
2626 * subsequent occurrences of the pattern. Returns the offset
2627 * to the first occurrence or UINT_MAX if no match was found.
2628 */
2629unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2630 unsigned int to, struct ts_config *config,
2631 struct ts_state *state)
2632{
Phil Oesterf72b9482006-06-26 00:00:57 -07002633 unsigned int ret;
2634
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002635 config->get_next_block = skb_ts_get_next_block;
2636 config->finish = skb_ts_finish;
2637
2638 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2639
Phil Oesterf72b9482006-06-26 00:00:57 -07002640 ret = textsearch_find(config, state);
2641 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002642}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002643EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002644
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002645/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002646 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002647 * @sk: sock structure
2648 * @skb: skb structure to be appened with user data.
2649 * @getfrag: call back function to be used for getting the user data
2650 * @from: pointer to user message iov
2651 * @length: length of the iov message
2652 *
2653 * Description: This procedure append the user data in the fragment part
2654 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2655 */
2656int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002657 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002658 int len, int odd, struct sk_buff *skb),
2659 void *from, int length)
2660{
Eric Dumazetb2111722012-12-28 06:06:37 +00002661 int frg_cnt = skb_shinfo(skb)->nr_frags;
2662 int copy;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002663 int offset = 0;
2664 int ret;
Eric Dumazetb2111722012-12-28 06:06:37 +00002665 struct page_frag *pfrag = &current->task_frag;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002666
2667 do {
2668 /* Return error if we don't have space for new frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002669 if (frg_cnt >= MAX_SKB_FRAGS)
Eric Dumazetb2111722012-12-28 06:06:37 +00002670 return -EMSGSIZE;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002671
Eric Dumazetb2111722012-12-28 06:06:37 +00002672 if (!sk_page_frag_refill(sk, pfrag))
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002673 return -ENOMEM;
2674
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002675 /* copy the user data to page */
Eric Dumazetb2111722012-12-28 06:06:37 +00002676 copy = min_t(int, length, pfrag->size - pfrag->offset);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002677
Eric Dumazetb2111722012-12-28 06:06:37 +00002678 ret = getfrag(from, page_address(pfrag->page) + pfrag->offset,
2679 offset, copy, 0, skb);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002680 if (ret < 0)
2681 return -EFAULT;
2682
2683 /* copy was successful so update the size parameters */
Eric Dumazetb2111722012-12-28 06:06:37 +00002684 skb_fill_page_desc(skb, frg_cnt, pfrag->page, pfrag->offset,
2685 copy);
2686 frg_cnt++;
2687 pfrag->offset += copy;
2688 get_page(pfrag->page);
2689
2690 skb->truesize += copy;
2691 atomic_add(copy, &sk->sk_wmem_alloc);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002692 skb->len += copy;
2693 skb->data_len += copy;
2694 offset += copy;
2695 length -= copy;
2696
2697 } while (length > 0);
2698
2699 return 0;
2700}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002701EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002702
Herbert Xucbb042f92006-03-20 22:43:56 -08002703/**
2704 * skb_pull_rcsum - pull skb and update receive checksum
2705 * @skb: buffer to update
Herbert Xucbb042f92006-03-20 22:43:56 -08002706 * @len: length of data pulled
2707 *
2708 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002709 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002710 * receive path processing instead of skb_pull unless you know
2711 * that the checksum difference is zero (e.g., a valid IP header)
2712 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f92006-03-20 22:43:56 -08002713 */
2714unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2715{
2716 BUG_ON(len > skb->len);
2717 skb->len -= len;
2718 BUG_ON(skb->len < skb->data_len);
2719 skb_postpull_rcsum(skb, skb->data, len);
2720 return skb->data += len;
2721}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002722EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2723
Herbert Xuf4c50d92006-06-22 03:02:40 -07002724/**
2725 * skb_segment - Perform protocol segmentation on skb.
2726 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002727 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002728 *
2729 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002730 * a pointer to the first in a list of new skbs for the segments.
2731 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002732 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002733struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002734{
2735 struct sk_buff *segs = NULL;
2736 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002737 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002738 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002739 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002740 unsigned int offset = doffset;
Pravin B Shelar68c33162013-02-14 14:02:41 +00002741 unsigned int tnl_hlen = skb_tnl_header_len(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002742 unsigned int headroom;
2743 unsigned int len;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002744 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002745 int nfrags = skb_shinfo(skb)->nr_frags;
2746 int err = -ENOMEM;
2747 int i = 0;
2748 int pos;
2749
2750 __skb_push(skb, doffset);
2751 headroom = skb_headroom(skb);
2752 pos = skb_headlen(skb);
2753
2754 do {
2755 struct sk_buff *nskb;
2756 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002757 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002758 int size;
2759
2760 len = skb->len - offset;
2761 if (len > mss)
2762 len = mss;
2763
2764 hsize = skb_headlen(skb) - offset;
2765 if (hsize < 0)
2766 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002767 if (hsize > len || !sg)
2768 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002769
Herbert Xu89319d382008-12-15 23:26:06 -08002770 if (!hsize && i >= nfrags) {
2771 BUG_ON(fskb->len != len);
2772
2773 pos += len;
2774 nskb = skb_clone(fskb, GFP_ATOMIC);
2775 fskb = fskb->next;
2776
2777 if (unlikely(!nskb))
2778 goto err;
2779
Alexander Duyckec47ea82012-05-04 14:26:56 +00002780 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002781 if (skb_cow_head(nskb, doffset + headroom)) {
2782 kfree_skb(nskb);
2783 goto err;
2784 }
2785
Alexander Duyckec47ea82012-05-04 14:26:56 +00002786 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002787 skb_release_head_state(nskb);
2788 __skb_push(nskb, doffset);
2789 } else {
Mel Gormanc93bdd02012-07-31 16:44:19 -07002790 nskb = __alloc_skb(hsize + doffset + headroom,
2791 GFP_ATOMIC, skb_alloc_rx_flag(skb),
2792 NUMA_NO_NODE);
Herbert Xu89319d382008-12-15 23:26:06 -08002793
2794 if (unlikely(!nskb))
2795 goto err;
2796
2797 skb_reserve(nskb, headroom);
2798 __skb_put(nskb, doffset);
2799 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002800
2801 if (segs)
2802 tail->next = nskb;
2803 else
2804 segs = nskb;
2805 tail = nskb;
2806
Herbert Xu6f85a122008-08-15 14:55:02 -07002807 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002808 nskb->mac_len = skb->mac_len;
2809
Eric Dumazet3d3be432010-09-01 00:50:51 +00002810 /* nskb and skb might have different headroom */
2811 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2812 nskb->csum_start += skb_headroom(nskb) - headroom;
2813
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002814 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002815 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002816 nskb->transport_header = (nskb->network_header +
2817 skb_network_header_len(skb));
Pravin B Shelar68c33162013-02-14 14:02:41 +00002818
2819 skb_copy_from_linear_data_offset(skb, -tnl_hlen,
2820 nskb->data - tnl_hlen,
2821 doffset + tnl_hlen);
Herbert Xu89319d382008-12-15 23:26:06 -08002822
Herbert Xu2f181852009-03-28 23:39:18 -07002823 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002824 continue;
2825
Herbert Xuf4c50d92006-06-22 03:02:40 -07002826 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002827 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002828 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2829 skb_put(nskb, len),
2830 len, 0);
2831 continue;
2832 }
2833
2834 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002835
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002836 skb_copy_from_linear_data_offset(skb, offset,
2837 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002838
Pravin B Shelarc9af6db2013-02-11 09:27:41 +00002839 skb_shinfo(nskb)->tx_flags = skb_shinfo(skb)->tx_flags & SKBTX_SHARED_FRAG;
Eric Dumazetcef401d2013-01-25 20:34:37 +00002840
Herbert Xu89319d382008-12-15 23:26:06 -08002841 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002842 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002843 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002844 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002845
2846 if (pos < offset) {
2847 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002848 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002849 }
2850
Herbert Xu89319d382008-12-15 23:26:06 -08002851 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002852
2853 if (pos + size <= offset + len) {
2854 i++;
2855 pos += size;
2856 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002857 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002858 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002859 }
2860
2861 frag++;
2862 }
2863
Herbert Xu89319d382008-12-15 23:26:06 -08002864 if (pos < offset + len) {
2865 struct sk_buff *fskb2 = fskb;
2866
2867 BUG_ON(pos + fskb->len != offset + len);
2868
2869 pos += fskb->len;
2870 fskb = fskb->next;
2871
2872 if (fskb2->next) {
2873 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2874 if (!fskb2)
2875 goto err;
2876 } else
2877 skb_get(fskb2);
2878
David S. Millerfbb398a2009-06-09 00:18:59 -07002879 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002880 skb_shinfo(nskb)->frag_list = fskb2;
2881 }
2882
2883skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002884 nskb->data_len = len - hsize;
2885 nskb->len += nskb->data_len;
2886 nskb->truesize += nskb->data_len;
2887 } while ((offset += len) < skb->len);
2888
2889 return segs;
2890
2891err:
2892 while ((skb = segs)) {
2893 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002894 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002895 }
2896 return ERR_PTR(err);
2897}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002898EXPORT_SYMBOL_GPL(skb_segment);
2899
Herbert Xu71d93b32008-12-15 23:42:33 -08002900int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2901{
2902 struct sk_buff *p = *head;
2903 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002904 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2905 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002906 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002907 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002908 unsigned int offset = skb_gro_offset(skb);
2909 unsigned int headlen = skb_headlen(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002910 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002911
Herbert Xu86911732009-01-29 14:19:50 +00002912 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002913 return -E2BIG;
2914
Herbert Xu9aaa1562009-05-26 18:50:33 +00002915 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002916 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002917 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002918 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002919 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002920 int i = skbinfo->nr_frags;
2921 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002922
Herbert Xu66e92fc2009-05-26 18:50:32 +00002923 offset -= headlen;
2924
2925 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002926 return -E2BIG;
2927
Herbert Xu9aaa1562009-05-26 18:50:33 +00002928 pinfo->nr_frags = nr_frags;
2929 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002930
Herbert Xu9aaa1562009-05-26 18:50:33 +00002931 frag = pinfo->frags + nr_frags;
2932 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002933 do {
2934 *--frag = *--frag2;
2935 } while (--i);
2936
2937 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002938 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002939
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002940 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002941 delta_truesize = skb->truesize -
2942 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002943
Herbert Xuf5572062009-01-14 20:40:03 -08002944 skb->truesize -= skb->data_len;
2945 skb->len -= skb->data_len;
2946 skb->data_len = 0;
2947
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002948 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002949 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002950 } else if (skb->head_frag) {
2951 int nr_frags = pinfo->nr_frags;
2952 skb_frag_t *frag = pinfo->frags + nr_frags;
2953 struct page *page = virt_to_head_page(skb->head);
2954 unsigned int first_size = headlen - offset;
2955 unsigned int first_offset;
2956
2957 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
2958 return -E2BIG;
2959
2960 first_offset = skb->data -
2961 (unsigned char *)page_address(page) +
2962 offset;
2963
2964 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
2965
2966 frag->page.p = page;
2967 frag->page_offset = first_offset;
2968 skb_frag_size_set(frag, first_size);
2969
2970 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
2971 /* We dont need to clear skbinfo->nr_frags here */
2972
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002973 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00002974 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
2975 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002976 } else if (skb_gro_len(p) != pinfo->gso_size)
2977 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002978
2979 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002980 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002981 if (unlikely(!nskb))
2982 return -ENOMEM;
2983
2984 __copy_skb_header(nskb, p);
2985 nskb->mac_len = p->mac_len;
2986
2987 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002988 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002989
Herbert Xu86911732009-01-29 14:19:50 +00002990 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002991 skb_set_network_header(nskb, skb_network_offset(p));
2992 skb_set_transport_header(nskb, skb_transport_offset(p));
2993
Herbert Xu86911732009-01-29 14:19:50 +00002994 __skb_pull(p, skb_gro_offset(p));
2995 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2996 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002997
Herbert Xu71d93b32008-12-15 23:42:33 -08002998 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002999 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07003000 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08003001 skb_header_release(p);
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003002 NAPI_GRO_CB(nskb)->last = p;
Herbert Xu71d93b32008-12-15 23:42:33 -08003003
3004 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00003005 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08003006 nskb->len += p->len;
3007
3008 *head = nskb;
3009 nskb->next = p->next;
3010 p->next = NULL;
3011
3012 p = nskb;
3013
3014merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003015 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00003016 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003017 unsigned int eat = offset - headlen;
3018
3019 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003020 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003021 skb->data_len -= eat;
3022 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003023 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003024 }
3025
Herbert Xu67147ba2009-05-26 18:50:22 +00003026 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003027
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003028 NAPI_GRO_CB(p)->last->next = skb;
3029 NAPI_GRO_CB(p)->last = skb;
Herbert Xu71d93b32008-12-15 23:42:33 -08003030 skb_header_release(skb);
3031
Herbert Xu5d38a072009-01-04 16:13:40 -08003032done:
3033 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003034 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003035 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003036 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08003037
3038 NAPI_GRO_CB(skb)->same_flow = 1;
3039 return 0;
3040}
3041EXPORT_SYMBOL_GPL(skb_gro_receive);
3042
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043void __init skb_init(void)
3044{
3045 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3046 sizeof(struct sk_buff),
3047 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003048 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003049 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003050 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3051 (2*sizeof(struct sk_buff)) +
3052 sizeof(atomic_t),
3053 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003054 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003055 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056}
3057
David Howells716ea3a2007-04-02 20:19:53 -07003058/**
3059 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3060 * @skb: Socket buffer containing the buffers to be mapped
3061 * @sg: The scatter-gather list to map into
3062 * @offset: The offset into the buffer's contents to start mapping
3063 * @len: Length of buffer space to be mapped
3064 *
3065 * Fill the specified scatter-gather list with mappings/pointers into a
3066 * region of the buffer space attached to a socket buffer.
3067 */
David S. Miller51c739d2007-10-30 21:29:29 -07003068static int
3069__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003070{
David S. Miller1a028e52007-04-27 15:21:23 -07003071 int start = skb_headlen(skb);
3072 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003073 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003074 int elt = 0;
3075
3076 if (copy > 0) {
3077 if (copy > len)
3078 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003079 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003080 elt++;
3081 if ((len -= copy) == 0)
3082 return elt;
3083 offset += copy;
3084 }
3085
3086 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003087 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003088
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003089 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003090
Eric Dumazet9e903e02011-10-18 21:00:24 +00003091 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003092 if ((copy = end - offset) > 0) {
3093 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3094
3095 if (copy > len)
3096 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003097 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003098 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003099 elt++;
3100 if (!(len -= copy))
3101 return elt;
3102 offset += copy;
3103 }
David S. Miller1a028e52007-04-27 15:21:23 -07003104 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003105 }
3106
David S. Millerfbb398a2009-06-09 00:18:59 -07003107 skb_walk_frags(skb, frag_iter) {
3108 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003109
David S. Millerfbb398a2009-06-09 00:18:59 -07003110 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003111
David S. Millerfbb398a2009-06-09 00:18:59 -07003112 end = start + frag_iter->len;
3113 if ((copy = end - offset) > 0) {
3114 if (copy > len)
3115 copy = len;
3116 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3117 copy);
3118 if ((len -= copy) == 0)
3119 return elt;
3120 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003121 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003122 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003123 }
3124 BUG_ON(len);
3125 return elt;
3126}
3127
David S. Miller51c739d2007-10-30 21:29:29 -07003128int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3129{
3130 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3131
Jens Axboec46f2332007-10-31 12:06:37 +01003132 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003133
3134 return nsg;
3135}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003136EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003137
David Howells716ea3a2007-04-02 20:19:53 -07003138/**
3139 * skb_cow_data - Check that a socket buffer's data buffers are writable
3140 * @skb: The socket buffer to check.
3141 * @tailbits: Amount of trailing space to be added
3142 * @trailer: Returned pointer to the skb where the @tailbits space begins
3143 *
3144 * Make sure that the data buffers attached to a socket buffer are
3145 * writable. If they are not, private copies are made of the data buffers
3146 * and the socket buffer is set to use these instead.
3147 *
3148 * If @tailbits is given, make sure that there is space to write @tailbits
3149 * bytes of data beyond current end of socket buffer. @trailer will be
3150 * set to point to the skb in which this space begins.
3151 *
3152 * The number of scatterlist elements required to completely map the
3153 * COW'd and extended socket buffer will be returned.
3154 */
3155int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3156{
3157 int copyflag;
3158 int elt;
3159 struct sk_buff *skb1, **skb_p;
3160
3161 /* If skb is cloned or its head is paged, reallocate
3162 * head pulling out all the pages (pages are considered not writable
3163 * at the moment even if they are anonymous).
3164 */
3165 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3166 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3167 return -ENOMEM;
3168
3169 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003170 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003171 /* A little of trouble, not enough of space for trailer.
3172 * This should not happen, when stack is tuned to generate
3173 * good frames. OK, on miss we reallocate and reserve even more
3174 * space, 128 bytes is fair. */
3175
3176 if (skb_tailroom(skb) < tailbits &&
3177 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3178 return -ENOMEM;
3179
3180 /* Voila! */
3181 *trailer = skb;
3182 return 1;
3183 }
3184
3185 /* Misery. We are in troubles, going to mincer fragments... */
3186
3187 elt = 1;
3188 skb_p = &skb_shinfo(skb)->frag_list;
3189 copyflag = 0;
3190
3191 while ((skb1 = *skb_p) != NULL) {
3192 int ntail = 0;
3193
3194 /* The fragment is partially pulled by someone,
3195 * this can happen on input. Copy it and everything
3196 * after it. */
3197
3198 if (skb_shared(skb1))
3199 copyflag = 1;
3200
3201 /* If the skb is the last, worry about trailer. */
3202
3203 if (skb1->next == NULL && tailbits) {
3204 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003205 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003206 skb_tailroom(skb1) < tailbits)
3207 ntail = tailbits + 128;
3208 }
3209
3210 if (copyflag ||
3211 skb_cloned(skb1) ||
3212 ntail ||
3213 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003214 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003215 struct sk_buff *skb2;
3216
3217 /* Fuck, we are miserable poor guys... */
3218 if (ntail == 0)
3219 skb2 = skb_copy(skb1, GFP_ATOMIC);
3220 else
3221 skb2 = skb_copy_expand(skb1,
3222 skb_headroom(skb1),
3223 ntail,
3224 GFP_ATOMIC);
3225 if (unlikely(skb2 == NULL))
3226 return -ENOMEM;
3227
3228 if (skb1->sk)
3229 skb_set_owner_w(skb2, skb1->sk);
3230
3231 /* Looking around. Are we still alive?
3232 * OK, link new skb, drop old one */
3233
3234 skb2->next = skb1->next;
3235 *skb_p = skb2;
3236 kfree_skb(skb1);
3237 skb1 = skb2;
3238 }
3239 elt++;
3240 *trailer = skb1;
3241 skb_p = &skb1->next;
3242 }
3243
3244 return elt;
3245}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003246EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003247
Eric Dumazetb1faf562010-05-31 23:44:05 -07003248static void sock_rmem_free(struct sk_buff *skb)
3249{
3250 struct sock *sk = skb->sk;
3251
3252 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3253}
3254
3255/*
3256 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3257 */
3258int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3259{
Eric Dumazet110c4332012-04-06 10:49:10 +02003260 int len = skb->len;
3261
Eric Dumazetb1faf562010-05-31 23:44:05 -07003262 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003263 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003264 return -ENOMEM;
3265
3266 skb_orphan(skb);
3267 skb->sk = sk;
3268 skb->destructor = sock_rmem_free;
3269 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3270
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003271 /* before exiting rcu section, make sure dst is refcounted */
3272 skb_dst_force(skb);
3273
Eric Dumazetb1faf562010-05-31 23:44:05 -07003274 skb_queue_tail(&sk->sk_error_queue, skb);
3275 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003276 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003277 return 0;
3278}
3279EXPORT_SYMBOL(sock_queue_err_skb);
3280
Patrick Ohlyac45f602009-02-12 05:03:37 +00003281void skb_tstamp_tx(struct sk_buff *orig_skb,
3282 struct skb_shared_hwtstamps *hwtstamps)
3283{
3284 struct sock *sk = orig_skb->sk;
3285 struct sock_exterr_skb *serr;
3286 struct sk_buff *skb;
3287 int err;
3288
3289 if (!sk)
3290 return;
3291
3292 skb = skb_clone(orig_skb, GFP_ATOMIC);
3293 if (!skb)
3294 return;
3295
3296 if (hwtstamps) {
3297 *skb_hwtstamps(skb) =
3298 *hwtstamps;
3299 } else {
3300 /*
3301 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003302 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003303 * store software time stamp
3304 */
3305 skb->tstamp = ktime_get_real();
3306 }
3307
3308 serr = SKB_EXT_ERR(skb);
3309 memset(serr, 0, sizeof(*serr));
3310 serr->ee.ee_errno = ENOMSG;
3311 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003312
Patrick Ohlyac45f602009-02-12 05:03:37 +00003313 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003314
Patrick Ohlyac45f602009-02-12 05:03:37 +00003315 if (err)
3316 kfree_skb(skb);
3317}
3318EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3319
Johannes Berg6e3e9392011-11-09 10:15:42 +01003320void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3321{
3322 struct sock *sk = skb->sk;
3323 struct sock_exterr_skb *serr;
3324 int err;
3325
3326 skb->wifi_acked_valid = 1;
3327 skb->wifi_acked = acked;
3328
3329 serr = SKB_EXT_ERR(skb);
3330 memset(serr, 0, sizeof(*serr));
3331 serr->ee.ee_errno = ENOMSG;
3332 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3333
3334 err = sock_queue_err_skb(sk, skb);
3335 if (err)
3336 kfree_skb(skb);
3337}
3338EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3339
Patrick Ohlyac45f602009-02-12 05:03:37 +00003340
Rusty Russellf35d9d82008-02-04 23:49:54 -05003341/**
3342 * skb_partial_csum_set - set up and verify partial csum values for packet
3343 * @skb: the skb to set
3344 * @start: the number of bytes after skb->data to start checksumming.
3345 * @off: the offset from start to place the checksum.
3346 *
3347 * For untrusted partially-checksummed packets, we need to make sure the values
3348 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3349 *
3350 * This function checks and sets those values and skb->ip_summed: if this
3351 * returns false you should drop the packet.
3352 */
3353bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3354{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003355 if (unlikely(start > skb_headlen(skb)) ||
3356 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003357 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3358 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003359 return false;
3360 }
3361 skb->ip_summed = CHECKSUM_PARTIAL;
3362 skb->csum_start = skb_headroom(skb) + start;
3363 skb->csum_offset = off;
3364 return true;
3365}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003366EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003367
Ben Hutchings4497b072008-06-19 16:22:28 -07003368void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3369{
Joe Perchese87cc472012-05-13 21:56:26 +00003370 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3371 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003372}
Ben Hutchings4497b072008-06-19 16:22:28 -07003373EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003374
3375void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3376{
Eric Dumazet3d861f62012-10-22 09:03:40 +00003377 if (head_stolen) {
3378 skb_release_head_state(skb);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003379 kmem_cache_free(skbuff_head_cache, skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003380 } else {
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003381 __kfree_skb(skb);
Eric Dumazet3d861f62012-10-22 09:03:40 +00003382 }
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003383}
3384EXPORT_SYMBOL(kfree_skb_partial);
3385
3386/**
3387 * skb_try_coalesce - try to merge skb to prior one
3388 * @to: prior buffer
3389 * @from: buffer to add
3390 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003391 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003392 */
3393bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3394 bool *fragstolen, int *delta_truesize)
3395{
3396 int i, delta, len = from->len;
3397
3398 *fragstolen = false;
3399
3400 if (skb_cloned(to))
3401 return false;
3402
3403 if (len <= skb_tailroom(to)) {
3404 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3405 *delta_truesize = 0;
3406 return true;
3407 }
3408
3409 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3410 return false;
3411
3412 if (skb_headlen(from) != 0) {
3413 struct page *page;
3414 unsigned int offset;
3415
3416 if (skb_shinfo(to)->nr_frags +
3417 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3418 return false;
3419
3420 if (skb_head_is_locked(from))
3421 return false;
3422
3423 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3424
3425 page = virt_to_head_page(from->head);
3426 offset = from->data - (unsigned char *)page_address(page);
3427
3428 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3429 page, offset, skb_headlen(from));
3430 *fragstolen = true;
3431 } else {
3432 if (skb_shinfo(to)->nr_frags +
3433 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3434 return false;
3435
Weiping Panf4b549a2012-09-28 20:15:30 +00003436 delta = from->truesize - SKB_TRUESIZE(skb_end_offset(from));
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003437 }
3438
3439 WARN_ON_ONCE(delta < len);
3440
3441 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3442 skb_shinfo(from)->frags,
3443 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3444 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3445
3446 if (!skb_cloned(from))
3447 skb_shinfo(from)->nr_frags = 0;
3448
Li RongQing8ea853f2012-09-18 16:53:21 +00003449 /* if the skb is not cloned this does nothing
3450 * since we set nr_frags to 0.
3451 */
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003452 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3453 skb_frag_ref(from, i);
3454
3455 to->truesize += delta;
3456 to->len += len;
3457 to->data_len += len;
3458
3459 *delta_truesize = delta;
3460 return true;
3461}
3462EXPORT_SYMBOL(skb_try_coalesce);