blob: 2f6babd5a5703061f67e007d0395a9bc8e6ab607 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40#include <linux/types.h>
41#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020042#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mm.h>
44#include <linux/interrupt.h>
45#include <linux/in.h>
46#include <linux/inet.h>
47#include <linux/slab.h>
48#include <linux/netdevice.h>
49#ifdef CONFIG_NET_CLS_ACT
50#include <net/pkt_sched.h>
51#endif
52#include <linux/string.h>
53#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080054#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/cache.h>
56#include <linux/rtnetlink.h>
57#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070058#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000059#include <linux/errqueue.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070060#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <net/protocol.h>
63#include <net/dst.h>
64#include <net/sock.h>
65#include <net/checksum.h>
66#include <net/xfrm.h>
67
68#include <asm/uaccess.h>
69#include <asm/system.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040070#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Al Viroa1f8e7f72006-10-19 16:08:53 -040072#include "kmap_skb.h"
73
Christoph Lametere18b8902006-12-06 20:33:20 -080074static struct kmem_cache *skbuff_head_cache __read_mostly;
75static 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{
Patrick McHardy26095452005-04-21 16:43:02 -0700123 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700124 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700125 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700126 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700127 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 BUG();
129}
130
131/**
132 * skb_under_panic - private function
133 * @skb: buffer
134 * @sz: size
135 * @here: address
136 *
137 * Out of line support code for skb_push(). Not user callable.
138 */
139
Rami Rosenccb7c772010-04-20 22:39:53 -0700140static void skb_under_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Patrick McHardy26095452005-04-21 16:43:02 -0700142 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700143 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700144 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700145 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700146 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 BUG();
148}
149
150/* Allocate a new skbuff. We do this ourselves so we can fill in a few
151 * 'private' fields and also do memory statistics to find all the
152 * [BEEP] leaks.
153 *
154 */
155
156/**
David S. Millerd179cd12005-08-17 14:57:30 -0700157 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * @size: size to allocate
159 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700160 * @fclone: allocate from fclone cache instead of head cache
161 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800162 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
164 * Allocate a new &sk_buff. The returned buffer has no headroom and a
165 * tail room of size bytes. The object has a reference count of one.
166 * The return is the buffer. On a failure the return is %NULL.
167 *
168 * Buffers may only be allocated from interrupts using a @gfp_mask of
169 * %GFP_ATOMIC.
170 */
Al Virodd0fc662005-10-07 07:46:04 +0100171struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800172 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Christoph Lametere18b8902006-12-06 20:33:20 -0800174 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800175 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct sk_buff *skb;
177 u8 *data;
178
Herbert Xu8798b3f2006-01-23 16:32:45 -0800179 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800182 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (!skb)
184 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700185 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000187 /* We do our best to align skb_shared_info on a separate cache
188 * line. It usually works because kmalloc(X > SMP_CACHE_BYTES) gives
189 * aligned memory blocks, unless SLUB/SLAB debug is enabled.
190 * Both skb->head and skb_shared_info are cache line aligned.
191 */
192 size += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
193 data = kmalloc_node_track_caller(size, gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (!data)
195 goto nodata;
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000196 /* kmalloc(size) might give us more room than requested.
197 * Put skb_shared_info exactly at the end of allocated zone,
198 * to allow max possible filling before reallocation.
199 */
200 size = SKB_WITH_OVERHEAD(ksize(data));
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700201 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300203 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700204 * Only clear those fields we need to clear, not those that we will
205 * actually initialise below. Hence, don't put any more fields after
206 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300207 */
208 memset(skb, 0, offsetof(struct sk_buff, tail));
Eric Dumazet87fb4b72011-10-13 07:28:54 +0000209 /* Account for allocated memory : skb + skb->head */
210 skb->truesize = SKB_TRUESIZE(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 atomic_set(&skb->users, 1);
212 skb->head = data;
213 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700214 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700215 skb->end = skb->tail + size;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000216#ifdef NET_SKBUFF_DATA_USES_OFFSET
217 skb->mac_header = ~0U;
218#endif
219
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800220 /* make sure we initialize shinfo sequentially */
221 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700222 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800223 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000224 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800225
David S. Millerd179cd12005-08-17 14:57:30 -0700226 if (fclone) {
227 struct sk_buff *child = skb + 1;
228 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200230 kmemcheck_annotate_bitfield(child, flags1);
231 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700232 skb->fclone = SKB_FCLONE_ORIG;
233 atomic_set(fclone_ref, 1);
234
235 child->fclone = SKB_FCLONE_UNAVAILABLE;
236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237out:
238 return skb;
239nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800240 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 skb = NULL;
242 goto out;
243}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800244EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700247 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
248 * @dev: network device to receive on
249 * @length: length to allocate
250 * @gfp_mask: get_free_pages mask, passed to alloc_skb
251 *
252 * Allocate a new &sk_buff and assign it a usage count of one. The
253 * buffer has unspecified headroom built in. Users should allocate
254 * the headroom they think they need without accounting for the
255 * built in space. The built in space is used for optimisations.
256 *
257 * %NULL is returned if there is no free memory.
258 */
259struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
260 unsigned int length, gfp_t gfp_mask)
261{
262 struct sk_buff *skb;
263
Eric Dumazet564824b2010-10-11 19:05:25 +0000264 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, NUMA_NO_NODE);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700265 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700266 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700267 skb->dev = dev;
268 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700269 return skb;
270}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800271EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Peter Zijlstra654bed12008-10-07 14:22:33 -0700273void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
274 int size)
275{
276 skb_fill_page_desc(skb, i, page, off, size);
277 skb->len += size;
278 skb->data_len += size;
279 skb->truesize += size;
280}
281EXPORT_SYMBOL(skb_add_rx_frag);
282
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700283/**
284 * dev_alloc_skb - allocate an skbuff for receiving
285 * @length: length to allocate
286 *
287 * Allocate a new &sk_buff and assign it a usage count of one. The
288 * buffer has unspecified headroom built in. Users should allocate
289 * the headroom they think they need without accounting for the
290 * built in space. The built in space is used for optimisations.
291 *
292 * %NULL is returned if there is no free memory. Although this function
293 * allocates memory it can be called from an interrupt.
294 */
295struct sk_buff *dev_alloc_skb(unsigned int length)
296{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700297 /*
298 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700299 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700300 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700301 return __dev_alloc_skb(length, GFP_ATOMIC);
302}
303EXPORT_SYMBOL(dev_alloc_skb);
304
Herbert Xu27b437c2006-07-13 19:26:39 -0700305static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Herbert Xu27b437c2006-07-13 19:26:39 -0700307 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Herbert Xu27b437c2006-07-13 19:26:39 -0700309 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 do {
312 struct sk_buff *this = list;
313 list = list->next;
314 kfree_skb(this);
315 } while (list);
316}
317
Herbert Xu27b437c2006-07-13 19:26:39 -0700318static inline void skb_drop_fraglist(struct sk_buff *skb)
319{
320 skb_drop_list(&skb_shinfo(skb)->frag_list);
321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static void skb_clone_fraglist(struct sk_buff *skb)
324{
325 struct sk_buff *list;
326
David S. Millerfbb398a2009-06-09 00:18:59 -0700327 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 skb_get(list);
329}
330
Adrian Bunk5bba1712006-06-29 13:02:35 -0700331static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 if (!skb->cloned ||
334 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
335 &skb_shinfo(skb)->dataref)) {
336 if (skb_shinfo(skb)->nr_frags) {
337 int i;
338 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000339 skb_frag_unref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
Shirley Maa6686f22011-07-06 12:22:12 +0000342 /*
343 * If skb buf is from userspace, we need to notify the caller
344 * the lower device DMA has done;
345 */
346 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
347 struct ubuf_info *uarg;
348
349 uarg = skb_shinfo(skb)->destructor_arg;
350 if (uarg->callback)
351 uarg->callback(uarg);
352 }
353
David S. Miller21dc3302010-08-23 00:13:46 -0700354 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 skb_drop_fraglist(skb);
356
357 kfree(skb->head);
358 }
359}
360
361/*
362 * Free an skbuff by memory without cleaning the state.
363 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800364static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
David S. Millerd179cd12005-08-17 14:57:30 -0700366 struct sk_buff *other;
367 atomic_t *fclone_ref;
368
David S. Millerd179cd12005-08-17 14:57:30 -0700369 switch (skb->fclone) {
370 case SKB_FCLONE_UNAVAILABLE:
371 kmem_cache_free(skbuff_head_cache, skb);
372 break;
373
374 case SKB_FCLONE_ORIG:
375 fclone_ref = (atomic_t *) (skb + 2);
376 if (atomic_dec_and_test(fclone_ref))
377 kmem_cache_free(skbuff_fclone_cache, skb);
378 break;
379
380 case SKB_FCLONE_CLONE:
381 fclone_ref = (atomic_t *) (skb + 1);
382 other = skb - 1;
383
384 /* The clone portion is available for
385 * fast-cloning again.
386 */
387 skb->fclone = SKB_FCLONE_UNAVAILABLE;
388
389 if (atomic_dec_and_test(fclone_ref))
390 kmem_cache_free(skbuff_fclone_cache, other);
391 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700395static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Eric Dumazetadf30902009-06-02 05:19:30 +0000397 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#ifdef CONFIG_XFRM
399 secpath_put(skb->sp);
400#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700401 if (skb->destructor) {
402 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 skb->destructor(skb);
404 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800405#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700406 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100407#endif
408#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800409 nf_conntrack_put_reasm(skb->nfct_reasm);
410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#ifdef CONFIG_BRIDGE_NETFILTER
412 nf_bridge_put(skb->nf_bridge);
413#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/* XXX: IS this still necessary? - JHS */
415#ifdef CONFIG_NET_SCHED
416 skb->tc_index = 0;
417#ifdef CONFIG_NET_CLS_ACT
418 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#endif
420#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700421}
422
423/* Free everything but the sk_buff shell. */
424static void skb_release_all(struct sk_buff *skb)
425{
426 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800427 skb_release_data(skb);
428}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Herbert Xu2d4baff2007-11-26 23:11:19 +0800430/**
431 * __kfree_skb - private function
432 * @skb: buffer
433 *
434 * Free an sk_buff. Release anything attached to the buffer.
435 * Clean the state. This is an internal helper function. Users should
436 * always call kfree_skb
437 */
438
439void __kfree_skb(struct sk_buff *skb)
440{
441 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 kfree_skbmem(skb);
443}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800444EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800447 * kfree_skb - free an sk_buff
448 * @skb: buffer to free
449 *
450 * Drop a reference to the buffer and free it if the usage count has
451 * hit zero.
452 */
453void kfree_skb(struct sk_buff *skb)
454{
455 if (unlikely(!skb))
456 return;
457 if (likely(atomic_read(&skb->users) == 1))
458 smp_rmb();
459 else if (likely(!atomic_dec_and_test(&skb->users)))
460 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000461 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800462 __kfree_skb(skb);
463}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800464EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800465
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700466/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000467 * consume_skb - free an skbuff
468 * @skb: buffer to free
469 *
470 * Drop a ref to the buffer and free it if the usage count has hit zero
471 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
472 * is being dropped after a failure and notes that
473 */
474void consume_skb(struct sk_buff *skb)
475{
476 if (unlikely(!skb))
477 return;
478 if (likely(atomic_read(&skb->users) == 1))
479 smp_rmb();
480 else if (likely(!atomic_dec_and_test(&skb->users)))
481 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900482 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000483 __kfree_skb(skb);
484}
485EXPORT_SYMBOL(consume_skb);
486
487/**
Andy Fleming3d153a72011-10-13 04:33:54 +0000488 * skb_recycle - clean up an skb for reuse
489 * @skb: buffer
490 *
491 * Recycles the skb to be reused as a receive buffer. This
492 * function does any necessary reference count dropping, and
493 * cleans up the skbuff as if it just came from __alloc_skb().
494 */
495void skb_recycle(struct sk_buff *skb)
496{
497 struct skb_shared_info *shinfo;
498
499 skb_release_head_state(skb);
500
501 shinfo = skb_shinfo(skb);
502 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
503 atomic_set(&shinfo->dataref, 1);
504
505 memset(skb, 0, offsetof(struct sk_buff, tail));
506 skb->data = skb->head + NET_SKB_PAD;
507 skb_reset_tail_pointer(skb);
508}
509EXPORT_SYMBOL(skb_recycle);
510
511/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700512 * skb_recycle_check - check if skb can be reused for receive
513 * @skb: buffer
514 * @skb_size: minimum receive buffer size
515 *
516 * Checks that the skb passed in is not shared or cloned, and
517 * that it is linear and its head portion at least as large as
518 * skb_size so that it can be recycled as a receive buffer.
519 * If these conditions are met, this function does any necessary
520 * reference count dropping and cleans up the skbuff as if it
521 * just came from __alloc_skb().
522 */
Changli Gao5b0daa32010-05-29 00:12:13 -0700523bool skb_recycle_check(struct sk_buff *skb, int skb_size)
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700524{
Andy Fleming3d153a72011-10-13 04:33:54 +0000525 if (!skb_is_recycleable(skb, skb_size))
Changli Gao5b0daa32010-05-29 00:12:13 -0700526 return false;
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000527
Andy Fleming3d153a72011-10-13 04:33:54 +0000528 skb_recycle(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700529
Changli Gao5b0daa32010-05-29 00:12:13 -0700530 return true;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700531}
532EXPORT_SYMBOL(skb_recycle_check);
533
Herbert Xudec18812007-10-14 00:37:30 -0700534static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
535{
536 new->tstamp = old->tstamp;
537 new->dev = old->dev;
538 new->transport_header = old->transport_header;
539 new->network_header = old->network_header;
540 new->mac_header = old->mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000541 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000542 new->rxhash = old->rxhash;
Changli Gao6461be32011-08-19 04:44:18 +0000543 new->ooo_okay = old->ooo_okay;
Tom Herbertbdeab992011-08-14 19:45:55 +0000544 new->l4_rxhash = old->l4_rxhash;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700545#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700546 new->sp = secpath_get(old->sp);
547#endif
548 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000549 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700550 new->local_df = old->local_df;
551 new->pkt_type = old->pkt_type;
552 new->ip_summed = old->ip_summed;
553 skb_copy_queue_mapping(new, old);
554 new->priority = old->priority;
555#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
556 new->ipvs_property = old->ipvs_property;
557#endif
558 new->protocol = old->protocol;
559 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800560 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700561 __nf_copy(new, old);
562#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
563 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
564 new->nf_trace = old->nf_trace;
565#endif
566#ifdef CONFIG_NET_SCHED
567 new->tc_index = old->tc_index;
568#ifdef CONFIG_NET_CLS_ACT
569 new->tc_verd = old->tc_verd;
570#endif
571#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700572 new->vlan_tci = old->vlan_tci;
573
Herbert Xudec18812007-10-14 00:37:30 -0700574 skb_copy_secmark(new, old);
575}
576
Herbert Xu82c49a32009-05-22 22:11:37 +0000577/*
578 * You should not add any new code to this function. Add it to
579 * __copy_skb_header above instead.
580 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700581static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583#define C(x) n->x = skb->x
584
585 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700587 __copy_skb_header(n, skb);
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 C(len);
590 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700591 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700592 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800593 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 C(tail);
597 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800598 C(head);
599 C(data);
600 C(truesize);
601 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 atomic_inc(&(skb_shinfo(skb)->dataref));
604 skb->cloned = 1;
605
606 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700607#undef C
608}
609
610/**
611 * skb_morph - morph one skb into another
612 * @dst: the skb to receive the contents
613 * @src: the skb to supply the contents
614 *
615 * This is identical to skb_clone except that the target skb is
616 * supplied by the user.
617 *
618 * The target skb is returned upon exit.
619 */
620struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
621{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800622 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700623 return __skb_clone(dst, src);
624}
625EXPORT_SYMBOL_GPL(skb_morph);
626
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000627/* skb_copy_ubufs - copy userspace skb frags buffers to kernel
628 * @skb: the skb to modify
629 * @gfp_mask: allocation priority
630 *
631 * This must be called on SKBTX_DEV_ZEROCOPY skb.
632 * It will copy all frags into kernel and drop the reference
633 * to userspace pages.
634 *
635 * If this function is called from an interrupt gfp_mask() must be
636 * %GFP_ATOMIC.
637 *
638 * Returns 0 on success or a negative error code on failure
639 * to allocate kernel memory to copy to.
640 */
641int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
Shirley Maa6686f22011-07-06 12:22:12 +0000642{
643 int i;
644 int num_frags = skb_shinfo(skb)->nr_frags;
645 struct page *page, *head = NULL;
646 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
647
648 for (i = 0; i < num_frags; i++) {
649 u8 *vaddr;
650 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
651
652 page = alloc_page(GFP_ATOMIC);
653 if (!page) {
654 while (head) {
655 struct page *next = (struct page *)head->private;
656 put_page(head);
657 head = next;
658 }
659 return -ENOMEM;
660 }
661 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
662 memcpy(page_address(page),
Eric Dumazet9e903e02011-10-18 21:00:24 +0000663 vaddr + f->page_offset, skb_frag_size(f));
Shirley Maa6686f22011-07-06 12:22:12 +0000664 kunmap_skb_frag(vaddr);
665 page->private = (unsigned long)head;
666 head = page;
667 }
668
669 /* skb frags release userspace buffers */
670 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbella8605c62011-10-19 23:01:49 +0000671 skb_frag_unref(skb, i);
Shirley Maa6686f22011-07-06 12:22:12 +0000672
673 uarg->callback(uarg);
674
675 /* skb frags point to kernel buffers */
676 for (i = skb_shinfo(skb)->nr_frags; i > 0; i--) {
Ian Campbella8605c62011-10-19 23:01:49 +0000677 __skb_fill_page_desc(skb, i-1, head, 0,
678 skb_shinfo(skb)->frags[i - 1].size);
Shirley Maa6686f22011-07-06 12:22:12 +0000679 head = (struct page *)head->private;
680 }
Michael S. Tsirkin48c83012011-08-31 08:03:29 +0000681
682 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000683 return 0;
684}
685
686
Herbert Xue0053ec2007-10-14 00:37:52 -0700687/**
688 * skb_clone - duplicate an sk_buff
689 * @skb: buffer to clone
690 * @gfp_mask: allocation priority
691 *
692 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
693 * copies share the same packet data but not structure. The new
694 * buffer has a reference count of 1. If the allocation fails the
695 * function returns %NULL otherwise the new buffer is returned.
696 *
697 * If this function is called from an interrupt gfp_mask() must be
698 * %GFP_ATOMIC.
699 */
700
701struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
702{
703 struct sk_buff *n;
704
Shirley Maa6686f22011-07-06 12:22:12 +0000705 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
706 if (skb_copy_ubufs(skb, gfp_mask))
707 return NULL;
708 }
709
Herbert Xue0053ec2007-10-14 00:37:52 -0700710 n = skb + 1;
711 if (skb->fclone == SKB_FCLONE_ORIG &&
712 n->fclone == SKB_FCLONE_UNAVAILABLE) {
713 atomic_t *fclone_ref = (atomic_t *) (n + 1);
714 n->fclone = SKB_FCLONE_CLONE;
715 atomic_inc(fclone_ref);
716 } else {
717 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
718 if (!n)
719 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200720
721 kmemcheck_annotate_bitfield(n, flags1);
722 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700723 n->fclone = SKB_FCLONE_UNAVAILABLE;
724 }
725
726 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800728EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
731{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700732#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /*
734 * Shift between the two data areas in bytes
735 */
736 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700737#endif
Herbert Xudec18812007-10-14 00:37:30 -0700738
739 __copy_skb_header(new, old);
740
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700741#ifndef NET_SKBUFF_DATA_USES_OFFSET
742 /* {transport,network,mac}_header are relative to skb->head */
743 new->transport_header += offset;
744 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000745 if (skb_mac_header_was_set(new))
746 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700747#endif
Herbert Xu79671682006-06-22 02:40:14 -0700748 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
749 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
750 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753/**
754 * skb_copy - create private copy of an sk_buff
755 * @skb: buffer to copy
756 * @gfp_mask: allocation priority
757 *
758 * Make a copy of both an &sk_buff and its data. This is used when the
759 * caller wishes to modify the data and needs a private copy of the
760 * data to alter. Returns %NULL on failure or the pointer to the buffer
761 * on success. The returned buffer has a reference count of 1.
762 *
763 * As by-product this function converts non-linear &sk_buff to linear
764 * one, so that &sk_buff becomes completely private and caller is allowed
765 * to modify all the data of returned buffer. This means that this
766 * function is not recommended for use in circumstances when only
767 * header is going to be modified. Use pskb_copy() instead.
768 */
769
Al Virodd0fc662005-10-07 07:46:04 +0100770struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000772 int headerlen = skb_headroom(skb);
773 unsigned int size = (skb_end_pointer(skb) - skb->head) + skb->data_len;
774 struct sk_buff *n = alloc_skb(size, gfp_mask);
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (!n)
777 return NULL;
778
779 /* Set the data pointer */
780 skb_reserve(n, headerlen);
781 /* Set the tail pointer and length */
782 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
785 BUG();
786
787 copy_skb_header(n, skb);
788 return n;
789}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800790EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792/**
793 * pskb_copy - create copy of an sk_buff with private head.
794 * @skb: buffer to copy
795 * @gfp_mask: allocation priority
796 *
797 * Make a copy of both an &sk_buff and part of its data, located
798 * in header. Fragmented data remain shared. This is used when
799 * the caller wishes to modify only header of &sk_buff and needs
800 * private copy of the header to alter. Returns %NULL on failure
801 * or the pointer to the buffer on success.
802 * The returned buffer has a reference count of 1.
803 */
804
Al Virodd0fc662005-10-07 07:46:04 +0100805struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000807 unsigned int size = skb_end_pointer(skb) - skb->head;
808 struct sk_buff *n = alloc_skb(size, gfp_mask);
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (!n)
811 goto out;
812
813 /* Set the data pointer */
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000814 skb_reserve(n, skb_headroom(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* Set the tail pointer and length */
816 skb_put(n, skb_headlen(skb));
817 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300818 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Herbert Xu25f484a2006-11-07 14:57:15 -0800820 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 n->data_len = skb->data_len;
822 n->len = skb->len;
823
824 if (skb_shinfo(skb)->nr_frags) {
825 int i;
826
Shirley Maa6686f22011-07-06 12:22:12 +0000827 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
828 if (skb_copy_ubufs(skb, gfp_mask)) {
Dan Carpenter15110222011-07-19 22:51:49 +0000829 kfree_skb(n);
830 n = NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000831 goto out;
832 }
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
835 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +0000836 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 skb_shinfo(n)->nr_frags = i;
839 }
840
David S. Miller21dc3302010-08-23 00:13:46 -0700841 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
843 skb_clone_fraglist(n);
844 }
845
846 copy_skb_header(n, skb);
847out:
848 return n;
849}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800850EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852/**
853 * pskb_expand_head - reallocate header of &sk_buff
854 * @skb: buffer to reallocate
855 * @nhead: room to add at head
856 * @ntail: room to add at tail
857 * @gfp_mask: allocation priority
858 *
859 * Expands (or creates identical copy, if &nhead and &ntail are zero)
860 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
861 * reference count of 1. Returns zero in the case of success or error,
862 * if expansion failed. In the last case, &sk_buff is not changed.
863 *
864 * All the pointers pointing into skb header may change and must be
865 * reloaded after call to this function.
866 */
867
Victor Fusco86a76ca2005-07-08 14:57:47 -0700868int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100869 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 int i;
872 u8 *data;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000873 int size = nhead + (skb_end_pointer(skb) - skb->head) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 long off;
Eric Dumazet1fd63042010-09-02 23:09:32 +0000875 bool fastpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Herbert Xu4edd87a2008-10-01 07:09:38 -0700877 BUG_ON(nhead < 0);
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (skb_shared(skb))
880 BUG();
881
882 size = SKB_DATA_ALIGN(size);
883
Changli Gaoca44ac32010-11-29 22:48:46 +0000884 /* Check if we can avoid taking references on fragments if we own
885 * the last reference on skb->head. (see skb_release_data())
886 */
887 if (!skb->cloned)
888 fastpath = true;
889 else {
890 int delta = skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1;
Changli Gaoca44ac32010-11-29 22:48:46 +0000891 fastpath = atomic_read(&skb_shinfo(skb)->dataref) == delta;
892 }
893
894 if (fastpath &&
895 size + sizeof(struct skb_shared_info) <= ksize(skb->head)) {
896 memmove(skb->head + size, skb_shinfo(skb),
897 offsetof(struct skb_shared_info,
898 frags[skb_shinfo(skb)->nr_frags]));
899 memmove(skb->head + nhead, skb->head,
900 skb_tail_pointer(skb) - skb->head);
901 off = nhead;
902 goto adjust_others;
903 }
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
906 if (!data)
907 goto nodata;
908
909 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000910 * optimized for the cases when header is void.
911 */
912 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
913
914 memcpy((struct skb_shared_info *)(data + size),
915 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +0000916 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Eric Dumazet1fd63042010-09-02 23:09:32 +0000918 if (fastpath) {
919 kfree(skb->head);
920 } else {
Shirley Maa6686f22011-07-06 12:22:12 +0000921 /* copy this zero copy skb frags */
922 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
923 if (skb_copy_ubufs(skb, gfp_mask))
924 goto nofrags;
925 }
Eric Dumazet1fd63042010-09-02 23:09:32 +0000926 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +0000927 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Eric Dumazet1fd63042010-09-02 23:09:32 +0000929 if (skb_has_frag_list(skb))
930 skb_clone_fraglist(skb);
931
932 skb_release_data(skb);
933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 off = (data + nhead) - skb->head;
935
936 skb->head = data;
Changli Gaoca44ac32010-11-29 22:48:46 +0000937adjust_others:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700939#ifdef NET_SKBUFF_DATA_USES_OFFSET
940 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700941 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700942#else
943 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700944#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700945 /* {transport,network,mac}_header and tail are relative to skb->head */
946 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700947 skb->transport_header += off;
948 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000949 if (skb_mac_header_was_set(skb))
950 skb->mac_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +0000951 /* Only adjust this if it actually is csum_start rather than csum */
952 if (skb->ip_summed == CHECKSUM_PARTIAL)
953 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700955 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 skb->nohdr = 0;
957 atomic_set(&skb_shinfo(skb)->dataref, 1);
958 return 0;
959
Shirley Maa6686f22011-07-06 12:22:12 +0000960nofrags:
961 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962nodata:
963 return -ENOMEM;
964}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800965EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967/* Make private copy of skb with writable head and some headroom */
968
969struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
970{
971 struct sk_buff *skb2;
972 int delta = headroom - skb_headroom(skb);
973
974 if (delta <= 0)
975 skb2 = pskb_copy(skb, GFP_ATOMIC);
976 else {
977 skb2 = skb_clone(skb, GFP_ATOMIC);
978 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
979 GFP_ATOMIC)) {
980 kfree_skb(skb2);
981 skb2 = NULL;
982 }
983 }
984 return skb2;
985}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800986EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988/**
989 * skb_copy_expand - copy and expand sk_buff
990 * @skb: buffer to copy
991 * @newheadroom: new free bytes at head
992 * @newtailroom: new free bytes at tail
993 * @gfp_mask: allocation priority
994 *
995 * Make a copy of both an &sk_buff and its data and while doing so
996 * allocate additional space.
997 *
998 * This is used when the caller wishes to modify the data and needs a
999 * private copy of the data to alter as well as more space for new fields.
1000 * Returns %NULL on failure or the pointer to the buffer
1001 * on success. The returned buffer has a reference count of 1.
1002 *
1003 * You must pass %GFP_ATOMIC as the allocation priority if this function
1004 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 */
1006struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -07001007 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +01001008 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 /*
1011 * Allocate the copy buffer
1012 */
1013 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
1014 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001015 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -07001017 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (!n)
1020 return NULL;
1021
1022 skb_reserve(n, newheadroom);
1023
1024 /* Set the tail pointer and length */
1025 skb_put(n, skb->len);
1026
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001027 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 head_copy_off = 0;
1029 if (newheadroom <= head_copy_len)
1030 head_copy_len = newheadroom;
1031 else
1032 head_copy_off = newheadroom - head_copy_len;
1033
1034 /* Copy the linear header and data. */
1035 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1036 skb->len + head_copy_len))
1037 BUG();
1038
1039 copy_skb_header(n, skb);
1040
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001041 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001042 if (n->ip_summed == CHECKSUM_PARTIAL)
1043 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001044#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001045 n->transport_header += off;
1046 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001047 if (skb_mac_header_was_set(skb))
1048 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -07001049#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return n;
1052}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001053EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055/**
1056 * skb_pad - zero pad the tail of an skb
1057 * @skb: buffer to pad
1058 * @pad: space to pad
1059 *
1060 * Ensure that a buffer is followed by a padding area that is zero
1061 * filled. Used by network drivers which may DMA or transfer data
1062 * beyond the buffer end onto the wire.
1063 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001064 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001066
Herbert Xu5b057c62006-06-23 02:06:41 -07001067int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Herbert Xu5b057c62006-06-23 02:06:41 -07001069 int err;
1070 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001073 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001075 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001077
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001078 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001079 if (likely(skb_cloned(skb) || ntail > 0)) {
1080 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1081 if (unlikely(err))
1082 goto free_skb;
1083 }
1084
1085 /* FIXME: The use of this function with non-linear skb's really needs
1086 * to be audited.
1087 */
1088 err = skb_linearize(skb);
1089 if (unlikely(err))
1090 goto free_skb;
1091
1092 memset(skb->data + skb->len, 0, pad);
1093 return 0;
1094
1095free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001097 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001098}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001099EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001100
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001101/**
1102 * skb_put - add data to a buffer
1103 * @skb: buffer to use
1104 * @len: amount of data to add
1105 *
1106 * This function extends the used data area of the buffer. If this would
1107 * exceed the total buffer size the kernel will panic. A pointer to the
1108 * first byte of the extra data is returned.
1109 */
1110unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1111{
1112 unsigned char *tmp = skb_tail_pointer(skb);
1113 SKB_LINEAR_ASSERT(skb);
1114 skb->tail += len;
1115 skb->len += len;
1116 if (unlikely(skb->tail > skb->end))
1117 skb_over_panic(skb, len, __builtin_return_address(0));
1118 return tmp;
1119}
1120EXPORT_SYMBOL(skb_put);
1121
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001122/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001123 * skb_push - add data to the start of a buffer
1124 * @skb: buffer to use
1125 * @len: amount of data to add
1126 *
1127 * This function extends the used data area of the buffer at the buffer
1128 * start. If this would exceed the total buffer headroom the kernel will
1129 * panic. A pointer to the first byte of the extra data is returned.
1130 */
1131unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1132{
1133 skb->data -= len;
1134 skb->len += len;
1135 if (unlikely(skb->data<skb->head))
1136 skb_under_panic(skb, len, __builtin_return_address(0));
1137 return skb->data;
1138}
1139EXPORT_SYMBOL(skb_push);
1140
1141/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001142 * skb_pull - remove data from the start of a buffer
1143 * @skb: buffer to use
1144 * @len: amount of data to remove
1145 *
1146 * This function removes data from the start of a buffer, returning
1147 * the memory to the headroom. A pointer to the next data in the buffer
1148 * is returned. Once the data has been pulled future pushes will overwrite
1149 * the old data.
1150 */
1151unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1152{
David S. Miller47d29642010-05-02 02:21:44 -07001153 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001154}
1155EXPORT_SYMBOL(skb_pull);
1156
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001157/**
1158 * skb_trim - remove end from a buffer
1159 * @skb: buffer to alter
1160 * @len: new length
1161 *
1162 * Cut the length of a buffer down by removing data from the tail. If
1163 * the buffer is already under the length specified it is not modified.
1164 * The skb must be linear.
1165 */
1166void skb_trim(struct sk_buff *skb, unsigned int len)
1167{
1168 if (skb->len > len)
1169 __skb_trim(skb, len);
1170}
1171EXPORT_SYMBOL(skb_trim);
1172
Herbert Xu3cc0e872006-06-09 16:13:38 -07001173/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 */
1175
Herbert Xu3cc0e872006-06-09 16:13:38 -07001176int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Herbert Xu27b437c2006-07-13 19:26:39 -07001178 struct sk_buff **fragp;
1179 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 int offset = skb_headlen(skb);
1181 int nfrags = skb_shinfo(skb)->nr_frags;
1182 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001183 int err;
1184
1185 if (skb_cloned(skb) &&
1186 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1187 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001189 i = 0;
1190 if (offset >= len)
1191 goto drop_pages;
1192
1193 for (; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001194 int end = offset + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Herbert Xu27b437c2006-07-13 19:26:39 -07001195
1196 if (end < len) {
1197 offset = end;
1198 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001200
Eric Dumazet9e903e02011-10-18 21:00:24 +00001201 skb_frag_size_set(&skb_shinfo(skb)->frags[i++], len - offset);
Herbert Xu27b437c2006-07-13 19:26:39 -07001202
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001203drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001204 skb_shinfo(skb)->nr_frags = i;
1205
1206 for (; i < nfrags; i++)
Ian Campbellea2ab692011-08-22 23:44:58 +00001207 skb_frag_unref(skb, i);
Herbert Xu27b437c2006-07-13 19:26:39 -07001208
David S. Miller21dc3302010-08-23 00:13:46 -07001209 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001210 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001211 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213
Herbert Xu27b437c2006-07-13 19:26:39 -07001214 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1215 fragp = &frag->next) {
1216 int end = offset + frag->len;
1217
1218 if (skb_shared(frag)) {
1219 struct sk_buff *nfrag;
1220
1221 nfrag = skb_clone(frag, GFP_ATOMIC);
1222 if (unlikely(!nfrag))
1223 return -ENOMEM;
1224
1225 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001226 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001227 frag = nfrag;
1228 *fragp = frag;
1229 }
1230
1231 if (end < len) {
1232 offset = end;
1233 continue;
1234 }
1235
1236 if (end > len &&
1237 unlikely((err = pskb_trim(frag, len - offset))))
1238 return err;
1239
1240 if (frag->next)
1241 skb_drop_list(&frag->next);
1242 break;
1243 }
1244
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001245done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001246 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 skb->data_len -= skb->len - len;
1248 skb->len = len;
1249 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001250 skb->len = len;
1251 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001252 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254
1255 return 0;
1256}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001257EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259/**
1260 * __pskb_pull_tail - advance tail of skb header
1261 * @skb: buffer to reallocate
1262 * @delta: number of bytes to advance tail
1263 *
1264 * The function makes a sense only on a fragmented &sk_buff,
1265 * it expands header moving its tail forward and copying necessary
1266 * data from fragmented part.
1267 *
1268 * &sk_buff MUST have reference count of 1.
1269 *
1270 * Returns %NULL (and &sk_buff does not change) if pull failed
1271 * or value of new tail of skb in the case of success.
1272 *
1273 * All the pointers pointing into skb header may change and must be
1274 * reloaded after call to this function.
1275 */
1276
1277/* Moves tail of skb head forward, copying data from fragmented part,
1278 * when it is necessary.
1279 * 1. It may fail due to malloc failure.
1280 * 2. It may change skb pointers.
1281 *
1282 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1283 */
1284unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1285{
1286 /* If skb has not enough free space at tail, get new one
1287 * plus 128 bytes for future expansions. If we have enough
1288 * room at tail, reallocate without expansion only if skb is cloned.
1289 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001290 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (eat > 0 || skb_cloned(skb)) {
1293 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1294 GFP_ATOMIC))
1295 return NULL;
1296 }
1297
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001298 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 BUG();
1300
1301 /* Optimization: no fragments, no reasons to preestimate
1302 * size of pulled pages. Superb.
1303 */
David S. Miller21dc3302010-08-23 00:13:46 -07001304 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 goto pull_pages;
1306
1307 /* Estimate size of pulled pages. */
1308 eat = delta;
1309 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001310 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1311
1312 if (size >= eat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 goto pull_pages;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001314 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
1317 /* If we need update frag list, we are in troubles.
1318 * Certainly, it possible to add an offset to skb data,
1319 * but taking into account that pulling is expected to
1320 * be very rare operation, it is worth to fight against
1321 * further bloating skb head and crucify ourselves here instead.
1322 * Pure masohism, indeed. 8)8)
1323 */
1324 if (eat) {
1325 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1326 struct sk_buff *clone = NULL;
1327 struct sk_buff *insp = NULL;
1328
1329 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001330 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (list->len <= eat) {
1333 /* Eaten as whole. */
1334 eat -= list->len;
1335 list = list->next;
1336 insp = list;
1337 } else {
1338 /* Eaten partially. */
1339
1340 if (skb_shared(list)) {
1341 /* Sucks! We need to fork list. :-( */
1342 clone = skb_clone(list, GFP_ATOMIC);
1343 if (!clone)
1344 return NULL;
1345 insp = list->next;
1346 list = clone;
1347 } else {
1348 /* This may be pulled without
1349 * problems. */
1350 insp = list;
1351 }
1352 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001353 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return NULL;
1355 }
1356 break;
1357 }
1358 } while (eat);
1359
1360 /* Free pulled out fragments. */
1361 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1362 skb_shinfo(skb)->frag_list = list->next;
1363 kfree_skb(list);
1364 }
1365 /* And insert new clone at head. */
1366 if (clone) {
1367 clone->next = list;
1368 skb_shinfo(skb)->frag_list = clone;
1369 }
1370 }
1371 /* Success! Now we may commit changes to skb data. */
1372
1373pull_pages:
1374 eat = delta;
1375 k = 0;
1376 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001377 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1378
1379 if (size <= eat) {
Ian Campbellea2ab692011-08-22 23:44:58 +00001380 skb_frag_unref(skb, i);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001381 eat -= size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 } else {
1383 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1384 if (eat) {
1385 skb_shinfo(skb)->frags[k].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001386 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 eat = 0;
1388 }
1389 k++;
1390 }
1391 }
1392 skb_shinfo(skb)->nr_frags = k;
1393
1394 skb->tail += delta;
1395 skb->data_len -= delta;
1396
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001397 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001399EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Eric Dumazet22019b12011-07-29 18:37:31 +00001401/**
1402 * skb_copy_bits - copy bits from skb to kernel buffer
1403 * @skb: source skb
1404 * @offset: offset in source
1405 * @to: destination buffer
1406 * @len: number of bytes to copy
1407 *
1408 * Copy the specified number of bytes from the source skb to the
1409 * destination buffer.
1410 *
1411 * CAUTION ! :
1412 * If its prototype is ever changed,
1413 * check arch/{*}/net/{*}.S files,
1414 * since it is called from BPF assembly code.
1415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1417{
David S. Miller1a028e52007-04-27 15:21:23 -07001418 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001419 struct sk_buff *frag_iter;
1420 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 if (offset > (int)skb->len - len)
1423 goto fault;
1424
1425 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001426 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (copy > len)
1428 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001429 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if ((len -= copy) == 0)
1431 return 0;
1432 offset += copy;
1433 to += copy;
1434 }
1435
1436 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001437 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001439 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001440
Eric Dumazet9e903e02011-10-18 21:00:24 +00001441 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if ((copy = end - offset) > 0) {
1443 u8 *vaddr;
1444
1445 if (copy > len)
1446 copy = len;
1447
1448 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1449 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001450 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1451 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 kunmap_skb_frag(vaddr);
1453
1454 if ((len -= copy) == 0)
1455 return 0;
1456 offset += copy;
1457 to += copy;
1458 }
David S. Miller1a028e52007-04-27 15:21:23 -07001459 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
1461
David S. Millerfbb398a2009-06-09 00:18:59 -07001462 skb_walk_frags(skb, frag_iter) {
1463 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
David S. Millerfbb398a2009-06-09 00:18:59 -07001465 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
David S. Millerfbb398a2009-06-09 00:18:59 -07001467 end = start + frag_iter->len;
1468 if ((copy = end - offset) > 0) {
1469 if (copy > len)
1470 copy = len;
1471 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1472 goto fault;
1473 if ((len -= copy) == 0)
1474 return 0;
1475 offset += copy;
1476 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001478 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
Shirley Maa6686f22011-07-06 12:22:12 +00001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (!len)
1482 return 0;
1483
1484fault:
1485 return -EFAULT;
1486}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001487EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Jens Axboe9c55e012007-11-06 23:30:13 -08001489/*
1490 * Callback from splice_to_pipe(), if we need to release some pages
1491 * at the end of the spd in case we error'ed out in filling the pipe.
1492 */
1493static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1494{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001495 put_page(spd->pages[i]);
1496}
Jens Axboe9c55e012007-11-06 23:30:13 -08001497
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001498static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1499 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001500 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001501{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001502 struct page *p = sk->sk_sndmsg_page;
1503 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001504
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001505 if (!p) {
1506new_page:
1507 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1508 if (!p)
1509 return NULL;
1510
1511 off = sk->sk_sndmsg_off = 0;
1512 /* hold one ref to this page until it's full */
1513 } else {
1514 unsigned int mlen;
1515
1516 off = sk->sk_sndmsg_off;
1517 mlen = PAGE_SIZE - off;
1518 if (mlen < 64 && mlen < *len) {
1519 put_page(p);
1520 goto new_page;
1521 }
1522
1523 *len = min_t(unsigned int, *len, mlen);
1524 }
1525
1526 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1527 sk->sk_sndmsg_off += *len;
1528 *offset = off;
1529 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001530
1531 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001532}
1533
1534/*
1535 * Fill page/offset/length into spd, if it can hold more pages.
1536 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001537static inline int spd_fill_page(struct splice_pipe_desc *spd,
1538 struct pipe_inode_info *pipe, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001539 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001540 struct sk_buff *skb, int linear,
1541 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001542{
Jens Axboe35f3d142010-05-20 10:43:18 +02001543 if (unlikely(spd->nr_pages == pipe->buffers))
Jens Axboe9c55e012007-11-06 23:30:13 -08001544 return 1;
1545
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001546 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001547 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001548 if (!page)
1549 return 1;
1550 } else
1551 get_page(page);
1552
Jens Axboe9c55e012007-11-06 23:30:13 -08001553 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001554 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001555 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001556 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001557
Jens Axboe9c55e012007-11-06 23:30:13 -08001558 return 0;
1559}
1560
Octavian Purdila2870c432008-07-15 00:49:11 -07001561static inline void __segment_seek(struct page **page, unsigned int *poff,
1562 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001563{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001564 unsigned long n;
1565
Octavian Purdila2870c432008-07-15 00:49:11 -07001566 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001567 n = *poff / PAGE_SIZE;
1568 if (n)
1569 *page = nth_page(*page, n);
1570
Octavian Purdila2870c432008-07-15 00:49:11 -07001571 *poff = *poff % PAGE_SIZE;
1572 *plen -= off;
1573}
Jens Axboe9c55e012007-11-06 23:30:13 -08001574
Octavian Purdila2870c432008-07-15 00:49:11 -07001575static inline int __splice_segment(struct page *page, unsigned int poff,
1576 unsigned int plen, unsigned int *off,
1577 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001578 struct splice_pipe_desc *spd, int linear,
Jens Axboe35f3d142010-05-20 10:43:18 +02001579 struct sock *sk,
1580 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001581{
1582 if (!*len)
1583 return 1;
1584
1585 /* skip this segment if already processed */
1586 if (*off >= plen) {
1587 *off -= plen;
1588 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001589 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001590
Octavian Purdila2870c432008-07-15 00:49:11 -07001591 /* ignore any bits we already processed */
1592 if (*off) {
1593 __segment_seek(&page, &poff, &plen, *off);
1594 *off = 0;
1595 }
1596
1597 do {
1598 unsigned int flen = min(*len, plen);
1599
1600 /* the linear region may spread across several pages */
1601 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1602
Jens Axboe35f3d142010-05-20 10:43:18 +02001603 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001604 return 1;
1605
1606 __segment_seek(&page, &poff, &plen, flen);
1607 *len -= flen;
1608
1609 } while (*len && plen);
1610
1611 return 0;
1612}
1613
1614/*
1615 * Map linear and fragment data from the skb to spd. It reports failure if the
1616 * pipe is full or if we already spliced the requested length.
1617 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001618static int __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1619 unsigned int *offset, unsigned int *len,
1620 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001621{
1622 int seg;
1623
Jens Axboe9c55e012007-11-06 23:30:13 -08001624 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001625 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001626 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001627 if (__splice_segment(virt_to_page(skb->data),
1628 (unsigned long) skb->data & (PAGE_SIZE - 1),
1629 skb_headlen(skb),
Jens Axboe35f3d142010-05-20 10:43:18 +02001630 offset, len, skb, spd, 1, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001631 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001632
1633 /*
1634 * then map the fragments
1635 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001636 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1637 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1638
Ian Campbellea2ab692011-08-22 23:44:58 +00001639 if (__splice_segment(skb_frag_page(f),
Eric Dumazet9e903e02011-10-18 21:00:24 +00001640 f->page_offset, skb_frag_size(f),
Jens Axboe35f3d142010-05-20 10:43:18 +02001641 offset, len, skb, spd, 0, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001642 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001643 }
1644
Octavian Purdila2870c432008-07-15 00:49:11 -07001645 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001646}
1647
1648/*
1649 * Map data from the skb to a pipe. Should handle both the linear part,
1650 * the fragments, and the frag list. It does NOT handle frag lists within
1651 * the frag list, if such a thing exists. We'd probably need to recurse to
1652 * handle that cleanly.
1653 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001654int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001655 struct pipe_inode_info *pipe, unsigned int tlen,
1656 unsigned int flags)
1657{
Jens Axboe35f3d142010-05-20 10:43:18 +02001658 struct partial_page partial[PIPE_DEF_BUFFERS];
1659 struct page *pages[PIPE_DEF_BUFFERS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001660 struct splice_pipe_desc spd = {
1661 .pages = pages,
1662 .partial = partial,
1663 .flags = flags,
1664 .ops = &sock_pipe_buf_ops,
1665 .spd_release = sock_spd_release,
1666 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001667 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001668 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001669 int ret = 0;
1670
1671 if (splice_grow_spd(pipe, &spd))
1672 return -ENOMEM;
Jens Axboe9c55e012007-11-06 23:30:13 -08001673
1674 /*
1675 * __skb_splice_bits() only fails if the output has no room left,
1676 * so no point in going over the frag_list for the error case.
1677 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001678 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001679 goto done;
1680 else if (!tlen)
1681 goto done;
1682
1683 /*
1684 * now see if we have a frag_list to map
1685 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001686 skb_walk_frags(skb, frag_iter) {
1687 if (!tlen)
1688 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001689 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001690 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001691 }
1692
1693done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001694 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001695 /*
1696 * Drop the socket lock, otherwise we have reverse
1697 * locking dependencies between sk_lock and i_mutex
1698 * here as compared to sendfile(). We enter here
1699 * with the socket lock held, and splice_to_pipe() will
1700 * grab the pipe inode lock. For sendfile() emulation,
1701 * we call into ->sendpage() with the i_mutex lock held
1702 * and networking will grab the socket lock.
1703 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001704 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001705 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001706 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001707 }
1708
Jens Axboe35f3d142010-05-20 10:43:18 +02001709 splice_shrink_spd(pipe, &spd);
1710 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001711}
1712
Herbert Xu357b40a2005-04-19 22:30:14 -07001713/**
1714 * skb_store_bits - store bits from kernel buffer to skb
1715 * @skb: destination buffer
1716 * @offset: offset in destination
1717 * @from: source buffer
1718 * @len: number of bytes to copy
1719 *
1720 * Copy the specified number of bytes from the source buffer to the
1721 * destination skb. This function handles all the messy bits of
1722 * traversing fragment lists and such.
1723 */
1724
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001725int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001726{
David S. Miller1a028e52007-04-27 15:21:23 -07001727 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001728 struct sk_buff *frag_iter;
1729 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001730
1731 if (offset > (int)skb->len - len)
1732 goto fault;
1733
David S. Miller1a028e52007-04-27 15:21:23 -07001734 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001735 if (copy > len)
1736 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001737 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001738 if ((len -= copy) == 0)
1739 return 0;
1740 offset += copy;
1741 from += copy;
1742 }
1743
1744 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1745 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001746 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001747
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001748 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001749
Eric Dumazet9e903e02011-10-18 21:00:24 +00001750 end = start + skb_frag_size(frag);
Herbert Xu357b40a2005-04-19 22:30:14 -07001751 if ((copy = end - offset) > 0) {
1752 u8 *vaddr;
1753
1754 if (copy > len)
1755 copy = len;
1756
1757 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001758 memcpy(vaddr + frag->page_offset + offset - start,
1759 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001760 kunmap_skb_frag(vaddr);
1761
1762 if ((len -= copy) == 0)
1763 return 0;
1764 offset += copy;
1765 from += copy;
1766 }
David S. Miller1a028e52007-04-27 15:21:23 -07001767 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001768 }
1769
David S. Millerfbb398a2009-06-09 00:18:59 -07001770 skb_walk_frags(skb, frag_iter) {
1771 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001772
David S. Millerfbb398a2009-06-09 00:18:59 -07001773 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001774
David S. Millerfbb398a2009-06-09 00:18:59 -07001775 end = start + frag_iter->len;
1776 if ((copy = end - offset) > 0) {
1777 if (copy > len)
1778 copy = len;
1779 if (skb_store_bits(frag_iter, offset - start,
1780 from, copy))
1781 goto fault;
1782 if ((len -= copy) == 0)
1783 return 0;
1784 offset += copy;
1785 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001786 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001787 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001788 }
1789 if (!len)
1790 return 0;
1791
1792fault:
1793 return -EFAULT;
1794}
Herbert Xu357b40a2005-04-19 22:30:14 -07001795EXPORT_SYMBOL(skb_store_bits);
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/* Checksum skb data. */
1798
Al Viro2bbbc862006-11-14 21:37:14 -08001799__wsum skb_checksum(const struct sk_buff *skb, int offset,
1800 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
David S. Miller1a028e52007-04-27 15:21:23 -07001802 int start = skb_headlen(skb);
1803 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001804 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 int pos = 0;
1806
1807 /* Checksum header. */
1808 if (copy > 0) {
1809 if (copy > len)
1810 copy = len;
1811 csum = csum_partial(skb->data + offset, copy, csum);
1812 if ((len -= copy) == 0)
1813 return csum;
1814 offset += copy;
1815 pos = copy;
1816 }
1817
1818 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001819 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001821 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001822
Eric Dumazet9e903e02011-10-18 21:00:24 +00001823 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001825 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 u8 *vaddr;
1827 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1828
1829 if (copy > len)
1830 copy = len;
1831 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001832 csum2 = csum_partial(vaddr + frag->page_offset +
1833 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 kunmap_skb_frag(vaddr);
1835 csum = csum_block_add(csum, csum2, pos);
1836 if (!(len -= copy))
1837 return csum;
1838 offset += copy;
1839 pos += copy;
1840 }
David S. Miller1a028e52007-04-27 15:21:23 -07001841 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
David S. Millerfbb398a2009-06-09 00:18:59 -07001844 skb_walk_frags(skb, frag_iter) {
1845 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
David S. Millerfbb398a2009-06-09 00:18:59 -07001847 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
David S. Millerfbb398a2009-06-09 00:18:59 -07001849 end = start + frag_iter->len;
1850 if ((copy = end - offset) > 0) {
1851 __wsum csum2;
1852 if (copy > len)
1853 copy = len;
1854 csum2 = skb_checksum(frag_iter, offset - start,
1855 copy, 0);
1856 csum = csum_block_add(csum, csum2, pos);
1857 if ((len -= copy) == 0)
1858 return csum;
1859 offset += copy;
1860 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001862 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001864 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 return csum;
1867}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001868EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870/* Both of above in one bottle. */
1871
Al Viro81d77662006-11-14 21:37:33 -08001872__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1873 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
David S. Miller1a028e52007-04-27 15:21:23 -07001875 int start = skb_headlen(skb);
1876 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001877 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 int pos = 0;
1879
1880 /* Copy header. */
1881 if (copy > 0) {
1882 if (copy > len)
1883 copy = len;
1884 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1885 copy, csum);
1886 if ((len -= copy) == 0)
1887 return csum;
1888 offset += copy;
1889 to += copy;
1890 pos = copy;
1891 }
1892
1893 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001894 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001896 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001897
Eric Dumazet9e903e02011-10-18 21:00:24 +00001898 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001900 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 u8 *vaddr;
1902 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1903
1904 if (copy > len)
1905 copy = len;
1906 vaddr = kmap_skb_frag(frag);
1907 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001908 frag->page_offset +
1909 offset - start, to,
1910 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 kunmap_skb_frag(vaddr);
1912 csum = csum_block_add(csum, csum2, pos);
1913 if (!(len -= copy))
1914 return csum;
1915 offset += copy;
1916 to += copy;
1917 pos += copy;
1918 }
David S. Miller1a028e52007-04-27 15:21:23 -07001919 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921
David S. Millerfbb398a2009-06-09 00:18:59 -07001922 skb_walk_frags(skb, frag_iter) {
1923 __wsum csum2;
1924 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
David S. Millerfbb398a2009-06-09 00:18:59 -07001926 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
David S. Millerfbb398a2009-06-09 00:18:59 -07001928 end = start + frag_iter->len;
1929 if ((copy = end - offset) > 0) {
1930 if (copy > len)
1931 copy = len;
1932 csum2 = skb_copy_and_csum_bits(frag_iter,
1933 offset - start,
1934 to, copy, 0);
1935 csum = csum_block_add(csum, csum2, pos);
1936 if ((len -= copy) == 0)
1937 return csum;
1938 offset += copy;
1939 to += copy;
1940 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001942 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001944 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return csum;
1946}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001947EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1950{
Al Virod3bc23e2006-11-14 21:24:49 -08001951 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 long csstart;
1953
Patrick McHardy84fa7932006-08-29 16:44:56 -07001954 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00001955 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 else
1957 csstart = skb_headlen(skb);
1958
Kris Katterjohn09a62662006-01-08 22:24:28 -08001959 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001961 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 csum = 0;
1964 if (csstart != skb->len)
1965 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1966 skb->len - csstart, 0);
1967
Patrick McHardy84fa7932006-08-29 16:44:56 -07001968 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001969 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Al Virod3bc23e2006-11-14 21:24:49 -08001971 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001974EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976/**
1977 * skb_dequeue - remove from the head of the queue
1978 * @list: list to dequeue from
1979 *
1980 * Remove the head of the list. The list lock is taken so the function
1981 * may be used safely with other locking list functions. The head item is
1982 * returned or %NULL if the list is empty.
1983 */
1984
1985struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1986{
1987 unsigned long flags;
1988 struct sk_buff *result;
1989
1990 spin_lock_irqsave(&list->lock, flags);
1991 result = __skb_dequeue(list);
1992 spin_unlock_irqrestore(&list->lock, flags);
1993 return result;
1994}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001995EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997/**
1998 * skb_dequeue_tail - remove from the tail of the queue
1999 * @list: list to dequeue from
2000 *
2001 * Remove the tail of the list. The list lock is taken so the function
2002 * may be used safely with other locking list functions. The tail item is
2003 * returned or %NULL if the list is empty.
2004 */
2005struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
2006{
2007 unsigned long flags;
2008 struct sk_buff *result;
2009
2010 spin_lock_irqsave(&list->lock, flags);
2011 result = __skb_dequeue_tail(list);
2012 spin_unlock_irqrestore(&list->lock, flags);
2013 return result;
2014}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002015EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017/**
2018 * skb_queue_purge - empty a list
2019 * @list: list to empty
2020 *
2021 * Delete all buffers on an &sk_buff list. Each buffer is removed from
2022 * the list and one reference dropped. This function takes the list
2023 * lock and is atomic with respect to other list locking functions.
2024 */
2025void skb_queue_purge(struct sk_buff_head *list)
2026{
2027 struct sk_buff *skb;
2028 while ((skb = skb_dequeue(list)) != NULL)
2029 kfree_skb(skb);
2030}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002031EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033/**
2034 * skb_queue_head - queue a buffer at the list head
2035 * @list: list to use
2036 * @newsk: buffer to queue
2037 *
2038 * Queue a buffer at the start of the list. This function takes the
2039 * list lock and can be used safely with other locking &sk_buff functions
2040 * safely.
2041 *
2042 * A buffer cannot be placed on two lists at the same time.
2043 */
2044void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2045{
2046 unsigned long flags;
2047
2048 spin_lock_irqsave(&list->lock, flags);
2049 __skb_queue_head(list, newsk);
2050 spin_unlock_irqrestore(&list->lock, flags);
2051}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002052EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054/**
2055 * skb_queue_tail - queue a buffer at the list tail
2056 * @list: list to use
2057 * @newsk: buffer to queue
2058 *
2059 * Queue a buffer at the tail of the list. This function takes the
2060 * list lock and can be used safely with other locking &sk_buff functions
2061 * safely.
2062 *
2063 * A buffer cannot be placed on two lists at the same time.
2064 */
2065void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2066{
2067 unsigned long flags;
2068
2069 spin_lock_irqsave(&list->lock, flags);
2070 __skb_queue_tail(list, newsk);
2071 spin_unlock_irqrestore(&list->lock, flags);
2072}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002073EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075/**
2076 * skb_unlink - remove a buffer from a list
2077 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002078 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 *
David S. Miller8728b832005-08-09 19:25:21 -07002080 * Remove a packet from a list. The list locks are taken and this
2081 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 *
David S. Miller8728b832005-08-09 19:25:21 -07002083 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 */
David S. Miller8728b832005-08-09 19:25:21 -07002085void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
David S. Miller8728b832005-08-09 19:25:21 -07002087 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
David S. Miller8728b832005-08-09 19:25:21 -07002089 spin_lock_irqsave(&list->lock, flags);
2090 __skb_unlink(skb, list);
2091 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002093EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095/**
2096 * skb_append - append a buffer
2097 * @old: buffer to insert after
2098 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002099 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 *
2101 * Place a packet after a given packet in a list. The list locks are taken
2102 * and this function is atomic with respect to other list locked calls.
2103 * A buffer cannot be placed on two lists at the same time.
2104 */
David S. Miller8728b832005-08-09 19:25:21 -07002105void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 unsigned long flags;
2108
David S. Miller8728b832005-08-09 19:25:21 -07002109 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002110 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002111 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002113EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115/**
2116 * skb_insert - insert a buffer
2117 * @old: buffer to insert before
2118 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002119 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 *
David S. Miller8728b832005-08-09 19:25:21 -07002121 * Place a packet before a given packet in a list. The list locks are
2122 * taken and this function is atomic with respect to other list locked
2123 * calls.
2124 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 * A buffer cannot be placed on two lists at the same time.
2126 */
David S. Miller8728b832005-08-09 19:25:21 -07002127void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 unsigned long flags;
2130
David S. Miller8728b832005-08-09 19:25:21 -07002131 spin_lock_irqsave(&list->lock, flags);
2132 __skb_insert(newsk, old->prev, old, list);
2133 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002135EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137static inline void skb_split_inside_header(struct sk_buff *skb,
2138 struct sk_buff* skb1,
2139 const u32 len, const int pos)
2140{
2141 int i;
2142
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002143 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2144 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 /* And move data appendix as is. */
2146 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2147 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2148
2149 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2150 skb_shinfo(skb)->nr_frags = 0;
2151 skb1->data_len = skb->data_len;
2152 skb1->len += skb1->data_len;
2153 skb->data_len = 0;
2154 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002155 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
2158static inline void skb_split_no_header(struct sk_buff *skb,
2159 struct sk_buff* skb1,
2160 const u32 len, int pos)
2161{
2162 int i, k = 0;
2163 const int nfrags = skb_shinfo(skb)->nr_frags;
2164
2165 skb_shinfo(skb)->nr_frags = 0;
2166 skb1->len = skb1->data_len = skb->len - len;
2167 skb->len = len;
2168 skb->data_len = len - pos;
2169
2170 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002171 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 if (pos + size > len) {
2174 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2175
2176 if (pos < len) {
2177 /* Split frag.
2178 * We have two variants in this case:
2179 * 1. Move all the frag to the second
2180 * part, if it is possible. F.e.
2181 * this approach is mandatory for TUX,
2182 * where splitting is expensive.
2183 * 2. Split is accurately. We make this.
2184 */
Ian Campbellea2ab692011-08-22 23:44:58 +00002185 skb_frag_ref(skb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002187 skb_frag_size_sub(&skb_shinfo(skb1)->frags[0], len - pos);
2188 skb_frag_size_set(&skb_shinfo(skb)->frags[i], len - pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 skb_shinfo(skb)->nr_frags++;
2190 }
2191 k++;
2192 } else
2193 skb_shinfo(skb)->nr_frags++;
2194 pos += size;
2195 }
2196 skb_shinfo(skb1)->nr_frags = k;
2197}
2198
2199/**
2200 * skb_split - Split fragmented skb to two parts at length len.
2201 * @skb: the buffer to split
2202 * @skb1: the buffer to receive the second part
2203 * @len: new length for skb
2204 */
2205void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2206{
2207 int pos = skb_headlen(skb);
2208
2209 if (len < pos) /* Split line is inside header. */
2210 skb_split_inside_header(skb, skb1, len, pos);
2211 else /* Second chunk has no header, nothing to copy. */
2212 skb_split_no_header(skb, skb1, len, pos);
2213}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002214EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002216/* Shifting from/to a cloned skb is a no-go.
2217 *
2218 * Caller cannot keep skb_shinfo related pointers past calling here!
2219 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002220static int skb_prepare_for_shift(struct sk_buff *skb)
2221{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002222 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002223}
2224
2225/**
2226 * skb_shift - Shifts paged data partially from skb to another
2227 * @tgt: buffer into which tail data gets added
2228 * @skb: buffer from which the paged data comes from
2229 * @shiftlen: shift up to this many bytes
2230 *
2231 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2232 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2233 * It's up to caller to free skb if everything was shifted.
2234 *
2235 * If @tgt runs out of frags, the whole operation is aborted.
2236 *
2237 * Skb cannot include anything else but paged data while tgt is allowed
2238 * to have non-paged data as well.
2239 *
2240 * TODO: full sized shift could be optimized but that would need
2241 * specialized skb free'er to handle frags without up-to-date nr_frags.
2242 */
2243int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2244{
2245 int from, to, merge, todo;
2246 struct skb_frag_struct *fragfrom, *fragto;
2247
2248 BUG_ON(shiftlen > skb->len);
2249 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2250
2251 todo = shiftlen;
2252 from = 0;
2253 to = skb_shinfo(tgt)->nr_frags;
2254 fragfrom = &skb_shinfo(skb)->frags[from];
2255
2256 /* Actual merge is delayed until the point when we know we can
2257 * commit all, so that we don't have to undo partial changes
2258 */
2259 if (!to ||
Ian Campbellea2ab692011-08-22 23:44:58 +00002260 !skb_can_coalesce(tgt, to, skb_frag_page(fragfrom),
2261 fragfrom->page_offset)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002262 merge = -1;
2263 } else {
2264 merge = to - 1;
2265
Eric Dumazet9e903e02011-10-18 21:00:24 +00002266 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002267 if (todo < 0) {
2268 if (skb_prepare_for_shift(skb) ||
2269 skb_prepare_for_shift(tgt))
2270 return 0;
2271
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002272 /* All previous frag pointers might be stale! */
2273 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002274 fragto = &skb_shinfo(tgt)->frags[merge];
2275
Eric Dumazet9e903e02011-10-18 21:00:24 +00002276 skb_frag_size_add(fragto, shiftlen);
2277 skb_frag_size_sub(fragfrom, shiftlen);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002278 fragfrom->page_offset += shiftlen;
2279
2280 goto onlymerged;
2281 }
2282
2283 from++;
2284 }
2285
2286 /* Skip full, not-fitting skb to avoid expensive operations */
2287 if ((shiftlen == skb->len) &&
2288 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2289 return 0;
2290
2291 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2292 return 0;
2293
2294 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2295 if (to == MAX_SKB_FRAGS)
2296 return 0;
2297
2298 fragfrom = &skb_shinfo(skb)->frags[from];
2299 fragto = &skb_shinfo(tgt)->frags[to];
2300
Eric Dumazet9e903e02011-10-18 21:00:24 +00002301 if (todo >= skb_frag_size(fragfrom)) {
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002302 *fragto = *fragfrom;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002303 todo -= skb_frag_size(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002304 from++;
2305 to++;
2306
2307 } else {
Ian Campbellea2ab692011-08-22 23:44:58 +00002308 __skb_frag_ref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002309 fragto->page = fragfrom->page;
2310 fragto->page_offset = fragfrom->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002311 skb_frag_size_set(fragto, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002312
2313 fragfrom->page_offset += todo;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002314 skb_frag_size_sub(fragfrom, todo);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002315 todo = 0;
2316
2317 to++;
2318 break;
2319 }
2320 }
2321
2322 /* Ready to "commit" this state change to tgt */
2323 skb_shinfo(tgt)->nr_frags = to;
2324
2325 if (merge >= 0) {
2326 fragfrom = &skb_shinfo(skb)->frags[0];
2327 fragto = &skb_shinfo(tgt)->frags[merge];
2328
Eric Dumazet9e903e02011-10-18 21:00:24 +00002329 skb_frag_size_add(fragto, skb_frag_size(fragfrom));
Ian Campbellea2ab692011-08-22 23:44:58 +00002330 __skb_frag_unref(fragfrom);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002331 }
2332
2333 /* Reposition in the original skb */
2334 to = 0;
2335 while (from < skb_shinfo(skb)->nr_frags)
2336 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2337 skb_shinfo(skb)->nr_frags = to;
2338
2339 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2340
2341onlymerged:
2342 /* Most likely the tgt won't ever need its checksum anymore, skb on
2343 * the other hand might need it if it needs to be resent
2344 */
2345 tgt->ip_summed = CHECKSUM_PARTIAL;
2346 skb->ip_summed = CHECKSUM_PARTIAL;
2347
2348 /* Yak, is it really working this way? Some helper please? */
2349 skb->len -= shiftlen;
2350 skb->data_len -= shiftlen;
2351 skb->truesize -= shiftlen;
2352 tgt->len += shiftlen;
2353 tgt->data_len += shiftlen;
2354 tgt->truesize += shiftlen;
2355
2356 return shiftlen;
2357}
2358
Thomas Graf677e90e2005-06-23 20:59:51 -07002359/**
2360 * skb_prepare_seq_read - Prepare a sequential read of skb data
2361 * @skb: the buffer to read
2362 * @from: lower offset of data to be read
2363 * @to: upper offset of data to be read
2364 * @st: state variable
2365 *
2366 * Initializes the specified state variable. Must be called before
2367 * invoking skb_seq_read() for the first time.
2368 */
2369void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2370 unsigned int to, struct skb_seq_state *st)
2371{
2372 st->lower_offset = from;
2373 st->upper_offset = to;
2374 st->root_skb = st->cur_skb = skb;
2375 st->frag_idx = st->stepped_offset = 0;
2376 st->frag_data = NULL;
2377}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002378EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002379
2380/**
2381 * skb_seq_read - Sequentially read skb data
2382 * @consumed: number of bytes consumed by the caller so far
2383 * @data: destination pointer for data to be returned
2384 * @st: state variable
2385 *
2386 * Reads a block of skb data at &consumed relative to the
2387 * lower offset specified to skb_prepare_seq_read(). Assigns
2388 * the head of the data block to &data and returns the length
2389 * of the block or 0 if the end of the skb data or the upper
2390 * offset has been reached.
2391 *
2392 * The caller is not required to consume all of the data
2393 * returned, i.e. &consumed is typically set to the number
2394 * of bytes already consumed and the next call to
2395 * skb_seq_read() will return the remaining part of the block.
2396 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002397 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002398 * this limitation is the cost for zerocopy seqeuental
2399 * reads of potentially non linear data.
2400 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002401 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002402 * at the moment, state->root_skb could be replaced with
2403 * a stack for this purpose.
2404 */
2405unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2406 struct skb_seq_state *st)
2407{
2408 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2409 skb_frag_t *frag;
2410
2411 if (unlikely(abs_offset >= st->upper_offset))
2412 return 0;
2413
2414next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002415 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002416
Thomas Chenault995b3372009-05-18 21:43:27 -07002417 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002418 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002419 return block_limit - abs_offset;
2420 }
2421
2422 if (st->frag_idx == 0 && !st->frag_data)
2423 st->stepped_offset += skb_headlen(st->cur_skb);
2424
2425 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2426 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
Eric Dumazet9e903e02011-10-18 21:00:24 +00002427 block_limit = skb_frag_size(frag) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002428
2429 if (abs_offset < block_limit) {
2430 if (!st->frag_data)
2431 st->frag_data = kmap_skb_frag(frag);
2432
2433 *data = (u8 *) st->frag_data + frag->page_offset +
2434 (abs_offset - st->stepped_offset);
2435
2436 return block_limit - abs_offset;
2437 }
2438
2439 if (st->frag_data) {
2440 kunmap_skb_frag(st->frag_data);
2441 st->frag_data = NULL;
2442 }
2443
2444 st->frag_idx++;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002445 st->stepped_offset += skb_frag_size(frag);
Thomas Graf677e90e2005-06-23 20:59:51 -07002446 }
2447
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002448 if (st->frag_data) {
2449 kunmap_skb_frag(st->frag_data);
2450 st->frag_data = NULL;
2451 }
2452
David S. Miller21dc3302010-08-23 00:13:46 -07002453 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002454 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002455 st->frag_idx = 0;
2456 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002457 } else if (st->cur_skb->next) {
2458 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002459 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002460 goto next_skb;
2461 }
2462
2463 return 0;
2464}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002465EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002466
2467/**
2468 * skb_abort_seq_read - Abort a sequential read of skb data
2469 * @st: state variable
2470 *
2471 * Must be called if skb_seq_read() was not called until it
2472 * returned 0.
2473 */
2474void skb_abort_seq_read(struct skb_seq_state *st)
2475{
2476 if (st->frag_data)
2477 kunmap_skb_frag(st->frag_data);
2478}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002479EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002480
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002481#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2482
2483static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2484 struct ts_config *conf,
2485 struct ts_state *state)
2486{
2487 return skb_seq_read(offset, text, TS_SKB_CB(state));
2488}
2489
2490static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2491{
2492 skb_abort_seq_read(TS_SKB_CB(state));
2493}
2494
2495/**
2496 * skb_find_text - Find a text pattern in skb data
2497 * @skb: the buffer to look in
2498 * @from: search offset
2499 * @to: search limit
2500 * @config: textsearch configuration
2501 * @state: uninitialized textsearch state variable
2502 *
2503 * Finds a pattern in the skb data according to the specified
2504 * textsearch configuration. Use textsearch_next() to retrieve
2505 * subsequent occurrences of the pattern. Returns the offset
2506 * to the first occurrence or UINT_MAX if no match was found.
2507 */
2508unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2509 unsigned int to, struct ts_config *config,
2510 struct ts_state *state)
2511{
Phil Oesterf72b9482006-06-26 00:00:57 -07002512 unsigned int ret;
2513
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002514 config->get_next_block = skb_ts_get_next_block;
2515 config->finish = skb_ts_finish;
2516
2517 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2518
Phil Oesterf72b9482006-06-26 00:00:57 -07002519 ret = textsearch_find(config, state);
2520 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002521}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002522EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002523
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002524/**
2525 * skb_append_datato_frags: - append the user data to a skb
2526 * @sk: sock structure
2527 * @skb: skb structure to be appened with user data.
2528 * @getfrag: call back function to be used for getting the user data
2529 * @from: pointer to user message iov
2530 * @length: length of the iov message
2531 *
2532 * Description: This procedure append the user data in the fragment part
2533 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2534 */
2535int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002536 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002537 int len, int odd, struct sk_buff *skb),
2538 void *from, int length)
2539{
2540 int frg_cnt = 0;
2541 skb_frag_t *frag = NULL;
2542 struct page *page = NULL;
2543 int copy, left;
2544 int offset = 0;
2545 int ret;
2546
2547 do {
2548 /* Return error if we don't have space for new frag */
2549 frg_cnt = skb_shinfo(skb)->nr_frags;
2550 if (frg_cnt >= MAX_SKB_FRAGS)
2551 return -EFAULT;
2552
2553 /* allocate a new page for next frag */
2554 page = alloc_pages(sk->sk_allocation, 0);
2555
2556 /* If alloc_page fails just return failure and caller will
2557 * free previous allocated pages by doing kfree_skb()
2558 */
2559 if (page == NULL)
2560 return -ENOMEM;
2561
2562 /* initialize the next frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002563 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2564 skb->truesize += PAGE_SIZE;
2565 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2566
2567 /* get the new initialized frag */
2568 frg_cnt = skb_shinfo(skb)->nr_frags;
2569 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2570
2571 /* copy the user data to page */
2572 left = PAGE_SIZE - frag->page_offset;
2573 copy = (length > left)? left : length;
2574
Eric Dumazet9e903e02011-10-18 21:00:24 +00002575 ret = getfrag(from, skb_frag_address(frag) + skb_frag_size(frag),
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002576 offset, copy, 0, skb);
2577 if (ret < 0)
2578 return -EFAULT;
2579
2580 /* copy was successful so update the size parameters */
Eric Dumazet9e903e02011-10-18 21:00:24 +00002581 skb_frag_size_add(frag, copy);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002582 skb->len += copy;
2583 skb->data_len += copy;
2584 offset += copy;
2585 length -= copy;
2586
2587 } while (length > 0);
2588
2589 return 0;
2590}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002591EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002592
Herbert Xucbb042f2006-03-20 22:43:56 -08002593/**
2594 * skb_pull_rcsum - pull skb and update receive checksum
2595 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002596 * @len: length of data pulled
2597 *
2598 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002599 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002600 * receive path processing instead of skb_pull unless you know
2601 * that the checksum difference is zero (e.g., a valid IP header)
2602 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002603 */
2604unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2605{
2606 BUG_ON(len > skb->len);
2607 skb->len -= len;
2608 BUG_ON(skb->len < skb->data_len);
2609 skb_postpull_rcsum(skb, skb->data, len);
2610 return skb->data += len;
2611}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002612EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2613
Herbert Xuf4c50d92006-06-22 03:02:40 -07002614/**
2615 * skb_segment - Perform protocol segmentation on skb.
2616 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002617 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002618 *
2619 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002620 * a pointer to the first in a list of new skbs for the segments.
2621 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002622 */
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002623struct sk_buff *skb_segment(struct sk_buff *skb, u32 features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002624{
2625 struct sk_buff *segs = NULL;
2626 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002627 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002628 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002629 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002630 unsigned int offset = doffset;
2631 unsigned int headroom;
2632 unsigned int len;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002633 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002634 int nfrags = skb_shinfo(skb)->nr_frags;
2635 int err = -ENOMEM;
2636 int i = 0;
2637 int pos;
2638
2639 __skb_push(skb, doffset);
2640 headroom = skb_headroom(skb);
2641 pos = skb_headlen(skb);
2642
2643 do {
2644 struct sk_buff *nskb;
2645 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002646 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002647 int size;
2648
2649 len = skb->len - offset;
2650 if (len > mss)
2651 len = mss;
2652
2653 hsize = skb_headlen(skb) - offset;
2654 if (hsize < 0)
2655 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002656 if (hsize > len || !sg)
2657 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002658
Herbert Xu89319d382008-12-15 23:26:06 -08002659 if (!hsize && i >= nfrags) {
2660 BUG_ON(fskb->len != len);
2661
2662 pos += len;
2663 nskb = skb_clone(fskb, GFP_ATOMIC);
2664 fskb = fskb->next;
2665
2666 if (unlikely(!nskb))
2667 goto err;
2668
2669 hsize = skb_end_pointer(nskb) - nskb->head;
2670 if (skb_cow_head(nskb, doffset + headroom)) {
2671 kfree_skb(nskb);
2672 goto err;
2673 }
2674
2675 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2676 hsize;
2677 skb_release_head_state(nskb);
2678 __skb_push(nskb, doffset);
2679 } else {
2680 nskb = alloc_skb(hsize + doffset + headroom,
2681 GFP_ATOMIC);
2682
2683 if (unlikely(!nskb))
2684 goto err;
2685
2686 skb_reserve(nskb, headroom);
2687 __skb_put(nskb, doffset);
2688 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002689
2690 if (segs)
2691 tail->next = nskb;
2692 else
2693 segs = nskb;
2694 tail = nskb;
2695
Herbert Xu6f85a122008-08-15 14:55:02 -07002696 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002697 nskb->mac_len = skb->mac_len;
2698
Eric Dumazet3d3be432010-09-01 00:50:51 +00002699 /* nskb and skb might have different headroom */
2700 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2701 nskb->csum_start += skb_headroom(nskb) - headroom;
2702
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002703 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002704 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002705 nskb->transport_header = (nskb->network_header +
2706 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002707 skb_copy_from_linear_data(skb, nskb->data, doffset);
2708
Herbert Xu2f181852009-03-28 23:39:18 -07002709 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002710 continue;
2711
Herbert Xuf4c50d92006-06-22 03:02:40 -07002712 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002713 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002714 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2715 skb_put(nskb, len),
2716 len, 0);
2717 continue;
2718 }
2719
2720 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002721
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002722 skb_copy_from_linear_data_offset(skb, offset,
2723 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002724
Herbert Xu89319d382008-12-15 23:26:06 -08002725 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002726 *frag = skb_shinfo(skb)->frags[i];
Ian Campbellea2ab692011-08-22 23:44:58 +00002727 __skb_frag_ref(frag);
Eric Dumazet9e903e02011-10-18 21:00:24 +00002728 size = skb_frag_size(frag);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002729
2730 if (pos < offset) {
2731 frag->page_offset += offset - pos;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002732 skb_frag_size_sub(frag, offset - pos);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002733 }
2734
Herbert Xu89319d382008-12-15 23:26:06 -08002735 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002736
2737 if (pos + size <= offset + len) {
2738 i++;
2739 pos += size;
2740 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +00002741 skb_frag_size_sub(frag, pos + size - (offset + len));
Herbert Xu89319d382008-12-15 23:26:06 -08002742 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002743 }
2744
2745 frag++;
2746 }
2747
Herbert Xu89319d382008-12-15 23:26:06 -08002748 if (pos < offset + len) {
2749 struct sk_buff *fskb2 = fskb;
2750
2751 BUG_ON(pos + fskb->len != offset + len);
2752
2753 pos += fskb->len;
2754 fskb = fskb->next;
2755
2756 if (fskb2->next) {
2757 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2758 if (!fskb2)
2759 goto err;
2760 } else
2761 skb_get(fskb2);
2762
David S. Millerfbb398a2009-06-09 00:18:59 -07002763 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002764 skb_shinfo(nskb)->frag_list = fskb2;
2765 }
2766
2767skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002768 nskb->data_len = len - hsize;
2769 nskb->len += nskb->data_len;
2770 nskb->truesize += nskb->data_len;
2771 } while ((offset += len) < skb->len);
2772
2773 return segs;
2774
2775err:
2776 while ((skb = segs)) {
2777 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002778 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002779 }
2780 return ERR_PTR(err);
2781}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002782EXPORT_SYMBOL_GPL(skb_segment);
2783
Herbert Xu71d93b32008-12-15 23:42:33 -08002784int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2785{
2786 struct sk_buff *p = *head;
2787 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002788 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2789 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002790 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002791 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002792 unsigned int offset = skb_gro_offset(skb);
2793 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002794
Herbert Xu86911732009-01-29 14:19:50 +00002795 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002796 return -E2BIG;
2797
Herbert Xu9aaa1562009-05-26 18:50:33 +00002798 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002799 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002800 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002801 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002802 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002803 int i = skbinfo->nr_frags;
2804 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002805
Herbert Xu66e92fc2009-05-26 18:50:32 +00002806 offset -= headlen;
2807
2808 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002809 return -E2BIG;
2810
Herbert Xu9aaa1562009-05-26 18:50:33 +00002811 pinfo->nr_frags = nr_frags;
2812 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002813
Herbert Xu9aaa1562009-05-26 18:50:33 +00002814 frag = pinfo->frags + nr_frags;
2815 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002816 do {
2817 *--frag = *--frag2;
2818 } while (--i);
2819
2820 frag->page_offset += offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002821 skb_frag_size_sub(frag, offset);
Herbert Xu66e92fc2009-05-26 18:50:32 +00002822
Herbert Xuf5572062009-01-14 20:40:03 -08002823 skb->truesize -= skb->data_len;
2824 skb->len -= skb->data_len;
2825 skb->data_len = 0;
2826
Herbert Xu5d38a072009-01-04 16:13:40 -08002827 NAPI_GRO_CB(skb)->free = 1;
2828 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002829 } else if (skb_gro_len(p) != pinfo->gso_size)
2830 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002831
2832 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002833 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002834 if (unlikely(!nskb))
2835 return -ENOMEM;
2836
2837 __copy_skb_header(nskb, p);
2838 nskb->mac_len = p->mac_len;
2839
2840 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002841 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002842
Herbert Xu86911732009-01-29 14:19:50 +00002843 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002844 skb_set_network_header(nskb, skb_network_offset(p));
2845 skb_set_transport_header(nskb, skb_transport_offset(p));
2846
Herbert Xu86911732009-01-29 14:19:50 +00002847 __skb_pull(p, skb_gro_offset(p));
2848 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2849 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002850
2851 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2852 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002853 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07002854 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08002855 skb_header_release(p);
2856 nskb->prev = p;
2857
2858 nskb->data_len += p->len;
2859 nskb->truesize += p->len;
2860 nskb->len += p->len;
2861
2862 *head = nskb;
2863 nskb->next = p->next;
2864 p->next = NULL;
2865
2866 p = nskb;
2867
2868merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002869 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00002870 unsigned int eat = offset - headlen;
2871
2872 skbinfo->frags[0].page_offset += eat;
Eric Dumazet9e903e02011-10-18 21:00:24 +00002873 skb_frag_size_sub(&skbinfo->frags[0], eat);
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00002874 skb->data_len -= eat;
2875 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00002876 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002877 }
2878
Herbert Xu67147ba2009-05-26 18:50:22 +00002879 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002880
Herbert Xu71d93b32008-12-15 23:42:33 -08002881 p->prev->next = skb;
2882 p->prev = skb;
2883 skb_header_release(skb);
2884
Herbert Xu5d38a072009-01-04 16:13:40 -08002885done:
2886 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002887 p->data_len += len;
2888 p->truesize += len;
2889 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002890
2891 NAPI_GRO_CB(skb)->same_flow = 1;
2892 return 0;
2893}
2894EXPORT_SYMBOL_GPL(skb_gro_receive);
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896void __init skb_init(void)
2897{
2898 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2899 sizeof(struct sk_buff),
2900 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002901 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002902 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002903 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2904 (2*sizeof(struct sk_buff)) +
2905 sizeof(atomic_t),
2906 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002907 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002908 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909}
2910
David Howells716ea3a2007-04-02 20:19:53 -07002911/**
2912 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2913 * @skb: Socket buffer containing the buffers to be mapped
2914 * @sg: The scatter-gather list to map into
2915 * @offset: The offset into the buffer's contents to start mapping
2916 * @len: Length of buffer space to be mapped
2917 *
2918 * Fill the specified scatter-gather list with mappings/pointers into a
2919 * region of the buffer space attached to a socket buffer.
2920 */
David S. Miller51c739d2007-10-30 21:29:29 -07002921static int
2922__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002923{
David S. Miller1a028e52007-04-27 15:21:23 -07002924 int start = skb_headlen(skb);
2925 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002926 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002927 int elt = 0;
2928
2929 if (copy > 0) {
2930 if (copy > len)
2931 copy = len;
Jens Axboe642f149032007-10-24 11:20:47 +02002932 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002933 elt++;
2934 if ((len -= copy) == 0)
2935 return elt;
2936 offset += copy;
2937 }
2938
2939 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002940 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002941
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002942 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002943
Eric Dumazet9e903e02011-10-18 21:00:24 +00002944 end = start + skb_frag_size(&skb_shinfo(skb)->frags[i]);
David Howells716ea3a2007-04-02 20:19:53 -07002945 if ((copy = end - offset) > 0) {
2946 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2947
2948 if (copy > len)
2949 copy = len;
Ian Campbellea2ab692011-08-22 23:44:58 +00002950 sg_set_page(&sg[elt], skb_frag_page(frag), copy,
Jens Axboe642f149032007-10-24 11:20:47 +02002951 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002952 elt++;
2953 if (!(len -= copy))
2954 return elt;
2955 offset += copy;
2956 }
David S. Miller1a028e52007-04-27 15:21:23 -07002957 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002958 }
2959
David S. Millerfbb398a2009-06-09 00:18:59 -07002960 skb_walk_frags(skb, frag_iter) {
2961 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002962
David S. Millerfbb398a2009-06-09 00:18:59 -07002963 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002964
David S. Millerfbb398a2009-06-09 00:18:59 -07002965 end = start + frag_iter->len;
2966 if ((copy = end - offset) > 0) {
2967 if (copy > len)
2968 copy = len;
2969 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2970 copy);
2971 if ((len -= copy) == 0)
2972 return elt;
2973 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002974 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002975 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002976 }
2977 BUG_ON(len);
2978 return elt;
2979}
2980
David S. Miller51c739d2007-10-30 21:29:29 -07002981int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2982{
2983 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2984
Jens Axboec46f2332007-10-31 12:06:37 +01002985 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002986
2987 return nsg;
2988}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002989EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002990
David Howells716ea3a2007-04-02 20:19:53 -07002991/**
2992 * skb_cow_data - Check that a socket buffer's data buffers are writable
2993 * @skb: The socket buffer to check.
2994 * @tailbits: Amount of trailing space to be added
2995 * @trailer: Returned pointer to the skb where the @tailbits space begins
2996 *
2997 * Make sure that the data buffers attached to a socket buffer are
2998 * writable. If they are not, private copies are made of the data buffers
2999 * and the socket buffer is set to use these instead.
3000 *
3001 * If @tailbits is given, make sure that there is space to write @tailbits
3002 * bytes of data beyond current end of socket buffer. @trailer will be
3003 * set to point to the skb in which this space begins.
3004 *
3005 * The number of scatterlist elements required to completely map the
3006 * COW'd and extended socket buffer will be returned.
3007 */
3008int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
3009{
3010 int copyflag;
3011 int elt;
3012 struct sk_buff *skb1, **skb_p;
3013
3014 /* If skb is cloned or its head is paged, reallocate
3015 * head pulling out all the pages (pages are considered not writable
3016 * at the moment even if they are anonymous).
3017 */
3018 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
3019 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
3020 return -ENOMEM;
3021
3022 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07003023 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07003024 /* A little of trouble, not enough of space for trailer.
3025 * This should not happen, when stack is tuned to generate
3026 * good frames. OK, on miss we reallocate and reserve even more
3027 * space, 128 bytes is fair. */
3028
3029 if (skb_tailroom(skb) < tailbits &&
3030 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3031 return -ENOMEM;
3032
3033 /* Voila! */
3034 *trailer = skb;
3035 return 1;
3036 }
3037
3038 /* Misery. We are in troubles, going to mincer fragments... */
3039
3040 elt = 1;
3041 skb_p = &skb_shinfo(skb)->frag_list;
3042 copyflag = 0;
3043
3044 while ((skb1 = *skb_p) != NULL) {
3045 int ntail = 0;
3046
3047 /* The fragment is partially pulled by someone,
3048 * this can happen on input. Copy it and everything
3049 * after it. */
3050
3051 if (skb_shared(skb1))
3052 copyflag = 1;
3053
3054 /* If the skb is the last, worry about trailer. */
3055
3056 if (skb1->next == NULL && tailbits) {
3057 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003058 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003059 skb_tailroom(skb1) < tailbits)
3060 ntail = tailbits + 128;
3061 }
3062
3063 if (copyflag ||
3064 skb_cloned(skb1) ||
3065 ntail ||
3066 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003067 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003068 struct sk_buff *skb2;
3069
3070 /* Fuck, we are miserable poor guys... */
3071 if (ntail == 0)
3072 skb2 = skb_copy(skb1, GFP_ATOMIC);
3073 else
3074 skb2 = skb_copy_expand(skb1,
3075 skb_headroom(skb1),
3076 ntail,
3077 GFP_ATOMIC);
3078 if (unlikely(skb2 == NULL))
3079 return -ENOMEM;
3080
3081 if (skb1->sk)
3082 skb_set_owner_w(skb2, skb1->sk);
3083
3084 /* Looking around. Are we still alive?
3085 * OK, link new skb, drop old one */
3086
3087 skb2->next = skb1->next;
3088 *skb_p = skb2;
3089 kfree_skb(skb1);
3090 skb1 = skb2;
3091 }
3092 elt++;
3093 *trailer = skb1;
3094 skb_p = &skb1->next;
3095 }
3096
3097 return elt;
3098}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003099EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003100
Eric Dumazetb1faf562010-05-31 23:44:05 -07003101static void sock_rmem_free(struct sk_buff *skb)
3102{
3103 struct sock *sk = skb->sk;
3104
3105 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3106}
3107
3108/*
3109 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3110 */
3111int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3112{
3113 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
3114 (unsigned)sk->sk_rcvbuf)
3115 return -ENOMEM;
3116
3117 skb_orphan(skb);
3118 skb->sk = sk;
3119 skb->destructor = sock_rmem_free;
3120 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3121
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003122 /* before exiting rcu section, make sure dst is refcounted */
3123 skb_dst_force(skb);
3124
Eric Dumazetb1faf562010-05-31 23:44:05 -07003125 skb_queue_tail(&sk->sk_error_queue, skb);
3126 if (!sock_flag(sk, SOCK_DEAD))
3127 sk->sk_data_ready(sk, skb->len);
3128 return 0;
3129}
3130EXPORT_SYMBOL(sock_queue_err_skb);
3131
Patrick Ohlyac45f602009-02-12 05:03:37 +00003132void skb_tstamp_tx(struct sk_buff *orig_skb,
3133 struct skb_shared_hwtstamps *hwtstamps)
3134{
3135 struct sock *sk = orig_skb->sk;
3136 struct sock_exterr_skb *serr;
3137 struct sk_buff *skb;
3138 int err;
3139
3140 if (!sk)
3141 return;
3142
3143 skb = skb_clone(orig_skb, GFP_ATOMIC);
3144 if (!skb)
3145 return;
3146
3147 if (hwtstamps) {
3148 *skb_hwtstamps(skb) =
3149 *hwtstamps;
3150 } else {
3151 /*
3152 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003153 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003154 * store software time stamp
3155 */
3156 skb->tstamp = ktime_get_real();
3157 }
3158
3159 serr = SKB_EXT_ERR(skb);
3160 memset(serr, 0, sizeof(*serr));
3161 serr->ee.ee_errno = ENOMSG;
3162 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003163
Patrick Ohlyac45f602009-02-12 05:03:37 +00003164 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003165
Patrick Ohlyac45f602009-02-12 05:03:37 +00003166 if (err)
3167 kfree_skb(skb);
3168}
3169EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3170
Johannes Berg6e3e9392011-11-09 10:15:42 +01003171void skb_complete_wifi_ack(struct sk_buff *skb, bool acked)
3172{
3173 struct sock *sk = skb->sk;
3174 struct sock_exterr_skb *serr;
3175 int err;
3176
3177 skb->wifi_acked_valid = 1;
3178 skb->wifi_acked = acked;
3179
3180 serr = SKB_EXT_ERR(skb);
3181 memset(serr, 0, sizeof(*serr));
3182 serr->ee.ee_errno = ENOMSG;
3183 serr->ee.ee_origin = SO_EE_ORIGIN_TXSTATUS;
3184
3185 err = sock_queue_err_skb(sk, skb);
3186 if (err)
3187 kfree_skb(skb);
3188}
3189EXPORT_SYMBOL_GPL(skb_complete_wifi_ack);
3190
Patrick Ohlyac45f602009-02-12 05:03:37 +00003191
Rusty Russellf35d9d82008-02-04 23:49:54 -05003192/**
3193 * skb_partial_csum_set - set up and verify partial csum values for packet
3194 * @skb: the skb to set
3195 * @start: the number of bytes after skb->data to start checksumming.
3196 * @off: the offset from start to place the checksum.
3197 *
3198 * For untrusted partially-checksummed packets, we need to make sure the values
3199 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3200 *
3201 * This function checks and sets those values and skb->ip_summed: if this
3202 * returns false you should drop the packet.
3203 */
3204bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3205{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003206 if (unlikely(start > skb_headlen(skb)) ||
3207 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003208 if (net_ratelimit())
3209 printk(KERN_WARNING
3210 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003211 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003212 return false;
3213 }
3214 skb->ip_summed = CHECKSUM_PARTIAL;
3215 skb->csum_start = skb_headroom(skb) + start;
3216 skb->csum_offset = off;
3217 return true;
3218}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003219EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003220
Ben Hutchings4497b072008-06-19 16:22:28 -07003221void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3222{
3223 if (net_ratelimit())
3224 pr_warning("%s: received packets cannot be forwarded"
3225 " while LRO is enabled\n", skb->dev->name);
3226}
Ben Hutchings4497b072008-06-19 16:22:28 -07003227EXPORT_SYMBOL(__skb_warn_lro_forwarding);