blob: edb66f3e24f15243b51e27814c61a38524927e65 [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 Viroa1f8e7f2006-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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800188 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
189 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (!data)
191 goto nodata;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700192 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300194 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700195 * Only clear those fields we need to clear, not those that we will
196 * actually initialise below. Hence, don't put any more fields after
197 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300198 */
199 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 skb->truesize = size + sizeof(struct sk_buff);
201 atomic_set(&skb->users, 1);
202 skb->head = data;
203 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700204 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700205 skb->end = skb->tail + size;
Stephen Hemminger19633e12009-06-17 05:23:27 +0000206#ifdef NET_SKBUFF_DATA_USES_OFFSET
207 skb->mac_header = ~0U;
208#endif
209
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800210 /* make sure we initialize shinfo sequentially */
211 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700212 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800213 atomic_set(&shinfo->dataref, 1);
Eric Dumazetc2aa3662011-01-25 23:18:38 +0000214 kmemcheck_annotate_variable(shinfo->destructor_arg);
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800215
David S. Millerd179cd12005-08-17 14:57:30 -0700216 if (fclone) {
217 struct sk_buff *child = skb + 1;
218 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200220 kmemcheck_annotate_bitfield(child, flags1);
221 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700222 skb->fclone = SKB_FCLONE_ORIG;
223 atomic_set(fclone_ref, 1);
224
225 child->fclone = SKB_FCLONE_UNAVAILABLE;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227out:
228 return skb;
229nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800230 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 skb = NULL;
232 goto out;
233}
David S. Millerb4ac5302009-02-10 02:09:24 -0800234EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700237 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
238 * @dev: network device to receive on
239 * @length: length to allocate
240 * @gfp_mask: get_free_pages mask, passed to alloc_skb
241 *
242 * Allocate a new &sk_buff and assign it a usage count of one. The
243 * buffer has unspecified headroom built in. Users should allocate
244 * the headroom they think they need without accounting for the
245 * built in space. The built in space is used for optimisations.
246 *
247 * %NULL is returned if there is no free memory.
248 */
249struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
250 unsigned int length, gfp_t gfp_mask)
251{
252 struct sk_buff *skb;
253
Eric Dumazet564824b2010-10-11 19:05:25 +0000254 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, NUMA_NO_NODE);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700255 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700256 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700257 skb->dev = dev;
258 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700259 return skb;
260}
David S. Millerb4ac5302009-02-10 02:09:24 -0800261EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Peter Zijlstra654bed12008-10-07 14:22:33 -0700263void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
264 int size)
265{
266 skb_fill_page_desc(skb, i, page, off, size);
267 skb->len += size;
268 skb->data_len += size;
269 skb->truesize += size;
270}
271EXPORT_SYMBOL(skb_add_rx_frag);
272
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700273/**
274 * dev_alloc_skb - allocate an skbuff for receiving
275 * @length: length to allocate
276 *
277 * Allocate a new &sk_buff and assign it a usage count of one. The
278 * buffer has unspecified headroom built in. Users should allocate
279 * the headroom they think they need without accounting for the
280 * built in space. The built in space is used for optimisations.
281 *
282 * %NULL is returned if there is no free memory. Although this function
283 * allocates memory it can be called from an interrupt.
284 */
285struct sk_buff *dev_alloc_skb(unsigned int length)
286{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700287 /*
288 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700289 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700290 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700291 return __dev_alloc_skb(length, GFP_ATOMIC);
292}
293EXPORT_SYMBOL(dev_alloc_skb);
294
Herbert Xu27b437c2006-07-13 19:26:39 -0700295static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Herbert Xu27b437c2006-07-13 19:26:39 -0700297 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Herbert Xu27b437c2006-07-13 19:26:39 -0700299 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 do {
302 struct sk_buff *this = list;
303 list = list->next;
304 kfree_skb(this);
305 } while (list);
306}
307
Herbert Xu27b437c2006-07-13 19:26:39 -0700308static inline void skb_drop_fraglist(struct sk_buff *skb)
309{
310 skb_drop_list(&skb_shinfo(skb)->frag_list);
311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static void skb_clone_fraglist(struct sk_buff *skb)
314{
315 struct sk_buff *list;
316
David S. Millerfbb398a2009-06-09 00:18:59 -0700317 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 skb_get(list);
319}
320
Adrian Bunk5bba1712006-06-29 13:02:35 -0700321static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 if (!skb->cloned ||
324 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
325 &skb_shinfo(skb)->dataref)) {
326 if (skb_shinfo(skb)->nr_frags) {
327 int i;
328 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
329 put_page(skb_shinfo(skb)->frags[i].page);
330 }
331
Shirley Maa6686f22011-07-06 12:22:12 +0000332 /*
333 * If skb buf is from userspace, we need to notify the caller
334 * the lower device DMA has done;
335 */
336 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
337 struct ubuf_info *uarg;
338
339 uarg = skb_shinfo(skb)->destructor_arg;
340 if (uarg->callback)
341 uarg->callback(uarg);
342 }
343
David S. Miller21dc3302010-08-23 00:13:46 -0700344 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 skb_drop_fraglist(skb);
346
347 kfree(skb->head);
348 }
349}
350
351/*
352 * Free an skbuff by memory without cleaning the state.
353 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800354static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
David S. Millerd179cd12005-08-17 14:57:30 -0700356 struct sk_buff *other;
357 atomic_t *fclone_ref;
358
David S. Millerd179cd12005-08-17 14:57:30 -0700359 switch (skb->fclone) {
360 case SKB_FCLONE_UNAVAILABLE:
361 kmem_cache_free(skbuff_head_cache, skb);
362 break;
363
364 case SKB_FCLONE_ORIG:
365 fclone_ref = (atomic_t *) (skb + 2);
366 if (atomic_dec_and_test(fclone_ref))
367 kmem_cache_free(skbuff_fclone_cache, skb);
368 break;
369
370 case SKB_FCLONE_CLONE:
371 fclone_ref = (atomic_t *) (skb + 1);
372 other = skb - 1;
373
374 /* The clone portion is available for
375 * fast-cloning again.
376 */
377 skb->fclone = SKB_FCLONE_UNAVAILABLE;
378
379 if (atomic_dec_and_test(fclone_ref))
380 kmem_cache_free(skbuff_fclone_cache, other);
381 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700385static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Eric Dumazetadf30902009-06-02 05:19:30 +0000387 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#ifdef CONFIG_XFRM
389 secpath_put(skb->sp);
390#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700391 if (skb->destructor) {
392 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 skb->destructor(skb);
394 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800395#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700396 nf_conntrack_put(skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +0100397#endif
398#ifdef NET_SKBUFF_NF_DEFRAG_NEEDED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800399 nf_conntrack_put_reasm(skb->nfct_reasm);
400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#ifdef CONFIG_BRIDGE_NETFILTER
402 nf_bridge_put(skb->nf_bridge);
403#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/* XXX: IS this still necessary? - JHS */
405#ifdef CONFIG_NET_SCHED
406 skb->tc_index = 0;
407#ifdef CONFIG_NET_CLS_ACT
408 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#endif
410#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700411}
412
413/* Free everything but the sk_buff shell. */
414static void skb_release_all(struct sk_buff *skb)
415{
416 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800417 skb_release_data(skb);
418}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Herbert Xu2d4baff2007-11-26 23:11:19 +0800420/**
421 * __kfree_skb - private function
422 * @skb: buffer
423 *
424 * Free an sk_buff. Release anything attached to the buffer.
425 * Clean the state. This is an internal helper function. Users should
426 * always call kfree_skb
427 */
428
429void __kfree_skb(struct sk_buff *skb)
430{
431 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 kfree_skbmem(skb);
433}
David S. Millerb4ac5302009-02-10 02:09:24 -0800434EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800437 * kfree_skb - free an sk_buff
438 * @skb: buffer to free
439 *
440 * Drop a reference to the buffer and free it if the usage count has
441 * hit zero.
442 */
443void kfree_skb(struct sk_buff *skb)
444{
445 if (unlikely(!skb))
446 return;
447 if (likely(atomic_read(&skb->users) == 1))
448 smp_rmb();
449 else if (likely(!atomic_dec_and_test(&skb->users)))
450 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000451 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800452 __kfree_skb(skb);
453}
David S. Millerb4ac5302009-02-10 02:09:24 -0800454EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800455
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700456/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000457 * consume_skb - free an skbuff
458 * @skb: buffer to free
459 *
460 * Drop a ref to the buffer and free it if the usage count has hit zero
461 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
462 * is being dropped after a failure and notes that
463 */
464void consume_skb(struct sk_buff *skb)
465{
466 if (unlikely(!skb))
467 return;
468 if (likely(atomic_read(&skb->users) == 1))
469 smp_rmb();
470 else if (likely(!atomic_dec_and_test(&skb->users)))
471 return;
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900472 trace_consume_skb(skb);
Neil Hormanead2ceb2009-03-11 09:49:55 +0000473 __kfree_skb(skb);
474}
475EXPORT_SYMBOL(consume_skb);
476
477/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700478 * skb_recycle_check - check if skb can be reused for receive
479 * @skb: buffer
480 * @skb_size: minimum receive buffer size
481 *
482 * Checks that the skb passed in is not shared or cloned, and
483 * that it is linear and its head portion at least as large as
484 * skb_size so that it can be recycled as a receive buffer.
485 * If these conditions are met, this function does any necessary
486 * reference count dropping and cleans up the skbuff as if it
487 * just came from __alloc_skb().
488 */
Changli Gao5b0daa32010-05-29 00:12:13 -0700489bool skb_recycle_check(struct sk_buff *skb, int skb_size)
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700490{
491 struct skb_shared_info *shinfo;
492
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000493 if (irqs_disabled())
Changli Gao5b0daa32010-05-29 00:12:13 -0700494 return false;
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000495
Shirley Maa6686f22011-07-06 12:22:12 +0000496 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY)
497 return false;
498
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700499 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
Changli Gao5b0daa32010-05-29 00:12:13 -0700500 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700501
502 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
503 if (skb_end_pointer(skb) - skb->head < skb_size)
Changli Gao5b0daa32010-05-29 00:12:13 -0700504 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700505
506 if (skb_shared(skb) || skb_cloned(skb))
Changli Gao5b0daa32010-05-29 00:12:13 -0700507 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700508
509 skb_release_head_state(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700510
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700511 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700512 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700513 atomic_set(&shinfo->dataref, 1);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700514
515 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700516 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800517 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700518
Changli Gao5b0daa32010-05-29 00:12:13 -0700519 return true;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700520}
521EXPORT_SYMBOL(skb_recycle_check);
522
Herbert Xudec18812007-10-14 00:37:30 -0700523static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
524{
525 new->tstamp = old->tstamp;
526 new->dev = old->dev;
527 new->transport_header = old->transport_header;
528 new->network_header = old->network_header;
529 new->mac_header = old->mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000530 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000531 new->rxhash = old->rxhash;
Tom Herbertbdeab992011-08-14 19:45:55 +0000532 new->l4_rxhash = old->l4_rxhash;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700533#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700534 new->sp = secpath_get(old->sp);
535#endif
536 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000537 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700538 new->local_df = old->local_df;
539 new->pkt_type = old->pkt_type;
540 new->ip_summed = old->ip_summed;
541 skb_copy_queue_mapping(new, old);
542 new->priority = old->priority;
543#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
544 new->ipvs_property = old->ipvs_property;
545#endif
546 new->protocol = old->protocol;
547 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800548 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700549 __nf_copy(new, old);
550#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
551 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
552 new->nf_trace = old->nf_trace;
553#endif
554#ifdef CONFIG_NET_SCHED
555 new->tc_index = old->tc_index;
556#ifdef CONFIG_NET_CLS_ACT
557 new->tc_verd = old->tc_verd;
558#endif
559#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700560 new->vlan_tci = old->vlan_tci;
561
Herbert Xudec18812007-10-14 00:37:30 -0700562 skb_copy_secmark(new, old);
563}
564
Herbert Xu82c49a32009-05-22 22:11:37 +0000565/*
566 * You should not add any new code to this function. Add it to
567 * __copy_skb_header above instead.
568 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700569static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571#define C(x) n->x = skb->x
572
573 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700575 __copy_skb_header(n, skb);
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 C(len);
578 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700579 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700580 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800581 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 C(tail);
585 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800586 C(head);
587 C(data);
588 C(truesize);
589 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 atomic_inc(&(skb_shinfo(skb)->dataref));
592 skb->cloned = 1;
593
594 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700595#undef C
596}
597
598/**
599 * skb_morph - morph one skb into another
600 * @dst: the skb to receive the contents
601 * @src: the skb to supply the contents
602 *
603 * This is identical to skb_clone except that the target skb is
604 * supplied by the user.
605 *
606 * The target skb is returned upon exit.
607 */
608struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
609{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800610 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700611 return __skb_clone(dst, src);
612}
613EXPORT_SYMBOL_GPL(skb_morph);
614
Shirley Maa6686f22011-07-06 12:22:12 +0000615/* skb frags copy userspace buffers to kernel */
616static int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask)
617{
618 int i;
619 int num_frags = skb_shinfo(skb)->nr_frags;
620 struct page *page, *head = NULL;
621 struct ubuf_info *uarg = skb_shinfo(skb)->destructor_arg;
622
623 for (i = 0; i < num_frags; i++) {
624 u8 *vaddr;
625 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
626
627 page = alloc_page(GFP_ATOMIC);
628 if (!page) {
629 while (head) {
630 struct page *next = (struct page *)head->private;
631 put_page(head);
632 head = next;
633 }
634 return -ENOMEM;
635 }
636 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
637 memcpy(page_address(page),
638 vaddr + f->page_offset, f->size);
639 kunmap_skb_frag(vaddr);
640 page->private = (unsigned long)head;
641 head = page;
642 }
643
644 /* skb frags release userspace buffers */
645 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
646 put_page(skb_shinfo(skb)->frags[i].page);
647
648 uarg->callback(uarg);
649
650 /* skb frags point to kernel buffers */
651 for (i = skb_shinfo(skb)->nr_frags; i > 0; i--) {
652 skb_shinfo(skb)->frags[i - 1].page_offset = 0;
653 skb_shinfo(skb)->frags[i - 1].page = head;
654 head = (struct page *)head->private;
655 }
656 return 0;
657}
658
659
Herbert Xue0053ec2007-10-14 00:37:52 -0700660/**
661 * skb_clone - duplicate an sk_buff
662 * @skb: buffer to clone
663 * @gfp_mask: allocation priority
664 *
665 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
666 * copies share the same packet data but not structure. The new
667 * buffer has a reference count of 1. If the allocation fails the
668 * function returns %NULL otherwise the new buffer is returned.
669 *
670 * If this function is called from an interrupt gfp_mask() must be
671 * %GFP_ATOMIC.
672 */
673
674struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
675{
676 struct sk_buff *n;
677
Shirley Maa6686f22011-07-06 12:22:12 +0000678 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
679 if (skb_copy_ubufs(skb, gfp_mask))
680 return NULL;
Shirley Maa48332f2011-07-09 02:55:27 -0700681 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000682 }
683
Herbert Xue0053ec2007-10-14 00:37:52 -0700684 n = skb + 1;
685 if (skb->fclone == SKB_FCLONE_ORIG &&
686 n->fclone == SKB_FCLONE_UNAVAILABLE) {
687 atomic_t *fclone_ref = (atomic_t *) (n + 1);
688 n->fclone = SKB_FCLONE_CLONE;
689 atomic_inc(fclone_ref);
690 } else {
691 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
692 if (!n)
693 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200694
695 kmemcheck_annotate_bitfield(n, flags1);
696 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700697 n->fclone = SKB_FCLONE_UNAVAILABLE;
698 }
699
700 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
David S. Millerb4ac5302009-02-10 02:09:24 -0800702EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
705{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700706#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /*
708 * Shift between the two data areas in bytes
709 */
710 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700711#endif
Herbert Xudec18812007-10-14 00:37:30 -0700712
713 __copy_skb_header(new, old);
714
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700715#ifndef NET_SKBUFF_DATA_USES_OFFSET
716 /* {transport,network,mac}_header are relative to skb->head */
717 new->transport_header += offset;
718 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000719 if (skb_mac_header_was_set(new))
720 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700721#endif
Herbert Xu79671682006-06-22 02:40:14 -0700722 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
723 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
724 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
727/**
728 * skb_copy - create private copy of an sk_buff
729 * @skb: buffer to copy
730 * @gfp_mask: allocation priority
731 *
732 * Make a copy of both an &sk_buff and its data. This is used when the
733 * caller wishes to modify the data and needs a private copy of the
734 * data to alter. Returns %NULL on failure or the pointer to the buffer
735 * on success. The returned buffer has a reference count of 1.
736 *
737 * As by-product this function converts non-linear &sk_buff to linear
738 * one, so that &sk_buff becomes completely private and caller is allowed
739 * to modify all the data of returned buffer. This means that this
740 * function is not recommended for use in circumstances when only
741 * header is going to be modified. Use pskb_copy() instead.
742 */
743
Al Virodd0fc662005-10-07 07:46:04 +0100744struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000746 int headerlen = skb_headroom(skb);
747 unsigned int size = (skb_end_pointer(skb) - skb->head) + skb->data_len;
748 struct sk_buff *n = alloc_skb(size, gfp_mask);
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!n)
751 return NULL;
752
753 /* Set the data pointer */
754 skb_reserve(n, headerlen);
755 /* Set the tail pointer and length */
756 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
759 BUG();
760
761 copy_skb_header(n, skb);
762 return n;
763}
David S. Millerb4ac5302009-02-10 02:09:24 -0800764EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766/**
767 * pskb_copy - create copy of an sk_buff with private head.
768 * @skb: buffer to copy
769 * @gfp_mask: allocation priority
770 *
771 * Make a copy of both an &sk_buff and part of its data, located
772 * in header. Fragmented data remain shared. This is used when
773 * the caller wishes to modify only header of &sk_buff and needs
774 * private copy of the header to alter. Returns %NULL on failure
775 * or the pointer to the buffer on success.
776 * The returned buffer has a reference count of 1.
777 */
778
Al Virodd0fc662005-10-07 07:46:04 +0100779struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000781 unsigned int size = skb_end_pointer(skb) - skb->head;
782 struct sk_buff *n = alloc_skb(size, gfp_mask);
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (!n)
785 goto out;
786
787 /* Set the data pointer */
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000788 skb_reserve(n, skb_headroom(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /* Set the tail pointer and length */
790 skb_put(n, skb_headlen(skb));
791 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300792 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Herbert Xu25f484a2006-11-07 14:57:15 -0800794 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 n->data_len = skb->data_len;
796 n->len = skb->len;
797
798 if (skb_shinfo(skb)->nr_frags) {
799 int i;
800
Shirley Maa6686f22011-07-06 12:22:12 +0000801 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
802 if (skb_copy_ubufs(skb, gfp_mask)) {
Dan Carpenter15110222011-07-19 22:51:49 +0000803 kfree_skb(n);
804 n = NULL;
Shirley Maa6686f22011-07-06 12:22:12 +0000805 goto out;
806 }
Shirley Maa48332f2011-07-09 02:55:27 -0700807 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
810 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
811 get_page(skb_shinfo(n)->frags[i].page);
812 }
813 skb_shinfo(n)->nr_frags = i;
814 }
815
David S. Miller21dc3302010-08-23 00:13:46 -0700816 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
818 skb_clone_fraglist(n);
819 }
820
821 copy_skb_header(n, skb);
822out:
823 return n;
824}
David S. Millerb4ac5302009-02-10 02:09:24 -0800825EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827/**
828 * pskb_expand_head - reallocate header of &sk_buff
829 * @skb: buffer to reallocate
830 * @nhead: room to add at head
831 * @ntail: room to add at tail
832 * @gfp_mask: allocation priority
833 *
834 * Expands (or creates identical copy, if &nhead and &ntail are zero)
835 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
836 * reference count of 1. Returns zero in the case of success or error,
837 * if expansion failed. In the last case, &sk_buff is not changed.
838 *
839 * All the pointers pointing into skb header may change and must be
840 * reloaded after call to this function.
841 */
842
Victor Fusco86a76ca2005-07-08 14:57:47 -0700843int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100844 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 int i;
847 u8 *data;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000848 int size = nhead + (skb_end_pointer(skb) - skb->head) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 long off;
Eric Dumazet1fd63042010-09-02 23:09:32 +0000850 bool fastpath;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Herbert Xu4edd87a2008-10-01 07:09:38 -0700852 BUG_ON(nhead < 0);
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (skb_shared(skb))
855 BUG();
856
857 size = SKB_DATA_ALIGN(size);
858
Changli Gaoca44ac32010-11-29 22:48:46 +0000859 /* Check if we can avoid taking references on fragments if we own
860 * the last reference on skb->head. (see skb_release_data())
861 */
862 if (!skb->cloned)
863 fastpath = true;
864 else {
865 int delta = skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1;
Changli Gaoca44ac32010-11-29 22:48:46 +0000866 fastpath = atomic_read(&skb_shinfo(skb)->dataref) == delta;
867 }
868
869 if (fastpath &&
870 size + sizeof(struct skb_shared_info) <= ksize(skb->head)) {
871 memmove(skb->head + size, skb_shinfo(skb),
872 offsetof(struct skb_shared_info,
873 frags[skb_shinfo(skb)->nr_frags]));
874 memmove(skb->head + nhead, skb->head,
875 skb_tail_pointer(skb) - skb->head);
876 off = nhead;
877 goto adjust_others;
878 }
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
881 if (!data)
882 goto nodata;
883
884 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000885 * optimized for the cases when header is void.
886 */
887 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
888
889 memcpy((struct skb_shared_info *)(data + size),
890 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +0000891 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Eric Dumazet1fd63042010-09-02 23:09:32 +0000893 if (fastpath) {
894 kfree(skb->head);
895 } else {
Shirley Maa6686f22011-07-06 12:22:12 +0000896 /* copy this zero copy skb frags */
897 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
898 if (skb_copy_ubufs(skb, gfp_mask))
899 goto nofrags;
Shirley Maa48332f2011-07-09 02:55:27 -0700900 skb_shinfo(skb)->tx_flags &= ~SKBTX_DEV_ZEROCOPY;
Shirley Maa6686f22011-07-06 12:22:12 +0000901 }
Eric Dumazet1fd63042010-09-02 23:09:32 +0000902 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
903 get_page(skb_shinfo(skb)->frags[i].page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Eric Dumazet1fd63042010-09-02 23:09:32 +0000905 if (skb_has_frag_list(skb))
906 skb_clone_fraglist(skb);
907
908 skb_release_data(skb);
909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 off = (data + nhead) - skb->head;
911
912 skb->head = data;
Changli Gaoca44ac32010-11-29 22:48:46 +0000913adjust_others:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700915#ifdef NET_SKBUFF_DATA_USES_OFFSET
916 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700917 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700918#else
919 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700920#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700921 /* {transport,network,mac}_header and tail are relative to skb->head */
922 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700923 skb->transport_header += off;
924 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000925 if (skb_mac_header_was_set(skb))
926 skb->mac_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +0000927 /* Only adjust this if it actually is csum_start rather than csum */
928 if (skb->ip_summed == CHECKSUM_PARTIAL)
929 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700931 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 skb->nohdr = 0;
933 atomic_set(&skb_shinfo(skb)->dataref, 1);
934 return 0;
935
Shirley Maa6686f22011-07-06 12:22:12 +0000936nofrags:
937 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938nodata:
939 return -ENOMEM;
940}
David S. Millerb4ac5302009-02-10 02:09:24 -0800941EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943/* Make private copy of skb with writable head and some headroom */
944
945struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
946{
947 struct sk_buff *skb2;
948 int delta = headroom - skb_headroom(skb);
949
950 if (delta <= 0)
951 skb2 = pskb_copy(skb, GFP_ATOMIC);
952 else {
953 skb2 = skb_clone(skb, GFP_ATOMIC);
954 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
955 GFP_ATOMIC)) {
956 kfree_skb(skb2);
957 skb2 = NULL;
958 }
959 }
960 return skb2;
961}
David S. Millerb4ac5302009-02-10 02:09:24 -0800962EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964/**
965 * skb_copy_expand - copy and expand sk_buff
966 * @skb: buffer to copy
967 * @newheadroom: new free bytes at head
968 * @newtailroom: new free bytes at tail
969 * @gfp_mask: allocation priority
970 *
971 * Make a copy of both an &sk_buff and its data and while doing so
972 * allocate additional space.
973 *
974 * This is used when the caller wishes to modify the data and needs a
975 * private copy of the data to alter as well as more space for new fields.
976 * Returns %NULL on failure or the pointer to the buffer
977 * on success. The returned buffer has a reference count of 1.
978 *
979 * You must pass %GFP_ATOMIC as the allocation priority if this function
980 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
982struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700983 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100984 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
986 /*
987 * Allocate the copy buffer
988 */
989 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
990 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700991 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700993 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 if (!n)
996 return NULL;
997
998 skb_reserve(n, newheadroom);
999
1000 /* Set the tail pointer and length */
1001 skb_put(n, skb->len);
1002
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001003 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 head_copy_off = 0;
1005 if (newheadroom <= head_copy_len)
1006 head_copy_len = newheadroom;
1007 else
1008 head_copy_off = newheadroom - head_copy_len;
1009
1010 /* Copy the linear header and data. */
1011 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
1012 skb->len + head_copy_len))
1013 BUG();
1014
1015 copy_skb_header(n, skb);
1016
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001017 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -07001018 if (n->ip_summed == CHECKSUM_PARTIAL)
1019 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -07001020#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001021 n->transport_header += off;
1022 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +00001023 if (skb_mac_header_was_set(skb))
1024 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -07001025#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -07001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return n;
1028}
David S. Millerb4ac5302009-02-10 02:09:24 -08001029EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031/**
1032 * skb_pad - zero pad the tail of an skb
1033 * @skb: buffer to pad
1034 * @pad: space to pad
1035 *
1036 * Ensure that a buffer is followed by a padding area that is zero
1037 * filled. Used by network drivers which may DMA or transfer data
1038 * beyond the buffer end onto the wire.
1039 *
Herbert Xu5b057c62006-06-23 02:06:41 -07001040 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001042
Herbert Xu5b057c62006-06-23 02:06:41 -07001043int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Herbert Xu5b057c62006-06-23 02:06:41 -07001045 int err;
1046 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -07001049 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -07001051 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
Herbert Xu5b057c62006-06-23 02:06:41 -07001053
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001054 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -07001055 if (likely(skb_cloned(skb) || ntail > 0)) {
1056 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
1057 if (unlikely(err))
1058 goto free_skb;
1059 }
1060
1061 /* FIXME: The use of this function with non-linear skb's really needs
1062 * to be audited.
1063 */
1064 err = skb_linearize(skb);
1065 if (unlikely(err))
1066 goto free_skb;
1067
1068 memset(skb->data + skb->len, 0, pad);
1069 return 0;
1070
1071free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001073 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001074}
David S. Millerb4ac5302009-02-10 02:09:24 -08001075EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001076
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001077/**
1078 * skb_put - add data to a buffer
1079 * @skb: buffer to use
1080 * @len: amount of data to add
1081 *
1082 * This function extends the used data area of the buffer. If this would
1083 * exceed the total buffer size the kernel will panic. A pointer to the
1084 * first byte of the extra data is returned.
1085 */
1086unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1087{
1088 unsigned char *tmp = skb_tail_pointer(skb);
1089 SKB_LINEAR_ASSERT(skb);
1090 skb->tail += len;
1091 skb->len += len;
1092 if (unlikely(skb->tail > skb->end))
1093 skb_over_panic(skb, len, __builtin_return_address(0));
1094 return tmp;
1095}
1096EXPORT_SYMBOL(skb_put);
1097
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001098/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001099 * skb_push - add data to the start of a buffer
1100 * @skb: buffer to use
1101 * @len: amount of data to add
1102 *
1103 * This function extends the used data area of the buffer at the buffer
1104 * start. If this would exceed the total buffer headroom the kernel will
1105 * panic. A pointer to the first byte of the extra data is returned.
1106 */
1107unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1108{
1109 skb->data -= len;
1110 skb->len += len;
1111 if (unlikely(skb->data<skb->head))
1112 skb_under_panic(skb, len, __builtin_return_address(0));
1113 return skb->data;
1114}
1115EXPORT_SYMBOL(skb_push);
1116
1117/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001118 * skb_pull - remove data from the start of a buffer
1119 * @skb: buffer to use
1120 * @len: amount of data to remove
1121 *
1122 * This function removes data from the start of a buffer, returning
1123 * the memory to the headroom. A pointer to the next data in the buffer
1124 * is returned. Once the data has been pulled future pushes will overwrite
1125 * the old data.
1126 */
1127unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1128{
David S. Miller47d29642010-05-02 02:21:44 -07001129 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001130}
1131EXPORT_SYMBOL(skb_pull);
1132
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001133/**
1134 * skb_trim - remove end from a buffer
1135 * @skb: buffer to alter
1136 * @len: new length
1137 *
1138 * Cut the length of a buffer down by removing data from the tail. If
1139 * the buffer is already under the length specified it is not modified.
1140 * The skb must be linear.
1141 */
1142void skb_trim(struct sk_buff *skb, unsigned int len)
1143{
1144 if (skb->len > len)
1145 __skb_trim(skb, len);
1146}
1147EXPORT_SYMBOL(skb_trim);
1148
Herbert Xu3cc0e872006-06-09 16:13:38 -07001149/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 */
1151
Herbert Xu3cc0e872006-06-09 16:13:38 -07001152int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Herbert Xu27b437c2006-07-13 19:26:39 -07001154 struct sk_buff **fragp;
1155 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 int offset = skb_headlen(skb);
1157 int nfrags = skb_shinfo(skb)->nr_frags;
1158 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001159 int err;
1160
1161 if (skb_cloned(skb) &&
1162 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1163 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001165 i = 0;
1166 if (offset >= len)
1167 goto drop_pages;
1168
1169 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001171
1172 if (end < len) {
1173 offset = end;
1174 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001176
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001177 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001178
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001179drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001180 skb_shinfo(skb)->nr_frags = i;
1181
1182 for (; i < nfrags; i++)
1183 put_page(skb_shinfo(skb)->frags[i].page);
1184
David S. Miller21dc3302010-08-23 00:13:46 -07001185 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001186 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001187 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
1189
Herbert Xu27b437c2006-07-13 19:26:39 -07001190 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1191 fragp = &frag->next) {
1192 int end = offset + frag->len;
1193
1194 if (skb_shared(frag)) {
1195 struct sk_buff *nfrag;
1196
1197 nfrag = skb_clone(frag, GFP_ATOMIC);
1198 if (unlikely(!nfrag))
1199 return -ENOMEM;
1200
1201 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001202 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001203 frag = nfrag;
1204 *fragp = frag;
1205 }
1206
1207 if (end < len) {
1208 offset = end;
1209 continue;
1210 }
1211
1212 if (end > len &&
1213 unlikely((err = pskb_trim(frag, len - offset))))
1214 return err;
1215
1216 if (frag->next)
1217 skb_drop_list(&frag->next);
1218 break;
1219 }
1220
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001221done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001222 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 skb->data_len -= skb->len - len;
1224 skb->len = len;
1225 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001226 skb->len = len;
1227 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001228 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
1231 return 0;
1232}
David S. Millerb4ac5302009-02-10 02:09:24 -08001233EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235/**
1236 * __pskb_pull_tail - advance tail of skb header
1237 * @skb: buffer to reallocate
1238 * @delta: number of bytes to advance tail
1239 *
1240 * The function makes a sense only on a fragmented &sk_buff,
1241 * it expands header moving its tail forward and copying necessary
1242 * data from fragmented part.
1243 *
1244 * &sk_buff MUST have reference count of 1.
1245 *
1246 * Returns %NULL (and &sk_buff does not change) if pull failed
1247 * or value of new tail of skb in the case of success.
1248 *
1249 * All the pointers pointing into skb header may change and must be
1250 * reloaded after call to this function.
1251 */
1252
1253/* Moves tail of skb head forward, copying data from fragmented part,
1254 * when it is necessary.
1255 * 1. It may fail due to malloc failure.
1256 * 2. It may change skb pointers.
1257 *
1258 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1259 */
1260unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1261{
1262 /* If skb has not enough free space at tail, get new one
1263 * plus 128 bytes for future expansions. If we have enough
1264 * room at tail, reallocate without expansion only if skb is cloned.
1265 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001266 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 if (eat > 0 || skb_cloned(skb)) {
1269 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1270 GFP_ATOMIC))
1271 return NULL;
1272 }
1273
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001274 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 BUG();
1276
1277 /* Optimization: no fragments, no reasons to preestimate
1278 * size of pulled pages. Superb.
1279 */
David S. Miller21dc3302010-08-23 00:13:46 -07001280 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 goto pull_pages;
1282
1283 /* Estimate size of pulled pages. */
1284 eat = delta;
1285 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1286 if (skb_shinfo(skb)->frags[i].size >= eat)
1287 goto pull_pages;
1288 eat -= skb_shinfo(skb)->frags[i].size;
1289 }
1290
1291 /* If we need update frag list, we are in troubles.
1292 * Certainly, it possible to add an offset to skb data,
1293 * but taking into account that pulling is expected to
1294 * be very rare operation, it is worth to fight against
1295 * further bloating skb head and crucify ourselves here instead.
1296 * Pure masohism, indeed. 8)8)
1297 */
1298 if (eat) {
1299 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1300 struct sk_buff *clone = NULL;
1301 struct sk_buff *insp = NULL;
1302
1303 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001304 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 if (list->len <= eat) {
1307 /* Eaten as whole. */
1308 eat -= list->len;
1309 list = list->next;
1310 insp = list;
1311 } else {
1312 /* Eaten partially. */
1313
1314 if (skb_shared(list)) {
1315 /* Sucks! We need to fork list. :-( */
1316 clone = skb_clone(list, GFP_ATOMIC);
1317 if (!clone)
1318 return NULL;
1319 insp = list->next;
1320 list = clone;
1321 } else {
1322 /* This may be pulled without
1323 * problems. */
1324 insp = list;
1325 }
1326 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001327 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return NULL;
1329 }
1330 break;
1331 }
1332 } while (eat);
1333
1334 /* Free pulled out fragments. */
1335 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1336 skb_shinfo(skb)->frag_list = list->next;
1337 kfree_skb(list);
1338 }
1339 /* And insert new clone at head. */
1340 if (clone) {
1341 clone->next = list;
1342 skb_shinfo(skb)->frag_list = clone;
1343 }
1344 }
1345 /* Success! Now we may commit changes to skb data. */
1346
1347pull_pages:
1348 eat = delta;
1349 k = 0;
1350 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1351 if (skb_shinfo(skb)->frags[i].size <= eat) {
1352 put_page(skb_shinfo(skb)->frags[i].page);
1353 eat -= skb_shinfo(skb)->frags[i].size;
1354 } else {
1355 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1356 if (eat) {
1357 skb_shinfo(skb)->frags[k].page_offset += eat;
1358 skb_shinfo(skb)->frags[k].size -= eat;
1359 eat = 0;
1360 }
1361 k++;
1362 }
1363 }
1364 skb_shinfo(skb)->nr_frags = k;
1365
1366 skb->tail += delta;
1367 skb->data_len -= delta;
1368
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001369 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
David S. Millerb4ac5302009-02-10 02:09:24 -08001371EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Eric Dumazet22019b12011-07-29 18:37:31 +00001373/**
1374 * skb_copy_bits - copy bits from skb to kernel buffer
1375 * @skb: source skb
1376 * @offset: offset in source
1377 * @to: destination buffer
1378 * @len: number of bytes to copy
1379 *
1380 * Copy the specified number of bytes from the source skb to the
1381 * destination buffer.
1382 *
1383 * CAUTION ! :
1384 * If its prototype is ever changed,
1385 * check arch/{*}/net/{*}.S files,
1386 * since it is called from BPF assembly code.
1387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1389{
David S. Miller1a028e52007-04-27 15:21:23 -07001390 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001391 struct sk_buff *frag_iter;
1392 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 if (offset > (int)skb->len - len)
1395 goto fault;
1396
1397 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001398 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (copy > len)
1400 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001401 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if ((len -= copy) == 0)
1403 return 0;
1404 offset += copy;
1405 to += copy;
1406 }
1407
1408 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001409 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001411 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001412
1413 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if ((copy = end - offset) > 0) {
1415 u8 *vaddr;
1416
1417 if (copy > len)
1418 copy = len;
1419
1420 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1421 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001422 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1423 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 kunmap_skb_frag(vaddr);
1425
1426 if ((len -= copy) == 0)
1427 return 0;
1428 offset += copy;
1429 to += copy;
1430 }
David S. Miller1a028e52007-04-27 15:21:23 -07001431 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433
David S. Millerfbb398a2009-06-09 00:18:59 -07001434 skb_walk_frags(skb, frag_iter) {
1435 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
David S. Millerfbb398a2009-06-09 00:18:59 -07001437 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
David S. Millerfbb398a2009-06-09 00:18:59 -07001439 end = start + frag_iter->len;
1440 if ((copy = end - offset) > 0) {
1441 if (copy > len)
1442 copy = len;
1443 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1444 goto fault;
1445 if ((len -= copy) == 0)
1446 return 0;
1447 offset += copy;
1448 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001450 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
Shirley Maa6686f22011-07-06 12:22:12 +00001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (!len)
1454 return 0;
1455
1456fault:
1457 return -EFAULT;
1458}
David S. Millerb4ac5302009-02-10 02:09:24 -08001459EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Jens Axboe9c55e012007-11-06 23:30:13 -08001461/*
1462 * Callback from splice_to_pipe(), if we need to release some pages
1463 * at the end of the spd in case we error'ed out in filling the pipe.
1464 */
1465static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1466{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001467 put_page(spd->pages[i]);
1468}
Jens Axboe9c55e012007-11-06 23:30:13 -08001469
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001470static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1471 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001472 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001473{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001474 struct page *p = sk->sk_sndmsg_page;
1475 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001476
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001477 if (!p) {
1478new_page:
1479 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1480 if (!p)
1481 return NULL;
1482
1483 off = sk->sk_sndmsg_off = 0;
1484 /* hold one ref to this page until it's full */
1485 } else {
1486 unsigned int mlen;
1487
1488 off = sk->sk_sndmsg_off;
1489 mlen = PAGE_SIZE - off;
1490 if (mlen < 64 && mlen < *len) {
1491 put_page(p);
1492 goto new_page;
1493 }
1494
1495 *len = min_t(unsigned int, *len, mlen);
1496 }
1497
1498 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1499 sk->sk_sndmsg_off += *len;
1500 *offset = off;
1501 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001502
1503 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001504}
1505
1506/*
1507 * Fill page/offset/length into spd, if it can hold more pages.
1508 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001509static inline int spd_fill_page(struct splice_pipe_desc *spd,
1510 struct pipe_inode_info *pipe, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001511 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001512 struct sk_buff *skb, int linear,
1513 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001514{
Jens Axboe35f3d142010-05-20 10:43:18 +02001515 if (unlikely(spd->nr_pages == pipe->buffers))
Jens Axboe9c55e012007-11-06 23:30:13 -08001516 return 1;
1517
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001518 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001519 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001520 if (!page)
1521 return 1;
1522 } else
1523 get_page(page);
1524
Jens Axboe9c55e012007-11-06 23:30:13 -08001525 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001526 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001527 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001528 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001529
Jens Axboe9c55e012007-11-06 23:30:13 -08001530 return 0;
1531}
1532
Octavian Purdila2870c432008-07-15 00:49:11 -07001533static inline void __segment_seek(struct page **page, unsigned int *poff,
1534 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001535{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001536 unsigned long n;
1537
Octavian Purdila2870c432008-07-15 00:49:11 -07001538 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001539 n = *poff / PAGE_SIZE;
1540 if (n)
1541 *page = nth_page(*page, n);
1542
Octavian Purdila2870c432008-07-15 00:49:11 -07001543 *poff = *poff % PAGE_SIZE;
1544 *plen -= off;
1545}
Jens Axboe9c55e012007-11-06 23:30:13 -08001546
Octavian Purdila2870c432008-07-15 00:49:11 -07001547static inline int __splice_segment(struct page *page, unsigned int poff,
1548 unsigned int plen, unsigned int *off,
1549 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001550 struct splice_pipe_desc *spd, int linear,
Jens Axboe35f3d142010-05-20 10:43:18 +02001551 struct sock *sk,
1552 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001553{
1554 if (!*len)
1555 return 1;
1556
1557 /* skip this segment if already processed */
1558 if (*off >= plen) {
1559 *off -= plen;
1560 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001561 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001562
Octavian Purdila2870c432008-07-15 00:49:11 -07001563 /* ignore any bits we already processed */
1564 if (*off) {
1565 __segment_seek(&page, &poff, &plen, *off);
1566 *off = 0;
1567 }
1568
1569 do {
1570 unsigned int flen = min(*len, plen);
1571
1572 /* the linear region may spread across several pages */
1573 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1574
Jens Axboe35f3d142010-05-20 10:43:18 +02001575 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001576 return 1;
1577
1578 __segment_seek(&page, &poff, &plen, flen);
1579 *len -= flen;
1580
1581 } while (*len && plen);
1582
1583 return 0;
1584}
1585
1586/*
1587 * Map linear and fragment data from the skb to spd. It reports failure if the
1588 * pipe is full or if we already spliced the requested length.
1589 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001590static int __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1591 unsigned int *offset, unsigned int *len,
1592 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001593{
1594 int seg;
1595
Jens Axboe9c55e012007-11-06 23:30:13 -08001596 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001597 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001598 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001599 if (__splice_segment(virt_to_page(skb->data),
1600 (unsigned long) skb->data & (PAGE_SIZE - 1),
1601 skb_headlen(skb),
Jens Axboe35f3d142010-05-20 10:43:18 +02001602 offset, len, skb, spd, 1, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001603 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001604
1605 /*
1606 * then map the fragments
1607 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001608 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1609 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1610
Octavian Purdila2870c432008-07-15 00:49:11 -07001611 if (__splice_segment(f->page, f->page_offset, f->size,
Jens Axboe35f3d142010-05-20 10:43:18 +02001612 offset, len, skb, spd, 0, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001613 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001614 }
1615
Octavian Purdila2870c432008-07-15 00:49:11 -07001616 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001617}
1618
1619/*
1620 * Map data from the skb to a pipe. Should handle both the linear part,
1621 * the fragments, and the frag list. It does NOT handle frag lists within
1622 * the frag list, if such a thing exists. We'd probably need to recurse to
1623 * handle that cleanly.
1624 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001625int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001626 struct pipe_inode_info *pipe, unsigned int tlen,
1627 unsigned int flags)
1628{
Jens Axboe35f3d142010-05-20 10:43:18 +02001629 struct partial_page partial[PIPE_DEF_BUFFERS];
1630 struct page *pages[PIPE_DEF_BUFFERS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001631 struct splice_pipe_desc spd = {
1632 .pages = pages,
1633 .partial = partial,
1634 .flags = flags,
1635 .ops = &sock_pipe_buf_ops,
1636 .spd_release = sock_spd_release,
1637 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001638 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001639 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001640 int ret = 0;
1641
1642 if (splice_grow_spd(pipe, &spd))
1643 return -ENOMEM;
Jens Axboe9c55e012007-11-06 23:30:13 -08001644
1645 /*
1646 * __skb_splice_bits() only fails if the output has no room left,
1647 * so no point in going over the frag_list for the error case.
1648 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001649 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001650 goto done;
1651 else if (!tlen)
1652 goto done;
1653
1654 /*
1655 * now see if we have a frag_list to map
1656 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001657 skb_walk_frags(skb, frag_iter) {
1658 if (!tlen)
1659 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001660 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001661 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001662 }
1663
1664done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001665 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001666 /*
1667 * Drop the socket lock, otherwise we have reverse
1668 * locking dependencies between sk_lock and i_mutex
1669 * here as compared to sendfile(). We enter here
1670 * with the socket lock held, and splice_to_pipe() will
1671 * grab the pipe inode lock. For sendfile() emulation,
1672 * we call into ->sendpage() with the i_mutex lock held
1673 * and networking will grab the socket lock.
1674 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001675 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001676 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001677 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001678 }
1679
Jens Axboe35f3d142010-05-20 10:43:18 +02001680 splice_shrink_spd(pipe, &spd);
1681 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001682}
1683
Herbert Xu357b40a2005-04-19 22:30:14 -07001684/**
1685 * skb_store_bits - store bits from kernel buffer to skb
1686 * @skb: destination buffer
1687 * @offset: offset in destination
1688 * @from: source buffer
1689 * @len: number of bytes to copy
1690 *
1691 * Copy the specified number of bytes from the source buffer to the
1692 * destination skb. This function handles all the messy bits of
1693 * traversing fragment lists and such.
1694 */
1695
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001696int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001697{
David S. Miller1a028e52007-04-27 15:21:23 -07001698 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001699 struct sk_buff *frag_iter;
1700 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001701
1702 if (offset > (int)skb->len - len)
1703 goto fault;
1704
David S. Miller1a028e52007-04-27 15:21:23 -07001705 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001706 if (copy > len)
1707 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001708 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001709 if ((len -= copy) == 0)
1710 return 0;
1711 offset += copy;
1712 from += copy;
1713 }
1714
1715 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1716 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001717 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001718
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001719 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001720
1721 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001722 if ((copy = end - offset) > 0) {
1723 u8 *vaddr;
1724
1725 if (copy > len)
1726 copy = len;
1727
1728 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001729 memcpy(vaddr + frag->page_offset + offset - start,
1730 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001731 kunmap_skb_frag(vaddr);
1732
1733 if ((len -= copy) == 0)
1734 return 0;
1735 offset += copy;
1736 from += copy;
1737 }
David S. Miller1a028e52007-04-27 15:21:23 -07001738 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001739 }
1740
David S. Millerfbb398a2009-06-09 00:18:59 -07001741 skb_walk_frags(skb, frag_iter) {
1742 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001743
David S. Millerfbb398a2009-06-09 00:18:59 -07001744 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001745
David S. Millerfbb398a2009-06-09 00:18:59 -07001746 end = start + frag_iter->len;
1747 if ((copy = end - offset) > 0) {
1748 if (copy > len)
1749 copy = len;
1750 if (skb_store_bits(frag_iter, offset - start,
1751 from, copy))
1752 goto fault;
1753 if ((len -= copy) == 0)
1754 return 0;
1755 offset += copy;
1756 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001757 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001758 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001759 }
1760 if (!len)
1761 return 0;
1762
1763fault:
1764 return -EFAULT;
1765}
Herbert Xu357b40a2005-04-19 22:30:14 -07001766EXPORT_SYMBOL(skb_store_bits);
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768/* Checksum skb data. */
1769
Al Viro2bbbc862006-11-14 21:37:14 -08001770__wsum skb_checksum(const struct sk_buff *skb, int offset,
1771 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
David S. Miller1a028e52007-04-27 15:21:23 -07001773 int start = skb_headlen(skb);
1774 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001775 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 int pos = 0;
1777
1778 /* Checksum header. */
1779 if (copy > 0) {
1780 if (copy > len)
1781 copy = len;
1782 csum = csum_partial(skb->data + offset, copy, csum);
1783 if ((len -= copy) == 0)
1784 return csum;
1785 offset += copy;
1786 pos = copy;
1787 }
1788
1789 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001790 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001792 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001793
1794 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001796 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 u8 *vaddr;
1798 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1799
1800 if (copy > len)
1801 copy = len;
1802 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001803 csum2 = csum_partial(vaddr + frag->page_offset +
1804 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 kunmap_skb_frag(vaddr);
1806 csum = csum_block_add(csum, csum2, pos);
1807 if (!(len -= copy))
1808 return csum;
1809 offset += copy;
1810 pos += copy;
1811 }
David S. Miller1a028e52007-04-27 15:21:23 -07001812 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814
David S. Millerfbb398a2009-06-09 00:18:59 -07001815 skb_walk_frags(skb, frag_iter) {
1816 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
David S. Millerfbb398a2009-06-09 00:18:59 -07001818 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
David S. Millerfbb398a2009-06-09 00:18:59 -07001820 end = start + frag_iter->len;
1821 if ((copy = end - offset) > 0) {
1822 __wsum csum2;
1823 if (copy > len)
1824 copy = len;
1825 csum2 = skb_checksum(frag_iter, offset - start,
1826 copy, 0);
1827 csum = csum_block_add(csum, csum2, pos);
1828 if ((len -= copy) == 0)
1829 return csum;
1830 offset += copy;
1831 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001833 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001835 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 return csum;
1838}
David S. Millerb4ac5302009-02-10 02:09:24 -08001839EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841/* Both of above in one bottle. */
1842
Al Viro81d77662006-11-14 21:37:33 -08001843__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1844 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
David S. Miller1a028e52007-04-27 15:21:23 -07001846 int start = skb_headlen(skb);
1847 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001848 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 int pos = 0;
1850
1851 /* Copy header. */
1852 if (copy > 0) {
1853 if (copy > len)
1854 copy = len;
1855 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1856 copy, csum);
1857 if ((len -= copy) == 0)
1858 return csum;
1859 offset += copy;
1860 to += copy;
1861 pos = copy;
1862 }
1863
1864 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001865 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001867 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001868
1869 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001871 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 u8 *vaddr;
1873 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1874
1875 if (copy > len)
1876 copy = len;
1877 vaddr = kmap_skb_frag(frag);
1878 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001879 frag->page_offset +
1880 offset - start, to,
1881 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 kunmap_skb_frag(vaddr);
1883 csum = csum_block_add(csum, csum2, pos);
1884 if (!(len -= copy))
1885 return csum;
1886 offset += copy;
1887 to += copy;
1888 pos += copy;
1889 }
David S. Miller1a028e52007-04-27 15:21:23 -07001890 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892
David S. Millerfbb398a2009-06-09 00:18:59 -07001893 skb_walk_frags(skb, frag_iter) {
1894 __wsum csum2;
1895 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
David S. Millerfbb398a2009-06-09 00:18:59 -07001897 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
David S. Millerfbb398a2009-06-09 00:18:59 -07001899 end = start + frag_iter->len;
1900 if ((copy = end - offset) > 0) {
1901 if (copy > len)
1902 copy = len;
1903 csum2 = skb_copy_and_csum_bits(frag_iter,
1904 offset - start,
1905 to, copy, 0);
1906 csum = csum_block_add(csum, csum2, pos);
1907 if ((len -= copy) == 0)
1908 return csum;
1909 offset += copy;
1910 to += copy;
1911 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001913 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001915 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 return csum;
1917}
David S. Millerb4ac5302009-02-10 02:09:24 -08001918EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1921{
Al Virod3bc23e2006-11-14 21:24:49 -08001922 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 long csstart;
1924
Patrick McHardy84fa7932006-08-29 16:44:56 -07001925 if (skb->ip_summed == CHECKSUM_PARTIAL)
Michał Mirosław55508d62010-12-14 15:24:08 +00001926 csstart = skb_checksum_start_offset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 else
1928 csstart = skb_headlen(skb);
1929
Kris Katterjohn09a62662006-01-08 22:24:28 -08001930 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001932 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 csum = 0;
1935 if (csstart != skb->len)
1936 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1937 skb->len - csstart, 0);
1938
Patrick McHardy84fa7932006-08-29 16:44:56 -07001939 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001940 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Al Virod3bc23e2006-11-14 21:24:49 -08001942 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944}
David S. Millerb4ac5302009-02-10 02:09:24 -08001945EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947/**
1948 * skb_dequeue - remove from the head of the queue
1949 * @list: list to dequeue from
1950 *
1951 * Remove the head of the list. The list lock is taken so the function
1952 * may be used safely with other locking list functions. The head item is
1953 * returned or %NULL if the list is empty.
1954 */
1955
1956struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1957{
1958 unsigned long flags;
1959 struct sk_buff *result;
1960
1961 spin_lock_irqsave(&list->lock, flags);
1962 result = __skb_dequeue(list);
1963 spin_unlock_irqrestore(&list->lock, flags);
1964 return result;
1965}
David S. Millerb4ac5302009-02-10 02:09:24 -08001966EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968/**
1969 * skb_dequeue_tail - remove from the tail of the queue
1970 * @list: list to dequeue from
1971 *
1972 * Remove the tail of the list. The list lock is taken so the function
1973 * may be used safely with other locking list functions. The tail item is
1974 * returned or %NULL if the list is empty.
1975 */
1976struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1977{
1978 unsigned long flags;
1979 struct sk_buff *result;
1980
1981 spin_lock_irqsave(&list->lock, flags);
1982 result = __skb_dequeue_tail(list);
1983 spin_unlock_irqrestore(&list->lock, flags);
1984 return result;
1985}
David S. Millerb4ac5302009-02-10 02:09:24 -08001986EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988/**
1989 * skb_queue_purge - empty a list
1990 * @list: list to empty
1991 *
1992 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1993 * the list and one reference dropped. This function takes the list
1994 * lock and is atomic with respect to other list locking functions.
1995 */
1996void skb_queue_purge(struct sk_buff_head *list)
1997{
1998 struct sk_buff *skb;
1999 while ((skb = skb_dequeue(list)) != NULL)
2000 kfree_skb(skb);
2001}
David S. Millerb4ac5302009-02-10 02:09:24 -08002002EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004/**
2005 * skb_queue_head - queue a buffer at the list head
2006 * @list: list to use
2007 * @newsk: buffer to queue
2008 *
2009 * Queue a buffer at the start of the list. This function takes the
2010 * list lock and can be used safely with other locking &sk_buff functions
2011 * safely.
2012 *
2013 * A buffer cannot be placed on two lists at the same time.
2014 */
2015void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
2016{
2017 unsigned long flags;
2018
2019 spin_lock_irqsave(&list->lock, flags);
2020 __skb_queue_head(list, newsk);
2021 spin_unlock_irqrestore(&list->lock, flags);
2022}
David S. Millerb4ac5302009-02-10 02:09:24 -08002023EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025/**
2026 * skb_queue_tail - queue a buffer at the list tail
2027 * @list: list to use
2028 * @newsk: buffer to queue
2029 *
2030 * Queue a buffer at the tail of the list. This function takes the
2031 * list lock and can be used safely with other locking &sk_buff functions
2032 * safely.
2033 *
2034 * A buffer cannot be placed on two lists at the same time.
2035 */
2036void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
2037{
2038 unsigned long flags;
2039
2040 spin_lock_irqsave(&list->lock, flags);
2041 __skb_queue_tail(list, newsk);
2042 spin_unlock_irqrestore(&list->lock, flags);
2043}
David S. Millerb4ac5302009-02-10 02:09:24 -08002044EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07002045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046/**
2047 * skb_unlink - remove a buffer from a list
2048 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07002049 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 *
David S. Miller8728b832005-08-09 19:25:21 -07002051 * Remove a packet from a list. The list locks are taken and this
2052 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 *
David S. Miller8728b832005-08-09 19:25:21 -07002054 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 */
David S. Miller8728b832005-08-09 19:25:21 -07002056void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
David S. Miller8728b832005-08-09 19:25:21 -07002058 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
David S. Miller8728b832005-08-09 19:25:21 -07002060 spin_lock_irqsave(&list->lock, flags);
2061 __skb_unlink(skb, list);
2062 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
David S. Millerb4ac5302009-02-10 02:09:24 -08002064EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066/**
2067 * skb_append - append a buffer
2068 * @old: buffer to insert after
2069 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002070 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 *
2072 * Place a packet after a given packet in a list. The list locks are taken
2073 * and this function is atomic with respect to other list locked calls.
2074 * A buffer cannot be placed on two lists at the same time.
2075 */
David S. Miller8728b832005-08-09 19:25:21 -07002076void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
2078 unsigned long flags;
2079
David S. Miller8728b832005-08-09 19:25:21 -07002080 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07002081 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07002082 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
David S. Millerb4ac5302009-02-10 02:09:24 -08002084EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086/**
2087 * skb_insert - insert a buffer
2088 * @old: buffer to insert before
2089 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002090 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 *
David S. Miller8728b832005-08-09 19:25:21 -07002092 * Place a packet before a given packet in a list. The list locks are
2093 * taken and this function is atomic with respect to other list locked
2094 * calls.
2095 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 * A buffer cannot be placed on two lists at the same time.
2097 */
David S. Miller8728b832005-08-09 19:25:21 -07002098void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
2100 unsigned long flags;
2101
David S. Miller8728b832005-08-09 19:25:21 -07002102 spin_lock_irqsave(&list->lock, flags);
2103 __skb_insert(newsk, old->prev, old, list);
2104 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
David S. Millerb4ac5302009-02-10 02:09:24 -08002106EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108static inline void skb_split_inside_header(struct sk_buff *skb,
2109 struct sk_buff* skb1,
2110 const u32 len, const int pos)
2111{
2112 int i;
2113
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002114 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2115 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 /* And move data appendix as is. */
2117 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2118 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2119
2120 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2121 skb_shinfo(skb)->nr_frags = 0;
2122 skb1->data_len = skb->data_len;
2123 skb1->len += skb1->data_len;
2124 skb->data_len = 0;
2125 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002126 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
2129static inline void skb_split_no_header(struct sk_buff *skb,
2130 struct sk_buff* skb1,
2131 const u32 len, int pos)
2132{
2133 int i, k = 0;
2134 const int nfrags = skb_shinfo(skb)->nr_frags;
2135
2136 skb_shinfo(skb)->nr_frags = 0;
2137 skb1->len = skb1->data_len = skb->len - len;
2138 skb->len = len;
2139 skb->data_len = len - pos;
2140
2141 for (i = 0; i < nfrags; i++) {
2142 int size = skb_shinfo(skb)->frags[i].size;
2143
2144 if (pos + size > len) {
2145 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2146
2147 if (pos < len) {
2148 /* Split frag.
2149 * We have two variants in this case:
2150 * 1. Move all the frag to the second
2151 * part, if it is possible. F.e.
2152 * this approach is mandatory for TUX,
2153 * where splitting is expensive.
2154 * 2. Split is accurately. We make this.
2155 */
2156 get_page(skb_shinfo(skb)->frags[i].page);
2157 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2158 skb_shinfo(skb1)->frags[0].size -= len - pos;
2159 skb_shinfo(skb)->frags[i].size = len - pos;
2160 skb_shinfo(skb)->nr_frags++;
2161 }
2162 k++;
2163 } else
2164 skb_shinfo(skb)->nr_frags++;
2165 pos += size;
2166 }
2167 skb_shinfo(skb1)->nr_frags = k;
2168}
2169
2170/**
2171 * skb_split - Split fragmented skb to two parts at length len.
2172 * @skb: the buffer to split
2173 * @skb1: the buffer to receive the second part
2174 * @len: new length for skb
2175 */
2176void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2177{
2178 int pos = skb_headlen(skb);
2179
2180 if (len < pos) /* Split line is inside header. */
2181 skb_split_inside_header(skb, skb1, len, pos);
2182 else /* Second chunk has no header, nothing to copy. */
2183 skb_split_no_header(skb, skb1, len, pos);
2184}
David S. Millerb4ac5302009-02-10 02:09:24 -08002185EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002187/* Shifting from/to a cloned skb is a no-go.
2188 *
2189 * Caller cannot keep skb_shinfo related pointers past calling here!
2190 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002191static int skb_prepare_for_shift(struct sk_buff *skb)
2192{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002193 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002194}
2195
2196/**
2197 * skb_shift - Shifts paged data partially from skb to another
2198 * @tgt: buffer into which tail data gets added
2199 * @skb: buffer from which the paged data comes from
2200 * @shiftlen: shift up to this many bytes
2201 *
2202 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2203 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2204 * It's up to caller to free skb if everything was shifted.
2205 *
2206 * If @tgt runs out of frags, the whole operation is aborted.
2207 *
2208 * Skb cannot include anything else but paged data while tgt is allowed
2209 * to have non-paged data as well.
2210 *
2211 * TODO: full sized shift could be optimized but that would need
2212 * specialized skb free'er to handle frags without up-to-date nr_frags.
2213 */
2214int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2215{
2216 int from, to, merge, todo;
2217 struct skb_frag_struct *fragfrom, *fragto;
2218
2219 BUG_ON(shiftlen > skb->len);
2220 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2221
2222 todo = shiftlen;
2223 from = 0;
2224 to = skb_shinfo(tgt)->nr_frags;
2225 fragfrom = &skb_shinfo(skb)->frags[from];
2226
2227 /* Actual merge is delayed until the point when we know we can
2228 * commit all, so that we don't have to undo partial changes
2229 */
2230 if (!to ||
2231 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2232 merge = -1;
2233 } else {
2234 merge = to - 1;
2235
2236 todo -= fragfrom->size;
2237 if (todo < 0) {
2238 if (skb_prepare_for_shift(skb) ||
2239 skb_prepare_for_shift(tgt))
2240 return 0;
2241
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002242 /* All previous frag pointers might be stale! */
2243 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002244 fragto = &skb_shinfo(tgt)->frags[merge];
2245
2246 fragto->size += shiftlen;
2247 fragfrom->size -= shiftlen;
2248 fragfrom->page_offset += shiftlen;
2249
2250 goto onlymerged;
2251 }
2252
2253 from++;
2254 }
2255
2256 /* Skip full, not-fitting skb to avoid expensive operations */
2257 if ((shiftlen == skb->len) &&
2258 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2259 return 0;
2260
2261 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2262 return 0;
2263
2264 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2265 if (to == MAX_SKB_FRAGS)
2266 return 0;
2267
2268 fragfrom = &skb_shinfo(skb)->frags[from];
2269 fragto = &skb_shinfo(tgt)->frags[to];
2270
2271 if (todo >= fragfrom->size) {
2272 *fragto = *fragfrom;
2273 todo -= fragfrom->size;
2274 from++;
2275 to++;
2276
2277 } else {
2278 get_page(fragfrom->page);
2279 fragto->page = fragfrom->page;
2280 fragto->page_offset = fragfrom->page_offset;
2281 fragto->size = todo;
2282
2283 fragfrom->page_offset += todo;
2284 fragfrom->size -= todo;
2285 todo = 0;
2286
2287 to++;
2288 break;
2289 }
2290 }
2291
2292 /* Ready to "commit" this state change to tgt */
2293 skb_shinfo(tgt)->nr_frags = to;
2294
2295 if (merge >= 0) {
2296 fragfrom = &skb_shinfo(skb)->frags[0];
2297 fragto = &skb_shinfo(tgt)->frags[merge];
2298
2299 fragto->size += fragfrom->size;
2300 put_page(fragfrom->page);
2301 }
2302
2303 /* Reposition in the original skb */
2304 to = 0;
2305 while (from < skb_shinfo(skb)->nr_frags)
2306 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2307 skb_shinfo(skb)->nr_frags = to;
2308
2309 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2310
2311onlymerged:
2312 /* Most likely the tgt won't ever need its checksum anymore, skb on
2313 * the other hand might need it if it needs to be resent
2314 */
2315 tgt->ip_summed = CHECKSUM_PARTIAL;
2316 skb->ip_summed = CHECKSUM_PARTIAL;
2317
2318 /* Yak, is it really working this way? Some helper please? */
2319 skb->len -= shiftlen;
2320 skb->data_len -= shiftlen;
2321 skb->truesize -= shiftlen;
2322 tgt->len += shiftlen;
2323 tgt->data_len += shiftlen;
2324 tgt->truesize += shiftlen;
2325
2326 return shiftlen;
2327}
2328
Thomas Graf677e90e2005-06-23 20:59:51 -07002329/**
2330 * skb_prepare_seq_read - Prepare a sequential read of skb data
2331 * @skb: the buffer to read
2332 * @from: lower offset of data to be read
2333 * @to: upper offset of data to be read
2334 * @st: state variable
2335 *
2336 * Initializes the specified state variable. Must be called before
2337 * invoking skb_seq_read() for the first time.
2338 */
2339void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2340 unsigned int to, struct skb_seq_state *st)
2341{
2342 st->lower_offset = from;
2343 st->upper_offset = to;
2344 st->root_skb = st->cur_skb = skb;
2345 st->frag_idx = st->stepped_offset = 0;
2346 st->frag_data = NULL;
2347}
David S. Millerb4ac5302009-02-10 02:09:24 -08002348EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002349
2350/**
2351 * skb_seq_read - Sequentially read skb data
2352 * @consumed: number of bytes consumed by the caller so far
2353 * @data: destination pointer for data to be returned
2354 * @st: state variable
2355 *
2356 * Reads a block of skb data at &consumed relative to the
2357 * lower offset specified to skb_prepare_seq_read(). Assigns
2358 * the head of the data block to &data and returns the length
2359 * of the block or 0 if the end of the skb data or the upper
2360 * offset has been reached.
2361 *
2362 * The caller is not required to consume all of the data
2363 * returned, i.e. &consumed is typically set to the number
2364 * of bytes already consumed and the next call to
2365 * skb_seq_read() will return the remaining part of the block.
2366 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002367 * Note 1: The size of each block of data returned can be arbitrary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002368 * this limitation is the cost for zerocopy seqeuental
2369 * reads of potentially non linear data.
2370 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002371 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002372 * at the moment, state->root_skb could be replaced with
2373 * a stack for this purpose.
2374 */
2375unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2376 struct skb_seq_state *st)
2377{
2378 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2379 skb_frag_t *frag;
2380
2381 if (unlikely(abs_offset >= st->upper_offset))
2382 return 0;
2383
2384next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002385 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002386
Thomas Chenault995b3372009-05-18 21:43:27 -07002387 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002388 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002389 return block_limit - abs_offset;
2390 }
2391
2392 if (st->frag_idx == 0 && !st->frag_data)
2393 st->stepped_offset += skb_headlen(st->cur_skb);
2394
2395 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2396 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2397 block_limit = frag->size + st->stepped_offset;
2398
2399 if (abs_offset < block_limit) {
2400 if (!st->frag_data)
2401 st->frag_data = kmap_skb_frag(frag);
2402
2403 *data = (u8 *) st->frag_data + frag->page_offset +
2404 (abs_offset - st->stepped_offset);
2405
2406 return block_limit - abs_offset;
2407 }
2408
2409 if (st->frag_data) {
2410 kunmap_skb_frag(st->frag_data);
2411 st->frag_data = NULL;
2412 }
2413
2414 st->frag_idx++;
2415 st->stepped_offset += frag->size;
2416 }
2417
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002418 if (st->frag_data) {
2419 kunmap_skb_frag(st->frag_data);
2420 st->frag_data = NULL;
2421 }
2422
David S. Miller21dc3302010-08-23 00:13:46 -07002423 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002424 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002425 st->frag_idx = 0;
2426 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002427 } else if (st->cur_skb->next) {
2428 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002429 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002430 goto next_skb;
2431 }
2432
2433 return 0;
2434}
David S. Millerb4ac5302009-02-10 02:09:24 -08002435EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002436
2437/**
2438 * skb_abort_seq_read - Abort a sequential read of skb data
2439 * @st: state variable
2440 *
2441 * Must be called if skb_seq_read() was not called until it
2442 * returned 0.
2443 */
2444void skb_abort_seq_read(struct skb_seq_state *st)
2445{
2446 if (st->frag_data)
2447 kunmap_skb_frag(st->frag_data);
2448}
David S. Millerb4ac5302009-02-10 02:09:24 -08002449EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002450
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002451#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2452
2453static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2454 struct ts_config *conf,
2455 struct ts_state *state)
2456{
2457 return skb_seq_read(offset, text, TS_SKB_CB(state));
2458}
2459
2460static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2461{
2462 skb_abort_seq_read(TS_SKB_CB(state));
2463}
2464
2465/**
2466 * skb_find_text - Find a text pattern in skb data
2467 * @skb: the buffer to look in
2468 * @from: search offset
2469 * @to: search limit
2470 * @config: textsearch configuration
2471 * @state: uninitialized textsearch state variable
2472 *
2473 * Finds a pattern in the skb data according to the specified
2474 * textsearch configuration. Use textsearch_next() to retrieve
2475 * subsequent occurrences of the pattern. Returns the offset
2476 * to the first occurrence or UINT_MAX if no match was found.
2477 */
2478unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2479 unsigned int to, struct ts_config *config,
2480 struct ts_state *state)
2481{
Phil Oesterf72b9482006-06-26 00:00:57 -07002482 unsigned int ret;
2483
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002484 config->get_next_block = skb_ts_get_next_block;
2485 config->finish = skb_ts_finish;
2486
2487 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2488
Phil Oesterf72b9482006-06-26 00:00:57 -07002489 ret = textsearch_find(config, state);
2490 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002491}
David S. Millerb4ac5302009-02-10 02:09:24 -08002492EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002493
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002494/**
2495 * skb_append_datato_frags: - append the user data to a skb
2496 * @sk: sock structure
2497 * @skb: skb structure to be appened with user data.
2498 * @getfrag: call back function to be used for getting the user data
2499 * @from: pointer to user message iov
2500 * @length: length of the iov message
2501 *
2502 * Description: This procedure append the user data in the fragment part
2503 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2504 */
2505int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002506 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002507 int len, int odd, struct sk_buff *skb),
2508 void *from, int length)
2509{
2510 int frg_cnt = 0;
2511 skb_frag_t *frag = NULL;
2512 struct page *page = NULL;
2513 int copy, left;
2514 int offset = 0;
2515 int ret;
2516
2517 do {
2518 /* Return error if we don't have space for new frag */
2519 frg_cnt = skb_shinfo(skb)->nr_frags;
2520 if (frg_cnt >= MAX_SKB_FRAGS)
2521 return -EFAULT;
2522
2523 /* allocate a new page for next frag */
2524 page = alloc_pages(sk->sk_allocation, 0);
2525
2526 /* If alloc_page fails just return failure and caller will
2527 * free previous allocated pages by doing kfree_skb()
2528 */
2529 if (page == NULL)
2530 return -ENOMEM;
2531
2532 /* initialize the next frag */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002533 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2534 skb->truesize += PAGE_SIZE;
2535 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2536
2537 /* get the new initialized frag */
2538 frg_cnt = skb_shinfo(skb)->nr_frags;
2539 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2540
2541 /* copy the user data to page */
2542 left = PAGE_SIZE - frag->page_offset;
2543 copy = (length > left)? left : length;
2544
2545 ret = getfrag(from, (page_address(frag->page) +
2546 frag->page_offset + frag->size),
2547 offset, copy, 0, skb);
2548 if (ret < 0)
2549 return -EFAULT;
2550
2551 /* copy was successful so update the size parameters */
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002552 frag->size += copy;
2553 skb->len += copy;
2554 skb->data_len += copy;
2555 offset += copy;
2556 length -= copy;
2557
2558 } while (length > 0);
2559
2560 return 0;
2561}
David S. Millerb4ac5302009-02-10 02:09:24 -08002562EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002563
Herbert Xucbb042f2006-03-20 22:43:56 -08002564/**
2565 * skb_pull_rcsum - pull skb and update receive checksum
2566 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002567 * @len: length of data pulled
2568 *
2569 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002570 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002571 * receive path processing instead of skb_pull unless you know
2572 * that the checksum difference is zero (e.g., a valid IP header)
2573 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002574 */
2575unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2576{
2577 BUG_ON(len > skb->len);
2578 skb->len -= len;
2579 BUG_ON(skb->len < skb->data_len);
2580 skb_postpull_rcsum(skb, skb->data, len);
2581 return skb->data += len;
2582}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002583EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2584
Herbert Xuf4c50d92006-06-22 03:02:40 -07002585/**
2586 * skb_segment - Perform protocol segmentation on skb.
2587 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002588 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002589 *
2590 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002591 * a pointer to the first in a list of new skbs for the segments.
2592 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002593 */
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002594struct sk_buff *skb_segment(struct sk_buff *skb, u32 features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002595{
2596 struct sk_buff *segs = NULL;
2597 struct sk_buff *tail = NULL;
Herbert Xu89319d32008-12-15 23:26:06 -08002598 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002599 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002600 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002601 unsigned int offset = doffset;
2602 unsigned int headroom;
2603 unsigned int len;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08002604 int sg = !!(features & NETIF_F_SG);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002605 int nfrags = skb_shinfo(skb)->nr_frags;
2606 int err = -ENOMEM;
2607 int i = 0;
2608 int pos;
2609
2610 __skb_push(skb, doffset);
2611 headroom = skb_headroom(skb);
2612 pos = skb_headlen(skb);
2613
2614 do {
2615 struct sk_buff *nskb;
2616 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002617 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002618 int size;
2619
2620 len = skb->len - offset;
2621 if (len > mss)
2622 len = mss;
2623
2624 hsize = skb_headlen(skb) - offset;
2625 if (hsize < 0)
2626 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002627 if (hsize > len || !sg)
2628 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002629
Herbert Xu89319d32008-12-15 23:26:06 -08002630 if (!hsize && i >= nfrags) {
2631 BUG_ON(fskb->len != len);
2632
2633 pos += len;
2634 nskb = skb_clone(fskb, GFP_ATOMIC);
2635 fskb = fskb->next;
2636
2637 if (unlikely(!nskb))
2638 goto err;
2639
2640 hsize = skb_end_pointer(nskb) - nskb->head;
2641 if (skb_cow_head(nskb, doffset + headroom)) {
2642 kfree_skb(nskb);
2643 goto err;
2644 }
2645
2646 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2647 hsize;
2648 skb_release_head_state(nskb);
2649 __skb_push(nskb, doffset);
2650 } else {
2651 nskb = alloc_skb(hsize + doffset + headroom,
2652 GFP_ATOMIC);
2653
2654 if (unlikely(!nskb))
2655 goto err;
2656
2657 skb_reserve(nskb, headroom);
2658 __skb_put(nskb, doffset);
2659 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002660
2661 if (segs)
2662 tail->next = nskb;
2663 else
2664 segs = nskb;
2665 tail = nskb;
2666
Herbert Xu6f85a122008-08-15 14:55:02 -07002667 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002668 nskb->mac_len = skb->mac_len;
2669
Eric Dumazet3d3be432010-09-01 00:50:51 +00002670 /* nskb and skb might have different headroom */
2671 if (nskb->ip_summed == CHECKSUM_PARTIAL)
2672 nskb->csum_start += skb_headroom(nskb) - headroom;
2673
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002674 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002675 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002676 nskb->transport_header = (nskb->network_header +
2677 skb_network_header_len(skb));
Herbert Xu89319d32008-12-15 23:26:06 -08002678 skb_copy_from_linear_data(skb, nskb->data, doffset);
2679
Herbert Xu2f181852009-03-28 23:39:18 -07002680 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d32008-12-15 23:26:06 -08002681 continue;
2682
Herbert Xuf4c50d92006-06-22 03:02:40 -07002683 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002684 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002685 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2686 skb_put(nskb, len),
2687 len, 0);
2688 continue;
2689 }
2690
2691 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002692
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002693 skb_copy_from_linear_data_offset(skb, offset,
2694 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002695
Herbert Xu89319d32008-12-15 23:26:06 -08002696 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002697 *frag = skb_shinfo(skb)->frags[i];
2698 get_page(frag->page);
2699 size = frag->size;
2700
2701 if (pos < offset) {
2702 frag->page_offset += offset - pos;
2703 frag->size -= offset - pos;
2704 }
2705
Herbert Xu89319d32008-12-15 23:26:06 -08002706 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002707
2708 if (pos + size <= offset + len) {
2709 i++;
2710 pos += size;
2711 } else {
2712 frag->size -= pos + size - (offset + len);
Herbert Xu89319d32008-12-15 23:26:06 -08002713 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002714 }
2715
2716 frag++;
2717 }
2718
Herbert Xu89319d32008-12-15 23:26:06 -08002719 if (pos < offset + len) {
2720 struct sk_buff *fskb2 = fskb;
2721
2722 BUG_ON(pos + fskb->len != offset + len);
2723
2724 pos += fskb->len;
2725 fskb = fskb->next;
2726
2727 if (fskb2->next) {
2728 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2729 if (!fskb2)
2730 goto err;
2731 } else
2732 skb_get(fskb2);
2733
David S. Millerfbb398a2009-06-09 00:18:59 -07002734 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d32008-12-15 23:26:06 -08002735 skb_shinfo(nskb)->frag_list = fskb2;
2736 }
2737
2738skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002739 nskb->data_len = len - hsize;
2740 nskb->len += nskb->data_len;
2741 nskb->truesize += nskb->data_len;
2742 } while ((offset += len) < skb->len);
2743
2744 return segs;
2745
2746err:
2747 while ((skb = segs)) {
2748 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002749 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002750 }
2751 return ERR_PTR(err);
2752}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002753EXPORT_SYMBOL_GPL(skb_segment);
2754
Herbert Xu71d93b32008-12-15 23:42:33 -08002755int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2756{
2757 struct sk_buff *p = *head;
2758 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002759 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2760 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002761 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002762 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002763 unsigned int offset = skb_gro_offset(skb);
2764 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002765
Herbert Xu86911732009-01-29 14:19:50 +00002766 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002767 return -E2BIG;
2768
Herbert Xu9aaa1562009-05-26 18:50:33 +00002769 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002770 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002771 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002772 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002773 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002774 int i = skbinfo->nr_frags;
2775 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002776
Herbert Xu66e92fc2009-05-26 18:50:32 +00002777 offset -= headlen;
2778
2779 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002780 return -E2BIG;
2781
Herbert Xu9aaa1562009-05-26 18:50:33 +00002782 pinfo->nr_frags = nr_frags;
2783 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002784
Herbert Xu9aaa1562009-05-26 18:50:33 +00002785 frag = pinfo->frags + nr_frags;
2786 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002787 do {
2788 *--frag = *--frag2;
2789 } while (--i);
2790
2791 frag->page_offset += offset;
2792 frag->size -= offset;
2793
Herbert Xuf5572062009-01-14 20:40:03 -08002794 skb->truesize -= skb->data_len;
2795 skb->len -= skb->data_len;
2796 skb->data_len = 0;
2797
Herbert Xu5d38a072009-01-04 16:13:40 -08002798 NAPI_GRO_CB(skb)->free = 1;
2799 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002800 } else if (skb_gro_len(p) != pinfo->gso_size)
2801 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002802
2803 headroom = skb_headroom(p);
Eric Dumazet3d3be432010-09-01 00:50:51 +00002804 nskb = alloc_skb(headroom + skb_gro_offset(p), GFP_ATOMIC);
Herbert Xu71d93b32008-12-15 23:42:33 -08002805 if (unlikely(!nskb))
2806 return -ENOMEM;
2807
2808 __copy_skb_header(nskb, p);
2809 nskb->mac_len = p->mac_len;
2810
2811 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002812 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002813
Herbert Xu86911732009-01-29 14:19:50 +00002814 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002815 skb_set_network_header(nskb, skb_network_offset(p));
2816 skb_set_transport_header(nskb, skb_transport_offset(p));
2817
Herbert Xu86911732009-01-29 14:19:50 +00002818 __skb_pull(p, skb_gro_offset(p));
2819 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2820 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002821
2822 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2823 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002824 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07002825 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08002826 skb_header_release(p);
2827 nskb->prev = p;
2828
2829 nskb->data_len += p->len;
2830 nskb->truesize += p->len;
2831 nskb->len += p->len;
2832
2833 *head = nskb;
2834 nskb->next = p->next;
2835 p->next = NULL;
2836
2837 p = nskb;
2838
2839merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002840 if (offset > headlen) {
Michal Schmidtd1dc7ab2011-01-24 12:08:48 +00002841 unsigned int eat = offset - headlen;
2842
2843 skbinfo->frags[0].page_offset += eat;
2844 skbinfo->frags[0].size -= eat;
2845 skb->data_len -= eat;
2846 skb->len -= eat;
Herbert Xu67147ba2009-05-26 18:50:22 +00002847 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002848 }
2849
Herbert Xu67147ba2009-05-26 18:50:22 +00002850 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002851
Herbert Xu71d93b32008-12-15 23:42:33 -08002852 p->prev->next = skb;
2853 p->prev = skb;
2854 skb_header_release(skb);
2855
Herbert Xu5d38a072009-01-04 16:13:40 -08002856done:
2857 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002858 p->data_len += len;
2859 p->truesize += len;
2860 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002861
2862 NAPI_GRO_CB(skb)->same_flow = 1;
2863 return 0;
2864}
2865EXPORT_SYMBOL_GPL(skb_gro_receive);
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867void __init skb_init(void)
2868{
2869 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2870 sizeof(struct sk_buff),
2871 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002872 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002873 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002874 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2875 (2*sizeof(struct sk_buff)) +
2876 sizeof(atomic_t),
2877 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002878 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002879 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880}
2881
David Howells716ea3a2007-04-02 20:19:53 -07002882/**
2883 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2884 * @skb: Socket buffer containing the buffers to be mapped
2885 * @sg: The scatter-gather list to map into
2886 * @offset: The offset into the buffer's contents to start mapping
2887 * @len: Length of buffer space to be mapped
2888 *
2889 * Fill the specified scatter-gather list with mappings/pointers into a
2890 * region of the buffer space attached to a socket buffer.
2891 */
David S. Miller51c739d2007-10-30 21:29:29 -07002892static int
2893__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002894{
David S. Miller1a028e52007-04-27 15:21:23 -07002895 int start = skb_headlen(skb);
2896 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002897 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002898 int elt = 0;
2899
2900 if (copy > 0) {
2901 if (copy > len)
2902 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002903 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002904 elt++;
2905 if ((len -= copy) == 0)
2906 return elt;
2907 offset += copy;
2908 }
2909
2910 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002911 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002912
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002913 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002914
2915 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002916 if ((copy = end - offset) > 0) {
2917 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2918
2919 if (copy > len)
2920 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002921 sg_set_page(&sg[elt], frag->page, copy,
2922 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002923 elt++;
2924 if (!(len -= copy))
2925 return elt;
2926 offset += copy;
2927 }
David S. Miller1a028e52007-04-27 15:21:23 -07002928 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002929 }
2930
David S. Millerfbb398a2009-06-09 00:18:59 -07002931 skb_walk_frags(skb, frag_iter) {
2932 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002933
David S. Millerfbb398a2009-06-09 00:18:59 -07002934 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002935
David S. Millerfbb398a2009-06-09 00:18:59 -07002936 end = start + frag_iter->len;
2937 if ((copy = end - offset) > 0) {
2938 if (copy > len)
2939 copy = len;
2940 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2941 copy);
2942 if ((len -= copy) == 0)
2943 return elt;
2944 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002945 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002946 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002947 }
2948 BUG_ON(len);
2949 return elt;
2950}
2951
David S. Miller51c739d2007-10-30 21:29:29 -07002952int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2953{
2954 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2955
Jens Axboec46f2332007-10-31 12:06:37 +01002956 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002957
2958 return nsg;
2959}
David S. Millerb4ac5302009-02-10 02:09:24 -08002960EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002961
David Howells716ea3a2007-04-02 20:19:53 -07002962/**
2963 * skb_cow_data - Check that a socket buffer's data buffers are writable
2964 * @skb: The socket buffer to check.
2965 * @tailbits: Amount of trailing space to be added
2966 * @trailer: Returned pointer to the skb where the @tailbits space begins
2967 *
2968 * Make sure that the data buffers attached to a socket buffer are
2969 * writable. If they are not, private copies are made of the data buffers
2970 * and the socket buffer is set to use these instead.
2971 *
2972 * If @tailbits is given, make sure that there is space to write @tailbits
2973 * bytes of data beyond current end of socket buffer. @trailer will be
2974 * set to point to the skb in which this space begins.
2975 *
2976 * The number of scatterlist elements required to completely map the
2977 * COW'd and extended socket buffer will be returned.
2978 */
2979int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2980{
2981 int copyflag;
2982 int elt;
2983 struct sk_buff *skb1, **skb_p;
2984
2985 /* If skb is cloned or its head is paged, reallocate
2986 * head pulling out all the pages (pages are considered not writable
2987 * at the moment even if they are anonymous).
2988 */
2989 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2990 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2991 return -ENOMEM;
2992
2993 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07002994 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002995 /* A little of trouble, not enough of space for trailer.
2996 * This should not happen, when stack is tuned to generate
2997 * good frames. OK, on miss we reallocate and reserve even more
2998 * space, 128 bytes is fair. */
2999
3000 if (skb_tailroom(skb) < tailbits &&
3001 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
3002 return -ENOMEM;
3003
3004 /* Voila! */
3005 *trailer = skb;
3006 return 1;
3007 }
3008
3009 /* Misery. We are in troubles, going to mincer fragments... */
3010
3011 elt = 1;
3012 skb_p = &skb_shinfo(skb)->frag_list;
3013 copyflag = 0;
3014
3015 while ((skb1 = *skb_p) != NULL) {
3016 int ntail = 0;
3017
3018 /* The fragment is partially pulled by someone,
3019 * this can happen on input. Copy it and everything
3020 * after it. */
3021
3022 if (skb_shared(skb1))
3023 copyflag = 1;
3024
3025 /* If the skb is the last, worry about trailer. */
3026
3027 if (skb1->next == NULL && tailbits) {
3028 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003029 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07003030 skb_tailroom(skb1) < tailbits)
3031 ntail = tailbits + 128;
3032 }
3033
3034 if (copyflag ||
3035 skb_cloned(skb1) ||
3036 ntail ||
3037 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07003038 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07003039 struct sk_buff *skb2;
3040
3041 /* Fuck, we are miserable poor guys... */
3042 if (ntail == 0)
3043 skb2 = skb_copy(skb1, GFP_ATOMIC);
3044 else
3045 skb2 = skb_copy_expand(skb1,
3046 skb_headroom(skb1),
3047 ntail,
3048 GFP_ATOMIC);
3049 if (unlikely(skb2 == NULL))
3050 return -ENOMEM;
3051
3052 if (skb1->sk)
3053 skb_set_owner_w(skb2, skb1->sk);
3054
3055 /* Looking around. Are we still alive?
3056 * OK, link new skb, drop old one */
3057
3058 skb2->next = skb1->next;
3059 *skb_p = skb2;
3060 kfree_skb(skb1);
3061 skb1 = skb2;
3062 }
3063 elt++;
3064 *trailer = skb1;
3065 skb_p = &skb1->next;
3066 }
3067
3068 return elt;
3069}
David S. Millerb4ac5302009-02-10 02:09:24 -08003070EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07003071
Eric Dumazetb1faf562010-05-31 23:44:05 -07003072static void sock_rmem_free(struct sk_buff *skb)
3073{
3074 struct sock *sk = skb->sk;
3075
3076 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
3077}
3078
3079/*
3080 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
3081 */
3082int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
3083{
3084 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
3085 (unsigned)sk->sk_rcvbuf)
3086 return -ENOMEM;
3087
3088 skb_orphan(skb);
3089 skb->sk = sk;
3090 skb->destructor = sock_rmem_free;
3091 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
3092
Eric Dumazetabb57ea2011-05-18 02:21:31 -04003093 /* before exiting rcu section, make sure dst is refcounted */
3094 skb_dst_force(skb);
3095
Eric Dumazetb1faf562010-05-31 23:44:05 -07003096 skb_queue_tail(&sk->sk_error_queue, skb);
3097 if (!sock_flag(sk, SOCK_DEAD))
3098 sk->sk_data_ready(sk, skb->len);
3099 return 0;
3100}
3101EXPORT_SYMBOL(sock_queue_err_skb);
3102
Patrick Ohlyac45f602009-02-12 05:03:37 +00003103void skb_tstamp_tx(struct sk_buff *orig_skb,
3104 struct skb_shared_hwtstamps *hwtstamps)
3105{
3106 struct sock *sk = orig_skb->sk;
3107 struct sock_exterr_skb *serr;
3108 struct sk_buff *skb;
3109 int err;
3110
3111 if (!sk)
3112 return;
3113
3114 skb = skb_clone(orig_skb, GFP_ATOMIC);
3115 if (!skb)
3116 return;
3117
3118 if (hwtstamps) {
3119 *skb_hwtstamps(skb) =
3120 *hwtstamps;
3121 } else {
3122 /*
3123 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003124 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003125 * store software time stamp
3126 */
3127 skb->tstamp = ktime_get_real();
3128 }
3129
3130 serr = SKB_EXT_ERR(skb);
3131 memset(serr, 0, sizeof(*serr));
3132 serr->ee.ee_errno = ENOMSG;
3133 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003134
Patrick Ohlyac45f602009-02-12 05:03:37 +00003135 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003136
Patrick Ohlyac45f602009-02-12 05:03:37 +00003137 if (err)
3138 kfree_skb(skb);
3139}
3140EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3141
3142
Rusty Russellf35d9d82008-02-04 23:49:54 -05003143/**
3144 * skb_partial_csum_set - set up and verify partial csum values for packet
3145 * @skb: the skb to set
3146 * @start: the number of bytes after skb->data to start checksumming.
3147 * @off: the offset from start to place the checksum.
3148 *
3149 * For untrusted partially-checksummed packets, we need to make sure the values
3150 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3151 *
3152 * This function checks and sets those values and skb->ip_summed: if this
3153 * returns false you should drop the packet.
3154 */
3155bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3156{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003157 if (unlikely(start > skb_headlen(skb)) ||
3158 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003159 if (net_ratelimit())
3160 printk(KERN_WARNING
3161 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003162 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003163 return false;
3164 }
3165 skb->ip_summed = CHECKSUM_PARTIAL;
3166 skb->csum_start = skb_headroom(skb) + start;
3167 skb->csum_offset = off;
3168 return true;
3169}
David S. Millerb4ac5302009-02-10 02:09:24 -08003170EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003171
Ben Hutchings4497b072008-06-19 16:22:28 -07003172void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3173{
3174 if (net_ratelimit())
3175 pr_warning("%s: received packets cannot be forwarded"
3176 " while LRO is enabled\n", skb->dev->name);
3177}
Ben Hutchings4497b072008-06-19 16:22:28 -07003178EXPORT_SYMBOL(__skb_warn_lro_forwarding);