blob: 368f65c15e4f92aa184bac5612b400d1e868c345 [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/*
108 * Keep out-of-line to prevent kernel bloat.
109 * __builtin_return_address is not used because it is not always
110 * reliable.
111 */
112
113/**
114 * skb_over_panic - private function
115 * @skb: buffer
116 * @sz: size
117 * @here: address
118 *
119 * Out of line support code for skb_put(). Not user callable.
120 */
Rami Rosenccb7c772010-04-20 22:39:53 -0700121static void skb_over_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Joe Perchese005d192012-05-16 19:58:40 +0000123 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
124 __func__, here, skb->len, sz, skb->head, skb->data,
125 (unsigned long)skb->tail, (unsigned long)skb->end,
126 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 BUG();
128}
129
130/**
131 * skb_under_panic - private function
132 * @skb: buffer
133 * @sz: size
134 * @here: address
135 *
136 * Out of line support code for skb_push(). Not user callable.
137 */
138
Rami Rosenccb7c772010-04-20 22:39:53 -0700139static void skb_under_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Joe Perchese005d192012-05-16 19:58:40 +0000141 pr_emerg("%s: text:%p len:%d put:%d head:%p data:%p tail:%#lx end:%#lx dev:%s\n",
142 __func__, here, skb->len, sz, skb->head, skb->data,
143 (unsigned long)skb->tail, (unsigned long)skb->end,
144 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 BUG();
146}
147
148/* Allocate a new skbuff. We do this ourselves so we can fill in a few
149 * 'private' fields and also do memory statistics to find all the
150 * [BEEP] leaks.
151 *
152 */
153
154/**
David S. Millerd179cd12005-08-17 14:57:30 -0700155 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * @size: size to allocate
157 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700158 * @fclone: allocate from fclone cache instead of head cache
159 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800160 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
162 * Allocate a new &sk_buff. The returned buffer has no headroom and a
Ben Hutchings94b60422012-06-06 15:23:37 +0000163 * tail room of at least size bytes. The object has a reference count
164 * of one. The return is the buffer. On a failure the return is %NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 *
166 * Buffers may only be allocated from interrupts using a @gfp_mask of
167 * %GFP_ATOMIC.
168 */
Al Virodd0fc662005-10-07 07:46:04 +0100169struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800170 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Christoph Lametere18b8902006-12-06 20:33:20 -0800172 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800173 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 struct sk_buff *skb;
175 u8 *data;
176
Herbert Xu8798b3f2006-01-23 16:32:45 -0800177 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800180 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (!skb)
182 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700183 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000185 /* We do our best to align skb_shared_info on a separate cache
186 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
187 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
188 * Both skb->head and skb_shared_info are cache line aligned.
189 */
Tony Lindgrenbc417e32011-11-02 13:40:28 +0000190 size = SKB_DATA_ALIGN(size);
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000191 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
192 data = kmalloc_node_track_caller(size, gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (!data)
194 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000195 /* kmalloc(size) might give us more room than requested.
196 * Put skb_shared_info exactly at the end of allocated zone,
197 * to allow max possible filling before reallocation.
198 */
199 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700200 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300202 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700203 * Only clear those fields we need to clear, not those that we will
204 * actually initialise below. Hence, don't put any more fields after
205 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300206 */
207 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000208 /* Account for allocated memory : skb + skb->head */
209 skb->truesize = SKB_TRUESIZE(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 atomic_set(&skb->users, 1);
211 skb->head = data;
212 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700213 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700214 skb->end = skb->tail + size;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000215#ifdef NET_SKBUFF_DATA_USES_OFFSET
216 skb->mac_header = ~0U;
217#endif
218
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800219 /* make sure we initialize shinfo sequentially */
220 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700221 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800222 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000223 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800224
David S. Millerd179cd12005-08-17 14:57:30 -0700225 if (fclone) {
226 struct sk_buff *child = skb + 1;
227 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200229 kmemcheck_annotate_bitfield(child, flags1);
230 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700231 skb->fclone = SKB_FCLONE_ORIG;
232 atomic_set(fclone_ref, 1);
233
234 child->fclone = SKB_FCLONE_UNAVAILABLE;
235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236out:
237 return skb;
238nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800239 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 skb = NULL;
241 goto out;
242}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800243EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245/**
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000246 * build_skb - build a network buffer
247 * @data: data buffer provided by caller
Eric Dumazetd3836f22012-04-27 00:33:38 +0000248 * @frag_size: size of fragment, or 0 if head was kmalloced
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000249 *
250 * Allocate a new &sk_buff. Caller provides space holding head and
251 * skb_shared_info. @data must have been allocated by kmalloc()
252 * The return is the new skb buffer.
253 * On a failure the return is %NULL, and @data is not freed.
254 * Notes :
255 * Before IO, driver allocates only data buffer where NIC put incoming frame
256 * Driver should add room at head (NET_SKB_PAD) and
257 * MUST add room at tail (SKB_DATA_ALIGN(skb_shared_info))
258 * After IO, driver calls build_skb(), to allocate sk_buff and populate it
259 * before giving packet to stack.
260 * RX rings only contains data buffers, not full skbs.
261 */
Eric Dumazetd3836f22012-04-27 00:33:38 +0000262struct sk_buff *build_skb(void *data, unsigned int frag_size)
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000263{
264 struct skb_shared_info *shinfo;
265 struct sk_buff *skb;
Eric Dumazetd3836f22012-04-27 00:33:38 +0000266 unsigned int size = frag_size ? : ksize(data);
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000267
268 skb = kmem_cache_alloc(skbuff_head_cache, GFP_ATOMIC);
269 if (!skb)
270 return NULL;
271
Eric Dumazetd3836f22012-04-27 00:33:38 +0000272 size -= SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000273
274 memset(skb, 0, offsetof(struct sk_buff, tail));
275 skb->truesize = SKB_TRUESIZE(size);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000276 skb->head_frag = frag_size != 0;
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000277 atomic_set(&skb->users, 1);
278 skb->head = data;
279 skb->data = data;
280 skb_reset_tail_pointer(skb);
281 skb->end = skb->tail + size;
282#ifdef NET_SKBUFF_DATA_USES_OFFSET
283 skb->mac_header = ~0U;
284#endif
285
286 /* make sure we initialize shinfo sequentially */
287 shinfo = skb_shinfo(skb);
288 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
289 atomic_set(&shinfo->dataref, 1);
290 kmemcheck_annotate_variable(shinfo->destructor_arg);
291
292 return skb;
293}
294EXPORT_SYMBOL(build_skb);
295
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000296struct netdev_alloc_cache {
297 struct page *page;
298 unsigned int offset;
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000299 unsigned int pagecnt_bias;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000300};
301static DEFINE_PER_CPU(struct netdev_alloc_cache, netdev_alloc_cache);
302
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000303#define NETDEV_PAGECNT_BIAS (PAGE_SIZE / SMP_CACHE_BYTES)
304
Eric Dumazetb2b5ce92011-11-14 06:03:34 +0000305/**
Eric Dumazet6f532612012-05-18 05:12:12 +0000306 * netdev_alloc_frag - allocate a page fragment
307 * @fragsz: fragment size
308 *
309 * Allocates a frag from a page for receive buffer.
310 * Uses GFP_ATOMIC allocations.
311 */
312void *netdev_alloc_frag(unsigned int fragsz)
313{
314 struct netdev_alloc_cache *nc;
315 void *data = NULL;
316 unsigned long flags;
317
318 local_irq_save(flags);
319 nc = &__get_cpu_var(netdev_alloc_cache);
320 if (unlikely(!nc->page)) {
321refill:
322 nc->page = alloc_page(GFP_ATOMIC | __GFP_COLD);
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000323 if (unlikely(!nc->page))
324 goto end;
325recycle:
326 atomic_set(&nc->page->_count, NETDEV_PAGECNT_BIAS);
327 nc->pagecnt_bias = NETDEV_PAGECNT_BIAS;
Eric Dumazet6f532612012-05-18 05:12:12 +0000328 nc->offset = 0;
329 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000330
331 if (nc->offset + fragsz > PAGE_SIZE) {
332 /* avoid unnecessary locked operations if possible */
333 if ((atomic_read(&nc->page->_count) == nc->pagecnt_bias) ||
334 atomic_sub_and_test(nc->pagecnt_bias, &nc->page->_count))
335 goto recycle;
336 goto refill;
Eric Dumazet6f532612012-05-18 05:12:12 +0000337 }
Alexander Duyck540eb7b2012-07-12 14:23:50 +0000338
339 data = page_address(nc->page) + nc->offset;
340 nc->offset += fragsz;
341 nc->pagecnt_bias--;
342end:
Eric Dumazet6f532612012-05-18 05:12:12 +0000343 local_irq_restore(flags);
344 return data;
345}
346EXPORT_SYMBOL(netdev_alloc_frag);
347
348/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700349 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
350 * @dev: network device to receive on
351 * @length: length to allocate
352 * @gfp_mask: get_free_pages mask, passed to alloc_skb
353 *
354 * Allocate a new &sk_buff and assign it a usage count of one. The
355 * buffer has unspecified headroom built in. Users should allocate
356 * the headroom they think they need without accounting for the
357 * built in space. The built in space is used for optimisations.
358 *
359 * %NULL is returned if there is no free memory.
360 */
361struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
Eric Dumazet6f532612012-05-18 05:12:12 +0000362 unsigned int length, gfp_t gfp_mask)
Christoph Hellwig8af27452006-07-31 22:35:23 -0700363{
Eric Dumazet6f532612012-05-18 05:12:12 +0000364 struct sk_buff *skb = NULL;
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000365 unsigned int fragsz = SKB_DATA_ALIGN(length + NET_SKB_PAD) +
366 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Christoph Hellwig8af27452006-07-31 22:35:23 -0700367
Eric Dumazet310e1582012-07-16 13:15:52 +0200368 if (fragsz <= PAGE_SIZE && !(gfp_mask & (__GFP_WAIT | GFP_DMA))) {
Eric Dumazet6f532612012-05-18 05:12:12 +0000369 void *data = netdev_alloc_frag(fragsz);
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000370
Eric Dumazet6f532612012-05-18 05:12:12 +0000371 if (likely(data)) {
372 skb = build_skb(data, fragsz);
373 if (unlikely(!skb))
374 put_page(virt_to_head_page(data));
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000375 }
Eric Dumazeta1c7fff2012-05-17 07:34:16 +0000376 } else {
377 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, NUMA_NO_NODE);
378 }
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700379 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700380 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700381 skb->dev = dev;
382 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700383 return skb;
384}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800385EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Peter Zijlstra654bed12008-10-07 14:22:33 -0700387void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
Eric Dumazet50269e12012-03-23 23:59:33 +0000388 int size, unsigned int truesize)
Peter Zijlstra654bed12008-10-07 14:22:33 -0700389{
390 skb_fill_page_desc(skb, i, page, off, size);
391 skb->len += size;
392 skb->data_len += size;
Eric Dumazet50269e12012-03-23 23:59:33 +0000393 skb->truesize += truesize;
Peter Zijlstra654bed12008-10-07 14:22:33 -0700394}
395EXPORT_SYMBOL(skb_add_rx_frag);
396
Herbert Xu27b437c2006-07-13 19:26:39 -0700397static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Herbert Xu27b437c2006-07-13 19:26:39 -0700399 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Herbert Xu27b437c2006-07-13 19:26:39 -0700401 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 do {
404 struct sk_buff *this = list;
405 list = list->next;
406 kfree_skb(this);
407 } while (list);
408}
409
Herbert Xu27b437c2006-07-13 19:26:39 -0700410static inline void skb_drop_fraglist(struct sk_buff *skb)
411{
412 skb_drop_list(&skb_shinfo(skb)->frag_list);
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static void skb_clone_fraglist(struct sk_buff *skb)
416{
417 struct sk_buff *list;
418
David S. Millerfbb398a2009-06-09 00:18:59 -0700419 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 skb_get(list);
421}
422
Eric Dumazetd3836f22012-04-27 00:33:38 +0000423static void skb_free_head(struct sk_buff *skb)
424{
425 if (skb->head_frag)
426 put_page(virt_to_head_page(skb->head));
427 else
428 kfree(skb->head);
429}
430
Adrian Bunk5bba1712006-06-29 13:02:35 -0700431static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 if (!skb->cloned ||
434 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
435 &skb_shinfo(skb)->dataref)) {
436 if (skb_shinfo(skb)->nr_frags) {
437 int i;
438 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000439 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Shirley Maa6686f22011-07-06 12:22:12 +0000442 /*
443 * If skb buf is from userspace, we need to notify the caller
444 * the lower device DMA has done;
445 */
446 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
447 struct ubuf_info *uarg;
448
449 uarg = skb_shinfo(skb)->destructor_arg;
450 if (uarg->callback)
451 uarg->callback(uarg);
452 }
453
David S. Miller21dc3302010-08-23 00:13:46 -0700454 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 skb_drop_fraglist(skb);
456
Eric Dumazetd3836f22012-04-27 00:33:38 +0000457 skb_free_head(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459}
460
461/*
462 * Free an skbuff by memory without cleaning the state.
463 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800464static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
David S. Millerd179cd12005-08-17 14:57:30 -0700466 struct sk_buff *other;
467 atomic_t *fclone_ref;
468
David S. Millerd179cd12005-08-17 14:57:30 -0700469 switch (skb->fclone) {
470 case SKB_FCLONE_UNAVAILABLE:
471 kmem_cache_free(skbuff_head_cache, skb);
472 break;
473
474 case SKB_FCLONE_ORIG:
475 fclone_ref = (atomic_t *) (skb + 2);
476 if (atomic_dec_and_test(fclone_ref))
477 kmem_cache_free(skbuff_fclone_cache, skb);
478 break;
479
480 case SKB_FCLONE_CLONE:
481 fclone_ref = (atomic_t *) (skb + 1);
482 other = skb - 1;
483
484 /* The clone portion is available for
485 * fast-cloning again.
486 */
487 skb->fclone = SKB_FCLONE_UNAVAILABLE;
488
489 if (atomic_dec_and_test(fclone_ref))
490 kmem_cache_free(skbuff_fclone_cache, other);
491 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700495static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Eric Dumazetadf30902009-06-02 05:19:30 +0000497 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#ifdef CONFIG_XFRM
499 secpath_put(skb->sp);
500#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700501 if (skb->destructor) {
502 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 skb->destructor(skb);
504 }
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000505#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700506 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100507#endif
508#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800509 nf_conntrack_put_reasm(skb->nfct_reasm);
510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511#ifdef CONFIG_BRIDGE_NETFILTER
512 nf_bridge_put(skb->nf_bridge);
513#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/* XXX: IS this still necessary? - JHS */
515#ifdef CONFIG_NET_SCHED
516 skb->tc_index = 0;
517#ifdef CONFIG_NET_CLS_ACT
518 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519#endif
520#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700521}
522
523/* Free everything but the sk_buff shell. */
524static void skb_release_all(struct sk_buff *skb)
525{
526 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800527 skb_release_data(skb);
528}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Herbert Xu2d4baff2007-11-26 23:11:19 +0800530/**
531 * __kfree_skb - private function
532 * @skb: buffer
533 *
534 * Free an sk_buff. Release anything attached to the buffer.
535 * Clean the state. This is an internal helper function. Users should
536 * always call kfree_skb
537 */
538
539void __kfree_skb(struct sk_buff *skb)
540{
541 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 kfree_skbmem(skb);
543}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800544EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800547 * kfree_skb - free an sk_buff
548 * @skb: buffer to free
549 *
550 * Drop a reference to the buffer and free it if the usage count has
551 * hit zero.
552 */
553void kfree_skb(struct sk_buff *skb)
554{
555 if (unlikely(!skb))
556 return;
557 if (likely(atomic_read(&skb->users) == 1))
558 smp_rmb();
559 else if (likely(!atomic_dec_and_test(&skb->users)))
560 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000561 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800562 __kfree_skb(skb);
563}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800564EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800565
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700566/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000567 * consume_skb - free an skbuff
568 * @skb: buffer to free
569 *
570 * Drop a ref to the buffer and free it if the usage count has hit zero
571 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
572 * is being dropped after a failure and notes that
573 */
574void consume_skb(struct sk_buff *skb)
575{
576 if (unlikely(!skb))
577 return;
578 if (likely(atomic_read(&skb->users) == 1))
579 smp_rmb();
580 else if (likely(!atomic_dec_and_test(&skb->users)))
581 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900582 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000583 __kfree_skb(skb);
584}
585EXPORT_SYMBOL(consume_skb);
586
587/**
Andy Fleming3d153a72011-10-13 04:33:54 +0000588 * skb_recycle - clean up an skb for reuse
589 * @skb: buffer
590 *
591 * Recycles the skb to be reused as a receive buffer. This
592 * function does any necessary reference count dropping, and
593 * cleans up the skbuff as if it just came from __alloc_skb().
594 */
595void skb_recycle(struct sk_buff *skb)
596{
597 struct skb_shared_info *shinfo;
598
599 skb_release_head_state(skb);
600
601 shinfo = skb_shinfo(skb);
602 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
603 atomic_set(&shinfo->dataref, 1);
604
605 memset(skb, 0, offsetof(struct sk_buff, tail));
606 skb->data = skb->head + NET_SKB_PAD;
607 skb_reset_tail_pointer(skb);
608}
609EXPORT_SYMBOL(skb_recycle);
610
611/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700612 * skb_recycle_check - check if skb can be reused for receive
613 * @skb: buffer
614 * @skb_size: minimum receive buffer size
615 *
616 * Checks that the skb passed in is not shared or cloned, and
617 * that it is linear and its head portion at least as large as
618 * skb_size so that it can be recycled as a receive buffer.
619 * If these conditions are met, this function does any necessary
620 * reference count dropping and cleans up the skbuff as if it
621 * just came from __alloc_skb().
622 */
Changli Gao5b0daa32010-05-29 00:12:13 -0700623bool skb_recycle_check(struct sk_buff *skb, int skb_size)
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700624{
Andy Fleming3d153a72011-10-13 04:33:54 +0000625 if (!skb_is_recycleable(skb, skb_size))
Changli Gao5b0daa32010-05-29 00:12:13 -0700626 return false;
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000627
Andy Fleming3d153a72011-10-13 04:33:54 +0000628 skb_recycle(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700629
Changli Gao5b0daa32010-05-29 00:12:13 -0700630 return true;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700631}
632EXPORT_SYMBOL(skb_recycle_check);
633
Herbert Xudec18812007-10-14 00:37:30 -0700634static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
635{
636 new->tstamp = old->tstamp;
637 new->dev = old->dev;
638 new->transport_header = old->transport_header;
639 new->network_header = old->network_header;
640 new->mac_header = old->mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000641 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000642 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000643 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000644 new->l4_rxhash = old->l4_rxhash;
Ben Greear3bdc0eb2012-02-11 15:39:30 +0000645 new->no_fcs = old->no_fcs;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700646#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700647 new->sp = secpath_get(old->sp);
648#endif
649 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000650 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700651 new->local_df = old->local_df;
652 new->pkt_type = old->pkt_type;
653 new->ip_summed = old->ip_summed;
654 skb_copy_queue_mapping(new, old);
655 new->priority = old->priority;
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000656#if IS_ENABLED(CONFIG_IP_VS)
Herbert Xudec18812007-10-14 00:37:30 -0700657 new->ipvs_property = old->ipvs_property;
658#endif
659 new->protocol = old->protocol;
660 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800661 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700662 __nf_copy(new, old);
Igor Maravića3bf7ae2011-12-12 02:58:22 +0000663#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
Herbert Xudec18812007-10-14 00:37:30 -0700664 new->nf_trace = old->nf_trace;
665#endif
666#ifdef CONFIG_NET_SCHED
667 new->tc_index = old->tc_index;
668#ifdef CONFIG_NET_CLS_ACT
669 new->tc_verd = old->tc_verd;
670#endif
671#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700672 new->vlan_tci = old->vlan_tci;
673
Herbert Xudec18812007-10-14 00:37:30 -0700674 skb_copy_secmark(new, old);
675}
676
Herbert Xu82c49a32009-05-22 22:11:37 +0000677/*
678 * You should not add any new code to this function. Add it to
679 * __copy_skb_header above instead.
680 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700681static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#define C(x) n->x = skb->x
684
685 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700687 __copy_skb_header(n, skb);
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 C(len);
690 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700691 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700692 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800693 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 C(tail);
697 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800698 C(head);
Eric Dumazetd3836f22012-04-27 00:33:38 +0000699 C(head_frag);
Paul Moore02f1c892008-01-07 21:56:41 -0800700 C(data);
701 C(truesize);
702 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 atomic_inc(&(skb_shinfo(skb)->dataref));
705 skb->cloned = 1;
706
707 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700708#undef C
709}
710
711/**
712 * skb_morph - morph one skb into another
713 * @dst: the skb to receive the contents
714 * @src: the skb to supply the contents
715 *
716 * This is identical to skb_clone except that the target skb is
717 * supplied by the user.
718 *
719 * The target skb is returned upon exit.
720 */
721struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
722{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800723 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700724 return __skb_clone(dst, src);
725}
726EXPORT_SYMBOL_GPL(skb_morph);
727
Ben Hutchings2c530402012-07-10 10:55:09 +0000728/**
729 * skb_copy_ubufs - copy userspace skb frags buffers to kernel
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000730 * @skb: the skb to modify
731 * @gfp_mask: allocation priority
732 *
733 * This must be called on SKBTX_DEV_ZEROCOPY skb.
734 * It will copy all frags into kernel and drop the reference
735 * to userspace pages.
736 *
737 * If this function is called from an interrupt gfp_mask() must be
738 * %GFP_ATOMIC.
739 *
740 * Returns 0 on success or a negative error code on failure
741 * to allocate kernel memory to copy to.
742 */
743int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000744{
745 int i;
746 int num_frags = skb_shinfo(skb)->nr_frags;
747 struct page *page, *head = NULL;
748 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
749
750 for (i = 0; i < num_frags; i++) {
751 u8 *vaddr;
752 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
753
Krishna Kumar02756ed2012-07-17 02:05:29 +0000754 page = alloc_page(gfp_mask);
Shirley Maa6686f22011-07-06 12:22:12 +0000755 if (!page) {
756 while (head) {
757 struct page *next = (struct page *)head->private;
758 put_page(head);
759 head = next;
760 }
761 return -ENOMEM;
762 }
Eric Dumazet51c56b02012-04-05 11:35:15 +0200763 vaddr = kmap_atomic(skb_frag_page(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000764 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000765 vaddr + f->page_offset, skb_frag_size(f));
Eric Dumazet51c56b02012-04-05 11:35:15 +0200766 kunmap_atomic(vaddr);
Shirley Maa6686f22011-07-06 12:22:12 +0000767 page->private = (unsigned long)head;
768 head = page;
769 }
770
771 /* skb frags release userspace buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000772 for (i = 0; i < num_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000773 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000774
775 uarg->callback(uarg);
776
777 /* skb frags point to kernel buffers */
Krishna Kumar02756ed2012-07-17 02:05:29 +0000778 for (i = num_frags - 1; i >= 0; i--) {
779 __skb_fill_page_desc(skb, i, head, 0,
780 skb_shinfo(skb)->frags[i].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000781 head = (struct page *)head->private;
782 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000783
784 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000785 return 0;
786}
Michael S. Tsirkindcc0fb72012-07-20 09:23:20 +0000787EXPORT_SYMBOL_GPL(skb_copy_ubufs);
Shirley Maa6686f22011-07-06 12:22:12 +0000788
Herbert Xue0053ec2007-10-14 00:37:52 -0700789/**
790 * skb_clone - duplicate an sk_buff
791 * @skb: buffer to clone
792 * @gfp_mask: allocation priority
793 *
794 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
795 * copies share the same packet data but not structure. The new
796 * buffer has a reference count of 1. If the allocation fails the
797 * function returns %NULL otherwise the new buffer is returned.
798 *
799 * If this function is called from an interrupt gfp_mask() must be
800 * %GFP_ATOMIC.
801 */
802
803struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
804{
805 struct sk_buff *n;
806
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000807 if (skb_orphan_frags(skb, gfp_mask))
808 return NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000809
Herbert Xue0053ec2007-10-14 00:37:52 -0700810 n = skb + 1;
811 if (skb->fclone == SKB_FCLONE_ORIG &&
812 n->fclone == SKB_FCLONE_UNAVAILABLE) {
813 atomic_t *fclone_ref = (atomic_t *) (n + 1);
814 n->fclone = SKB_FCLONE_CLONE;
815 atomic_inc(fclone_ref);
816 } else {
817 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
818 if (!n)
819 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200820
821 kmemcheck_annotate_bitfield(n, flags1);
822 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700823 n->fclone = SKB_FCLONE_UNAVAILABLE;
824 }
825
826 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800828EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
831{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700832#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /*
834 * Shift between the two data areas in bytes
835 */
836 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700837#endif
Herbert Xudec18812007-10-14 00:37:30 -0700838
839 __copy_skb_header(new, old);
840
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700841#ifndef NET_SKBUFF_DATA_USES_OFFSET
842 /* {transport,network,mac}_header are relative to skb->head */
843 new->transport_header += offset;
844 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000845 if (skb_mac_header_was_set(new))
846 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700847#endif
Herbert Xu79671682006-06-22 02:40:14 -0700848 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
849 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
850 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
853/**
854 * skb_copy - create private copy of an sk_buff
855 * @skb: buffer to copy
856 * @gfp_mask: allocation priority
857 *
858 * Make a copy of both an &sk_buff and its data. This is used when the
859 * caller wishes to modify the data and needs a private copy of the
860 * data to alter. Returns %NULL on failure or the pointer to the buffer
861 * on success. The returned buffer has a reference count of 1.
862 *
863 * As by-product this function converts non-linear &sk_buff to linear
864 * one, so that &sk_buff becomes completely private and caller is allowed
865 * to modify all the data of returned buffer. This means that this
866 * function is not recommended for use in circumstances when only
867 * header is going to be modified. Use pskb_copy() instead.
868 */
869
Al Virodd0fc662005-10-07 07:46:04 +0100870struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000872 int headerlen = skb_headroom(skb);
Alexander Duyckec47ea82012-05-04 14:26:56 +0000873 unsigned int size = skb_end_offset(skb) + skb->data_len;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000874 struct sk_buff *n = alloc_skb(size, gfp_mask);
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!n)
877 return NULL;
878
879 /* Set the data pointer */
880 skb_reserve(n, headerlen);
881 /* Set the tail pointer and length */
882 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
885 BUG();
886
887 copy_skb_header(n, skb);
888 return n;
889}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800890EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892/**
Eric Dumazet117632e2011-12-03 21:39:53 +0000893 * __pskb_copy - create copy of an sk_buff with private head.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * @skb: buffer to copy
Eric Dumazet117632e2011-12-03 21:39:53 +0000895 * @headroom: headroom of new skb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 * @gfp_mask: allocation priority
897 *
898 * Make a copy of both an &sk_buff and part of its data, located
899 * in header. Fragmented data remain shared. This is used when
900 * the caller wishes to modify only header of &sk_buff and needs
901 * private copy of the header to alter. Returns %NULL on failure
902 * or the pointer to the buffer on success.
903 * The returned buffer has a reference count of 1.
904 */
905
Eric Dumazet117632e2011-12-03 21:39:53 +0000906struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Eric Dumazet117632e2011-12-03 21:39:53 +0000908 unsigned int size = skb_headlen(skb) + headroom;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000909 struct sk_buff *n = alloc_skb(size, gfp_mask);
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!n)
912 goto out;
913
914 /* Set the data pointer */
Eric Dumazet117632e2011-12-03 21:39:53 +0000915 skb_reserve(n, headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* Set the tail pointer and length */
917 skb_put(n, skb_headlen(skb));
918 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300919 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Herbert Xu25f484a2006-11-07 14:57:15 -0800921 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 n->data_len = skb->data_len;
923 n->len = skb->len;
924
925 if (skb_shinfo(skb)->nr_frags) {
926 int i;
927
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +0000928 if (skb_orphan_frags(skb, gfp_mask)) {
929 kfree_skb(n);
930 n = NULL;
931 goto out;
Shirley Maa6686f22011-07-06 12:22:12 +0000932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
934 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +0000935 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 skb_shinfo(n)->nr_frags = i;
938 }
939
David S. Miller21dc3302010-08-23 00:13:46 -0700940 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
942 skb_clone_fraglist(n);
943 }
944
945 copy_skb_header(n, skb);
946out:
947 return n;
948}
Eric Dumazet117632e2011-12-03 21:39:53 +0000949EXPORT_SYMBOL(__pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951/**
952 * pskb_expand_head - reallocate header of &sk_buff
953 * @skb: buffer to reallocate
954 * @nhead: room to add at head
955 * @ntail: room to add at tail
956 * @gfp_mask: allocation priority
957 *
958 * Expands (or creates identical copy, if &nhead and &ntail are zero)
959 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
960 * reference count of 1. Returns zero in the case of success or error,
961 * if expansion failed. In the last case, &sk_buff is not changed.
962 *
963 * All the pointers pointing into skb header may change and must be
964 * reloaded after call to this function.
965 */
966
Victor Fusco86a76ca2005-07-08 14:57:47 -0700967int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100968 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 int i;
971 u8 *data;
Alexander Duyckec47ea82012-05-04 14:26:56 +0000972 int size = nhead + skb_end_offset(skb) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 long off;
974
Herbert Xu4edd87a2008-10-01 07:09:38 -0700975 BUG_ON(nhead < 0);
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (skb_shared(skb))
978 BUG();
979
980 size = SKB_DATA_ALIGN(size);
981
Eric Dumazet87151b82012-04-10 20:08:39 +0000982 data = kmalloc(size + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)),
983 gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!data)
985 goto nodata;
Eric Dumazet87151b82012-04-10 20:08:39 +0000986 size = SKB_WITH_OVERHEAD(ksize(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000989 * optimized for the cases when header is void.
990 */
991 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
992
993 memcpy((struct skb_shared_info *)(data + size),
994 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +0000995 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Alexander Duyck3e245912012-05-04 14:26:51 +0000997 /*
998 * if shinfo is shared we must drop the old head gracefully, but if it
999 * is not we can just drop the old head and let the existing refcount
1000 * be since all we did is relocate the values
1001 */
1002 if (skb_cloned(skb)) {
Shirley Maa6686f22011-07-06 12:22:12 +00001003 /* copy this zero copy skb frags */
Michael S. Tsirkin70008aa2012-07-20 09:23:10 +00001004 if (skb_orphan_frags(skb, gfp_mask))
1005 goto nofrags;
Eric Dumazet1fd63042010-09-02 23:09:32 +00001006 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001007 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Eric Dumazet1fd63042010-09-02 23:09:32 +00001009 if (skb_has_frag_list(skb))
1010 skb_clone_fraglist(skb);
1011
1012 skb_release_data(skb);
Alexander Duyck3e245912012-05-04 14:26:51 +00001013 } else {
1014 skb_free_head(skb);
Eric Dumazet1fd63042010-09-02 23:09:32 +00001015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 off = (data + nhead) - skb->head;
1017
1018 skb->head = data;
Eric Dumazetd3836f22012-04-27 00:33:38 +00001019 skb->head_frag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001021#ifdef NET_SKBUFF_DATA_USES_OFFSET
1022 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001023 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001024#else
1025 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -07001026#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001027 /* {transport,network,mac}_header and tail are relative to skb->head */
1028 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001029 skb->transport_header += off;
1030 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001031 if (skb_mac_header_was_set(skb))
1032 skb->mac_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +00001033 /* Only adjust this if it actually is csum_start rather than csum */
1034 if (skb->ip_summed == CHECKSUM_PARTIAL)
1035 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -07001037 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 skb->nohdr = 0;
1039 atomic_set(&skb_shinfo(skb)->dataref, 1);
1040 return 0;
1041
Shirley Maa6686f22011-07-06 12:22:12 +00001042nofrags:
1043 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044nodata:
1045 return -ENOMEM;
1046}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001047EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049/* Make private copy of skb with writable head and some headroom */
1050
1051struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
1052{
1053 struct sk_buff *skb2;
1054 int delta = headroom - skb_headroom(skb);
1055
1056 if (delta <= 0)
1057 skb2 = pskb_copy(skb, GFP_ATOMIC);
1058 else {
1059 skb2 = skb_clone(skb, GFP_ATOMIC);
1060 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
1061 GFP_ATOMIC)) {
1062 kfree_skb(skb2);
1063 skb2 = NULL;
1064 }
1065 }
1066 return skb2;
1067}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001068EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070/**
1071 * skb_copy_expand - copy and expand sk_buff
1072 * @skb: buffer to copy
1073 * @newheadroom: new free bytes at head
1074 * @newtailroom: new free bytes at tail
1075 * @gfp_mask: allocation priority
1076 *
1077 * Make a copy of both an &sk_buff and its data and while doing so
1078 * allocate additional space.
1079 *
1080 * This is used when the caller wishes to modify the data and needs a
1081 * private copy of the data to alter as well as more space for new fields.
1082 * Returns %NULL on failure or the pointer to the buffer
1083 * on success. The returned buffer has a reference count of 1.
1084 *
1085 * You must pass %GFP_ATOMIC as the allocation priority if this function
1086 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 */
1088struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001089 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001090 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 /*
1093 * Allocate the copy buffer
1094 */
1095 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
1096 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001097 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001099 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 if (!n)
1102 return NULL;
1103
1104 skb_reserve(n, newheadroom);
1105
1106 /* Set the tail pointer and length */
1107 skb_put(n, skb->len);
1108
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001109 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 head_copy_off = 0;
1111 if (newheadroom <= head_copy_len)
1112 head_copy_len = newheadroom;
1113 else
1114 head_copy_off = newheadroom - head_copy_len;
1115
1116 /* Copy the linear header and data. */
1117 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1118 skb->len + head_copy_len))
1119 BUG();
1120
1121 copy_skb_header(n, skb);
1122
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001123 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001124 if (n->ip_summed == CHECKSUM_PARTIAL)
1125 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001126#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001127 n->transport_header += off;
1128 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001129 if (skb_mac_header_was_set(skb))
1130 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -07001131#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return n;
1134}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001135EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137/**
1138 * skb_pad - zero pad the tail of an skb
1139 * @skb: buffer to pad
1140 * @pad: space to pad
1141 *
1142 * Ensure that a buffer is followed by a padding area that is zero
1143 * filled. Used by network drivers which may DMA or transfer data
1144 * beyond the buffer end onto the wire.
1145 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001146 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001148
Herbert Xu5b057c62006-06-23 02:06:41 -07001149int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Herbert Xu5b057c62006-06-23 02:06:41 -07001151 int err;
1152 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001155 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001159
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001160 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001161 if (likely(skb_cloned(skb) || ntail > 0)) {
1162 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1163 if (unlikely(err))
1164 goto free_skb;
1165 }
1166
1167 /* FIXME: The use of this function with non-linear skb's really needs
1168 * to be audited.
1169 */
1170 err = skb_linearize(skb);
1171 if (unlikely(err))
1172 goto free_skb;
1173
1174 memset(skb->data + skb->len, 0, pad);
1175 return 0;
1176
1177free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001179 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001180}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001181EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001182
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001183/**
1184 * skb_put - add data to a buffer
1185 * @skb: buffer to use
1186 * @len: amount of data to add
1187 *
1188 * This function extends the used data area of the buffer. If this would
1189 * exceed the total buffer size the kernel will panic. A pointer to the
1190 * first byte of the extra data is returned.
1191 */
1192unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1193{
1194 unsigned char *tmp = skb_tail_pointer(skb);
1195 SKB_LINEAR_ASSERT(skb);
1196 skb->tail += len;
1197 skb->len += len;
1198 if (unlikely(skb->tail > skb->end))
1199 skb_over_panic(skb, len, __builtin_return_address(0));
1200 return tmp;
1201}
1202EXPORT_SYMBOL(skb_put);
1203
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001204/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001205 * skb_push - add data to the start of a buffer
1206 * @skb: buffer to use
1207 * @len: amount of data to add
1208 *
1209 * This function extends the used data area of the buffer at the buffer
1210 * start. If this would exceed the total buffer headroom the kernel will
1211 * panic. A pointer to the first byte of the extra data is returned.
1212 */
1213unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1214{
1215 skb->data -= len;
1216 skb->len += len;
1217 if (unlikely(skb->data<skb->head))
1218 skb_under_panic(skb, len, __builtin_return_address(0));
1219 return skb->data;
1220}
1221EXPORT_SYMBOL(skb_push);
1222
1223/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001224 * skb_pull - remove data from the start of a buffer
1225 * @skb: buffer to use
1226 * @len: amount of data to remove
1227 *
1228 * This function removes data from the start of a buffer, returning
1229 * the memory to the headroom. A pointer to the next data in the buffer
1230 * is returned. Once the data has been pulled future pushes will overwrite
1231 * the old data.
1232 */
1233unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1234{
David S. Miller47d29642010-05-02 02:21:44 -07001235 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001236}
1237EXPORT_SYMBOL(skb_pull);
1238
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001239/**
1240 * skb_trim - remove end from a buffer
1241 * @skb: buffer to alter
1242 * @len: new length
1243 *
1244 * Cut the length of a buffer down by removing data from the tail. If
1245 * the buffer is already under the length specified it is not modified.
1246 * The skb must be linear.
1247 */
1248void skb_trim(struct sk_buff *skb, unsigned int len)
1249{
1250 if (skb->len > len)
1251 __skb_trim(skb, len);
1252}
1253EXPORT_SYMBOL(skb_trim);
1254
Herbert Xu3cc0e872006-06-09 16:13:38 -07001255/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 */
1257
Herbert Xu3cc0e872006-06-09 16:13:38 -07001258int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Herbert Xu27b437c2006-07-13 19:26:39 -07001260 struct sk_buff **fragp;
1261 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int offset = skb_headlen(skb);
1263 int nfrags = skb_shinfo(skb)->nr_frags;
1264 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001265 int err;
1266
1267 if (skb_cloned(skb) &&
1268 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1269 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001271 i = 0;
1272 if (offset >= len)
1273 goto drop_pages;
1274
1275 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001276 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001277
1278 if (end < len) {
1279 offset = end;
1280 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001282
Eric Dumazet9e903e02011-10-18 21:00:24 +00001283 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001284
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001285drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001286 skb_shinfo(skb)->nr_frags = i;
1287
1288 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001289 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001290
David S. Miller21dc3302010-08-23 00:13:46 -07001291 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001292 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001293 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
1295
Herbert Xu27b437c2006-07-13 19:26:39 -07001296 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1297 fragp = &frag->next) {
1298 int end = offset + frag->len;
1299
1300 if (skb_shared(frag)) {
1301 struct sk_buff *nfrag;
1302
1303 nfrag = skb_clone(frag, GFP_ATOMIC);
1304 if (unlikely(!nfrag))
1305 return -ENOMEM;
1306
1307 nfrag->next = frag->next;
Eric Dumazet85bb2a62012-04-19 02:24:53 +00001308 consume_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001309 frag = nfrag;
1310 *fragp = frag;
1311 }
1312
1313 if (end < len) {
1314 offset = end;
1315 continue;
1316 }
1317
1318 if (end > len &&
1319 unlikely((err = pskb_trim(frag, len - offset))))
1320 return err;
1321
1322 if (frag->next)
1323 skb_drop_list(&frag->next);
1324 break;
1325 }
1326
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001327done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001328 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 skb->data_len -= skb->len - len;
1330 skb->len = len;
1331 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001332 skb->len = len;
1333 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001334 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
1337 return 0;
1338}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001339EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341/**
1342 * __pskb_pull_tail - advance tail of skb header
1343 * @skb: buffer to reallocate
1344 * @delta: number of bytes to advance tail
1345 *
1346 * The function makes a sense only on a fragmented &sk_buff,
1347 * it expands header moving its tail forward and copying necessary
1348 * data from fragmented part.
1349 *
1350 * &sk_buff MUST have reference count of 1.
1351 *
1352 * Returns %NULL (and &sk_buff does not change) if pull failed
1353 * or value of new tail of skb in the case of success.
1354 *
1355 * All the pointers pointing into skb header may change and must be
1356 * reloaded after call to this function.
1357 */
1358
1359/* Moves tail of skb head forward, copying data from fragmented part,
1360 * when it is necessary.
1361 * 1. It may fail due to malloc failure.
1362 * 2. It may change skb pointers.
1363 *
1364 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1365 */
1366unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1367{
1368 /* If skb has not enough free space at tail, get new one
1369 * plus 128 bytes for future expansions. If we have enough
1370 * room at tail, reallocate without expansion only if skb is cloned.
1371 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001372 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 if (eat > 0 || skb_cloned(skb)) {
1375 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1376 GFP_ATOMIC))
1377 return NULL;
1378 }
1379
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001380 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 BUG();
1382
1383 /* Optimization: no fragments, no reasons to preestimate
1384 * size of pulled pages. Superb.
1385 */
David S. Miller21dc3302010-08-23 00:13:46 -07001386 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto pull_pages;
1388
1389 /* Estimate size of pulled pages. */
1390 eat = delta;
1391 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001392 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1393
1394 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001396 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398
1399 /* If we need update frag list, we are in troubles.
1400 * Certainly, it possible to add an offset to skb data,
1401 * but taking into account that pulling is expected to
1402 * be very rare operation, it is worth to fight against
1403 * further bloating skb head and crucify ourselves here instead.
1404 * Pure masohism, indeed. 8)8)
1405 */
1406 if (eat) {
1407 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1408 struct sk_buff *clone = NULL;
1409 struct sk_buff *insp = NULL;
1410
1411 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001412 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 if (list->len <= eat) {
1415 /* Eaten as whole. */
1416 eat -= list->len;
1417 list = list->next;
1418 insp = list;
1419 } else {
1420 /* Eaten partially. */
1421
1422 if (skb_shared(list)) {
1423 /* Sucks! We need to fork list. :-( */
1424 clone = skb_clone(list, GFP_ATOMIC);
1425 if (!clone)
1426 return NULL;
1427 insp = list->next;
1428 list = clone;
1429 } else {
1430 /* This may be pulled without
1431 * problems. */
1432 insp = list;
1433 }
1434 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001435 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return NULL;
1437 }
1438 break;
1439 }
1440 } while (eat);
1441
1442 /* Free pulled out fragments. */
1443 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1444 skb_shinfo(skb)->frag_list = list->next;
1445 kfree_skb(list);
1446 }
1447 /* And insert new clone at head. */
1448 if (clone) {
1449 clone->next = list;
1450 skb_shinfo(skb)->frag_list = clone;
1451 }
1452 }
1453 /* Success! Now we may commit changes to skb data. */
1454
1455pull_pages:
1456 eat = delta;
1457 k = 0;
1458 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001459 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1460
1461 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001462 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001463 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 } else {
1465 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1466 if (eat) {
1467 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001468 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 eat = 0;
1470 }
1471 k++;
1472 }
1473 }
1474 skb_shinfo(skb)->nr_frags = k;
1475
1476 skb->tail += delta;
1477 skb->data_len -= delta;
1478
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001479 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001481EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Eric Dumazet22019b12011-07-29 18:37:31 +00001483/**
1484 * skb_copy_bits - copy bits from skb to kernel buffer
1485 * @skb: source skb
1486 * @offset: offset in source
1487 * @to: destination buffer
1488 * @len: number of bytes to copy
1489 *
1490 * Copy the specified number of bytes from the source skb to the
1491 * destination buffer.
1492 *
1493 * CAUTION ! :
1494 * If its prototype is ever changed,
1495 * check arch/{*}/net/{*}.S files,
1496 * since it is called from BPF assembly code.
1497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1499{
David S. Miller1a028e52007-04-27 15:21:23 -07001500 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001501 struct sk_buff *frag_iter;
1502 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 if (offset > (int)skb->len - len)
1505 goto fault;
1506
1507 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001508 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 if (copy > len)
1510 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001511 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if ((len -= copy) == 0)
1513 return 0;
1514 offset += copy;
1515 to += copy;
1516 }
1517
1518 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001519 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001520 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001522 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001523
Eric Dumazet51c56b02012-04-05 11:35:15 +02001524 end = start + skb_frag_size(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if ((copy = end - offset) > 0) {
1526 u8 *vaddr;
1527
1528 if (copy > len)
1529 copy = len;
1530
Eric Dumazet51c56b02012-04-05 11:35:15 +02001531 vaddr = kmap_atomic(skb_frag_page(f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 memcpy(to,
Eric Dumazet51c56b02012-04-05 11:35:15 +02001533 vaddr + f->page_offset + offset - start,
1534 copy);
1535 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 if ((len -= copy) == 0)
1538 return 0;
1539 offset += copy;
1540 to += copy;
1541 }
David S. Miller1a028e52007-04-27 15:21:23 -07001542 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544
David S. Millerfbb398a2009-06-09 00:18:59 -07001545 skb_walk_frags(skb, frag_iter) {
1546 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
David S. Millerfbb398a2009-06-09 00:18:59 -07001548 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
David S. Millerfbb398a2009-06-09 00:18:59 -07001550 end = start + frag_iter->len;
1551 if ((copy = end - offset) > 0) {
1552 if (copy > len)
1553 copy = len;
1554 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1555 goto fault;
1556 if ((len -= copy) == 0)
1557 return 0;
1558 offset += copy;
1559 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001561 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
Shirley Maa6686f22011-07-06 12:22:12 +00001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (!len)
1565 return 0;
1566
1567fault:
1568 return -EFAULT;
1569}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001570EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Jens Axboe9c55e012007-11-06 23:30:13 -08001572/*
1573 * Callback from splice_to_pipe(), if we need to release some pages
1574 * at the end of the spd in case we error'ed out in filling the pipe.
1575 */
1576static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1577{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001578 put_page(spd->pages[i]);
1579}
Jens Axboe9c55e012007-11-06 23:30:13 -08001580
David S. Millera108d5f2012-04-23 23:06:11 -04001581static struct page *linear_to_page(struct page *page, unsigned int *len,
1582 unsigned int *offset,
1583 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001584{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001585 struct page *p = sk->sk_sndmsg_page;
1586 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001587
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001588 if (!p) {
1589new_page:
1590 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1591 if (!p)
1592 return NULL;
1593
1594 off = sk->sk_sndmsg_off = 0;
1595 /* hold one ref to this page until it's full */
1596 } else {
1597 unsigned int mlen;
1598
Eric Dumazete66e9a32012-04-19 09:38:17 +00001599 /* If we are the only user of the page, we can reset offset */
1600 if (page_count(p) == 1)
1601 sk->sk_sndmsg_off = 0;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001602 off = sk->sk_sndmsg_off;
1603 mlen = PAGE_SIZE - off;
1604 if (mlen < 64 && mlen < *len) {
1605 put_page(p);
1606 goto new_page;
1607 }
1608
1609 *len = min_t(unsigned int, *len, mlen);
1610 }
1611
1612 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1613 sk->sk_sndmsg_off += *len;
1614 *offset = off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001615
1616 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001617}
1618
Eric Dumazet41c73a02012-04-22 12:26:16 +00001619static bool spd_can_coalesce(const struct splice_pipe_desc *spd,
1620 struct page *page,
1621 unsigned int offset)
1622{
1623 return spd->nr_pages &&
1624 spd->pages[spd->nr_pages - 1] == page &&
1625 (spd->partial[spd->nr_pages - 1].offset +
1626 spd->partial[spd->nr_pages - 1].len == offset);
1627}
1628
Jens Axboe9c55e012007-11-06 23:30:13 -08001629/*
1630 * Fill page/offset/length into spd, if it can hold more pages.
1631 */
David S. Millera108d5f2012-04-23 23:06:11 -04001632static bool spd_fill_page(struct splice_pipe_desc *spd,
1633 struct pipe_inode_info *pipe, struct page *page,
1634 unsigned int *len, unsigned int offset,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001635 struct sk_buff *skb, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001636 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001637{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001638 if (unlikely(spd->nr_pages == MAX_SKB_FRAGS))
David S. Millera108d5f2012-04-23 23:06:11 -04001639 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001640
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001641 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001642 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001643 if (!page)
David S. Millera108d5f2012-04-23 23:06:11 -04001644 return true;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001645 }
1646 if (spd_can_coalesce(spd, page, offset)) {
1647 spd->partial[spd->nr_pages - 1].len += *len;
David S. Millera108d5f2012-04-23 23:06:11 -04001648 return false;
Eric Dumazet41c73a02012-04-22 12:26:16 +00001649 }
1650 get_page(page);
Jens Axboe9c55e012007-11-06 23:30:13 -08001651 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001652 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001653 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001654 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001655
David S. Millera108d5f2012-04-23 23:06:11 -04001656 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001657}
1658
Octavian Purdila2870c432008-07-15 00:49:11 -07001659static inline void __segment_seek(struct page **page, unsigned int *poff,
1660 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001661{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001662 unsigned long n;
1663
Octavian Purdila2870c432008-07-15 00:49:11 -07001664 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001665 n = *poff / PAGE_SIZE;
1666 if (n)
1667 *page = nth_page(*page, n);
1668
Octavian Purdila2870c432008-07-15 00:49:11 -07001669 *poff = *poff % PAGE_SIZE;
1670 *plen -= off;
1671}
Jens Axboe9c55e012007-11-06 23:30:13 -08001672
David S. Millera108d5f2012-04-23 23:06:11 -04001673static bool __splice_segment(struct page *page, unsigned int poff,
1674 unsigned int plen, unsigned int *off,
1675 unsigned int *len, struct sk_buff *skb,
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001676 struct splice_pipe_desc *spd, bool linear,
David S. Millera108d5f2012-04-23 23:06:11 -04001677 struct sock *sk,
1678 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001679{
1680 if (!*len)
David S. Millera108d5f2012-04-23 23:06:11 -04001681 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001682
1683 /* skip this segment if already processed */
1684 if (*off >= plen) {
1685 *off -= plen;
David S. Millera108d5f2012-04-23 23:06:11 -04001686 return false;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001687 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001688
Octavian Purdila2870c432008-07-15 00:49:11 -07001689 /* ignore any bits we already processed */
1690 if (*off) {
1691 __segment_seek(&page, &poff, &plen, *off);
1692 *off = 0;
1693 }
1694
1695 do {
1696 unsigned int flen = min(*len, plen);
1697
1698 /* the linear region may spread across several pages */
1699 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1700
Jens Axboe35f3d142010-05-20 10:43:18 +02001701 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
David S. Millera108d5f2012-04-23 23:06:11 -04001702 return true;
Octavian Purdila2870c432008-07-15 00:49:11 -07001703
1704 __segment_seek(&page, &poff, &plen, flen);
1705 *len -= flen;
1706
1707 } while (*len && plen);
1708
David S. Millera108d5f2012-04-23 23:06:11 -04001709 return false;
Octavian Purdila2870c432008-07-15 00:49:11 -07001710}
1711
1712/*
David S. Millera108d5f2012-04-23 23:06:11 -04001713 * Map linear and fragment data from the skb to spd. It reports true if the
Octavian Purdila2870c432008-07-15 00:49:11 -07001714 * pipe is full or if we already spliced the requested length.
1715 */
David S. Millera108d5f2012-04-23 23:06:11 -04001716static bool __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1717 unsigned int *offset, unsigned int *len,
1718 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001719{
1720 int seg;
1721
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001722 /* map the linear part :
Alexander Duyck2996d312012-05-02 18:18:42 +00001723 * If skb->head_frag is set, this 'linear' part is backed by a
1724 * fragment, and if the head is not shared with any clones then
1725 * we can avoid a copy since we own the head portion of this page.
Jens Axboe9c55e012007-11-06 23:30:13 -08001726 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001727 if (__splice_segment(virt_to_page(skb->data),
1728 (unsigned long) skb->data & (PAGE_SIZE - 1),
1729 skb_headlen(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001730 offset, len, skb, spd,
Alexander Duyck3a7c1ee42012-05-03 01:09:42 +00001731 skb_head_is_locked(skb),
Eric Dumazet1d0c0b32012-04-27 02:10:03 +00001732 sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001733 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001734
1735 /*
1736 * then map the fragments
1737 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001738 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1739 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1740
Ian Campbellea2ab692011-08-22 23:44:58 +00001741 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001742 f->page_offset, skb_frag_size(f),
Eric Dumazetd7ccf7c2012-04-23 23:35:04 -04001743 offset, len, skb, spd, false, sk, pipe))
David S. Millera108d5f2012-04-23 23:06:11 -04001744 return true;
Jens Axboe9c55e012007-11-06 23:30:13 -08001745 }
1746
David S. Millera108d5f2012-04-23 23:06:11 -04001747 return false;
Jens Axboe9c55e012007-11-06 23:30:13 -08001748}
1749
1750/*
1751 * Map data from the skb to a pipe. Should handle both the linear part,
1752 * the fragments, and the frag list. It does NOT handle frag lists within
1753 * the frag list, if such a thing exists. We'd probably need to recurse to
1754 * handle that cleanly.
1755 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001756int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001757 struct pipe_inode_info *pipe, unsigned int tlen,
1758 unsigned int flags)
1759{
Eric Dumazet41c73a02012-04-22 12:26:16 +00001760 struct partial_page partial[MAX_SKB_FRAGS];
1761 struct page *pages[MAX_SKB_FRAGS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001762 struct splice_pipe_desc spd = {
1763 .pages = pages,
1764 .partial = partial,
Eric Dumazet047fe362012-06-12 15:24:40 +02001765 .nr_pages_max = MAX_SKB_FRAGS,
Jens Axboe9c55e012007-11-06 23:30:13 -08001766 .flags = flags,
1767 .ops = &sock_pipe_buf_ops,
1768 .spd_release = sock_spd_release,
1769 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001770 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001771 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001772 int ret = 0;
1773
Jens Axboe9c55e012007-11-06 23:30:13 -08001774 /*
1775 * __skb_splice_bits() only fails if the output has no room left,
1776 * so no point in going over the frag_list for the error case.
1777 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001778 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001779 goto done;
1780 else if (!tlen)
1781 goto done;
1782
1783 /*
1784 * now see if we have a frag_list to map
1785 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001786 skb_walk_frags(skb, frag_iter) {
1787 if (!tlen)
1788 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001789 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001790 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001791 }
1792
1793done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001794 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001795 /*
1796 * Drop the socket lock, otherwise we have reverse
1797 * locking dependencies between sk_lock and i_mutex
1798 * here as compared to sendfile(). We enter here
1799 * with the socket lock held, and splice_to_pipe() will
1800 * grab the pipe inode lock. For sendfile() emulation,
1801 * we call into ->sendpage() with the i_mutex lock held
1802 * and networking will grab the socket lock.
1803 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001804 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001805 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001806 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001807 }
1808
Jens Axboe35f3d142010-05-20 10:43:18 +02001809 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001810}
1811
Herbert Xu357b40a2005-04-19 22:30:14 -07001812/**
1813 * skb_store_bits - store bits from kernel buffer to skb
1814 * @skb: destination buffer
1815 * @offset: offset in destination
1816 * @from: source buffer
1817 * @len: number of bytes to copy
1818 *
1819 * Copy the specified number of bytes from the source buffer to the
1820 * destination skb. This function handles all the messy bits of
1821 * traversing fragment lists and such.
1822 */
1823
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001824int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001825{
David S. Miller1a028e52007-04-27 15:21:23 -07001826 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001827 struct sk_buff *frag_iter;
1828 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001829
1830 if (offset > (int)skb->len - len)
1831 goto fault;
1832
David S. Miller1a028e52007-04-27 15:21:23 -07001833 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001834 if (copy > len)
1835 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001836 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001837 if ((len -= copy) == 0)
1838 return 0;
1839 offset += copy;
1840 from += copy;
1841 }
1842
1843 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1844 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001845 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001846
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001847 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001848
Eric Dumazet9e903e02011-10-18 21:00:24 +00001849 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001850 if ((copy = end - offset) > 0) {
1851 u8 *vaddr;
1852
1853 if (copy > len)
1854 copy = len;
1855
Eric Dumazet51c56b02012-04-05 11:35:15 +02001856 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001857 memcpy(vaddr + frag->page_offset + offset - start,
1858 from, copy);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001859 kunmap_atomic(vaddr);
Herbert Xu357b40a2005-04-19 22:30:14 -07001860
1861 if ((len -= copy) == 0)
1862 return 0;
1863 offset += copy;
1864 from += copy;
1865 }
David S. Miller1a028e52007-04-27 15:21:23 -07001866 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001867 }
1868
David S. Millerfbb398a2009-06-09 00:18:59 -07001869 skb_walk_frags(skb, frag_iter) {
1870 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001871
David S. Millerfbb398a2009-06-09 00:18:59 -07001872 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001873
David S. Millerfbb398a2009-06-09 00:18:59 -07001874 end = start + frag_iter->len;
1875 if ((copy = end - offset) > 0) {
1876 if (copy > len)
1877 copy = len;
1878 if (skb_store_bits(frag_iter, offset - start,
1879 from, copy))
1880 goto fault;
1881 if ((len -= copy) == 0)
1882 return 0;
1883 offset += copy;
1884 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001885 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001886 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001887 }
1888 if (!len)
1889 return 0;
1890
1891fault:
1892 return -EFAULT;
1893}
Herbert Xu357b40a2005-04-19 22:30:14 -07001894EXPORT_SYMBOL(skb_store_bits);
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896/* Checksum skb data. */
1897
Al Viro2bbbc862006-11-14 21:37:14 -08001898__wsum skb_checksum(const struct sk_buff *skb, int offset,
1899 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
David S. Miller1a028e52007-04-27 15:21:23 -07001901 int start = skb_headlen(skb);
1902 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001903 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 int pos = 0;
1905
1906 /* Checksum header. */
1907 if (copy > 0) {
1908 if (copy > len)
1909 copy = len;
1910 csum = csum_partial(skb->data + offset, copy, csum);
1911 if ((len -= copy) == 0)
1912 return csum;
1913 offset += copy;
1914 pos = copy;
1915 }
1916
1917 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001918 int end;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001919 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001921 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001922
Eric Dumazet51c56b02012-04-05 11:35:15 +02001923 end = start + skb_frag_size(frag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001925 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 u8 *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 if (copy > len)
1929 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02001930 vaddr = kmap_atomic(skb_frag_page(frag));
David S. Miller1a028e52007-04-27 15:21:23 -07001931 csum2 = csum_partial(vaddr + frag->page_offset +
1932 offset - start, copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02001933 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 csum = csum_block_add(csum, csum2, pos);
1935 if (!(len -= copy))
1936 return csum;
1937 offset += copy;
1938 pos += copy;
1939 }
David S. Miller1a028e52007-04-27 15:21:23 -07001940 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942
David S. Millerfbb398a2009-06-09 00:18:59 -07001943 skb_walk_frags(skb, frag_iter) {
1944 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
David S. Millerfbb398a2009-06-09 00:18:59 -07001946 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
David S. Millerfbb398a2009-06-09 00:18:59 -07001948 end = start + frag_iter->len;
1949 if ((copy = end - offset) > 0) {
1950 __wsum csum2;
1951 if (copy > len)
1952 copy = len;
1953 csum2 = skb_checksum(frag_iter, offset - start,
1954 copy, 0);
1955 csum = csum_block_add(csum, csum2, pos);
1956 if ((len -= copy) == 0)
1957 return csum;
1958 offset += copy;
1959 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001961 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001963 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 return csum;
1966}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001967EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969/* Both of above in one bottle. */
1970
Al Viro81d77662006-11-14 21:37:33 -08001971__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1972 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
David S. Miller1a028e52007-04-27 15:21:23 -07001974 int start = skb_headlen(skb);
1975 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001976 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 int pos = 0;
1978
1979 /* Copy header. */
1980 if (copy > 0) {
1981 if (copy > len)
1982 copy = len;
1983 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1984 copy, csum);
1985 if ((len -= copy) == 0)
1986 return csum;
1987 offset += copy;
1988 to += copy;
1989 pos = copy;
1990 }
1991
1992 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001993 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001995 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001996
Eric Dumazet9e903e02011-10-18 21:00:24 +00001997 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001999 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 u8 *vaddr;
2001 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2002
2003 if (copy > len)
2004 copy = len;
Eric Dumazet51c56b02012-04-05 11:35:15 +02002005 vaddr = kmap_atomic(skb_frag_page(frag));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07002007 frag->page_offset +
2008 offset - start, to,
2009 copy, 0);
Eric Dumazet51c56b02012-04-05 11:35:15 +02002010 kunmap_atomic(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 csum = csum_block_add(csum, csum2, pos);
2012 if (!(len -= copy))
2013 return csum;
2014 offset += copy;
2015 to += copy;
2016 pos += copy;
2017 }
David S. Miller1a028e52007-04-27 15:21:23 -07002018 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020
David S. Millerfbb398a2009-06-09 00:18:59 -07002021 skb_walk_frags(skb, frag_iter) {
2022 __wsum csum2;
2023 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
David S. Millerfbb398a2009-06-09 00:18:59 -07002025 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
David S. Millerfbb398a2009-06-09 00:18:59 -07002027 end = start + frag_iter->len;
2028 if ((copy = end - offset) > 0) {
2029 if (copy > len)
2030 copy = len;
2031 csum2 = skb_copy_and_csum_bits(frag_iter,
2032 offset - start,
2033 to, copy, 0);
2034 csum = csum_block_add(csum, csum2, pos);
2035 if ((len -= copy) == 0)
2036 return csum;
2037 offset += copy;
2038 to += copy;
2039 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002041 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08002043 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return csum;
2045}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002046EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
2049{
Al Virod3bc23e2006-11-14 21:24:49 -08002050 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 long csstart;
2052
Patrick McHardy84fa7932006-08-29 16:44:56 -07002053 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00002054 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 else
2056 csstart = skb_headlen(skb);
2057
Kris Katterjohn09a62662006-01-08 22:24:28 -08002058 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002060 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 csum = 0;
2063 if (csstart != skb->len)
2064 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
2065 skb->len - csstart, 0);
2066
Patrick McHardy84fa7932006-08-29 16:44:56 -07002067 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08002068 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Al Virod3bc23e2006-11-14 21:24:49 -08002070 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
2072}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002073EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075/**
2076 * skb_dequeue - remove from the head of the queue
2077 * @list: list to dequeue from
2078 *
2079 * Remove the head of the list. The list lock is taken so the function
2080 * may be used safely with other locking list functions. The head item is
2081 * returned or %NULL if the list is empty.
2082 */
2083
2084struct sk_buff *skb_dequeue(struct sk_buff_head *list)
2085{
2086 unsigned long flags;
2087 struct sk_buff *result;
2088
2089 spin_lock_irqsave(&list->lock, flags);
2090 result = __skb_dequeue(list);
2091 spin_unlock_irqrestore(&list->lock, flags);
2092 return result;
2093}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002094EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096/**
2097 * skb_dequeue_tail - remove from the tail of the queue
2098 * @list: list to dequeue from
2099 *
2100 * Remove the tail of the list. The list lock is taken so the function
2101 * may be used safely with other locking list functions. The tail item is
2102 * returned or %NULL if the list is empty.
2103 */
2104struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2105{
2106 unsigned long flags;
2107 struct sk_buff *result;
2108
2109 spin_lock_irqsave(&list->lock, flags);
2110 result = __skb_dequeue_tail(list);
2111 spin_unlock_irqrestore(&list->lock, flags);
2112 return result;
2113}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002114EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116/**
2117 * skb_queue_purge - empty a list
2118 * @list: list to empty
2119 *
2120 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2121 * the list and one reference dropped. This function takes the list
2122 * lock and is atomic with respect to other list locking functions.
2123 */
2124void skb_queue_purge(struct sk_buff_head *list)
2125{
2126 struct sk_buff *skb;
2127 while ((skb = skb_dequeue(list)) != NULL)
2128 kfree_skb(skb);
2129}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002130EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132/**
2133 * skb_queue_head - queue a buffer at the list head
2134 * @list: list to use
2135 * @newsk: buffer to queue
2136 *
2137 * Queue a buffer at the start of the list. This function takes the
2138 * list lock and can be used safely with other locking &sk_buff functions
2139 * safely.
2140 *
2141 * A buffer cannot be placed on two lists at the same time.
2142 */
2143void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2144{
2145 unsigned long flags;
2146
2147 spin_lock_irqsave(&list->lock, flags);
2148 __skb_queue_head(list, newsk);
2149 spin_unlock_irqrestore(&list->lock, flags);
2150}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002151EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153/**
2154 * skb_queue_tail - queue a buffer at the list tail
2155 * @list: list to use
2156 * @newsk: buffer to queue
2157 *
2158 * Queue a buffer at the tail 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_tail(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_tail(list, newsk);
2170 spin_unlock_irqrestore(&list->lock, flags);
2171}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002172EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174/**
2175 * skb_unlink - remove a buffer from a list
2176 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002177 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 *
David S. Miller8728b832005-08-09 19:25:21 -07002179 * Remove a packet from a list. The list locks are taken and this
2180 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 *
David S. Miller8728b832005-08-09 19:25:21 -07002182 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 */
David S. Miller8728b832005-08-09 19:25:21 -07002184void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
David S. Miller8728b832005-08-09 19:25:21 -07002186 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
David S. Miller8728b832005-08-09 19:25:21 -07002188 spin_lock_irqsave(&list->lock, flags);
2189 __skb_unlink(skb, list);
2190 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002192EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194/**
2195 * skb_append - append a buffer
2196 * @old: buffer to insert after
2197 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002198 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 *
2200 * Place a packet after a given packet in a list. The list locks are taken
2201 * and this function is atomic with respect to other list locked calls.
2202 * A buffer cannot be placed on two lists at the same time.
2203 */
David S. Miller8728b832005-08-09 19:25:21 -07002204void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 unsigned long flags;
2207
David S. Miller8728b832005-08-09 19:25:21 -07002208 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002209 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002210 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002212EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214/**
2215 * skb_insert - insert a buffer
2216 * @old: buffer to insert before
2217 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002218 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 *
David S. Miller8728b832005-08-09 19:25:21 -07002220 * Place a packet before a given packet in a list. The list locks are
2221 * taken and this function is atomic with respect to other list locked
2222 * calls.
2223 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 * A buffer cannot be placed on two lists at the same time.
2225 */
David S. Miller8728b832005-08-09 19:25:21 -07002226void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
2228 unsigned long flags;
2229
David S. Miller8728b832005-08-09 19:25:21 -07002230 spin_lock_irqsave(&list->lock, flags);
2231 __skb_insert(newsk, old->prev, old, list);
2232 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002234EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236static inline void skb_split_inside_header(struct sk_buff *skb,
2237 struct sk_buff* skb1,
2238 const u32 len, const int pos)
2239{
2240 int i;
2241
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002242 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2243 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 /* And move data appendix as is. */
2245 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2246 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2247
2248 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2249 skb_shinfo(skb)->nr_frags = 0;
2250 skb1->data_len = skb->data_len;
2251 skb1->len += skb1->data_len;
2252 skb->data_len = 0;
2253 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002254 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
2257static inline void skb_split_no_header(struct sk_buff *skb,
2258 struct sk_buff* skb1,
2259 const u32 len, int pos)
2260{
2261 int i, k = 0;
2262 const int nfrags = skb_shinfo(skb)->nr_frags;
2263
2264 skb_shinfo(skb)->nr_frags = 0;
2265 skb1->len = skb1->data_len = skb->len - len;
2266 skb->len = len;
2267 skb->data_len = len - pos;
2268
2269 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002270 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 if (pos + size > len) {
2273 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2274
2275 if (pos < len) {
2276 /* Split frag.
2277 * We have two variants in this case:
2278 * 1. Move all the frag to the second
2279 * part, if it is possible. F.e.
2280 * this approach is mandatory for TUX,
2281 * where splitting is expensive.
2282 * 2. Split is accurately. We make this.
2283 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002284 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002286 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2287 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 skb_shinfo(skb)->nr_frags++;
2289 }
2290 k++;
2291 } else
2292 skb_shinfo(skb)->nr_frags++;
2293 pos += size;
2294 }
2295 skb_shinfo(skb1)->nr_frags = k;
2296}
2297
2298/**
2299 * skb_split - Split fragmented skb to two parts at length len.
2300 * @skb: the buffer to split
2301 * @skb1: the buffer to receive the second part
2302 * @len: new length for skb
2303 */
2304void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2305{
2306 int pos = skb_headlen(skb);
2307
2308 if (len < pos) /* Split line is inside header. */
2309 skb_split_inside_header(skb, skb1, len, pos);
2310 else /* Second chunk has no header, nothing to copy. */
2311 skb_split_no_header(skb, skb1, len, pos);
2312}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002313EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002315/* Shifting from/to a cloned skb is a no-go.
2316 *
2317 * Caller cannot keep skb_shinfo related pointers past calling here!
2318 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002319static int skb_prepare_for_shift(struct sk_buff *skb)
2320{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002321 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002322}
2323
2324/**
2325 * skb_shift - Shifts paged data partially from skb to another
2326 * @tgt: buffer into which tail data gets added
2327 * @skb: buffer from which the paged data comes from
2328 * @shiftlen: shift up to this many bytes
2329 *
2330 * Attempts to shift up to shiftlen worth of bytes, which may be less than
Feng King20e994a2011-11-21 01:47:11 +00002331 * the length of the skb, from skb to tgt. Returns number bytes shifted.
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002332 * It's up to caller to free skb if everything was shifted.
2333 *
2334 * If @tgt runs out of frags, the whole operation is aborted.
2335 *
2336 * Skb cannot include anything else but paged data while tgt is allowed
2337 * to have non-paged data as well.
2338 *
2339 * TODO: full sized shift could be optimized but that would need
2340 * specialized skb free'er to handle frags without up-to-date nr_frags.
2341 */
2342int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2343{
2344 int from, to, merge, todo;
2345 struct skb_frag_struct *fragfrom, *fragto;
2346
2347 BUG_ON(shiftlen > skb->len);
2348 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2349
2350 todo = shiftlen;
2351 from = 0;
2352 to = skb_shinfo(tgt)->nr_frags;
2353 fragfrom = &skb_shinfo(skb)->frags[from];
2354
2355 /* Actual merge is delayed until the point when we know we can
2356 * commit all, so that we don't have to undo partial changes
2357 */
2358 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002359 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2360 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002361 merge = -1;
2362 } else {
2363 merge = to - 1;
2364
Eric Dumazet9e903e02011-10-18 21:00:24 +00002365 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002366 if (todo < 0) {
2367 if (skb_prepare_for_shift(skb) ||
2368 skb_prepare_for_shift(tgt))
2369 return 0;
2370
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002371 /* All previous frag pointers might be stale! */
2372 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002373 fragto = &skb_shinfo(tgt)->frags[merge];
2374
Eric Dumazet9e903e02011-10-18 21:00:24 +00002375 skb_frag_size_add(fragto, shiftlen);
2376 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002377 fragfrom->page_offset += shiftlen;
2378
2379 goto onlymerged;
2380 }
2381
2382 from++;
2383 }
2384
2385 /* Skip full, not-fitting skb to avoid expensive operations */
2386 if ((shiftlen == skb->len) &&
2387 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2388 return 0;
2389
2390 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2391 return 0;
2392
2393 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2394 if (to == MAX_SKB_FRAGS)
2395 return 0;
2396
2397 fragfrom = &skb_shinfo(skb)->frags[from];
2398 fragto = &skb_shinfo(tgt)->frags[to];
2399
Eric Dumazet9e903e02011-10-18 21:00:24 +00002400 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002401 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002402 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002403 from++;
2404 to++;
2405
2406 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002407 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002408 fragto->page = fragfrom->page;
2409 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002410 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002411
2412 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002413 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002414 todo = 0;
2415
2416 to++;
2417 break;
2418 }
2419 }
2420
2421 /* Ready to "commit" this state change to tgt */
2422 skb_shinfo(tgt)->nr_frags = to;
2423
2424 if (merge >= 0) {
2425 fragfrom = &skb_shinfo(skb)->frags[0];
2426 fragto = &skb_shinfo(tgt)->frags[merge];
2427
Eric Dumazet9e903e02011-10-18 21:00:24 +00002428 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002429 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002430 }
2431
2432 /* Reposition in the original skb */
2433 to = 0;
2434 while (from < skb_shinfo(skb)->nr_frags)
2435 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2436 skb_shinfo(skb)->nr_frags = to;
2437
2438 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2439
2440onlymerged:
2441 /* Most likely the tgt won't ever need its checksum anymore, skb on
2442 * the other hand might need it if it needs to be resent
2443 */
2444 tgt->ip_summed = CHECKSUM_PARTIAL;
2445 skb->ip_summed = CHECKSUM_PARTIAL;
2446
2447 /* Yak, is it really working this way? Some helper please? */
2448 skb->len -= shiftlen;
2449 skb->data_len -= shiftlen;
2450 skb->truesize -= shiftlen;
2451 tgt->len += shiftlen;
2452 tgt->data_len += shiftlen;
2453 tgt->truesize += shiftlen;
2454
2455 return shiftlen;
2456}
2457
Thomas Graf677e90e2005-06-23 20:59:51 -07002458/**
2459 * skb_prepare_seq_read - Prepare a sequential read of skb data
2460 * @skb: the buffer to read
2461 * @from: lower offset of data to be read
2462 * @to: upper offset of data to be read
2463 * @st: state variable
2464 *
2465 * Initializes the specified state variable. Must be called before
2466 * invoking skb_seq_read() for the first time.
2467 */
2468void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2469 unsigned int to, struct skb_seq_state *st)
2470{
2471 st->lower_offset = from;
2472 st->upper_offset = to;
2473 st->root_skb = st->cur_skb = skb;
2474 st->frag_idx = st->stepped_offset = 0;
2475 st->frag_data = NULL;
2476}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002477EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002478
2479/**
2480 * skb_seq_read - Sequentially read skb data
2481 * @consumed: number of bytes consumed by the caller so far
2482 * @data: destination pointer for data to be returned
2483 * @st: state variable
2484 *
2485 * Reads a block of skb data at &consumed relative to the
2486 * lower offset specified to skb_prepare_seq_read(). Assigns
2487 * the head of the data block to &data and returns the length
2488 * of the block or 0 if the end of the skb data or the upper
2489 * offset has been reached.
2490 *
2491 * The caller is not required to consume all of the data
2492 * returned, i.e. &consumed is typically set to the number
2493 * of bytes already consumed and the next call to
2494 * skb_seq_read() will return the remaining part of the block.
2495 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002496 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002497 * this limitation is the cost for zerocopy seqeuental
2498 * reads of potentially non linear data.
2499 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002500 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002501 * at the moment, state->root_skb could be replaced with
2502 * a stack for this purpose.
2503 */
2504unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2505 struct skb_seq_state *st)
2506{
2507 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2508 skb_frag_t *frag;
2509
2510 if (unlikely(abs_offset >= st->upper_offset))
2511 return 0;
2512
2513next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002514 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002515
Thomas Chenault995b3372009-05-18 21:43:27 -07002516 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002517 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002518 return block_limit - abs_offset;
2519 }
2520
2521 if (st->frag_idx == 0 && !st->frag_data)
2522 st->stepped_offset += skb_headlen(st->cur_skb);
2523
2524 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2525 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002526 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002527
2528 if (abs_offset < block_limit) {
2529 if (!st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002530 st->frag_data = kmap_atomic(skb_frag_page(frag));
Thomas Graf677e90e2005-06-23 20:59:51 -07002531
2532 *data = (u8 *) st->frag_data + frag->page_offset +
2533 (abs_offset - st->stepped_offset);
2534
2535 return block_limit - abs_offset;
2536 }
2537
2538 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002539 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002540 st->frag_data = NULL;
2541 }
2542
2543 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002544 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002545 }
2546
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002547 if (st->frag_data) {
Eric Dumazet51c56b02012-04-05 11:35:15 +02002548 kunmap_atomic(st->frag_data);
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002549 st->frag_data = NULL;
2550 }
2551
David S. Miller21dc3302010-08-23 00:13:46 -07002552 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002553 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002554 st->frag_idx = 0;
2555 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002556 } else if (st->cur_skb->next) {
2557 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002558 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002559 goto next_skb;
2560 }
2561
2562 return 0;
2563}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002564EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002565
2566/**
2567 * skb_abort_seq_read - Abort a sequential read of skb data
2568 * @st: state variable
2569 *
2570 * Must be called if skb_seq_read() was not called until it
2571 * returned 0.
2572 */
2573void skb_abort_seq_read(struct skb_seq_state *st)
2574{
2575 if (st->frag_data)
Eric Dumazet51c56b02012-04-05 11:35:15 +02002576 kunmap_atomic(st->frag_data);
Thomas Graf677e90e2005-06-23 20:59:51 -07002577}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002578EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002579
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002580#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2581
2582static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2583 struct ts_config *conf,
2584 struct ts_state *state)
2585{
2586 return skb_seq_read(offset, text, TS_SKB_CB(state));
2587}
2588
2589static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2590{
2591 skb_abort_seq_read(TS_SKB_CB(state));
2592}
2593
2594/**
2595 * skb_find_text - Find a text pattern in skb data
2596 * @skb: the buffer to look in
2597 * @from: search offset
2598 * @to: search limit
2599 * @config: textsearch configuration
2600 * @state: uninitialized textsearch state variable
2601 *
2602 * Finds a pattern in the skb data according to the specified
2603 * textsearch configuration. Use textsearch_next() to retrieve
2604 * subsequent occurrences of the pattern. Returns the offset
2605 * to the first occurrence or UINT_MAX if no match was found.
2606 */
2607unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2608 unsigned int to, struct ts_config *config,
2609 struct ts_state *state)
2610{
Phil Oesterf72b9482006-06-26 00:00:57 -07002611 unsigned int ret;
2612
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002613 config->get_next_block = skb_ts_get_next_block;
2614 config->finish = skb_ts_finish;
2615
2616 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2617
Phil Oesterf72b9482006-06-26 00:00:57 -07002618 ret = textsearch_find(config, state);
2619 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002620}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002621EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002622
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002623/**
Ben Hutchings2c530402012-07-10 10:55:09 +00002624 * skb_append_datato_frags - append the user data to a skb
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002625 * @sk: sock structure
2626 * @skb: skb structure to be appened with user data.
2627 * @getfrag: call back function to be used for getting the user data
2628 * @from: pointer to user message iov
2629 * @length: length of the iov message
2630 *
2631 * Description: This procedure append the user data in the fragment part
2632 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2633 */
2634int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002635 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002636 int len, int odd, struct sk_buff *skb),
2637 void *from, int length)
2638{
2639 int frg_cnt = 0;
2640 skb_frag_t *frag = NULL;
2641 struct page *page = NULL;
2642 int copy, left;
2643 int offset = 0;
2644 int ret;
2645
2646 do {
2647 /* Return error if we don't have space for new frag */
2648 frg_cnt = skb_shinfo(skb)->nr_frags;
2649 if (frg_cnt >= MAX_SKB_FRAGS)
2650 return -EFAULT;
2651
2652 /* allocate a new page for next frag */
2653 page = alloc_pages(sk->sk_allocation, 0);
2654
2655 /* If alloc_page fails just return failure and caller will
2656 * free previous allocated pages by doing kfree_skb()
2657 */
2658 if (page == NULL)
2659 return -ENOMEM;
2660
2661 /* initialize the next frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002662 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2663 skb->truesize += PAGE_SIZE;
2664 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2665
2666 /* get the new initialized frag */
2667 frg_cnt = skb_shinfo(skb)->nr_frags;
2668 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2669
2670 /* copy the user data to page */
2671 left = PAGE_SIZE - frag->page_offset;
2672 copy = (length > left)? left : length;
2673
Eric Dumazet9e903e02011-10-18 21:00:24 +00002674 ret = getfrag(from, skb_frag_address(frag) + skb_frag_size(frag),
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002675 offset, copy, 0, skb);
2676 if (ret < 0)
2677 return -EFAULT;
2678
2679 /* copy was successful so update the size parameters */
Eric Dumazet9e903e02011-10-18 21:00:24 +00002680 skb_frag_size_add(frag, copy);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002681 skb->len += copy;
2682 skb->data_len += copy;
2683 offset += copy;
2684 length -= copy;
2685
2686 } while (length > 0);
2687
2688 return 0;
2689}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002690EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002691
Herbert Xucbb042f2006-03-20 22:43:56 -08002692/**
2693 * skb_pull_rcsum - pull skb and update receive checksum
2694 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002695 * @len: length of data pulled
2696 *
2697 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002698 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002699 * receive path processing instead of skb_pull unless you know
2700 * that the checksum difference is zero (e.g., a valid IP header)
2701 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002702 */
2703unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2704{
2705 BUG_ON(len > skb->len);
2706 skb->len -= len;
2707 BUG_ON(skb->len < skb->data_len);
2708 skb_postpull_rcsum(skb, skb->data, len);
2709 return skb->data += len;
2710}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002711EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2712
Herbert Xuf4c50d92006-06-22 03:02:40 -07002713/**
2714 * skb_segment - Perform protocol segmentation on skb.
2715 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002716 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002717 *
2718 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002719 * a pointer to the first in a list of new skbs for the segments.
2720 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002721 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002722struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002723{
2724 struct sk_buff *segs = NULL;
2725 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002726 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002727 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002728 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002729 unsigned int offset = doffset;
2730 unsigned int headroom;
2731 unsigned int len;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002732 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002733 int nfrags = skb_shinfo(skb)->nr_frags;
2734 int err = -ENOMEM;
2735 int i = 0;
2736 int pos;
2737
2738 __skb_push(skb, doffset);
2739 headroom = skb_headroom(skb);
2740 pos = skb_headlen(skb);
2741
2742 do {
2743 struct sk_buff *nskb;
2744 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002745 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002746 int size;
2747
2748 len = skb->len - offset;
2749 if (len > mss)
2750 len = mss;
2751
2752 hsize = skb_headlen(skb) - offset;
2753 if (hsize < 0)
2754 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002755 if (hsize > len || !sg)
2756 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002757
Herbert Xu89319d382008-12-15 23:26:06 -08002758 if (!hsize && i >= nfrags) {
2759 BUG_ON(fskb->len != len);
2760
2761 pos += len;
2762 nskb = skb_clone(fskb, GFP_ATOMIC);
2763 fskb = fskb->next;
2764
2765 if (unlikely(!nskb))
2766 goto err;
2767
Alexander Duyckec47ea82012-05-04 14:26:56 +00002768 hsize = skb_end_offset(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002769 if (skb_cow_head(nskb, doffset + headroom)) {
2770 kfree_skb(nskb);
2771 goto err;
2772 }
2773
Alexander Duyckec47ea82012-05-04 14:26:56 +00002774 nskb->truesize += skb_end_offset(nskb) - hsize;
Herbert Xu89319d382008-12-15 23:26:06 -08002775 skb_release_head_state(nskb);
2776 __skb_push(nskb, doffset);
2777 } else {
2778 nskb = alloc_skb(hsize + doffset + headroom,
2779 GFP_ATOMIC);
2780
2781 if (unlikely(!nskb))
2782 goto err;
2783
2784 skb_reserve(nskb, headroom);
2785 __skb_put(nskb, doffset);
2786 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002787
2788 if (segs)
2789 tail->next = nskb;
2790 else
2791 segs = nskb;
2792 tail = nskb;
2793
Herbert Xu6f85a122008-08-15 14:55:02 -07002794 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002795 nskb->mac_len = skb->mac_len;
2796
Eric Dumazet3d3be432010-09-01 00:50:51 +00002797 /* nskb and skb might have different headroom */
2798 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2799 nskb->csum_start += skb_headroom(nskb) - headroom;
2800
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002801 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002802 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002803 nskb->transport_header = (nskb->network_header +
2804 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002805 skb_copy_from_linear_data(skb, nskb->data, doffset);
2806
Herbert Xu2f181852009-03-28 23:39:18 -07002807 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002808 continue;
2809
Herbert Xuf4c50d92006-06-22 03:02:40 -07002810 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002811 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002812 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2813 skb_put(nskb, len),
2814 len, 0);
2815 continue;
2816 }
2817
2818 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002819
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002820 skb_copy_from_linear_data_offset(skb, offset,
2821 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002822
Herbert Xu89319d382008-12-15 23:26:06 -08002823 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002824 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002825 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002826 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002827
2828 if (pos < offset) {
2829 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002830 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002831 }
2832
Herbert Xu89319d382008-12-15 23:26:06 -08002833 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002834
2835 if (pos + size <= offset + len) {
2836 i++;
2837 pos += size;
2838 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002839 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002840 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002841 }
2842
2843 frag++;
2844 }
2845
Herbert Xu89319d382008-12-15 23:26:06 -08002846 if (pos < offset + len) {
2847 struct sk_buff *fskb2 = fskb;
2848
2849 BUG_ON(pos + fskb->len != offset + len);
2850
2851 pos += fskb->len;
2852 fskb = fskb->next;
2853
2854 if (fskb2->next) {
2855 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2856 if (!fskb2)
2857 goto err;
2858 } else
2859 skb_get(fskb2);
2860
David S. Millerfbb398a2009-06-09 00:18:59 -07002861 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002862 skb_shinfo(nskb)->frag_list = fskb2;
2863 }
2864
2865skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002866 nskb->data_len = len - hsize;
2867 nskb->len += nskb->data_len;
2868 nskb->truesize += nskb->data_len;
2869 } while ((offset += len) < skb->len);
2870
2871 return segs;
2872
2873err:
2874 while ((skb = segs)) {
2875 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002876 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002877 }
2878 return ERR_PTR(err);
2879}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002880EXPORT_SYMBOL_GPL(skb_segment);
2881
Herbert Xu71d93b32008-12-15 23:42:33 -08002882int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2883{
2884 struct sk_buff *p = *head;
2885 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002886 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2887 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002888 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002889 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002890 unsigned int offset = skb_gro_offset(skb);
2891 unsigned int headlen = skb_headlen(skb);
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002892 unsigned int delta_truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002893
Herbert Xu86911732009-01-29 14:19:50 +00002894 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002895 return -E2BIG;
2896
Herbert Xu9aaa1562009-05-26 18:50:33 +00002897 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002898 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002899 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002900 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002901 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002902 int i = skbinfo->nr_frags;
2903 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002904
Herbert Xu66e92fc2009-05-26 18:50:32 +00002905 offset -= headlen;
2906
2907 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002908 return -E2BIG;
2909
Herbert Xu9aaa1562009-05-26 18:50:33 +00002910 pinfo->nr_frags = nr_frags;
2911 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002912
Herbert Xu9aaa1562009-05-26 18:50:33 +00002913 frag = pinfo->frags + nr_frags;
2914 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002915 do {
2916 *--frag = *--frag2;
2917 } while (--i);
2918
2919 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002920 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002921
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002922 /* all fragments truesize : remove (head size + sk_buff) */
Alexander Duyckec47ea82012-05-04 14:26:56 +00002923 delta_truesize = skb->truesize -
2924 SKB_TRUESIZE(skb_end_offset(skb));
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002925
Herbert Xuf5572062009-01-14 20:40:03 -08002926 skb->truesize -= skb->data_len;
2927 skb->len -= skb->data_len;
2928 skb->data_len = 0;
2929
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002930 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE;
Herbert Xu5d38a072009-01-04 16:13:40 -08002931 goto done;
Eric Dumazetd7e88832012-04-30 08:10:34 +00002932 } else if (skb->head_frag) {
2933 int nr_frags = pinfo->nr_frags;
2934 skb_frag_t *frag = pinfo->frags + nr_frags;
2935 struct page *page = virt_to_head_page(skb->head);
2936 unsigned int first_size = headlen - offset;
2937 unsigned int first_offset;
2938
2939 if (nr_frags + 1 + skbinfo->nr_frags > MAX_SKB_FRAGS)
2940 return -E2BIG;
2941
2942 first_offset = skb->data -
2943 (unsigned char *)page_address(page) +
2944 offset;
2945
2946 pinfo->nr_frags = nr_frags + 1 + skbinfo->nr_frags;
2947
2948 frag->page.p = page;
2949 frag->page_offset = first_offset;
2950 skb_frag_size_set(frag, first_size);
2951
2952 memcpy(frag + 1, skbinfo->frags, sizeof(*frag) * skbinfo->nr_frags);
2953 /* We dont need to clear skbinfo->nr_frags here */
2954
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002955 delta_truesize = skb->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
Eric Dumazetd7e88832012-04-30 08:10:34 +00002956 NAPI_GRO_CB(skb)->free = NAPI_GRO_FREE_STOLEN_HEAD;
2957 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002958 } else if (skb_gro_len(p) != pinfo->gso_size)
2959 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002960
2961 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002962 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002963 if (unlikely(!nskb))
2964 return -ENOMEM;
2965
2966 __copy_skb_header(nskb, p);
2967 nskb->mac_len = p->mac_len;
2968
2969 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002970 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002971
Herbert Xu86911732009-01-29 14:19:50 +00002972 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002973 skb_set_network_header(nskb, skb_network_offset(p));
2974 skb_set_transport_header(nskb, skb_transport_offset(p));
2975
Herbert Xu86911732009-01-29 14:19:50 +00002976 __skb_pull(p, skb_gro_offset(p));
2977 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2978 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002979
2980 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2981 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002982 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07002983 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08002984 skb_header_release(p);
2985 nskb->prev = p;
2986
2987 nskb->data_len += p->len;
Eric Dumazetde8261c2012-02-13 04:09:20 +00002988 nskb->truesize += p->truesize;
Herbert Xu71d93b32008-12-15 23:42:33 -08002989 nskb->len += p->len;
2990
2991 *head = nskb;
2992 nskb->next = p->next;
2993 p->next = NULL;
2994
2995 p = nskb;
2996
2997merge:
Eric Dumazet715dc1f2012-05-02 23:33:21 +00002998 delta_truesize = skb->truesize;
Herbert Xu67147ba2009-05-26 18:50:22 +00002999 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003000 unsigned int eat = offset - headlen;
3001
3002 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00003003 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00003004 skb->data_len -= eat;
3005 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00003006 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08003007 }
3008
Herbert Xu67147ba2009-05-26 18:50:22 +00003009 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08003010
Herbert Xu71d93b32008-12-15 23:42:33 -08003011 p->prev->next = skb;
3012 p->prev = skb;
3013 skb_header_release(skb);
3014
Herbert Xu5d38a072009-01-04 16:13:40 -08003015done:
3016 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00003017 p->data_len += len;
Eric Dumazet715dc1f2012-05-02 23:33:21 +00003018 p->truesize += delta_truesize;
Herbert Xu37fe4732009-01-17 19:48:13 +00003019 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08003020
3021 NAPI_GRO_CB(skb)->same_flow = 1;
3022 return 0;
3023}
3024EXPORT_SYMBOL_GPL(skb_gro_receive);
3025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026void __init skb_init(void)
3027{
3028 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
3029 sizeof(struct sk_buff),
3030 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003031 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003032 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07003033 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
3034 (2*sizeof(struct sk_buff)) +
3035 sizeof(atomic_t),
3036 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07003037 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09003038 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
David Howells716ea3a2007-04-02 20:19:53 -07003041/**
3042 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
3043 * @skb: Socket buffer containing the buffers to be mapped
3044 * @sg: The scatter-gather list to map into
3045 * @offset: The offset into the buffer's contents to start mapping
3046 * @len: Length of buffer space to be mapped
3047 *
3048 * Fill the specified scatter-gather list with mappings/pointers into a
3049 * region of the buffer space attached to a socket buffer.
3050 */
David S. Miller51c739d2007-10-30 21:29:29 -07003051static int
3052__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07003053{
David S. Miller1a028e52007-04-27 15:21:23 -07003054 int start = skb_headlen(skb);
3055 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07003056 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07003057 int elt = 0;
3058
3059 if (copy > 0) {
3060 if (copy > len)
3061 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02003062 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07003063 elt++;
3064 if ((len -= copy) == 0)
3065 return elt;
3066 offset += copy;
3067 }
3068
3069 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07003070 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003071
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003072 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07003073
Eric Dumazet9e903e02011-10-18 21:00:24 +00003074 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07003075 if ((copy = end - offset) > 0) {
3076 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3077
3078 if (copy > len)
3079 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00003080 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f1492007-10-24 11:20:47 +02003081 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07003082 elt++;
3083 if (!(len -= copy))
3084 return elt;
3085 offset += copy;
3086 }
David S. Miller1a028e52007-04-27 15:21:23 -07003087 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003088 }
3089
David S. Millerfbb398a2009-06-09 00:18:59 -07003090 skb_walk_frags(skb, frag_iter) {
3091 int end;
David Howells716ea3a2007-04-02 20:19:53 -07003092
David S. Millerfbb398a2009-06-09 00:18:59 -07003093 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07003094
David S. Millerfbb398a2009-06-09 00:18:59 -07003095 end = start + frag_iter->len;
3096 if ((copy = end - offset) > 0) {
3097 if (copy > len)
3098 copy = len;
3099 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
3100 copy);
3101 if ((len -= copy) == 0)
3102 return elt;
3103 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07003104 }
David S. Millerfbb398a2009-06-09 00:18:59 -07003105 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07003106 }
3107 BUG_ON(len);
3108 return elt;
3109}
3110
David S. Miller51c739d2007-10-30 21:29:29 -07003111int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
3112{
3113 int nsg = __skb_to_sgvec(skb, sg, offset, len);
3114
Jens Axboec46f2332007-10-31 12:06:37 +01003115 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07003116
3117 return nsg;
3118}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003119EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07003120
David Howells716ea3a2007-04-02 20:19:53 -07003121/**
3122 * skb_cow_data - Check that a socket buffer's data buffers are writable
3123 * @skb: The socket buffer to check.
3124 * @tailbits: Amount of trailing space to be added
3125 * @trailer: Returned pointer to the skb where the @tailbits space begins
3126 *
3127 * Make sure that the data buffers attached to a socket buffer are
3128 * writable. If they are not, private copies are made of the data buffers
3129 * and the socket buffer is set to use these instead.
3130 *
3131 * If @tailbits is given, make sure that there is space to write @tailbits
3132 * bytes of data beyond current end of socket buffer. @trailer will be
3133 * set to point to the skb in which this space begins.
3134 *
3135 * The number of scatterlist elements required to completely map the
3136 * COW'd and extended socket buffer will be returned.
3137 */
3138int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3139{
3140 int copyflag;
3141 int elt;
3142 struct sk_buff *skb1, **skb_p;
3143
3144 /* If skb is cloned or its head is paged, reallocate
3145 * head pulling out all the pages (pages are considered not writable
3146 * at the moment even if they are anonymous).
3147 */
3148 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3149 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3150 return -ENOMEM;
3151
3152 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003153 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003154 /* A little of trouble, not enough of space for trailer.
3155 * This should not happen, when stack is tuned to generate
3156 * good frames. OK, on miss we reallocate and reserve even more
3157 * space, 128 bytes is fair. */
3158
3159 if (skb_tailroom(skb) < tailbits &&
3160 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3161 return -ENOMEM;
3162
3163 /* Voila! */
3164 *trailer = skb;
3165 return 1;
3166 }
3167
3168 /* Misery. We are in troubles, going to mincer fragments... */
3169
3170 elt = 1;
3171 skb_p = &skb_shinfo(skb)->frag_list;
3172 copyflag = 0;
3173
3174 while ((skb1 = *skb_p) != NULL) {
3175 int ntail = 0;
3176
3177 /* The fragment is partially pulled by someone,
3178 * this can happen on input. Copy it and everything
3179 * after it. */
3180
3181 if (skb_shared(skb1))
3182 copyflag = 1;
3183
3184 /* If the skb is the last, worry about trailer. */
3185
3186 if (skb1->next == NULL && tailbits) {
3187 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003188 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003189 skb_tailroom(skb1) < tailbits)
3190 ntail = tailbits + 128;
3191 }
3192
3193 if (copyflag ||
3194 skb_cloned(skb1) ||
3195 ntail ||
3196 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003197 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003198 struct sk_buff *skb2;
3199
3200 /* Fuck, we are miserable poor guys... */
3201 if (ntail == 0)
3202 skb2 = skb_copy(skb1, GFP_ATOMIC);
3203 else
3204 skb2 = skb_copy_expand(skb1,
3205 skb_headroom(skb1),
3206 ntail,
3207 GFP_ATOMIC);
3208 if (unlikely(skb2 == NULL))
3209 return -ENOMEM;
3210
3211 if (skb1->sk)
3212 skb_set_owner_w(skb2, skb1->sk);
3213
3214 /* Looking around. Are we still alive?
3215 * OK, link new skb, drop old one */
3216
3217 skb2->next = skb1->next;
3218 *skb_p = skb2;
3219 kfree_skb(skb1);
3220 skb1 = skb2;
3221 }
3222 elt++;
3223 *trailer = skb1;
3224 skb_p = &skb1->next;
3225 }
3226
3227 return elt;
3228}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003229EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003230
Eric Dumazetb1faf562010-05-31 23:44:05 -07003231static void sock_rmem_free(struct sk_buff *skb)
3232{
3233 struct sock *sk = skb->sk;
3234
3235 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3236}
3237
3238/*
3239 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3240 */
3241int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3242{
Eric Dumazet110c4332012-04-06 10:49:10 +02003243 int len = skb->len;
3244
Eric Dumazetb1faf562010-05-31 23:44:05 -07003245 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
Eric Dumazet95c96172012-04-15 05:58:06 +00003246 (unsigned int)sk->sk_rcvbuf)
Eric Dumazetb1faf562010-05-31 23:44:05 -07003247 return -ENOMEM;
3248
3249 skb_orphan(skb);
3250 skb->sk = sk;
3251 skb->destructor = sock_rmem_free;
3252 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3253
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003254 /* before exiting rcu section, make sure dst is refcounted */
3255 skb_dst_force(skb);
3256
Eric Dumazetb1faf562010-05-31 23:44:05 -07003257 skb_queue_tail(&sk->sk_error_queue, skb);
3258 if (!sock_flag(sk, SOCK_DEAD))
Eric Dumazet110c4332012-04-06 10:49:10 +02003259 sk->sk_data_ready(sk, len);
Eric Dumazetb1faf562010-05-31 23:44:05 -07003260 return 0;
3261}
3262EXPORT_SYMBOL(sock_queue_err_skb);
3263
Patrick Ohlyac45f602009-02-12 05:03:37 +00003264void skb_tstamp_tx(struct sk_buff *orig_skb,
3265 struct skb_shared_hwtstamps *hwtstamps)
3266{
3267 struct sock *sk = orig_skb->sk;
3268 struct sock_exterr_skb *serr;
3269 struct sk_buff *skb;
3270 int err;
3271
3272 if (!sk)
3273 return;
3274
3275 skb = skb_clone(orig_skb, GFP_ATOMIC);
3276 if (!skb)
3277 return;
3278
3279 if (hwtstamps) {
3280 *skb_hwtstamps(skb) =
3281 *hwtstamps;
3282 } else {
3283 /*
3284 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003285 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003286 * store software time stamp
3287 */
3288 skb->tstamp = ktime_get_real();
3289 }
3290
3291 serr = SKB_EXT_ERR(skb);
3292 memset(serr, 0, sizeof(*serr));
3293 serr->ee.ee_errno = ENOMSG;
3294 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003295
Patrick Ohlyac45f602009-02-12 05:03:37 +00003296 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003297
Patrick Ohlyac45f602009-02-12 05:03:37 +00003298 if (err)
3299 kfree_skb(skb);
3300}
3301EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3302
Johannes Berg6e3e9392011-11-09 10:15:42 +01003303void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3304{
3305 struct sock *sk = skb->sk;
3306 struct sock_exterr_skb *serr;
3307 int err;
3308
3309 skb->wifi_acked_valid = 1;
3310 skb->wifi_acked = acked;
3311
3312 serr = SKB_EXT_ERR(skb);
3313 memset(serr, 0, sizeof(*serr));
3314 serr->ee.ee_errno = ENOMSG;
3315 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3316
3317 err = sock_queue_err_skb(sk, skb);
3318 if (err)
3319 kfree_skb(skb);
3320}
3321EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3322
Patrick Ohlyac45f602009-02-12 05:03:37 +00003323
Rusty Russellf35d9d82008-02-04 23:49:54 -05003324/**
3325 * skb_partial_csum_set - set up and verify partial csum values for packet
3326 * @skb: the skb to set
3327 * @start: the number of bytes after skb->data to start checksumming.
3328 * @off: the offset from start to place the checksum.
3329 *
3330 * For untrusted partially-checksummed packets, we need to make sure the values
3331 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3332 *
3333 * This function checks and sets those values and skb->ip_summed: if this
3334 * returns false you should drop the packet.
3335 */
3336bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3337{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003338 if (unlikely(start > skb_headlen(skb)) ||
3339 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003340 net_warn_ratelimited("bad partial csum: csum=%u/%u len=%u\n",
3341 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003342 return false;
3343 }
3344 skb->ip_summed = CHECKSUM_PARTIAL;
3345 skb->csum_start = skb_headroom(skb) + start;
3346 skb->csum_offset = off;
3347 return true;
3348}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003349EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003350
Ben Hutchings4497b072008-06-19 16:22:28 -07003351void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3352{
Joe Perchese87cc472012-05-13 21:56:26 +00003353 net_warn_ratelimited("%s: received packets cannot be forwarded while LRO is enabled\n",
3354 skb->dev->name);
Ben Hutchings4497b072008-06-19 16:22:28 -07003355}
Ben Hutchings4497b072008-06-19 16:22:28 -07003356EXPORT_SYMBOL(__skb_warn_lro_forwarding);
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003357
3358void kfree_skb_partial(struct sk_buff *skb, bool head_stolen)
3359{
3360 if (head_stolen)
3361 kmem_cache_free(skbuff_head_cache, skb);
3362 else
3363 __kfree_skb(skb);
3364}
3365EXPORT_SYMBOL(kfree_skb_partial);
3366
3367/**
3368 * skb_try_coalesce - try to merge skb to prior one
3369 * @to: prior buffer
3370 * @from: buffer to add
3371 * @fragstolen: pointer to boolean
Randy Dunlapc6c4b972012-06-08 14:01:44 +00003372 * @delta_truesize: how much more was allocated than was requested
Eric Dumazetbad43ca2012-05-19 03:02:02 +00003373 */
3374bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
3375 bool *fragstolen, int *delta_truesize)
3376{
3377 int i, delta, len = from->len;
3378
3379 *fragstolen = false;
3380
3381 if (skb_cloned(to))
3382 return false;
3383
3384 if (len <= skb_tailroom(to)) {
3385 BUG_ON(skb_copy_bits(from, 0, skb_put(to, len), len));
3386 *delta_truesize = 0;
3387 return true;
3388 }
3389
3390 if (skb_has_frag_list(to) || skb_has_frag_list(from))
3391 return false;
3392
3393 if (skb_headlen(from) != 0) {
3394 struct page *page;
3395 unsigned int offset;
3396
3397 if (skb_shinfo(to)->nr_frags +
3398 skb_shinfo(from)->nr_frags >= MAX_SKB_FRAGS)
3399 return false;
3400
3401 if (skb_head_is_locked(from))
3402 return false;
3403
3404 delta = from->truesize - SKB_DATA_ALIGN(sizeof(struct sk_buff));
3405
3406 page = virt_to_head_page(from->head);
3407 offset = from->data - (unsigned char *)page_address(page);
3408
3409 skb_fill_page_desc(to, skb_shinfo(to)->nr_frags,
3410 page, offset, skb_headlen(from));
3411 *fragstolen = true;
3412 } else {
3413 if (skb_shinfo(to)->nr_frags +
3414 skb_shinfo(from)->nr_frags > MAX_SKB_FRAGS)
3415 return false;
3416
3417 delta = from->truesize -
3418 SKB_TRUESIZE(skb_end_pointer(from) - from->head);
3419 }
3420
3421 WARN_ON_ONCE(delta < len);
3422
3423 memcpy(skb_shinfo(to)->frags + skb_shinfo(to)->nr_frags,
3424 skb_shinfo(from)->frags,
3425 skb_shinfo(from)->nr_frags * sizeof(skb_frag_t));
3426 skb_shinfo(to)->nr_frags += skb_shinfo(from)->nr_frags;
3427
3428 if (!skb_cloned(from))
3429 skb_shinfo(from)->nr_frags = 0;
3430
3431 /* if the skb is cloned this does nothing since we set nr_frags to 0 */
3432 for (i = 0; i < skb_shinfo(from)->nr_frags; i++)
3433 skb_frag_ref(from, i);
3434
3435 to->truesize += delta;
3436 to->len += len;
3437 to->data_len += len;
3438
3439 *delta_truesize = delta;
3440 return true;
3441}
3442EXPORT_SYMBOL(skb_try_coalesce);