blob: 931981774b1a56a3eed61c6219e84c67192abad7 [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 Viroa1f8e7f72006-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 */
120void skb_over_panic(struct sk_buff *skb, int sz, void *here)
121{
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}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800129EXPORT_SYMBOL(skb_over_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/**
132 * skb_under_panic - private function
133 * @skb: buffer
134 * @sz: size
135 * @here: address
136 *
137 * Out of line support code for skb_push(). Not user callable.
138 */
139
140void skb_under_panic(struct sk_buff *skb, int sz, void *here)
141{
Patrick McHardy26095452005-04-21 16:43:02 -0700142 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700143 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700144 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700145 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700146 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 BUG();
148}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800149EXPORT_SYMBOL(skb_under_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/* Allocate a new skbuff. We do this ourselves so we can fill in a few
152 * 'private' fields and also do memory statistics to find all the
153 * [BEEP] leaks.
154 *
155 */
156
157/**
David S. Millerd179cd12005-08-17 14:57:30 -0700158 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * @size: size to allocate
160 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700161 * @fclone: allocate from fclone cache instead of head cache
162 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800163 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
165 * Allocate a new &sk_buff. The returned buffer has no headroom and a
166 * tail room of size bytes. The object has a reference count of one.
167 * The return is the buffer. On a failure the return is %NULL.
168 *
169 * Buffers may only be allocated from interrupts using a @gfp_mask of
170 * %GFP_ATOMIC.
171 */
Al Virodd0fc662005-10-07 07:46:04 +0100172struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800173 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Christoph Lametere18b8902006-12-06 20:33:20 -0800175 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800176 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct sk_buff *skb;
178 u8 *data;
179
Herbert Xu8798b3f2006-01-23 16:32:45 -0800180 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800183 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (!skb)
185 goto out;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800188 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
189 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (!data)
191 goto nodata;
192
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);
213 atomic_set(&shinfo->dataref, 1);
214 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700215 shinfo->gso_size = 0;
216 shinfo->gso_segs = 0;
217 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800218 shinfo->ip6_frag_id = 0;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000219 shinfo->tx_flags.flags = 0;
David S. Millerfbb398a2009-06-09 00:18:59 -0700220 skb_frag_list_init(skb);
Patrick Ohlyac45f602009-02-12 05:03:37 +0000221 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800222
David S. Millerd179cd12005-08-17 14:57:30 -0700223 if (fclone) {
224 struct sk_buff *child = skb + 1;
225 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200227 kmemcheck_annotate_bitfield(child, flags1);
228 kmemcheck_annotate_bitfield(child, flags2);
David S. Millerd179cd12005-08-17 14:57:30 -0700229 skb->fclone = SKB_FCLONE_ORIG;
230 atomic_set(fclone_ref, 1);
231
232 child->fclone = SKB_FCLONE_UNAVAILABLE;
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234out:
235 return skb;
236nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800237 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 skb = NULL;
239 goto out;
240}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800241EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700244 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
245 * @dev: network device to receive on
246 * @length: length to allocate
247 * @gfp_mask: get_free_pages mask, passed to alloc_skb
248 *
249 * Allocate a new &sk_buff and assign it a usage count of one. The
250 * buffer has unspecified headroom built in. Users should allocate
251 * the headroom they think they need without accounting for the
252 * built in space. The built in space is used for optimisations.
253 *
254 * %NULL is returned if there is no free memory.
255 */
256struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
257 unsigned int length, gfp_t gfp_mask)
258{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700259 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700260 struct sk_buff *skb;
261
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900262 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700263 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700264 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700265 skb->dev = dev;
266 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700267 return skb;
268}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800269EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Peter Zijlstra654bed12008-10-07 14:22:33 -0700271struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
272{
273 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
274 struct page *page;
275
276 page = alloc_pages_node(node, gfp_mask, 0);
277 return page;
278}
279EXPORT_SYMBOL(__netdev_alloc_page);
280
281void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
282 int size)
283{
284 skb_fill_page_desc(skb, i, page, off, size);
285 skb->len += size;
286 skb->data_len += size;
287 skb->truesize += size;
288}
289EXPORT_SYMBOL(skb_add_rx_frag);
290
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700291/**
292 * dev_alloc_skb - allocate an skbuff for receiving
293 * @length: length to allocate
294 *
295 * Allocate a new &sk_buff and assign it a usage count of one. The
296 * buffer has unspecified headroom built in. Users should allocate
297 * the headroom they think they need without accounting for the
298 * built in space. The built in space is used for optimisations.
299 *
300 * %NULL is returned if there is no free memory. Although this function
301 * allocates memory it can be called from an interrupt.
302 */
303struct sk_buff *dev_alloc_skb(unsigned int length)
304{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700305 /*
306 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700307 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700308 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700309 return __dev_alloc_skb(length, GFP_ATOMIC);
310}
311EXPORT_SYMBOL(dev_alloc_skb);
312
Herbert Xu27b437c2006-07-13 19:26:39 -0700313static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Herbert Xu27b437c2006-07-13 19:26:39 -0700315 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Herbert Xu27b437c2006-07-13 19:26:39 -0700317 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 do {
320 struct sk_buff *this = list;
321 list = list->next;
322 kfree_skb(this);
323 } while (list);
324}
325
Herbert Xu27b437c2006-07-13 19:26:39 -0700326static inline void skb_drop_fraglist(struct sk_buff *skb)
327{
328 skb_drop_list(&skb_shinfo(skb)->frag_list);
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static void skb_clone_fraglist(struct sk_buff *skb)
332{
333 struct sk_buff *list;
334
David S. Millerfbb398a2009-06-09 00:18:59 -0700335 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 skb_get(list);
337}
338
Adrian Bunk5bba1712006-06-29 13:02:35 -0700339static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 if (!skb->cloned ||
342 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
343 &skb_shinfo(skb)->dataref)) {
344 if (skb_shinfo(skb)->nr_frags) {
345 int i;
346 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
347 put_page(skb_shinfo(skb)->frags[i].page);
348 }
349
David S. Millerfbb398a2009-06-09 00:18:59 -0700350 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 skb_drop_fraglist(skb);
352
353 kfree(skb->head);
354 }
355}
356
357/*
358 * Free an skbuff by memory without cleaning the state.
359 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800360static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
David S. Millerd179cd12005-08-17 14:57:30 -0700362 struct sk_buff *other;
363 atomic_t *fclone_ref;
364
David S. Millerd179cd12005-08-17 14:57:30 -0700365 switch (skb->fclone) {
366 case SKB_FCLONE_UNAVAILABLE:
367 kmem_cache_free(skbuff_head_cache, skb);
368 break;
369
370 case SKB_FCLONE_ORIG:
371 fclone_ref = (atomic_t *) (skb + 2);
372 if (atomic_dec_and_test(fclone_ref))
373 kmem_cache_free(skbuff_fclone_cache, skb);
374 break;
375
376 case SKB_FCLONE_CLONE:
377 fclone_ref = (atomic_t *) (skb + 1);
378 other = skb - 1;
379
380 /* The clone portion is available for
381 * fast-cloning again.
382 */
383 skb->fclone = SKB_FCLONE_UNAVAILABLE;
384
385 if (atomic_dec_and_test(fclone_ref))
386 kmem_cache_free(skbuff_fclone_cache, other);
387 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700391static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Eric Dumazetadf30902009-06-02 05:19:30 +0000393 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394#ifdef CONFIG_XFRM
395 secpath_put(skb->sp);
396#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700397 if (skb->destructor) {
398 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 skb->destructor(skb);
400 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800401#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700402 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800403 nf_conntrack_put_reasm(skb->nfct_reasm);
404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405#ifdef CONFIG_BRIDGE_NETFILTER
406 nf_bridge_put(skb->nf_bridge);
407#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408/* XXX: IS this still necessary? - JHS */
409#ifdef CONFIG_NET_SCHED
410 skb->tc_index = 0;
411#ifdef CONFIG_NET_CLS_ACT
412 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#endif
414#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700415}
416
417/* Free everything but the sk_buff shell. */
418static void skb_release_all(struct sk_buff *skb)
419{
420 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800421 skb_release_data(skb);
422}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Herbert Xu2d4baff2007-11-26 23:11:19 +0800424/**
425 * __kfree_skb - private function
426 * @skb: buffer
427 *
428 * Free an sk_buff. Release anything attached to the buffer.
429 * Clean the state. This is an internal helper function. Users should
430 * always call kfree_skb
431 */
432
433void __kfree_skb(struct sk_buff *skb)
434{
435 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 kfree_skbmem(skb);
437}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800438EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800441 * kfree_skb - free an sk_buff
442 * @skb: buffer to free
443 *
444 * Drop a reference to the buffer and free it if the usage count has
445 * hit zero.
446 */
447void kfree_skb(struct sk_buff *skb)
448{
449 if (unlikely(!skb))
450 return;
451 if (likely(atomic_read(&skb->users) == 1))
452 smp_rmb();
453 else if (likely(!atomic_dec_and_test(&skb->users)))
454 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000455 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800456 __kfree_skb(skb);
457}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800458EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800459
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700460/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000461 * consume_skb - free an skbuff
462 * @skb: buffer to free
463 *
464 * Drop a ref to the buffer and free it if the usage count has hit zero
465 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
466 * is being dropped after a failure and notes that
467 */
468void consume_skb(struct sk_buff *skb)
469{
470 if (unlikely(!skb))
471 return;
472 if (likely(atomic_read(&skb->users) == 1))
473 smp_rmb();
474 else if (likely(!atomic_dec_and_test(&skb->users)))
475 return;
476 __kfree_skb(skb);
477}
478EXPORT_SYMBOL(consume_skb);
479
480/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700481 * skb_recycle_check - check if skb can be reused for receive
482 * @skb: buffer
483 * @skb_size: minimum receive buffer size
484 *
485 * Checks that the skb passed in is not shared or cloned, and
486 * that it is linear and its head portion at least as large as
487 * skb_size so that it can be recycled as a receive buffer.
488 * If these conditions are met, this function does any necessary
489 * reference count dropping and cleans up the skbuff as if it
490 * just came from __alloc_skb().
491 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700492int skb_recycle_check(struct sk_buff *skb, int skb_size)
493{
494 struct skb_shared_info *shinfo;
495
Anton Vorontsove84af6d2009-11-10 14:11:01 +0000496 if (irqs_disabled())
497 return 0;
498
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700499 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
500 return 0;
501
502 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
503 if (skb_end_pointer(skb) - skb->head < skb_size)
504 return 0;
505
506 if (skb_shared(skb) || skb_cloned(skb))
507 return 0;
508
509 skb_release_head_state(skb);
510 shinfo = skb_shinfo(skb);
511 atomic_set(&shinfo->dataref, 1);
512 shinfo->nr_frags = 0;
513 shinfo->gso_size = 0;
514 shinfo->gso_segs = 0;
515 shinfo->gso_type = 0;
516 shinfo->ip6_frag_id = 0;
Lennert Buytenhekb8050072009-05-06 16:49:18 -0700517 shinfo->tx_flags.flags = 0;
David S. Millerfbb398a2009-06-09 00:18:59 -0700518 skb_frag_list_init(skb);
Lennert Buytenhekb8050072009-05-06 16:49:18 -0700519 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700520
521 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700522 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800523 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700524
525 return 1;
526}
527EXPORT_SYMBOL(skb_recycle_check);
528
Herbert Xudec18812007-10-14 00:37:30 -0700529static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
530{
531 new->tstamp = old->tstamp;
532 new->dev = old->dev;
533 new->transport_header = old->transport_header;
534 new->network_header = old->network_header;
535 new->mac_header = old->mac_header;
Eric Dumazetadf30902009-06-02 05:19:30 +0000536 skb_dst_set(new, dst_clone(skb_dst(old)));
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700537#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700538 new->sp = secpath_get(old->sp);
539#endif
540 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000541 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700542 new->local_df = old->local_df;
543 new->pkt_type = old->pkt_type;
544 new->ip_summed = old->ip_summed;
545 skb_copy_queue_mapping(new, old);
546 new->priority = old->priority;
547#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
548 new->ipvs_property = old->ipvs_property;
549#endif
550 new->protocol = old->protocol;
551 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800552 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700553 __nf_copy(new, old);
554#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
555 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
556 new->nf_trace = old->nf_trace;
557#endif
558#ifdef CONFIG_NET_SCHED
559 new->tc_index = old->tc_index;
560#ifdef CONFIG_NET_CLS_ACT
561 new->tc_verd = old->tc_verd;
562#endif
563#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700564 new->vlan_tci = old->vlan_tci;
565
Herbert Xudec18812007-10-14 00:37:30 -0700566 skb_copy_secmark(new, old);
567}
568
Herbert Xu82c49a32009-05-22 22:11:37 +0000569/*
570 * You should not add any new code to this function. Add it to
571 * __copy_skb_header above instead.
572 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700573static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575#define C(x) n->x = skb->x
576
577 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700579 __copy_skb_header(n, skb);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 C(len);
582 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700583 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700584 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800585 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 C(tail);
589 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800590 C(head);
591 C(data);
592 C(truesize);
593 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 atomic_inc(&(skb_shinfo(skb)->dataref));
596 skb->cloned = 1;
597
598 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700599#undef C
600}
601
602/**
603 * skb_morph - morph one skb into another
604 * @dst: the skb to receive the contents
605 * @src: the skb to supply the contents
606 *
607 * This is identical to skb_clone except that the target skb is
608 * supplied by the user.
609 *
610 * The target skb is returned upon exit.
611 */
612struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
613{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800614 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700615 return __skb_clone(dst, src);
616}
617EXPORT_SYMBOL_GPL(skb_morph);
618
619/**
620 * skb_clone - duplicate an sk_buff
621 * @skb: buffer to clone
622 * @gfp_mask: allocation priority
623 *
624 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
625 * copies share the same packet data but not structure. The new
626 * buffer has a reference count of 1. If the allocation fails the
627 * function returns %NULL otherwise the new buffer is returned.
628 *
629 * If this function is called from an interrupt gfp_mask() must be
630 * %GFP_ATOMIC.
631 */
632
633struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
634{
635 struct sk_buff *n;
636
637 n = skb + 1;
638 if (skb->fclone == SKB_FCLONE_ORIG &&
639 n->fclone == SKB_FCLONE_UNAVAILABLE) {
640 atomic_t *fclone_ref = (atomic_t *) (n + 1);
641 n->fclone = SKB_FCLONE_CLONE;
642 atomic_inc(fclone_ref);
643 } else {
644 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
645 if (!n)
646 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200647
648 kmemcheck_annotate_bitfield(n, flags1);
649 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700650 n->fclone = SKB_FCLONE_UNAVAILABLE;
651 }
652
653 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800655EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
658{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700659#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /*
661 * Shift between the two data areas in bytes
662 */
663 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700664#endif
Herbert Xudec18812007-10-14 00:37:30 -0700665
666 __copy_skb_header(new, old);
667
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700668#ifndef NET_SKBUFF_DATA_USES_OFFSET
669 /* {transport,network,mac}_header are relative to skb->head */
670 new->transport_header += offset;
671 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000672 if (skb_mac_header_was_set(new))
673 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700674#endif
Herbert Xu79671682006-06-22 02:40:14 -0700675 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
676 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
677 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680/**
681 * skb_copy - create private copy of an sk_buff
682 * @skb: buffer to copy
683 * @gfp_mask: allocation priority
684 *
685 * Make a copy of both an &sk_buff and its data. This is used when the
686 * caller wishes to modify the data and needs a private copy of the
687 * data to alter. Returns %NULL on failure or the pointer to the buffer
688 * on success. The returned buffer has a reference count of 1.
689 *
690 * As by-product this function converts non-linear &sk_buff to linear
691 * one, so that &sk_buff becomes completely private and caller is allowed
692 * to modify all the data of returned buffer. This means that this
693 * function is not recommended for use in circumstances when only
694 * header is going to be modified. Use pskb_copy() instead.
695 */
696
Al Virodd0fc662005-10-07 07:46:04 +0100697struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 int headerlen = skb->data - skb->head;
700 /*
701 * Allocate the copy buffer
702 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700703 struct sk_buff *n;
704#ifdef NET_SKBUFF_DATA_USES_OFFSET
705 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
706#else
707 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
708#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (!n)
710 return NULL;
711
712 /* Set the data pointer */
713 skb_reserve(n, headerlen);
714 /* Set the tail pointer and length */
715 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
718 BUG();
719
720 copy_skb_header(n, skb);
721 return n;
722}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800723EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725/**
726 * pskb_copy - create copy of an sk_buff with private head.
727 * @skb: buffer to copy
728 * @gfp_mask: allocation priority
729 *
730 * Make a copy of both an &sk_buff and part of its data, located
731 * in header. Fragmented data remain shared. This is used when
732 * the caller wishes to modify only header of &sk_buff and needs
733 * private copy of the header to alter. Returns %NULL on failure
734 * or the pointer to the buffer on success.
735 * The returned buffer has a reference count of 1.
736 */
737
Al Virodd0fc662005-10-07 07:46:04 +0100738struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 /*
741 * Allocate the copy buffer
742 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700743 struct sk_buff *n;
744#ifdef NET_SKBUFF_DATA_USES_OFFSET
745 n = alloc_skb(skb->end, gfp_mask);
746#else
747 n = alloc_skb(skb->end - skb->head, gfp_mask);
748#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (!n)
750 goto out;
751
752 /* Set the data pointer */
753 skb_reserve(n, skb->data - skb->head);
754 /* Set the tail pointer and length */
755 skb_put(n, skb_headlen(skb));
756 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300757 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Herbert Xu25f484a2006-11-07 14:57:15 -0800759 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 n->data_len = skb->data_len;
761 n->len = skb->len;
762
763 if (skb_shinfo(skb)->nr_frags) {
764 int i;
765
766 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
767 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
768 get_page(skb_shinfo(n)->frags[i].page);
769 }
770 skb_shinfo(n)->nr_frags = i;
771 }
772
David S. Millerfbb398a2009-06-09 00:18:59 -0700773 if (skb_has_frags(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
775 skb_clone_fraglist(n);
776 }
777
778 copy_skb_header(n, skb);
779out:
780 return n;
781}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800782EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784/**
785 * pskb_expand_head - reallocate header of &sk_buff
786 * @skb: buffer to reallocate
787 * @nhead: room to add at head
788 * @ntail: room to add at tail
789 * @gfp_mask: allocation priority
790 *
791 * Expands (or creates identical copy, if &nhead and &ntail are zero)
792 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
793 * reference count of 1. Returns zero in the case of success or error,
794 * if expansion failed. In the last case, &sk_buff is not changed.
795 *
796 * All the pointers pointing into skb header may change and must be
797 * reloaded after call to this function.
798 */
799
Victor Fusco86a76ca2005-07-08 14:57:47 -0700800int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100801 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803 int i;
804 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700805#ifdef NET_SKBUFF_DATA_USES_OFFSET
806 int size = nhead + skb->end + ntail;
807#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700809#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 long off;
811
Herbert Xu4edd87a2008-10-01 07:09:38 -0700812 BUG_ON(nhead < 0);
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (skb_shared(skb))
815 BUG();
816
817 size = SKB_DATA_ALIGN(size);
818
819 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
820 if (!data)
821 goto nodata;
822
823 /* Copy only real data... and, alas, header. This should be
824 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700825#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700826 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700827#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700828 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700829#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700830 memcpy(data + size, skb_end_pointer(skb),
831 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
834 get_page(skb_shinfo(skb)->frags[i].page);
835
David S. Millerfbb398a2009-06-09 00:18:59 -0700836 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 skb_clone_fraglist(skb);
838
839 skb_release_data(skb);
840
841 off = (data + nhead) - skb->head;
842
843 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700845#ifdef NET_SKBUFF_DATA_USES_OFFSET
846 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700847 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700848#else
849 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700850#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700851 /* {transport,network,mac}_header and tail are relative to skb->head */
852 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700853 skb->transport_header += off;
854 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000855 if (skb_mac_header_was_set(skb))
856 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700857 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700859 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 skb->nohdr = 0;
861 atomic_set(&skb_shinfo(skb)->dataref, 1);
862 return 0;
863
864nodata:
865 return -ENOMEM;
866}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800867EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869/* Make private copy of skb with writable head and some headroom */
870
871struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
872{
873 struct sk_buff *skb2;
874 int delta = headroom - skb_headroom(skb);
875
876 if (delta <= 0)
877 skb2 = pskb_copy(skb, GFP_ATOMIC);
878 else {
879 skb2 = skb_clone(skb, GFP_ATOMIC);
880 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
881 GFP_ATOMIC)) {
882 kfree_skb(skb2);
883 skb2 = NULL;
884 }
885 }
886 return skb2;
887}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800888EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890/**
891 * skb_copy_expand - copy and expand sk_buff
892 * @skb: buffer to copy
893 * @newheadroom: new free bytes at head
894 * @newtailroom: new free bytes at tail
895 * @gfp_mask: allocation priority
896 *
897 * Make a copy of both an &sk_buff and its data and while doing so
898 * allocate additional space.
899 *
900 * This is used when the caller wishes to modify the data and needs a
901 * private copy of the data to alter as well as more space for new fields.
902 * Returns %NULL on failure or the pointer to the buffer
903 * on success. The returned buffer has a reference count of 1.
904 *
905 * You must pass %GFP_ATOMIC as the allocation priority if this function
906 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
908struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700909 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100910 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
912 /*
913 * Allocate the copy buffer
914 */
915 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
916 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700917 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700919 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 if (!n)
922 return NULL;
923
924 skb_reserve(n, newheadroom);
925
926 /* Set the tail pointer and length */
927 skb_put(n, skb->len);
928
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700929 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 head_copy_off = 0;
931 if (newheadroom <= head_copy_len)
932 head_copy_len = newheadroom;
933 else
934 head_copy_off = newheadroom - head_copy_len;
935
936 /* Copy the linear header and data. */
937 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
938 skb->len + head_copy_len))
939 BUG();
940
941 copy_skb_header(n, skb);
942
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700943 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700944 n->csum_start += off;
945#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700946 n->transport_header += off;
947 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000948 if (skb_mac_header_was_set(skb))
949 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700950#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return n;
953}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800954EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956/**
957 * skb_pad - zero pad the tail of an skb
958 * @skb: buffer to pad
959 * @pad: space to pad
960 *
961 * Ensure that a buffer is followed by a padding area that is zero
962 * filled. Used by network drivers which may DMA or transfer data
963 * beyond the buffer end onto the wire.
964 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700965 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900967
Herbert Xu5b057c62006-06-23 02:06:41 -0700968int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Herbert Xu5b057c62006-06-23 02:06:41 -0700970 int err;
971 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700974 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700976 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700978
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700979 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700980 if (likely(skb_cloned(skb) || ntail > 0)) {
981 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
982 if (unlikely(err))
983 goto free_skb;
984 }
985
986 /* FIXME: The use of this function with non-linear skb's really needs
987 * to be audited.
988 */
989 err = skb_linearize(skb);
990 if (unlikely(err))
991 goto free_skb;
992
993 memset(skb->data + skb->len, 0, pad);
994 return 0;
995
996free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700998 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900999}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001000EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001001
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001002/**
1003 * skb_put - add data to a buffer
1004 * @skb: buffer to use
1005 * @len: amount of data to add
1006 *
1007 * This function extends the used data area of the buffer. If this would
1008 * exceed the total buffer size the kernel will panic. A pointer to the
1009 * first byte of the extra data is returned.
1010 */
1011unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1012{
1013 unsigned char *tmp = skb_tail_pointer(skb);
1014 SKB_LINEAR_ASSERT(skb);
1015 skb->tail += len;
1016 skb->len += len;
1017 if (unlikely(skb->tail > skb->end))
1018 skb_over_panic(skb, len, __builtin_return_address(0));
1019 return tmp;
1020}
1021EXPORT_SYMBOL(skb_put);
1022
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001023/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001024 * skb_push - add data to the start of a buffer
1025 * @skb: buffer to use
1026 * @len: amount of data to add
1027 *
1028 * This function extends the used data area of the buffer at the buffer
1029 * start. If this would exceed the total buffer headroom the kernel will
1030 * panic. A pointer to the first byte of the extra data is returned.
1031 */
1032unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1033{
1034 skb->data -= len;
1035 skb->len += len;
1036 if (unlikely(skb->data<skb->head))
1037 skb_under_panic(skb, len, __builtin_return_address(0));
1038 return skb->data;
1039}
1040EXPORT_SYMBOL(skb_push);
1041
1042/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001043 * skb_pull - remove data from the start of a buffer
1044 * @skb: buffer to use
1045 * @len: amount of data to remove
1046 *
1047 * This function removes data from the start of a buffer, returning
1048 * the memory to the headroom. A pointer to the next data in the buffer
1049 * is returned. Once the data has been pulled future pushes will overwrite
1050 * the old data.
1051 */
1052unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1053{
1054 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1055}
1056EXPORT_SYMBOL(skb_pull);
1057
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001058/**
1059 * skb_trim - remove end from a buffer
1060 * @skb: buffer to alter
1061 * @len: new length
1062 *
1063 * Cut the length of a buffer down by removing data from the tail. If
1064 * the buffer is already under the length specified it is not modified.
1065 * The skb must be linear.
1066 */
1067void skb_trim(struct sk_buff *skb, unsigned int len)
1068{
1069 if (skb->len > len)
1070 __skb_trim(skb, len);
1071}
1072EXPORT_SYMBOL(skb_trim);
1073
Herbert Xu3cc0e872006-06-09 16:13:38 -07001074/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 */
1076
Herbert Xu3cc0e872006-06-09 16:13:38 -07001077int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Herbert Xu27b437c2006-07-13 19:26:39 -07001079 struct sk_buff **fragp;
1080 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 int offset = skb_headlen(skb);
1082 int nfrags = skb_shinfo(skb)->nr_frags;
1083 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001084 int err;
1085
1086 if (skb_cloned(skb) &&
1087 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1088 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001090 i = 0;
1091 if (offset >= len)
1092 goto drop_pages;
1093
1094 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001096
1097 if (end < len) {
1098 offset = end;
1099 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001101
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001102 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001103
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001104drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001105 skb_shinfo(skb)->nr_frags = i;
1106
1107 for (; i < nfrags; i++)
1108 put_page(skb_shinfo(skb)->frags[i].page);
1109
David S. Millerfbb398a2009-06-09 00:18:59 -07001110 if (skb_has_frags(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001111 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001112 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114
Herbert Xu27b437c2006-07-13 19:26:39 -07001115 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1116 fragp = &frag->next) {
1117 int end = offset + frag->len;
1118
1119 if (skb_shared(frag)) {
1120 struct sk_buff *nfrag;
1121
1122 nfrag = skb_clone(frag, GFP_ATOMIC);
1123 if (unlikely(!nfrag))
1124 return -ENOMEM;
1125
1126 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001127 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001128 frag = nfrag;
1129 *fragp = frag;
1130 }
1131
1132 if (end < len) {
1133 offset = end;
1134 continue;
1135 }
1136
1137 if (end > len &&
1138 unlikely((err = pskb_trim(frag, len - offset))))
1139 return err;
1140
1141 if (frag->next)
1142 skb_drop_list(&frag->next);
1143 break;
1144 }
1145
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001146done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001147 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 skb->data_len -= skb->len - len;
1149 skb->len = len;
1150 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001151 skb->len = len;
1152 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001153 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155
1156 return 0;
1157}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001158EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160/**
1161 * __pskb_pull_tail - advance tail of skb header
1162 * @skb: buffer to reallocate
1163 * @delta: number of bytes to advance tail
1164 *
1165 * The function makes a sense only on a fragmented &sk_buff,
1166 * it expands header moving its tail forward and copying necessary
1167 * data from fragmented part.
1168 *
1169 * &sk_buff MUST have reference count of 1.
1170 *
1171 * Returns %NULL (and &sk_buff does not change) if pull failed
1172 * or value of new tail of skb in the case of success.
1173 *
1174 * All the pointers pointing into skb header may change and must be
1175 * reloaded after call to this function.
1176 */
1177
1178/* Moves tail of skb head forward, copying data from fragmented part,
1179 * when it is necessary.
1180 * 1. It may fail due to malloc failure.
1181 * 2. It may change skb pointers.
1182 *
1183 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1184 */
1185unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1186{
1187 /* If skb has not enough free space at tail, get new one
1188 * plus 128 bytes for future expansions. If we have enough
1189 * room at tail, reallocate without expansion only if skb is cloned.
1190 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001191 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 if (eat > 0 || skb_cloned(skb)) {
1194 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1195 GFP_ATOMIC))
1196 return NULL;
1197 }
1198
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001199 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 BUG();
1201
1202 /* Optimization: no fragments, no reasons to preestimate
1203 * size of pulled pages. Superb.
1204 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001205 if (!skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 goto pull_pages;
1207
1208 /* Estimate size of pulled pages. */
1209 eat = delta;
1210 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1211 if (skb_shinfo(skb)->frags[i].size >= eat)
1212 goto pull_pages;
1213 eat -= skb_shinfo(skb)->frags[i].size;
1214 }
1215
1216 /* If we need update frag list, we are in troubles.
1217 * Certainly, it possible to add an offset to skb data,
1218 * but taking into account that pulling is expected to
1219 * be very rare operation, it is worth to fight against
1220 * further bloating skb head and crucify ourselves here instead.
1221 * Pure masohism, indeed. 8)8)
1222 */
1223 if (eat) {
1224 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1225 struct sk_buff *clone = NULL;
1226 struct sk_buff *insp = NULL;
1227
1228 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001229 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (list->len <= eat) {
1232 /* Eaten as whole. */
1233 eat -= list->len;
1234 list = list->next;
1235 insp = list;
1236 } else {
1237 /* Eaten partially. */
1238
1239 if (skb_shared(list)) {
1240 /* Sucks! We need to fork list. :-( */
1241 clone = skb_clone(list, GFP_ATOMIC);
1242 if (!clone)
1243 return NULL;
1244 insp = list->next;
1245 list = clone;
1246 } else {
1247 /* This may be pulled without
1248 * problems. */
1249 insp = list;
1250 }
1251 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001252 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return NULL;
1254 }
1255 break;
1256 }
1257 } while (eat);
1258
1259 /* Free pulled out fragments. */
1260 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1261 skb_shinfo(skb)->frag_list = list->next;
1262 kfree_skb(list);
1263 }
1264 /* And insert new clone at head. */
1265 if (clone) {
1266 clone->next = list;
1267 skb_shinfo(skb)->frag_list = clone;
1268 }
1269 }
1270 /* Success! Now we may commit changes to skb data. */
1271
1272pull_pages:
1273 eat = delta;
1274 k = 0;
1275 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1276 if (skb_shinfo(skb)->frags[i].size <= eat) {
1277 put_page(skb_shinfo(skb)->frags[i].page);
1278 eat -= skb_shinfo(skb)->frags[i].size;
1279 } else {
1280 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1281 if (eat) {
1282 skb_shinfo(skb)->frags[k].page_offset += eat;
1283 skb_shinfo(skb)->frags[k].size -= eat;
1284 eat = 0;
1285 }
1286 k++;
1287 }
1288 }
1289 skb_shinfo(skb)->nr_frags = k;
1290
1291 skb->tail += delta;
1292 skb->data_len -= delta;
1293
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001294 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001296EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298/* Copy some data bits from skb to kernel buffer. */
1299
1300int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1301{
David S. Miller1a028e52007-04-27 15:21:23 -07001302 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001303 struct sk_buff *frag_iter;
1304 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 if (offset > (int)skb->len - len)
1307 goto fault;
1308
1309 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001310 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (copy > len)
1312 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001313 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if ((len -= copy) == 0)
1315 return 0;
1316 offset += copy;
1317 to += copy;
1318 }
1319
1320 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001321 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001323 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001324
1325 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if ((copy = end - offset) > 0) {
1327 u8 *vaddr;
1328
1329 if (copy > len)
1330 copy = len;
1331
1332 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1333 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001334 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1335 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 kunmap_skb_frag(vaddr);
1337
1338 if ((len -= copy) == 0)
1339 return 0;
1340 offset += copy;
1341 to += copy;
1342 }
David S. Miller1a028e52007-04-27 15:21:23 -07001343 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345
David S. Millerfbb398a2009-06-09 00:18:59 -07001346 skb_walk_frags(skb, frag_iter) {
1347 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
David S. Millerfbb398a2009-06-09 00:18:59 -07001349 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
David S. Millerfbb398a2009-06-09 00:18:59 -07001351 end = start + frag_iter->len;
1352 if ((copy = end - offset) > 0) {
1353 if (copy > len)
1354 copy = len;
1355 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1356 goto fault;
1357 if ((len -= copy) == 0)
1358 return 0;
1359 offset += copy;
1360 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001362 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364 if (!len)
1365 return 0;
1366
1367fault:
1368 return -EFAULT;
1369}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001370EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Jens Axboe9c55e012007-11-06 23:30:13 -08001372/*
1373 * Callback from splice_to_pipe(), if we need to release some pages
1374 * at the end of the spd in case we error'ed out in filling the pipe.
1375 */
1376static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1377{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001378 put_page(spd->pages[i]);
1379}
Jens Axboe9c55e012007-11-06 23:30:13 -08001380
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001381static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1382 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001383 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001384{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001385 struct page *p = sk->sk_sndmsg_page;
1386 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001387
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001388 if (!p) {
1389new_page:
1390 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1391 if (!p)
1392 return NULL;
1393
1394 off = sk->sk_sndmsg_off = 0;
1395 /* hold one ref to this page until it's full */
1396 } else {
1397 unsigned int mlen;
1398
1399 off = sk->sk_sndmsg_off;
1400 mlen = PAGE_SIZE - off;
1401 if (mlen < 64 && mlen < *len) {
1402 put_page(p);
1403 goto new_page;
1404 }
1405
1406 *len = min_t(unsigned int, *len, mlen);
1407 }
1408
1409 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1410 sk->sk_sndmsg_off += *len;
1411 *offset = off;
1412 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001413
1414 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001415}
1416
1417/*
1418 * Fill page/offset/length into spd, if it can hold more pages.
1419 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001420static inline int spd_fill_page(struct splice_pipe_desc *spd,
1421 struct pipe_inode_info *pipe, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001422 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001423 struct sk_buff *skb, int linear,
1424 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001425{
Jens Axboe35f3d142010-05-20 10:43:18 +02001426 if (unlikely(spd->nr_pages == pipe->buffers))
Jens Axboe9c55e012007-11-06 23:30:13 -08001427 return 1;
1428
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001429 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001430 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001431 if (!page)
1432 return 1;
1433 } else
1434 get_page(page);
1435
Jens Axboe9c55e012007-11-06 23:30:13 -08001436 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001437 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001438 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001439 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001440
Jens Axboe9c55e012007-11-06 23:30:13 -08001441 return 0;
1442}
1443
Octavian Purdila2870c432008-07-15 00:49:11 -07001444static inline void __segment_seek(struct page **page, unsigned int *poff,
1445 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001446{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001447 unsigned long n;
1448
Octavian Purdila2870c432008-07-15 00:49:11 -07001449 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001450 n = *poff / PAGE_SIZE;
1451 if (n)
1452 *page = nth_page(*page, n);
1453
Octavian Purdila2870c432008-07-15 00:49:11 -07001454 *poff = *poff % PAGE_SIZE;
1455 *plen -= off;
1456}
Jens Axboe9c55e012007-11-06 23:30:13 -08001457
Octavian Purdila2870c432008-07-15 00:49:11 -07001458static inline int __splice_segment(struct page *page, unsigned int poff,
1459 unsigned int plen, unsigned int *off,
1460 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001461 struct splice_pipe_desc *spd, int linear,
Jens Axboe35f3d142010-05-20 10:43:18 +02001462 struct sock *sk,
1463 struct pipe_inode_info *pipe)
Octavian Purdila2870c432008-07-15 00:49:11 -07001464{
1465 if (!*len)
1466 return 1;
1467
1468 /* skip this segment if already processed */
1469 if (*off >= plen) {
1470 *off -= plen;
1471 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001472 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001473
Octavian Purdila2870c432008-07-15 00:49:11 -07001474 /* ignore any bits we already processed */
1475 if (*off) {
1476 __segment_seek(&page, &poff, &plen, *off);
1477 *off = 0;
1478 }
1479
1480 do {
1481 unsigned int flen = min(*len, plen);
1482
1483 /* the linear region may spread across several pages */
1484 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1485
Jens Axboe35f3d142010-05-20 10:43:18 +02001486 if (spd_fill_page(spd, pipe, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001487 return 1;
1488
1489 __segment_seek(&page, &poff, &plen, flen);
1490 *len -= flen;
1491
1492 } while (*len && plen);
1493
1494 return 0;
1495}
1496
1497/*
1498 * Map linear and fragment data from the skb to spd. It reports failure if the
1499 * pipe is full or if we already spliced the requested length.
1500 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001501static int __skb_splice_bits(struct sk_buff *skb, struct pipe_inode_info *pipe,
1502 unsigned int *offset, unsigned int *len,
1503 struct splice_pipe_desc *spd, struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001504{
1505 int seg;
1506
Jens Axboe9c55e012007-11-06 23:30:13 -08001507 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001508 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001509 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001510 if (__splice_segment(virt_to_page(skb->data),
1511 (unsigned long) skb->data & (PAGE_SIZE - 1),
1512 skb_headlen(skb),
Jens Axboe35f3d142010-05-20 10:43:18 +02001513 offset, len, skb, spd, 1, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001514 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001515
1516 /*
1517 * then map the fragments
1518 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001519 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1520 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1521
Octavian Purdila2870c432008-07-15 00:49:11 -07001522 if (__splice_segment(f->page, f->page_offset, f->size,
Jens Axboe35f3d142010-05-20 10:43:18 +02001523 offset, len, skb, spd, 0, sk, pipe))
Octavian Purdila2870c432008-07-15 00:49:11 -07001524 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001525 }
1526
Octavian Purdila2870c432008-07-15 00:49:11 -07001527 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001528}
1529
1530/*
1531 * Map data from the skb to a pipe. Should handle both the linear part,
1532 * the fragments, and the frag list. It does NOT handle frag lists within
1533 * the frag list, if such a thing exists. We'd probably need to recurse to
1534 * handle that cleanly.
1535 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001536int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001537 struct pipe_inode_info *pipe, unsigned int tlen,
1538 unsigned int flags)
1539{
Jens Axboe35f3d142010-05-20 10:43:18 +02001540 struct partial_page partial[PIPE_DEF_BUFFERS];
1541 struct page *pages[PIPE_DEF_BUFFERS];
Jens Axboe9c55e012007-11-06 23:30:13 -08001542 struct splice_pipe_desc spd = {
1543 .pages = pages,
1544 .partial = partial,
1545 .flags = flags,
1546 .ops = &sock_pipe_buf_ops,
1547 .spd_release = sock_spd_release,
1548 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001549 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001550 struct sock *sk = skb->sk;
Jens Axboe35f3d142010-05-20 10:43:18 +02001551 int ret = 0;
1552
1553 if (splice_grow_spd(pipe, &spd))
1554 return -ENOMEM;
Jens Axboe9c55e012007-11-06 23:30:13 -08001555
1556 /*
1557 * __skb_splice_bits() only fails if the output has no room left,
1558 * so no point in going over the frag_list for the error case.
1559 */
Jens Axboe35f3d142010-05-20 10:43:18 +02001560 if (__skb_splice_bits(skb, pipe, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001561 goto done;
1562 else if (!tlen)
1563 goto done;
1564
1565 /*
1566 * now see if we have a frag_list to map
1567 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001568 skb_walk_frags(skb, frag_iter) {
1569 if (!tlen)
1570 break;
Jens Axboe35f3d142010-05-20 10:43:18 +02001571 if (__skb_splice_bits(frag_iter, pipe, &offset, &tlen, &spd, sk))
David S. Millerfbb398a2009-06-09 00:18:59 -07001572 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001573 }
1574
1575done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001576 if (spd.nr_pages) {
Jens Axboe9c55e012007-11-06 23:30:13 -08001577 /*
1578 * Drop the socket lock, otherwise we have reverse
1579 * locking dependencies between sk_lock and i_mutex
1580 * here as compared to sendfile(). We enter here
1581 * with the socket lock held, and splice_to_pipe() will
1582 * grab the pipe inode lock. For sendfile() emulation,
1583 * we call into ->sendpage() with the i_mutex lock held
1584 * and networking will grab the socket lock.
1585 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001586 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001587 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001588 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001589 }
1590
Jens Axboe35f3d142010-05-20 10:43:18 +02001591 splice_shrink_spd(pipe, &spd);
1592 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -08001593}
1594
Herbert Xu357b40a2005-04-19 22:30:14 -07001595/**
1596 * skb_store_bits - store bits from kernel buffer to skb
1597 * @skb: destination buffer
1598 * @offset: offset in destination
1599 * @from: source buffer
1600 * @len: number of bytes to copy
1601 *
1602 * Copy the specified number of bytes from the source buffer to the
1603 * destination skb. This function handles all the messy bits of
1604 * traversing fragment lists and such.
1605 */
1606
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001607int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001608{
David S. Miller1a028e52007-04-27 15:21:23 -07001609 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001610 struct sk_buff *frag_iter;
1611 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001612
1613 if (offset > (int)skb->len - len)
1614 goto fault;
1615
David S. Miller1a028e52007-04-27 15:21:23 -07001616 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001617 if (copy > len)
1618 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001619 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001620 if ((len -= copy) == 0)
1621 return 0;
1622 offset += copy;
1623 from += copy;
1624 }
1625
1626 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1627 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001628 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001629
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001630 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001631
1632 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001633 if ((copy = end - offset) > 0) {
1634 u8 *vaddr;
1635
1636 if (copy > len)
1637 copy = len;
1638
1639 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001640 memcpy(vaddr + frag->page_offset + offset - start,
1641 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001642 kunmap_skb_frag(vaddr);
1643
1644 if ((len -= copy) == 0)
1645 return 0;
1646 offset += copy;
1647 from += copy;
1648 }
David S. Miller1a028e52007-04-27 15:21:23 -07001649 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001650 }
1651
David S. Millerfbb398a2009-06-09 00:18:59 -07001652 skb_walk_frags(skb, frag_iter) {
1653 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001654
David S. Millerfbb398a2009-06-09 00:18:59 -07001655 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001656
David S. Millerfbb398a2009-06-09 00:18:59 -07001657 end = start + frag_iter->len;
1658 if ((copy = end - offset) > 0) {
1659 if (copy > len)
1660 copy = len;
1661 if (skb_store_bits(frag_iter, offset - start,
1662 from, copy))
1663 goto fault;
1664 if ((len -= copy) == 0)
1665 return 0;
1666 offset += copy;
1667 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001668 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001669 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001670 }
1671 if (!len)
1672 return 0;
1673
1674fault:
1675 return -EFAULT;
1676}
Herbert Xu357b40a2005-04-19 22:30:14 -07001677EXPORT_SYMBOL(skb_store_bits);
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679/* Checksum skb data. */
1680
Al Viro2bbbc862006-11-14 21:37:14 -08001681__wsum skb_checksum(const struct sk_buff *skb, int offset,
1682 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
David S. Miller1a028e52007-04-27 15:21:23 -07001684 int start = skb_headlen(skb);
1685 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001686 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 int pos = 0;
1688
1689 /* Checksum header. */
1690 if (copy > 0) {
1691 if (copy > len)
1692 copy = len;
1693 csum = csum_partial(skb->data + offset, copy, csum);
1694 if ((len -= copy) == 0)
1695 return csum;
1696 offset += copy;
1697 pos = copy;
1698 }
1699
1700 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001701 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001703 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001704
1705 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001707 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 u8 *vaddr;
1709 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1710
1711 if (copy > len)
1712 copy = len;
1713 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001714 csum2 = csum_partial(vaddr + frag->page_offset +
1715 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 kunmap_skb_frag(vaddr);
1717 csum = csum_block_add(csum, csum2, pos);
1718 if (!(len -= copy))
1719 return csum;
1720 offset += copy;
1721 pos += copy;
1722 }
David S. Miller1a028e52007-04-27 15:21:23 -07001723 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
1725
David S. Millerfbb398a2009-06-09 00:18:59 -07001726 skb_walk_frags(skb, frag_iter) {
1727 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
David S. Millerfbb398a2009-06-09 00:18:59 -07001729 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
David S. Millerfbb398a2009-06-09 00:18:59 -07001731 end = start + frag_iter->len;
1732 if ((copy = end - offset) > 0) {
1733 __wsum csum2;
1734 if (copy > len)
1735 copy = len;
1736 csum2 = skb_checksum(frag_iter, offset - start,
1737 copy, 0);
1738 csum = csum_block_add(csum, csum2, pos);
1739 if ((len -= copy) == 0)
1740 return csum;
1741 offset += copy;
1742 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001744 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001746 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 return csum;
1749}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001750EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752/* Both of above in one bottle. */
1753
Al Viro81d77662006-11-14 21:37:33 -08001754__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1755 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
David S. Miller1a028e52007-04-27 15:21:23 -07001757 int start = skb_headlen(skb);
1758 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001759 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 int pos = 0;
1761
1762 /* Copy header. */
1763 if (copy > 0) {
1764 if (copy > len)
1765 copy = len;
1766 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1767 copy, csum);
1768 if ((len -= copy) == 0)
1769 return csum;
1770 offset += copy;
1771 to += copy;
1772 pos = copy;
1773 }
1774
1775 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001776 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001778 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001779
1780 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001782 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 u8 *vaddr;
1784 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1785
1786 if (copy > len)
1787 copy = len;
1788 vaddr = kmap_skb_frag(frag);
1789 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001790 frag->page_offset +
1791 offset - start, to,
1792 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 kunmap_skb_frag(vaddr);
1794 csum = csum_block_add(csum, csum2, pos);
1795 if (!(len -= copy))
1796 return csum;
1797 offset += copy;
1798 to += copy;
1799 pos += copy;
1800 }
David S. Miller1a028e52007-04-27 15:21:23 -07001801 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
1803
David S. Millerfbb398a2009-06-09 00:18:59 -07001804 skb_walk_frags(skb, frag_iter) {
1805 __wsum csum2;
1806 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
David S. Millerfbb398a2009-06-09 00:18:59 -07001808 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
David S. Millerfbb398a2009-06-09 00:18:59 -07001810 end = start + frag_iter->len;
1811 if ((copy = end - offset) > 0) {
1812 if (copy > len)
1813 copy = len;
1814 csum2 = skb_copy_and_csum_bits(frag_iter,
1815 offset - start,
1816 to, copy, 0);
1817 csum = csum_block_add(csum, csum2, pos);
1818 if ((len -= copy) == 0)
1819 return csum;
1820 offset += copy;
1821 to += copy;
1822 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001824 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001826 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return csum;
1828}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001829EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1832{
Al Virod3bc23e2006-11-14 21:24:49 -08001833 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 long csstart;
1835
Patrick McHardy84fa7932006-08-29 16:44:56 -07001836 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001837 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 else
1839 csstart = skb_headlen(skb);
1840
Kris Katterjohn09a62662006-01-08 22:24:28 -08001841 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001843 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 csum = 0;
1846 if (csstart != skb->len)
1847 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1848 skb->len - csstart, 0);
1849
Patrick McHardy84fa7932006-08-29 16:44:56 -07001850 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001851 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Al Virod3bc23e2006-11-14 21:24:49 -08001853 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001856EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858/**
1859 * skb_dequeue - remove from the head of the queue
1860 * @list: list to dequeue from
1861 *
1862 * Remove the head of the list. The list lock is taken so the function
1863 * may be used safely with other locking list functions. The head item is
1864 * returned or %NULL if the list is empty.
1865 */
1866
1867struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1868{
1869 unsigned long flags;
1870 struct sk_buff *result;
1871
1872 spin_lock_irqsave(&list->lock, flags);
1873 result = __skb_dequeue(list);
1874 spin_unlock_irqrestore(&list->lock, flags);
1875 return result;
1876}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001877EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879/**
1880 * skb_dequeue_tail - remove from the tail of the queue
1881 * @list: list to dequeue from
1882 *
1883 * Remove the tail of the list. The list lock is taken so the function
1884 * may be used safely with other locking list functions. The tail item is
1885 * returned or %NULL if the list is empty.
1886 */
1887struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1888{
1889 unsigned long flags;
1890 struct sk_buff *result;
1891
1892 spin_lock_irqsave(&list->lock, flags);
1893 result = __skb_dequeue_tail(list);
1894 spin_unlock_irqrestore(&list->lock, flags);
1895 return result;
1896}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001897EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899/**
1900 * skb_queue_purge - empty a list
1901 * @list: list to empty
1902 *
1903 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1904 * the list and one reference dropped. This function takes the list
1905 * lock and is atomic with respect to other list locking functions.
1906 */
1907void skb_queue_purge(struct sk_buff_head *list)
1908{
1909 struct sk_buff *skb;
1910 while ((skb = skb_dequeue(list)) != NULL)
1911 kfree_skb(skb);
1912}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001913EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915/**
1916 * skb_queue_head - queue a buffer at the list head
1917 * @list: list to use
1918 * @newsk: buffer to queue
1919 *
1920 * Queue a buffer at the start of the list. This function takes the
1921 * list lock and can be used safely with other locking &sk_buff functions
1922 * safely.
1923 *
1924 * A buffer cannot be placed on two lists at the same time.
1925 */
1926void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1927{
1928 unsigned long flags;
1929
1930 spin_lock_irqsave(&list->lock, flags);
1931 __skb_queue_head(list, newsk);
1932 spin_unlock_irqrestore(&list->lock, flags);
1933}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001934EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936/**
1937 * skb_queue_tail - queue a buffer at the list tail
1938 * @list: list to use
1939 * @newsk: buffer to queue
1940 *
1941 * Queue a buffer at the tail of the list. This function takes the
1942 * list lock and can be used safely with other locking &sk_buff functions
1943 * safely.
1944 *
1945 * A buffer cannot be placed on two lists at the same time.
1946 */
1947void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1948{
1949 unsigned long flags;
1950
1951 spin_lock_irqsave(&list->lock, flags);
1952 __skb_queue_tail(list, newsk);
1953 spin_unlock_irqrestore(&list->lock, flags);
1954}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001955EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957/**
1958 * skb_unlink - remove a buffer from a list
1959 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001960 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 *
David S. Miller8728b832005-08-09 19:25:21 -07001962 * Remove a packet from a list. The list locks are taken and this
1963 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 *
David S. Miller8728b832005-08-09 19:25:21 -07001965 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 */
David S. Miller8728b832005-08-09 19:25:21 -07001967void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
David S. Miller8728b832005-08-09 19:25:21 -07001969 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
David S. Miller8728b832005-08-09 19:25:21 -07001971 spin_lock_irqsave(&list->lock, flags);
1972 __skb_unlink(skb, list);
1973 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001975EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977/**
1978 * skb_append - append a buffer
1979 * @old: buffer to insert after
1980 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001981 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 *
1983 * Place a packet after a given packet in a list. The list locks are taken
1984 * and this function is atomic with respect to other list locked calls.
1985 * A buffer cannot be placed on two lists at the same time.
1986 */
David S. Miller8728b832005-08-09 19:25:21 -07001987void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
1989 unsigned long flags;
1990
David S. Miller8728b832005-08-09 19:25:21 -07001991 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001992 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001993 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001995EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997/**
1998 * skb_insert - insert a buffer
1999 * @old: buffer to insert before
2000 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07002001 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 *
David S. Miller8728b832005-08-09 19:25:21 -07002003 * Place a packet before a given packet in a list. The list locks are
2004 * taken and this function is atomic with respect to other list locked
2005 * calls.
2006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 * A buffer cannot be placed on two lists at the same time.
2008 */
David S. Miller8728b832005-08-09 19:25:21 -07002009void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 unsigned long flags;
2012
David S. Miller8728b832005-08-09 19:25:21 -07002013 spin_lock_irqsave(&list->lock, flags);
2014 __skb_insert(newsk, old->prev, old, list);
2015 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002017EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019static inline void skb_split_inside_header(struct sk_buff *skb,
2020 struct sk_buff* skb1,
2021 const u32 len, const int pos)
2022{
2023 int i;
2024
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002025 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2026 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 /* And move data appendix as is. */
2028 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2029 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2030
2031 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2032 skb_shinfo(skb)->nr_frags = 0;
2033 skb1->data_len = skb->data_len;
2034 skb1->len += skb1->data_len;
2035 skb->data_len = 0;
2036 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002037 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
2040static inline void skb_split_no_header(struct sk_buff *skb,
2041 struct sk_buff* skb1,
2042 const u32 len, int pos)
2043{
2044 int i, k = 0;
2045 const int nfrags = skb_shinfo(skb)->nr_frags;
2046
2047 skb_shinfo(skb)->nr_frags = 0;
2048 skb1->len = skb1->data_len = skb->len - len;
2049 skb->len = len;
2050 skb->data_len = len - pos;
2051
2052 for (i = 0; i < nfrags; i++) {
2053 int size = skb_shinfo(skb)->frags[i].size;
2054
2055 if (pos + size > len) {
2056 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2057
2058 if (pos < len) {
2059 /* Split frag.
2060 * We have two variants in this case:
2061 * 1. Move all the frag to the second
2062 * part, if it is possible. F.e.
2063 * this approach is mandatory for TUX,
2064 * where splitting is expensive.
2065 * 2. Split is accurately. We make this.
2066 */
2067 get_page(skb_shinfo(skb)->frags[i].page);
2068 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2069 skb_shinfo(skb1)->frags[0].size -= len - pos;
2070 skb_shinfo(skb)->frags[i].size = len - pos;
2071 skb_shinfo(skb)->nr_frags++;
2072 }
2073 k++;
2074 } else
2075 skb_shinfo(skb)->nr_frags++;
2076 pos += size;
2077 }
2078 skb_shinfo(skb1)->nr_frags = k;
2079}
2080
2081/**
2082 * skb_split - Split fragmented skb to two parts at length len.
2083 * @skb: the buffer to split
2084 * @skb1: the buffer to receive the second part
2085 * @len: new length for skb
2086 */
2087void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2088{
2089 int pos = skb_headlen(skb);
2090
2091 if (len < pos) /* Split line is inside header. */
2092 skb_split_inside_header(skb, skb1, len, pos);
2093 else /* Second chunk has no header, nothing to copy. */
2094 skb_split_no_header(skb, skb1, len, pos);
2095}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002096EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002098/* Shifting from/to a cloned skb is a no-go.
2099 *
2100 * Caller cannot keep skb_shinfo related pointers past calling here!
2101 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002102static int skb_prepare_for_shift(struct sk_buff *skb)
2103{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002104 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002105}
2106
2107/**
2108 * skb_shift - Shifts paged data partially from skb to another
2109 * @tgt: buffer into which tail data gets added
2110 * @skb: buffer from which the paged data comes from
2111 * @shiftlen: shift up to this many bytes
2112 *
2113 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2114 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2115 * It's up to caller to free skb if everything was shifted.
2116 *
2117 * If @tgt runs out of frags, the whole operation is aborted.
2118 *
2119 * Skb cannot include anything else but paged data while tgt is allowed
2120 * to have non-paged data as well.
2121 *
2122 * TODO: full sized shift could be optimized but that would need
2123 * specialized skb free'er to handle frags without up-to-date nr_frags.
2124 */
2125int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2126{
2127 int from, to, merge, todo;
2128 struct skb_frag_struct *fragfrom, *fragto;
2129
2130 BUG_ON(shiftlen > skb->len);
2131 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2132
2133 todo = shiftlen;
2134 from = 0;
2135 to = skb_shinfo(tgt)->nr_frags;
2136 fragfrom = &skb_shinfo(skb)->frags[from];
2137
2138 /* Actual merge is delayed until the point when we know we can
2139 * commit all, so that we don't have to undo partial changes
2140 */
2141 if (!to ||
2142 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2143 merge = -1;
2144 } else {
2145 merge = to - 1;
2146
2147 todo -= fragfrom->size;
2148 if (todo < 0) {
2149 if (skb_prepare_for_shift(skb) ||
2150 skb_prepare_for_shift(tgt))
2151 return 0;
2152
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002153 /* All previous frag pointers might be stale! */
2154 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002155 fragto = &skb_shinfo(tgt)->frags[merge];
2156
2157 fragto->size += shiftlen;
2158 fragfrom->size -= shiftlen;
2159 fragfrom->page_offset += shiftlen;
2160
2161 goto onlymerged;
2162 }
2163
2164 from++;
2165 }
2166
2167 /* Skip full, not-fitting skb to avoid expensive operations */
2168 if ((shiftlen == skb->len) &&
2169 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2170 return 0;
2171
2172 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2173 return 0;
2174
2175 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2176 if (to == MAX_SKB_FRAGS)
2177 return 0;
2178
2179 fragfrom = &skb_shinfo(skb)->frags[from];
2180 fragto = &skb_shinfo(tgt)->frags[to];
2181
2182 if (todo >= fragfrom->size) {
2183 *fragto = *fragfrom;
2184 todo -= fragfrom->size;
2185 from++;
2186 to++;
2187
2188 } else {
2189 get_page(fragfrom->page);
2190 fragto->page = fragfrom->page;
2191 fragto->page_offset = fragfrom->page_offset;
2192 fragto->size = todo;
2193
2194 fragfrom->page_offset += todo;
2195 fragfrom->size -= todo;
2196 todo = 0;
2197
2198 to++;
2199 break;
2200 }
2201 }
2202
2203 /* Ready to "commit" this state change to tgt */
2204 skb_shinfo(tgt)->nr_frags = to;
2205
2206 if (merge >= 0) {
2207 fragfrom = &skb_shinfo(skb)->frags[0];
2208 fragto = &skb_shinfo(tgt)->frags[merge];
2209
2210 fragto->size += fragfrom->size;
2211 put_page(fragfrom->page);
2212 }
2213
2214 /* Reposition in the original skb */
2215 to = 0;
2216 while (from < skb_shinfo(skb)->nr_frags)
2217 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2218 skb_shinfo(skb)->nr_frags = to;
2219
2220 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2221
2222onlymerged:
2223 /* Most likely the tgt won't ever need its checksum anymore, skb on
2224 * the other hand might need it if it needs to be resent
2225 */
2226 tgt->ip_summed = CHECKSUM_PARTIAL;
2227 skb->ip_summed = CHECKSUM_PARTIAL;
2228
2229 /* Yak, is it really working this way? Some helper please? */
2230 skb->len -= shiftlen;
2231 skb->data_len -= shiftlen;
2232 skb->truesize -= shiftlen;
2233 tgt->len += shiftlen;
2234 tgt->data_len += shiftlen;
2235 tgt->truesize += shiftlen;
2236
2237 return shiftlen;
2238}
2239
Thomas Graf677e90e2005-06-23 20:59:51 -07002240/**
2241 * skb_prepare_seq_read - Prepare a sequential read of skb data
2242 * @skb: the buffer to read
2243 * @from: lower offset of data to be read
2244 * @to: upper offset of data to be read
2245 * @st: state variable
2246 *
2247 * Initializes the specified state variable. Must be called before
2248 * invoking skb_seq_read() for the first time.
2249 */
2250void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2251 unsigned int to, struct skb_seq_state *st)
2252{
2253 st->lower_offset = from;
2254 st->upper_offset = to;
2255 st->root_skb = st->cur_skb = skb;
2256 st->frag_idx = st->stepped_offset = 0;
2257 st->frag_data = NULL;
2258}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002259EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002260
2261/**
2262 * skb_seq_read - Sequentially read skb data
2263 * @consumed: number of bytes consumed by the caller so far
2264 * @data: destination pointer for data to be returned
2265 * @st: state variable
2266 *
2267 * Reads a block of skb data at &consumed relative to the
2268 * lower offset specified to skb_prepare_seq_read(). Assigns
2269 * the head of the data block to &data and returns the length
2270 * of the block or 0 if the end of the skb data or the upper
2271 * offset has been reached.
2272 *
2273 * The caller is not required to consume all of the data
2274 * returned, i.e. &consumed is typically set to the number
2275 * of bytes already consumed and the next call to
2276 * skb_seq_read() will return the remaining part of the block.
2277 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002278 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002279 * this limitation is the cost for zerocopy seqeuental
2280 * reads of potentially non linear data.
2281 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002282 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002283 * at the moment, state->root_skb could be replaced with
2284 * a stack for this purpose.
2285 */
2286unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2287 struct skb_seq_state *st)
2288{
2289 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2290 skb_frag_t *frag;
2291
2292 if (unlikely(abs_offset >= st->upper_offset))
2293 return 0;
2294
2295next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002296 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002297
Thomas Chenault995b3372009-05-18 21:43:27 -07002298 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002299 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002300 return block_limit - abs_offset;
2301 }
2302
2303 if (st->frag_idx == 0 && !st->frag_data)
2304 st->stepped_offset += skb_headlen(st->cur_skb);
2305
2306 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2307 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2308 block_limit = frag->size + st->stepped_offset;
2309
2310 if (abs_offset < block_limit) {
2311 if (!st->frag_data)
2312 st->frag_data = kmap_skb_frag(frag);
2313
2314 *data = (u8 *) st->frag_data + frag->page_offset +
2315 (abs_offset - st->stepped_offset);
2316
2317 return block_limit - abs_offset;
2318 }
2319
2320 if (st->frag_data) {
2321 kunmap_skb_frag(st->frag_data);
2322 st->frag_data = NULL;
2323 }
2324
2325 st->frag_idx++;
2326 st->stepped_offset += frag->size;
2327 }
2328
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002329 if (st->frag_data) {
2330 kunmap_skb_frag(st->frag_data);
2331 st->frag_data = NULL;
2332 }
2333
David S. Millerfbb398a2009-06-09 00:18:59 -07002334 if (st->root_skb == st->cur_skb && skb_has_frags(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002335 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002336 st->frag_idx = 0;
2337 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002338 } else if (st->cur_skb->next) {
2339 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002340 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002341 goto next_skb;
2342 }
2343
2344 return 0;
2345}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002346EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002347
2348/**
2349 * skb_abort_seq_read - Abort a sequential read of skb data
2350 * @st: state variable
2351 *
2352 * Must be called if skb_seq_read() was not called until it
2353 * returned 0.
2354 */
2355void skb_abort_seq_read(struct skb_seq_state *st)
2356{
2357 if (st->frag_data)
2358 kunmap_skb_frag(st->frag_data);
2359}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002360EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002361
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002362#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2363
2364static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2365 struct ts_config *conf,
2366 struct ts_state *state)
2367{
2368 return skb_seq_read(offset, text, TS_SKB_CB(state));
2369}
2370
2371static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2372{
2373 skb_abort_seq_read(TS_SKB_CB(state));
2374}
2375
2376/**
2377 * skb_find_text - Find a text pattern in skb data
2378 * @skb: the buffer to look in
2379 * @from: search offset
2380 * @to: search limit
2381 * @config: textsearch configuration
2382 * @state: uninitialized textsearch state variable
2383 *
2384 * Finds a pattern in the skb data according to the specified
2385 * textsearch configuration. Use textsearch_next() to retrieve
2386 * subsequent occurrences of the pattern. Returns the offset
2387 * to the first occurrence or UINT_MAX if no match was found.
2388 */
2389unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2390 unsigned int to, struct ts_config *config,
2391 struct ts_state *state)
2392{
Phil Oesterf72b9482006-06-26 00:00:57 -07002393 unsigned int ret;
2394
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002395 config->get_next_block = skb_ts_get_next_block;
2396 config->finish = skb_ts_finish;
2397
2398 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2399
Phil Oesterf72b9482006-06-26 00:00:57 -07002400 ret = textsearch_find(config, state);
2401 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002402}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002403EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002404
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002405/**
2406 * skb_append_datato_frags: - append the user data to a skb
2407 * @sk: sock structure
2408 * @skb: skb structure to be appened with user data.
2409 * @getfrag: call back function to be used for getting the user data
2410 * @from: pointer to user message iov
2411 * @length: length of the iov message
2412 *
2413 * Description: This procedure append the user data in the fragment part
2414 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2415 */
2416int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002417 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002418 int len, int odd, struct sk_buff *skb),
2419 void *from, int length)
2420{
2421 int frg_cnt = 0;
2422 skb_frag_t *frag = NULL;
2423 struct page *page = NULL;
2424 int copy, left;
2425 int offset = 0;
2426 int ret;
2427
2428 do {
2429 /* Return error if we don't have space for new frag */
2430 frg_cnt = skb_shinfo(skb)->nr_frags;
2431 if (frg_cnt >= MAX_SKB_FRAGS)
2432 return -EFAULT;
2433
2434 /* allocate a new page for next frag */
2435 page = alloc_pages(sk->sk_allocation, 0);
2436
2437 /* If alloc_page fails just return failure and caller will
2438 * free previous allocated pages by doing kfree_skb()
2439 */
2440 if (page == NULL)
2441 return -ENOMEM;
2442
2443 /* initialize the next frag */
2444 sk->sk_sndmsg_page = page;
2445 sk->sk_sndmsg_off = 0;
2446 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2447 skb->truesize += PAGE_SIZE;
2448 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2449
2450 /* get the new initialized frag */
2451 frg_cnt = skb_shinfo(skb)->nr_frags;
2452 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2453
2454 /* copy the user data to page */
2455 left = PAGE_SIZE - frag->page_offset;
2456 copy = (length > left)? left : length;
2457
2458 ret = getfrag(from, (page_address(frag->page) +
2459 frag->page_offset + frag->size),
2460 offset, copy, 0, skb);
2461 if (ret < 0)
2462 return -EFAULT;
2463
2464 /* copy was successful so update the size parameters */
2465 sk->sk_sndmsg_off += copy;
2466 frag->size += copy;
2467 skb->len += copy;
2468 skb->data_len += copy;
2469 offset += copy;
2470 length -= copy;
2471
2472 } while (length > 0);
2473
2474 return 0;
2475}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002476EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002477
Herbert Xucbb042f2006-03-20 22:43:56 -08002478/**
2479 * skb_pull_rcsum - pull skb and update receive checksum
2480 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002481 * @len: length of data pulled
2482 *
2483 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002484 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002485 * receive path processing instead of skb_pull unless you know
2486 * that the checksum difference is zero (e.g., a valid IP header)
2487 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002488 */
2489unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2490{
2491 BUG_ON(len > skb->len);
2492 skb->len -= len;
2493 BUG_ON(skb->len < skb->data_len);
2494 skb_postpull_rcsum(skb, skb->data, len);
2495 return skb->data += len;
2496}
2497
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002498EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2499
Herbert Xuf4c50d92006-06-22 03:02:40 -07002500/**
2501 * skb_segment - Perform protocol segmentation on skb.
2502 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002503 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002504 *
2505 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002506 * a pointer to the first in a list of new skbs for the segments.
2507 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002508 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002509struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002510{
2511 struct sk_buff *segs = NULL;
2512 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002513 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002514 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002515 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002516 unsigned int offset = doffset;
2517 unsigned int headroom;
2518 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002519 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002520 int nfrags = skb_shinfo(skb)->nr_frags;
2521 int err = -ENOMEM;
2522 int i = 0;
2523 int pos;
2524
2525 __skb_push(skb, doffset);
2526 headroom = skb_headroom(skb);
2527 pos = skb_headlen(skb);
2528
2529 do {
2530 struct sk_buff *nskb;
2531 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002532 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002533 int size;
2534
2535 len = skb->len - offset;
2536 if (len > mss)
2537 len = mss;
2538
2539 hsize = skb_headlen(skb) - offset;
2540 if (hsize < 0)
2541 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002542 if (hsize > len || !sg)
2543 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002544
Herbert Xu89319d382008-12-15 23:26:06 -08002545 if (!hsize && i >= nfrags) {
2546 BUG_ON(fskb->len != len);
2547
2548 pos += len;
2549 nskb = skb_clone(fskb, GFP_ATOMIC);
2550 fskb = fskb->next;
2551
2552 if (unlikely(!nskb))
2553 goto err;
2554
2555 hsize = skb_end_pointer(nskb) - nskb->head;
2556 if (skb_cow_head(nskb, doffset + headroom)) {
2557 kfree_skb(nskb);
2558 goto err;
2559 }
2560
2561 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2562 hsize;
2563 skb_release_head_state(nskb);
2564 __skb_push(nskb, doffset);
2565 } else {
2566 nskb = alloc_skb(hsize + doffset + headroom,
2567 GFP_ATOMIC);
2568
2569 if (unlikely(!nskb))
2570 goto err;
2571
2572 skb_reserve(nskb, headroom);
2573 __skb_put(nskb, doffset);
2574 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002575
2576 if (segs)
2577 tail->next = nskb;
2578 else
2579 segs = nskb;
2580 tail = nskb;
2581
Herbert Xu6f85a122008-08-15 14:55:02 -07002582 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002583 nskb->mac_len = skb->mac_len;
2584
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002585 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002586 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002587 nskb->transport_header = (nskb->network_header +
2588 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002589 skb_copy_from_linear_data(skb, nskb->data, doffset);
2590
Herbert Xu2f181852009-03-28 23:39:18 -07002591 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002592 continue;
2593
Herbert Xuf4c50d92006-06-22 03:02:40 -07002594 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002595 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002596 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2597 skb_put(nskb, len),
2598 len, 0);
2599 continue;
2600 }
2601
2602 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002603
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002604 skb_copy_from_linear_data_offset(skb, offset,
2605 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002606
Herbert Xu89319d382008-12-15 23:26:06 -08002607 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002608 *frag = skb_shinfo(skb)->frags[i];
2609 get_page(frag->page);
2610 size = frag->size;
2611
2612 if (pos < offset) {
2613 frag->page_offset += offset - pos;
2614 frag->size -= offset - pos;
2615 }
2616
Herbert Xu89319d382008-12-15 23:26:06 -08002617 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002618
2619 if (pos + size <= offset + len) {
2620 i++;
2621 pos += size;
2622 } else {
2623 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002624 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002625 }
2626
2627 frag++;
2628 }
2629
Herbert Xu89319d382008-12-15 23:26:06 -08002630 if (pos < offset + len) {
2631 struct sk_buff *fskb2 = fskb;
2632
2633 BUG_ON(pos + fskb->len != offset + len);
2634
2635 pos += fskb->len;
2636 fskb = fskb->next;
2637
2638 if (fskb2->next) {
2639 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2640 if (!fskb2)
2641 goto err;
2642 } else
2643 skb_get(fskb2);
2644
David S. Millerfbb398a2009-06-09 00:18:59 -07002645 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002646 skb_shinfo(nskb)->frag_list = fskb2;
2647 }
2648
2649skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002650 nskb->data_len = len - hsize;
2651 nskb->len += nskb->data_len;
2652 nskb->truesize += nskb->data_len;
2653 } while ((offset += len) < skb->len);
2654
2655 return segs;
2656
2657err:
2658 while ((skb = segs)) {
2659 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002660 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002661 }
2662 return ERR_PTR(err);
2663}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002664EXPORT_SYMBOL_GPL(skb_segment);
2665
Herbert Xu71d93b32008-12-15 23:42:33 -08002666int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2667{
2668 struct sk_buff *p = *head;
2669 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002670 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2671 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002672 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002673 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002674 unsigned int offset = skb_gro_offset(skb);
2675 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002676
Herbert Xu86911732009-01-29 14:19:50 +00002677 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002678 return -E2BIG;
2679
Herbert Xu9aaa1562009-05-26 18:50:33 +00002680 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002681 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002682 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002683 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002684 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002685 int i = skbinfo->nr_frags;
2686 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002687
Herbert Xu66e92fc2009-05-26 18:50:32 +00002688 offset -= headlen;
2689
2690 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002691 return -E2BIG;
2692
Herbert Xu9aaa1562009-05-26 18:50:33 +00002693 pinfo->nr_frags = nr_frags;
2694 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002695
Herbert Xu9aaa1562009-05-26 18:50:33 +00002696 frag = pinfo->frags + nr_frags;
2697 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002698 do {
2699 *--frag = *--frag2;
2700 } while (--i);
2701
2702 frag->page_offset += offset;
2703 frag->size -= offset;
2704
Herbert Xuf5572062009-01-14 20:40:03 -08002705 skb->truesize -= skb->data_len;
2706 skb->len -= skb->data_len;
2707 skb->data_len = 0;
2708
Herbert Xu5d38a072009-01-04 16:13:40 -08002709 NAPI_GRO_CB(skb)->free = 1;
2710 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002711 } else if (skb_gro_len(p) != pinfo->gso_size)
2712 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002713
2714 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002715 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002716 if (unlikely(!nskb))
2717 return -ENOMEM;
2718
2719 __copy_skb_header(nskb, p);
2720 nskb->mac_len = p->mac_len;
2721
2722 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002723 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002724
Herbert Xu86911732009-01-29 14:19:50 +00002725 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002726 skb_set_network_header(nskb, skb_network_offset(p));
2727 skb_set_transport_header(nskb, skb_transport_offset(p));
2728
Herbert Xu86911732009-01-29 14:19:50 +00002729 __skb_pull(p, skb_gro_offset(p));
2730 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2731 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002732
2733 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2734 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002735 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002736 skb_header_release(p);
2737 nskb->prev = p;
2738
2739 nskb->data_len += p->len;
2740 nskb->truesize += p->len;
2741 nskb->len += p->len;
2742
2743 *head = nskb;
2744 nskb->next = p->next;
2745 p->next = NULL;
2746
2747 p = nskb;
2748
2749merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002750 if (offset > headlen) {
Herbert Xu9aaa1562009-05-26 18:50:33 +00002751 skbinfo->frags[0].page_offset += offset - headlen;
2752 skbinfo->frags[0].size -= offset - headlen;
Herbert Xu67147ba2009-05-26 18:50:22 +00002753 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002754 }
2755
Herbert Xu67147ba2009-05-26 18:50:22 +00002756 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002757
Herbert Xu71d93b32008-12-15 23:42:33 -08002758 p->prev->next = skb;
2759 p->prev = skb;
2760 skb_header_release(skb);
2761
Herbert Xu5d38a072009-01-04 16:13:40 -08002762done:
2763 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002764 p->data_len += len;
2765 p->truesize += len;
2766 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002767
2768 NAPI_GRO_CB(skb)->same_flow = 1;
2769 return 0;
2770}
2771EXPORT_SYMBOL_GPL(skb_gro_receive);
2772
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773void __init skb_init(void)
2774{
2775 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2776 sizeof(struct sk_buff),
2777 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002778 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002779 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002780 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2781 (2*sizeof(struct sk_buff)) +
2782 sizeof(atomic_t),
2783 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002784 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002785 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
2787
David Howells716ea3a2007-04-02 20:19:53 -07002788/**
2789 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2790 * @skb: Socket buffer containing the buffers to be mapped
2791 * @sg: The scatter-gather list to map into
2792 * @offset: The offset into the buffer's contents to start mapping
2793 * @len: Length of buffer space to be mapped
2794 *
2795 * Fill the specified scatter-gather list with mappings/pointers into a
2796 * region of the buffer space attached to a socket buffer.
2797 */
David S. Miller51c739d2007-10-30 21:29:29 -07002798static int
2799__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002800{
David S. Miller1a028e52007-04-27 15:21:23 -07002801 int start = skb_headlen(skb);
2802 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002803 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002804 int elt = 0;
2805
2806 if (copy > 0) {
2807 if (copy > len)
2808 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002809 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002810 elt++;
2811 if ((len -= copy) == 0)
2812 return elt;
2813 offset += copy;
2814 }
2815
2816 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002817 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002818
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002819 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002820
2821 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002822 if ((copy = end - offset) > 0) {
2823 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2824
2825 if (copy > len)
2826 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002827 sg_set_page(&sg[elt], frag->page, copy,
2828 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002829 elt++;
2830 if (!(len -= copy))
2831 return elt;
2832 offset += copy;
2833 }
David S. Miller1a028e52007-04-27 15:21:23 -07002834 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002835 }
2836
David S. Millerfbb398a2009-06-09 00:18:59 -07002837 skb_walk_frags(skb, frag_iter) {
2838 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002839
David S. Millerfbb398a2009-06-09 00:18:59 -07002840 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002841
David S. Millerfbb398a2009-06-09 00:18:59 -07002842 end = start + frag_iter->len;
2843 if ((copy = end - offset) > 0) {
2844 if (copy > len)
2845 copy = len;
2846 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2847 copy);
2848 if ((len -= copy) == 0)
2849 return elt;
2850 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002851 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002852 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002853 }
2854 BUG_ON(len);
2855 return elt;
2856}
2857
David S. Miller51c739d2007-10-30 21:29:29 -07002858int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2859{
2860 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2861
Jens Axboec46f2332007-10-31 12:06:37 +01002862 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002863
2864 return nsg;
2865}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002866EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002867
David Howells716ea3a2007-04-02 20:19:53 -07002868/**
2869 * skb_cow_data - Check that a socket buffer's data buffers are writable
2870 * @skb: The socket buffer to check.
2871 * @tailbits: Amount of trailing space to be added
2872 * @trailer: Returned pointer to the skb where the @tailbits space begins
2873 *
2874 * Make sure that the data buffers attached to a socket buffer are
2875 * writable. If they are not, private copies are made of the data buffers
2876 * and the socket buffer is set to use these instead.
2877 *
2878 * If @tailbits is given, make sure that there is space to write @tailbits
2879 * bytes of data beyond current end of socket buffer. @trailer will be
2880 * set to point to the skb in which this space begins.
2881 *
2882 * The number of scatterlist elements required to completely map the
2883 * COW'd and extended socket buffer will be returned.
2884 */
2885int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2886{
2887 int copyflag;
2888 int elt;
2889 struct sk_buff *skb1, **skb_p;
2890
2891 /* If skb is cloned or its head is paged, reallocate
2892 * head pulling out all the pages (pages are considered not writable
2893 * at the moment even if they are anonymous).
2894 */
2895 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2896 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2897 return -ENOMEM;
2898
2899 /* Easy case. Most of packets will go this way. */
David S. Millerfbb398a2009-06-09 00:18:59 -07002900 if (!skb_has_frags(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002901 /* A little of trouble, not enough of space for trailer.
2902 * This should not happen, when stack is tuned to generate
2903 * good frames. OK, on miss we reallocate and reserve even more
2904 * space, 128 bytes is fair. */
2905
2906 if (skb_tailroom(skb) < tailbits &&
2907 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2908 return -ENOMEM;
2909
2910 /* Voila! */
2911 *trailer = skb;
2912 return 1;
2913 }
2914
2915 /* Misery. We are in troubles, going to mincer fragments... */
2916
2917 elt = 1;
2918 skb_p = &skb_shinfo(skb)->frag_list;
2919 copyflag = 0;
2920
2921 while ((skb1 = *skb_p) != NULL) {
2922 int ntail = 0;
2923
2924 /* The fragment is partially pulled by someone,
2925 * this can happen on input. Copy it and everything
2926 * after it. */
2927
2928 if (skb_shared(skb1))
2929 copyflag = 1;
2930
2931 /* If the skb is the last, worry about trailer. */
2932
2933 if (skb1->next == NULL && tailbits) {
2934 if (skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002935 skb_has_frags(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07002936 skb_tailroom(skb1) < tailbits)
2937 ntail = tailbits + 128;
2938 }
2939
2940 if (copyflag ||
2941 skb_cloned(skb1) ||
2942 ntail ||
2943 skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002944 skb_has_frags(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07002945 struct sk_buff *skb2;
2946
2947 /* Fuck, we are miserable poor guys... */
2948 if (ntail == 0)
2949 skb2 = skb_copy(skb1, GFP_ATOMIC);
2950 else
2951 skb2 = skb_copy_expand(skb1,
2952 skb_headroom(skb1),
2953 ntail,
2954 GFP_ATOMIC);
2955 if (unlikely(skb2 == NULL))
2956 return -ENOMEM;
2957
2958 if (skb1->sk)
2959 skb_set_owner_w(skb2, skb1->sk);
2960
2961 /* Looking around. Are we still alive?
2962 * OK, link new skb, drop old one */
2963
2964 skb2->next = skb1->next;
2965 *skb_p = skb2;
2966 kfree_skb(skb1);
2967 skb1 = skb2;
2968 }
2969 elt++;
2970 *trailer = skb1;
2971 skb_p = &skb1->next;
2972 }
2973
2974 return elt;
2975}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002976EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002977
Patrick Ohlyac45f602009-02-12 05:03:37 +00002978void skb_tstamp_tx(struct sk_buff *orig_skb,
2979 struct skb_shared_hwtstamps *hwtstamps)
2980{
2981 struct sock *sk = orig_skb->sk;
2982 struct sock_exterr_skb *serr;
2983 struct sk_buff *skb;
2984 int err;
2985
2986 if (!sk)
2987 return;
2988
2989 skb = skb_clone(orig_skb, GFP_ATOMIC);
2990 if (!skb)
2991 return;
2992
2993 if (hwtstamps) {
2994 *skb_hwtstamps(skb) =
2995 *hwtstamps;
2996 } else {
2997 /*
2998 * no hardware time stamps available,
2999 * so keep the skb_shared_tx and only
3000 * store software time stamp
3001 */
3002 skb->tstamp = ktime_get_real();
3003 }
3004
3005 serr = SKB_EXT_ERR(skb);
3006 memset(serr, 0, sizeof(*serr));
3007 serr->ee.ee_errno = ENOMSG;
3008 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
3009 err = sock_queue_err_skb(sk, skb);
3010 if (err)
3011 kfree_skb(skb);
3012}
3013EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3014
3015
Rusty Russellf35d9d82008-02-04 23:49:54 -05003016/**
3017 * skb_partial_csum_set - set up and verify partial csum values for packet
3018 * @skb: the skb to set
3019 * @start: the number of bytes after skb->data to start checksumming.
3020 * @off: the offset from start to place the checksum.
3021 *
3022 * For untrusted partially-checksummed packets, we need to make sure the values
3023 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3024 *
3025 * This function checks and sets those values and skb->ip_summed: if this
3026 * returns false you should drop the packet.
3027 */
3028bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3029{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003030 if (unlikely(start > skb_headlen(skb)) ||
3031 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003032 if (net_ratelimit())
3033 printk(KERN_WARNING
3034 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003035 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003036 return false;
3037 }
3038 skb->ip_summed = CHECKSUM_PARTIAL;
3039 skb->csum_start = skb_headroom(skb) + start;
3040 skb->csum_offset = off;
3041 return true;
3042}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003043EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003044
Ben Hutchings4497b072008-06-19 16:22:28 -07003045void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3046{
3047 if (net_ratelimit())
3048 pr_warning("%s: received packets cannot be forwarded"
3049 " while LRO is enabled\n", skb->dev->name);
3050}
Ben Hutchings4497b072008-06-19 16:22:28 -07003051EXPORT_SYMBOL(__skb_warn_lro_forwarding);