blob: 231dff0dde2e3d59780196e1daa356e491a518e0 [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 Torvalds1da177e2005-04-16 15:20:36 -070060
61#include <net/protocol.h>
62#include <net/dst.h>
63#include <net/sock.h>
64#include <net/checksum.h>
65#include <net/xfrm.h>
66
67#include <asm/uaccess.h>
68#include <asm/system.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040069#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Al Viroa1f8e7f2006-10-19 16:08:53 -040071#include "kmap_skb.h"
72
Christoph Lametere18b8902006-12-06 20:33:20 -080073static struct kmem_cache *skbuff_head_cache __read_mostly;
74static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Jens Axboe9c55e012007-11-06 23:30:13 -080076static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
77 struct pipe_buffer *buf)
78{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080079 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080080}
81
82static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
83 struct pipe_buffer *buf)
84{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080085 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080086}
87
88static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
89 struct pipe_buffer *buf)
90{
91 return 1;
92}
93
94
95/* Pipe buffer operations for a socket. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -080096static const struct pipe_buf_operations sock_pipe_buf_ops = {
Jens Axboe9c55e012007-11-06 23:30:13 -080097 .can_merge = 0,
98 .map = generic_pipe_buf_map,
99 .unmap = generic_pipe_buf_unmap,
100 .confirm = generic_pipe_buf_confirm,
101 .release = sock_pipe_buf_release,
102 .steal = sock_pipe_buf_steal,
103 .get = sock_pipe_buf_get,
104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * Keep out-of-line to prevent kernel bloat.
108 * __builtin_return_address is not used because it is not always
109 * reliable.
110 */
111
112/**
113 * skb_over_panic - private function
114 * @skb: buffer
115 * @sz: size
116 * @here: address
117 *
118 * Out of line support code for skb_put(). Not user callable.
119 */
Rami Rosenccb7c772010-04-20 22:39:53 -0700120static void skb_over_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Patrick McHardy26095452005-04-21 16:43:02 -0700122 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700123 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700124 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700125 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700126 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 BUG();
128}
129
130/**
131 * skb_under_panic - private function
132 * @skb: buffer
133 * @sz: size
134 * @here: address
135 *
136 * Out of line support code for skb_push(). Not user callable.
137 */
138
Rami Rosenccb7c772010-04-20 22:39:53 -0700139static void skb_under_panic(struct sk_buff *skb, int sz, void *here)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Patrick McHardy26095452005-04-21 16:43:02 -0700141 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700142 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700143 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700144 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700145 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 BUG();
147}
148
149/* Allocate a new skbuff. We do this ourselves so we can fill in a few
150 * 'private' fields and also do memory statistics to find all the
151 * [BEEP] leaks.
152 *
153 */
154
155/**
David S. Millerd179cd12005-08-17 14:57:30 -0700156 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * @size: size to allocate
158 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700159 * @fclone: allocate from fclone cache instead of head cache
160 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800161 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 *
163 * Allocate a new &sk_buff. The returned buffer has no headroom and a
164 * tail room of size bytes. The object has a reference count of one.
165 * The return is the buffer. On a failure the return is %NULL.
166 *
167 * Buffers may only be allocated from interrupts using a @gfp_mask of
168 * %GFP_ATOMIC.
169 */
Al Virodd0fc662005-10-07 07:46:04 +0100170struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800171 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Christoph Lametere18b8902006-12-06 20:33:20 -0800173 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800174 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 struct sk_buff *skb;
176 u8 *data;
177
Herbert Xu8798b3f2006-01-23 16:32:45 -0800178 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800181 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (!skb)
183 goto out;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700184 prefetchw(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800187 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
188 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!data)
190 goto nodata;
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700191 prefetchw(data + size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300193 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700194 * Only clear those fields we need to clear, not those that we will
195 * actually initialise below. Hence, don't put any more fields after
196 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300197 */
198 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 skb->truesize = size + sizeof(struct sk_buff);
200 atomic_set(&skb->users, 1);
201 skb->head = data;
202 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700203 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700204 skb->end = skb->tail + size;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200205 kmemcheck_annotate_bitfield(skb, flags1);
206 kmemcheck_annotate_bitfield(skb, flags2);
Stephen Hemminger19633e12009-06-17 05:23:27 +0000207#ifdef NET_SKBUFF_DATA_USES_OFFSET
208 skb->mac_header = ~0U;
209#endif
210
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800211 /* make sure we initialize shinfo sequentially */
212 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700213 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800214 atomic_set(&shinfo->dataref, 1);
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{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700252 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700253 struct sk_buff *skb;
254
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900255 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700256 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700257 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700258 skb->dev = dev;
259 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700260 return skb;
261}
David S. Millerb4ac5302009-02-10 02:09:24 -0800262EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Peter Zijlstra654bed12008-10-07 14:22:33 -0700264struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
265{
266 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
267 struct page *page;
268
269 page = alloc_pages_node(node, gfp_mask, 0);
270 return page;
271}
272EXPORT_SYMBOL(__netdev_alloc_page);
273
274void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
275 int size)
276{
277 skb_fill_page_desc(skb, i, page, off, size);
278 skb->len += size;
279 skb->data_len += size;
280 skb->truesize += size;
281}
282EXPORT_SYMBOL(skb_add_rx_frag);
283
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700284/**
285 * dev_alloc_skb - allocate an skbuff for receiving
286 * @length: length to allocate
287 *
288 * Allocate a new &sk_buff and assign it a usage count of one. The
289 * buffer has unspecified headroom built in. Users should allocate
290 * the headroom they think they need without accounting for the
291 * built in space. The built in space is used for optimisations.
292 *
293 * %NULL is returned if there is no free memory. Although this function
294 * allocates memory it can be called from an interrupt.
295 */
296struct sk_buff *dev_alloc_skb(unsigned int length)
297{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700298 /*
299 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700300 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700301 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700302 return __dev_alloc_skb(length, GFP_ATOMIC);
303}
304EXPORT_SYMBOL(dev_alloc_skb);
305
Herbert Xu27b437c2006-07-13 19:26:39 -0700306static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Herbert Xu27b437c2006-07-13 19:26:39 -0700308 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Herbert Xu27b437c2006-07-13 19:26:39 -0700310 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 do {
313 struct sk_buff *this = list;
314 list = list->next;
315 kfree_skb(this);
316 } while (list);
317}
318
Herbert Xu27b437c2006-07-13 19:26:39 -0700319static inline void skb_drop_fraglist(struct sk_buff *skb)
320{
321 skb_drop_list(&skb_shinfo(skb)->frag_list);
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static void skb_clone_fraglist(struct sk_buff *skb)
325{
326 struct sk_buff *list;
327
David S. Millerfbb398a2009-06-09 00:18:59 -0700328 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 skb_get(list);
330}
331
Adrian Bunk5bba1712006-06-29 13:02:35 -0700332static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 if (!skb->cloned ||
335 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
336 &skb_shinfo(skb)->dataref)) {
337 if (skb_shinfo(skb)->nr_frags) {
338 int i;
339 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
340 put_page(skb_shinfo(skb)->frags[i].page);
341 }
342
David S. Miller21dc3302010-08-23 00:13:46 -0700343 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 skb_drop_fraglist(skb);
345
346 kfree(skb->head);
347 }
348}
349
350/*
351 * Free an skbuff by memory without cleaning the state.
352 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800353static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
David S. Millerd179cd12005-08-17 14:57:30 -0700355 struct sk_buff *other;
356 atomic_t *fclone_ref;
357
David S. Millerd179cd12005-08-17 14:57:30 -0700358 switch (skb->fclone) {
359 case SKB_FCLONE_UNAVAILABLE:
360 kmem_cache_free(skbuff_head_cache, skb);
361 break;
362
363 case SKB_FCLONE_ORIG:
364 fclone_ref = (atomic_t *) (skb + 2);
365 if (atomic_dec_and_test(fclone_ref))
366 kmem_cache_free(skbuff_fclone_cache, skb);
367 break;
368
369 case SKB_FCLONE_CLONE:
370 fclone_ref = (atomic_t *) (skb + 1);
371 other = skb - 1;
372
373 /* The clone portion is available for
374 * fast-cloning again.
375 */
376 skb->fclone = SKB_FCLONE_UNAVAILABLE;
377
378 if (atomic_dec_and_test(fclone_ref))
379 kmem_cache_free(skbuff_fclone_cache, other);
380 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700384static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Eric Dumazetadf30902009-06-02 05:19:30 +0000386 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#ifdef CONFIG_XFRM
388 secpath_put(skb->sp);
389#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700390 if (skb->destructor) {
391 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 skb->destructor(skb);
393 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800394#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700395 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800396 nf_conntrack_put_reasm(skb->nfct_reasm);
397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#ifdef CONFIG_BRIDGE_NETFILTER
399 nf_bridge_put(skb->nf_bridge);
400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/* XXX: IS this still necessary? - JHS */
402#ifdef CONFIG_NET_SCHED
403 skb->tc_index = 0;
404#ifdef CONFIG_NET_CLS_ACT
405 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#endif
407#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700408}
409
410/* Free everything but the sk_buff shell. */
411static void skb_release_all(struct sk_buff *skb)
412{
413 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800414 skb_release_data(skb);
415}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Herbert Xu2d4baff2007-11-26 23:11:19 +0800417/**
418 * __kfree_skb - private function
419 * @skb: buffer
420 *
421 * Free an sk_buff. Release anything attached to the buffer.
422 * Clean the state. This is an internal helper function. Users should
423 * always call kfree_skb
424 */
425
426void __kfree_skb(struct sk_buff *skb)
427{
428 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 kfree_skbmem(skb);
430}
David S. Millerb4ac5302009-02-10 02:09:24 -0800431EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800434 * kfree_skb - free an sk_buff
435 * @skb: buffer to free
436 *
437 * Drop a reference to the buffer and free it if the usage count has
438 * hit zero.
439 */
440void kfree_skb(struct sk_buff *skb)
441{
442 if (unlikely(!skb))
443 return;
444 if (likely(atomic_read(&skb->users) == 1))
445 smp_rmb();
446 else if (likely(!atomic_dec_and_test(&skb->users)))
447 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000448 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800449 __kfree_skb(skb);
450}
David S. Millerb4ac5302009-02-10 02:09:24 -0800451EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800452
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700453/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000454 * consume_skb - free an skbuff
455 * @skb: buffer to free
456 *
457 * Drop a ref to the buffer and free it if the usage count has hit zero
458 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
459 * is being dropped after a failure and notes that
460 */
461void consume_skb(struct sk_buff *skb)
462{
463 if (unlikely(!skb))
464 return;
465 if (likely(atomic_read(&skb->users) == 1))
466 smp_rmb();
467 else if (likely(!atomic_dec_and_test(&skb->users)))
468 return;
469 __kfree_skb(skb);
470}
471EXPORT_SYMBOL(consume_skb);
472
473/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700474 * skb_recycle_check - check if skb can be reused for receive
475 * @skb: buffer
476 * @skb_size: minimum receive buffer size
477 *
478 * Checks that the skb passed in is not shared or cloned, and
479 * that it is linear and its head portion at least as large as
480 * skb_size so that it can be recycled as a receive buffer.
481 * If these conditions are met, this function does any necessary
482 * reference count dropping and cleans up the skbuff as if it
483 * just came from __alloc_skb().
484 */
Changli Gao5b0daa32010-05-29 00:12:13 -0700485bool skb_recycle_check(struct sk_buff *skb, int skb_size)
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700486{
487 struct skb_shared_info *shinfo;
488
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000489 if (irqs_disabled())
Changli Gao5b0daa32010-05-29 00:12:13 -0700490 return false;
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000491
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700492 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
Changli Gao5b0daa32010-05-29 00:12:13 -0700493 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700494
495 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
496 if (skb_end_pointer(skb) - skb->head < skb_size)
Changli Gao5b0daa32010-05-29 00:12:13 -0700497 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700498
499 if (skb_shared(skb) || skb_cloned(skb))
Changli Gao5b0daa32010-05-29 00:12:13 -0700500 return false;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700501
502 skb_release_head_state(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700503
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700504 shinfo = skb_shinfo(skb);
Eric Dumazetec7d2f22010-05-05 01:07:37 -0700505 memset(shinfo, 0, offsetof(struct skb_shared_info, dataref));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700506 atomic_set(&shinfo->dataref, 1);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700507
508 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700509 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800510 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700511
Changli Gao5b0daa32010-05-29 00:12:13 -0700512 return true;
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700513}
514EXPORT_SYMBOL(skb_recycle_check);
515
Herbert Xudec18812007-10-14 00:37:30 -0700516static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
517{
518 new->tstamp = old->tstamp;
519 new->dev = old->dev;
520 new->transport_header = old->transport_header;
521 new->network_header = old->network_header;
522 new->mac_header = old->mac_header;
Eric Dumazet7fee2262010-05-11 23:19:48 +0000523 skb_dst_copy(new, old);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000524 new->rxhash = old->rxhash;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700525#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700526 new->sp = secpath_get(old->sp);
527#endif
528 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000529 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700530 new->local_df = old->local_df;
531 new->pkt_type = old->pkt_type;
532 new->ip_summed = old->ip_summed;
533 skb_copy_queue_mapping(new, old);
534 new->priority = old->priority;
John Fastabende8970822010-06-13 10:36:30 +0000535 new->deliver_no_wcard = old->deliver_no_wcard;
Herbert Xudec18812007-10-14 00:37:30 -0700536#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
537 new->ipvs_property = old->ipvs_property;
538#endif
539 new->protocol = old->protocol;
540 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800541 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700542 __nf_copy(new, old);
543#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
544 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
545 new->nf_trace = old->nf_trace;
546#endif
547#ifdef CONFIG_NET_SCHED
548 new->tc_index = old->tc_index;
549#ifdef CONFIG_NET_CLS_ACT
550 new->tc_verd = old->tc_verd;
551#endif
552#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700553 new->vlan_tci = old->vlan_tci;
554
Herbert Xudec18812007-10-14 00:37:30 -0700555 skb_copy_secmark(new, old);
556}
557
Herbert Xu82c49a32009-05-22 22:11:37 +0000558/*
559 * You should not add any new code to this function. Add it to
560 * __copy_skb_header above instead.
561 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700562static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#define C(x) n->x = skb->x
565
566 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700568 __copy_skb_header(n, skb);
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 C(len);
571 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700572 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700573 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800574 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 C(tail);
578 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800579 C(head);
580 C(data);
581 C(truesize);
582 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 atomic_inc(&(skb_shinfo(skb)->dataref));
585 skb->cloned = 1;
586
587 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700588#undef C
589}
590
591/**
592 * skb_morph - morph one skb into another
593 * @dst: the skb to receive the contents
594 * @src: the skb to supply the contents
595 *
596 * This is identical to skb_clone except that the target skb is
597 * supplied by the user.
598 *
599 * The target skb is returned upon exit.
600 */
601struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
602{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800603 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700604 return __skb_clone(dst, src);
605}
606EXPORT_SYMBOL_GPL(skb_morph);
607
608/**
609 * skb_clone - duplicate an sk_buff
610 * @skb: buffer to clone
611 * @gfp_mask: allocation priority
612 *
613 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
614 * copies share the same packet data but not structure. The new
615 * buffer has a reference count of 1. If the allocation fails the
616 * function returns %NULL otherwise the new buffer is returned.
617 *
618 * If this function is called from an interrupt gfp_mask() must be
619 * %GFP_ATOMIC.
620 */
621
622struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
623{
624 struct sk_buff *n;
625
626 n = skb + 1;
627 if (skb->fclone == SKB_FCLONE_ORIG &&
628 n->fclone == SKB_FCLONE_UNAVAILABLE) {
629 atomic_t *fclone_ref = (atomic_t *) (n + 1);
630 n->fclone = SKB_FCLONE_CLONE;
631 atomic_inc(fclone_ref);
632 } else {
633 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
634 if (!n)
635 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200636
637 kmemcheck_annotate_bitfield(n, flags1);
638 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700639 n->fclone = SKB_FCLONE_UNAVAILABLE;
640 }
641
642 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
David S. Millerb4ac5302009-02-10 02:09:24 -0800644EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
647{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700648#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
650 * Shift between the two data areas in bytes
651 */
652 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700653#endif
Herbert Xudec18812007-10-14 00:37:30 -0700654
655 __copy_skb_header(new, old);
656
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700657#ifndef NET_SKBUFF_DATA_USES_OFFSET
658 /* {transport,network,mac}_header are relative to skb->head */
659 new->transport_header += offset;
660 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000661 if (skb_mac_header_was_set(new))
662 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700663#endif
Herbert Xu79671682006-06-22 02:40:14 -0700664 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
665 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
666 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/**
670 * skb_copy - create private copy of an sk_buff
671 * @skb: buffer to copy
672 * @gfp_mask: allocation priority
673 *
674 * Make a copy of both an &sk_buff and its data. This is used when the
675 * caller wishes to modify the data and needs a private copy of the
676 * data to alter. Returns %NULL on failure or the pointer to the buffer
677 * on success. The returned buffer has a reference count of 1.
678 *
679 * As by-product this function converts non-linear &sk_buff to linear
680 * one, so that &sk_buff becomes completely private and caller is allowed
681 * to modify all the data of returned buffer. This means that this
682 * function is not recommended for use in circumstances when only
683 * header is going to be modified. Use pskb_copy() instead.
684 */
685
Al Virodd0fc662005-10-07 07:46:04 +0100686struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000688 int headerlen = skb_headroom(skb);
689 unsigned int size = (skb_end_pointer(skb) - skb->head) + skb->data_len;
690 struct sk_buff *n = alloc_skb(size, gfp_mask);
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (!n)
693 return NULL;
694
695 /* Set the data pointer */
696 skb_reserve(n, headerlen);
697 /* Set the tail pointer and length */
698 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
701 BUG();
702
703 copy_skb_header(n, skb);
704 return n;
705}
David S. Millerb4ac5302009-02-10 02:09:24 -0800706EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708/**
709 * pskb_copy - create copy of an sk_buff with private head.
710 * @skb: buffer to copy
711 * @gfp_mask: allocation priority
712 *
713 * Make a copy of both an &sk_buff and part of its data, located
714 * in header. Fragmented data remain shared. This is used when
715 * the caller wishes to modify only header of &sk_buff and needs
716 * private copy of the header to alter. Returns %NULL on failure
717 * or the pointer to the buffer on success.
718 * The returned buffer has a reference count of 1.
719 */
720
Al Virodd0fc662005-10-07 07:46:04 +0100721struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000723 unsigned int size = skb_end_pointer(skb) - skb->head;
724 struct sk_buff *n = alloc_skb(size, gfp_mask);
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (!n)
727 goto out;
728
729 /* Set the data pointer */
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000730 skb_reserve(n, skb_headroom(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* Set the tail pointer and length */
732 skb_put(n, skb_headlen(skb));
733 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300734 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Herbert Xu25f484a2006-11-07 14:57:15 -0800736 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 n->data_len = skb->data_len;
738 n->len = skb->len;
739
740 if (skb_shinfo(skb)->nr_frags) {
741 int i;
742
743 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
744 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
745 get_page(skb_shinfo(n)->frags[i].page);
746 }
747 skb_shinfo(n)->nr_frags = i;
748 }
749
David S. Miller21dc3302010-08-23 00:13:46 -0700750 if (skb_has_frag_list(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
752 skb_clone_fraglist(n);
753 }
754
755 copy_skb_header(n, skb);
756out:
757 return n;
758}
David S. Millerb4ac5302009-02-10 02:09:24 -0800759EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761/**
762 * pskb_expand_head - reallocate header of &sk_buff
763 * @skb: buffer to reallocate
764 * @nhead: room to add at head
765 * @ntail: room to add at tail
766 * @gfp_mask: allocation priority
767 *
768 * Expands (or creates identical copy, if &nhead and &ntail are zero)
769 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
770 * reference count of 1. Returns zero in the case of success or error,
771 * if expansion failed. In the last case, &sk_buff is not changed.
772 *
773 * All the pointers pointing into skb header may change and must be
774 * reloaded after call to this function.
775 */
776
Victor Fusco86a76ca2005-07-08 14:57:47 -0700777int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100778 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 int i;
781 u8 *data;
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000782 int size = nhead + (skb_end_pointer(skb) - skb->head) + ntail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 long off;
784
Herbert Xu4edd87a2008-10-01 07:09:38 -0700785 BUG_ON(nhead < 0);
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (skb_shared(skb))
788 BUG();
789
790 size = SKB_DATA_ALIGN(size);
791
792 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
793 if (!data)
794 goto nodata;
795
796 /* Copy only real data... and, alas, header. This should be
Eric Dumazet6602ceb2010-09-01 05:25:10 +0000797 * optimized for the cases when header is void.
798 */
799 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head);
800
801 memcpy((struct skb_shared_info *)(data + size),
802 skb_shinfo(skb),
Eric Dumazetfed66382010-07-22 19:09:08 +0000803 offsetof(struct skb_shared_info, frags[skb_shinfo(skb)->nr_frags]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
806 get_page(skb_shinfo(skb)->frags[i].page);
807
David S. Miller21dc3302010-08-23 00:13:46 -0700808 if (skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 skb_clone_fraglist(skb);
810
811 skb_release_data(skb);
812
813 off = (data + nhead) - skb->head;
814
815 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700817#ifdef NET_SKBUFF_DATA_USES_OFFSET
818 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700819 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700820#else
821 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700822#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700823 /* {transport,network,mac}_header and tail are relative to skb->head */
824 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700825 skb->transport_header += off;
826 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000827 if (skb_mac_header_was_set(skb))
828 skb->mac_header += off;
Andrea Shepard00c5a982010-07-22 09:12:35 +0000829 /* Only adjust this if it actually is csum_start rather than csum */
830 if (skb->ip_summed == CHECKSUM_PARTIAL)
831 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700833 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 skb->nohdr = 0;
835 atomic_set(&skb_shinfo(skb)->dataref, 1);
836 return 0;
837
838nodata:
839 return -ENOMEM;
840}
David S. Millerb4ac5302009-02-10 02:09:24 -0800841EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843/* Make private copy of skb with writable head and some headroom */
844
845struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
846{
847 struct sk_buff *skb2;
848 int delta = headroom - skb_headroom(skb);
849
850 if (delta <= 0)
851 skb2 = pskb_copy(skb, GFP_ATOMIC);
852 else {
853 skb2 = skb_clone(skb, GFP_ATOMIC);
854 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
855 GFP_ATOMIC)) {
856 kfree_skb(skb2);
857 skb2 = NULL;
858 }
859 }
860 return skb2;
861}
David S. Millerb4ac5302009-02-10 02:09:24 -0800862EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864/**
865 * skb_copy_expand - copy and expand sk_buff
866 * @skb: buffer to copy
867 * @newheadroom: new free bytes at head
868 * @newtailroom: new free bytes at tail
869 * @gfp_mask: allocation priority
870 *
871 * Make a copy of both an &sk_buff and its data and while doing so
872 * allocate additional space.
873 *
874 * This is used when the caller wishes to modify the data and needs a
875 * private copy of the data to alter as well as more space for new fields.
876 * Returns %NULL on failure or the pointer to the buffer
877 * on success. The returned buffer has a reference count of 1.
878 *
879 * You must pass %GFP_ATOMIC as the allocation priority if this function
880 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
882struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700883 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100884 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 /*
887 * Allocate the copy buffer
888 */
889 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
890 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700891 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700893 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 if (!n)
896 return NULL;
897
898 skb_reserve(n, newheadroom);
899
900 /* Set the tail pointer and length */
901 skb_put(n, skb->len);
902
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700903 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 head_copy_off = 0;
905 if (newheadroom <= head_copy_len)
906 head_copy_len = newheadroom;
907 else
908 head_copy_off = newheadroom - head_copy_len;
909
910 /* Copy the linear header and data. */
911 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
912 skb->len + head_copy_len))
913 BUG();
914
915 copy_skb_header(n, skb);
916
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700917 off = newheadroom - oldheadroom;
David S. Millerbe2b6e62010-07-22 13:27:09 -0700918 if (n->ip_summed == CHECKSUM_PARTIAL)
919 n->csum_start += off;
Herbert Xu52886052007-09-16 16:32:11 -0700920#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700921 n->transport_header += off;
922 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000923 if (skb_mac_header_was_set(skb))
924 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700925#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return n;
928}
David S. Millerb4ac5302009-02-10 02:09:24 -0800929EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931/**
932 * skb_pad - zero pad the tail of an skb
933 * @skb: buffer to pad
934 * @pad: space to pad
935 *
936 * Ensure that a buffer is followed by a padding area that is zero
937 * filled. Used by network drivers which may DMA or transfer data
938 * beyond the buffer end onto the wire.
939 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700940 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900942
Herbert Xu5b057c62006-06-23 02:06:41 -0700943int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Herbert Xu5b057c62006-06-23 02:06:41 -0700945 int err;
946 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700949 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700951 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700953
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700954 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700955 if (likely(skb_cloned(skb) || ntail > 0)) {
956 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
957 if (unlikely(err))
958 goto free_skb;
959 }
960
961 /* FIXME: The use of this function with non-linear skb's really needs
962 * to be audited.
963 */
964 err = skb_linearize(skb);
965 if (unlikely(err))
966 goto free_skb;
967
968 memset(skb->data + skb->len, 0, pad);
969 return 0;
970
971free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700973 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900974}
David S. Millerb4ac5302009-02-10 02:09:24 -0800975EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900976
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700977/**
978 * skb_put - add data to a buffer
979 * @skb: buffer to use
980 * @len: amount of data to add
981 *
982 * This function extends the used data area of the buffer. If this would
983 * exceed the total buffer size the kernel will panic. A pointer to the
984 * first byte of the extra data is returned.
985 */
986unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
987{
988 unsigned char *tmp = skb_tail_pointer(skb);
989 SKB_LINEAR_ASSERT(skb);
990 skb->tail += len;
991 skb->len += len;
992 if (unlikely(skb->tail > skb->end))
993 skb_over_panic(skb, len, __builtin_return_address(0));
994 return tmp;
995}
996EXPORT_SYMBOL(skb_put);
997
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -0700998/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -0700999 * skb_push - add data to the start of a buffer
1000 * @skb: buffer to use
1001 * @len: amount of data to add
1002 *
1003 * This function extends the used data area of the buffer at the buffer
1004 * start. If this would exceed the total buffer headroom the kernel will
1005 * panic. A pointer to the first byte of the extra data is returned.
1006 */
1007unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1008{
1009 skb->data -= len;
1010 skb->len += len;
1011 if (unlikely(skb->data<skb->head))
1012 skb_under_panic(skb, len, __builtin_return_address(0));
1013 return skb->data;
1014}
1015EXPORT_SYMBOL(skb_push);
1016
1017/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001018 * skb_pull - remove data from the start of a buffer
1019 * @skb: buffer to use
1020 * @len: amount of data to remove
1021 *
1022 * This function removes data from the start of a buffer, returning
1023 * the memory to the headroom. A pointer to the next data in the buffer
1024 * is returned. Once the data has been pulled future pushes will overwrite
1025 * the old data.
1026 */
1027unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1028{
David S. Miller47d29642010-05-02 02:21:44 -07001029 return skb_pull_inline(skb, len);
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001030}
1031EXPORT_SYMBOL(skb_pull);
1032
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001033/**
1034 * skb_trim - remove end from a buffer
1035 * @skb: buffer to alter
1036 * @len: new length
1037 *
1038 * Cut the length of a buffer down by removing data from the tail. If
1039 * the buffer is already under the length specified it is not modified.
1040 * The skb must be linear.
1041 */
1042void skb_trim(struct sk_buff *skb, unsigned int len)
1043{
1044 if (skb->len > len)
1045 __skb_trim(skb, len);
1046}
1047EXPORT_SYMBOL(skb_trim);
1048
Herbert Xu3cc0e872006-06-09 16:13:38 -07001049/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 */
1051
Herbert Xu3cc0e872006-06-09 16:13:38 -07001052int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Herbert Xu27b437c2006-07-13 19:26:39 -07001054 struct sk_buff **fragp;
1055 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 int offset = skb_headlen(skb);
1057 int nfrags = skb_shinfo(skb)->nr_frags;
1058 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001059 int err;
1060
1061 if (skb_cloned(skb) &&
1062 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1063 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001065 i = 0;
1066 if (offset >= len)
1067 goto drop_pages;
1068
1069 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001071
1072 if (end < len) {
1073 offset = end;
1074 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001076
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001077 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001078
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001079drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001080 skb_shinfo(skb)->nr_frags = i;
1081
1082 for (; i < nfrags; i++)
1083 put_page(skb_shinfo(skb)->frags[i].page);
1084
David S. Miller21dc3302010-08-23 00:13:46 -07001085 if (skb_has_frag_list(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001086 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001087 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089
Herbert Xu27b437c2006-07-13 19:26:39 -07001090 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1091 fragp = &frag->next) {
1092 int end = offset + frag->len;
1093
1094 if (skb_shared(frag)) {
1095 struct sk_buff *nfrag;
1096
1097 nfrag = skb_clone(frag, GFP_ATOMIC);
1098 if (unlikely(!nfrag))
1099 return -ENOMEM;
1100
1101 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001102 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001103 frag = nfrag;
1104 *fragp = frag;
1105 }
1106
1107 if (end < len) {
1108 offset = end;
1109 continue;
1110 }
1111
1112 if (end > len &&
1113 unlikely((err = pskb_trim(frag, len - offset))))
1114 return err;
1115
1116 if (frag->next)
1117 skb_drop_list(&frag->next);
1118 break;
1119 }
1120
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001121done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001122 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 skb->data_len -= skb->len - len;
1124 skb->len = len;
1125 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001126 skb->len = len;
1127 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001128 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 }
1130
1131 return 0;
1132}
David S. Millerb4ac5302009-02-10 02:09:24 -08001133EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135/**
1136 * __pskb_pull_tail - advance tail of skb header
1137 * @skb: buffer to reallocate
1138 * @delta: number of bytes to advance tail
1139 *
1140 * The function makes a sense only on a fragmented &sk_buff,
1141 * it expands header moving its tail forward and copying necessary
1142 * data from fragmented part.
1143 *
1144 * &sk_buff MUST have reference count of 1.
1145 *
1146 * Returns %NULL (and &sk_buff does not change) if pull failed
1147 * or value of new tail of skb in the case of success.
1148 *
1149 * All the pointers pointing into skb header may change and must be
1150 * reloaded after call to this function.
1151 */
1152
1153/* Moves tail of skb head forward, copying data from fragmented part,
1154 * when it is necessary.
1155 * 1. It may fail due to malloc failure.
1156 * 2. It may change skb pointers.
1157 *
1158 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1159 */
1160unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1161{
1162 /* If skb has not enough free space at tail, get new one
1163 * plus 128 bytes for future expansions. If we have enough
1164 * room at tail, reallocate without expansion only if skb is cloned.
1165 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001166 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 if (eat > 0 || skb_cloned(skb)) {
1169 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1170 GFP_ATOMIC))
1171 return NULL;
1172 }
1173
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001174 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 BUG();
1176
1177 /* Optimization: no fragments, no reasons to preestimate
1178 * size of pulled pages. Superb.
1179 */
David S. Miller21dc3302010-08-23 00:13:46 -07001180 if (!skb_has_frag_list(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 goto pull_pages;
1182
1183 /* Estimate size of pulled pages. */
1184 eat = delta;
1185 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1186 if (skb_shinfo(skb)->frags[i].size >= eat)
1187 goto pull_pages;
1188 eat -= skb_shinfo(skb)->frags[i].size;
1189 }
1190
1191 /* If we need update frag list, we are in troubles.
1192 * Certainly, it possible to add an offset to skb data,
1193 * but taking into account that pulling is expected to
1194 * be very rare operation, it is worth to fight against
1195 * further bloating skb head and crucify ourselves here instead.
1196 * Pure masohism, indeed. 8)8)
1197 */
1198 if (eat) {
1199 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1200 struct sk_buff *clone = NULL;
1201 struct sk_buff *insp = NULL;
1202
1203 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001204 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 if (list->len <= eat) {
1207 /* Eaten as whole. */
1208 eat -= list->len;
1209 list = list->next;
1210 insp = list;
1211 } else {
1212 /* Eaten partially. */
1213
1214 if (skb_shared(list)) {
1215 /* Sucks! We need to fork list. :-( */
1216 clone = skb_clone(list, GFP_ATOMIC);
1217 if (!clone)
1218 return NULL;
1219 insp = list->next;
1220 list = clone;
1221 } else {
1222 /* This may be pulled without
1223 * problems. */
1224 insp = list;
1225 }
1226 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001227 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return NULL;
1229 }
1230 break;
1231 }
1232 } while (eat);
1233
1234 /* Free pulled out fragments. */
1235 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1236 skb_shinfo(skb)->frag_list = list->next;
1237 kfree_skb(list);
1238 }
1239 /* And insert new clone at head. */
1240 if (clone) {
1241 clone->next = list;
1242 skb_shinfo(skb)->frag_list = clone;
1243 }
1244 }
1245 /* Success! Now we may commit changes to skb data. */
1246
1247pull_pages:
1248 eat = delta;
1249 k = 0;
1250 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1251 if (skb_shinfo(skb)->frags[i].size <= eat) {
1252 put_page(skb_shinfo(skb)->frags[i].page);
1253 eat -= skb_shinfo(skb)->frags[i].size;
1254 } else {
1255 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1256 if (eat) {
1257 skb_shinfo(skb)->frags[k].page_offset += eat;
1258 skb_shinfo(skb)->frags[k].size -= eat;
1259 eat = 0;
1260 }
1261 k++;
1262 }
1263 }
1264 skb_shinfo(skb)->nr_frags = k;
1265
1266 skb->tail += delta;
1267 skb->data_len -= delta;
1268
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001269 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
David S. Millerb4ac5302009-02-10 02:09:24 -08001271EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273/* Copy some data bits from skb to kernel buffer. */
1274
1275int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1276{
David S. Miller1a028e52007-04-27 15:21:23 -07001277 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001278 struct sk_buff *frag_iter;
1279 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 if (offset > (int)skb->len - len)
1282 goto fault;
1283
1284 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001285 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (copy > len)
1287 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001288 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if ((len -= copy) == 0)
1290 return 0;
1291 offset += copy;
1292 to += copy;
1293 }
1294
1295 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001296 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001298 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001299
1300 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if ((copy = end - offset) > 0) {
1302 u8 *vaddr;
1303
1304 if (copy > len)
1305 copy = len;
1306
1307 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1308 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001309 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1310 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 kunmap_skb_frag(vaddr);
1312
1313 if ((len -= copy) == 0)
1314 return 0;
1315 offset += copy;
1316 to += copy;
1317 }
David S. Miller1a028e52007-04-27 15:21:23 -07001318 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 }
1320
David S. Millerfbb398a2009-06-09 00:18:59 -07001321 skb_walk_frags(skb, frag_iter) {
1322 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
David S. Millerfbb398a2009-06-09 00:18:59 -07001324 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
David S. Millerfbb398a2009-06-09 00:18:59 -07001326 end = start + frag_iter->len;
1327 if ((copy = end - offset) > 0) {
1328 if (copy > len)
1329 copy = len;
1330 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1331 goto fault;
1332 if ((len -= copy) == 0)
1333 return 0;
1334 offset += copy;
1335 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001337 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339 if (!len)
1340 return 0;
1341
1342fault:
1343 return -EFAULT;
1344}
David S. Millerb4ac5302009-02-10 02:09:24 -08001345EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Jens Axboe9c55e012007-11-06 23:30:13 -08001347/*
1348 * Callback from splice_to_pipe(), if we need to release some pages
1349 * at the end of the spd in case we error'ed out in filling the pipe.
1350 */
1351static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1352{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001353 put_page(spd->pages[i]);
1354}
Jens Axboe9c55e012007-11-06 23:30:13 -08001355
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001356static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1357 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001358 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001359{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001360 struct page *p = sk->sk_sndmsg_page;
1361 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001362
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001363 if (!p) {
1364new_page:
1365 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1366 if (!p)
1367 return NULL;
1368
1369 off = sk->sk_sndmsg_off = 0;
1370 /* hold one ref to this page until it's full */
1371 } else {
1372 unsigned int mlen;
1373
1374 off = sk->sk_sndmsg_off;
1375 mlen = PAGE_SIZE - off;
1376 if (mlen < 64 && mlen < *len) {
1377 put_page(p);
1378 goto new_page;
1379 }
1380
1381 *len = min_t(unsigned int, *len, mlen);
1382 }
1383
1384 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1385 sk->sk_sndmsg_off += *len;
1386 *offset = off;
1387 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001388
1389 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001390}
1391
1392/*
1393 * Fill page/offset/length into spd, if it can hold more pages.
1394 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001395static inline int spd_fill_page(struct splice_pipe_desc *spd,
1396 struct pipe_inode_info *pipe, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001397 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001398 struct sk_buff *skb, int linear,
1399 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001400{
Jens Axboe35f3d142010-05-20 10:43:18 +02001401 if (unlikely(spd->nr_pages == pipe->buffers))
Jens Axboe9c55e012007-11-06 23:30:13 -08001402 return 1;
1403
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001404 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001405 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001406 if (!page)
1407 return 1;
1408 } else
1409 get_page(page);
1410
Jens Axboe9c55e012007-11-06 23:30:13 -08001411 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001412 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001413 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001414 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001415
Jens Axboe9c55e012007-11-06 23:30:13 -08001416 return 0;
1417}
1418
Octavian Purdila2870c432008-07-15 00:49:11 -07001419static inline void __segment_seek(struct page **page, unsigned int *poff,
1420 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001421{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001422 unsigned long n;
1423
Octavian Purdila2870c432008-07-15 00:49:11 -07001424 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001425 n = *poff / PAGE_SIZE;
1426 if (n)
1427 *page = nth_page(*page, n);
1428
Octavian Purdila2870c432008-07-15 00:49:11 -07001429 *poff = *poff % PAGE_SIZE;
1430 *plen -= off;
1431}
Jens Axboe9c55e012007-11-06 23:30:13 -08001432
Octavian Purdila2870c432008-07-15 00:49:11 -07001433static inline int __splice_segment(struct page *page, unsigned int poff,
1434 unsigned int plen, unsigned int *off,
1435 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001436 struct splice_pipe_desc *spd, int linear,
Jens Axboe35f3d142010-05-20 10:43:18 +02001437 struct sock *sk,
1438 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001439{
1440 if (!*len)
1441 return 1;
1442
1443 /* skip this segment if already processed */
1444 if (*off >= plen) {
1445 *off -= plen;
1446 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001447 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001448
Octavian Purdila2870c432008-07-15 00:49:11 -07001449 /* ignore any bits we already processed */
1450 if (*off) {
1451 __segment_seek(&page, &poff, &plen, *off);
1452 *off = 0;
1453 }
1454
1455 do {
1456 unsigned int flen = min(*len, plen);
1457
1458 /* the linear region may spread across several pages */
1459 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1460
Jens Axboe35f3d142010-05-20 10:43:18 +02001461 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001462 return 1;
1463
1464 __segment_seek(&page, &poff, &plen, flen);
1465 *len -= flen;
1466
1467 } while (*len && plen);
1468
1469 return 0;
1470}
1471
1472/*
1473 * Map linear and fragment data from the skb to spd. It reports failure if the
1474 * pipe is full or if we already spliced the requested length.
1475 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001476static int __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1477 unsigned int *offset, unsigned int *len,
1478 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001479{
1480 int seg;
1481
Jens Axboe9c55e012007-11-06 23:30:13 -08001482 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001483 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001484 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001485 if (__splice_segment(virt_to_page(skb->data),
1486 (unsigned long) skb->data & (PAGE_SIZE - 1),
1487 skb_headlen(skb),
Jens Axboe35f3d142010-05-20 10:43:18 +02001488 offset, len, skb, spd, 1, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001489 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001490
1491 /*
1492 * then map the fragments
1493 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001494 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1495 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1496
Octavian Purdila2870c432008-07-15 00:49:11 -07001497 if (__splice_segment(f->page, f->page_offset, f->size,
Jens Axboe35f3d142010-05-20 10:43:18 +02001498 offset, len, skb, spd, 0, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001499 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001500 }
1501
Octavian Purdila2870c432008-07-15 00:49:11 -07001502 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001503}
1504
1505/*
1506 * Map data from the skb to a pipe. Should handle both the linear part,
1507 * the fragments, and the frag list. It does NOT handle frag lists within
1508 * the frag list, if such a thing exists. We'd probably need to recurse to
1509 * handle that cleanly.
1510 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001511int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001512 struct pipe_inode_info *pipe, unsigned int tlen,
1513 unsigned int flags)
1514{
Jens Axboe35f3d142010-05-20 10:43:18 +02001515 struct partial_page partial[PIPE_DEF_BUFFERS];
1516 struct page *pages[PIPE_DEF_BUFFERS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001517 struct splice_pipe_desc spd = {
1518 .pages = pages,
1519 .partial = partial,
1520 .flags = flags,
1521 .ops = &sock_pipe_buf_ops,
1522 .spd_release = sock_spd_release,
1523 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001524 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001525 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001526 int ret = 0;
1527
1528 if (splice_grow_spd(pipe, &spd))
1529 return -ENOMEM;
Jens Axboe9c55e012007-11-06 23:30:13 -08001530
1531 /*
1532 * __skb_splice_bits() only fails if the output has no room left,
1533 * so no point in going over the frag_list for the error case.
1534 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001535 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001536 goto done;
1537 else if (!tlen)
1538 goto done;
1539
1540 /*
1541 * now see if we have a frag_list to map
1542 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001543 skb_walk_frags(skb, frag_iter) {
1544 if (!tlen)
1545 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001546 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001547 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001548 }
1549
1550done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001551 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001552 /*
1553 * Drop the socket lock, otherwise we have reverse
1554 * locking dependencies between sk_lock and i_mutex
1555 * here as compared to sendfile(). We enter here
1556 * with the socket lock held, and splice_to_pipe() will
1557 * grab the pipe inode lock. For sendfile() emulation,
1558 * we call into ->sendpage() with the i_mutex lock held
1559 * and networking will grab the socket lock.
1560 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001561 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001562 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001563 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001564 }
1565
Jens Axboe35f3d142010-05-20 10:43:18 +02001566 splice_shrink_spd(pipe, &spd);
1567 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001568}
1569
Herbert Xu357b40a2005-04-19 22:30:14 -07001570/**
1571 * skb_store_bits - store bits from kernel buffer to skb
1572 * @skb: destination buffer
1573 * @offset: offset in destination
1574 * @from: source buffer
1575 * @len: number of bytes to copy
1576 *
1577 * Copy the specified number of bytes from the source buffer to the
1578 * destination skb. This function handles all the messy bits of
1579 * traversing fragment lists and such.
1580 */
1581
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001582int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001583{
David S. Miller1a028e52007-04-27 15:21:23 -07001584 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001585 struct sk_buff *frag_iter;
1586 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001587
1588 if (offset > (int)skb->len - len)
1589 goto fault;
1590
David S. Miller1a028e52007-04-27 15:21:23 -07001591 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001592 if (copy > len)
1593 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001594 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001595 if ((len -= copy) == 0)
1596 return 0;
1597 offset += copy;
1598 from += copy;
1599 }
1600
1601 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1602 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001603 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001604
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001605 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001606
1607 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001608 if ((copy = end - offset) > 0) {
1609 u8 *vaddr;
1610
1611 if (copy > len)
1612 copy = len;
1613
1614 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001615 memcpy(vaddr + frag->page_offset + offset - start,
1616 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001617 kunmap_skb_frag(vaddr);
1618
1619 if ((len -= copy) == 0)
1620 return 0;
1621 offset += copy;
1622 from += copy;
1623 }
David S. Miller1a028e52007-04-27 15:21:23 -07001624 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001625 }
1626
David S. Millerfbb398a2009-06-09 00:18:59 -07001627 skb_walk_frags(skb, frag_iter) {
1628 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001629
David S. Millerfbb398a2009-06-09 00:18:59 -07001630 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001631
David S. Millerfbb398a2009-06-09 00:18:59 -07001632 end = start + frag_iter->len;
1633 if ((copy = end - offset) > 0) {
1634 if (copy > len)
1635 copy = len;
1636 if (skb_store_bits(frag_iter, offset - start,
1637 from, copy))
1638 goto fault;
1639 if ((len -= copy) == 0)
1640 return 0;
1641 offset += copy;
1642 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001643 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001644 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001645 }
1646 if (!len)
1647 return 0;
1648
1649fault:
1650 return -EFAULT;
1651}
Herbert Xu357b40a2005-04-19 22:30:14 -07001652EXPORT_SYMBOL(skb_store_bits);
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654/* Checksum skb data. */
1655
Al Viro2bbbc862006-11-14 21:37:14 -08001656__wsum skb_checksum(const struct sk_buff *skb, int offset,
1657 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
David S. Miller1a028e52007-04-27 15:21:23 -07001659 int start = skb_headlen(skb);
1660 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001661 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 int pos = 0;
1663
1664 /* Checksum header. */
1665 if (copy > 0) {
1666 if (copy > len)
1667 copy = len;
1668 csum = csum_partial(skb->data + offset, copy, csum);
1669 if ((len -= copy) == 0)
1670 return csum;
1671 offset += copy;
1672 pos = copy;
1673 }
1674
1675 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001676 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001678 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001679
1680 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001682 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 u8 *vaddr;
1684 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1685
1686 if (copy > len)
1687 copy = len;
1688 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001689 csum2 = csum_partial(vaddr + frag->page_offset +
1690 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 kunmap_skb_frag(vaddr);
1692 csum = csum_block_add(csum, csum2, pos);
1693 if (!(len -= copy))
1694 return csum;
1695 offset += copy;
1696 pos += copy;
1697 }
David S. Miller1a028e52007-04-27 15:21:23 -07001698 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
1700
David S. Millerfbb398a2009-06-09 00:18:59 -07001701 skb_walk_frags(skb, frag_iter) {
1702 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
David S. Millerfbb398a2009-06-09 00:18:59 -07001704 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
David S. Millerfbb398a2009-06-09 00:18:59 -07001706 end = start + frag_iter->len;
1707 if ((copy = end - offset) > 0) {
1708 __wsum csum2;
1709 if (copy > len)
1710 copy = len;
1711 csum2 = skb_checksum(frag_iter, offset - start,
1712 copy, 0);
1713 csum = csum_block_add(csum, csum2, pos);
1714 if ((len -= copy) == 0)
1715 return csum;
1716 offset += copy;
1717 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001719 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001721 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 return csum;
1724}
David S. Millerb4ac5302009-02-10 02:09:24 -08001725EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727/* Both of above in one bottle. */
1728
Al Viro81d77662006-11-14 21:37:33 -08001729__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1730 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
David S. Miller1a028e52007-04-27 15:21:23 -07001732 int start = skb_headlen(skb);
1733 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001734 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 int pos = 0;
1736
1737 /* Copy header. */
1738 if (copy > 0) {
1739 if (copy > len)
1740 copy = len;
1741 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1742 copy, csum);
1743 if ((len -= copy) == 0)
1744 return csum;
1745 offset += copy;
1746 to += copy;
1747 pos = copy;
1748 }
1749
1750 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001751 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001753 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001754
1755 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001757 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 u8 *vaddr;
1759 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1760
1761 if (copy > len)
1762 copy = len;
1763 vaddr = kmap_skb_frag(frag);
1764 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001765 frag->page_offset +
1766 offset - start, to,
1767 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 kunmap_skb_frag(vaddr);
1769 csum = csum_block_add(csum, csum2, pos);
1770 if (!(len -= copy))
1771 return csum;
1772 offset += copy;
1773 to += copy;
1774 pos += copy;
1775 }
David S. Miller1a028e52007-04-27 15:21:23 -07001776 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778
David S. Millerfbb398a2009-06-09 00:18:59 -07001779 skb_walk_frags(skb, frag_iter) {
1780 __wsum csum2;
1781 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
David S. Millerfbb398a2009-06-09 00:18:59 -07001783 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
David S. Millerfbb398a2009-06-09 00:18:59 -07001785 end = start + frag_iter->len;
1786 if ((copy = end - offset) > 0) {
1787 if (copy > len)
1788 copy = len;
1789 csum2 = skb_copy_and_csum_bits(frag_iter,
1790 offset - start,
1791 to, copy, 0);
1792 csum = csum_block_add(csum, csum2, pos);
1793 if ((len -= copy) == 0)
1794 return csum;
1795 offset += copy;
1796 to += copy;
1797 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001799 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001801 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return csum;
1803}
David S. Millerb4ac5302009-02-10 02:09:24 -08001804EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1807{
Al Virod3bc23e2006-11-14 21:24:49 -08001808 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 long csstart;
1810
Patrick McHardy84fa7932006-08-29 16:44:56 -07001811 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001812 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 else
1814 csstart = skb_headlen(skb);
1815
Kris Katterjohn09a62662006-01-08 22:24:28 -08001816 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001818 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 csum = 0;
1821 if (csstart != skb->len)
1822 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1823 skb->len - csstart, 0);
1824
Patrick McHardy84fa7932006-08-29 16:44:56 -07001825 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001826 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Al Virod3bc23e2006-11-14 21:24:49 -08001828 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830}
David S. Millerb4ac5302009-02-10 02:09:24 -08001831EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833/**
1834 * skb_dequeue - remove from the head of the queue
1835 * @list: list to dequeue from
1836 *
1837 * Remove the head of the list. The list lock is taken so the function
1838 * may be used safely with other locking list functions. The head item is
1839 * returned or %NULL if the list is empty.
1840 */
1841
1842struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1843{
1844 unsigned long flags;
1845 struct sk_buff *result;
1846
1847 spin_lock_irqsave(&list->lock, flags);
1848 result = __skb_dequeue(list);
1849 spin_unlock_irqrestore(&list->lock, flags);
1850 return result;
1851}
David S. Millerb4ac5302009-02-10 02:09:24 -08001852EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854/**
1855 * skb_dequeue_tail - remove from the tail of the queue
1856 * @list: list to dequeue from
1857 *
1858 * Remove the tail of the list. The list lock is taken so the function
1859 * may be used safely with other locking list functions. The tail item is
1860 * returned or %NULL if the list is empty.
1861 */
1862struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1863{
1864 unsigned long flags;
1865 struct sk_buff *result;
1866
1867 spin_lock_irqsave(&list->lock, flags);
1868 result = __skb_dequeue_tail(list);
1869 spin_unlock_irqrestore(&list->lock, flags);
1870 return result;
1871}
David S. Millerb4ac5302009-02-10 02:09:24 -08001872EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874/**
1875 * skb_queue_purge - empty a list
1876 * @list: list to empty
1877 *
1878 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1879 * the list and one reference dropped. This function takes the list
1880 * lock and is atomic with respect to other list locking functions.
1881 */
1882void skb_queue_purge(struct sk_buff_head *list)
1883{
1884 struct sk_buff *skb;
1885 while ((skb = skb_dequeue(list)) != NULL)
1886 kfree_skb(skb);
1887}
David S. Millerb4ac5302009-02-10 02:09:24 -08001888EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890/**
1891 * skb_queue_head - queue a buffer at the list head
1892 * @list: list to use
1893 * @newsk: buffer to queue
1894 *
1895 * Queue a buffer at the start of the list. This function takes the
1896 * list lock and can be used safely with other locking &sk_buff functions
1897 * safely.
1898 *
1899 * A buffer cannot be placed on two lists at the same time.
1900 */
1901void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1902{
1903 unsigned long flags;
1904
1905 spin_lock_irqsave(&list->lock, flags);
1906 __skb_queue_head(list, newsk);
1907 spin_unlock_irqrestore(&list->lock, flags);
1908}
David S. Millerb4ac5302009-02-10 02:09:24 -08001909EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911/**
1912 * skb_queue_tail - queue a buffer at the list tail
1913 * @list: list to use
1914 * @newsk: buffer to queue
1915 *
1916 * Queue a buffer at the tail of the list. This function takes the
1917 * list lock and can be used safely with other locking &sk_buff functions
1918 * safely.
1919 *
1920 * A buffer cannot be placed on two lists at the same time.
1921 */
1922void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1923{
1924 unsigned long flags;
1925
1926 spin_lock_irqsave(&list->lock, flags);
1927 __skb_queue_tail(list, newsk);
1928 spin_unlock_irqrestore(&list->lock, flags);
1929}
David S. Millerb4ac5302009-02-10 02:09:24 -08001930EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932/**
1933 * skb_unlink - remove a buffer from a list
1934 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001935 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 *
David S. Miller8728b832005-08-09 19:25:21 -07001937 * Remove a packet from a list. The list locks are taken and this
1938 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 *
David S. Miller8728b832005-08-09 19:25:21 -07001940 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 */
David S. Miller8728b832005-08-09 19:25:21 -07001942void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
David S. Miller8728b832005-08-09 19:25:21 -07001944 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
David S. Miller8728b832005-08-09 19:25:21 -07001946 spin_lock_irqsave(&list->lock, flags);
1947 __skb_unlink(skb, list);
1948 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
David S. Millerb4ac5302009-02-10 02:09:24 -08001950EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952/**
1953 * skb_append - append a buffer
1954 * @old: buffer to insert after
1955 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001956 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 *
1958 * Place a packet after a given packet in a list. The list locks are taken
1959 * and this function is atomic with respect to other list locked calls.
1960 * A buffer cannot be placed on two lists at the same time.
1961 */
David S. Miller8728b832005-08-09 19:25:21 -07001962void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
1964 unsigned long flags;
1965
David S. Miller8728b832005-08-09 19:25:21 -07001966 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001967 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001968 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
David S. Millerb4ac5302009-02-10 02:09:24 -08001970EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972/**
1973 * skb_insert - insert a buffer
1974 * @old: buffer to insert before
1975 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001976 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 *
David S. Miller8728b832005-08-09 19:25:21 -07001978 * Place a packet before a given packet in a list. The list locks are
1979 * taken and this function is atomic with respect to other list locked
1980 * calls.
1981 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 * A buffer cannot be placed on two lists at the same time.
1983 */
David S. Miller8728b832005-08-09 19:25:21 -07001984void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 unsigned long flags;
1987
David S. Miller8728b832005-08-09 19:25:21 -07001988 spin_lock_irqsave(&list->lock, flags);
1989 __skb_insert(newsk, old->prev, old, list);
1990 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
David S. Millerb4ac5302009-02-10 02:09:24 -08001992EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994static inline void skb_split_inside_header(struct sk_buff *skb,
1995 struct sk_buff* skb1,
1996 const u32 len, const int pos)
1997{
1998 int i;
1999
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002000 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2001 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 /* And move data appendix as is. */
2003 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2004 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2005
2006 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2007 skb_shinfo(skb)->nr_frags = 0;
2008 skb1->data_len = skb->data_len;
2009 skb1->len += skb1->data_len;
2010 skb->data_len = 0;
2011 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002012 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
2015static inline void skb_split_no_header(struct sk_buff *skb,
2016 struct sk_buff* skb1,
2017 const u32 len, int pos)
2018{
2019 int i, k = 0;
2020 const int nfrags = skb_shinfo(skb)->nr_frags;
2021
2022 skb_shinfo(skb)->nr_frags = 0;
2023 skb1->len = skb1->data_len = skb->len - len;
2024 skb->len = len;
2025 skb->data_len = len - pos;
2026
2027 for (i = 0; i < nfrags; i++) {
2028 int size = skb_shinfo(skb)->frags[i].size;
2029
2030 if (pos + size > len) {
2031 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2032
2033 if (pos < len) {
2034 /* Split frag.
2035 * We have two variants in this case:
2036 * 1. Move all the frag to the second
2037 * part, if it is possible. F.e.
2038 * this approach is mandatory for TUX,
2039 * where splitting is expensive.
2040 * 2. Split is accurately. We make this.
2041 */
2042 get_page(skb_shinfo(skb)->frags[i].page);
2043 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2044 skb_shinfo(skb1)->frags[0].size -= len - pos;
2045 skb_shinfo(skb)->frags[i].size = len - pos;
2046 skb_shinfo(skb)->nr_frags++;
2047 }
2048 k++;
2049 } else
2050 skb_shinfo(skb)->nr_frags++;
2051 pos += size;
2052 }
2053 skb_shinfo(skb1)->nr_frags = k;
2054}
2055
2056/**
2057 * skb_split - Split fragmented skb to two parts at length len.
2058 * @skb: the buffer to split
2059 * @skb1: the buffer to receive the second part
2060 * @len: new length for skb
2061 */
2062void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2063{
2064 int pos = skb_headlen(skb);
2065
2066 if (len < pos) /* Split line is inside header. */
2067 skb_split_inside_header(skb, skb1, len, pos);
2068 else /* Second chunk has no header, nothing to copy. */
2069 skb_split_no_header(skb, skb1, len, pos);
2070}
David S. Millerb4ac5302009-02-10 02:09:24 -08002071EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002073/* Shifting from/to a cloned skb is a no-go.
2074 *
2075 * Caller cannot keep skb_shinfo related pointers past calling here!
2076 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002077static int skb_prepare_for_shift(struct sk_buff *skb)
2078{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002079 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002080}
2081
2082/**
2083 * skb_shift - Shifts paged data partially from skb to another
2084 * @tgt: buffer into which tail data gets added
2085 * @skb: buffer from which the paged data comes from
2086 * @shiftlen: shift up to this many bytes
2087 *
2088 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2089 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2090 * It's up to caller to free skb if everything was shifted.
2091 *
2092 * If @tgt runs out of frags, the whole operation is aborted.
2093 *
2094 * Skb cannot include anything else but paged data while tgt is allowed
2095 * to have non-paged data as well.
2096 *
2097 * TODO: full sized shift could be optimized but that would need
2098 * specialized skb free'er to handle frags without up-to-date nr_frags.
2099 */
2100int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2101{
2102 int from, to, merge, todo;
2103 struct skb_frag_struct *fragfrom, *fragto;
2104
2105 BUG_ON(shiftlen > skb->len);
2106 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2107
2108 todo = shiftlen;
2109 from = 0;
2110 to = skb_shinfo(tgt)->nr_frags;
2111 fragfrom = &skb_shinfo(skb)->frags[from];
2112
2113 /* Actual merge is delayed until the point when we know we can
2114 * commit all, so that we don't have to undo partial changes
2115 */
2116 if (!to ||
2117 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2118 merge = -1;
2119 } else {
2120 merge = to - 1;
2121
2122 todo -= fragfrom->size;
2123 if (todo < 0) {
2124 if (skb_prepare_for_shift(skb) ||
2125 skb_prepare_for_shift(tgt))
2126 return 0;
2127
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002128 /* All previous frag pointers might be stale! */
2129 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002130 fragto = &skb_shinfo(tgt)->frags[merge];
2131
2132 fragto->size += shiftlen;
2133 fragfrom->size -= shiftlen;
2134 fragfrom->page_offset += shiftlen;
2135
2136 goto onlymerged;
2137 }
2138
2139 from++;
2140 }
2141
2142 /* Skip full, not-fitting skb to avoid expensive operations */
2143 if ((shiftlen == skb->len) &&
2144 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2145 return 0;
2146
2147 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2148 return 0;
2149
2150 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2151 if (to == MAX_SKB_FRAGS)
2152 return 0;
2153
2154 fragfrom = &skb_shinfo(skb)->frags[from];
2155 fragto = &skb_shinfo(tgt)->frags[to];
2156
2157 if (todo >= fragfrom->size) {
2158 *fragto = *fragfrom;
2159 todo -= fragfrom->size;
2160 from++;
2161 to++;
2162
2163 } else {
2164 get_page(fragfrom->page);
2165 fragto->page = fragfrom->page;
2166 fragto->page_offset = fragfrom->page_offset;
2167 fragto->size = todo;
2168
2169 fragfrom->page_offset += todo;
2170 fragfrom->size -= todo;
2171 todo = 0;
2172
2173 to++;
2174 break;
2175 }
2176 }
2177
2178 /* Ready to "commit" this state change to tgt */
2179 skb_shinfo(tgt)->nr_frags = to;
2180
2181 if (merge >= 0) {
2182 fragfrom = &skb_shinfo(skb)->frags[0];
2183 fragto = &skb_shinfo(tgt)->frags[merge];
2184
2185 fragto->size += fragfrom->size;
2186 put_page(fragfrom->page);
2187 }
2188
2189 /* Reposition in the original skb */
2190 to = 0;
2191 while (from < skb_shinfo(skb)->nr_frags)
2192 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2193 skb_shinfo(skb)->nr_frags = to;
2194
2195 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2196
2197onlymerged:
2198 /* Most likely the tgt won't ever need its checksum anymore, skb on
2199 * the other hand might need it if it needs to be resent
2200 */
2201 tgt->ip_summed = CHECKSUM_PARTIAL;
2202 skb->ip_summed = CHECKSUM_PARTIAL;
2203
2204 /* Yak, is it really working this way? Some helper please? */
2205 skb->len -= shiftlen;
2206 skb->data_len -= shiftlen;
2207 skb->truesize -= shiftlen;
2208 tgt->len += shiftlen;
2209 tgt->data_len += shiftlen;
2210 tgt->truesize += shiftlen;
2211
2212 return shiftlen;
2213}
2214
Thomas Graf677e90e2005-06-23 20:59:51 -07002215/**
2216 * skb_prepare_seq_read - Prepare a sequential read of skb data
2217 * @skb: the buffer to read
2218 * @from: lower offset of data to be read
2219 * @to: upper offset of data to be read
2220 * @st: state variable
2221 *
2222 * Initializes the specified state variable. Must be called before
2223 * invoking skb_seq_read() for the first time.
2224 */
2225void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2226 unsigned int to, struct skb_seq_state *st)
2227{
2228 st->lower_offset = from;
2229 st->upper_offset = to;
2230 st->root_skb = st->cur_skb = skb;
2231 st->frag_idx = st->stepped_offset = 0;
2232 st->frag_data = NULL;
2233}
David S. Millerb4ac5302009-02-10 02:09:24 -08002234EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002235
2236/**
2237 * skb_seq_read - Sequentially read skb data
2238 * @consumed: number of bytes consumed by the caller so far
2239 * @data: destination pointer for data to be returned
2240 * @st: state variable
2241 *
2242 * Reads a block of skb data at &consumed relative to the
2243 * lower offset specified to skb_prepare_seq_read(). Assigns
2244 * the head of the data block to &data and returns the length
2245 * of the block or 0 if the end of the skb data or the upper
2246 * offset has been reached.
2247 *
2248 * The caller is not required to consume all of the data
2249 * returned, i.e. &consumed is typically set to the number
2250 * of bytes already consumed and the next call to
2251 * skb_seq_read() will return the remaining part of the block.
2252 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002253 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002254 * this limitation is the cost for zerocopy seqeuental
2255 * reads of potentially non linear data.
2256 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002257 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002258 * at the moment, state->root_skb could be replaced with
2259 * a stack for this purpose.
2260 */
2261unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2262 struct skb_seq_state *st)
2263{
2264 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2265 skb_frag_t *frag;
2266
2267 if (unlikely(abs_offset >= st->upper_offset))
2268 return 0;
2269
2270next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002271 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002272
Thomas Chenault995b3372009-05-18 21:43:27 -07002273 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002274 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002275 return block_limit - abs_offset;
2276 }
2277
2278 if (st->frag_idx == 0 && !st->frag_data)
2279 st->stepped_offset += skb_headlen(st->cur_skb);
2280
2281 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2282 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2283 block_limit = frag->size + st->stepped_offset;
2284
2285 if (abs_offset < block_limit) {
2286 if (!st->frag_data)
2287 st->frag_data = kmap_skb_frag(frag);
2288
2289 *data = (u8 *) st->frag_data + frag->page_offset +
2290 (abs_offset - st->stepped_offset);
2291
2292 return block_limit - abs_offset;
2293 }
2294
2295 if (st->frag_data) {
2296 kunmap_skb_frag(st->frag_data);
2297 st->frag_data = NULL;
2298 }
2299
2300 st->frag_idx++;
2301 st->stepped_offset += frag->size;
2302 }
2303
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002304 if (st->frag_data) {
2305 kunmap_skb_frag(st->frag_data);
2306 st->frag_data = NULL;
2307 }
2308
David S. Miller21dc3302010-08-23 00:13:46 -07002309 if (st->root_skb == st->cur_skb && skb_has_frag_list(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002310 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002311 st->frag_idx = 0;
2312 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002313 } else if (st->cur_skb->next) {
2314 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002315 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002316 goto next_skb;
2317 }
2318
2319 return 0;
2320}
David S. Millerb4ac5302009-02-10 02:09:24 -08002321EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002322
2323/**
2324 * skb_abort_seq_read - Abort a sequential read of skb data
2325 * @st: state variable
2326 *
2327 * Must be called if skb_seq_read() was not called until it
2328 * returned 0.
2329 */
2330void skb_abort_seq_read(struct skb_seq_state *st)
2331{
2332 if (st->frag_data)
2333 kunmap_skb_frag(st->frag_data);
2334}
David S. Millerb4ac5302009-02-10 02:09:24 -08002335EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002336
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002337#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2338
2339static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2340 struct ts_config *conf,
2341 struct ts_state *state)
2342{
2343 return skb_seq_read(offset, text, TS_SKB_CB(state));
2344}
2345
2346static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2347{
2348 skb_abort_seq_read(TS_SKB_CB(state));
2349}
2350
2351/**
2352 * skb_find_text - Find a text pattern in skb data
2353 * @skb: the buffer to look in
2354 * @from: search offset
2355 * @to: search limit
2356 * @config: textsearch configuration
2357 * @state: uninitialized textsearch state variable
2358 *
2359 * Finds a pattern in the skb data according to the specified
2360 * textsearch configuration. Use textsearch_next() to retrieve
2361 * subsequent occurrences of the pattern. Returns the offset
2362 * to the first occurrence or UINT_MAX if no match was found.
2363 */
2364unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2365 unsigned int to, struct ts_config *config,
2366 struct ts_state *state)
2367{
Phil Oesterf72b9482006-06-26 00:00:57 -07002368 unsigned int ret;
2369
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002370 config->get_next_block = skb_ts_get_next_block;
2371 config->finish = skb_ts_finish;
2372
2373 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2374
Phil Oesterf72b9482006-06-26 00:00:57 -07002375 ret = textsearch_find(config, state);
2376 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002377}
David S. Millerb4ac5302009-02-10 02:09:24 -08002378EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002379
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002380/**
2381 * skb_append_datato_frags: - append the user data to a skb
2382 * @sk: sock structure
2383 * @skb: skb structure to be appened with user data.
2384 * @getfrag: call back function to be used for getting the user data
2385 * @from: pointer to user message iov
2386 * @length: length of the iov message
2387 *
2388 * Description: This procedure append the user data in the fragment part
2389 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2390 */
2391int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002392 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002393 int len, int odd, struct sk_buff *skb),
2394 void *from, int length)
2395{
2396 int frg_cnt = 0;
2397 skb_frag_t *frag = NULL;
2398 struct page *page = NULL;
2399 int copy, left;
2400 int offset = 0;
2401 int ret;
2402
2403 do {
2404 /* Return error if we don't have space for new frag */
2405 frg_cnt = skb_shinfo(skb)->nr_frags;
2406 if (frg_cnt >= MAX_SKB_FRAGS)
2407 return -EFAULT;
2408
2409 /* allocate a new page for next frag */
2410 page = alloc_pages(sk->sk_allocation, 0);
2411
2412 /* If alloc_page fails just return failure and caller will
2413 * free previous allocated pages by doing kfree_skb()
2414 */
2415 if (page == NULL)
2416 return -ENOMEM;
2417
2418 /* initialize the next frag */
2419 sk->sk_sndmsg_page = page;
2420 sk->sk_sndmsg_off = 0;
2421 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2422 skb->truesize += PAGE_SIZE;
2423 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2424
2425 /* get the new initialized frag */
2426 frg_cnt = skb_shinfo(skb)->nr_frags;
2427 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2428
2429 /* copy the user data to page */
2430 left = PAGE_SIZE - frag->page_offset;
2431 copy = (length > left)? left : length;
2432
2433 ret = getfrag(from, (page_address(frag->page) +
2434 frag->page_offset + frag->size),
2435 offset, copy, 0, skb);
2436 if (ret < 0)
2437 return -EFAULT;
2438
2439 /* copy was successful so update the size parameters */
2440 sk->sk_sndmsg_off += copy;
2441 frag->size += copy;
2442 skb->len += copy;
2443 skb->data_len += copy;
2444 offset += copy;
2445 length -= copy;
2446
2447 } while (length > 0);
2448
2449 return 0;
2450}
David S. Millerb4ac5302009-02-10 02:09:24 -08002451EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002452
Herbert Xucbb042f2006-03-20 22:43:56 -08002453/**
2454 * skb_pull_rcsum - pull skb and update receive checksum
2455 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002456 * @len: length of data pulled
2457 *
2458 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002459 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002460 * receive path processing instead of skb_pull unless you know
2461 * that the checksum difference is zero (e.g., a valid IP header)
2462 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002463 */
2464unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2465{
2466 BUG_ON(len > skb->len);
2467 skb->len -= len;
2468 BUG_ON(skb->len < skb->data_len);
2469 skb_postpull_rcsum(skb, skb->data, len);
2470 return skb->data += len;
2471}
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002472EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2473
Herbert Xuf4c50d92006-06-22 03:02:40 -07002474/**
2475 * skb_segment - Perform protocol segmentation on skb.
2476 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002477 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002478 *
2479 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002480 * a pointer to the first in a list of new skbs for the segments.
2481 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002482 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002483struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002484{
2485 struct sk_buff *segs = NULL;
2486 struct sk_buff *tail = NULL;
Herbert Xu89319d32008-12-15 23:26:06 -08002487 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002488 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002489 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002490 unsigned int offset = doffset;
2491 unsigned int headroom;
2492 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002493 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002494 int nfrags = skb_shinfo(skb)->nr_frags;
2495 int err = -ENOMEM;
2496 int i = 0;
2497 int pos;
2498
2499 __skb_push(skb, doffset);
2500 headroom = skb_headroom(skb);
2501 pos = skb_headlen(skb);
2502
2503 do {
2504 struct sk_buff *nskb;
2505 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002506 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002507 int size;
2508
2509 len = skb->len - offset;
2510 if (len > mss)
2511 len = mss;
2512
2513 hsize = skb_headlen(skb) - offset;
2514 if (hsize < 0)
2515 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002516 if (hsize > len || !sg)
2517 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002518
Herbert Xu89319d32008-12-15 23:26:06 -08002519 if (!hsize && i >= nfrags) {
2520 BUG_ON(fskb->len != len);
2521
2522 pos += len;
2523 nskb = skb_clone(fskb, GFP_ATOMIC);
2524 fskb = fskb->next;
2525
2526 if (unlikely(!nskb))
2527 goto err;
2528
2529 hsize = skb_end_pointer(nskb) - nskb->head;
2530 if (skb_cow_head(nskb, doffset + headroom)) {
2531 kfree_skb(nskb);
2532 goto err;
2533 }
2534
2535 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2536 hsize;
2537 skb_release_head_state(nskb);
2538 __skb_push(nskb, doffset);
2539 } else {
2540 nskb = alloc_skb(hsize + doffset + headroom,
2541 GFP_ATOMIC);
2542
2543 if (unlikely(!nskb))
2544 goto err;
2545
2546 skb_reserve(nskb, headroom);
2547 __skb_put(nskb, doffset);
2548 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002549
2550 if (segs)
2551 tail->next = nskb;
2552 else
2553 segs = nskb;
2554 tail = nskb;
2555
Herbert Xu6f85a122008-08-15 14:55:02 -07002556 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002557 nskb->mac_len = skb->mac_len;
2558
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002559 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002560 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002561 nskb->transport_header = (nskb->network_header +
2562 skb_network_header_len(skb));
Herbert Xu89319d32008-12-15 23:26:06 -08002563 skb_copy_from_linear_data(skb, nskb->data, doffset);
2564
Herbert Xu2f181852009-03-28 23:39:18 -07002565 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d32008-12-15 23:26:06 -08002566 continue;
2567
Herbert Xuf4c50d92006-06-22 03:02:40 -07002568 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002569 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002570 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2571 skb_put(nskb, len),
2572 len, 0);
2573 continue;
2574 }
2575
2576 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002577
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002578 skb_copy_from_linear_data_offset(skb, offset,
2579 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002580
Herbert Xu89319d32008-12-15 23:26:06 -08002581 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002582 *frag = skb_shinfo(skb)->frags[i];
2583 get_page(frag->page);
2584 size = frag->size;
2585
2586 if (pos < offset) {
2587 frag->page_offset += offset - pos;
2588 frag->size -= offset - pos;
2589 }
2590
Herbert Xu89319d32008-12-15 23:26:06 -08002591 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002592
2593 if (pos + size <= offset + len) {
2594 i++;
2595 pos += size;
2596 } else {
2597 frag->size -= pos + size - (offset + len);
Herbert Xu89319d32008-12-15 23:26:06 -08002598 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002599 }
2600
2601 frag++;
2602 }
2603
Herbert Xu89319d32008-12-15 23:26:06 -08002604 if (pos < offset + len) {
2605 struct sk_buff *fskb2 = fskb;
2606
2607 BUG_ON(pos + fskb->len != offset + len);
2608
2609 pos += fskb->len;
2610 fskb = fskb->next;
2611
2612 if (fskb2->next) {
2613 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2614 if (!fskb2)
2615 goto err;
2616 } else
2617 skb_get(fskb2);
2618
David S. Millerfbb398a2009-06-09 00:18:59 -07002619 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d32008-12-15 23:26:06 -08002620 skb_shinfo(nskb)->frag_list = fskb2;
2621 }
2622
2623skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002624 nskb->data_len = len - hsize;
2625 nskb->len += nskb->data_len;
2626 nskb->truesize += nskb->data_len;
2627 } while ((offset += len) < skb->len);
2628
2629 return segs;
2630
2631err:
2632 while ((skb = segs)) {
2633 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002634 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002635 }
2636 return ERR_PTR(err);
2637}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002638EXPORT_SYMBOL_GPL(skb_segment);
2639
Herbert Xu71d93b32008-12-15 23:42:33 -08002640int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2641{
2642 struct sk_buff *p = *head;
2643 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002644 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2645 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002646 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002647 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002648 unsigned int offset = skb_gro_offset(skb);
2649 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002650
Herbert Xu86911732009-01-29 14:19:50 +00002651 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002652 return -E2BIG;
2653
Herbert Xu9aaa1562009-05-26 18:50:33 +00002654 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002655 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002656 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002657 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002658 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002659 int i = skbinfo->nr_frags;
2660 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002661
Herbert Xu66e92fc2009-05-26 18:50:32 +00002662 offset -= headlen;
2663
2664 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002665 return -E2BIG;
2666
Herbert Xu9aaa1562009-05-26 18:50:33 +00002667 pinfo->nr_frags = nr_frags;
2668 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002669
Herbert Xu9aaa1562009-05-26 18:50:33 +00002670 frag = pinfo->frags + nr_frags;
2671 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002672 do {
2673 *--frag = *--frag2;
2674 } while (--i);
2675
2676 frag->page_offset += offset;
2677 frag->size -= offset;
2678
Herbert Xuf5572062009-01-14 20:40:03 -08002679 skb->truesize -= skb->data_len;
2680 skb->len -= skb->data_len;
2681 skb->data_len = 0;
2682
Herbert Xu5d38a072009-01-04 16:13:40 -08002683 NAPI_GRO_CB(skb)->free = 1;
2684 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002685 } else if (skb_gro_len(p) != pinfo->gso_size)
2686 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002687
2688 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002689 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002690 if (unlikely(!nskb))
2691 return -ENOMEM;
2692
2693 __copy_skb_header(nskb, p);
2694 nskb->mac_len = p->mac_len;
2695
2696 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002697 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002698
Herbert Xu86911732009-01-29 14:19:50 +00002699 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002700 skb_set_network_header(nskb, skb_network_offset(p));
2701 skb_set_transport_header(nskb, skb_transport_offset(p));
2702
Herbert Xu86911732009-01-29 14:19:50 +00002703 __skb_pull(p, skb_gro_offset(p));
2704 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2705 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002706
2707 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2708 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002709 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu622e0ca2010-05-20 23:07:56 -07002710 pinfo->gso_size = 0;
Herbert Xu71d93b32008-12-15 23:42:33 -08002711 skb_header_release(p);
2712 nskb->prev = p;
2713
2714 nskb->data_len += p->len;
2715 nskb->truesize += p->len;
2716 nskb->len += p->len;
2717
2718 *head = nskb;
2719 nskb->next = p->next;
2720 p->next = NULL;
2721
2722 p = nskb;
2723
2724merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002725 if (offset > headlen) {
Herbert Xu9aaa1562009-05-26 18:50:33 +00002726 skbinfo->frags[0].page_offset += offset - headlen;
2727 skbinfo->frags[0].size -= offset - headlen;
Herbert Xu67147ba2009-05-26 18:50:22 +00002728 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002729 }
2730
Herbert Xu67147ba2009-05-26 18:50:22 +00002731 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002732
Herbert Xu71d93b32008-12-15 23:42:33 -08002733 p->prev->next = skb;
2734 p->prev = skb;
2735 skb_header_release(skb);
2736
Herbert Xu5d38a072009-01-04 16:13:40 -08002737done:
2738 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002739 p->data_len += len;
2740 p->truesize += len;
2741 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002742
2743 NAPI_GRO_CB(skb)->same_flow = 1;
2744 return 0;
2745}
2746EXPORT_SYMBOL_GPL(skb_gro_receive);
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748void __init skb_init(void)
2749{
2750 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2751 sizeof(struct sk_buff),
2752 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002753 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002754 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002755 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2756 (2*sizeof(struct sk_buff)) +
2757 sizeof(atomic_t),
2758 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002759 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002760 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761}
2762
David Howells716ea3a2007-04-02 20:19:53 -07002763/**
2764 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2765 * @skb: Socket buffer containing the buffers to be mapped
2766 * @sg: The scatter-gather list to map into
2767 * @offset: The offset into the buffer's contents to start mapping
2768 * @len: Length of buffer space to be mapped
2769 *
2770 * Fill the specified scatter-gather list with mappings/pointers into a
2771 * region of the buffer space attached to a socket buffer.
2772 */
David S. Miller51c739d2007-10-30 21:29:29 -07002773static int
2774__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002775{
David S. Miller1a028e52007-04-27 15:21:23 -07002776 int start = skb_headlen(skb);
2777 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002778 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002779 int elt = 0;
2780
2781 if (copy > 0) {
2782 if (copy > len)
2783 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002784 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002785 elt++;
2786 if ((len -= copy) == 0)
2787 return elt;
2788 offset += copy;
2789 }
2790
2791 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002792 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002793
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002794 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002795
2796 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002797 if ((copy = end - offset) > 0) {
2798 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2799
2800 if (copy > len)
2801 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002802 sg_set_page(&sg[elt], frag->page, copy,
2803 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002804 elt++;
2805 if (!(len -= copy))
2806 return elt;
2807 offset += copy;
2808 }
David S. Miller1a028e52007-04-27 15:21:23 -07002809 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002810 }
2811
David S. Millerfbb398a2009-06-09 00:18:59 -07002812 skb_walk_frags(skb, frag_iter) {
2813 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002814
David S. Millerfbb398a2009-06-09 00:18:59 -07002815 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002816
David S. Millerfbb398a2009-06-09 00:18:59 -07002817 end = start + frag_iter->len;
2818 if ((copy = end - offset) > 0) {
2819 if (copy > len)
2820 copy = len;
2821 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2822 copy);
2823 if ((len -= copy) == 0)
2824 return elt;
2825 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002826 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002827 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002828 }
2829 BUG_ON(len);
2830 return elt;
2831}
2832
David S. Miller51c739d2007-10-30 21:29:29 -07002833int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2834{
2835 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2836
Jens Axboec46f2332007-10-31 12:06:37 +01002837 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002838
2839 return nsg;
2840}
David S. Millerb4ac5302009-02-10 02:09:24 -08002841EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002842
David Howells716ea3a2007-04-02 20:19:53 -07002843/**
2844 * skb_cow_data - Check that a socket buffer's data buffers are writable
2845 * @skb: The socket buffer to check.
2846 * @tailbits: Amount of trailing space to be added
2847 * @trailer: Returned pointer to the skb where the @tailbits space begins
2848 *
2849 * Make sure that the data buffers attached to a socket buffer are
2850 * writable. If they are not, private copies are made of the data buffers
2851 * and the socket buffer is set to use these instead.
2852 *
2853 * If @tailbits is given, make sure that there is space to write @tailbits
2854 * bytes of data beyond current end of socket buffer. @trailer will be
2855 * set to point to the skb in which this space begins.
2856 *
2857 * The number of scatterlist elements required to completely map the
2858 * COW'd and extended socket buffer will be returned.
2859 */
2860int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2861{
2862 int copyflag;
2863 int elt;
2864 struct sk_buff *skb1, **skb_p;
2865
2866 /* If skb is cloned or its head is paged, reallocate
2867 * head pulling out all the pages (pages are considered not writable
2868 * at the moment even if they are anonymous).
2869 */
2870 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2871 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2872 return -ENOMEM;
2873
2874 /* Easy case. Most of packets will go this way. */
David S. Miller21dc3302010-08-23 00:13:46 -07002875 if (!skb_has_frag_list(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002876 /* A little of trouble, not enough of space for trailer.
2877 * This should not happen, when stack is tuned to generate
2878 * good frames. OK, on miss we reallocate and reserve even more
2879 * space, 128 bytes is fair. */
2880
2881 if (skb_tailroom(skb) < tailbits &&
2882 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2883 return -ENOMEM;
2884
2885 /* Voila! */
2886 *trailer = skb;
2887 return 1;
2888 }
2889
2890 /* Misery. We are in troubles, going to mincer fragments... */
2891
2892 elt = 1;
2893 skb_p = &skb_shinfo(skb)->frag_list;
2894 copyflag = 0;
2895
2896 while ((skb1 = *skb_p) != NULL) {
2897 int ntail = 0;
2898
2899 /* The fragment is partially pulled by someone,
2900 * this can happen on input. Copy it and everything
2901 * after it. */
2902
2903 if (skb_shared(skb1))
2904 copyflag = 1;
2905
2906 /* If the skb is the last, worry about trailer. */
2907
2908 if (skb1->next == NULL && tailbits) {
2909 if (skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07002910 skb_has_frag_list(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07002911 skb_tailroom(skb1) < tailbits)
2912 ntail = tailbits + 128;
2913 }
2914
2915 if (copyflag ||
2916 skb_cloned(skb1) ||
2917 ntail ||
2918 skb_shinfo(skb1)->nr_frags ||
David S. Miller21dc3302010-08-23 00:13:46 -07002919 skb_has_frag_list(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07002920 struct sk_buff *skb2;
2921
2922 /* Fuck, we are miserable poor guys... */
2923 if (ntail == 0)
2924 skb2 = skb_copy(skb1, GFP_ATOMIC);
2925 else
2926 skb2 = skb_copy_expand(skb1,
2927 skb_headroom(skb1),
2928 ntail,
2929 GFP_ATOMIC);
2930 if (unlikely(skb2 == NULL))
2931 return -ENOMEM;
2932
2933 if (skb1->sk)
2934 skb_set_owner_w(skb2, skb1->sk);
2935
2936 /* Looking around. Are we still alive?
2937 * OK, link new skb, drop old one */
2938
2939 skb2->next = skb1->next;
2940 *skb_p = skb2;
2941 kfree_skb(skb1);
2942 skb1 = skb2;
2943 }
2944 elt++;
2945 *trailer = skb1;
2946 skb_p = &skb1->next;
2947 }
2948
2949 return elt;
2950}
David S. Millerb4ac5302009-02-10 02:09:24 -08002951EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002952
Eric Dumazetb1faf562010-05-31 23:44:05 -07002953static void sock_rmem_free(struct sk_buff *skb)
2954{
2955 struct sock *sk = skb->sk;
2956
2957 atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
2958}
2959
2960/*
2961 * Note: We dont mem charge error packets (no sk_forward_alloc changes)
2962 */
2963int sock_queue_err_skb(struct sock *sk, struct sk_buff *skb)
2964{
2965 if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
2966 (unsigned)sk->sk_rcvbuf)
2967 return -ENOMEM;
2968
2969 skb_orphan(skb);
2970 skb->sk = sk;
2971 skb->destructor = sock_rmem_free;
2972 atomic_add(skb->truesize, &sk->sk_rmem_alloc);
2973
2974 skb_queue_tail(&sk->sk_error_queue, skb);
2975 if (!sock_flag(sk, SOCK_DEAD))
2976 sk->sk_data_ready(sk, skb->len);
2977 return 0;
2978}
2979EXPORT_SYMBOL(sock_queue_err_skb);
2980
Patrick Ohlyac45f602009-02-12 05:03:37 +00002981void skb_tstamp_tx(struct sk_buff *orig_skb,
2982 struct skb_shared_hwtstamps *hwtstamps)
2983{
2984 struct sock *sk = orig_skb->sk;
2985 struct sock_exterr_skb *serr;
2986 struct sk_buff *skb;
2987 int err;
2988
2989 if (!sk)
2990 return;
2991
2992 skb = skb_clone(orig_skb, GFP_ATOMIC);
2993 if (!skb)
2994 return;
2995
2996 if (hwtstamps) {
2997 *skb_hwtstamps(skb) =
2998 *hwtstamps;
2999 } else {
3000 /*
3001 * no hardware time stamps available,
Oliver Hartkopp2244d072010-08-17 08:59:14 +00003002 * so keep the shared tx_flags and only
Patrick Ohlyac45f602009-02-12 05:03:37 +00003003 * store software time stamp
3004 */
3005 skb->tstamp = ktime_get_real();
3006 }
3007
3008 serr = SKB_EXT_ERR(skb);
3009 memset(serr, 0, sizeof(*serr));
3010 serr->ee.ee_errno = ENOMSG;
3011 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
Eric Dumazet29030372010-05-29 00:20:48 -07003012
Patrick Ohlyac45f602009-02-12 05:03:37 +00003013 err = sock_queue_err_skb(sk, skb);
Eric Dumazet29030372010-05-29 00:20:48 -07003014
Patrick Ohlyac45f602009-02-12 05:03:37 +00003015 if (err)
3016 kfree_skb(skb);
3017}
3018EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3019
3020
Rusty Russellf35d9d82008-02-04 23:49:54 -05003021/**
3022 * skb_partial_csum_set - set up and verify partial csum values for packet
3023 * @skb: the skb to set
3024 * @start: the number of bytes after skb->data to start checksumming.
3025 * @off: the offset from start to place the checksum.
3026 *
3027 * For untrusted partially-checksummed packets, we need to make sure the values
3028 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3029 *
3030 * This function checks and sets those values and skb->ip_summed: if this
3031 * returns false you should drop the packet.
3032 */
3033bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3034{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003035 if (unlikely(start > skb_headlen(skb)) ||
3036 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003037 if (net_ratelimit())
3038 printk(KERN_WARNING
3039 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003040 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003041 return false;
3042 }
3043 skb->ip_summed = CHECKSUM_PARTIAL;
3044 skb->csum_start = skb_headroom(skb) + start;
3045 skb->csum_offset = off;
3046 return true;
3047}
David S. Millerb4ac5302009-02-10 02:09:24 -08003048EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003049
Ben Hutchings4497b072008-06-19 16:22:28 -07003050void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3051{
3052 if (net_ratelimit())
3053 pr_warning("%s: received packets cannot be forwarded"
3054 " while LRO is enabled\n", skb->dev->name);
3055}
Ben Hutchings4497b072008-06-19 16:22:28 -07003056EXPORT_SYMBOL(__skb_warn_lro_forwarding);