blob: bdea0efdf8cb0e029295c2f0587b81babab58119 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines having to do with the 'struct sk_buff' memory handlers.
3 *
Alan Cox113aa832008-10-13 19:01:08 -07004 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Florian La Roche <rzsfl@rz.uni-sb.de>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fixes:
8 * Alan Cox : Fixed the worst of the load
9 * balancer bugs.
10 * Dave Platt : Interrupt stacking fix.
11 * Richard Kooijman : Timestamp fixes.
12 * Alan Cox : Changed buffer format.
13 * Alan Cox : destructor hook for AF_UNIX etc.
14 * Linus Torvalds : Better skb_clone.
15 * Alan Cox : Added skb_copy.
16 * Alan Cox : Added all the changed routines Linus
17 * only put in the headers
18 * Ray VanTassle : Fixed --skb->lock in free
19 * Alan Cox : skb_copy copy arp field
20 * Andi Kleen : slabified it.
21 * Robert Olsson : Removed skb_head_pool
22 *
23 * NOTE:
24 * The __skb_ routines should be called with interrupts
25 * disabled, or you better be *real* sure that the operation is atomic
26 * with respect to whatever list is being frobbed (e.g. via lock_sock()
27 * or via disabling bottom half handlers, etc).
28 *
29 * This program is free software; you can redistribute it and/or
30 * modify it under the terms of the GNU General Public License
31 * as published by the Free Software Foundation; either version
32 * 2 of the License, or (at your option) any later version.
33 */
34
35/*
36 * The functions in this file will not compile correctly with gcc 2.4.x
37 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40#include <linux/types.h>
41#include <linux/kernel.h>
Vegard Nossumfe55f6d2008-08-30 12:16:35 +020042#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mm.h>
44#include <linux/interrupt.h>
45#include <linux/in.h>
46#include <linux/inet.h>
47#include <linux/slab.h>
48#include <linux/netdevice.h>
49#ifdef CONFIG_NET_CLS_ACT
50#include <net/pkt_sched.h>
51#endif
52#include <linux/string.h>
53#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080054#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/cache.h>
56#include <linux/rtnetlink.h>
57#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070058#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000059#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#include <net/protocol.h>
62#include <net/dst.h>
63#include <net/sock.h>
64#include <net/checksum.h>
65#include <net/xfrm.h>
66
67#include <asm/uaccess.h>
68#include <asm/system.h>
Steven Rostedtad8d75f2009-04-14 19:39:12 -040069#include <trace/events/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Al Viroa1f8e7f2006-10-19 16:08:53 -040071#include "kmap_skb.h"
72
Christoph Lametere18b8902006-12-06 20:33:20 -080073static struct kmem_cache *skbuff_head_cache __read_mostly;
74static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Jens Axboe9c55e012007-11-06 23:30:13 -080076static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
77 struct pipe_buffer *buf)
78{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080079 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080080}
81
82static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
83 struct pipe_buffer *buf)
84{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080085 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080086}
87
88static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
89 struct pipe_buffer *buf)
90{
91 return 1;
92}
93
94
95/* Pipe buffer operations for a socket. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -080096static const struct pipe_buf_operations sock_pipe_buf_ops = {
Jens Axboe9c55e012007-11-06 23:30:13 -080097 .can_merge = 0,
98 .map = generic_pipe_buf_map,
99 .unmap = generic_pipe_buf_unmap,
100 .confirm = generic_pipe_buf_confirm,
101 .release = sock_pipe_buf_release,
102 .steal = sock_pipe_buf_steal,
103 .get = sock_pipe_buf_get,
104};
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * Keep out-of-line to prevent kernel bloat.
108 * __builtin_return_address is not used because it is not always
109 * reliable.
110 */
111
112/**
113 * skb_over_panic - private function
114 * @skb: buffer
115 * @sz: size
116 * @here: address
117 *
118 * Out of line support code for skb_put(). Not user callable.
119 */
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. Millerb4ac5302009-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. Millerb4ac5302009-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. Millerb4ac5302009-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. Millerb4ac5302009-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. Millerb4ac5302009-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. Millerb4ac5302009-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)));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000537 new->rxhash = old->rxhash;
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700538#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700539 new->sp = secpath_get(old->sp);
540#endif
541 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000542 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700543 new->local_df = old->local_df;
544 new->pkt_type = old->pkt_type;
545 new->ip_summed = old->ip_summed;
546 skb_copy_queue_mapping(new, old);
547 new->priority = old->priority;
548#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
549 new->ipvs_property = old->ipvs_property;
550#endif
551 new->protocol = old->protocol;
552 new->mark = old->mark;
Eric Dumazet8964be42009-11-20 15:35:04 -0800553 new->skb_iif = old->skb_iif;
Herbert Xudec18812007-10-14 00:37:30 -0700554 __nf_copy(new, old);
555#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
556 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
557 new->nf_trace = old->nf_trace;
558#endif
559#ifdef CONFIG_NET_SCHED
560 new->tc_index = old->tc_index;
561#ifdef CONFIG_NET_CLS_ACT
562 new->tc_verd = old->tc_verd;
563#endif
564#endif
Patrick McHardy6aa895b2008-07-14 22:49:06 -0700565 new->vlan_tci = old->vlan_tci;
566
Herbert Xudec18812007-10-14 00:37:30 -0700567 skb_copy_secmark(new, old);
568}
569
Herbert Xu82c49a32009-05-22 22:11:37 +0000570/*
571 * You should not add any new code to this function. Add it to
572 * __copy_skb_header above instead.
573 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700574static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576#define C(x) n->x = skb->x
577
578 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700580 __copy_skb_header(n, skb);
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 C(len);
583 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700584 C(mac_len);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000585 C(rxhash);
Patrick McHardy334a8132007-06-25 04:35:20 -0700586 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800587 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 C(tail);
591 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800592 C(head);
593 C(data);
594 C(truesize);
595 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 atomic_inc(&(skb_shinfo(skb)->dataref));
598 skb->cloned = 1;
599
600 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700601#undef C
602}
603
604/**
605 * skb_morph - morph one skb into another
606 * @dst: the skb to receive the contents
607 * @src: the skb to supply the contents
608 *
609 * This is identical to skb_clone except that the target skb is
610 * supplied by the user.
611 *
612 * The target skb is returned upon exit.
613 */
614struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
615{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800616 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700617 return __skb_clone(dst, src);
618}
619EXPORT_SYMBOL_GPL(skb_morph);
620
621/**
622 * skb_clone - duplicate an sk_buff
623 * @skb: buffer to clone
624 * @gfp_mask: allocation priority
625 *
626 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
627 * copies share the same packet data but not structure. The new
628 * buffer has a reference count of 1. If the allocation fails the
629 * function returns %NULL otherwise the new buffer is returned.
630 *
631 * If this function is called from an interrupt gfp_mask() must be
632 * %GFP_ATOMIC.
633 */
634
635struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
636{
637 struct sk_buff *n;
638
639 n = skb + 1;
640 if (skb->fclone == SKB_FCLONE_ORIG &&
641 n->fclone == SKB_FCLONE_UNAVAILABLE) {
642 atomic_t *fclone_ref = (atomic_t *) (n + 1);
643 n->fclone = SKB_FCLONE_CLONE;
644 atomic_inc(fclone_ref);
645 } else {
646 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
647 if (!n)
648 return NULL;
Vegard Nossumfe55f6d2008-08-30 12:16:35 +0200649
650 kmemcheck_annotate_bitfield(n, flags1);
651 kmemcheck_annotate_bitfield(n, flags2);
Herbert Xue0053ec2007-10-14 00:37:52 -0700652 n->fclone = SKB_FCLONE_UNAVAILABLE;
653 }
654
655 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
David S. Millerb4ac5302009-02-10 02:09:24 -0800657EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
660{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700661#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /*
663 * Shift between the two data areas in bytes
664 */
665 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700666#endif
Herbert Xudec18812007-10-14 00:37:30 -0700667
668 __copy_skb_header(new, old);
669
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700670#ifndef NET_SKBUFF_DATA_USES_OFFSET
671 /* {transport,network,mac}_header are relative to skb->head */
672 new->transport_header += offset;
673 new->network_header += offset;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000674 if (skb_mac_header_was_set(new))
675 new->mac_header += offset;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700676#endif
Herbert Xu79671682006-06-22 02:40:14 -0700677 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
678 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
679 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
682/**
683 * skb_copy - create private copy of an sk_buff
684 * @skb: buffer to copy
685 * @gfp_mask: allocation priority
686 *
687 * Make a copy of both an &sk_buff and its data. This is used when the
688 * caller wishes to modify the data and needs a private copy of the
689 * data to alter. Returns %NULL on failure or the pointer to the buffer
690 * on success. The returned buffer has a reference count of 1.
691 *
692 * As by-product this function converts non-linear &sk_buff to linear
693 * one, so that &sk_buff becomes completely private and caller is allowed
694 * to modify all the data of returned buffer. This means that this
695 * function is not recommended for use in circumstances when only
696 * header is going to be modified. Use pskb_copy() instead.
697 */
698
Al Virodd0fc662005-10-07 07:46:04 +0100699struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 int headerlen = skb->data - skb->head;
702 /*
703 * Allocate the copy buffer
704 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700705 struct sk_buff *n;
706#ifdef NET_SKBUFF_DATA_USES_OFFSET
707 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
708#else
709 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (!n)
712 return NULL;
713
714 /* Set the data pointer */
715 skb_reserve(n, headerlen);
716 /* Set the tail pointer and length */
717 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
720 BUG();
721
722 copy_skb_header(n, skb);
723 return n;
724}
David S. Millerb4ac5302009-02-10 02:09:24 -0800725EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727/**
728 * pskb_copy - create copy of an sk_buff with private head.
729 * @skb: buffer to copy
730 * @gfp_mask: allocation priority
731 *
732 * Make a copy of both an &sk_buff and part of its data, located
733 * in header. Fragmented data remain shared. This is used when
734 * the caller wishes to modify only header of &sk_buff and needs
735 * private copy of the header to alter. Returns %NULL on failure
736 * or the pointer to the buffer on success.
737 * The returned buffer has a reference count of 1.
738 */
739
Al Virodd0fc662005-10-07 07:46:04 +0100740struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 /*
743 * Allocate the copy buffer
744 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700745 struct sk_buff *n;
746#ifdef NET_SKBUFF_DATA_USES_OFFSET
747 n = alloc_skb(skb->end, gfp_mask);
748#else
749 n = alloc_skb(skb->end - skb->head, gfp_mask);
750#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (!n)
752 goto out;
753
754 /* Set the data pointer */
755 skb_reserve(n, skb->data - skb->head);
756 /* Set the tail pointer and length */
757 skb_put(n, skb_headlen(skb));
758 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300759 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Herbert Xu25f484a2006-11-07 14:57:15 -0800761 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 n->data_len = skb->data_len;
763 n->len = skb->len;
764
765 if (skb_shinfo(skb)->nr_frags) {
766 int i;
767
768 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
769 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
770 get_page(skb_shinfo(n)->frags[i].page);
771 }
772 skb_shinfo(n)->nr_frags = i;
773 }
774
David S. Millerfbb398a2009-06-09 00:18:59 -0700775 if (skb_has_frags(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
777 skb_clone_fraglist(n);
778 }
779
780 copy_skb_header(n, skb);
781out:
782 return n;
783}
David S. Millerb4ac5302009-02-10 02:09:24 -0800784EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786/**
787 * pskb_expand_head - reallocate header of &sk_buff
788 * @skb: buffer to reallocate
789 * @nhead: room to add at head
790 * @ntail: room to add at tail
791 * @gfp_mask: allocation priority
792 *
793 * Expands (or creates identical copy, if &nhead and &ntail are zero)
794 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
795 * reference count of 1. Returns zero in the case of success or error,
796 * if expansion failed. In the last case, &sk_buff is not changed.
797 *
798 * All the pointers pointing into skb header may change and must be
799 * reloaded after call to this function.
800 */
801
Victor Fusco86a76ca2005-07-08 14:57:47 -0700802int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100803 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 int i;
806 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700807#ifdef NET_SKBUFF_DATA_USES_OFFSET
808 int size = nhead + skb->end + ntail;
809#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700811#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 long off;
813
Herbert Xu4edd87a2008-10-01 07:09:38 -0700814 BUG_ON(nhead < 0);
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (skb_shared(skb))
817 BUG();
818
819 size = SKB_DATA_ALIGN(size);
820
821 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
822 if (!data)
823 goto nodata;
824
825 /* Copy only real data... and, alas, header. This should be
826 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700827#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700828 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700829#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700830 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700831#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700832 memcpy(data + size, skb_end_pointer(skb),
833 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
836 get_page(skb_shinfo(skb)->frags[i].page);
837
David S. Millerfbb398a2009-06-09 00:18:59 -0700838 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 skb_clone_fraglist(skb);
840
841 skb_release_data(skb);
842
843 off = (data + nhead) - skb->head;
844
845 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700847#ifdef NET_SKBUFF_DATA_USES_OFFSET
848 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700849 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700850#else
851 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700852#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700853 /* {transport,network,mac}_header and tail are relative to skb->head */
854 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700855 skb->transport_header += off;
856 skb->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000857 if (skb_mac_header_was_set(skb))
858 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700859 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700861 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 skb->nohdr = 0;
863 atomic_set(&skb_shinfo(skb)->dataref, 1);
864 return 0;
865
866nodata:
867 return -ENOMEM;
868}
David S. Millerb4ac5302009-02-10 02:09:24 -0800869EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871/* Make private copy of skb with writable head and some headroom */
872
873struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
874{
875 struct sk_buff *skb2;
876 int delta = headroom - skb_headroom(skb);
877
878 if (delta <= 0)
879 skb2 = pskb_copy(skb, GFP_ATOMIC);
880 else {
881 skb2 = skb_clone(skb, GFP_ATOMIC);
882 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
883 GFP_ATOMIC)) {
884 kfree_skb(skb2);
885 skb2 = NULL;
886 }
887 }
888 return skb2;
889}
David S. Millerb4ac5302009-02-10 02:09:24 -0800890EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892/**
893 * skb_copy_expand - copy and expand sk_buff
894 * @skb: buffer to copy
895 * @newheadroom: new free bytes at head
896 * @newtailroom: new free bytes at tail
897 * @gfp_mask: allocation priority
898 *
899 * Make a copy of both an &sk_buff and its data and while doing so
900 * allocate additional space.
901 *
902 * This is used when the caller wishes to modify the data and needs a
903 * private copy of the data to alter as well as more space for new fields.
904 * Returns %NULL on failure or the pointer to the buffer
905 * on success. The returned buffer has a reference count of 1.
906 *
907 * You must pass %GFP_ATOMIC as the allocation priority if this function
908 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 */
910struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700911 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100912 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 /*
915 * Allocate the copy buffer
916 */
917 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
918 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700919 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700921 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (!n)
924 return NULL;
925
926 skb_reserve(n, newheadroom);
927
928 /* Set the tail pointer and length */
929 skb_put(n, skb->len);
930
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700931 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 head_copy_off = 0;
933 if (newheadroom <= head_copy_len)
934 head_copy_len = newheadroom;
935 else
936 head_copy_off = newheadroom - head_copy_len;
937
938 /* Copy the linear header and data. */
939 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
940 skb->len + head_copy_len))
941 BUG();
942
943 copy_skb_header(n, skb);
944
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700945 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700946 n->csum_start += off;
947#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700948 n->transport_header += off;
949 n->network_header += off;
Stephen Hemminger603a8bb2009-06-17 12:17:34 +0000950 if (skb_mac_header_was_set(skb))
951 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700952#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return n;
955}
David S. Millerb4ac5302009-02-10 02:09:24 -0800956EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958/**
959 * skb_pad - zero pad the tail of an skb
960 * @skb: buffer to pad
961 * @pad: space to pad
962 *
963 * Ensure that a buffer is followed by a padding area that is zero
964 * filled. Used by network drivers which may DMA or transfer data
965 * beyond the buffer end onto the wire.
966 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700967 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900969
Herbert Xu5b057c62006-06-23 02:06:41 -0700970int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Herbert Xu5b057c62006-06-23 02:06:41 -0700972 int err;
973 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700976 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700978 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700980
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700981 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700982 if (likely(skb_cloned(skb) || ntail > 0)) {
983 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
984 if (unlikely(err))
985 goto free_skb;
986 }
987
988 /* FIXME: The use of this function with non-linear skb's really needs
989 * to be audited.
990 */
991 err = skb_linearize(skb);
992 if (unlikely(err))
993 goto free_skb;
994
995 memset(skb->data + skb->len, 0, pad);
996 return 0;
997
998free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -07001000 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001001}
David S. Millerb4ac5302009-02-10 02:09:24 -08001002EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001003
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -07001004/**
1005 * skb_put - add data to a buffer
1006 * @skb: buffer to use
1007 * @len: amount of data to add
1008 *
1009 * This function extends the used data area of the buffer. If this would
1010 * exceed the total buffer size the kernel will panic. A pointer to the
1011 * first byte of the extra data is returned.
1012 */
1013unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
1014{
1015 unsigned char *tmp = skb_tail_pointer(skb);
1016 SKB_LINEAR_ASSERT(skb);
1017 skb->tail += len;
1018 skb->len += len;
1019 if (unlikely(skb->tail > skb->end))
1020 skb_over_panic(skb, len, __builtin_return_address(0));
1021 return tmp;
1022}
1023EXPORT_SYMBOL(skb_put);
1024
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001025/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001026 * skb_push - add data to the start of a buffer
1027 * @skb: buffer to use
1028 * @len: amount of data to add
1029 *
1030 * This function extends the used data area of the buffer at the buffer
1031 * start. If this would exceed the total buffer headroom the kernel will
1032 * panic. A pointer to the first byte of the extra data is returned.
1033 */
1034unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1035{
1036 skb->data -= len;
1037 skb->len += len;
1038 if (unlikely(skb->data<skb->head))
1039 skb_under_panic(skb, len, __builtin_return_address(0));
1040 return skb->data;
1041}
1042EXPORT_SYMBOL(skb_push);
1043
1044/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001045 * skb_pull - remove data from the start of a buffer
1046 * @skb: buffer to use
1047 * @len: amount of data to remove
1048 *
1049 * This function removes data from the start of a buffer, returning
1050 * the memory to the headroom. A pointer to the next data in the buffer
1051 * is returned. Once the data has been pulled future pushes will overwrite
1052 * the old data.
1053 */
1054unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1055{
1056 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1057}
1058EXPORT_SYMBOL(skb_pull);
1059
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001060/**
1061 * skb_trim - remove end from a buffer
1062 * @skb: buffer to alter
1063 * @len: new length
1064 *
1065 * Cut the length of a buffer down by removing data from the tail. If
1066 * the buffer is already under the length specified it is not modified.
1067 * The skb must be linear.
1068 */
1069void skb_trim(struct sk_buff *skb, unsigned int len)
1070{
1071 if (skb->len > len)
1072 __skb_trim(skb, len);
1073}
1074EXPORT_SYMBOL(skb_trim);
1075
Herbert Xu3cc0e872006-06-09 16:13:38 -07001076/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 */
1078
Herbert Xu3cc0e872006-06-09 16:13:38 -07001079int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Herbert Xu27b437c2006-07-13 19:26:39 -07001081 struct sk_buff **fragp;
1082 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 int offset = skb_headlen(skb);
1084 int nfrags = skb_shinfo(skb)->nr_frags;
1085 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001086 int err;
1087
1088 if (skb_cloned(skb) &&
1089 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1090 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001092 i = 0;
1093 if (offset >= len)
1094 goto drop_pages;
1095
1096 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001098
1099 if (end < len) {
1100 offset = end;
1101 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001103
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001104 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001105
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001106drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001107 skb_shinfo(skb)->nr_frags = i;
1108
1109 for (; i < nfrags; i++)
1110 put_page(skb_shinfo(skb)->frags[i].page);
1111
David S. Millerfbb398a2009-06-09 00:18:59 -07001112 if (skb_has_frags(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001113 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001114 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
Herbert Xu27b437c2006-07-13 19:26:39 -07001117 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1118 fragp = &frag->next) {
1119 int end = offset + frag->len;
1120
1121 if (skb_shared(frag)) {
1122 struct sk_buff *nfrag;
1123
1124 nfrag = skb_clone(frag, GFP_ATOMIC);
1125 if (unlikely(!nfrag))
1126 return -ENOMEM;
1127
1128 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001129 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001130 frag = nfrag;
1131 *fragp = frag;
1132 }
1133
1134 if (end < len) {
1135 offset = end;
1136 continue;
1137 }
1138
1139 if (end > len &&
1140 unlikely((err = pskb_trim(frag, len - offset))))
1141 return err;
1142
1143 if (frag->next)
1144 skb_drop_list(&frag->next);
1145 break;
1146 }
1147
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001148done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001149 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 skb->data_len -= skb->len - len;
1151 skb->len = len;
1152 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001153 skb->len = len;
1154 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001155 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157
1158 return 0;
1159}
David S. Millerb4ac5302009-02-10 02:09:24 -08001160EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162/**
1163 * __pskb_pull_tail - advance tail of skb header
1164 * @skb: buffer to reallocate
1165 * @delta: number of bytes to advance tail
1166 *
1167 * The function makes a sense only on a fragmented &sk_buff,
1168 * it expands header moving its tail forward and copying necessary
1169 * data from fragmented part.
1170 *
1171 * &sk_buff MUST have reference count of 1.
1172 *
1173 * Returns %NULL (and &sk_buff does not change) if pull failed
1174 * or value of new tail of skb in the case of success.
1175 *
1176 * All the pointers pointing into skb header may change and must be
1177 * reloaded after call to this function.
1178 */
1179
1180/* Moves tail of skb head forward, copying data from fragmented part,
1181 * when it is necessary.
1182 * 1. It may fail due to malloc failure.
1183 * 2. It may change skb pointers.
1184 *
1185 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1186 */
1187unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1188{
1189 /* If skb has not enough free space at tail, get new one
1190 * plus 128 bytes for future expansions. If we have enough
1191 * room at tail, reallocate without expansion only if skb is cloned.
1192 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001193 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 if (eat > 0 || skb_cloned(skb)) {
1196 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1197 GFP_ATOMIC))
1198 return NULL;
1199 }
1200
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001201 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 BUG();
1203
1204 /* Optimization: no fragments, no reasons to preestimate
1205 * size of pulled pages. Superb.
1206 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001207 if (!skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 goto pull_pages;
1209
1210 /* Estimate size of pulled pages. */
1211 eat = delta;
1212 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1213 if (skb_shinfo(skb)->frags[i].size >= eat)
1214 goto pull_pages;
1215 eat -= skb_shinfo(skb)->frags[i].size;
1216 }
1217
1218 /* If we need update frag list, we are in troubles.
1219 * Certainly, it possible to add an offset to skb data,
1220 * but taking into account that pulling is expected to
1221 * be very rare operation, it is worth to fight against
1222 * further bloating skb head and crucify ourselves here instead.
1223 * Pure masohism, indeed. 8)8)
1224 */
1225 if (eat) {
1226 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1227 struct sk_buff *clone = NULL;
1228 struct sk_buff *insp = NULL;
1229
1230 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001231 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 if (list->len <= eat) {
1234 /* Eaten as whole. */
1235 eat -= list->len;
1236 list = list->next;
1237 insp = list;
1238 } else {
1239 /* Eaten partially. */
1240
1241 if (skb_shared(list)) {
1242 /* Sucks! We need to fork list. :-( */
1243 clone = skb_clone(list, GFP_ATOMIC);
1244 if (!clone)
1245 return NULL;
1246 insp = list->next;
1247 list = clone;
1248 } else {
1249 /* This may be pulled without
1250 * problems. */
1251 insp = list;
1252 }
1253 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001254 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return NULL;
1256 }
1257 break;
1258 }
1259 } while (eat);
1260
1261 /* Free pulled out fragments. */
1262 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1263 skb_shinfo(skb)->frag_list = list->next;
1264 kfree_skb(list);
1265 }
1266 /* And insert new clone at head. */
1267 if (clone) {
1268 clone->next = list;
1269 skb_shinfo(skb)->frag_list = clone;
1270 }
1271 }
1272 /* Success! Now we may commit changes to skb data. */
1273
1274pull_pages:
1275 eat = delta;
1276 k = 0;
1277 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1278 if (skb_shinfo(skb)->frags[i].size <= eat) {
1279 put_page(skb_shinfo(skb)->frags[i].page);
1280 eat -= skb_shinfo(skb)->frags[i].size;
1281 } else {
1282 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1283 if (eat) {
1284 skb_shinfo(skb)->frags[k].page_offset += eat;
1285 skb_shinfo(skb)->frags[k].size -= eat;
1286 eat = 0;
1287 }
1288 k++;
1289 }
1290 }
1291 skb_shinfo(skb)->nr_frags = k;
1292
1293 skb->tail += delta;
1294 skb->data_len -= delta;
1295
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001296 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
David S. Millerb4ac5302009-02-10 02:09:24 -08001298EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300/* Copy some data bits from skb to kernel buffer. */
1301
1302int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1303{
David S. Miller1a028e52007-04-27 15:21:23 -07001304 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001305 struct sk_buff *frag_iter;
1306 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 if (offset > (int)skb->len - len)
1309 goto fault;
1310
1311 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001312 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (copy > len)
1314 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001315 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if ((len -= copy) == 0)
1317 return 0;
1318 offset += copy;
1319 to += copy;
1320 }
1321
1322 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001323 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001325 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001326
1327 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if ((copy = end - offset) > 0) {
1329 u8 *vaddr;
1330
1331 if (copy > len)
1332 copy = len;
1333
1334 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1335 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001336 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1337 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 kunmap_skb_frag(vaddr);
1339
1340 if ((len -= copy) == 0)
1341 return 0;
1342 offset += copy;
1343 to += copy;
1344 }
David S. Miller1a028e52007-04-27 15:21:23 -07001345 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347
David S. Millerfbb398a2009-06-09 00:18:59 -07001348 skb_walk_frags(skb, frag_iter) {
1349 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
David S. Millerfbb398a2009-06-09 00:18:59 -07001351 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
David S. Millerfbb398a2009-06-09 00:18:59 -07001353 end = start + frag_iter->len;
1354 if ((copy = end - offset) > 0) {
1355 if (copy > len)
1356 copy = len;
1357 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1358 goto fault;
1359 if ((len -= copy) == 0)
1360 return 0;
1361 offset += copy;
1362 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001364 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366 if (!len)
1367 return 0;
1368
1369fault:
1370 return -EFAULT;
1371}
David S. Millerb4ac5302009-02-10 02:09:24 -08001372EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Jens Axboe9c55e012007-11-06 23:30:13 -08001374/*
1375 * Callback from splice_to_pipe(), if we need to release some pages
1376 * at the end of the spd in case we error'ed out in filling the pipe.
1377 */
1378static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1379{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001380 put_page(spd->pages[i]);
1381}
Jens Axboe9c55e012007-11-06 23:30:13 -08001382
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001383static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1384 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001385 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001386{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001387 struct page *p = sk->sk_sndmsg_page;
1388 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001389
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001390 if (!p) {
1391new_page:
1392 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1393 if (!p)
1394 return NULL;
1395
1396 off = sk->sk_sndmsg_off = 0;
1397 /* hold one ref to this page until it's full */
1398 } else {
1399 unsigned int mlen;
1400
1401 off = sk->sk_sndmsg_off;
1402 mlen = PAGE_SIZE - off;
1403 if (mlen < 64 && mlen < *len) {
1404 put_page(p);
1405 goto new_page;
1406 }
1407
1408 *len = min_t(unsigned int, *len, mlen);
1409 }
1410
1411 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1412 sk->sk_sndmsg_off += *len;
1413 *offset = off;
1414 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001415
1416 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001417}
1418
1419/*
1420 * Fill page/offset/length into spd, if it can hold more pages.
1421 */
1422static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001423 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001424 struct sk_buff *skb, int linear,
1425 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001426{
1427 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1428 return 1;
1429
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001430 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001431 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001432 if (!page)
1433 return 1;
1434 } else
1435 get_page(page);
1436
Jens Axboe9c55e012007-11-06 23:30:13 -08001437 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001438 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001439 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001440 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001441
Jens Axboe9c55e012007-11-06 23:30:13 -08001442 return 0;
1443}
1444
Octavian Purdila2870c432008-07-15 00:49:11 -07001445static inline void __segment_seek(struct page **page, unsigned int *poff,
1446 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001447{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001448 unsigned long n;
1449
Octavian Purdila2870c432008-07-15 00:49:11 -07001450 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001451 n = *poff / PAGE_SIZE;
1452 if (n)
1453 *page = nth_page(*page, n);
1454
Octavian Purdila2870c432008-07-15 00:49:11 -07001455 *poff = *poff % PAGE_SIZE;
1456 *plen -= off;
1457}
Jens Axboe9c55e012007-11-06 23:30:13 -08001458
Octavian Purdila2870c432008-07-15 00:49:11 -07001459static inline int __splice_segment(struct page *page, unsigned int poff,
1460 unsigned int plen, unsigned int *off,
1461 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001462 struct splice_pipe_desc *spd, int linear,
1463 struct sock *sk)
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
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001486 if (spd_fill_page(spd, 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 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001501static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001502 unsigned int *len, struct splice_pipe_desc *spd,
1503 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),
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001513 offset, len, skb, spd, 1, sk))
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,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001523 offset, len, skb, spd, 0, sk))
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{
1540 struct partial_page partial[PIPE_BUFFERS];
1541 struct page *pages[PIPE_BUFFERS];
1542 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 Axboe9c55e012007-11-06 23:30:13 -08001551
1552 /*
1553 * __skb_splice_bits() only fails if the output has no room left,
1554 * so no point in going over the frag_list for the error case.
1555 */
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001556 if (__skb_splice_bits(skb, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001557 goto done;
1558 else if (!tlen)
1559 goto done;
1560
1561 /*
1562 * now see if we have a frag_list to map
1563 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001564 skb_walk_frags(skb, frag_iter) {
1565 if (!tlen)
1566 break;
1567 if (__skb_splice_bits(frag_iter, &offset, &tlen, &spd, sk))
1568 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001569 }
1570
1571done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001572 if (spd.nr_pages) {
1573 int ret;
1574
1575 /*
1576 * Drop the socket lock, otherwise we have reverse
1577 * locking dependencies between sk_lock and i_mutex
1578 * here as compared to sendfile(). We enter here
1579 * with the socket lock held, and splice_to_pipe() will
1580 * grab the pipe inode lock. For sendfile() emulation,
1581 * we call into ->sendpage() with the i_mutex lock held
1582 * and networking will grab the socket lock.
1583 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001584 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001585 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001586 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001587 return ret;
1588 }
1589
1590 return 0;
1591}
1592
Herbert Xu357b40a2005-04-19 22:30:14 -07001593/**
1594 * skb_store_bits - store bits from kernel buffer to skb
1595 * @skb: destination buffer
1596 * @offset: offset in destination
1597 * @from: source buffer
1598 * @len: number of bytes to copy
1599 *
1600 * Copy the specified number of bytes from the source buffer to the
1601 * destination skb. This function handles all the messy bits of
1602 * traversing fragment lists and such.
1603 */
1604
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001605int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001606{
David S. Miller1a028e52007-04-27 15:21:23 -07001607 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001608 struct sk_buff *frag_iter;
1609 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001610
1611 if (offset > (int)skb->len - len)
1612 goto fault;
1613
David S. Miller1a028e52007-04-27 15:21:23 -07001614 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001615 if (copy > len)
1616 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001617 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001618 if ((len -= copy) == 0)
1619 return 0;
1620 offset += copy;
1621 from += copy;
1622 }
1623
1624 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1625 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001626 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001627
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001628 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001629
1630 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001631 if ((copy = end - offset) > 0) {
1632 u8 *vaddr;
1633
1634 if (copy > len)
1635 copy = len;
1636
1637 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001638 memcpy(vaddr + frag->page_offset + offset - start,
1639 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001640 kunmap_skb_frag(vaddr);
1641
1642 if ((len -= copy) == 0)
1643 return 0;
1644 offset += copy;
1645 from += copy;
1646 }
David S. Miller1a028e52007-04-27 15:21:23 -07001647 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001648 }
1649
David S. Millerfbb398a2009-06-09 00:18:59 -07001650 skb_walk_frags(skb, frag_iter) {
1651 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001652
David S. Millerfbb398a2009-06-09 00:18:59 -07001653 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001654
David S. Millerfbb398a2009-06-09 00:18:59 -07001655 end = start + frag_iter->len;
1656 if ((copy = end - offset) > 0) {
1657 if (copy > len)
1658 copy = len;
1659 if (skb_store_bits(frag_iter, offset - start,
1660 from, copy))
1661 goto fault;
1662 if ((len -= copy) == 0)
1663 return 0;
1664 offset += copy;
1665 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001666 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001667 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001668 }
1669 if (!len)
1670 return 0;
1671
1672fault:
1673 return -EFAULT;
1674}
Herbert Xu357b40a2005-04-19 22:30:14 -07001675EXPORT_SYMBOL(skb_store_bits);
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677/* Checksum skb data. */
1678
Al Viro2bbbc862006-11-14 21:37:14 -08001679__wsum skb_checksum(const struct sk_buff *skb, int offset,
1680 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
David S. Miller1a028e52007-04-27 15:21:23 -07001682 int start = skb_headlen(skb);
1683 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001684 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 int pos = 0;
1686
1687 /* Checksum header. */
1688 if (copy > 0) {
1689 if (copy > len)
1690 copy = len;
1691 csum = csum_partial(skb->data + offset, copy, csum);
1692 if ((len -= copy) == 0)
1693 return csum;
1694 offset += copy;
1695 pos = copy;
1696 }
1697
1698 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001699 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001701 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001702
1703 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001705 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 u8 *vaddr;
1707 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1708
1709 if (copy > len)
1710 copy = len;
1711 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001712 csum2 = csum_partial(vaddr + frag->page_offset +
1713 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 kunmap_skb_frag(vaddr);
1715 csum = csum_block_add(csum, csum2, pos);
1716 if (!(len -= copy))
1717 return csum;
1718 offset += copy;
1719 pos += copy;
1720 }
David S. Miller1a028e52007-04-27 15:21:23 -07001721 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 }
1723
David S. Millerfbb398a2009-06-09 00:18:59 -07001724 skb_walk_frags(skb, frag_iter) {
1725 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
David S. Millerfbb398a2009-06-09 00:18:59 -07001727 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
David S. Millerfbb398a2009-06-09 00:18:59 -07001729 end = start + frag_iter->len;
1730 if ((copy = end - offset) > 0) {
1731 __wsum csum2;
1732 if (copy > len)
1733 copy = len;
1734 csum2 = skb_checksum(frag_iter, offset - start,
1735 copy, 0);
1736 csum = csum_block_add(csum, csum2, pos);
1737 if ((len -= copy) == 0)
1738 return csum;
1739 offset += copy;
1740 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001742 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001744 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
1746 return csum;
1747}
David S. Millerb4ac5302009-02-10 02:09:24 -08001748EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750/* Both of above in one bottle. */
1751
Al Viro81d77662006-11-14 21:37:33 -08001752__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1753 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
David S. Miller1a028e52007-04-27 15:21:23 -07001755 int start = skb_headlen(skb);
1756 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001757 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 int pos = 0;
1759
1760 /* Copy header. */
1761 if (copy > 0) {
1762 if (copy > len)
1763 copy = len;
1764 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1765 copy, csum);
1766 if ((len -= copy) == 0)
1767 return csum;
1768 offset += copy;
1769 to += copy;
1770 pos = copy;
1771 }
1772
1773 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001774 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001776 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001777
1778 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001780 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 u8 *vaddr;
1782 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1783
1784 if (copy > len)
1785 copy = len;
1786 vaddr = kmap_skb_frag(frag);
1787 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001788 frag->page_offset +
1789 offset - start, to,
1790 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 kunmap_skb_frag(vaddr);
1792 csum = csum_block_add(csum, csum2, pos);
1793 if (!(len -= copy))
1794 return csum;
1795 offset += copy;
1796 to += copy;
1797 pos += copy;
1798 }
David S. Miller1a028e52007-04-27 15:21:23 -07001799 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
1801
David S. Millerfbb398a2009-06-09 00:18:59 -07001802 skb_walk_frags(skb, frag_iter) {
1803 __wsum csum2;
1804 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
David S. Millerfbb398a2009-06-09 00:18:59 -07001806 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
David S. Millerfbb398a2009-06-09 00:18:59 -07001808 end = start + frag_iter->len;
1809 if ((copy = end - offset) > 0) {
1810 if (copy > len)
1811 copy = len;
1812 csum2 = skb_copy_and_csum_bits(frag_iter,
1813 offset - start,
1814 to, copy, 0);
1815 csum = csum_block_add(csum, csum2, pos);
1816 if ((len -= copy) == 0)
1817 return csum;
1818 offset += copy;
1819 to += copy;
1820 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001822 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001824 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return csum;
1826}
David S. Millerb4ac5302009-02-10 02:09:24 -08001827EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1830{
Al Virod3bc23e2006-11-14 21:24:49 -08001831 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 long csstart;
1833
Patrick McHardy84fa7932006-08-29 16:44:56 -07001834 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001835 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 else
1837 csstart = skb_headlen(skb);
1838
Kris Katterjohn09a62662006-01-08 22:24:28 -08001839 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001841 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 csum = 0;
1844 if (csstart != skb->len)
1845 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1846 skb->len - csstart, 0);
1847
Patrick McHardy84fa7932006-08-29 16:44:56 -07001848 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001849 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Al Virod3bc23e2006-11-14 21:24:49 -08001851 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853}
David S. Millerb4ac5302009-02-10 02:09:24 -08001854EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856/**
1857 * skb_dequeue - remove from the head of the queue
1858 * @list: list to dequeue from
1859 *
1860 * Remove the head of the list. The list lock is taken so the function
1861 * may be used safely with other locking list functions. The head item is
1862 * returned or %NULL if the list is empty.
1863 */
1864
1865struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1866{
1867 unsigned long flags;
1868 struct sk_buff *result;
1869
1870 spin_lock_irqsave(&list->lock, flags);
1871 result = __skb_dequeue(list);
1872 spin_unlock_irqrestore(&list->lock, flags);
1873 return result;
1874}
David S. Millerb4ac5302009-02-10 02:09:24 -08001875EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877/**
1878 * skb_dequeue_tail - remove from the tail of the queue
1879 * @list: list to dequeue from
1880 *
1881 * Remove the tail of the list. The list lock is taken so the function
1882 * may be used safely with other locking list functions. The tail item is
1883 * returned or %NULL if the list is empty.
1884 */
1885struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1886{
1887 unsigned long flags;
1888 struct sk_buff *result;
1889
1890 spin_lock_irqsave(&list->lock, flags);
1891 result = __skb_dequeue_tail(list);
1892 spin_unlock_irqrestore(&list->lock, flags);
1893 return result;
1894}
David S. Millerb4ac5302009-02-10 02:09:24 -08001895EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897/**
1898 * skb_queue_purge - empty a list
1899 * @list: list to empty
1900 *
1901 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1902 * the list and one reference dropped. This function takes the list
1903 * lock and is atomic with respect to other list locking functions.
1904 */
1905void skb_queue_purge(struct sk_buff_head *list)
1906{
1907 struct sk_buff *skb;
1908 while ((skb = skb_dequeue(list)) != NULL)
1909 kfree_skb(skb);
1910}
David S. Millerb4ac5302009-02-10 02:09:24 -08001911EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913/**
1914 * skb_queue_head - queue a buffer at the list head
1915 * @list: list to use
1916 * @newsk: buffer to queue
1917 *
1918 * Queue a buffer at the start of the list. This function takes the
1919 * list lock and can be used safely with other locking &sk_buff functions
1920 * safely.
1921 *
1922 * A buffer cannot be placed on two lists at the same time.
1923 */
1924void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1925{
1926 unsigned long flags;
1927
1928 spin_lock_irqsave(&list->lock, flags);
1929 __skb_queue_head(list, newsk);
1930 spin_unlock_irqrestore(&list->lock, flags);
1931}
David S. Millerb4ac5302009-02-10 02:09:24 -08001932EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934/**
1935 * skb_queue_tail - queue a buffer at the list tail
1936 * @list: list to use
1937 * @newsk: buffer to queue
1938 *
1939 * Queue a buffer at the tail of the list. This function takes the
1940 * list lock and can be used safely with other locking &sk_buff functions
1941 * safely.
1942 *
1943 * A buffer cannot be placed on two lists at the same time.
1944 */
1945void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1946{
1947 unsigned long flags;
1948
1949 spin_lock_irqsave(&list->lock, flags);
1950 __skb_queue_tail(list, newsk);
1951 spin_unlock_irqrestore(&list->lock, flags);
1952}
David S. Millerb4ac5302009-02-10 02:09:24 -08001953EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955/**
1956 * skb_unlink - remove a buffer from a list
1957 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001958 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 *
David S. Miller8728b832005-08-09 19:25:21 -07001960 * Remove a packet from a list. The list locks are taken and this
1961 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 *
David S. Miller8728b832005-08-09 19:25:21 -07001963 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 */
David S. Miller8728b832005-08-09 19:25:21 -07001965void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
David S. Miller8728b832005-08-09 19:25:21 -07001967 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
David S. Miller8728b832005-08-09 19:25:21 -07001969 spin_lock_irqsave(&list->lock, flags);
1970 __skb_unlink(skb, list);
1971 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972}
David S. Millerb4ac5302009-02-10 02:09:24 -08001973EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975/**
1976 * skb_append - append a buffer
1977 * @old: buffer to insert after
1978 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001979 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 *
1981 * Place a packet after a given packet in a list. The list locks are taken
1982 * and this function is atomic with respect to other list locked calls.
1983 * A buffer cannot be placed on two lists at the same time.
1984 */
David S. Miller8728b832005-08-09 19:25:21 -07001985void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 unsigned long flags;
1988
David S. Miller8728b832005-08-09 19:25:21 -07001989 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001990 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001991 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992}
David S. Millerb4ac5302009-02-10 02:09:24 -08001993EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995/**
1996 * skb_insert - insert a buffer
1997 * @old: buffer to insert before
1998 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001999 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 *
David S. Miller8728b832005-08-09 19:25:21 -07002001 * Place a packet before a given packet in a list. The list locks are
2002 * taken and this function is atomic with respect to other list locked
2003 * calls.
2004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 * A buffer cannot be placed on two lists at the same time.
2006 */
David S. Miller8728b832005-08-09 19:25:21 -07002007void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 unsigned long flags;
2010
David S. Miller8728b832005-08-09 19:25:21 -07002011 spin_lock_irqsave(&list->lock, flags);
2012 __skb_insert(newsk, old->prev, old, list);
2013 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
David S. Millerb4ac5302009-02-10 02:09:24 -08002015EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017static inline void skb_split_inside_header(struct sk_buff *skb,
2018 struct sk_buff* skb1,
2019 const u32 len, const int pos)
2020{
2021 int i;
2022
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002023 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2024 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 /* And move data appendix as is. */
2026 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2027 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2028
2029 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2030 skb_shinfo(skb)->nr_frags = 0;
2031 skb1->data_len = skb->data_len;
2032 skb1->len += skb1->data_len;
2033 skb->data_len = 0;
2034 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002035 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
2038static inline void skb_split_no_header(struct sk_buff *skb,
2039 struct sk_buff* skb1,
2040 const u32 len, int pos)
2041{
2042 int i, k = 0;
2043 const int nfrags = skb_shinfo(skb)->nr_frags;
2044
2045 skb_shinfo(skb)->nr_frags = 0;
2046 skb1->len = skb1->data_len = skb->len - len;
2047 skb->len = len;
2048 skb->data_len = len - pos;
2049
2050 for (i = 0; i < nfrags; i++) {
2051 int size = skb_shinfo(skb)->frags[i].size;
2052
2053 if (pos + size > len) {
2054 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2055
2056 if (pos < len) {
2057 /* Split frag.
2058 * We have two variants in this case:
2059 * 1. Move all the frag to the second
2060 * part, if it is possible. F.e.
2061 * this approach is mandatory for TUX,
2062 * where splitting is expensive.
2063 * 2. Split is accurately. We make this.
2064 */
2065 get_page(skb_shinfo(skb)->frags[i].page);
2066 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2067 skb_shinfo(skb1)->frags[0].size -= len - pos;
2068 skb_shinfo(skb)->frags[i].size = len - pos;
2069 skb_shinfo(skb)->nr_frags++;
2070 }
2071 k++;
2072 } else
2073 skb_shinfo(skb)->nr_frags++;
2074 pos += size;
2075 }
2076 skb_shinfo(skb1)->nr_frags = k;
2077}
2078
2079/**
2080 * skb_split - Split fragmented skb to two parts at length len.
2081 * @skb: the buffer to split
2082 * @skb1: the buffer to receive the second part
2083 * @len: new length for skb
2084 */
2085void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2086{
2087 int pos = skb_headlen(skb);
2088
2089 if (len < pos) /* Split line is inside header. */
2090 skb_split_inside_header(skb, skb1, len, pos);
2091 else /* Second chunk has no header, nothing to copy. */
2092 skb_split_no_header(skb, skb1, len, pos);
2093}
David S. Millerb4ac5302009-02-10 02:09:24 -08002094EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002096/* Shifting from/to a cloned skb is a no-go.
2097 *
2098 * Caller cannot keep skb_shinfo related pointers past calling here!
2099 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002100static int skb_prepare_for_shift(struct sk_buff *skb)
2101{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002102 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002103}
2104
2105/**
2106 * skb_shift - Shifts paged data partially from skb to another
2107 * @tgt: buffer into which tail data gets added
2108 * @skb: buffer from which the paged data comes from
2109 * @shiftlen: shift up to this many bytes
2110 *
2111 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2112 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2113 * It's up to caller to free skb if everything was shifted.
2114 *
2115 * If @tgt runs out of frags, the whole operation is aborted.
2116 *
2117 * Skb cannot include anything else but paged data while tgt is allowed
2118 * to have non-paged data as well.
2119 *
2120 * TODO: full sized shift could be optimized but that would need
2121 * specialized skb free'er to handle frags without up-to-date nr_frags.
2122 */
2123int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2124{
2125 int from, to, merge, todo;
2126 struct skb_frag_struct *fragfrom, *fragto;
2127
2128 BUG_ON(shiftlen > skb->len);
2129 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2130
2131 todo = shiftlen;
2132 from = 0;
2133 to = skb_shinfo(tgt)->nr_frags;
2134 fragfrom = &skb_shinfo(skb)->frags[from];
2135
2136 /* Actual merge is delayed until the point when we know we can
2137 * commit all, so that we don't have to undo partial changes
2138 */
2139 if (!to ||
2140 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2141 merge = -1;
2142 } else {
2143 merge = to - 1;
2144
2145 todo -= fragfrom->size;
2146 if (todo < 0) {
2147 if (skb_prepare_for_shift(skb) ||
2148 skb_prepare_for_shift(tgt))
2149 return 0;
2150
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002151 /* All previous frag pointers might be stale! */
2152 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002153 fragto = &skb_shinfo(tgt)->frags[merge];
2154
2155 fragto->size += shiftlen;
2156 fragfrom->size -= shiftlen;
2157 fragfrom->page_offset += shiftlen;
2158
2159 goto onlymerged;
2160 }
2161
2162 from++;
2163 }
2164
2165 /* Skip full, not-fitting skb to avoid expensive operations */
2166 if ((shiftlen == skb->len) &&
2167 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2168 return 0;
2169
2170 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2171 return 0;
2172
2173 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2174 if (to == MAX_SKB_FRAGS)
2175 return 0;
2176
2177 fragfrom = &skb_shinfo(skb)->frags[from];
2178 fragto = &skb_shinfo(tgt)->frags[to];
2179
2180 if (todo >= fragfrom->size) {
2181 *fragto = *fragfrom;
2182 todo -= fragfrom->size;
2183 from++;
2184 to++;
2185
2186 } else {
2187 get_page(fragfrom->page);
2188 fragto->page = fragfrom->page;
2189 fragto->page_offset = fragfrom->page_offset;
2190 fragto->size = todo;
2191
2192 fragfrom->page_offset += todo;
2193 fragfrom->size -= todo;
2194 todo = 0;
2195
2196 to++;
2197 break;
2198 }
2199 }
2200
2201 /* Ready to "commit" this state change to tgt */
2202 skb_shinfo(tgt)->nr_frags = to;
2203
2204 if (merge >= 0) {
2205 fragfrom = &skb_shinfo(skb)->frags[0];
2206 fragto = &skb_shinfo(tgt)->frags[merge];
2207
2208 fragto->size += fragfrom->size;
2209 put_page(fragfrom->page);
2210 }
2211
2212 /* Reposition in the original skb */
2213 to = 0;
2214 while (from < skb_shinfo(skb)->nr_frags)
2215 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2216 skb_shinfo(skb)->nr_frags = to;
2217
2218 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2219
2220onlymerged:
2221 /* Most likely the tgt won't ever need its checksum anymore, skb on
2222 * the other hand might need it if it needs to be resent
2223 */
2224 tgt->ip_summed = CHECKSUM_PARTIAL;
2225 skb->ip_summed = CHECKSUM_PARTIAL;
2226
2227 /* Yak, is it really working this way? Some helper please? */
2228 skb->len -= shiftlen;
2229 skb->data_len -= shiftlen;
2230 skb->truesize -= shiftlen;
2231 tgt->len += shiftlen;
2232 tgt->data_len += shiftlen;
2233 tgt->truesize += shiftlen;
2234
2235 return shiftlen;
2236}
2237
Thomas Graf677e90e2005-06-23 20:59:51 -07002238/**
2239 * skb_prepare_seq_read - Prepare a sequential read of skb data
2240 * @skb: the buffer to read
2241 * @from: lower offset of data to be read
2242 * @to: upper offset of data to be read
2243 * @st: state variable
2244 *
2245 * Initializes the specified state variable. Must be called before
2246 * invoking skb_seq_read() for the first time.
2247 */
2248void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2249 unsigned int to, struct skb_seq_state *st)
2250{
2251 st->lower_offset = from;
2252 st->upper_offset = to;
2253 st->root_skb = st->cur_skb = skb;
2254 st->frag_idx = st->stepped_offset = 0;
2255 st->frag_data = NULL;
2256}
David S. Millerb4ac5302009-02-10 02:09:24 -08002257EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002258
2259/**
2260 * skb_seq_read - Sequentially read skb data
2261 * @consumed: number of bytes consumed by the caller so far
2262 * @data: destination pointer for data to be returned
2263 * @st: state variable
2264 *
2265 * Reads a block of skb data at &consumed relative to the
2266 * lower offset specified to skb_prepare_seq_read(). Assigns
2267 * the head of the data block to &data and returns the length
2268 * of the block or 0 if the end of the skb data or the upper
2269 * offset has been reached.
2270 *
2271 * The caller is not required to consume all of the data
2272 * returned, i.e. &consumed is typically set to the number
2273 * of bytes already consumed and the next call to
2274 * skb_seq_read() will return the remaining part of the block.
2275 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002276 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002277 * this limitation is the cost for zerocopy seqeuental
2278 * reads of potentially non linear data.
2279 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002280 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002281 * at the moment, state->root_skb could be replaced with
2282 * a stack for this purpose.
2283 */
2284unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2285 struct skb_seq_state *st)
2286{
2287 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2288 skb_frag_t *frag;
2289
2290 if (unlikely(abs_offset >= st->upper_offset))
2291 return 0;
2292
2293next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002294 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002295
Thomas Chenault995b3372009-05-18 21:43:27 -07002296 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002297 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002298 return block_limit - abs_offset;
2299 }
2300
2301 if (st->frag_idx == 0 && !st->frag_data)
2302 st->stepped_offset += skb_headlen(st->cur_skb);
2303
2304 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2305 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2306 block_limit = frag->size + st->stepped_offset;
2307
2308 if (abs_offset < block_limit) {
2309 if (!st->frag_data)
2310 st->frag_data = kmap_skb_frag(frag);
2311
2312 *data = (u8 *) st->frag_data + frag->page_offset +
2313 (abs_offset - st->stepped_offset);
2314
2315 return block_limit - abs_offset;
2316 }
2317
2318 if (st->frag_data) {
2319 kunmap_skb_frag(st->frag_data);
2320 st->frag_data = NULL;
2321 }
2322
2323 st->frag_idx++;
2324 st->stepped_offset += frag->size;
2325 }
2326
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002327 if (st->frag_data) {
2328 kunmap_skb_frag(st->frag_data);
2329 st->frag_data = NULL;
2330 }
2331
David S. Millerfbb398a2009-06-09 00:18:59 -07002332 if (st->root_skb == st->cur_skb && skb_has_frags(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002333 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002334 st->frag_idx = 0;
2335 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002336 } else if (st->cur_skb->next) {
2337 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002338 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002339 goto next_skb;
2340 }
2341
2342 return 0;
2343}
David S. Millerb4ac5302009-02-10 02:09:24 -08002344EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002345
2346/**
2347 * skb_abort_seq_read - Abort a sequential read of skb data
2348 * @st: state variable
2349 *
2350 * Must be called if skb_seq_read() was not called until it
2351 * returned 0.
2352 */
2353void skb_abort_seq_read(struct skb_seq_state *st)
2354{
2355 if (st->frag_data)
2356 kunmap_skb_frag(st->frag_data);
2357}
David S. Millerb4ac5302009-02-10 02:09:24 -08002358EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002359
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002360#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2361
2362static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2363 struct ts_config *conf,
2364 struct ts_state *state)
2365{
2366 return skb_seq_read(offset, text, TS_SKB_CB(state));
2367}
2368
2369static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2370{
2371 skb_abort_seq_read(TS_SKB_CB(state));
2372}
2373
2374/**
2375 * skb_find_text - Find a text pattern in skb data
2376 * @skb: the buffer to look in
2377 * @from: search offset
2378 * @to: search limit
2379 * @config: textsearch configuration
2380 * @state: uninitialized textsearch state variable
2381 *
2382 * Finds a pattern in the skb data according to the specified
2383 * textsearch configuration. Use textsearch_next() to retrieve
2384 * subsequent occurrences of the pattern. Returns the offset
2385 * to the first occurrence or UINT_MAX if no match was found.
2386 */
2387unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2388 unsigned int to, struct ts_config *config,
2389 struct ts_state *state)
2390{
Phil Oesterf72b9482006-06-26 00:00:57 -07002391 unsigned int ret;
2392
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002393 config->get_next_block = skb_ts_get_next_block;
2394 config->finish = skb_ts_finish;
2395
2396 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2397
Phil Oesterf72b9482006-06-26 00:00:57 -07002398 ret = textsearch_find(config, state);
2399 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002400}
David S. Millerb4ac5302009-02-10 02:09:24 -08002401EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002402
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002403/**
2404 * skb_append_datato_frags: - append the user data to a skb
2405 * @sk: sock structure
2406 * @skb: skb structure to be appened with user data.
2407 * @getfrag: call back function to be used for getting the user data
2408 * @from: pointer to user message iov
2409 * @length: length of the iov message
2410 *
2411 * Description: This procedure append the user data in the fragment part
2412 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2413 */
2414int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002415 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002416 int len, int odd, struct sk_buff *skb),
2417 void *from, int length)
2418{
2419 int frg_cnt = 0;
2420 skb_frag_t *frag = NULL;
2421 struct page *page = NULL;
2422 int copy, left;
2423 int offset = 0;
2424 int ret;
2425
2426 do {
2427 /* Return error if we don't have space for new frag */
2428 frg_cnt = skb_shinfo(skb)->nr_frags;
2429 if (frg_cnt >= MAX_SKB_FRAGS)
2430 return -EFAULT;
2431
2432 /* allocate a new page for next frag */
2433 page = alloc_pages(sk->sk_allocation, 0);
2434
2435 /* If alloc_page fails just return failure and caller will
2436 * free previous allocated pages by doing kfree_skb()
2437 */
2438 if (page == NULL)
2439 return -ENOMEM;
2440
2441 /* initialize the next frag */
2442 sk->sk_sndmsg_page = page;
2443 sk->sk_sndmsg_off = 0;
2444 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2445 skb->truesize += PAGE_SIZE;
2446 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2447
2448 /* get the new initialized frag */
2449 frg_cnt = skb_shinfo(skb)->nr_frags;
2450 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2451
2452 /* copy the user data to page */
2453 left = PAGE_SIZE - frag->page_offset;
2454 copy = (length > left)? left : length;
2455
2456 ret = getfrag(from, (page_address(frag->page) +
2457 frag->page_offset + frag->size),
2458 offset, copy, 0, skb);
2459 if (ret < 0)
2460 return -EFAULT;
2461
2462 /* copy was successful so update the size parameters */
2463 sk->sk_sndmsg_off += copy;
2464 frag->size += copy;
2465 skb->len += copy;
2466 skb->data_len += copy;
2467 offset += copy;
2468 length -= copy;
2469
2470 } while (length > 0);
2471
2472 return 0;
2473}
David S. Millerb4ac5302009-02-10 02:09:24 -08002474EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002475
Herbert Xucbb042f2006-03-20 22:43:56 -08002476/**
2477 * skb_pull_rcsum - pull skb and update receive checksum
2478 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002479 * @len: length of data pulled
2480 *
2481 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002482 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002483 * receive path processing instead of skb_pull unless you know
2484 * that the checksum difference is zero (e.g., a valid IP header)
2485 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002486 */
2487unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2488{
2489 BUG_ON(len > skb->len);
2490 skb->len -= len;
2491 BUG_ON(skb->len < skb->data_len);
2492 skb_postpull_rcsum(skb, skb->data, len);
2493 return skb->data += len;
2494}
2495
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002496EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2497
Herbert Xuf4c50d92006-06-22 03:02:40 -07002498/**
2499 * skb_segment - Perform protocol segmentation on skb.
2500 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002501 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002502 *
2503 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002504 * a pointer to the first in a list of new skbs for the segments.
2505 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002506 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002507struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002508{
2509 struct sk_buff *segs = NULL;
2510 struct sk_buff *tail = NULL;
Herbert Xu89319d32008-12-15 23:26:06 -08002511 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002512 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002513 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002514 unsigned int offset = doffset;
2515 unsigned int headroom;
2516 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002517 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002518 int nfrags = skb_shinfo(skb)->nr_frags;
2519 int err = -ENOMEM;
2520 int i = 0;
2521 int pos;
2522
2523 __skb_push(skb, doffset);
2524 headroom = skb_headroom(skb);
2525 pos = skb_headlen(skb);
2526
2527 do {
2528 struct sk_buff *nskb;
2529 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002530 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002531 int size;
2532
2533 len = skb->len - offset;
2534 if (len > mss)
2535 len = mss;
2536
2537 hsize = skb_headlen(skb) - offset;
2538 if (hsize < 0)
2539 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002540 if (hsize > len || !sg)
2541 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002542
Herbert Xu89319d32008-12-15 23:26:06 -08002543 if (!hsize && i >= nfrags) {
2544 BUG_ON(fskb->len != len);
2545
2546 pos += len;
2547 nskb = skb_clone(fskb, GFP_ATOMIC);
2548 fskb = fskb->next;
2549
2550 if (unlikely(!nskb))
2551 goto err;
2552
2553 hsize = skb_end_pointer(nskb) - nskb->head;
2554 if (skb_cow_head(nskb, doffset + headroom)) {
2555 kfree_skb(nskb);
2556 goto err;
2557 }
2558
2559 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2560 hsize;
2561 skb_release_head_state(nskb);
2562 __skb_push(nskb, doffset);
2563 } else {
2564 nskb = alloc_skb(hsize + doffset + headroom,
2565 GFP_ATOMIC);
2566
2567 if (unlikely(!nskb))
2568 goto err;
2569
2570 skb_reserve(nskb, headroom);
2571 __skb_put(nskb, doffset);
2572 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002573
2574 if (segs)
2575 tail->next = nskb;
2576 else
2577 segs = nskb;
2578 tail = nskb;
2579
Herbert Xu6f85a122008-08-15 14:55:02 -07002580 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002581 nskb->mac_len = skb->mac_len;
2582
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002583 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002584 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002585 nskb->transport_header = (nskb->network_header +
2586 skb_network_header_len(skb));
Herbert Xu89319d32008-12-15 23:26:06 -08002587 skb_copy_from_linear_data(skb, nskb->data, doffset);
2588
Herbert Xu2f181852009-03-28 23:39:18 -07002589 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d32008-12-15 23:26:06 -08002590 continue;
2591
Herbert Xuf4c50d92006-06-22 03:02:40 -07002592 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002593 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002594 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2595 skb_put(nskb, len),
2596 len, 0);
2597 continue;
2598 }
2599
2600 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002601
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002602 skb_copy_from_linear_data_offset(skb, offset,
2603 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002604
Herbert Xu89319d32008-12-15 23:26:06 -08002605 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002606 *frag = skb_shinfo(skb)->frags[i];
2607 get_page(frag->page);
2608 size = frag->size;
2609
2610 if (pos < offset) {
2611 frag->page_offset += offset - pos;
2612 frag->size -= offset - pos;
2613 }
2614
Herbert Xu89319d32008-12-15 23:26:06 -08002615 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002616
2617 if (pos + size <= offset + len) {
2618 i++;
2619 pos += size;
2620 } else {
2621 frag->size -= pos + size - (offset + len);
Herbert Xu89319d32008-12-15 23:26:06 -08002622 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002623 }
2624
2625 frag++;
2626 }
2627
Herbert Xu89319d32008-12-15 23:26:06 -08002628 if (pos < offset + len) {
2629 struct sk_buff *fskb2 = fskb;
2630
2631 BUG_ON(pos + fskb->len != offset + len);
2632
2633 pos += fskb->len;
2634 fskb = fskb->next;
2635
2636 if (fskb2->next) {
2637 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2638 if (!fskb2)
2639 goto err;
2640 } else
2641 skb_get(fskb2);
2642
David S. Millerfbb398a2009-06-09 00:18:59 -07002643 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d32008-12-15 23:26:06 -08002644 skb_shinfo(nskb)->frag_list = fskb2;
2645 }
2646
2647skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002648 nskb->data_len = len - hsize;
2649 nskb->len += nskb->data_len;
2650 nskb->truesize += nskb->data_len;
2651 } while ((offset += len) < skb->len);
2652
2653 return segs;
2654
2655err:
2656 while ((skb = segs)) {
2657 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002658 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002659 }
2660 return ERR_PTR(err);
2661}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002662EXPORT_SYMBOL_GPL(skb_segment);
2663
Herbert Xu71d93b32008-12-15 23:42:33 -08002664int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2665{
2666 struct sk_buff *p = *head;
2667 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002668 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2669 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002670 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002671 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002672 unsigned int offset = skb_gro_offset(skb);
2673 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002674
Herbert Xu86911732009-01-29 14:19:50 +00002675 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002676 return -E2BIG;
2677
Herbert Xu9aaa1562009-05-26 18:50:33 +00002678 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002679 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002680 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002681 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002682 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002683 int i = skbinfo->nr_frags;
2684 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002685
Herbert Xu66e92fc2009-05-26 18:50:32 +00002686 offset -= headlen;
2687
2688 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002689 return -E2BIG;
2690
Herbert Xu9aaa1562009-05-26 18:50:33 +00002691 pinfo->nr_frags = nr_frags;
2692 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002693
Herbert Xu9aaa1562009-05-26 18:50:33 +00002694 frag = pinfo->frags + nr_frags;
2695 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002696 do {
2697 *--frag = *--frag2;
2698 } while (--i);
2699
2700 frag->page_offset += offset;
2701 frag->size -= offset;
2702
Herbert Xuf5572062009-01-14 20:40:03 -08002703 skb->truesize -= skb->data_len;
2704 skb->len -= skb->data_len;
2705 skb->data_len = 0;
2706
Herbert Xu5d38a072009-01-04 16:13:40 -08002707 NAPI_GRO_CB(skb)->free = 1;
2708 goto done;
Herbert Xu69c0cab2009-11-17 05:18:18 -08002709 } else if (skb_gro_len(p) != pinfo->gso_size)
2710 return -E2BIG;
Herbert Xu71d93b32008-12-15 23:42:33 -08002711
2712 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002713 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002714 if (unlikely(!nskb))
2715 return -ENOMEM;
2716
2717 __copy_skb_header(nskb, p);
2718 nskb->mac_len = p->mac_len;
2719
2720 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002721 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002722
Herbert Xu86911732009-01-29 14:19:50 +00002723 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002724 skb_set_network_header(nskb, skb_network_offset(p));
2725 skb_set_transport_header(nskb, skb_transport_offset(p));
2726
Herbert Xu86911732009-01-29 14:19:50 +00002727 __skb_pull(p, skb_gro_offset(p));
2728 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2729 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002730
2731 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2732 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002733 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002734 skb_header_release(p);
2735 nskb->prev = p;
2736
2737 nskb->data_len += p->len;
2738 nskb->truesize += p->len;
2739 nskb->len += p->len;
2740
2741 *head = nskb;
2742 nskb->next = p->next;
2743 p->next = NULL;
2744
2745 p = nskb;
2746
2747merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002748 if (offset > headlen) {
Herbert Xu9aaa1562009-05-26 18:50:33 +00002749 skbinfo->frags[0].page_offset += offset - headlen;
2750 skbinfo->frags[0].size -= offset - headlen;
Herbert Xu67147ba2009-05-26 18:50:22 +00002751 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002752 }
2753
Herbert Xu67147ba2009-05-26 18:50:22 +00002754 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002755
Herbert Xu71d93b32008-12-15 23:42:33 -08002756 p->prev->next = skb;
2757 p->prev = skb;
2758 skb_header_release(skb);
2759
Herbert Xu5d38a072009-01-04 16:13:40 -08002760done:
2761 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002762 p->data_len += len;
2763 p->truesize += len;
2764 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002765
2766 NAPI_GRO_CB(skb)->same_flow = 1;
2767 return 0;
2768}
2769EXPORT_SYMBOL_GPL(skb_gro_receive);
2770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771void __init skb_init(void)
2772{
2773 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2774 sizeof(struct sk_buff),
2775 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002776 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002777 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002778 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2779 (2*sizeof(struct sk_buff)) +
2780 sizeof(atomic_t),
2781 0,
Alexey Dobriyane5d679f2006-08-26 19:25:52 -07002782 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002783 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784}
2785
David Howells716ea3a2007-04-02 20:19:53 -07002786/**
2787 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2788 * @skb: Socket buffer containing the buffers to be mapped
2789 * @sg: The scatter-gather list to map into
2790 * @offset: The offset into the buffer's contents to start mapping
2791 * @len: Length of buffer space to be mapped
2792 *
2793 * Fill the specified scatter-gather list with mappings/pointers into a
2794 * region of the buffer space attached to a socket buffer.
2795 */
David S. Miller51c739d2007-10-30 21:29:29 -07002796static int
2797__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002798{
David S. Miller1a028e52007-04-27 15:21:23 -07002799 int start = skb_headlen(skb);
2800 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002801 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002802 int elt = 0;
2803
2804 if (copy > 0) {
2805 if (copy > len)
2806 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002807 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002808 elt++;
2809 if ((len -= copy) == 0)
2810 return elt;
2811 offset += copy;
2812 }
2813
2814 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002815 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002816
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002817 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002818
2819 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002820 if ((copy = end - offset) > 0) {
2821 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2822
2823 if (copy > len)
2824 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002825 sg_set_page(&sg[elt], frag->page, copy,
2826 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002827 elt++;
2828 if (!(len -= copy))
2829 return elt;
2830 offset += copy;
2831 }
David S. Miller1a028e52007-04-27 15:21:23 -07002832 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002833 }
2834
David S. Millerfbb398a2009-06-09 00:18:59 -07002835 skb_walk_frags(skb, frag_iter) {
2836 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002837
David S. Millerfbb398a2009-06-09 00:18:59 -07002838 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002839
David S. Millerfbb398a2009-06-09 00:18:59 -07002840 end = start + frag_iter->len;
2841 if ((copy = end - offset) > 0) {
2842 if (copy > len)
2843 copy = len;
2844 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2845 copy);
2846 if ((len -= copy) == 0)
2847 return elt;
2848 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002849 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002850 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002851 }
2852 BUG_ON(len);
2853 return elt;
2854}
2855
David S. Miller51c739d2007-10-30 21:29:29 -07002856int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2857{
2858 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2859
Jens Axboec46f2332007-10-31 12:06:37 +01002860 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002861
2862 return nsg;
2863}
David S. Millerb4ac5302009-02-10 02:09:24 -08002864EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002865
David Howells716ea3a2007-04-02 20:19:53 -07002866/**
2867 * skb_cow_data - Check that a socket buffer's data buffers are writable
2868 * @skb: The socket buffer to check.
2869 * @tailbits: Amount of trailing space to be added
2870 * @trailer: Returned pointer to the skb where the @tailbits space begins
2871 *
2872 * Make sure that the data buffers attached to a socket buffer are
2873 * writable. If they are not, private copies are made of the data buffers
2874 * and the socket buffer is set to use these instead.
2875 *
2876 * If @tailbits is given, make sure that there is space to write @tailbits
2877 * bytes of data beyond current end of socket buffer. @trailer will be
2878 * set to point to the skb in which this space begins.
2879 *
2880 * The number of scatterlist elements required to completely map the
2881 * COW'd and extended socket buffer will be returned.
2882 */
2883int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2884{
2885 int copyflag;
2886 int elt;
2887 struct sk_buff *skb1, **skb_p;
2888
2889 /* If skb is cloned or its head is paged, reallocate
2890 * head pulling out all the pages (pages are considered not writable
2891 * at the moment even if they are anonymous).
2892 */
2893 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2894 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2895 return -ENOMEM;
2896
2897 /* Easy case. Most of packets will go this way. */
David S. Millerfbb398a2009-06-09 00:18:59 -07002898 if (!skb_has_frags(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002899 /* A little of trouble, not enough of space for trailer.
2900 * This should not happen, when stack is tuned to generate
2901 * good frames. OK, on miss we reallocate and reserve even more
2902 * space, 128 bytes is fair. */
2903
2904 if (skb_tailroom(skb) < tailbits &&
2905 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2906 return -ENOMEM;
2907
2908 /* Voila! */
2909 *trailer = skb;
2910 return 1;
2911 }
2912
2913 /* Misery. We are in troubles, going to mincer fragments... */
2914
2915 elt = 1;
2916 skb_p = &skb_shinfo(skb)->frag_list;
2917 copyflag = 0;
2918
2919 while ((skb1 = *skb_p) != NULL) {
2920 int ntail = 0;
2921
2922 /* The fragment is partially pulled by someone,
2923 * this can happen on input. Copy it and everything
2924 * after it. */
2925
2926 if (skb_shared(skb1))
2927 copyflag = 1;
2928
2929 /* If the skb is the last, worry about trailer. */
2930
2931 if (skb1->next == NULL && tailbits) {
2932 if (skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002933 skb_has_frags(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07002934 skb_tailroom(skb1) < tailbits)
2935 ntail = tailbits + 128;
2936 }
2937
2938 if (copyflag ||
2939 skb_cloned(skb1) ||
2940 ntail ||
2941 skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002942 skb_has_frags(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07002943 struct sk_buff *skb2;
2944
2945 /* Fuck, we are miserable poor guys... */
2946 if (ntail == 0)
2947 skb2 = skb_copy(skb1, GFP_ATOMIC);
2948 else
2949 skb2 = skb_copy_expand(skb1,
2950 skb_headroom(skb1),
2951 ntail,
2952 GFP_ATOMIC);
2953 if (unlikely(skb2 == NULL))
2954 return -ENOMEM;
2955
2956 if (skb1->sk)
2957 skb_set_owner_w(skb2, skb1->sk);
2958
2959 /* Looking around. Are we still alive?
2960 * OK, link new skb, drop old one */
2961
2962 skb2->next = skb1->next;
2963 *skb_p = skb2;
2964 kfree_skb(skb1);
2965 skb1 = skb2;
2966 }
2967 elt++;
2968 *trailer = skb1;
2969 skb_p = &skb1->next;
2970 }
2971
2972 return elt;
2973}
David S. Millerb4ac5302009-02-10 02:09:24 -08002974EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002975
Patrick Ohlyac45f602009-02-12 05:03:37 +00002976void skb_tstamp_tx(struct sk_buff *orig_skb,
2977 struct skb_shared_hwtstamps *hwtstamps)
2978{
2979 struct sock *sk = orig_skb->sk;
2980 struct sock_exterr_skb *serr;
2981 struct sk_buff *skb;
2982 int err;
2983
2984 if (!sk)
2985 return;
2986
2987 skb = skb_clone(orig_skb, GFP_ATOMIC);
2988 if (!skb)
2989 return;
2990
2991 if (hwtstamps) {
2992 *skb_hwtstamps(skb) =
2993 *hwtstamps;
2994 } else {
2995 /*
2996 * no hardware time stamps available,
2997 * so keep the skb_shared_tx and only
2998 * store software time stamp
2999 */
3000 skb->tstamp = ktime_get_real();
3001 }
3002
3003 serr = SKB_EXT_ERR(skb);
3004 memset(serr, 0, sizeof(*serr));
3005 serr->ee.ee_errno = ENOMSG;
3006 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
3007 err = sock_queue_err_skb(sk, skb);
3008 if (err)
3009 kfree_skb(skb);
3010}
3011EXPORT_SYMBOL_GPL(skb_tstamp_tx);
3012
3013
Rusty Russellf35d9d82008-02-04 23:49:54 -05003014/**
3015 * skb_partial_csum_set - set up and verify partial csum values for packet
3016 * @skb: the skb to set
3017 * @start: the number of bytes after skb->data to start checksumming.
3018 * @off: the offset from start to place the checksum.
3019 *
3020 * For untrusted partially-checksummed packets, we need to make sure the values
3021 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3022 *
3023 * This function checks and sets those values and skb->ip_summed: if this
3024 * returns false you should drop the packet.
3025 */
3026bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3027{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003028 if (unlikely(start > skb_headlen(skb)) ||
3029 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003030 if (net_ratelimit())
3031 printk(KERN_WARNING
3032 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003033 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003034 return false;
3035 }
3036 skb->ip_summed = CHECKSUM_PARTIAL;
3037 skb->csum_start = skb_headroom(skb) + start;
3038 skb->csum_offset = off;
3039 return true;
3040}
David S. Millerb4ac5302009-02-10 02:09:24 -08003041EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003042
Ben Hutchings4497b072008-06-19 16:22:28 -07003043void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3044{
3045 if (net_ratelimit())
3046 pr_warning("%s: received packets cannot be forwarded"
3047 " while LRO is enabled\n", skb->dev->name);
3048}
Ben Hutchings4497b072008-06-19 16:22:28 -07003049EXPORT_SYMBOL(__skb_warn_lro_forwarding);