blob: 49961ba3c0f64666250cd8f345dcb3914af49a10 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/mm.h>
43#include <linux/interrupt.h>
44#include <linux/in.h>
45#include <linux/inet.h>
46#include <linux/slab.h>
47#include <linux/netdevice.h>
48#ifdef CONFIG_NET_CLS_ACT
49#include <net/pkt_sched.h>
50#endif
51#include <linux/string.h>
52#include <linux/skbuff.h>
Jens Axboe9c55e012007-11-06 23:30:13 -080053#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/cache.h>
55#include <linux/rtnetlink.h>
56#include <linux/init.h>
David Howells716ea3a2007-04-02 20:19:53 -070057#include <linux/scatterlist.h>
Patrick Ohlyac45f602009-02-12 05:03:37 +000058#include <linux/errqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <net/protocol.h>
61#include <net/dst.h>
62#include <net/sock.h>
63#include <net/checksum.h>
64#include <net/xfrm.h>
65
66#include <asm/uaccess.h>
67#include <asm/system.h>
Neil Hormanead2ceb2009-03-11 09:49:55 +000068#include <trace/skb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Al Viroa1f8e7f72006-10-19 16:08:53 -040070#include "kmap_skb.h"
71
Christoph Lametere18b8902006-12-06 20:33:20 -080072static struct kmem_cache *skbuff_head_cache __read_mostly;
73static struct kmem_cache *skbuff_fclone_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jens Axboe9c55e012007-11-06 23:30:13 -080075static void sock_pipe_buf_release(struct pipe_inode_info *pipe,
76 struct pipe_buffer *buf)
77{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080078 put_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080079}
80
81static void sock_pipe_buf_get(struct pipe_inode_info *pipe,
82 struct pipe_buffer *buf)
83{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -080084 get_page(buf->page);
Jens Axboe9c55e012007-11-06 23:30:13 -080085}
86
87static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
88 struct pipe_buffer *buf)
89{
90 return 1;
91}
92
93
94/* Pipe buffer operations for a socket. */
95static struct pipe_buf_operations sock_pipe_buf_ops = {
96 .can_merge = 0,
97 .map = generic_pipe_buf_map,
98 .unmap = generic_pipe_buf_unmap,
99 .confirm = generic_pipe_buf_confirm,
100 .release = sock_pipe_buf_release,
101 .steal = sock_pipe_buf_steal,
102 .get = sock_pipe_buf_get,
103};
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * Keep out-of-line to prevent kernel bloat.
107 * __builtin_return_address is not used because it is not always
108 * reliable.
109 */
110
111/**
112 * skb_over_panic - private function
113 * @skb: buffer
114 * @sz: size
115 * @here: address
116 *
117 * Out of line support code for skb_put(). Not user callable.
118 */
119void skb_over_panic(struct sk_buff *skb, int sz, void *here)
120{
Patrick McHardy26095452005-04-21 16:43:02 -0700121 printk(KERN_EMERG "skb_over_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700122 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700123 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700124 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700125 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 BUG();
127}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800128EXPORT_SYMBOL(skb_over_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/**
131 * skb_under_panic - private function
132 * @skb: buffer
133 * @sz: size
134 * @here: address
135 *
136 * Out of line support code for skb_push(). Not user callable.
137 */
138
139void skb_under_panic(struct sk_buff *skb, int sz, void *here)
140{
Patrick McHardy26095452005-04-21 16:43:02 -0700141 printk(KERN_EMERG "skb_under_panic: text:%p len:%d put:%d head:%p "
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700142 "data:%p tail:%#lx end:%#lx dev:%s\n",
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700143 here, skb->len, sz, skb->head, skb->data,
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700144 (unsigned long)skb->tail, (unsigned long)skb->end,
Patrick McHardy26095452005-04-21 16:43:02 -0700145 skb->dev ? skb->dev->name : "<NULL>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 BUG();
147}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800148EXPORT_SYMBOL(skb_under_panic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* Allocate a new skbuff. We do this ourselves so we can fill in a few
151 * 'private' fields and also do memory statistics to find all the
152 * [BEEP] leaks.
153 *
154 */
155
156/**
David S. Millerd179cd12005-08-17 14:57:30 -0700157 * __alloc_skb - allocate a network buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * @size: size to allocate
159 * @gfp_mask: allocation mask
Randy Dunlapc83c2482005-10-18 22:07:41 -0700160 * @fclone: allocate from fclone cache instead of head cache
161 * and allocate a cloned (child) skb
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800162 * @node: numa node to allocate memory on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
164 * Allocate a new &sk_buff. The returned buffer has no headroom and a
165 * tail room of size bytes. The object has a reference count of one.
166 * The return is the buffer. On a failure the return is %NULL.
167 *
168 * Buffers may only be allocated from interrupts using a @gfp_mask of
169 * %GFP_ATOMIC.
170 */
Al Virodd0fc662005-10-07 07:46:04 +0100171struct sk_buff *__alloc_skb(unsigned int size, gfp_t gfp_mask,
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800172 int fclone, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Christoph Lametere18b8902006-12-06 20:33:20 -0800174 struct kmem_cache *cache;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800175 struct skb_shared_info *shinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct sk_buff *skb;
177 u8 *data;
178
Herbert Xu8798b3f2006-01-23 16:32:45 -0800179 cache = fclone ? skbuff_fclone_cache : skbuff_head_cache;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* Get the HEAD */
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800182 skb = kmem_cache_alloc_node(cache, gfp_mask & ~__GFP_DMA, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (!skb)
184 goto out;
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 size = SKB_DATA_ALIGN(size);
Christoph Hellwigb30973f2006-12-06 20:32:36 -0800187 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
188 gfp_mask, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (!data)
190 goto nodata;
191
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300192 /*
Johannes Bergc8005782008-05-03 20:56:42 -0700193 * Only clear those fields we need to clear, not those that we will
194 * actually initialise below. Hence, don't put any more fields after
195 * the tail pointer in struct sk_buff!
Arnaldo Carvalho de Meloca0605a2007-03-19 10:48:59 -0300196 */
197 memset(skb, 0, offsetof(struct sk_buff, tail));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 skb->truesize = size + sizeof(struct sk_buff);
199 atomic_set(&skb->users, 1);
200 skb->head = data;
201 skb->data = data;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700202 skb_reset_tail_pointer(skb);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700203 skb->end = skb->tail + size;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800204 /* make sure we initialize shinfo sequentially */
205 shinfo = skb_shinfo(skb);
206 atomic_set(&shinfo->dataref, 1);
207 shinfo->nr_frags = 0;
Herbert Xu79671682006-06-22 02:40:14 -0700208 shinfo->gso_size = 0;
209 shinfo->gso_segs = 0;
210 shinfo->gso_type = 0;
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800211 shinfo->ip6_frag_id = 0;
Patrick Ohlyac45f602009-02-12 05:03:37 +0000212 shinfo->tx_flags.flags = 0;
David S. Millerfbb398a2009-06-09 00:18:59 -0700213 skb_frag_list_init(skb);
Patrick Ohlyac45f602009-02-12 05:03:37 +0000214 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Benjamin LaHaise4947d3e2006-01-03 14:06:50 -0800215
David S. Millerd179cd12005-08-17 14:57:30 -0700216 if (fclone) {
217 struct sk_buff *child = skb + 1;
218 atomic_t *fclone_ref = (atomic_t *) (child + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
David S. Millerd179cd12005-08-17 14:57:30 -0700220 skb->fclone = SKB_FCLONE_ORIG;
221 atomic_set(fclone_ref, 1);
222
223 child->fclone = SKB_FCLONE_UNAVAILABLE;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225out:
226 return skb;
227nodata:
Herbert Xu8798b3f2006-01-23 16:32:45 -0800228 kmem_cache_free(cache, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 skb = NULL;
230 goto out;
231}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800232EXPORT_SYMBOL(__alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234/**
Christoph Hellwig8af27452006-07-31 22:35:23 -0700235 * __netdev_alloc_skb - allocate an skbuff for rx on a specific device
236 * @dev: network device to receive on
237 * @length: length to allocate
238 * @gfp_mask: get_free_pages mask, passed to alloc_skb
239 *
240 * Allocate a new &sk_buff and assign it a usage count of one. The
241 * buffer has unspecified headroom built in. Users should allocate
242 * the headroom they think they need without accounting for the
243 * built in space. The built in space is used for optimisations.
244 *
245 * %NULL is returned if there is no free memory.
246 */
247struct sk_buff *__netdev_alloc_skb(struct net_device *dev,
248 unsigned int length, gfp_t gfp_mask)
249{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700250 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
Christoph Hellwig8af27452006-07-31 22:35:23 -0700251 struct sk_buff *skb;
252
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900253 skb = __alloc_skb(length + NET_SKB_PAD, gfp_mask, 0, node);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700254 if (likely(skb)) {
Christoph Hellwig8af27452006-07-31 22:35:23 -0700255 skb_reserve(skb, NET_SKB_PAD);
Christoph Hellwig7b2e4972006-08-07 16:09:04 -0700256 skb->dev = dev;
257 }
Christoph Hellwig8af27452006-07-31 22:35:23 -0700258 return skb;
259}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800260EXPORT_SYMBOL(__netdev_alloc_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Peter Zijlstra654bed12008-10-07 14:22:33 -0700262struct page *__netdev_alloc_page(struct net_device *dev, gfp_t gfp_mask)
263{
264 int node = dev->dev.parent ? dev_to_node(dev->dev.parent) : -1;
265 struct page *page;
266
267 page = alloc_pages_node(node, gfp_mask, 0);
268 return page;
269}
270EXPORT_SYMBOL(__netdev_alloc_page);
271
272void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
273 int size)
274{
275 skb_fill_page_desc(skb, i, page, off, size);
276 skb->len += size;
277 skb->data_len += size;
278 skb->truesize += size;
279}
280EXPORT_SYMBOL(skb_add_rx_frag);
281
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700282/**
283 * dev_alloc_skb - allocate an skbuff for receiving
284 * @length: length to allocate
285 *
286 * Allocate a new &sk_buff and assign it a usage count of one. The
287 * buffer has unspecified headroom built in. Users should allocate
288 * the headroom they think they need without accounting for the
289 * built in space. The built in space is used for optimisations.
290 *
291 * %NULL is returned if there is no free memory. Although this function
292 * allocates memory it can be called from an interrupt.
293 */
294struct sk_buff *dev_alloc_skb(unsigned int length)
295{
Denys Vlasenko1483b872008-03-28 15:57:39 -0700296 /*
297 * There is more code here than it seems:
David S. Millera0f55e02008-03-28 18:22:32 -0700298 * __dev_alloc_skb is an inline
Denys Vlasenko1483b872008-03-28 15:57:39 -0700299 */
Ilpo Järvinenf58518e2008-03-27 17:51:31 -0700300 return __dev_alloc_skb(length, GFP_ATOMIC);
301}
302EXPORT_SYMBOL(dev_alloc_skb);
303
Herbert Xu27b437c2006-07-13 19:26:39 -0700304static void skb_drop_list(struct sk_buff **listp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Herbert Xu27b437c2006-07-13 19:26:39 -0700306 struct sk_buff *list = *listp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Herbert Xu27b437c2006-07-13 19:26:39 -0700308 *listp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 do {
311 struct sk_buff *this = list;
312 list = list->next;
313 kfree_skb(this);
314 } while (list);
315}
316
Herbert Xu27b437c2006-07-13 19:26:39 -0700317static inline void skb_drop_fraglist(struct sk_buff *skb)
318{
319 skb_drop_list(&skb_shinfo(skb)->frag_list);
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322static void skb_clone_fraglist(struct sk_buff *skb)
323{
324 struct sk_buff *list;
325
David S. Millerfbb398a2009-06-09 00:18:59 -0700326 skb_walk_frags(skb, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 skb_get(list);
328}
329
Adrian Bunk5bba1712006-06-29 13:02:35 -0700330static void skb_release_data(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 if (!skb->cloned ||
333 !atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1,
334 &skb_shinfo(skb)->dataref)) {
335 if (skb_shinfo(skb)->nr_frags) {
336 int i;
337 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
338 put_page(skb_shinfo(skb)->frags[i].page);
339 }
340
David S. Millerfbb398a2009-06-09 00:18:59 -0700341 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 skb_drop_fraglist(skb);
343
344 kfree(skb->head);
345 }
346}
347
348/*
349 * Free an skbuff by memory without cleaning the state.
350 */
Herbert Xu2d4baff2007-11-26 23:11:19 +0800351static void kfree_skbmem(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
David S. Millerd179cd12005-08-17 14:57:30 -0700353 struct sk_buff *other;
354 atomic_t *fclone_ref;
355
David S. Millerd179cd12005-08-17 14:57:30 -0700356 switch (skb->fclone) {
357 case SKB_FCLONE_UNAVAILABLE:
358 kmem_cache_free(skbuff_head_cache, skb);
359 break;
360
361 case SKB_FCLONE_ORIG:
362 fclone_ref = (atomic_t *) (skb + 2);
363 if (atomic_dec_and_test(fclone_ref))
364 kmem_cache_free(skbuff_fclone_cache, skb);
365 break;
366
367 case SKB_FCLONE_CLONE:
368 fclone_ref = (atomic_t *) (skb + 1);
369 other = skb - 1;
370
371 /* The clone portion is available for
372 * fast-cloning again.
373 */
374 skb->fclone = SKB_FCLONE_UNAVAILABLE;
375
376 if (atomic_dec_and_test(fclone_ref))
377 kmem_cache_free(skbuff_fclone_cache, other);
378 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700382static void skb_release_head_state(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Eric Dumazetadf30902009-06-02 05:19:30 +0000384 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifdef CONFIG_XFRM
386 secpath_put(skb->sp);
387#endif
Stephen Hemminger9c2b3322005-04-19 22:39:42 -0700388 if (skb->destructor) {
389 WARN_ON(in_irq());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 skb->destructor(skb);
391 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800392#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Yasuyuki Kozakai5f79e0f2007-03-23 11:17:07 -0700393 nf_conntrack_put(skb->nfct);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800394 nf_conntrack_put_reasm(skb->nfct_reasm);
395#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396#ifdef CONFIG_BRIDGE_NETFILTER
397 nf_bridge_put(skb->nf_bridge);
398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/* XXX: IS this still necessary? - JHS */
400#ifdef CONFIG_NET_SCHED
401 skb->tc_index = 0;
402#ifdef CONFIG_NET_CLS_ACT
403 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#endif
405#endif
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700406}
407
408/* Free everything but the sk_buff shell. */
409static void skb_release_all(struct sk_buff *skb)
410{
411 skb_release_head_state(skb);
Herbert Xu2d4baff2007-11-26 23:11:19 +0800412 skb_release_data(skb);
413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Herbert Xu2d4baff2007-11-26 23:11:19 +0800415/**
416 * __kfree_skb - private function
417 * @skb: buffer
418 *
419 * Free an sk_buff. Release anything attached to the buffer.
420 * Clean the state. This is an internal helper function. Users should
421 * always call kfree_skb
422 */
423
424void __kfree_skb(struct sk_buff *skb)
425{
426 skb_release_all(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 kfree_skbmem(skb);
428}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800429EXPORT_SYMBOL(__kfree_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431/**
Jörn Engel231d06a2006-03-20 21:28:35 -0800432 * kfree_skb - free an sk_buff
433 * @skb: buffer to free
434 *
435 * Drop a reference to the buffer and free it if the usage count has
436 * hit zero.
437 */
438void kfree_skb(struct sk_buff *skb)
439{
440 if (unlikely(!skb))
441 return;
442 if (likely(atomic_read(&skb->users) == 1))
443 smp_rmb();
444 else if (likely(!atomic_dec_and_test(&skb->users)))
445 return;
Neil Hormanead2ceb2009-03-11 09:49:55 +0000446 trace_kfree_skb(skb, __builtin_return_address(0));
Jörn Engel231d06a2006-03-20 21:28:35 -0800447 __kfree_skb(skb);
448}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800449EXPORT_SYMBOL(kfree_skb);
Jörn Engel231d06a2006-03-20 21:28:35 -0800450
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700451/**
Neil Hormanead2ceb2009-03-11 09:49:55 +0000452 * consume_skb - free an skbuff
453 * @skb: buffer to free
454 *
455 * Drop a ref to the buffer and free it if the usage count has hit zero
456 * Functions identically to kfree_skb, but kfree_skb assumes that the frame
457 * is being dropped after a failure and notes that
458 */
459void consume_skb(struct sk_buff *skb)
460{
461 if (unlikely(!skb))
462 return;
463 if (likely(atomic_read(&skb->users) == 1))
464 smp_rmb();
465 else if (likely(!atomic_dec_and_test(&skb->users)))
466 return;
467 __kfree_skb(skb);
468}
469EXPORT_SYMBOL(consume_skb);
470
471/**
Stephen Hemmingerd1a203e2008-11-01 21:01:09 -0700472 * skb_recycle_check - check if skb can be reused for receive
473 * @skb: buffer
474 * @skb_size: minimum receive buffer size
475 *
476 * Checks that the skb passed in is not shared or cloned, and
477 * that it is linear and its head portion at least as large as
478 * skb_size so that it can be recycled as a receive buffer.
479 * If these conditions are met, this function does any necessary
480 * reference count dropping and cleans up the skbuff as if it
481 * just came from __alloc_skb().
482 */
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700483int skb_recycle_check(struct sk_buff *skb, int skb_size)
484{
485 struct skb_shared_info *shinfo;
486
487 if (skb_is_nonlinear(skb) || skb->fclone != SKB_FCLONE_UNAVAILABLE)
488 return 0;
489
490 skb_size = SKB_DATA_ALIGN(skb_size + NET_SKB_PAD);
491 if (skb_end_pointer(skb) - skb->head < skb_size)
492 return 0;
493
494 if (skb_shared(skb) || skb_cloned(skb))
495 return 0;
496
497 skb_release_head_state(skb);
498 shinfo = skb_shinfo(skb);
499 atomic_set(&shinfo->dataref, 1);
500 shinfo->nr_frags = 0;
501 shinfo->gso_size = 0;
502 shinfo->gso_segs = 0;
503 shinfo->gso_type = 0;
504 shinfo->ip6_frag_id = 0;
Lennert Buytenhekb8050072009-05-06 16:49:18 -0700505 shinfo->tx_flags.flags = 0;
David S. Millerfbb398a2009-06-09 00:18:59 -0700506 skb_frag_list_init(skb);
Lennert Buytenhekb8050072009-05-06 16:49:18 -0700507 memset(&shinfo->hwtstamps, 0, sizeof(shinfo->hwtstamps));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700508
509 memset(skb, 0, offsetof(struct sk_buff, tail));
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700510 skb->data = skb->head + NET_SKB_PAD;
Lennert Buytenhek5cd33db2008-11-10 21:45:05 -0800511 skb_reset_tail_pointer(skb);
Lennert Buytenhek04a4bb52008-10-01 02:33:12 -0700512
513 return 1;
514}
515EXPORT_SYMBOL(skb_recycle_check);
516
Herbert Xudec18812007-10-14 00:37:30 -0700517static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
518{
519 new->tstamp = old->tstamp;
520 new->dev = old->dev;
521 new->transport_header = old->transport_header;
522 new->network_header = old->network_header;
523 new->mac_header = old->mac_header;
Eric Dumazetadf30902009-06-02 05:19:30 +0000524 skb_dst_set(new, dst_clone(skb_dst(old)));
Alexey Dobriyandef8b4f2008-10-28 13:24:06 -0700525#ifdef CONFIG_XFRM
Herbert Xudec18812007-10-14 00:37:30 -0700526 new->sp = secpath_get(old->sp);
527#endif
528 memcpy(new->cb, old->cb, sizeof(old->cb));
Herbert Xu9bcb97c2009-05-22 22:20:02 +0000529 new->csum = old->csum;
Herbert Xudec18812007-10-14 00:37:30 -0700530 new->local_df = old->local_df;
531 new->pkt_type = old->pkt_type;
532 new->ip_summed = old->ip_summed;
533 skb_copy_queue_mapping(new, old);
534 new->priority = old->priority;
535#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
536 new->ipvs_property = old->ipvs_property;
537#endif
538 new->protocol = old->protocol;
539 new->mark = old->mark;
Herbert Xu82c49a32009-05-22 22:11:37 +0000540 new->iif = old->iif;
Herbert Xudec18812007-10-14 00:37:30 -0700541 __nf_copy(new, old);
542#if defined(CONFIG_NETFILTER_XT_TARGET_TRACE) || \
543 defined(CONFIG_NETFILTER_XT_TARGET_TRACE_MODULE)
544 new->nf_trace = old->nf_trace;
545#endif
546#ifdef CONFIG_NET_SCHED
547 new->tc_index = old->tc_index;
548#ifdef CONFIG_NET_CLS_ACT
549 new->tc_verd = old->tc_verd;
550#endif
551#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700552 new->vlan_tci = old->vlan_tci;
Herbert Xu82c49a32009-05-22 22:11:37 +0000553#if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE)
554 new->do_not_encrypt = old->do_not_encrypt;
555 new->requeue = old->requeue;
556#endif
Patrick McHardy6aa895b02008-07-14 22:49:06 -0700557
Herbert Xudec18812007-10-14 00:37:30 -0700558 skb_copy_secmark(new, old);
559}
560
Herbert Xu82c49a32009-05-22 22:11:37 +0000561/*
562 * You should not add any new code to this function. Add it to
563 * __copy_skb_header above instead.
564 */
Herbert Xue0053ec2007-10-14 00:37:52 -0700565static struct sk_buff *__skb_clone(struct sk_buff *n, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567#define C(x) n->x = skb->x
568
569 n->next = n->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 n->sk = NULL;
Herbert Xudec18812007-10-14 00:37:30 -0700571 __copy_skb_header(n, skb);
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 C(len);
574 C(data_len);
Alexey Dobriyan3e6b3b22007-03-16 15:00:46 -0700575 C(mac_len);
Patrick McHardy334a8132007-06-25 04:35:20 -0700576 n->hdr_len = skb->nohdr ? skb_headroom(skb) : skb->hdr_len;
Paul Moore02f1c892008-01-07 21:56:41 -0800577 n->cloned = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 n->nohdr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 n->destructor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 C(tail);
581 C(end);
Paul Moore02f1c892008-01-07 21:56:41 -0800582 C(head);
583 C(data);
584 C(truesize);
585 atomic_set(&n->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 atomic_inc(&(skb_shinfo(skb)->dataref));
588 skb->cloned = 1;
589
590 return n;
Herbert Xue0053ec2007-10-14 00:37:52 -0700591#undef C
592}
593
594/**
595 * skb_morph - morph one skb into another
596 * @dst: the skb to receive the contents
597 * @src: the skb to supply the contents
598 *
599 * This is identical to skb_clone except that the target skb is
600 * supplied by the user.
601 *
602 * The target skb is returned upon exit.
603 */
604struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src)
605{
Herbert Xu2d4baff2007-11-26 23:11:19 +0800606 skb_release_all(dst);
Herbert Xue0053ec2007-10-14 00:37:52 -0700607 return __skb_clone(dst, src);
608}
609EXPORT_SYMBOL_GPL(skb_morph);
610
611/**
612 * skb_clone - duplicate an sk_buff
613 * @skb: buffer to clone
614 * @gfp_mask: allocation priority
615 *
616 * Duplicate an &sk_buff. The new one is not owned by a socket. Both
617 * copies share the same packet data but not structure. The new
618 * buffer has a reference count of 1. If the allocation fails the
619 * function returns %NULL otherwise the new buffer is returned.
620 *
621 * If this function is called from an interrupt gfp_mask() must be
622 * %GFP_ATOMIC.
623 */
624
625struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
626{
627 struct sk_buff *n;
628
629 n = skb + 1;
630 if (skb->fclone == SKB_FCLONE_ORIG &&
631 n->fclone == SKB_FCLONE_UNAVAILABLE) {
632 atomic_t *fclone_ref = (atomic_t *) (n + 1);
633 n->fclone = SKB_FCLONE_CLONE;
634 atomic_inc(fclone_ref);
635 } else {
636 n = kmem_cache_alloc(skbuff_head_cache, gfp_mask);
637 if (!n)
638 return NULL;
639 n->fclone = SKB_FCLONE_UNAVAILABLE;
640 }
641
642 return __skb_clone(n, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800644EXPORT_SYMBOL(skb_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646static void copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
647{
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700648#ifndef NET_SKBUFF_DATA_USES_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
650 * Shift between the two data areas in bytes
651 */
652 unsigned long offset = new->data - old->data;
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700653#endif
Herbert Xudec18812007-10-14 00:37:30 -0700654
655 __copy_skb_header(new, old);
656
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700657#ifndef NET_SKBUFF_DATA_USES_OFFSET
658 /* {transport,network,mac}_header are relative to skb->head */
659 new->transport_header += offset;
660 new->network_header += offset;
661 new->mac_header += offset;
662#endif
Herbert Xu79671682006-06-22 02:40:14 -0700663 skb_shinfo(new)->gso_size = skb_shinfo(old)->gso_size;
664 skb_shinfo(new)->gso_segs = skb_shinfo(old)->gso_segs;
665 skb_shinfo(new)->gso_type = skb_shinfo(old)->gso_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/**
669 * skb_copy - create private copy of an sk_buff
670 * @skb: buffer to copy
671 * @gfp_mask: allocation priority
672 *
673 * Make a copy of both an &sk_buff and its data. This is used when the
674 * caller wishes to modify the data and needs a private copy of the
675 * data to alter. Returns %NULL on failure or the pointer to the buffer
676 * on success. The returned buffer has a reference count of 1.
677 *
678 * As by-product this function converts non-linear &sk_buff to linear
679 * one, so that &sk_buff becomes completely private and caller is allowed
680 * to modify all the data of returned buffer. This means that this
681 * function is not recommended for use in circumstances when only
682 * header is going to be modified. Use pskb_copy() instead.
683 */
684
Al Virodd0fc662005-10-07 07:46:04 +0100685struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 int headerlen = skb->data - skb->head;
688 /*
689 * Allocate the copy buffer
690 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700691 struct sk_buff *n;
692#ifdef NET_SKBUFF_DATA_USES_OFFSET
693 n = alloc_skb(skb->end + skb->data_len, gfp_mask);
694#else
695 n = alloc_skb(skb->end - skb->head + skb->data_len, gfp_mask);
696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (!n)
698 return NULL;
699
700 /* Set the data pointer */
701 skb_reserve(n, headerlen);
702 /* Set the tail pointer and length */
703 skb_put(n, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 if (skb_copy_bits(skb, -headerlen, n->head, headerlen + skb->len))
706 BUG();
707
708 copy_skb_header(n, skb);
709 return n;
710}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800711EXPORT_SYMBOL(skb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/**
714 * pskb_copy - create copy of an sk_buff with private head.
715 * @skb: buffer to copy
716 * @gfp_mask: allocation priority
717 *
718 * Make a copy of both an &sk_buff and part of its data, located
719 * in header. Fragmented data remain shared. This is used when
720 * the caller wishes to modify only header of &sk_buff and needs
721 * private copy of the header to alter. Returns %NULL on failure
722 * or the pointer to the buffer on success.
723 * The returned buffer has a reference count of 1.
724 */
725
Al Virodd0fc662005-10-07 07:46:04 +0100726struct sk_buff *pskb_copy(struct sk_buff *skb, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 /*
729 * Allocate the copy buffer
730 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700731 struct sk_buff *n;
732#ifdef NET_SKBUFF_DATA_USES_OFFSET
733 n = alloc_skb(skb->end, gfp_mask);
734#else
735 n = alloc_skb(skb->end - skb->head, gfp_mask);
736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!n)
738 goto out;
739
740 /* Set the data pointer */
741 skb_reserve(n, skb->data - skb->head);
742 /* Set the tail pointer and length */
743 skb_put(n, skb_headlen(skb));
744 /* Copy the bytes */
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300745 skb_copy_from_linear_data(skb, n->data, n->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Herbert Xu25f484a2006-11-07 14:57:15 -0800747 n->truesize += skb->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 n->data_len = skb->data_len;
749 n->len = skb->len;
750
751 if (skb_shinfo(skb)->nr_frags) {
752 int i;
753
754 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
755 skb_shinfo(n)->frags[i] = skb_shinfo(skb)->frags[i];
756 get_page(skb_shinfo(n)->frags[i].page);
757 }
758 skb_shinfo(n)->nr_frags = i;
759 }
760
David S. Millerfbb398a2009-06-09 00:18:59 -0700761 if (skb_has_frags(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 skb_shinfo(n)->frag_list = skb_shinfo(skb)->frag_list;
763 skb_clone_fraglist(n);
764 }
765
766 copy_skb_header(n, skb);
767out:
768 return n;
769}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800770EXPORT_SYMBOL(pskb_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772/**
773 * pskb_expand_head - reallocate header of &sk_buff
774 * @skb: buffer to reallocate
775 * @nhead: room to add at head
776 * @ntail: room to add at tail
777 * @gfp_mask: allocation priority
778 *
779 * Expands (or creates identical copy, if &nhead and &ntail are zero)
780 * header of skb. &sk_buff itself is not changed. &sk_buff MUST have
781 * reference count of 1. Returns zero in the case of success or error,
782 * if expansion failed. In the last case, &sk_buff is not changed.
783 *
784 * All the pointers pointing into skb header may change and must be
785 * reloaded after call to this function.
786 */
787
Victor Fusco86a76ca2005-07-08 14:57:47 -0700788int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail,
Al Virodd0fc662005-10-07 07:46:04 +0100789 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 int i;
792 u8 *data;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700793#ifdef NET_SKBUFF_DATA_USES_OFFSET
794 int size = nhead + skb->end + ntail;
795#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int size = nhead + (skb->end - skb->head) + ntail;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700797#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 long off;
799
Herbert Xu4edd87a2008-10-01 07:09:38 -0700800 BUG_ON(nhead < 0);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (skb_shared(skb))
803 BUG();
804
805 size = SKB_DATA_ALIGN(size);
806
807 data = kmalloc(size + sizeof(struct skb_shared_info), gfp_mask);
808 if (!data)
809 goto nodata;
810
811 /* Copy only real data... and, alas, header. This should be
812 * optimized for the cases when header is void. */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700813#ifdef NET_SKBUFF_DATA_USES_OFFSET
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700814 memcpy(data + nhead, skb->head, skb->tail);
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700815#else
Mikael Petterssonb6ccc672007-05-19 13:55:25 -0700816 memcpy(data + nhead, skb->head, skb->tail - skb->head);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700817#endif
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700818 memcpy(data + size, skb_end_pointer(skb),
819 sizeof(struct skb_shared_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
822 get_page(skb_shinfo(skb)->frags[i].page);
823
David S. Millerfbb398a2009-06-09 00:18:59 -0700824 if (skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 skb_clone_fraglist(skb);
826
827 skb_release_data(skb);
828
829 off = (data + nhead) - skb->head;
830
831 skb->head = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 skb->data += off;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700833#ifdef NET_SKBUFF_DATA_USES_OFFSET
834 skb->end = size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700835 off = nhead;
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700836#else
837 skb->end = skb->head + size;
Patrick McHardy56eb8882007-04-09 11:45:04 -0700838#endif
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700839 /* {transport,network,mac}_header and tail are relative to skb->head */
840 skb->tail += off;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700841 skb->transport_header += off;
842 skb->network_header += off;
843 skb->mac_header += off;
Herbert Xu172a8632007-10-15 01:46:08 -0700844 skb->csum_start += nhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 skb->cloned = 0;
Patrick McHardy334a8132007-06-25 04:35:20 -0700846 skb->hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 skb->nohdr = 0;
848 atomic_set(&skb_shinfo(skb)->dataref, 1);
849 return 0;
850
851nodata:
852 return -ENOMEM;
853}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800854EXPORT_SYMBOL(pskb_expand_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856/* Make private copy of skb with writable head and some headroom */
857
858struct sk_buff *skb_realloc_headroom(struct sk_buff *skb, unsigned int headroom)
859{
860 struct sk_buff *skb2;
861 int delta = headroom - skb_headroom(skb);
862
863 if (delta <= 0)
864 skb2 = pskb_copy(skb, GFP_ATOMIC);
865 else {
866 skb2 = skb_clone(skb, GFP_ATOMIC);
867 if (skb2 && pskb_expand_head(skb2, SKB_DATA_ALIGN(delta), 0,
868 GFP_ATOMIC)) {
869 kfree_skb(skb2);
870 skb2 = NULL;
871 }
872 }
873 return skb2;
874}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800875EXPORT_SYMBOL(skb_realloc_headroom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877/**
878 * skb_copy_expand - copy and expand sk_buff
879 * @skb: buffer to copy
880 * @newheadroom: new free bytes at head
881 * @newtailroom: new free bytes at tail
882 * @gfp_mask: allocation priority
883 *
884 * Make a copy of both an &sk_buff and its data and while doing so
885 * allocate additional space.
886 *
887 * This is used when the caller wishes to modify the data and needs a
888 * private copy of the data to alter as well as more space for new fields.
889 * Returns %NULL on failure or the pointer to the buffer
890 * on success. The returned buffer has a reference count of 1.
891 *
892 * You must pass %GFP_ATOMIC as the allocation priority if this function
893 * is called from an interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
895struct sk_buff *skb_copy_expand(const struct sk_buff *skb,
Victor Fusco86a76ca2005-07-08 14:57:47 -0700896 int newheadroom, int newtailroom,
Al Virodd0fc662005-10-07 07:46:04 +0100897 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 /*
900 * Allocate the copy buffer
901 */
902 struct sk_buff *n = alloc_skb(newheadroom + skb->len + newtailroom,
903 gfp_mask);
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700904 int oldheadroom = skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 int head_copy_len, head_copy_off;
Herbert Xu52886052007-09-16 16:32:11 -0700906 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!n)
909 return NULL;
910
911 skb_reserve(n, newheadroom);
912
913 /* Set the tail pointer and length */
914 skb_put(n, skb->len);
915
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700916 head_copy_len = oldheadroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 head_copy_off = 0;
918 if (newheadroom <= head_copy_len)
919 head_copy_len = newheadroom;
920 else
921 head_copy_off = newheadroom - head_copy_len;
922
923 /* Copy the linear header and data. */
924 if (skb_copy_bits(skb, -head_copy_len, n->head + head_copy_off,
925 skb->len + head_copy_len))
926 BUG();
927
928 copy_skb_header(n, skb);
929
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700930 off = newheadroom - oldheadroom;
Herbert Xu52886052007-09-16 16:32:11 -0700931 n->csum_start += off;
932#ifdef NET_SKBUFF_DATA_USES_OFFSET
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700933 n->transport_header += off;
934 n->network_header += off;
935 n->mac_header += off;
Herbert Xu52886052007-09-16 16:32:11 -0700936#endif
Patrick McHardyefd1e8d2007-04-10 18:30:09 -0700937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return n;
939}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800940EXPORT_SYMBOL(skb_copy_expand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942/**
943 * skb_pad - zero pad the tail of an skb
944 * @skb: buffer to pad
945 * @pad: space to pad
946 *
947 * Ensure that a buffer is followed by a padding area that is zero
948 * filled. Used by network drivers which may DMA or transfer data
949 * beyond the buffer end onto the wire.
950 *
Herbert Xu5b057c62006-06-23 02:06:41 -0700951 * May return error in out of memory cases. The skb is freed on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900953
Herbert Xu5b057c62006-06-23 02:06:41 -0700954int skb_pad(struct sk_buff *skb, int pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Herbert Xu5b057c62006-06-23 02:06:41 -0700956 int err;
957 int ntail;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /* If the skbuff is non linear tailroom is always zero.. */
Herbert Xu5b057c62006-06-23 02:06:41 -0700960 if (!skb_cloned(skb) && skb_tailroom(skb) >= pad) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 memset(skb->data+skb->len, 0, pad);
Herbert Xu5b057c62006-06-23 02:06:41 -0700962 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
Herbert Xu5b057c62006-06-23 02:06:41 -0700964
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -0700965 ntail = skb->data_len + pad - (skb->end - skb->tail);
Herbert Xu5b057c62006-06-23 02:06:41 -0700966 if (likely(skb_cloned(skb) || ntail > 0)) {
967 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC);
968 if (unlikely(err))
969 goto free_skb;
970 }
971
972 /* FIXME: The use of this function with non-linear skb's really needs
973 * to be audited.
974 */
975 err = skb_linearize(skb);
976 if (unlikely(err))
977 goto free_skb;
978
979 memset(skb->data + skb->len, 0, pad);
980 return 0;
981
982free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 kfree_skb(skb);
Herbert Xu5b057c62006-06-23 02:06:41 -0700984 return err;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900985}
David S. Millerb4ac530fc2009-02-10 02:09:24 -0800986EXPORT_SYMBOL(skb_pad);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900987
Ilpo Järvinen0dde3e12008-03-27 17:43:41 -0700988/**
989 * skb_put - add data to a buffer
990 * @skb: buffer to use
991 * @len: amount of data to add
992 *
993 * This function extends the used data area of the buffer. If this would
994 * exceed the total buffer size the kernel will panic. A pointer to the
995 * first byte of the extra data is returned.
996 */
997unsigned char *skb_put(struct sk_buff *skb, unsigned int len)
998{
999 unsigned char *tmp = skb_tail_pointer(skb);
1000 SKB_LINEAR_ASSERT(skb);
1001 skb->tail += len;
1002 skb->len += len;
1003 if (unlikely(skb->tail > skb->end))
1004 skb_over_panic(skb, len, __builtin_return_address(0));
1005 return tmp;
1006}
1007EXPORT_SYMBOL(skb_put);
1008
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001009/**
Ilpo Järvinenc2aa2702008-03-27 17:52:40 -07001010 * skb_push - add data to the start of a buffer
1011 * @skb: buffer to use
1012 * @len: amount of data to add
1013 *
1014 * This function extends the used data area of the buffer at the buffer
1015 * start. If this would exceed the total buffer headroom the kernel will
1016 * panic. A pointer to the first byte of the extra data is returned.
1017 */
1018unsigned char *skb_push(struct sk_buff *skb, unsigned int len)
1019{
1020 skb->data -= len;
1021 skb->len += len;
1022 if (unlikely(skb->data<skb->head))
1023 skb_under_panic(skb, len, __builtin_return_address(0));
1024 return skb->data;
1025}
1026EXPORT_SYMBOL(skb_push);
1027
1028/**
Ilpo Järvinen6be8ac22008-03-27 17:47:24 -07001029 * skb_pull - remove data from the start of a buffer
1030 * @skb: buffer to use
1031 * @len: amount of data to remove
1032 *
1033 * This function removes data from the start of a buffer, returning
1034 * the memory to the headroom. A pointer to the next data in the buffer
1035 * is returned. Once the data has been pulled future pushes will overwrite
1036 * the old data.
1037 */
1038unsigned char *skb_pull(struct sk_buff *skb, unsigned int len)
1039{
1040 return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
1041}
1042EXPORT_SYMBOL(skb_pull);
1043
Ilpo Järvinen419ae742008-03-27 17:54:01 -07001044/**
1045 * skb_trim - remove end from a buffer
1046 * @skb: buffer to alter
1047 * @len: new length
1048 *
1049 * Cut the length of a buffer down by removing data from the tail. If
1050 * the buffer is already under the length specified it is not modified.
1051 * The skb must be linear.
1052 */
1053void skb_trim(struct sk_buff *skb, unsigned int len)
1054{
1055 if (skb->len > len)
1056 __skb_trim(skb, len);
1057}
1058EXPORT_SYMBOL(skb_trim);
1059
Herbert Xu3cc0e872006-06-09 16:13:38 -07001060/* Trims skb to length len. It can change skb pointers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 */
1062
Herbert Xu3cc0e872006-06-09 16:13:38 -07001063int ___pskb_trim(struct sk_buff *skb, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Herbert Xu27b437c2006-07-13 19:26:39 -07001065 struct sk_buff **fragp;
1066 struct sk_buff *frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 int offset = skb_headlen(skb);
1068 int nfrags = skb_shinfo(skb)->nr_frags;
1069 int i;
Herbert Xu27b437c2006-07-13 19:26:39 -07001070 int err;
1071
1072 if (skb_cloned(skb) &&
1073 unlikely((err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC))))
1074 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001076 i = 0;
1077 if (offset >= len)
1078 goto drop_pages;
1079
1080 for (; i < nfrags; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 int end = offset + skb_shinfo(skb)->frags[i].size;
Herbert Xu27b437c2006-07-13 19:26:39 -07001082
1083 if (end < len) {
1084 offset = end;
1085 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
Herbert Xu27b437c2006-07-13 19:26:39 -07001087
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001088 skb_shinfo(skb)->frags[i++].size = len - offset;
Herbert Xu27b437c2006-07-13 19:26:39 -07001089
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001090drop_pages:
Herbert Xu27b437c2006-07-13 19:26:39 -07001091 skb_shinfo(skb)->nr_frags = i;
1092
1093 for (; i < nfrags; i++)
1094 put_page(skb_shinfo(skb)->frags[i].page);
1095
David S. Millerfbb398a2009-06-09 00:18:59 -07001096 if (skb_has_frags(skb))
Herbert Xu27b437c2006-07-13 19:26:39 -07001097 skb_drop_fraglist(skb);
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001098 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
Herbert Xu27b437c2006-07-13 19:26:39 -07001101 for (fragp = &skb_shinfo(skb)->frag_list; (frag = *fragp);
1102 fragp = &frag->next) {
1103 int end = offset + frag->len;
1104
1105 if (skb_shared(frag)) {
1106 struct sk_buff *nfrag;
1107
1108 nfrag = skb_clone(frag, GFP_ATOMIC);
1109 if (unlikely(!nfrag))
1110 return -ENOMEM;
1111
1112 nfrag->next = frag->next;
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001113 kfree_skb(frag);
Herbert Xu27b437c2006-07-13 19:26:39 -07001114 frag = nfrag;
1115 *fragp = frag;
1116 }
1117
1118 if (end < len) {
1119 offset = end;
1120 continue;
1121 }
1122
1123 if (end > len &&
1124 unlikely((err = pskb_trim(frag, len - offset))))
1125 return err;
1126
1127 if (frag->next)
1128 skb_drop_list(&frag->next);
1129 break;
1130 }
1131
Herbert Xuf4d26fb2006-07-30 20:20:28 -07001132done:
Herbert Xu27b437c2006-07-13 19:26:39 -07001133 if (len > skb_headlen(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 skb->data_len -= skb->len - len;
1135 skb->len = len;
1136 } else {
Herbert Xu27b437c2006-07-13 19:26:39 -07001137 skb->len = len;
1138 skb->data_len = 0;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001139 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141
1142 return 0;
1143}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001144EXPORT_SYMBOL(___pskb_trim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146/**
1147 * __pskb_pull_tail - advance tail of skb header
1148 * @skb: buffer to reallocate
1149 * @delta: number of bytes to advance tail
1150 *
1151 * The function makes a sense only on a fragmented &sk_buff,
1152 * it expands header moving its tail forward and copying necessary
1153 * data from fragmented part.
1154 *
1155 * &sk_buff MUST have reference count of 1.
1156 *
1157 * Returns %NULL (and &sk_buff does not change) if pull failed
1158 * or value of new tail of skb in the case of success.
1159 *
1160 * All the pointers pointing into skb header may change and must be
1161 * reloaded after call to this function.
1162 */
1163
1164/* Moves tail of skb head forward, copying data from fragmented part,
1165 * when it is necessary.
1166 * 1. It may fail due to malloc failure.
1167 * 2. It may change skb pointers.
1168 *
1169 * It is pretty complicated. Luckily, it is called only in exceptional cases.
1170 */
1171unsigned char *__pskb_pull_tail(struct sk_buff *skb, int delta)
1172{
1173 /* If skb has not enough free space at tail, get new one
1174 * plus 128 bytes for future expansions. If we have enough
1175 * room at tail, reallocate without expansion only if skb is cloned.
1176 */
Arnaldo Carvalho de Melo4305b542007-04-19 20:43:29 -07001177 int i, k, eat = (skb->tail + delta) - skb->end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 if (eat > 0 || skb_cloned(skb)) {
1180 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
1181 GFP_ATOMIC))
1182 return NULL;
1183 }
1184
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001185 if (skb_copy_bits(skb, skb_headlen(skb), skb_tail_pointer(skb), delta))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 BUG();
1187
1188 /* Optimization: no fragments, no reasons to preestimate
1189 * size of pulled pages. Superb.
1190 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001191 if (!skb_has_frags(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 goto pull_pages;
1193
1194 /* Estimate size of pulled pages. */
1195 eat = delta;
1196 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1197 if (skb_shinfo(skb)->frags[i].size >= eat)
1198 goto pull_pages;
1199 eat -= skb_shinfo(skb)->frags[i].size;
1200 }
1201
1202 /* If we need update frag list, we are in troubles.
1203 * Certainly, it possible to add an offset to skb data,
1204 * but taking into account that pulling is expected to
1205 * be very rare operation, it is worth to fight against
1206 * further bloating skb head and crucify ourselves here instead.
1207 * Pure masohism, indeed. 8)8)
1208 */
1209 if (eat) {
1210 struct sk_buff *list = skb_shinfo(skb)->frag_list;
1211 struct sk_buff *clone = NULL;
1212 struct sk_buff *insp = NULL;
1213
1214 do {
Kris Katterjohn09a62662006-01-08 22:24:28 -08001215 BUG_ON(!list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 if (list->len <= eat) {
1218 /* Eaten as whole. */
1219 eat -= list->len;
1220 list = list->next;
1221 insp = list;
1222 } else {
1223 /* Eaten partially. */
1224
1225 if (skb_shared(list)) {
1226 /* Sucks! We need to fork list. :-( */
1227 clone = skb_clone(list, GFP_ATOMIC);
1228 if (!clone)
1229 return NULL;
1230 insp = list->next;
1231 list = clone;
1232 } else {
1233 /* This may be pulled without
1234 * problems. */
1235 insp = list;
1236 }
1237 if (!pskb_pull(list, eat)) {
Wei Yongjunf3fbbe02009-02-25 00:37:32 +00001238 kfree_skb(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return NULL;
1240 }
1241 break;
1242 }
1243 } while (eat);
1244
1245 /* Free pulled out fragments. */
1246 while ((list = skb_shinfo(skb)->frag_list) != insp) {
1247 skb_shinfo(skb)->frag_list = list->next;
1248 kfree_skb(list);
1249 }
1250 /* And insert new clone at head. */
1251 if (clone) {
1252 clone->next = list;
1253 skb_shinfo(skb)->frag_list = clone;
1254 }
1255 }
1256 /* Success! Now we may commit changes to skb data. */
1257
1258pull_pages:
1259 eat = delta;
1260 k = 0;
1261 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1262 if (skb_shinfo(skb)->frags[i].size <= eat) {
1263 put_page(skb_shinfo(skb)->frags[i].page);
1264 eat -= skb_shinfo(skb)->frags[i].size;
1265 } else {
1266 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1267 if (eat) {
1268 skb_shinfo(skb)->frags[k].page_offset += eat;
1269 skb_shinfo(skb)->frags[k].size -= eat;
1270 eat = 0;
1271 }
1272 k++;
1273 }
1274 }
1275 skb_shinfo(skb)->nr_frags = k;
1276
1277 skb->tail += delta;
1278 skb->data_len -= delta;
1279
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001280 return skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001282EXPORT_SYMBOL(__pskb_pull_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284/* Copy some data bits from skb to kernel buffer. */
1285
1286int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len)
1287{
David S. Miller1a028e52007-04-27 15:21:23 -07001288 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001289 struct sk_buff *frag_iter;
1290 int i, copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (offset > (int)skb->len - len)
1293 goto fault;
1294
1295 /* Copy header. */
David S. Miller1a028e52007-04-27 15:21:23 -07001296 if ((copy = start - offset) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (copy > len)
1298 copy = len;
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001299 skb_copy_from_linear_data_offset(skb, offset, to, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if ((len -= copy) == 0)
1301 return 0;
1302 offset += copy;
1303 to += copy;
1304 }
1305
1306 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001307 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001309 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001310
1311 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 if ((copy = end - offset) > 0) {
1313 u8 *vaddr;
1314
1315 if (copy > len)
1316 copy = len;
1317
1318 vaddr = kmap_skb_frag(&skb_shinfo(skb)->frags[i]);
1319 memcpy(to,
David S. Miller1a028e52007-04-27 15:21:23 -07001320 vaddr + skb_shinfo(skb)->frags[i].page_offset+
1321 offset - start, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 kunmap_skb_frag(vaddr);
1323
1324 if ((len -= copy) == 0)
1325 return 0;
1326 offset += copy;
1327 to += copy;
1328 }
David S. Miller1a028e52007-04-27 15:21:23 -07001329 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
David S. Millerfbb398a2009-06-09 00:18:59 -07001332 skb_walk_frags(skb, frag_iter) {
1333 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
David S. Millerfbb398a2009-06-09 00:18:59 -07001335 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
David S. Millerfbb398a2009-06-09 00:18:59 -07001337 end = start + frag_iter->len;
1338 if ((copy = end - offset) > 0) {
1339 if (copy > len)
1340 copy = len;
1341 if (skb_copy_bits(frag_iter, offset - start, to, copy))
1342 goto fault;
1343 if ((len -= copy) == 0)
1344 return 0;
1345 offset += copy;
1346 to += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001348 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 }
1350 if (!len)
1351 return 0;
1352
1353fault:
1354 return -EFAULT;
1355}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001356EXPORT_SYMBOL(skb_copy_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Jens Axboe9c55e012007-11-06 23:30:13 -08001358/*
1359 * Callback from splice_to_pipe(), if we need to release some pages
1360 * at the end of the spd in case we error'ed out in filling the pipe.
1361 */
1362static void sock_spd_release(struct splice_pipe_desc *spd, unsigned int i)
1363{
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001364 put_page(spd->pages[i]);
1365}
Jens Axboe9c55e012007-11-06 23:30:13 -08001366
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001367static inline struct page *linear_to_page(struct page *page, unsigned int *len,
1368 unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001369 struct sk_buff *skb, struct sock *sk)
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001370{
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001371 struct page *p = sk->sk_sndmsg_page;
1372 unsigned int off;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001373
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001374 if (!p) {
1375new_page:
1376 p = sk->sk_sndmsg_page = alloc_pages(sk->sk_allocation, 0);
1377 if (!p)
1378 return NULL;
1379
1380 off = sk->sk_sndmsg_off = 0;
1381 /* hold one ref to this page until it's full */
1382 } else {
1383 unsigned int mlen;
1384
1385 off = sk->sk_sndmsg_off;
1386 mlen = PAGE_SIZE - off;
1387 if (mlen < 64 && mlen < *len) {
1388 put_page(p);
1389 goto new_page;
1390 }
1391
1392 *len = min_t(unsigned int, *len, mlen);
1393 }
1394
1395 memcpy(page_address(p) + off, page_address(page) + *offset, *len);
1396 sk->sk_sndmsg_off += *len;
1397 *offset = off;
1398 get_page(p);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001399
1400 return p;
Jens Axboe9c55e012007-11-06 23:30:13 -08001401}
1402
1403/*
1404 * Fill page/offset/length into spd, if it can hold more pages.
1405 */
1406static inline int spd_fill_page(struct splice_pipe_desc *spd, struct page *page,
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001407 unsigned int *len, unsigned int offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001408 struct sk_buff *skb, int linear,
1409 struct sock *sk)
Jens Axboe9c55e012007-11-06 23:30:13 -08001410{
1411 if (unlikely(spd->nr_pages == PIPE_BUFFERS))
1412 return 1;
1413
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001414 if (linear) {
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001415 page = linear_to_page(page, len, &offset, skb, sk);
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001416 if (!page)
1417 return 1;
1418 } else
1419 get_page(page);
1420
Jens Axboe9c55e012007-11-06 23:30:13 -08001421 spd->pages[spd->nr_pages] = page;
Jarek Poplawski4fb66992009-02-01 00:41:42 -08001422 spd->partial[spd->nr_pages].len = *len;
Jens Axboe9c55e012007-11-06 23:30:13 -08001423 spd->partial[spd->nr_pages].offset = offset;
Jens Axboe9c55e012007-11-06 23:30:13 -08001424 spd->nr_pages++;
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001425
Jens Axboe9c55e012007-11-06 23:30:13 -08001426 return 0;
1427}
1428
Octavian Purdila2870c432008-07-15 00:49:11 -07001429static inline void __segment_seek(struct page **page, unsigned int *poff,
1430 unsigned int *plen, unsigned int off)
Jens Axboe9c55e012007-11-06 23:30:13 -08001431{
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001432 unsigned long n;
1433
Octavian Purdila2870c432008-07-15 00:49:11 -07001434 *poff += off;
Jarek Poplawskice3dd392009-02-12 16:51:43 -08001435 n = *poff / PAGE_SIZE;
1436 if (n)
1437 *page = nth_page(*page, n);
1438
Octavian Purdila2870c432008-07-15 00:49:11 -07001439 *poff = *poff % PAGE_SIZE;
1440 *plen -= off;
1441}
Jens Axboe9c55e012007-11-06 23:30:13 -08001442
Octavian Purdila2870c432008-07-15 00:49:11 -07001443static inline int __splice_segment(struct page *page, unsigned int poff,
1444 unsigned int plen, unsigned int *off,
1445 unsigned int *len, struct sk_buff *skb,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001446 struct splice_pipe_desc *spd, int linear,
1447 struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001448{
1449 if (!*len)
1450 return 1;
1451
1452 /* skip this segment if already processed */
1453 if (*off >= plen) {
1454 *off -= plen;
1455 return 0;
Octavian Purdiladb43a282008-06-27 17:27:21 -07001456 }
Jens Axboe9c55e012007-11-06 23:30:13 -08001457
Octavian Purdila2870c432008-07-15 00:49:11 -07001458 /* ignore any bits we already processed */
1459 if (*off) {
1460 __segment_seek(&page, &poff, &plen, *off);
1461 *off = 0;
1462 }
1463
1464 do {
1465 unsigned int flen = min(*len, plen);
1466
1467 /* the linear region may spread across several pages */
1468 flen = min_t(unsigned int, flen, PAGE_SIZE - poff);
1469
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001470 if (spd_fill_page(spd, page, &flen, poff, skb, linear, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001471 return 1;
1472
1473 __segment_seek(&page, &poff, &plen, flen);
1474 *len -= flen;
1475
1476 } while (*len && plen);
1477
1478 return 0;
1479}
1480
1481/*
1482 * Map linear and fragment data from the skb to spd. It reports failure if the
1483 * pipe is full or if we already spliced the requested length.
1484 */
Harvey Harrison7b1c65f2008-07-16 20:12:30 -07001485static int __skb_splice_bits(struct sk_buff *skb, unsigned int *offset,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001486 unsigned int *len, struct splice_pipe_desc *spd,
1487 struct sock *sk)
Octavian Purdila2870c432008-07-15 00:49:11 -07001488{
1489 int seg;
1490
Jens Axboe9c55e012007-11-06 23:30:13 -08001491 /*
Octavian Purdila2870c432008-07-15 00:49:11 -07001492 * map the linear part
Jens Axboe9c55e012007-11-06 23:30:13 -08001493 */
Octavian Purdila2870c432008-07-15 00:49:11 -07001494 if (__splice_segment(virt_to_page(skb->data),
1495 (unsigned long) skb->data & (PAGE_SIZE - 1),
1496 skb_headlen(skb),
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001497 offset, len, skb, spd, 1, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001498 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001499
1500 /*
1501 * then map the fragments
1502 */
Jens Axboe9c55e012007-11-06 23:30:13 -08001503 for (seg = 0; seg < skb_shinfo(skb)->nr_frags; seg++) {
1504 const skb_frag_t *f = &skb_shinfo(skb)->frags[seg];
1505
Octavian Purdila2870c432008-07-15 00:49:11 -07001506 if (__splice_segment(f->page, f->page_offset, f->size,
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001507 offset, len, skb, spd, 0, sk))
Octavian Purdila2870c432008-07-15 00:49:11 -07001508 return 1;
Jens Axboe9c55e012007-11-06 23:30:13 -08001509 }
1510
Octavian Purdila2870c432008-07-15 00:49:11 -07001511 return 0;
Jens Axboe9c55e012007-11-06 23:30:13 -08001512}
1513
1514/*
1515 * Map data from the skb to a pipe. Should handle both the linear part,
1516 * the fragments, and the frag list. It does NOT handle frag lists within
1517 * the frag list, if such a thing exists. We'd probably need to recurse to
1518 * handle that cleanly.
1519 */
Jarek Poplawski8b9d3722009-01-19 17:03:56 -08001520int skb_splice_bits(struct sk_buff *skb, unsigned int offset,
Jens Axboe9c55e012007-11-06 23:30:13 -08001521 struct pipe_inode_info *pipe, unsigned int tlen,
1522 unsigned int flags)
1523{
1524 struct partial_page partial[PIPE_BUFFERS];
1525 struct page *pages[PIPE_BUFFERS];
1526 struct splice_pipe_desc spd = {
1527 .pages = pages,
1528 .partial = partial,
1529 .flags = flags,
1530 .ops = &sock_pipe_buf_ops,
1531 .spd_release = sock_spd_release,
1532 };
David S. Millerfbb398a2009-06-09 00:18:59 -07001533 struct sk_buff *frag_iter;
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001534 struct sock *sk = skb->sk;
Jens Axboe9c55e012007-11-06 23:30:13 -08001535
1536 /*
1537 * __skb_splice_bits() only fails if the output has no room left,
1538 * so no point in going over the frag_list for the error case.
1539 */
Jarek Poplawski7a67e562009-04-30 05:41:19 -07001540 if (__skb_splice_bits(skb, &offset, &tlen, &spd, sk))
Jens Axboe9c55e012007-11-06 23:30:13 -08001541 goto done;
1542 else if (!tlen)
1543 goto done;
1544
1545 /*
1546 * now see if we have a frag_list to map
1547 */
David S. Millerfbb398a2009-06-09 00:18:59 -07001548 skb_walk_frags(skb, frag_iter) {
1549 if (!tlen)
1550 break;
1551 if (__skb_splice_bits(frag_iter, &offset, &tlen, &spd, sk))
1552 break;
Jens Axboe9c55e012007-11-06 23:30:13 -08001553 }
1554
1555done:
Jens Axboe9c55e012007-11-06 23:30:13 -08001556 if (spd.nr_pages) {
1557 int ret;
1558
1559 /*
1560 * Drop the socket lock, otherwise we have reverse
1561 * locking dependencies between sk_lock and i_mutex
1562 * here as compared to sendfile(). We enter here
1563 * with the socket lock held, and splice_to_pipe() will
1564 * grab the pipe inode lock. For sendfile() emulation,
1565 * we call into ->sendpage() with the i_mutex lock held
1566 * and networking will grab the socket lock.
1567 */
Octavian Purdila293ad602008-06-04 15:45:58 -07001568 release_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001569 ret = splice_to_pipe(pipe, &spd);
Octavian Purdila293ad602008-06-04 15:45:58 -07001570 lock_sock(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -08001571 return ret;
1572 }
1573
1574 return 0;
1575}
1576
Herbert Xu357b40a2005-04-19 22:30:14 -07001577/**
1578 * skb_store_bits - store bits from kernel buffer to skb
1579 * @skb: destination buffer
1580 * @offset: offset in destination
1581 * @from: source buffer
1582 * @len: number of bytes to copy
1583 *
1584 * Copy the specified number of bytes from the source buffer to the
1585 * destination skb. This function handles all the messy bits of
1586 * traversing fragment lists and such.
1587 */
1588
Stephen Hemminger0c6fcc82007-04-20 16:40:01 -07001589int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len)
Herbert Xu357b40a2005-04-19 22:30:14 -07001590{
David S. Miller1a028e52007-04-27 15:21:23 -07001591 int start = skb_headlen(skb);
David S. Millerfbb398a2009-06-09 00:18:59 -07001592 struct sk_buff *frag_iter;
1593 int i, copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001594
1595 if (offset > (int)skb->len - len)
1596 goto fault;
1597
David S. Miller1a028e52007-04-27 15:21:23 -07001598 if ((copy = start - offset) > 0) {
Herbert Xu357b40a2005-04-19 22:30:14 -07001599 if (copy > len)
1600 copy = len;
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03001601 skb_copy_to_linear_data_offset(skb, offset, from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001602 if ((len -= copy) == 0)
1603 return 0;
1604 offset += copy;
1605 from += copy;
1606 }
1607
1608 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1609 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
David S. Miller1a028e52007-04-27 15:21:23 -07001610 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001611
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001612 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001613
1614 end = start + frag->size;
Herbert Xu357b40a2005-04-19 22:30:14 -07001615 if ((copy = end - offset) > 0) {
1616 u8 *vaddr;
1617
1618 if (copy > len)
1619 copy = len;
1620
1621 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001622 memcpy(vaddr + frag->page_offset + offset - start,
1623 from, copy);
Herbert Xu357b40a2005-04-19 22:30:14 -07001624 kunmap_skb_frag(vaddr);
1625
1626 if ((len -= copy) == 0)
1627 return 0;
1628 offset += copy;
1629 from += copy;
1630 }
David S. Miller1a028e52007-04-27 15:21:23 -07001631 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001632 }
1633
David S. Millerfbb398a2009-06-09 00:18:59 -07001634 skb_walk_frags(skb, frag_iter) {
1635 int end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001636
David S. Millerfbb398a2009-06-09 00:18:59 -07001637 WARN_ON(start > offset + len);
Herbert Xu357b40a2005-04-19 22:30:14 -07001638
David S. Millerfbb398a2009-06-09 00:18:59 -07001639 end = start + frag_iter->len;
1640 if ((copy = end - offset) > 0) {
1641 if (copy > len)
1642 copy = len;
1643 if (skb_store_bits(frag_iter, offset - start,
1644 from, copy))
1645 goto fault;
1646 if ((len -= copy) == 0)
1647 return 0;
1648 offset += copy;
1649 from += copy;
Herbert Xu357b40a2005-04-19 22:30:14 -07001650 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001651 start = end;
Herbert Xu357b40a2005-04-19 22:30:14 -07001652 }
1653 if (!len)
1654 return 0;
1655
1656fault:
1657 return -EFAULT;
1658}
Herbert Xu357b40a2005-04-19 22:30:14 -07001659EXPORT_SYMBOL(skb_store_bits);
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661/* Checksum skb data. */
1662
Al Viro2bbbc862006-11-14 21:37:14 -08001663__wsum skb_checksum(const struct sk_buff *skb, int offset,
1664 int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
David S. Miller1a028e52007-04-27 15:21:23 -07001666 int start = skb_headlen(skb);
1667 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001668 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 int pos = 0;
1670
1671 /* Checksum header. */
1672 if (copy > 0) {
1673 if (copy > len)
1674 copy = len;
1675 csum = csum_partial(skb->data + offset, copy, csum);
1676 if ((len -= copy) == 0)
1677 return csum;
1678 offset += copy;
1679 pos = copy;
1680 }
1681
1682 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001683 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001685 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001686
1687 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if ((copy = end - offset) > 0) {
Al Viro44bb9362006-11-14 21:36:14 -08001689 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 u8 *vaddr;
1691 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1692
1693 if (copy > len)
1694 copy = len;
1695 vaddr = kmap_skb_frag(frag);
David S. Miller1a028e52007-04-27 15:21:23 -07001696 csum2 = csum_partial(vaddr + frag->page_offset +
1697 offset - start, copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 kunmap_skb_frag(vaddr);
1699 csum = csum_block_add(csum, csum2, pos);
1700 if (!(len -= copy))
1701 return csum;
1702 offset += copy;
1703 pos += copy;
1704 }
David S. Miller1a028e52007-04-27 15:21:23 -07001705 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707
David S. Millerfbb398a2009-06-09 00:18:59 -07001708 skb_walk_frags(skb, frag_iter) {
1709 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
David S. Millerfbb398a2009-06-09 00:18:59 -07001711 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
David S. Millerfbb398a2009-06-09 00:18:59 -07001713 end = start + frag_iter->len;
1714 if ((copy = end - offset) > 0) {
1715 __wsum csum2;
1716 if (copy > len)
1717 copy = len;
1718 csum2 = skb_checksum(frag_iter, offset - start,
1719 copy, 0);
1720 csum = csum_block_add(csum, csum2, pos);
1721 if ((len -= copy) == 0)
1722 return csum;
1723 offset += copy;
1724 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001726 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001728 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 return csum;
1731}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001732EXPORT_SYMBOL(skb_checksum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734/* Both of above in one bottle. */
1735
Al Viro81d77662006-11-14 21:37:33 -08001736__wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset,
1737 u8 *to, int len, __wsum csum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
David S. Miller1a028e52007-04-27 15:21:23 -07001739 int start = skb_headlen(skb);
1740 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07001741 struct sk_buff *frag_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 int pos = 0;
1743
1744 /* Copy header. */
1745 if (copy > 0) {
1746 if (copy > len)
1747 copy = len;
1748 csum = csum_partial_copy_nocheck(skb->data + offset, to,
1749 copy, csum);
1750 if ((len -= copy) == 0)
1751 return csum;
1752 offset += copy;
1753 to += copy;
1754 pos = copy;
1755 }
1756
1757 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07001758 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001760 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07001761
1762 end = start + skb_shinfo(skb)->frags[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if ((copy = end - offset) > 0) {
Al Viro50842052006-11-14 21:36:34 -08001764 __wsum csum2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 u8 *vaddr;
1766 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1767
1768 if (copy > len)
1769 copy = len;
1770 vaddr = kmap_skb_frag(frag);
1771 csum2 = csum_partial_copy_nocheck(vaddr +
David S. Miller1a028e52007-04-27 15:21:23 -07001772 frag->page_offset +
1773 offset - start, to,
1774 copy, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 kunmap_skb_frag(vaddr);
1776 csum = csum_block_add(csum, csum2, pos);
1777 if (!(len -= copy))
1778 return csum;
1779 offset += copy;
1780 to += copy;
1781 pos += copy;
1782 }
David S. Miller1a028e52007-04-27 15:21:23 -07001783 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
David S. Millerfbb398a2009-06-09 00:18:59 -07001786 skb_walk_frags(skb, frag_iter) {
1787 __wsum csum2;
1788 int end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
David S. Millerfbb398a2009-06-09 00:18:59 -07001790 WARN_ON(start > offset + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
David S. Millerfbb398a2009-06-09 00:18:59 -07001792 end = start + frag_iter->len;
1793 if ((copy = end - offset) > 0) {
1794 if (copy > len)
1795 copy = len;
1796 csum2 = skb_copy_and_csum_bits(frag_iter,
1797 offset - start,
1798 to, copy, 0);
1799 csum = csum_block_add(csum, csum2, pos);
1800 if ((len -= copy) == 0)
1801 return csum;
1802 offset += copy;
1803 to += copy;
1804 pos += copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
David S. Millerfbb398a2009-06-09 00:18:59 -07001806 start = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
Kris Katterjohn09a62662006-01-08 22:24:28 -08001808 BUG_ON(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return csum;
1810}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001811EXPORT_SYMBOL(skb_copy_and_csum_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to)
1814{
Al Virod3bc23e2006-11-14 21:24:49 -08001815 __wsum csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 long csstart;
1817
Patrick McHardy84fa7932006-08-29 16:44:56 -07001818 if (skb->ip_summed == CHECKSUM_PARTIAL)
Herbert Xu663ead32007-04-09 11:59:07 -07001819 csstart = skb->csum_start - skb_headroom(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 else
1821 csstart = skb_headlen(skb);
1822
Kris Katterjohn09a62662006-01-08 22:24:28 -08001823 BUG_ON(csstart > skb_headlen(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001825 skb_copy_from_linear_data(skb, to, csstart);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 csum = 0;
1828 if (csstart != skb->len)
1829 csum = skb_copy_and_csum_bits(skb, csstart, to + csstart,
1830 skb->len - csstart, 0);
1831
Patrick McHardy84fa7932006-08-29 16:44:56 -07001832 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Al Viroff1dcad2006-11-20 18:07:29 -08001833 long csstuff = csstart + skb->csum_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Al Virod3bc23e2006-11-14 21:24:49 -08001835 *((__sum16 *)(to + csstuff)) = csum_fold(csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001838EXPORT_SYMBOL(skb_copy_and_csum_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840/**
1841 * skb_dequeue - remove from the head of the queue
1842 * @list: list to dequeue from
1843 *
1844 * Remove the head of the list. The list lock is taken so the function
1845 * may be used safely with other locking list functions. The head item is
1846 * returned or %NULL if the list is empty.
1847 */
1848
1849struct sk_buff *skb_dequeue(struct sk_buff_head *list)
1850{
1851 unsigned long flags;
1852 struct sk_buff *result;
1853
1854 spin_lock_irqsave(&list->lock, flags);
1855 result = __skb_dequeue(list);
1856 spin_unlock_irqrestore(&list->lock, flags);
1857 return result;
1858}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001859EXPORT_SYMBOL(skb_dequeue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861/**
1862 * skb_dequeue_tail - remove from the tail of the queue
1863 * @list: list to dequeue from
1864 *
1865 * Remove the tail of the list. The list lock is taken so the function
1866 * may be used safely with other locking list functions. The tail item is
1867 * returned or %NULL if the list is empty.
1868 */
1869struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list)
1870{
1871 unsigned long flags;
1872 struct sk_buff *result;
1873
1874 spin_lock_irqsave(&list->lock, flags);
1875 result = __skb_dequeue_tail(list);
1876 spin_unlock_irqrestore(&list->lock, flags);
1877 return result;
1878}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001879EXPORT_SYMBOL(skb_dequeue_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881/**
1882 * skb_queue_purge - empty a list
1883 * @list: list to empty
1884 *
1885 * Delete all buffers on an &sk_buff list. Each buffer is removed from
1886 * the list and one reference dropped. This function takes the list
1887 * lock and is atomic with respect to other list locking functions.
1888 */
1889void skb_queue_purge(struct sk_buff_head *list)
1890{
1891 struct sk_buff *skb;
1892 while ((skb = skb_dequeue(list)) != NULL)
1893 kfree_skb(skb);
1894}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001895EXPORT_SYMBOL(skb_queue_purge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897/**
1898 * skb_queue_head - queue a buffer at the list head
1899 * @list: list to use
1900 * @newsk: buffer to queue
1901 *
1902 * Queue a buffer at the start of the list. This function takes the
1903 * list lock and can be used safely with other locking &sk_buff functions
1904 * safely.
1905 *
1906 * A buffer cannot be placed on two lists at the same time.
1907 */
1908void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk)
1909{
1910 unsigned long flags;
1911
1912 spin_lock_irqsave(&list->lock, flags);
1913 __skb_queue_head(list, newsk);
1914 spin_unlock_irqrestore(&list->lock, flags);
1915}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001916EXPORT_SYMBOL(skb_queue_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918/**
1919 * skb_queue_tail - queue a buffer at the list tail
1920 * @list: list to use
1921 * @newsk: buffer to queue
1922 *
1923 * Queue a buffer at the tail of the list. This function takes the
1924 * list lock and can be used safely with other locking &sk_buff functions
1925 * safely.
1926 *
1927 * A buffer cannot be placed on two lists at the same time.
1928 */
1929void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk)
1930{
1931 unsigned long flags;
1932
1933 spin_lock_irqsave(&list->lock, flags);
1934 __skb_queue_tail(list, newsk);
1935 spin_unlock_irqrestore(&list->lock, flags);
1936}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001937EXPORT_SYMBOL(skb_queue_tail);
David S. Miller8728b832005-08-09 19:25:21 -07001938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939/**
1940 * skb_unlink - remove a buffer from a list
1941 * @skb: buffer to remove
David S. Miller8728b832005-08-09 19:25:21 -07001942 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 *
David S. Miller8728b832005-08-09 19:25:21 -07001944 * Remove a packet from a list. The list locks are taken and this
1945 * function is atomic with respect to other list locked calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 *
David S. Miller8728b832005-08-09 19:25:21 -07001947 * You must know what list the SKB is on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 */
David S. Miller8728b832005-08-09 19:25:21 -07001949void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
David S. Miller8728b832005-08-09 19:25:21 -07001951 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
David S. Miller8728b832005-08-09 19:25:21 -07001953 spin_lock_irqsave(&list->lock, flags);
1954 __skb_unlink(skb, list);
1955 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001957EXPORT_SYMBOL(skb_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959/**
1960 * skb_append - append a buffer
1961 * @old: buffer to insert after
1962 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001963 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 *
1965 * Place a packet after a given packet in a list. The list locks are taken
1966 * and this function is atomic with respect to other list locked calls.
1967 * A buffer cannot be placed on two lists at the same time.
1968 */
David S. Miller8728b832005-08-09 19:25:21 -07001969void skb_append(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 unsigned long flags;
1972
David S. Miller8728b832005-08-09 19:25:21 -07001973 spin_lock_irqsave(&list->lock, flags);
Gerrit Renker7de6c032008-04-14 00:05:09 -07001974 __skb_queue_after(list, old, newsk);
David S. Miller8728b832005-08-09 19:25:21 -07001975 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001977EXPORT_SYMBOL(skb_append);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979/**
1980 * skb_insert - insert a buffer
1981 * @old: buffer to insert before
1982 * @newsk: buffer to insert
David S. Miller8728b832005-08-09 19:25:21 -07001983 * @list: list to use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 *
David S. Miller8728b832005-08-09 19:25:21 -07001985 * Place a packet before a given packet in a list. The list locks are
1986 * taken and this function is atomic with respect to other list locked
1987 * calls.
1988 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 * A buffer cannot be placed on two lists at the same time.
1990 */
David S. Miller8728b832005-08-09 19:25:21 -07001991void skb_insert(struct sk_buff *old, struct sk_buff *newsk, struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
1993 unsigned long flags;
1994
David S. Miller8728b832005-08-09 19:25:21 -07001995 spin_lock_irqsave(&list->lock, flags);
1996 __skb_insert(newsk, old->prev, old, list);
1997 spin_unlock_irqrestore(&list->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08001999EXPORT_SYMBOL(skb_insert);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001static inline void skb_split_inside_header(struct sk_buff *skb,
2002 struct sk_buff* skb1,
2003 const u32 len, const int pos)
2004{
2005 int i;
2006
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002007 skb_copy_from_linear_data_offset(skb, len, skb_put(skb1, pos - len),
2008 pos - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /* And move data appendix as is. */
2010 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
2011 skb_shinfo(skb1)->frags[i] = skb_shinfo(skb)->frags[i];
2012
2013 skb_shinfo(skb1)->nr_frags = skb_shinfo(skb)->nr_frags;
2014 skb_shinfo(skb)->nr_frags = 0;
2015 skb1->data_len = skb->data_len;
2016 skb1->len += skb1->data_len;
2017 skb->data_len = 0;
2018 skb->len = len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002019 skb_set_tail_pointer(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020}
2021
2022static inline void skb_split_no_header(struct sk_buff *skb,
2023 struct sk_buff* skb1,
2024 const u32 len, int pos)
2025{
2026 int i, k = 0;
2027 const int nfrags = skb_shinfo(skb)->nr_frags;
2028
2029 skb_shinfo(skb)->nr_frags = 0;
2030 skb1->len = skb1->data_len = skb->len - len;
2031 skb->len = len;
2032 skb->data_len = len - pos;
2033
2034 for (i = 0; i < nfrags; i++) {
2035 int size = skb_shinfo(skb)->frags[i].size;
2036
2037 if (pos + size > len) {
2038 skb_shinfo(skb1)->frags[k] = skb_shinfo(skb)->frags[i];
2039
2040 if (pos < len) {
2041 /* Split frag.
2042 * We have two variants in this case:
2043 * 1. Move all the frag to the second
2044 * part, if it is possible. F.e.
2045 * this approach is mandatory for TUX,
2046 * where splitting is expensive.
2047 * 2. Split is accurately. We make this.
2048 */
2049 get_page(skb_shinfo(skb)->frags[i].page);
2050 skb_shinfo(skb1)->frags[0].page_offset += len - pos;
2051 skb_shinfo(skb1)->frags[0].size -= len - pos;
2052 skb_shinfo(skb)->frags[i].size = len - pos;
2053 skb_shinfo(skb)->nr_frags++;
2054 }
2055 k++;
2056 } else
2057 skb_shinfo(skb)->nr_frags++;
2058 pos += size;
2059 }
2060 skb_shinfo(skb1)->nr_frags = k;
2061}
2062
2063/**
2064 * skb_split - Split fragmented skb to two parts at length len.
2065 * @skb: the buffer to split
2066 * @skb1: the buffer to receive the second part
2067 * @len: new length for skb
2068 */
2069void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
2070{
2071 int pos = skb_headlen(skb);
2072
2073 if (len < pos) /* Split line is inside header. */
2074 skb_split_inside_header(skb, skb1, len, pos);
2075 else /* Second chunk has no header, nothing to copy. */
2076 skb_split_no_header(skb, skb1, len, pos);
2077}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002078EXPORT_SYMBOL(skb_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002080/* Shifting from/to a cloned skb is a no-go.
2081 *
2082 * Caller cannot keep skb_shinfo related pointers past calling here!
2083 */
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002084static int skb_prepare_for_shift(struct sk_buff *skb)
2085{
Ilpo Järvinen0ace2852008-11-24 21:30:21 -08002086 return skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002087}
2088
2089/**
2090 * skb_shift - Shifts paged data partially from skb to another
2091 * @tgt: buffer into which tail data gets added
2092 * @skb: buffer from which the paged data comes from
2093 * @shiftlen: shift up to this many bytes
2094 *
2095 * Attempts to shift up to shiftlen worth of bytes, which may be less than
2096 * the length of the skb, from tgt to skb. Returns number bytes shifted.
2097 * It's up to caller to free skb if everything was shifted.
2098 *
2099 * If @tgt runs out of frags, the whole operation is aborted.
2100 *
2101 * Skb cannot include anything else but paged data while tgt is allowed
2102 * to have non-paged data as well.
2103 *
2104 * TODO: full sized shift could be optimized but that would need
2105 * specialized skb free'er to handle frags without up-to-date nr_frags.
2106 */
2107int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen)
2108{
2109 int from, to, merge, todo;
2110 struct skb_frag_struct *fragfrom, *fragto;
2111
2112 BUG_ON(shiftlen > skb->len);
2113 BUG_ON(skb_headlen(skb)); /* Would corrupt stream */
2114
2115 todo = shiftlen;
2116 from = 0;
2117 to = skb_shinfo(tgt)->nr_frags;
2118 fragfrom = &skb_shinfo(skb)->frags[from];
2119
2120 /* Actual merge is delayed until the point when we know we can
2121 * commit all, so that we don't have to undo partial changes
2122 */
2123 if (!to ||
2124 !skb_can_coalesce(tgt, to, fragfrom->page, fragfrom->page_offset)) {
2125 merge = -1;
2126 } else {
2127 merge = to - 1;
2128
2129 todo -= fragfrom->size;
2130 if (todo < 0) {
2131 if (skb_prepare_for_shift(skb) ||
2132 skb_prepare_for_shift(tgt))
2133 return 0;
2134
Ilpo Järvinen9f782db2008-11-25 13:57:01 -08002135 /* All previous frag pointers might be stale! */
2136 fragfrom = &skb_shinfo(skb)->frags[from];
Ilpo Järvinen832d11c2008-11-24 21:20:15 -08002137 fragto = &skb_shinfo(tgt)->frags[merge];
2138
2139 fragto->size += shiftlen;
2140 fragfrom->size -= shiftlen;
2141 fragfrom->page_offset += shiftlen;
2142
2143 goto onlymerged;
2144 }
2145
2146 from++;
2147 }
2148
2149 /* Skip full, not-fitting skb to avoid expensive operations */
2150 if ((shiftlen == skb->len) &&
2151 (skb_shinfo(skb)->nr_frags - from) > (MAX_SKB_FRAGS - to))
2152 return 0;
2153
2154 if (skb_prepare_for_shift(skb) || skb_prepare_for_shift(tgt))
2155 return 0;
2156
2157 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2158 if (to == MAX_SKB_FRAGS)
2159 return 0;
2160
2161 fragfrom = &skb_shinfo(skb)->frags[from];
2162 fragto = &skb_shinfo(tgt)->frags[to];
2163
2164 if (todo >= fragfrom->size) {
2165 *fragto = *fragfrom;
2166 todo -= fragfrom->size;
2167 from++;
2168 to++;
2169
2170 } else {
2171 get_page(fragfrom->page);
2172 fragto->page = fragfrom->page;
2173 fragto->page_offset = fragfrom->page_offset;
2174 fragto->size = todo;
2175
2176 fragfrom->page_offset += todo;
2177 fragfrom->size -= todo;
2178 todo = 0;
2179
2180 to++;
2181 break;
2182 }
2183 }
2184
2185 /* Ready to "commit" this state change to tgt */
2186 skb_shinfo(tgt)->nr_frags = to;
2187
2188 if (merge >= 0) {
2189 fragfrom = &skb_shinfo(skb)->frags[0];
2190 fragto = &skb_shinfo(tgt)->frags[merge];
2191
2192 fragto->size += fragfrom->size;
2193 put_page(fragfrom->page);
2194 }
2195
2196 /* Reposition in the original skb */
2197 to = 0;
2198 while (from < skb_shinfo(skb)->nr_frags)
2199 skb_shinfo(skb)->frags[to++] = skb_shinfo(skb)->frags[from++];
2200 skb_shinfo(skb)->nr_frags = to;
2201
2202 BUG_ON(todo > 0 && !skb_shinfo(skb)->nr_frags);
2203
2204onlymerged:
2205 /* Most likely the tgt won't ever need its checksum anymore, skb on
2206 * the other hand might need it if it needs to be resent
2207 */
2208 tgt->ip_summed = CHECKSUM_PARTIAL;
2209 skb->ip_summed = CHECKSUM_PARTIAL;
2210
2211 /* Yak, is it really working this way? Some helper please? */
2212 skb->len -= shiftlen;
2213 skb->data_len -= shiftlen;
2214 skb->truesize -= shiftlen;
2215 tgt->len += shiftlen;
2216 tgt->data_len += shiftlen;
2217 tgt->truesize += shiftlen;
2218
2219 return shiftlen;
2220}
2221
Thomas Graf677e90e2005-06-23 20:59:51 -07002222/**
2223 * skb_prepare_seq_read - Prepare a sequential read of skb data
2224 * @skb: the buffer to read
2225 * @from: lower offset of data to be read
2226 * @to: upper offset of data to be read
2227 * @st: state variable
2228 *
2229 * Initializes the specified state variable. Must be called before
2230 * invoking skb_seq_read() for the first time.
2231 */
2232void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
2233 unsigned int to, struct skb_seq_state *st)
2234{
2235 st->lower_offset = from;
2236 st->upper_offset = to;
2237 st->root_skb = st->cur_skb = skb;
2238 st->frag_idx = st->stepped_offset = 0;
2239 st->frag_data = NULL;
2240}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002241EXPORT_SYMBOL(skb_prepare_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002242
2243/**
2244 * skb_seq_read - Sequentially read skb data
2245 * @consumed: number of bytes consumed by the caller so far
2246 * @data: destination pointer for data to be returned
2247 * @st: state variable
2248 *
2249 * Reads a block of skb data at &consumed relative to the
2250 * lower offset specified to skb_prepare_seq_read(). Assigns
2251 * the head of the data block to &data and returns the length
2252 * of the block or 0 if the end of the skb data or the upper
2253 * offset has been reached.
2254 *
2255 * The caller is not required to consume all of the data
2256 * returned, i.e. &consumed is typically set to the number
2257 * of bytes already consumed and the next call to
2258 * skb_seq_read() will return the remaining part of the block.
2259 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002260 * Note 1: The size of each block of data returned can be arbitary,
Thomas Graf677e90e2005-06-23 20:59:51 -07002261 * this limitation is the cost for zerocopy seqeuental
2262 * reads of potentially non linear data.
2263 *
Randy Dunlapbc2cda12008-02-13 15:03:25 -08002264 * Note 2: Fragment lists within fragments are not implemented
Thomas Graf677e90e2005-06-23 20:59:51 -07002265 * at the moment, state->root_skb could be replaced with
2266 * a stack for this purpose.
2267 */
2268unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
2269 struct skb_seq_state *st)
2270{
2271 unsigned int block_limit, abs_offset = consumed + st->lower_offset;
2272 skb_frag_t *frag;
2273
2274 if (unlikely(abs_offset >= st->upper_offset))
2275 return 0;
2276
2277next_skb:
Herbert Xu95e3b242009-01-29 16:07:52 -08002278 block_limit = skb_headlen(st->cur_skb) + st->stepped_offset;
Thomas Graf677e90e2005-06-23 20:59:51 -07002279
Thomas Chenault995b3372009-05-18 21:43:27 -07002280 if (abs_offset < block_limit && !st->frag_data) {
Herbert Xu95e3b242009-01-29 16:07:52 -08002281 *data = st->cur_skb->data + (abs_offset - st->stepped_offset);
Thomas Graf677e90e2005-06-23 20:59:51 -07002282 return block_limit - abs_offset;
2283 }
2284
2285 if (st->frag_idx == 0 && !st->frag_data)
2286 st->stepped_offset += skb_headlen(st->cur_skb);
2287
2288 while (st->frag_idx < skb_shinfo(st->cur_skb)->nr_frags) {
2289 frag = &skb_shinfo(st->cur_skb)->frags[st->frag_idx];
2290 block_limit = frag->size + st->stepped_offset;
2291
2292 if (abs_offset < block_limit) {
2293 if (!st->frag_data)
2294 st->frag_data = kmap_skb_frag(frag);
2295
2296 *data = (u8 *) st->frag_data + frag->page_offset +
2297 (abs_offset - st->stepped_offset);
2298
2299 return block_limit - abs_offset;
2300 }
2301
2302 if (st->frag_data) {
2303 kunmap_skb_frag(st->frag_data);
2304 st->frag_data = NULL;
2305 }
2306
2307 st->frag_idx++;
2308 st->stepped_offset += frag->size;
2309 }
2310
Olaf Kirch5b5a60d2007-06-23 23:11:52 -07002311 if (st->frag_data) {
2312 kunmap_skb_frag(st->frag_data);
2313 st->frag_data = NULL;
2314 }
2315
David S. Millerfbb398a2009-06-09 00:18:59 -07002316 if (st->root_skb == st->cur_skb && skb_has_frags(st->root_skb)) {
Shyam Iyer71b33462009-01-29 16:12:42 -08002317 st->cur_skb = skb_shinfo(st->root_skb)->frag_list;
Thomas Graf677e90e2005-06-23 20:59:51 -07002318 st->frag_idx = 0;
2319 goto next_skb;
Shyam Iyer71b33462009-01-29 16:12:42 -08002320 } else if (st->cur_skb->next) {
2321 st->cur_skb = st->cur_skb->next;
Herbert Xu95e3b242009-01-29 16:07:52 -08002322 st->frag_idx = 0;
Thomas Graf677e90e2005-06-23 20:59:51 -07002323 goto next_skb;
2324 }
2325
2326 return 0;
2327}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002328EXPORT_SYMBOL(skb_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002329
2330/**
2331 * skb_abort_seq_read - Abort a sequential read of skb data
2332 * @st: state variable
2333 *
2334 * Must be called if skb_seq_read() was not called until it
2335 * returned 0.
2336 */
2337void skb_abort_seq_read(struct skb_seq_state *st)
2338{
2339 if (st->frag_data)
2340 kunmap_skb_frag(st->frag_data);
2341}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002342EXPORT_SYMBOL(skb_abort_seq_read);
Thomas Graf677e90e2005-06-23 20:59:51 -07002343
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002344#define TS_SKB_CB(state) ((struct skb_seq_state *) &((state)->cb))
2345
2346static unsigned int skb_ts_get_next_block(unsigned int offset, const u8 **text,
2347 struct ts_config *conf,
2348 struct ts_state *state)
2349{
2350 return skb_seq_read(offset, text, TS_SKB_CB(state));
2351}
2352
2353static void skb_ts_finish(struct ts_config *conf, struct ts_state *state)
2354{
2355 skb_abort_seq_read(TS_SKB_CB(state));
2356}
2357
2358/**
2359 * skb_find_text - Find a text pattern in skb data
2360 * @skb: the buffer to look in
2361 * @from: search offset
2362 * @to: search limit
2363 * @config: textsearch configuration
2364 * @state: uninitialized textsearch state variable
2365 *
2366 * Finds a pattern in the skb data according to the specified
2367 * textsearch configuration. Use textsearch_next() to retrieve
2368 * subsequent occurrences of the pattern. Returns the offset
2369 * to the first occurrence or UINT_MAX if no match was found.
2370 */
2371unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
2372 unsigned int to, struct ts_config *config,
2373 struct ts_state *state)
2374{
Phil Oesterf72b9482006-06-26 00:00:57 -07002375 unsigned int ret;
2376
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002377 config->get_next_block = skb_ts_get_next_block;
2378 config->finish = skb_ts_finish;
2379
2380 skb_prepare_seq_read(skb, from, to, TS_SKB_CB(state));
2381
Phil Oesterf72b9482006-06-26 00:00:57 -07002382 ret = textsearch_find(config, state);
2383 return (ret <= to - from ? ret : UINT_MAX);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002384}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002385EXPORT_SYMBOL(skb_find_text);
Thomas Graf3fc7e8a2005-06-23 21:00:17 -07002386
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002387/**
2388 * skb_append_datato_frags: - append the user data to a skb
2389 * @sk: sock structure
2390 * @skb: skb structure to be appened with user data.
2391 * @getfrag: call back function to be used for getting the user data
2392 * @from: pointer to user message iov
2393 * @length: length of the iov message
2394 *
2395 * Description: This procedure append the user data in the fragment part
2396 * of the skb if any page alloc fails user this procedure returns -ENOMEM
2397 */
2398int skb_append_datato_frags(struct sock *sk, struct sk_buff *skb,
Martin Waitzdab96302005-12-05 13:40:12 -08002399 int (*getfrag)(void *from, char *to, int offset,
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002400 int len, int odd, struct sk_buff *skb),
2401 void *from, int length)
2402{
2403 int frg_cnt = 0;
2404 skb_frag_t *frag = NULL;
2405 struct page *page = NULL;
2406 int copy, left;
2407 int offset = 0;
2408 int ret;
2409
2410 do {
2411 /* Return error if we don't have space for new frag */
2412 frg_cnt = skb_shinfo(skb)->nr_frags;
2413 if (frg_cnt >= MAX_SKB_FRAGS)
2414 return -EFAULT;
2415
2416 /* allocate a new page for next frag */
2417 page = alloc_pages(sk->sk_allocation, 0);
2418
2419 /* If alloc_page fails just return failure and caller will
2420 * free previous allocated pages by doing kfree_skb()
2421 */
2422 if (page == NULL)
2423 return -ENOMEM;
2424
2425 /* initialize the next frag */
2426 sk->sk_sndmsg_page = page;
2427 sk->sk_sndmsg_off = 0;
2428 skb_fill_page_desc(skb, frg_cnt, page, 0, 0);
2429 skb->truesize += PAGE_SIZE;
2430 atomic_add(PAGE_SIZE, &sk->sk_wmem_alloc);
2431
2432 /* get the new initialized frag */
2433 frg_cnt = skb_shinfo(skb)->nr_frags;
2434 frag = &skb_shinfo(skb)->frags[frg_cnt - 1];
2435
2436 /* copy the user data to page */
2437 left = PAGE_SIZE - frag->page_offset;
2438 copy = (length > left)? left : length;
2439
2440 ret = getfrag(from, (page_address(frag->page) +
2441 frag->page_offset + frag->size),
2442 offset, copy, 0, skb);
2443 if (ret < 0)
2444 return -EFAULT;
2445
2446 /* copy was successful so update the size parameters */
2447 sk->sk_sndmsg_off += copy;
2448 frag->size += copy;
2449 skb->len += copy;
2450 skb->data_len += copy;
2451 offset += copy;
2452 length -= copy;
2453
2454 } while (length > 0);
2455
2456 return 0;
2457}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002458EXPORT_SYMBOL(skb_append_datato_frags);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07002459
Herbert Xucbb042f2006-03-20 22:43:56 -08002460/**
2461 * skb_pull_rcsum - pull skb and update receive checksum
2462 * @skb: buffer to update
Herbert Xucbb042f2006-03-20 22:43:56 -08002463 * @len: length of data pulled
2464 *
2465 * This function performs an skb_pull on the packet and updates
Urs Thuermannfee54fa2008-02-12 22:03:25 -08002466 * the CHECKSUM_COMPLETE checksum. It should be used on
Patrick McHardy84fa7932006-08-29 16:44:56 -07002467 * receive path processing instead of skb_pull unless you know
2468 * that the checksum difference is zero (e.g., a valid IP header)
2469 * or you are setting ip_summed to CHECKSUM_NONE.
Herbert Xucbb042f2006-03-20 22:43:56 -08002470 */
2471unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len)
2472{
2473 BUG_ON(len > skb->len);
2474 skb->len -= len;
2475 BUG_ON(skb->len < skb->data_len);
2476 skb_postpull_rcsum(skb, skb->data, len);
2477 return skb->data += len;
2478}
2479
Arnaldo Carvalho de Melof94691a2006-03-20 22:47:55 -08002480EXPORT_SYMBOL_GPL(skb_pull_rcsum);
2481
Herbert Xuf4c50d92006-06-22 03:02:40 -07002482/**
2483 * skb_segment - Perform protocol segmentation on skb.
2484 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002485 * @features: features for the output path (see dev->features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002486 *
2487 * This function performs segmentation on the given skb. It returns
Ben Hutchings4c821d72008-04-13 21:52:48 -07002488 * a pointer to the first in a list of new skbs for the segments.
2489 * In case of error it returns ERR_PTR(err).
Herbert Xuf4c50d92006-06-22 03:02:40 -07002490 */
Herbert Xu576a30e2006-06-27 13:22:38 -07002491struct sk_buff *skb_segment(struct sk_buff *skb, int features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002492{
2493 struct sk_buff *segs = NULL;
2494 struct sk_buff *tail = NULL;
Herbert Xu89319d382008-12-15 23:26:06 -08002495 struct sk_buff *fskb = skb_shinfo(skb)->frag_list;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002496 unsigned int mss = skb_shinfo(skb)->gso_size;
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -07002497 unsigned int doffset = skb->data - skb_mac_header(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002498 unsigned int offset = doffset;
2499 unsigned int headroom;
2500 unsigned int len;
Herbert Xu576a30e2006-06-27 13:22:38 -07002501 int sg = features & NETIF_F_SG;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002502 int nfrags = skb_shinfo(skb)->nr_frags;
2503 int err = -ENOMEM;
2504 int i = 0;
2505 int pos;
2506
2507 __skb_push(skb, doffset);
2508 headroom = skb_headroom(skb);
2509 pos = skb_headlen(skb);
2510
2511 do {
2512 struct sk_buff *nskb;
2513 skb_frag_t *frag;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002514 int hsize;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002515 int size;
2516
2517 len = skb->len - offset;
2518 if (len > mss)
2519 len = mss;
2520
2521 hsize = skb_headlen(skb) - offset;
2522 if (hsize < 0)
2523 hsize = 0;
Herbert Xuc8884ed2006-10-29 15:59:41 -08002524 if (hsize > len || !sg)
2525 hsize = len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002526
Herbert Xu89319d382008-12-15 23:26:06 -08002527 if (!hsize && i >= nfrags) {
2528 BUG_ON(fskb->len != len);
2529
2530 pos += len;
2531 nskb = skb_clone(fskb, GFP_ATOMIC);
2532 fskb = fskb->next;
2533
2534 if (unlikely(!nskb))
2535 goto err;
2536
2537 hsize = skb_end_pointer(nskb) - nskb->head;
2538 if (skb_cow_head(nskb, doffset + headroom)) {
2539 kfree_skb(nskb);
2540 goto err;
2541 }
2542
2543 nskb->truesize += skb_end_pointer(nskb) - nskb->head -
2544 hsize;
2545 skb_release_head_state(nskb);
2546 __skb_push(nskb, doffset);
2547 } else {
2548 nskb = alloc_skb(hsize + doffset + headroom,
2549 GFP_ATOMIC);
2550
2551 if (unlikely(!nskb))
2552 goto err;
2553
2554 skb_reserve(nskb, headroom);
2555 __skb_put(nskb, doffset);
2556 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002557
2558 if (segs)
2559 tail->next = nskb;
2560 else
2561 segs = nskb;
2562 tail = nskb;
2563
Herbert Xu6f85a122008-08-15 14:55:02 -07002564 __copy_skb_header(nskb, skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002565 nskb->mac_len = skb->mac_len;
2566
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002567 skb_reset_mac_header(nskb);
Arnaldo Carvalho de Meloddc7b8e2007-03-15 21:42:27 -03002568 skb_set_network_header(nskb, skb->mac_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07002569 nskb->transport_header = (nskb->network_header +
2570 skb_network_header_len(skb));
Herbert Xu89319d382008-12-15 23:26:06 -08002571 skb_copy_from_linear_data(skb, nskb->data, doffset);
2572
Herbert Xu2f181852009-03-28 23:39:18 -07002573 if (fskb != skb_shinfo(skb)->frag_list)
Herbert Xu89319d382008-12-15 23:26:06 -08002574 continue;
2575
Herbert Xuf4c50d92006-06-22 03:02:40 -07002576 if (!sg) {
Herbert Xu6f85a122008-08-15 14:55:02 -07002577 nskb->ip_summed = CHECKSUM_NONE;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002578 nskb->csum = skb_copy_and_csum_bits(skb, offset,
2579 skb_put(nskb, len),
2580 len, 0);
2581 continue;
2582 }
2583
2584 frag = skb_shinfo(nskb)->frags;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002585
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03002586 skb_copy_from_linear_data_offset(skb, offset,
2587 skb_put(nskb, hsize), hsize);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002588
Herbert Xu89319d382008-12-15 23:26:06 -08002589 while (pos < offset + len && i < nfrags) {
Herbert Xuf4c50d92006-06-22 03:02:40 -07002590 *frag = skb_shinfo(skb)->frags[i];
2591 get_page(frag->page);
2592 size = frag->size;
2593
2594 if (pos < offset) {
2595 frag->page_offset += offset - pos;
2596 frag->size -= offset - pos;
2597 }
2598
Herbert Xu89319d382008-12-15 23:26:06 -08002599 skb_shinfo(nskb)->nr_frags++;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002600
2601 if (pos + size <= offset + len) {
2602 i++;
2603 pos += size;
2604 } else {
2605 frag->size -= pos + size - (offset + len);
Herbert Xu89319d382008-12-15 23:26:06 -08002606 goto skip_fraglist;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002607 }
2608
2609 frag++;
2610 }
2611
Herbert Xu89319d382008-12-15 23:26:06 -08002612 if (pos < offset + len) {
2613 struct sk_buff *fskb2 = fskb;
2614
2615 BUG_ON(pos + fskb->len != offset + len);
2616
2617 pos += fskb->len;
2618 fskb = fskb->next;
2619
2620 if (fskb2->next) {
2621 fskb2 = skb_clone(fskb2, GFP_ATOMIC);
2622 if (!fskb2)
2623 goto err;
2624 } else
2625 skb_get(fskb2);
2626
David S. Millerfbb398a2009-06-09 00:18:59 -07002627 SKB_FRAG_ASSERT(nskb);
Herbert Xu89319d382008-12-15 23:26:06 -08002628 skb_shinfo(nskb)->frag_list = fskb2;
2629 }
2630
2631skip_fraglist:
Herbert Xuf4c50d92006-06-22 03:02:40 -07002632 nskb->data_len = len - hsize;
2633 nskb->len += nskb->data_len;
2634 nskb->truesize += nskb->data_len;
2635 } while ((offset += len) < skb->len);
2636
2637 return segs;
2638
2639err:
2640 while ((skb = segs)) {
2641 segs = skb->next;
Patrick McHardyb08d5842007-02-27 09:57:37 -08002642 kfree_skb(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002643 }
2644 return ERR_PTR(err);
2645}
Herbert Xuf4c50d92006-06-22 03:02:40 -07002646EXPORT_SYMBOL_GPL(skb_segment);
2647
Herbert Xu71d93b32008-12-15 23:42:33 -08002648int skb_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2649{
2650 struct sk_buff *p = *head;
2651 struct sk_buff *nskb;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002652 struct skb_shared_info *skbinfo = skb_shinfo(skb);
2653 struct skb_shared_info *pinfo = skb_shinfo(p);
Herbert Xu71d93b32008-12-15 23:42:33 -08002654 unsigned int headroom;
Herbert Xu86911732009-01-29 14:19:50 +00002655 unsigned int len = skb_gro_len(skb);
Herbert Xu67147ba2009-05-26 18:50:22 +00002656 unsigned int offset = skb_gro_offset(skb);
2657 unsigned int headlen = skb_headlen(skb);
Herbert Xu71d93b32008-12-15 23:42:33 -08002658
Herbert Xu86911732009-01-29 14:19:50 +00002659 if (p->len + len >= 65536)
Herbert Xu71d93b32008-12-15 23:42:33 -08002660 return -E2BIG;
2661
Herbert Xu9aaa1562009-05-26 18:50:33 +00002662 if (pinfo->frag_list)
Herbert Xu71d93b32008-12-15 23:42:33 -08002663 goto merge;
Herbert Xu67147ba2009-05-26 18:50:22 +00002664 else if (headlen <= offset) {
Herbert Xu42da6992009-05-26 18:50:19 +00002665 skb_frag_t *frag;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002666 skb_frag_t *frag2;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002667 int i = skbinfo->nr_frags;
2668 int nr_frags = pinfo->nr_frags + i;
Herbert Xu42da6992009-05-26 18:50:19 +00002669
Herbert Xu66e92fc2009-05-26 18:50:32 +00002670 offset -= headlen;
2671
2672 if (nr_frags > MAX_SKB_FRAGS)
Herbert Xu81705ad2009-01-29 14:19:51 +00002673 return -E2BIG;
2674
Herbert Xu9aaa1562009-05-26 18:50:33 +00002675 pinfo->nr_frags = nr_frags;
2676 skbinfo->nr_frags = 0;
Herbert Xuf5572062009-01-14 20:40:03 -08002677
Herbert Xu9aaa1562009-05-26 18:50:33 +00002678 frag = pinfo->frags + nr_frags;
2679 frag2 = skbinfo->frags + i;
Herbert Xu66e92fc2009-05-26 18:50:32 +00002680 do {
2681 *--frag = *--frag2;
2682 } while (--i);
2683
2684 frag->page_offset += offset;
2685 frag->size -= offset;
2686
Herbert Xuf5572062009-01-14 20:40:03 -08002687 skb->truesize -= skb->data_len;
2688 skb->len -= skb->data_len;
2689 skb->data_len = 0;
2690
Herbert Xu5d38a072009-01-04 16:13:40 -08002691 NAPI_GRO_CB(skb)->free = 1;
2692 goto done;
2693 }
Herbert Xu71d93b32008-12-15 23:42:33 -08002694
2695 headroom = skb_headroom(p);
Herbert Xu86911732009-01-29 14:19:50 +00002696 nskb = netdev_alloc_skb(p->dev, headroom + skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002697 if (unlikely(!nskb))
2698 return -ENOMEM;
2699
2700 __copy_skb_header(nskb, p);
2701 nskb->mac_len = p->mac_len;
2702
2703 skb_reserve(nskb, headroom);
Herbert Xu86911732009-01-29 14:19:50 +00002704 __skb_put(nskb, skb_gro_offset(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002705
Herbert Xu86911732009-01-29 14:19:50 +00002706 skb_set_mac_header(nskb, skb_mac_header(p) - p->data);
Herbert Xu71d93b32008-12-15 23:42:33 -08002707 skb_set_network_header(nskb, skb_network_offset(p));
2708 skb_set_transport_header(nskb, skb_transport_offset(p));
2709
Herbert Xu86911732009-01-29 14:19:50 +00002710 __skb_pull(p, skb_gro_offset(p));
2711 memcpy(skb_mac_header(nskb), skb_mac_header(p),
2712 p->data - skb_mac_header(p));
Herbert Xu71d93b32008-12-15 23:42:33 -08002713
2714 *NAPI_GRO_CB(nskb) = *NAPI_GRO_CB(p);
2715 skb_shinfo(nskb)->frag_list = p;
Herbert Xu9aaa1562009-05-26 18:50:33 +00002716 skb_shinfo(nskb)->gso_size = pinfo->gso_size;
Herbert Xu71d93b32008-12-15 23:42:33 -08002717 skb_header_release(p);
2718 nskb->prev = p;
2719
2720 nskb->data_len += p->len;
2721 nskb->truesize += p->len;
2722 nskb->len += p->len;
2723
2724 *head = nskb;
2725 nskb->next = p->next;
2726 p->next = NULL;
2727
2728 p = nskb;
2729
2730merge:
Herbert Xu67147ba2009-05-26 18:50:22 +00002731 if (offset > headlen) {
Herbert Xu9aaa1562009-05-26 18:50:33 +00002732 skbinfo->frags[0].page_offset += offset - headlen;
2733 skbinfo->frags[0].size -= offset - headlen;
Herbert Xu67147ba2009-05-26 18:50:22 +00002734 offset = headlen;
Herbert Xu56035022009-02-05 21:26:52 -08002735 }
2736
Herbert Xu67147ba2009-05-26 18:50:22 +00002737 __skb_pull(skb, offset);
Herbert Xu56035022009-02-05 21:26:52 -08002738
Herbert Xu71d93b32008-12-15 23:42:33 -08002739 p->prev->next = skb;
2740 p->prev = skb;
2741 skb_header_release(skb);
2742
Herbert Xu5d38a072009-01-04 16:13:40 -08002743done:
2744 NAPI_GRO_CB(p)->count++;
Herbert Xu37fe4732009-01-17 19:48:13 +00002745 p->data_len += len;
2746 p->truesize += len;
2747 p->len += len;
Herbert Xu71d93b32008-12-15 23:42:33 -08002748
2749 NAPI_GRO_CB(skb)->same_flow = 1;
2750 return 0;
2751}
2752EXPORT_SYMBOL_GPL(skb_gro_receive);
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754void __init skb_init(void)
2755{
2756 skbuff_head_cache = kmem_cache_create("skbuff_head_cache",
2757 sizeof(struct sk_buff),
2758 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002759 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002760 NULL);
David S. Millerd179cd12005-08-17 14:57:30 -07002761 skbuff_fclone_cache = kmem_cache_create("skbuff_fclone_cache",
2762 (2*sizeof(struct sk_buff)) +
2763 sizeof(atomic_t),
2764 0,
Alexey Dobriyane5d679f332006-08-26 19:25:52 -07002765 SLAB_HWCACHE_ALIGN|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09002766 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
2768
David Howells716ea3a2007-04-02 20:19:53 -07002769/**
2770 * skb_to_sgvec - Fill a scatter-gather list from a socket buffer
2771 * @skb: Socket buffer containing the buffers to be mapped
2772 * @sg: The scatter-gather list to map into
2773 * @offset: The offset into the buffer's contents to start mapping
2774 * @len: Length of buffer space to be mapped
2775 *
2776 * Fill the specified scatter-gather list with mappings/pointers into a
2777 * region of the buffer space attached to a socket buffer.
2778 */
David S. Miller51c739d2007-10-30 21:29:29 -07002779static int
2780__skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
David Howells716ea3a2007-04-02 20:19:53 -07002781{
David S. Miller1a028e52007-04-27 15:21:23 -07002782 int start = skb_headlen(skb);
2783 int i, copy = start - offset;
David S. Millerfbb398a2009-06-09 00:18:59 -07002784 struct sk_buff *frag_iter;
David Howells716ea3a2007-04-02 20:19:53 -07002785 int elt = 0;
2786
2787 if (copy > 0) {
2788 if (copy > len)
2789 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002790 sg_set_buf(sg, skb->data + offset, copy);
David Howells716ea3a2007-04-02 20:19:53 -07002791 elt++;
2792 if ((len -= copy) == 0)
2793 return elt;
2794 offset += copy;
2795 }
2796
2797 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
David S. Miller1a028e52007-04-27 15:21:23 -07002798 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002799
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002800 WARN_ON(start > offset + len);
David S. Miller1a028e52007-04-27 15:21:23 -07002801
2802 end = start + skb_shinfo(skb)->frags[i].size;
David Howells716ea3a2007-04-02 20:19:53 -07002803 if ((copy = end - offset) > 0) {
2804 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2805
2806 if (copy > len)
2807 copy = len;
Jens Axboe642f1492007-10-24 11:20:47 +02002808 sg_set_page(&sg[elt], frag->page, copy,
2809 frag->page_offset+offset-start);
David Howells716ea3a2007-04-02 20:19:53 -07002810 elt++;
2811 if (!(len -= copy))
2812 return elt;
2813 offset += copy;
2814 }
David S. Miller1a028e52007-04-27 15:21:23 -07002815 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002816 }
2817
David S. Millerfbb398a2009-06-09 00:18:59 -07002818 skb_walk_frags(skb, frag_iter) {
2819 int end;
David Howells716ea3a2007-04-02 20:19:53 -07002820
David S. Millerfbb398a2009-06-09 00:18:59 -07002821 WARN_ON(start > offset + len);
David Howells716ea3a2007-04-02 20:19:53 -07002822
David S. Millerfbb398a2009-06-09 00:18:59 -07002823 end = start + frag_iter->len;
2824 if ((copy = end - offset) > 0) {
2825 if (copy > len)
2826 copy = len;
2827 elt += __skb_to_sgvec(frag_iter, sg+elt, offset - start,
2828 copy);
2829 if ((len -= copy) == 0)
2830 return elt;
2831 offset += copy;
David Howells716ea3a2007-04-02 20:19:53 -07002832 }
David S. Millerfbb398a2009-06-09 00:18:59 -07002833 start = end;
David Howells716ea3a2007-04-02 20:19:53 -07002834 }
2835 BUG_ON(len);
2836 return elt;
2837}
2838
David S. Miller51c739d2007-10-30 21:29:29 -07002839int skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg, int offset, int len)
2840{
2841 int nsg = __skb_to_sgvec(skb, sg, offset, len);
2842
Jens Axboec46f2332007-10-31 12:06:37 +01002843 sg_mark_end(&sg[nsg - 1]);
David S. Miller51c739d2007-10-30 21:29:29 -07002844
2845 return nsg;
2846}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002847EXPORT_SYMBOL_GPL(skb_to_sgvec);
David S. Miller51c739d2007-10-30 21:29:29 -07002848
David Howells716ea3a2007-04-02 20:19:53 -07002849/**
2850 * skb_cow_data - Check that a socket buffer's data buffers are writable
2851 * @skb: The socket buffer to check.
2852 * @tailbits: Amount of trailing space to be added
2853 * @trailer: Returned pointer to the skb where the @tailbits space begins
2854 *
2855 * Make sure that the data buffers attached to a socket buffer are
2856 * writable. If they are not, private copies are made of the data buffers
2857 * and the socket buffer is set to use these instead.
2858 *
2859 * If @tailbits is given, make sure that there is space to write @tailbits
2860 * bytes of data beyond current end of socket buffer. @trailer will be
2861 * set to point to the skb in which this space begins.
2862 *
2863 * The number of scatterlist elements required to completely map the
2864 * COW'd and extended socket buffer will be returned.
2865 */
2866int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
2867{
2868 int copyflag;
2869 int elt;
2870 struct sk_buff *skb1, **skb_p;
2871
2872 /* If skb is cloned or its head is paged, reallocate
2873 * head pulling out all the pages (pages are considered not writable
2874 * at the moment even if they are anonymous).
2875 */
2876 if ((skb_cloned(skb) || skb_shinfo(skb)->nr_frags) &&
2877 __pskb_pull_tail(skb, skb_pagelen(skb)-skb_headlen(skb)) == NULL)
2878 return -ENOMEM;
2879
2880 /* Easy case. Most of packets will go this way. */
David S. Millerfbb398a2009-06-09 00:18:59 -07002881 if (!skb_has_frags(skb)) {
David Howells716ea3a2007-04-02 20:19:53 -07002882 /* A little of trouble, not enough of space for trailer.
2883 * This should not happen, when stack is tuned to generate
2884 * good frames. OK, on miss we reallocate and reserve even more
2885 * space, 128 bytes is fair. */
2886
2887 if (skb_tailroom(skb) < tailbits &&
2888 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
2889 return -ENOMEM;
2890
2891 /* Voila! */
2892 *trailer = skb;
2893 return 1;
2894 }
2895
2896 /* Misery. We are in troubles, going to mincer fragments... */
2897
2898 elt = 1;
2899 skb_p = &skb_shinfo(skb)->frag_list;
2900 copyflag = 0;
2901
2902 while ((skb1 = *skb_p) != NULL) {
2903 int ntail = 0;
2904
2905 /* The fragment is partially pulled by someone,
2906 * this can happen on input. Copy it and everything
2907 * after it. */
2908
2909 if (skb_shared(skb1))
2910 copyflag = 1;
2911
2912 /* If the skb is the last, worry about trailer. */
2913
2914 if (skb1->next == NULL && tailbits) {
2915 if (skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002916 skb_has_frags(skb1) ||
David Howells716ea3a2007-04-02 20:19:53 -07002917 skb_tailroom(skb1) < tailbits)
2918 ntail = tailbits + 128;
2919 }
2920
2921 if (copyflag ||
2922 skb_cloned(skb1) ||
2923 ntail ||
2924 skb_shinfo(skb1)->nr_frags ||
David S. Millerfbb398a2009-06-09 00:18:59 -07002925 skb_has_frags(skb1)) {
David Howells716ea3a2007-04-02 20:19:53 -07002926 struct sk_buff *skb2;
2927
2928 /* Fuck, we are miserable poor guys... */
2929 if (ntail == 0)
2930 skb2 = skb_copy(skb1, GFP_ATOMIC);
2931 else
2932 skb2 = skb_copy_expand(skb1,
2933 skb_headroom(skb1),
2934 ntail,
2935 GFP_ATOMIC);
2936 if (unlikely(skb2 == NULL))
2937 return -ENOMEM;
2938
2939 if (skb1->sk)
2940 skb_set_owner_w(skb2, skb1->sk);
2941
2942 /* Looking around. Are we still alive?
2943 * OK, link new skb, drop old one */
2944
2945 skb2->next = skb1->next;
2946 *skb_p = skb2;
2947 kfree_skb(skb1);
2948 skb1 = skb2;
2949 }
2950 elt++;
2951 *trailer = skb1;
2952 skb_p = &skb1->next;
2953 }
2954
2955 return elt;
2956}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08002957EXPORT_SYMBOL_GPL(skb_cow_data);
David Howells716ea3a2007-04-02 20:19:53 -07002958
Patrick Ohlyac45f602009-02-12 05:03:37 +00002959void skb_tstamp_tx(struct sk_buff *orig_skb,
2960 struct skb_shared_hwtstamps *hwtstamps)
2961{
2962 struct sock *sk = orig_skb->sk;
2963 struct sock_exterr_skb *serr;
2964 struct sk_buff *skb;
2965 int err;
2966
2967 if (!sk)
2968 return;
2969
2970 skb = skb_clone(orig_skb, GFP_ATOMIC);
2971 if (!skb)
2972 return;
2973
2974 if (hwtstamps) {
2975 *skb_hwtstamps(skb) =
2976 *hwtstamps;
2977 } else {
2978 /*
2979 * no hardware time stamps available,
2980 * so keep the skb_shared_tx and only
2981 * store software time stamp
2982 */
2983 skb->tstamp = ktime_get_real();
2984 }
2985
2986 serr = SKB_EXT_ERR(skb);
2987 memset(serr, 0, sizeof(*serr));
2988 serr->ee.ee_errno = ENOMSG;
2989 serr->ee.ee_origin = SO_EE_ORIGIN_TIMESTAMPING;
2990 err = sock_queue_err_skb(sk, skb);
2991 if (err)
2992 kfree_skb(skb);
2993}
2994EXPORT_SYMBOL_GPL(skb_tstamp_tx);
2995
2996
Rusty Russellf35d9d82008-02-04 23:49:54 -05002997/**
2998 * skb_partial_csum_set - set up and verify partial csum values for packet
2999 * @skb: the skb to set
3000 * @start: the number of bytes after skb->data to start checksumming.
3001 * @off: the offset from start to place the checksum.
3002 *
3003 * For untrusted partially-checksummed packets, we need to make sure the values
3004 * for skb->csum_start and skb->csum_offset are valid so we don't oops.
3005 *
3006 * This function checks and sets those values and skb->ip_summed: if this
3007 * returns false you should drop the packet.
3008 */
3009bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off)
3010{
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003011 if (unlikely(start > skb_headlen(skb)) ||
3012 unlikely((int)start + off > skb_headlen(skb) - 2)) {
Rusty Russellf35d9d82008-02-04 23:49:54 -05003013 if (net_ratelimit())
3014 printk(KERN_WARNING
3015 "bad partial csum: csum=%u/%u len=%u\n",
Herbert Xu5ff8dda2009-06-04 01:22:01 +00003016 start, off, skb_headlen(skb));
Rusty Russellf35d9d82008-02-04 23:49:54 -05003017 return false;
3018 }
3019 skb->ip_summed = CHECKSUM_PARTIAL;
3020 skb->csum_start = skb_headroom(skb) + start;
3021 skb->csum_offset = off;
3022 return true;
3023}
David S. Millerb4ac530fc2009-02-10 02:09:24 -08003024EXPORT_SYMBOL_GPL(skb_partial_csum_set);
Rusty Russellf35d9d82008-02-04 23:49:54 -05003025
Ben Hutchings4497b072008-06-19 16:22:28 -07003026void __skb_warn_lro_forwarding(const struct sk_buff *skb)
3027{
3028 if (net_ratelimit())
3029 pr_warning("%s: received packets cannot be forwarded"
3030 " while LRO is enabled\n", skb->dev->name);
3031}
Ben Hutchings4497b072008-06-19 16:22:28 -07003032EXPORT_SYMBOL(__skb_warn_lro_forwarding);